diff --git a/.gitignore b/.gitignore index efaac16..3432d19 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,8 @@ node_modules nola-transit-map .DS_Store + +#generated temp route files +data/route_* +data/*.txt +data/*.zip diff --git a/app/main.jsx b/app/main.jsx index a8fccd6..8d3c1b7 100644 --- a/app/main.jsx +++ b/app/main.jsx @@ -17,11 +17,11 @@ import './main.css'; const animatedComponents = makeAnimated(); const ROUTES = NortaGeoJson .features - .filter(f => f.geometry.type === "MultiLineString" && f.properties.route_id) + .filter(f => f.geometry.type === "GeometryCollection" && f.properties.route_id) .reduce((acc, f) => { return { ...acc, - [f.properties.route_id]: + [f.properties.route_id]: } }, {}) diff --git a/data/csv2json.jq b/data/csv2json.jq new file mode 100644 index 0000000..a259bf0 --- /dev/null +++ b/data/csv2json.jq @@ -0,0 +1,17 @@ +#CREDIT: csv2json.jq from https://stackoverflow.com/questions/29663187/csv-to-json-using-jq + +def objectify(headers): + def tonumberq: tonumber? // .; + . as $in + | reduce range(0; headers|length) as $i ({}; .[headers[$i]] = ($in[$i]) ); + +def csv2table: + # For jq 1.4, replace the following line by: def trim: .; + def trim: sub("^ +";"") | sub(" +$";""); + split("\n") | map( split(",") | map(trim) ); + +def csv2json: + csv2table + | .[0] as $headers + | reduce (.[1:][] | select(length > 0) ) as $row + ( []; . + [ $row|objectify($headers) ]); diff --git a/data/make_routes.sh b/data/make_routes.sh new file mode 100755 index 0000000..4b9ecab --- /dev/null +++ b/data/make_routes.sh @@ -0,0 +1,99 @@ +#!/bin/sh + +#init list of routes +cat > routes.json << EOF +{ + "type": "FeatureCollection", + "name": "routes", + "crs": { + "type": "name", + "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } + }, + "features": [] +} +EOF + +add_features_from_GTFS () { + url=$1 + + #get GTFS data + wget -O GTFS.zip "$url" + unzip -o GTFS.zip + + routes=$(tail -n +2 routes.txt | cut -d "," -f 1) + + #routes.txt lists as '53-O', but shapes.txt has it as just 53. fix it here + routes=${routes/53-O/53} + + for route in $routes; do + echo "ROUTE $route" + + #get geometry/stops for every direction + dirs=$(grep "\-${route}-" shapes.txt | cut -d ',' -f 1 | sort | uniq | cut -d '-' -f 3) + dir_index=0 + for dir in $dirs; do + echo " DIR $dir_index: $dir" + + #convert shapes.txt lat/lons into geojson LineString + (head -1 shapes.txt; grep "shp-$route-$dir" shapes.txt) | + jq -c -R -s 'include "csv2json"; csv2json | {type: "LineString", coordinates: [.[] | [.shape_pt_lon, .shape_pt_lat]]}' \ + > route_${route}_dir${dir_index}_lines + + #convert stops.txt lat/lons into geojson MutliPoint + #NOTE: since stops.txt doesnt have route info, correlate by matching route lat/lon with stops lat/lon + (echo "stop_lat,stop_lon"; cat stops.txt | cut -d "," -f 5-6 | grep -f <(grep "shp-$route-$dir" shapes.txt | cut -d "," -f 2-3)) | + jq -c -R -s 'include "csv2json"; csv2json | {type: "MultiPoint", coordinates: [.[] | [.stop_lon, .stop_lat]]}' \ + > route_${route}_dir${dir_index}_stops + + dir_index=$(($dir_index+1)) + done + + #convert routes.txt entry to json route header + (head -1 routes.txt; grep -e "^${route}," routes.txt ) | + jq -c -R -s -f <(cat << EOF + include "csv2json"; csv2json | .[0] | + { + type: "Feature", + properties: { + route_id: .route_short_name, + agency_id: .agency_id, + route_short_name: .route_short_name, + route_long_name: .route_long_name, + route_type: .route_type, + route_color: "\("#")\(.route_color)", + route_text_color: "\("#")\(.route_text_color)", + }, + geometry: { type: "GeometryCollection", geometries: [] } + } +EOF + ) > route_${route}_header + + #combine header/stops/lines into single geometrycollection for route + filter="'.geometry.geometries += " + spacer="" + slurps="" + dir_index=0 + for dir in $dirs; do + filter="${filter}${spacer}\$stops${dir_index} + \$lines${dir_index}" + slurps="$slurps --slurpfile lines${dir_index} route_${route}_dir${dir_index}_lines" + slurps="$slurps --slurpfile stops${dir_index} route_${route}_dir${dir_index}_stops" + + dir_index=$(($dir_index+1)) + spacer=" + " + done + filter="$filter'" + cmd="jq $filter route_${route}_header "$slurps" > route_${route}_feature" + bash -c "$cmd" + + #add to list of routes + jq -c '.features += $feature' routes.json --slurpfile feature route_${route}_feature > routes.json.tmp + mv routes.json.tmp routes.json + + done +} + +echo "=== RTA ===" +add_features_from_GTFS https://www.norta.com/RTA/media/GTFS/GTFS.zip + +#echo "=== JP TRANSIT ===" +#add_features_from_GTFS https://rideneworleans.org/wp/wp-content/uploads/GTFS-JET-20240913.zip diff --git a/data/routes.json b/data/routes.json index ae32864..0a261ca 100644 --- a/data/routes.json +++ b/data/routes.json @@ -1,43 +1 @@ -{ -"type": "FeatureCollection", -"name": "routes", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "9", "agency_id": "1", "route_short_name": "9", "route_long_name": "Broad - Napoleon", "route_type": 3, "route_color": "#ffc421", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.10408, 29.94738 ], [ -90.103997, 29.947384 ] ], [ [ -90.10408, 29.94738 ], [ -90.10418, 29.94877 ], [ -90.10328, 29.9493 ] ], [ [ -90.1039, 29.94559 ], [ -90.10408, 29.94738 ] ], [ [ -90.1039, 29.94559 ], [ -90.103794, 29.945603 ] ], [ [ -90.10371, 29.94391 ], [ -90.1039, 29.94559 ] ], [ [ -90.10371, 29.94391 ], [ -90.103638, 29.943911 ] ], [ [ -90.10354, 29.94214 ], [ -90.10371, 29.94391 ] ], [ [ -90.10354, 29.94214 ], [ -90.103437, 29.942148 ] ], [ [ -90.10331, 29.93998 ], [ -90.10354, 29.94214 ] ], [ [ -90.10331, 29.93998 ], [ -90.103194, 29.939989 ] ], [ [ -90.10302, 29.93708 ], [ -90.10331, 29.93998 ] ], [ [ -90.10328, 29.9493 ], [ -90.10243, 29.94978 ] ], [ [ -90.10328, 29.9493 ], [ -90.103238, 29.949244 ] ], [ [ -90.10302, 29.93708 ], [ -90.102974, 29.937081 ] ], [ [ -90.10283, 29.93516 ], [ -90.10302, 29.93708 ] ], [ [ -90.10283, 29.93516 ], [ -90.102756, 29.935164 ] ], [ [ -90.10253, 29.93229 ], [ -90.10283, 29.93516 ] ], [ [ -90.10253, 29.93229 ], [ -90.102489, 29.932294 ] ], [ [ -90.10233, 29.93036 ], [ -90.10253, 29.93229 ] ], [ [ -90.10243, 29.94978 ], [ -90.10011, 29.95107 ] ], [ [ -90.10243, 29.94978 ], [ -90.102381, 29.949733 ] ], [ [ -90.10233, 29.93036 ], [ -90.102236, 29.930364 ] ], [ [ -90.10215, 29.92845 ], [ -90.10233, 29.93036 ] ], [ [ -90.10215, 29.92845 ], [ -90.102072, 29.928457 ] ], [ [ -90.10192, 29.92631 ], [ -90.10215, 29.92845 ] ], [ [ -90.10192, 29.92631 ], [ -90.101858, 29.926311 ] ], [ [ -90.10177, 29.92492 ], [ -90.10192, 29.92631 ] ], [ [ -90.10177, 29.92492 ], [ -90.101704, 29.924924 ] ], [ [ -90.10156, 29.92272 ], [ -90.10177, 29.92492 ] ], [ [ -90.10156, 29.92272 ], [ -90.101485, 29.922731 ] ], [ [ -90.10135, 29.92073 ], [ -90.10156, 29.92272 ] ], [ [ -90.10135, 29.92073 ], [ -90.101276, 29.920731 ] ], [ [ -90.10115, 29.91869 ], [ -90.10135, 29.92073 ] ], [ [ -90.10115, 29.91869 ], [ -90.101049, 29.918697 ] ], [ [ -90.07163, 29.98358 ], [ -90.078335, 29.976184 ], [ -90.087123, 29.965985 ], [ -90.087333, 29.965879 ], [ -90.0895, 29.963229 ], [ -90.089745, 29.963135 ], [ -90.089758, 29.962983 ], [ -90.090772, 29.961965 ], [ -90.09472, 29.957185 ], [ -90.098054, 29.952725 ], [ -90.09958, 29.95154 ], [ -90.100462, 29.95105 ], [ -90.100572, 29.951092 ], [ -90.103064, 29.949569 ], [ -90.104019, 29.949147 ], [ -90.104391, 29.948661 ], [ -90.104401, 29.947514 ], [ -90.101788, 29.922779 ], [ -90.101311, 29.917208 ], [ -90.101161, 29.916417 ], [ -90.101032, 29.916345 ], [ -90.100904, 29.916459 ], [ -90.10115, 29.91869 ] ], [ [ -90.10011, 29.95107 ], [ -90.09945, 29.95142 ], [ -90.09836, 29.95169 ] ], [ [ -90.10011, 29.95107 ], [ -90.100074, 29.951022 ] ], [ [ -90.09836, 29.95169 ], [ -90.09807, 29.95188 ], [ -90.09794, 29.95251 ], [ -90.09742, 29.95326 ] ], [ [ -90.09836, 29.95169 ], [ -90.09832, 29.951625 ] ], [ [ -90.09742, 29.95326 ], [ -90.09496, 29.95648 ] ], [ [ -90.09742, 29.95326 ], [ -90.097321, 29.953215 ] ], [ [ -90.09496, 29.95648 ], [ -90.094972, 29.95648 ] ], [ [ -90.09496, 29.95648 ], [ -90.09423, 29.95746 ], [ -90.09409, 29.95785 ], [ -90.09161, 29.96056 ] ], [ [ -90.09161, 29.96056 ], [ -90.09068, 29.96164 ] ], [ [ -90.09161, 29.96056 ], [ -90.09155, 29.96052 ] ], [ [ -90.09068, 29.96164 ], [ -90.08973, 29.96271 ] ], [ [ -90.09068, 29.96164 ], [ -90.090591, 29.961583 ] ], [ [ -90.08973, 29.96271 ], [ -90.08748, 29.965292 ], [ -90.087268, 29.965263 ], [ -90.087314, 29.965487 ], [ -90.08594, 29.96705 ] ], [ [ -90.08973, 29.96271 ], [ -90.089662, 29.96267 ] ], [ [ -90.08594, 29.96705 ], [ -90.08448, 29.96863 ] ], [ [ -90.08594, 29.96705 ], [ -90.085888, 29.967016 ] ], [ [ -90.08448, 29.96863 ], [ -90.08288, 29.97058 ] ], [ [ -90.08448, 29.96863 ], [ -90.084399, 29.968577 ] ], [ [ -90.08288, 29.97058 ], [ -90.08163, 29.97202 ] ], [ [ -90.08288, 29.97058 ], [ -90.082809, 29.970536 ] ], [ [ -90.08163, 29.97202 ], [ -90.08018, 29.9737 ] ], [ [ -90.08163, 29.97202 ], [ -90.081578, 29.971983 ] ], [ [ -90.08018, 29.9737 ], [ -90.076786, 29.977562 ], [ -90.076675, 29.977516 ], [ -90.076728, 29.977639 ], [ -90.07535, 29.97917 ] ], [ [ -90.08018, 29.9737 ], [ -90.080097, 29.973649 ] ], [ [ -90.07535, 29.97917 ], [ -90.07392, 29.98076 ] ], [ [ -90.07535, 29.97917 ], [ -90.07529, 29.979132 ] ], [ [ -90.07392, 29.98076 ], [ -90.07181, 29.98311 ] ], [ [ -90.07392, 29.98076 ], [ -90.073857, 29.980722 ] ], [ [ -90.07181, 29.98311 ], [ -90.068293, 29.987051 ], [ -90.068052, 29.987075 ], [ -90.068124, 29.987258 ], [ -90.06625, 29.9893 ] ], [ [ -90.07181, 29.98311 ], [ -90.071761, 29.983083 ] ], [ [ -90.07163, 29.98358 ], [ -90.071702, 29.983626 ] ], [ [ -90.06682, 29.99042 ], [ -90.06678, 29.98926 ], [ -90.06711, 29.98852 ], [ -90.07163, 29.98358 ] ], [ [ -90.06698, 29.99244 ], [ -90.067033, 29.992438 ] ], [ [ -90.06592, 29.99372 ], [ -90.06696, 29.99309 ], [ -90.06698, 29.99244 ] ], [ [ -90.06698, 29.99244 ], [ -90.06682, 29.99042 ] ], [ [ -90.06682, 29.99042 ], [ -90.06687, 29.990414 ] ], [ [ -90.06625, 29.9893 ], [ -90.0657, 29.99018 ], [ -90.06573, 29.99135 ] ], [ [ -90.06625, 29.9893 ], [ -90.066201, 29.989271 ] ], [ [ -90.06592, 29.99372 ], [ -90.065925, 29.993736 ] ], [ [ -90.06379, 29.99501 ], [ -90.06592, 29.99372 ] ], [ [ -90.06587, 29.99336 ], [ -90.065826, 29.993363 ] ], [ [ -90.06587, 29.99336 ], [ -90.06577, 29.99369 ], [ -90.06393, 29.99478 ] ], [ [ -90.06573, 29.99135 ], [ -90.06587, 29.99336 ] ], [ [ -90.06573, 29.99135 ], [ -90.065662, 29.99135 ] ], [ [ -90.06393, 29.99478 ], [ -90.0626, 29.99566 ] ], [ [ -90.06393, 29.99478 ], [ -90.063885, 29.994724 ] ], [ [ -90.06379, 29.99501 ], [ -90.063796, 29.995052 ] ], [ [ -90.06276, 29.99567 ], [ -90.06379, 29.99501 ] ], [ [ -90.06276, 29.99567 ], [ -90.062784, 29.995688 ] ], [ [ -90.06147, 29.99722 ], [ -90.06276, 29.99567 ] ], [ [ -90.0626, 29.99566 ], [ -90.06077, 29.99785 ] ], [ [ -90.0626, 29.99566 ], [ -90.062539, 29.995623 ] ], [ [ -90.06147, 29.99722 ], [ -90.061486, 29.997226 ] ], [ [ -90.06095, 29.99784 ], [ -90.06147, 29.99722 ] ], [ [ -90.06095, 29.99784 ], [ -90.060965, 29.997896 ] ], [ [ -90.06053, 29.99833 ], [ -90.06095, 29.99784 ] ], [ [ -90.06077, 29.99785 ], [ -90.05951, 29.99935 ] ], [ [ -90.06077, 29.99785 ], [ -90.060741, 29.997768 ] ], [ [ -90.05966, 29.99934 ], [ -90.06053, 29.99833 ] ], [ [ -90.06053, 29.99833 ], [ -90.0606, 29.99929 ], [ -90.05971, 29.99935 ] ], [ [ -90.05971, 29.99935 ], [ -90.059715, 29.999343 ] ], [ [ -90.05971, 29.99935 ], [ -90.05966, 29.99934 ] ], [ [ -90.05893, 29.99999 ], [ -90.05966, 29.99934 ] ], [ [ -90.05951, 29.99935 ], [ -90.05873, 29.99999 ] ], [ [ -90.05951, 29.99935 ], [ -90.059476, 29.999326 ] ], [ [ -90.05893, 29.99999 ], [ -90.058982, 30.000047 ] ], [ [ -90.05786, 30.0008 ], [ -90.05893, 29.99999 ] ], [ [ -90.05873, 29.99999 ], [ -90.0579, 30.00063 ] ], [ [ -90.05873, 29.99999 ], [ -90.058686, 29.999945 ] ], [ [ -90.05786, 30.0008 ], [ -90.057911, 30.000854 ] ], [ [ -90.0579, 30.00063 ], [ -90.05646, 30.00171 ] ], [ [ -90.0579, 30.00063 ], [ -90.057845, 30.00058 ] ], [ [ -90.05668, 30.00171 ], [ -90.05786, 30.0008 ] ], [ [ -90.05668, 30.00171 ], [ -90.056719, 30.001761 ] ], [ [ -90.05476, 30.00263 ], [ -90.05668, 30.00171 ] ], [ [ -90.05646, 30.00171 ], [ -90.05519, 30.00232 ] ], [ [ -90.05646, 30.00171 ], [ -90.05641, 30.001653 ] ], [ [ -90.05519, 30.00232 ], [ -90.05395, 30.00275 ], [ -90.05271, 30.00285 ] ], [ [ -90.05519, 30.00232 ], [ -90.05515, 30.002253 ] ], [ [ -90.05476, 30.00263 ], [ -90.054782, 30.002679 ] ], [ [ -90.05297, 30.00298 ], [ -90.05476, 30.00263 ] ], [ [ -90.05297, 30.00298 ], [ -90.052975, 30.003032 ] ], [ [ -90.05001, 30.00299 ], [ -90.05297, 30.00298 ] ], [ [ -90.05271, 30.00285 ], [ -90.05271, 30.002793 ] ], [ [ -90.05271, 30.00285 ], [ -90.050487, 30.002869 ], [ -90.050402, 30.002754 ], [ -90.050347, 30.002869 ], [ -90.04807, 30.00297 ] ], [ [ -90.05001, 30.00299 ], [ -90.050016, 30.003026 ] ], [ [ -90.04789, 30.00309 ], [ -90.05001, 30.00299 ] ], [ [ -90.04807, 30.00297 ], [ -90.048077, 30.002902 ] ], [ [ -90.04807, 30.00297 ], [ -90.04638, 30.00269 ] ], [ [ -90.04789, 30.00309 ], [ -90.047887, 30.003127 ] ], [ [ -90.0463, 30.00276 ], [ -90.04789, 30.00309 ] ], [ [ -90.04638, 30.00269 ], [ -90.046402, 30.00261 ] ], [ [ -90.04638, 30.00269 ], [ -90.04452, 30.00271 ] ], [ [ -90.0463, 30.00276 ], [ -90.046285, 30.002822 ] ], [ [ -90.04427, 30.00282 ], [ -90.0463, 30.00276 ] ], [ [ -90.04452, 30.00271 ], [ -90.04292, 30.00286 ], [ -90.040197, 30.003695 ], [ -90.030993, 30.007293 ], [ -90.020886, 30.009743 ], [ -90.01759, 30.01022 ] ], [ [ -90.04452, 30.00271 ], [ -90.044514, 30.002621 ] ], [ [ -90.04427, 30.00282 ], [ -90.044277, 30.002865 ] ], [ [ -90.04252, 30.00309 ], [ -90.04427, 30.00282 ] ], [ [ -90.04252, 30.00309 ], [ -90.042546, 30.003173 ] ], [ [ -90.03991, 30.00402 ], [ -90.04252, 30.00309 ] ], [ [ -90.03991, 30.00402 ], [ -90.039948, 30.004092 ] ], [ [ -90.03763, 30.00491 ], [ -90.03991, 30.00402 ] ], [ [ -90.03763, 30.00491 ], [ -90.037659, 30.004976 ] ], [ [ -90.03612, 30.00548 ], [ -90.03763, 30.00491 ] ], [ [ -90.03612, 30.00548 ], [ -90.036162, 30.005565 ] ], [ [ -90.03506, 30.0059 ], [ -90.03612, 30.00548 ] ], [ [ -90.03506, 30.0059 ], [ -90.035102, 30.00597 ] ], [ [ -90.03399, 30.00633 ], [ -90.03506, 30.0059 ] ], [ [ -90.03399, 30.00633 ], [ -90.034019, 30.006378 ] ], [ [ -90.03159, 30.00734 ], [ -90.03399, 30.00633 ] ], [ [ -90.03159, 30.00734 ], [ -90.031608, 30.00739 ] ], [ [ -90.03003, 30.00795 ], [ -90.02997, 30.00779 ], [ -90.03159, 30.00734 ] ], [ [ -90.03003, 30.00795 ], [ -90.03061, 30.0081 ], [ -90.03082, 30.00835 ], [ -90.03082, 30.00876 ], [ -90.03053, 30.00903 ], [ -90.0302, 30.00881 ], [ -90.03003, 30.00795 ] ], [ [ -90.02005, 30.01007 ], [ -90.02854, 30.00804 ], [ -90.03003, 30.00795 ] ], [ [ -90.01749, 30.01037 ], [ -90.02005, 30.01007 ] ], [ [ -90.02005, 30.01007 ], [ -90.020041, 30.010127 ] ], [ [ -90.01759, 30.01022 ], [ -90.01536, 30.01046 ] ], [ [ -90.01759, 30.01022 ], [ -90.017568, 30.010159 ] ], [ [ -90.01749, 30.01037 ], [ -90.017498, 30.010433 ] ], [ [ -90.01519, 30.01062 ], [ -90.01749, 30.01037 ] ], [ [ -90.01536, 30.01046 ], [ -90.012, 30.01082 ] ], [ [ -90.01536, 30.01046 ], [ -90.015347, 30.010392 ] ], [ [ -90.01519, 30.01062 ], [ -90.015202, 30.010682 ] ], [ [ -90.01189, 30.01099 ], [ -90.01519, 30.01062 ] ], [ [ -90.012, 30.01082 ], [ -90.012021, 30.010756 ] ], [ [ -90.012, 30.01082 ], [ -90.00989, 30.01105 ] ], [ [ -90.01189, 30.01099 ], [ -90.011892, 30.011037 ] ], [ [ -90.00968, 30.01122 ], [ -90.01189, 30.01099 ] ], [ [ -90.00989, 30.01105 ], [ -90.00732, 30.01133 ] ], [ [ -90.00989, 30.01105 ], [ -90.009883, 30.010979 ] ], [ [ -90.00968, 30.01122 ], [ -90.009687, 30.011284 ] ], [ [ -90.00702, 30.01149 ], [ -90.00968, 30.01122 ] ], [ [ -90.00732, 30.01133 ], [ -90.00564, 30.01151 ] ], [ [ -90.00732, 30.01133 ], [ -90.007312, 30.011265 ] ], [ [ -90.00702, 30.01149 ], [ -90.007033, 30.011564 ] ], [ [ -90.00559, 30.01165 ], [ -90.00702, 30.01149 ] ], [ [ -90.00564, 30.01151 ], [ -90.00296, 30.0118 ] ], [ [ -90.00564, 30.01151 ], [ -90.005633, 30.01145 ] ], [ [ -90.00559, 30.01165 ], [ -90.005604, 30.011713 ] ], [ [ -90.00279, 30.01196 ], [ -90.00559, 30.01165 ] ], [ [ -90.00296, 30.0118 ], [ -90.0007, 30.01203 ] ], [ [ -90.00296, 30.0118 ], [ -90.002953, 30.011725 ] ], [ [ -90.00279, 30.01196 ], [ -90.002795, 30.012017 ] ], [ [ -90.00052, 30.0122 ], [ -90.00279, 30.01196 ] ], [ [ -90.0007, 30.01203 ], [ -89.99877, 30.01229 ] ], [ [ -90.0007, 30.01203 ], [ -90.000697, 30.011984 ] ], [ [ -90.00052, 30.0122 ], [ -90.000532, 30.012276 ] ], [ [ -89.99842, 30.01249 ], [ -90.00052, 30.0122 ] ], [ [ -89.99877, 30.01229 ], [ -89.99544, 30.01286 ] ], [ [ -89.99877, 30.01229 ], [ -89.998753, 30.012216 ] ], [ [ -89.99842, 30.01249 ], [ -89.998434, 30.012555 ] ], [ [ -89.99465, 30.01317 ], [ -89.99842, 30.01249 ] ], [ [ -89.99544, 30.01286 ], [ -89.99314, 30.01327 ] ], [ [ -89.99544, 30.01286 ], [ -89.995426, 30.012812 ] ], [ [ -89.99465, 30.01317 ], [ -89.994662, 30.013225 ] ], [ [ -89.99294, 30.01345 ], [ -89.99465, 30.01317 ] ], [ [ -89.99314, 30.01327 ], [ -89.99205, 30.01347 ] ], [ [ -89.99314, 30.01327 ], [ -89.993124, 30.013222 ] ], [ [ -89.99294, 30.01345 ], [ -89.992957, 30.013515 ] ], [ [ -89.99185, 30.01365 ], [ -89.99294, 30.01345 ] ], [ [ -89.99205, 30.01347 ], [ -89.98981, 30.01386 ] ], [ [ -89.99205, 30.01347 ], [ -89.992037, 30.013406 ] ], [ [ -89.99185, 30.01365 ], [ -89.991868, 30.013724 ] ], [ [ -89.99002, 30.01397 ], [ -89.99185, 30.01365 ] ], [ [ -89.99002, 30.01397 ], [ -89.990041, 30.014054 ] ], [ [ -89.9877, 30.01438 ], [ -89.99002, 30.01397 ] ], [ [ -89.98981, 30.01386 ], [ -89.98836, 30.01412 ] ], [ [ -89.98981, 30.01386 ], [ -89.9898, 30.01381 ] ], [ [ -89.98836, 30.01412 ], [ -89.98618, 30.0145 ] ], [ [ -89.98836, 30.01412 ], [ -89.988347, 30.014049 ] ], [ [ -89.9877, 30.01438 ], [ -89.987717, 30.014462 ] ], [ [ -89.98594, 30.01468 ], [ -89.9877, 30.01438 ] ], [ [ -89.98618, 30.0145 ], [ -89.98396, 30.01489 ] ], [ [ -89.98618, 30.0145 ], [ -89.98616, 30.014432 ] ], [ [ -89.98594, 30.01468 ], [ -89.985959, 30.014756 ] ], [ [ -89.98456, 30.01493 ], [ -89.98594, 30.01468 ] ], [ [ -89.98456, 30.01493 ], [ -89.984577, 30.014995 ] ], [ [ -89.98379, 30.01507 ], [ -89.98456, 30.01493 ] ], [ [ -89.98396, 30.01489 ], [ -89.98175, 30.01525 ] ], [ [ -89.98396, 30.01489 ], [ -89.983948, 30.01483 ] ], [ [ -89.98379, 30.01507 ], [ -89.983809, 30.015138 ] ], [ [ -89.98051, 30.01563 ], [ -89.98379, 30.01507 ] ], [ [ -89.98175, 30.01525 ], [ -89.981759, 30.015186 ] ], [ [ -89.98175, 30.01525 ], [ -89.97856, 30.01588 ] ], [ [ -89.98051, 30.01563 ], [ -89.980523, 30.015705 ] ], [ [ -89.9784, 30.01604 ], [ -89.98051, 30.01563 ] ], [ [ -89.97856, 30.01588 ], [ -89.97564, 30.01657 ] ], [ [ -89.97856, 30.01588 ], [ -89.978548, 30.015833 ] ], [ [ -89.9784, 30.01604 ], [ -89.978419, 30.0161 ] ], [ [ -89.97538, 30.01675 ], [ -89.9784, 30.01604 ] ], [ [ -89.97564, 30.01657 ], [ -89.97333, 30.01715 ] ], [ [ -89.97564, 30.01657 ], [ -89.975618, 30.016506 ] ], [ [ -89.97538, 30.01675 ], [ -89.97541, 30.016826 ] ], [ [ -89.97325, 30.01729 ], [ -89.97538, 30.01675 ] ], [ [ -89.97492, 30.02957 ], [ -89.97496, 30.029613 ] ], [ [ -89.97079, 30.02993 ], [ -89.97225, 30.03202 ], [ -89.97216, 30.032174 ], [ -89.9723, 30.0321 ], [ -89.97293, 30.03298 ], [ -89.976, 30.03123 ], [ -89.97492, 30.02957 ] ], [ [ -89.97492, 30.02957 ], [ -89.97502, 30.0295 ], [ -89.97488, 30.02938 ], [ -89.97196, 30.03124 ], [ -89.97114, 30.03009 ] ], [ [ -89.97333, 30.01715 ], [ -89.97063, 30.01782 ] ], [ [ -89.97333, 30.01715 ], [ -89.973311, 30.017074 ] ], [ [ -89.97325, 30.01729 ], [ -89.973266, 30.017358 ] ], [ [ -89.97034, 30.018 ], [ -89.97325, 30.01729 ] ], [ [ -89.97114, 30.03009 ], [ -89.971184, 30.029961 ] ], [ [ -89.97114, 30.03009 ], [ -89.96909, 30.02715 ] ], [ [ -89.97079, 30.02993 ], [ -89.970655, 30.029999 ] ], [ [ -89.96925, 30.0277 ], [ -89.97079, 30.02993 ] ], [ [ -89.97063, 30.01782 ], [ -89.96794, 30.01849 ], [ -89.96825, 30.0214 ] ], [ [ -89.97063, 30.01782 ], [ -89.970603, 30.017735 ] ], [ [ -89.97034, 30.018 ], [ -89.970367, 30.018072 ] ], [ [ -89.96839, 30.02139 ], [ -89.9681, 30.01857 ], [ -89.97034, 30.018 ] ], [ [ -89.96925, 30.0277 ], [ -89.969169, 30.027743 ] ], [ [ -89.96854, 30.02426 ], [ -89.96879, 30.02686 ], [ -89.96925, 30.0277 ] ], [ [ -89.96909, 30.02715 ], [ -89.969166, 30.02713 ] ], [ [ -89.96909, 30.02715 ], [ -89.96894, 30.0268 ], [ -89.9687, 30.02444 ] ], [ [ -89.9687, 30.02444 ], [ -89.968769, 30.024437 ] ], [ [ -89.9687, 30.02444 ], [ -89.96839, 30.02139 ] ], [ [ -89.96854, 30.02426 ], [ -89.968426, 30.024349 ] ], [ [ -89.96825, 30.0214 ], [ -89.96854, 30.02426 ] ], [ [ -89.96839, 30.02139 ], [ -89.968473, 30.021384 ] ], [ [ -89.96825, 30.0214 ], [ -89.968193, 30.021403 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "66", "agency_id": "1", "route_short_name": "66", "route_long_name": "Hayne Loop", "route_type": 3, "route_color": "#af7022", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.02679, 30.0327 ], [ -90.026841, 30.032689 ] ], [ [ -90.02679, 30.0327 ], [ -90.026733, 30.03285 ], [ -90.025076, 30.033489 ], [ -90.021668, 30.03439 ], [ -90.019765, 30.035035 ], [ -90.01962, 30.034946 ], [ -90.019599, 30.035084 ], [ -90.017598, 30.035697 ], [ -90.01733, 30.03564 ], [ -90.01739, 30.03578 ], [ -90.01362, 30.03704 ] ], [ [ -89.99281, 30.02861 ], [ -89.994665, 30.032046 ], [ -89.9946, 30.032166 ], [ -89.994875, 30.032394 ], [ -89.995985, 30.03454 ], [ -89.996216, 30.034451 ], [ -89.995561, 30.0333 ], [ -89.995549, 30.033055 ], [ -89.9944, 30.031148 ], [ -89.994626, 30.031051 ], [ -89.99469, 30.03038 ], [ -89.99489, 30.03019 ], [ -89.99651, 30.02926 ], [ -89.99749, 30.02891 ], [ -89.99959, 30.02842 ], [ -90.00703, 30.02712 ], [ -90.0104, 30.02669 ], [ -90.01313, 30.02692 ], [ -90.01537, 30.02757 ], [ -90.01584, 30.02749 ], [ -90.017444, 30.028058 ], [ -90.018241, 30.028065 ], [ -90.020801, 30.027416 ], [ -90.020931, 30.027287 ], [ -90.024461, 30.02627 ], [ -90.02679, 30.0327 ] ], [ [ -90.01362, 30.03704 ], [ -90.01352, 30.03684 ], [ -90.013662, 30.036791 ] ], [ [ -90.01362, 30.03704 ], [ -90.01079, 30.03801 ] ], [ [ -90.01079, 30.03801 ], [ -90.00777, 30.0391 ], [ -90.00771, 30.03897 ] ], [ [ -90.01079, 30.03801 ], [ -90.010751, 30.037939 ] ], [ [ -90.00771, 30.03897 ], [ -90.00783, 30.038933 ] ], [ [ -90.00771, 30.03897 ], [ -90.0076, 30.0387 ], [ -90.0074, 30.03878 ], [ -90.00757, 30.03917 ], [ -90.00223, 30.04122 ] ], [ [ -90.00223, 30.04122 ], [ -90.00216, 30.04108 ], [ -90.002267, 30.041038 ] ], [ [ -90.00223, 30.04122 ], [ -89.99873, 30.04263 ], [ -89.998673, 30.042513 ], [ -89.998313, 30.042809 ], [ -89.996799, 30.043349 ], [ -89.996298, 30.043666 ], [ -89.993661, 30.044732 ], [ -89.988187, 30.04732 ], [ -89.987779, 30.047413 ], [ -89.98683, 30.04799 ], [ -89.98548, 30.048522 ], [ -89.985388, 30.048673 ], [ -89.984061, 30.049131 ], [ -89.983999, 30.049341 ], [ -89.980662, 30.051045 ], [ -89.980437, 30.050921 ], [ -89.980356, 30.051216 ], [ -89.979026, 30.051927 ], [ -89.978738, 30.051765 ], [ -89.978766, 30.052043 ], [ -89.975858, 30.053613 ], [ -89.975592, 30.053562 ], [ -89.975513, 30.053784 ], [ -89.973045, 30.055168 ], [ -89.97256, 30.05528 ], [ -89.97265, 30.05541 ], [ -89.97133, 30.05618 ] ], [ [ -89.99281, 30.02861 ], [ -89.992713, 30.028642 ] ], [ [ -89.98726, 30.02839 ], [ -89.989754, 30.027966 ], [ -89.99175, 30.027199 ], [ -89.992082, 30.027408 ], [ -89.99281, 30.02861 ] ], [ [ -89.98726, 30.02839 ], [ -89.987274, 30.028456 ] ], [ [ -89.98187, 30.02927 ], [ -89.98726, 30.02839 ] ], [ [ -89.98187, 30.02927 ], [ -89.981881, 30.029334 ] ], [ [ -89.97753, 30.03039 ], [ -89.97931, 30.02967 ], [ -89.98187, 30.02927 ] ], [ [ -89.97753, 30.03039 ], [ -89.97758, 30.030459 ] ], [ [ -89.97600891824797, 30.03122521981906 ], [ -89.97753, 30.03039 ] ], [ [ -89.973705694736978, 30.032545673684101 ], [ -89.97426, 30.0322 ], [ -89.97502, 30.03176 ], [ -89.97600891824797, 30.03122521981906 ] ], [ [ -89.973705694736978, 30.032545673684101 ], [ -89.97600891824797, 30.03122521981906 ] ], [ [ -89.97600891824797, 30.03122521981906 ], [ -89.97496, 30.029613 ], [ -89.974746, 30.029507 ], [ -89.971782, 30.031343 ], [ -89.972222, 30.031969 ], [ -89.97216, 30.032174 ], [ -89.9723, 30.0321 ], [ -89.97293, 30.03298 ], [ -89.973432405857807, 30.032708158995792 ] ], [ [ -89.973432405857807, 30.032708158995792 ], [ -89.973705694736978, 30.032545673684101 ] ], [ [ -89.973432405857807, 30.032708158995792 ], [ -89.97354, 30.03265 ], [ -89.973705694736978, 30.032545673684101 ] ], [ [ -89.96126, 30.03505 ], [ -89.96268, 30.03419 ], [ -89.96427, 30.03364 ], [ -89.96765, 30.03299 ], [ -89.967795, 30.033065 ], [ -89.96878, 30.032916 ], [ -89.970582, 30.033262 ], [ -89.971744, 30.033318 ], [ -89.972833, 30.033037 ], [ -89.973432405857807, 30.032708158995792 ] ], [ [ -89.97133, 30.05618 ], [ -89.97018, 30.05685 ] ], [ [ -89.97133, 30.05618 ], [ -89.971275, 30.05611 ] ], [ [ -89.97018, 30.05685 ], [ -89.969992, 30.056908 ] ], [ [ -89.97018, 30.05685 ], [ -89.95949, 30.04403 ] ], [ [ -89.96126, 30.03505 ], [ -89.961308, 30.035108 ] ], [ [ -89.95795, 30.03708 ], [ -89.96126, 30.03505 ] ], [ [ -89.95949, 30.04403 ], [ -89.95957, 30.04398 ] ], [ [ -89.95949, 30.04403 ], [ -89.95538, 30.03903 ] ], [ [ -89.95795, 30.03708 ], [ -89.957996, 30.037139 ] ], [ [ -89.95538, 30.03903 ], [ -89.95522, 30.03882 ], [ -89.95795, 30.03708 ] ], [ [ -89.95538, 30.03903 ], [ -89.955431, 30.038995 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "67", "agency_id": "1", "route_short_name": "67", "route_long_name": "Michoud Loop", "route_type": 3, "route_color": "#00b1b0", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.97492, 30.02957 ], [ -89.97496, 30.029613 ] ], [ [ -89.96778, 30.03298 ], [ -89.96912, 30.03294 ], [ -89.97135, 30.03334 ], [ -89.97204, 30.03327 ], [ -89.97293, 30.03298 ], [ -89.976, 30.03123 ], [ -89.97492, 30.02957 ] ], [ [ -89.97492, 30.02957 ], [ -89.97502, 30.0295 ], [ -89.97488, 30.02938 ], [ -89.97359, 30.03022 ] ], [ [ -89.97359, 30.03022 ], [ -89.9718, 30.03134 ], [ -89.97225, 30.03202 ], [ -89.97216, 30.032174 ], [ -89.9723, 30.0321 ], [ -89.97275, 30.03274 ], [ -89.97249, 30.03288 ], [ -89.97189, 30.03308 ], [ -89.97117, 30.03314 ], [ -89.96937, 30.03279 ], [ -89.9681, 30.03276 ] ], [ [ -89.97359, 30.03022 ], [ -89.973563, 30.030193 ] ], [ [ -89.9681, 30.03276 ], [ -89.96368, 30.03358 ], [ -89.96277, 30.03388 ], [ -89.96141, 30.03459 ] ], [ [ -89.9681, 30.03276 ], [ -89.968094, 30.032694 ] ], [ [ -89.96778, 30.03298 ], [ -89.967795, 30.033065 ] ], [ [ -89.96126, 30.03505 ], [ -89.96236, 30.03436 ], [ -89.96351, 30.03384 ], [ -89.96778, 30.03298 ] ], [ [ -89.96242, 30.04755 ], [ -89.962511, 30.047538 ] ], [ [ -89.96012, 30.04512 ], [ -89.96249, 30.04799 ], [ -89.96269, 30.04786 ], [ -89.96242, 30.04755 ] ], [ [ -89.96242, 30.04755 ], [ -89.96029, 30.04498 ] ], [ [ -89.96141, 30.03459 ], [ -89.95507, 30.03865 ] ], [ [ -89.96141, 30.03459 ], [ -89.961367, 30.03454 ] ], [ [ -89.96126, 30.03505 ], [ -89.961308, 30.035108 ] ], [ [ -89.95795, 30.03708 ], [ -89.96126, 30.03505 ] ], [ [ -89.96012, 30.04512 ], [ -89.96029, 30.04498 ] ], [ [ -89.96029, 30.04498 ], [ -89.95949, 30.04403 ] ], [ [ -89.9565, 30.04078 ], [ -89.96012, 30.04512 ] ], [ [ -89.95949, 30.04403 ], [ -89.95957, 30.04398 ] ], [ [ -89.95949, 30.04403 ], [ -89.95538, 30.03903 ] ], [ [ -89.95795, 30.03708 ], [ -89.957996, 30.037139 ] ], [ [ -89.95522, 30.03882 ], [ -89.95795, 30.03708 ] ], [ [ -89.95598, 30.04015 ], [ -89.9565, 30.04078 ] ], [ [ -89.95645, 30.04072 ], [ -89.9565, 30.04078 ] ], [ [ -89.95645, 30.04072 ], [ -89.956384, 30.040767 ] ], [ [ -89.95598, 30.04015 ], [ -89.956332, 30.040578 ], [ -89.95645, 30.04072 ] ], [ [ -89.95533, 30.0394 ], [ -89.95598, 30.04015 ] ], [ [ -89.95538, 30.03903 ], [ -89.955431, 30.038995 ] ], [ [ -89.95538, 30.03903 ], [ -89.95522, 30.03882 ] ], [ [ -89.955241999999316, 30.039295999999183 ], [ -89.95533, 30.0394 ] ], [ [ -89.955241999999316, 30.039295999999183 ], [ -89.95533, 30.0394 ] ], [ [ -89.955219018867879, 30.03926879245277 ], [ -89.955241999999316, 30.039295999999183 ] ], [ [ -89.955219018867879, 30.03926879245277 ], [ -89.955241999999316, 30.039295999999183 ] ], [ [ -89.95522, 30.03882 ], [ -89.95507, 30.03865 ] ], [ [ -89.95507, 30.03865 ], [ -89.95484, 30.0388 ], [ -89.955219018867879, 30.03926879245277 ] ], [ [ -89.93059, 30.04912 ], [ -89.93196, 30.04847 ], [ -89.94343, 30.04031 ], [ -89.94446, 30.03972 ], [ -89.94547, 30.03944 ], [ -89.94627, 30.03939 ], [ -89.9522, 30.04007 ], [ -89.95362, 30.03977 ], [ -89.954979, 30.038986 ], [ -89.955219018867879, 30.03926879245277 ] ], [ [ -89.95507, 30.03865 ], [ -89.95508, 30.038628 ] ], [ [ -89.95507, 30.03865 ], [ -89.95343, 30.03669 ] ], [ [ -89.95343, 30.03669 ], [ -89.953499, 30.036651 ] ], [ [ -89.95343, 30.03669 ], [ -89.95098, 30.03376 ], [ -89.95107618238022, 30.033705038639873 ] ], [ [ -89.95107618238022, 30.033705038639873 ], [ -89.95112, 30.03368 ], [ -89.95116, 30.03374 ], [ -89.95107618238022, 30.033705038639873 ] ], [ [ -89.95107618238022, 30.033705038639873 ], [ -89.950857, 30.033613 ], [ -89.949553, 30.031907 ], [ -89.949129, 30.03154 ], [ -89.948379, 30.030319 ], [ -89.94816, 30.029402 ], [ -89.94788, 30.02662 ] ], [ [ -89.94788, 30.02662 ], [ -89.94796, 30.026614 ] ], [ [ -89.94788, 30.02662 ], [ -89.94765, 30.02404 ], [ -89.94408, 30.02527 ], [ -89.94304, 30.02544 ], [ -89.94094, 30.02509 ], [ -89.94033, 30.02475 ], [ -89.93989, 30.0243 ], [ -89.93955, 30.02348 ], [ -89.93956, 30.02035 ], [ -89.93981, 30.01973 ], [ -89.94027, 30.01917 ], [ -89.94217, 30.01777 ], [ -89.94223, 30.01749 ], [ -89.94205, 30.01712 ], [ -89.94044, 30.01758 ], [ -89.93876, 30.01772 ], [ -89.93674, 30.01752 ], [ -89.9343, 30.01688 ], [ -89.93361, 30.01684 ], [ -89.93277, 30.01698 ], [ -89.93174, 30.01757 ], [ -89.929147, 30.019644 ], [ -89.920839, 30.023871 ], [ -89.91906, 30.02528 ] ], [ [ -89.93089, 30.05318 ], [ -89.931043, 30.053173 ] ], [ [ -89.93043, 30.05836 ], [ -89.93092, 30.05592 ], [ -89.93089, 30.05318 ] ], [ [ -89.93089, 30.05318 ], [ -89.93059, 30.04912 ] ], [ [ -89.93059, 30.04912 ], [ -89.930647, 30.049232 ] ], [ [ -89.93051, 30.04382 ], [ -89.930453, 30.043822 ] ], [ [ -89.93051, 30.04382 ], [ -89.93014, 30.04762 ], [ -89.93078, 30.05472 ], [ -89.93058, 30.05685 ], [ -89.93029, 30.0581 ] ], [ [ -89.93017, 30.04028 ], [ -89.93051, 30.04382 ] ], [ [ -89.93043, 30.05836 ], [ -89.93048, 30.058377 ] ], [ [ -89.92684, 30.06398 ], [ -89.92628, 30.06463 ], [ -89.92644, 30.06474 ], [ -89.92879, 30.06185 ], [ -89.92969, 30.06026 ], [ -89.93043, 30.05836 ] ], [ [ -89.93029, 30.0581 ], [ -89.92952, 30.06013 ], [ -89.92838, 30.06208 ] ], [ [ -89.93029, 30.0581 ], [ -89.930208, 30.05808 ] ], [ [ -89.93017, 30.04028 ], [ -89.930119, 30.040284 ] ], [ [ -89.92964, 30.03701 ], [ -89.92981, 30.03695 ], [ -89.92984, 30.03709 ], [ -89.93017, 30.04028 ] ], [ [ -89.92964, 30.03701 ], [ -89.929655, 30.037035 ] ], [ [ -89.92359, 30.03884 ], [ -89.92964, 30.03701 ] ], [ [ -89.92838, 30.06208 ], [ -89.92684, 30.06398 ] ], [ [ -89.92838, 30.06208 ], [ -89.928311, 30.06205 ] ], [ [ -89.92684, 30.06398 ], [ -89.926833, 30.063922 ] ], [ [ -89.92359, 30.03884 ], [ -89.923603, 30.038871 ] ], [ [ -89.91926, 30.04015 ], [ -89.92359, 30.03884 ] ], [ [ -89.91926, 30.04015 ], [ -89.919294, 30.040214 ] ], [ [ -89.91693, 30.04085 ], [ -89.91926, 30.04015 ] ], [ [ -89.91906, 30.02528 ], [ -89.90847, 30.03485 ] ], [ [ -89.91906, 30.02528 ], [ -89.918973, 30.025208 ] ], [ [ -89.91693, 30.04085 ], [ -89.916939, 30.040869 ] ], [ [ -89.9124, 30.03869 ], [ -89.91364, 30.04184 ], [ -89.91693, 30.04085 ] ], [ [ -89.9124, 30.03869 ], [ -89.912303, 30.03872 ] ], [ [ -89.91135, 30.03649 ], [ -89.91144, 30.03646 ], [ -89.9124, 30.03869 ] ], [ [ -89.91135, 30.03649 ], [ -89.911378, 30.036545 ] ], [ [ -89.90933, 30.03713 ], [ -89.91135, 30.03649 ] ], [ [ -89.90933, 30.03713 ], [ -89.90936, 30.0372 ] ], [ [ -89.90847, 30.03485 ], [ -89.9054, 30.03758 ], [ -89.9053, 30.03805 ], [ -89.90545, 30.03836 ], [ -89.90933, 30.03713 ] ], [ [ -89.90847, 30.03485 ], [ -89.908391, 30.034789 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "11", "agency_id": "1", "route_short_name": "11", "route_long_name": "Magazine", "route_type": 3, "route_color": "#9b5aa5", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.12756, 29.91653 ], [ -90.127489568345311, 29.916510791366896 ] ], [ [ -90.12756, 29.91653 ], [ -90.12654, 29.91865 ], [ -90.12345, 29.91754 ] ], [ [ -90.127489568345311, 29.916510791366896 ], [ -90.12756, 29.91653 ] ], [ [ -90.127489568345311, 29.916510791366896 ], [ -90.12756, 29.91653 ] ], [ [ -90.12324125519288, 29.917487501483681 ], [ -90.124052, 29.915568 ], [ -90.127489568345311, 29.916510791366896 ] ], [ [ -90.12345, 29.91754 ], [ -90.123476, 29.91749 ] ], [ [ -90.12345, 29.91754 ], [ -90.12324125519288, 29.917487501483681 ] ], [ [ -90.1231373621155, 29.91745785590933 ], [ -90.12324125519288, 29.917487501483681 ] ], [ [ -90.12324125519288, 29.917487501483681 ], [ -90.1231373621155, 29.91745785590933 ] ], [ [ -90.12203, 29.91714 ], [ -90.122892, 29.91738 ], [ -90.1231373621155, 29.91745785590933 ] ], [ [ -90.1231373621155, 29.91745785590933 ], [ -90.12203, 29.91714 ] ], [ [ -90.12203, 29.91714 ], [ -90.12115, 29.91697 ] ], [ [ -90.12115, 29.91697 ], [ -90.12041, 29.9168 ] ], [ [ -90.12022, 29.91676 ], [ -90.12115, 29.91697 ] ], [ [ -90.12041, 29.9168 ], [ -90.120426, 29.916765 ] ], [ [ -90.12041, 29.9168 ], [ -90.12022, 29.91676 ] ], [ [ -90.12022, 29.91676 ], [ -90.119505876777296, 29.916620616113761 ] ], [ [ -90.12006, 29.91673 ], [ -90.12022, 29.91676 ] ], [ [ -90.12006, 29.91673 ], [ -90.120045, 29.916796 ] ], [ [ -90.119505876777296, 29.916620616113761 ], [ -90.12006, 29.91673 ] ], [ [ -90.11925, 29.91657 ], [ -90.119505876777296, 29.916620616113761 ] ], [ [ -90.119505876777296, 29.916620616113761 ], [ -90.11925, 29.91657 ] ], [ [ -90.11852026943005, 29.91643887737477 ], [ -90.11925, 29.91657 ] ], [ [ -90.11925, 29.91657 ], [ -90.11852, 29.91644 ] ], [ [ -90.11852026943005, 29.91643887737477 ], [ -90.118538, 29.916365 ] ], [ [ -90.11852, 29.91644 ], [ -90.11852026943005, 29.91643887737477 ] ], [ [ -90.11836, 29.91641 ], [ -90.11852026943005, 29.91643887737477 ] ], [ [ -90.11852, 29.91644 ], [ -90.11836, 29.91641 ] ], [ [ -90.11821, 29.91641 ], [ -90.11836, 29.91641 ] ], [ [ -90.11836, 29.91641 ], [ -90.118210129793198, 29.916413288094748 ] ], [ [ -90.118210129793198, 29.916413288094748 ], [ -90.118213, 29.916486 ] ], [ [ -90.118210129793198, 29.916413288094748 ], [ -90.117411386973259, 29.916428452107287 ] ], [ [ -90.11821, 29.91641 ], [ -90.118210129793198, 29.916413288094748 ] ], [ [ -90.117411386973259, 29.916428452107287 ], [ -90.11821, 29.91641 ] ], [ [ -90.117411386973259, 29.916428452107287 ], [ -90.117264783132484, 29.916431674698782 ] ], [ [ -90.117264783132484, 29.916431674698782 ], [ -90.117411386973259, 29.916428452107287 ] ], [ [ -90.116389919685361, 29.916444377975559 ], [ -90.117264783132484, 29.916431674698782 ] ], [ [ -90.117264783132484, 29.916431674698782 ], [ -90.11639, 29.91645 ] ], [ [ -90.11639, 29.91645 ], [ -90.11621, 29.91645 ], [ -90.116166298152976, 29.916609015831266 ] ], [ [ -90.11639, 29.91645 ], [ -90.116389919685361, 29.916444377975559 ] ], [ [ -90.116166298152976, 29.916609015831266 ], [ -90.116209, 29.916447 ], [ -90.116389919685361, 29.916444377975559 ] ], [ [ -90.116389919685361, 29.916444377975559 ], [ -90.116389, 29.91638 ] ], [ [ -90.116166298152976, 29.916609015831266 ], [ -90.114961186166553, 29.920847495870618 ] ], [ [ -90.114961186166553, 29.920847495870618 ], [ -90.115094, 29.920867 ], [ -90.116166298152976, 29.916609015831266 ] ], [ [ -90.114961186166553, 29.920847495870618 ], [ -90.114949098288449, 29.920848244019613 ] ], [ [ -90.114949098288449, 29.920848244019613 ], [ -90.114961186166553, 29.920847495870618 ] ], [ [ -90.114897052166768, 29.920839860751681 ], [ -90.114949098288449, 29.920848244019613 ] ], [ [ -90.114949098288449, 29.920848244019613 ], [ -90.114897052166768, 29.920839860751681 ] ], [ [ -90.114811, 29.920826 ], [ -90.114897052166768, 29.920839860751681 ] ], [ [ -90.114897052166768, 29.920839860751681 ], [ -90.114811, 29.920826 ] ], [ [ -90.114811, 29.920826 ], [ -90.11377, 29.92066 ] ], [ [ -90.11377, 29.92066 ], [ -90.113638062015383, 29.920638348837169 ] ], [ [ -90.113638062015383, 29.920638348837169 ], [ -90.11377, 29.92066 ] ], [ [ -90.112850544284981, 29.920506625432957 ], [ -90.113638062015383, 29.920638348837169 ] ], [ [ -90.113638062015383, 29.920638348837169 ], [ -90.11285, 29.92051 ] ], [ [ -90.112850544284981, 29.920506625432957 ], [ -90.11286, 29.920448 ] ], [ [ -90.11285, 29.92051 ], [ -90.112850544284981, 29.920506625432957 ] ], [ [ -90.11275, 29.92049 ], [ -90.112850544284981, 29.920506625432957 ] ], [ [ -90.11285, 29.92051 ], [ -90.11275, 29.92049 ] ], [ [ -90.11265, 29.92049 ], [ -90.11275, 29.92049 ] ], [ [ -90.11275, 29.92049 ], [ -90.1121, 29.92045 ] ], [ [ -90.11265, 29.92049 ], [ -90.112647, 29.920517 ] ], [ [ -90.1121, 29.92045 ], [ -90.11265, 29.92049 ] ], [ [ -90.1121, 29.92045 ], [ -90.11101, 29.9204 ] ], [ [ -90.110863333333242, 29.920395333333325 ], [ -90.11101, 29.9204 ] ], [ [ -90.11101, 29.9204 ], [ -90.110863333333242, 29.920395333333325 ] ], [ [ -90.110863333333242, 29.920395333333325 ], [ -90.11013, 29.92037 ] ], [ [ -90.11005, 29.92037 ], [ -90.110863333333242, 29.920395333333325 ] ], [ [ -90.11013, 29.92037 ], [ -90.110135, 29.9203 ] ], [ [ -90.11013, 29.92037 ], [ -90.11005, 29.92037 ] ], [ [ -90.10991, 29.92036 ], [ -90.11005, 29.92037 ] ], [ [ -90.11005, 29.92037 ], [ -90.109910101899018, 29.920365502547469 ] ], [ [ -90.109910101899018, 29.920365502547469 ], [ -90.109911, 29.920414 ] ], [ [ -90.10991, 29.92036 ], [ -90.109910101899018, 29.920365502547469 ] ], [ [ -90.109910101899018, 29.920365502547469 ], [ -90.10909, 29.92034 ] ], [ [ -90.10909, 29.92034 ], [ -90.10991, 29.92036 ] ], [ [ -90.108130399892417, 29.920296172458283 ], [ -90.10909, 29.92034 ] ], [ [ -90.10909, 29.92034 ], [ -90.10813, 29.9203 ] ], [ [ -90.108130399892417, 29.920296172458283 ], [ -90.108137, 29.920233 ] ], [ [ -90.10813, 29.9203 ], [ -90.108130399892417, 29.920296172458283 ] ], [ [ -90.10799, 29.92029 ], [ -90.108130399892417, 29.920296172458283 ] ], [ [ -90.10813, 29.9203 ], [ -90.10799, 29.92029 ] ], [ [ -90.10799, 29.92029 ], [ -90.107795, 29.920305 ], [ -90.107535000000809, 29.920325 ] ], [ [ -90.10786, 29.9203 ], [ -90.10799, 29.92029 ] ], [ [ -90.10786, 29.9203 ], [ -90.107863, 29.92036 ] ], [ [ -90.107535000000809, 29.920325 ], [ -90.107698, 29.920313 ], [ -90.10786, 29.9203 ] ], [ [ -90.10753499999916, 29.920325 ], [ -90.107535000000809, 29.920325 ] ], [ [ -90.107535000000809, 29.920325 ], [ -90.10753499999916, 29.920325 ] ], [ [ -90.10753499999916, 29.920325 ], [ -90.10721, 29.92035 ] ], [ [ -90.10721, 29.92035 ], [ -90.10753499999916, 29.920325 ] ], [ [ -90.10721, 29.92035 ], [ -90.107022400000204, 29.920367399999989 ] ], [ [ -90.107022400000204, 29.920367399999989 ], [ -90.10721, 29.92035 ] ], [ [ -90.106229944717441, 29.920439570024552 ], [ -90.106385, 29.920425 ], [ -90.107022400000204, 29.920367399999989 ] ], [ [ -90.107022400000204, 29.920367399999989 ], [ -90.10623, 29.92044 ] ], [ [ -90.10623, 29.92044 ], [ -90.10611, 29.92045 ] ], [ [ -90.10623, 29.92044 ], [ -90.106229944717441, 29.920439570024552 ] ], [ [ -90.10611, 29.92045 ], [ -90.106229944717441, 29.920439570024552 ] ], [ [ -90.106229944717441, 29.920439570024552 ], [ -90.106221, 29.92037 ] ], [ [ -90.10596, 29.92046 ], [ -90.10611, 29.92045 ] ], [ [ -90.10611, 29.92045 ], [ -90.105960023242289, 29.920460557815225 ] ], [ [ -90.105960023242289, 29.920460557815225 ], [ -90.105962, 29.920508 ] ], [ [ -90.105960023242289, 29.920460557815225 ], [ -90.105753999999294, 29.920475 ] ], [ [ -90.10596, 29.92046 ], [ -90.105960023242289, 29.920460557815225 ] ], [ [ -90.105753999999294, 29.920475 ], [ -90.10596, 29.92046 ] ], [ [ -90.105753999999294, 29.920475 ], [ -90.105693923077283, 29.920479230769185 ] ], [ [ -90.105693923077283, 29.920479230769185 ], [ -90.105753999999294, 29.920475 ] ], [ [ -90.105346276595952, 29.920503617021243 ], [ -90.105693923077283, 29.920479230769185 ] ], [ [ -90.105693923077283, 29.920479230769185 ], [ -90.105346276595952, 29.920503617021243 ] ], [ [ -90.105346276595952, 29.920503617021243 ], [ -90.105151230769252, 29.920517307692304 ] ], [ [ -90.105151230769252, 29.920517307692304 ], [ -90.105346276595952, 29.920503617021243 ] ], [ [ -90.10497, 29.92053 ], [ -90.105151230769252, 29.920517307692304 ] ], [ [ -90.105151230769252, 29.920517307692304 ], [ -90.10497, 29.92053 ] ], [ [ -90.10497, 29.92053 ], [ -90.10405, 29.9206 ] ], [ [ -90.103949979674795, 29.92060952574527 ], [ -90.10405, 29.9206 ] ], [ [ -90.10405, 29.9206 ], [ -90.10395, 29.92061 ] ], [ [ -90.10395, 29.92061 ], [ -90.10384, 29.92062 ] ], [ [ -90.10395, 29.92061 ], [ -90.103949979674795, 29.92060952574527 ] ], [ [ -90.10384, 29.92062 ], [ -90.103949979674795, 29.92060952574527 ] ], [ [ -90.103949979674795, 29.92060952574527 ], [ -90.103947, 29.92054 ] ], [ [ -90.10384, 29.92062 ], [ -90.103042499999731, 29.920685 ] ], [ [ -90.10373, 29.92063 ], [ -90.10384, 29.92062 ] ], [ [ -90.10373, 29.92063 ], [ -90.103733, 29.920682 ] ], [ [ -90.103042499999731, 29.920685 ], [ -90.10373, 29.92063 ] ], [ [ -90.10273, 29.92071 ], [ -90.103042499999731, 29.920685 ] ], [ [ -90.103042499999731, 29.920685 ], [ -90.10273, 29.92071 ] ], [ [ -90.101689078677978, 29.920783682363258 ], [ -90.10273, 29.92071 ] ], [ [ -90.10273, 29.92071 ], [ -90.10169, 29.92079 ] ], [ [ -90.10169, 29.92079 ], [ -90.1016, 29.92079 ] ], [ [ -90.10169, 29.92079 ], [ -90.101689078677978, 29.920783682363258 ] ], [ [ -90.1016, 29.92079 ], [ -90.101689078677978, 29.920783682363258 ] ], [ [ -90.101689078677978, 29.920783682363258 ], [ -90.101676, 29.920694 ] ], [ [ -90.1016, 29.92079 ], [ -90.10123, 29.92081 ] ], [ [ -90.10123, 29.92081 ], [ -90.10021, 29.92089 ] ], [ [ -90.10102, 29.92083 ], [ -90.10123, 29.92081 ] ], [ [ -90.10102, 29.92083 ], [ -90.101046, 29.92104 ] ], [ [ -90.10021, 29.92089 ], [ -90.10102, 29.92083 ] ], [ [ -90.10021, 29.92089 ], [ -90.09924, 29.92097 ] ], [ [ -90.09924, 29.92097 ], [ -90.09912, 29.92099 ] ], [ [ -90.09924, 29.92097 ], [ -90.099229, 29.920913 ] ], [ [ -90.09912, 29.92099 ], [ -90.0981, 29.92106 ] ], [ [ -90.09901, 29.921 ], [ -90.09912, 29.92099 ] ], [ [ -90.09901, 29.921 ], [ -90.099015, 29.921044 ] ], [ [ -90.0981, 29.92106 ], [ -90.09901, 29.921 ] ], [ [ -90.0981, 29.92106 ], [ -90.09797, 29.92107 ] ], [ [ -90.096929874371867, 29.921149246231138 ], [ -90.09797, 29.92107 ] ], [ [ -90.09797, 29.92107 ], [ -90.09693, 29.92115 ] ], [ [ -90.096920194319878, 29.921151225710009 ], [ -90.096933, 29.921232 ] ], [ [ -90.09693, 29.92115 ], [ -90.096920194319878, 29.921151225710009 ] ], [ [ -90.09693, 29.92115 ], [ -90.096929874371867, 29.921149246231138 ] ], [ [ -90.09692, 29.92115 ], [ -90.096929874371867, 29.921149246231138 ] ], [ [ -90.096929874371867, 29.921149246231138 ], [ -90.096921, 29.921096 ] ], [ [ -90.096920194319878, 29.921151225710009 ], [ -90.09685, 29.92116 ] ], [ [ -90.09692, 29.92115 ], [ -90.096920194319878, 29.921151225710009 ] ], [ [ -90.09685, 29.92116 ], [ -90.09692, 29.92115 ] ], [ [ -90.09685, 29.92116 ], [ -90.09576, 29.92124 ] ], [ [ -90.09576, 29.92124 ], [ -90.09505, 29.92129 ] ], [ [ -90.09507, 29.92129 ], [ -90.095243, 29.921278 ], [ -90.09576, 29.92124 ] ], [ [ -90.09507, 29.92129 ], [ -90.095078, 29.921349 ] ], [ [ -90.09498, 29.9213 ], [ -90.09507, 29.92129 ] ], [ [ -90.09505, 29.92129 ], [ -90.09498, 29.9213 ] ], [ [ -90.09505, 29.92129 ], [ -90.095046, 29.921232 ] ], [ [ -90.09498, 29.9213 ], [ -90.09326, 29.92165 ] ], [ [ -90.09326, 29.92165 ], [ -90.09264, 29.92182 ] ], [ [ -90.09264, 29.92183 ], [ -90.09326, 29.92165 ] ], [ [ -90.09264, 29.92183 ], [ -90.092666, 29.921893 ] ], [ [ -90.09264, 29.92182 ], [ -90.09258, 29.92184 ] ], [ [ -90.09264, 29.92182 ], [ -90.092624, 29.921767 ] ], [ [ -90.09258, 29.92184 ], [ -90.09264, 29.92183 ] ], [ [ -90.09258, 29.92184 ], [ -90.09165, 29.92212 ] ], [ [ -90.09165, 29.92212 ], [ -90.091508863636165, 29.922159545454605 ] ], [ [ -90.091508863636165, 29.922159545454605 ], [ -90.09165, 29.92212 ] ], [ [ -90.091331, 29.922208692307692 ], [ -90.091508863636165, 29.922159545454605 ] ], [ [ -90.091508863636165, 29.922159545454605 ], [ -90.091331, 29.922208692307692 ] ], [ [ -90.091331, 29.922208692307692 ], [ -90.091225590909318, 29.922237636363587 ] ], [ [ -90.091225590909318, 29.922237636363587 ], [ -90.091331, 29.922208692307692 ] ], [ [ -90.090852000000126, 29.922341230769202 ], [ -90.091225590909318, 29.922237636363587 ] ], [ [ -90.091225590909318, 29.922237636363587 ], [ -90.090852000000126, 29.922341230769202 ] ], [ [ -90.090852000000126, 29.922341230769202 ], [ -90.09082, 29.92235 ] ], [ [ -90.09071, 29.92238 ], [ -90.090828, 29.922348 ], [ -90.090852000000126, 29.922341230769202 ] ], [ [ -90.09082, 29.92235 ], [ -90.09071, 29.92238 ] ], [ [ -90.09082, 29.92235 ], [ -90.090792, 29.922276 ] ], [ [ -90.09071, 29.92238 ], [ -90.09007, 29.92257 ] ], [ [ -90.09058, 29.92242 ], [ -90.09071, 29.92238 ] ], [ [ -90.09058, 29.92242 ], [ -90.090597, 29.922466 ] ], [ [ -90.09007, 29.92257 ], [ -90.090198, 29.922533 ], [ -90.09058, 29.92242 ] ], [ [ -90.09007, 29.92257 ], [ -90.089863604651327, 29.922644418604602 ] ], [ [ -90.089863604651327, 29.922644418604602 ], [ -90.09007, 29.92257 ] ], [ [ -90.089750803570624, 29.922685178571705 ], [ -90.089863604651327, 29.922644418604602 ] ], [ [ -90.089863604651327, 29.922644418604602 ], [ -90.089750803570624, 29.922685178571705 ] ], [ [ -90.089750803570624, 29.922685178571705 ], [ -90.08904, 29.92294 ] ], [ [ -90.08896, 29.92297 ], [ -90.089750803570624, 29.922685178571705 ] ], [ [ -90.08904, 29.92294 ], [ -90.08896, 29.92297 ] ], [ [ -90.08904, 29.92294 ], [ -90.089011, 29.922881 ] ], [ [ -90.08896, 29.92297 ], [ -90.08883, 29.92302 ] ], [ [ -90.08883, 29.92302 ], [ -90.08775, 29.92343 ] ], [ [ -90.08875, 29.92306 ], [ -90.08883, 29.92302 ] ], [ [ -90.08875, 29.92306 ], [ -90.088775, 29.923115 ] ], [ [ -90.08775, 29.92343 ], [ -90.08875, 29.92306 ] ], [ [ -90.08775, 29.92343 ], [ -90.08679, 29.92384 ] ], [ [ -90.086539685534589, 29.923949512578613 ], [ -90.08679, 29.92384 ] ], [ [ -90.08679, 29.92384 ], [ -90.08654, 29.92395 ] ], [ [ -90.08654, 29.92395 ], [ -90.08647, 29.92398 ] ], [ [ -90.08654, 29.92395 ], [ -90.086539685534589, 29.923949512578613 ] ], [ [ -90.08647, 29.92398 ], [ -90.086539685534589, 29.923949512578613 ] ], [ [ -90.086539685534589, 29.923949512578613 ], [ -90.0865, 29.923888 ] ], [ [ -90.08647, 29.92398 ], [ -90.08625, 29.92409 ] ], [ [ -90.08625, 29.92409 ], [ -90.08546, 29.92454 ] ], [ [ -90.08619, 29.92413 ], [ -90.08625, 29.92409 ] ], [ [ -90.08619, 29.92413 ], [ -90.08623, 29.924183 ] ], [ [ -90.08546, 29.92454 ], [ -90.08619, 29.92413 ] ], [ [ -90.08546, 29.92454 ], [ -90.08475, 29.92494 ] ], [ [ -90.08466, 29.925 ], [ -90.08546, 29.92454 ] ], [ [ -90.08475, 29.92494 ], [ -90.08466, 29.925 ] ], [ [ -90.08475, 29.92494 ], [ -90.084712, 29.924895 ] ], [ [ -90.08457, 29.92504 ], [ -90.08466, 29.925 ] ], [ [ -90.08466, 29.925 ], [ -90.084575380476551, 29.925046917755562 ] ], [ [ -90.084575380476551, 29.925046917755562 ], [ -90.084612, 29.925094 ] ], [ [ -90.084575380476551, 29.925046917755562 ], [ -90.08385, 29.92545 ] ], [ [ -90.08457, 29.92504 ], [ -90.084575380476551, 29.925046917755562 ] ], [ [ -90.08385, 29.92545 ], [ -90.08457, 29.92504 ] ], [ [ -90.08385, 29.92545 ], [ -90.08302, 29.92591 ] ], [ [ -90.08302, 29.92591 ], [ -90.08255, 29.92617 ] ], [ [ -90.08248, 29.92621 ], [ -90.08302, 29.92591 ] ], [ [ -90.08255, 29.92617 ], [ -90.08248, 29.92621 ] ], [ [ -90.08255, 29.92617 ], [ -90.082509, 29.926115 ] ], [ [ -90.08248, 29.92621 ], [ -90.08165, 29.92669 ] ], [ [ -90.08239, 29.92627 ], [ -90.08248, 29.92621 ] ], [ [ -90.08239, 29.92627 ], [ -90.082427, 29.926317 ] ], [ [ -90.08165, 29.92669 ], [ -90.08239, 29.92627 ] ], [ [ -90.08165, 29.92669 ], [ -90.08092, 29.92708 ] ], [ [ -90.08092, 29.92708 ], [ -90.080977, 29.92716 ] ], [ [ -90.08092, 29.92708 ], [ -90.08003, 29.92759 ] ], [ [ -90.08092, 29.92708 ], [ -90.080893, 29.927043 ] ], [ [ -90.079298124580632, 29.928007121449351 ], [ -90.08003, 29.92759 ] ], [ [ -90.08003, 29.92759 ], [ -90.0793, 29.92801 ] ], [ [ -90.0793, 29.92801 ], [ -90.07924, 29.92804 ] ], [ [ -90.0793, 29.92801 ], [ -90.079298124580632, 29.928007121449351 ] ], [ [ -90.07924, 29.92804 ], [ -90.079298124580632, 29.928007121449351 ] ], [ [ -90.079298124580632, 29.928007121449351 ], [ -90.079257, 29.927944 ] ], [ [ -90.07915, 29.92809 ], [ -90.07924, 29.92804 ] ], [ [ -90.07924, 29.92804 ], [ -90.079150446724015, 29.928090777630711 ] ], [ [ -90.079150446724015, 29.928090777630711 ], [ -90.079177, 29.928137 ] ], [ [ -90.079150446724015, 29.928090777630711 ], [ -90.07885, 29.92826 ] ], [ [ -90.07915, 29.92809 ], [ -90.079150446724015, 29.928090777630711 ] ], [ [ -90.07885, 29.92826 ], [ -90.07915, 29.92809 ] ], [ [ -90.07885, 29.92826 ], [ -90.07774, 29.92896 ] ], [ [ -90.077019071512311, 29.929438852286044 ], [ -90.07774, 29.92896 ] ], [ [ -90.07774, 29.92896 ], [ -90.07702, 29.92944 ] ], [ [ -90.07702, 29.92944 ], [ -90.07679, 29.92959 ] ], [ [ -90.07702, 29.92944 ], [ -90.077019071512311, 29.929438852286044 ] ], [ [ -90.07679, 29.92959 ], [ -90.077019071512311, 29.929438852286044 ] ], [ [ -90.077019071512311, 29.929438852286044 ], [ -90.076948, 29.929351 ] ], [ [ -90.07679, 29.92959 ], [ -90.07671, 29.92964 ] ], [ [ -90.07664, 29.92968 ], [ -90.07671, 29.92964 ] ], [ [ -90.07671, 29.92964 ], [ -90.076643690987112, 29.929684206008591 ] ], [ [ -90.076643690987112, 29.929684206008591 ], [ -90.076683, 29.929729 ] ], [ [ -90.076643690987112, 29.929684206008591 ], [ -90.07647, 29.9298 ] ], [ [ -90.07664, 29.92968 ], [ -90.076643690987112, 29.929684206008591 ] ], [ [ -90.07647, 29.9298 ], [ -90.07664, 29.92968 ] ], [ [ -90.07647, 29.9298 ], [ -90.07485, 29.93085 ] ], [ [ -90.074966421725222, 29.950612247603825 ], [ -90.07555, 29.95081 ], [ -90.07557, 29.95191 ], [ -90.07502, 29.95392 ], [ -90.074702, 29.95447 ], [ -90.073982, 29.954087 ], [ -90.074966421725222, 29.950612247603825 ] ], [ [ -90.074966421725222, 29.950612247603825 ], [ -90.07501, 29.950458 ], [ -90.06939816, 29.94921552 ] ], [ [ -90.06939816, 29.94921552 ], [ -90.06934, 29.94939 ], [ -90.072792, 29.950143 ], [ -90.072919, 29.950269 ], [ -90.073001, 29.950185 ], [ -90.074966421725222, 29.950612247603825 ] ], [ [ -90.07485, 29.93085 ], [ -90.07473, 29.93093 ] ], [ [ -90.07466, 29.93098 ], [ -90.07485, 29.93085 ] ], [ [ -90.07473, 29.93093 ], [ -90.07466, 29.93098 ] ], [ [ -90.07473, 29.93093 ], [ -90.074681, 29.93088 ] ], [ [ -90.07442, 29.93116 ], [ -90.07466, 29.93098 ] ], [ [ -90.07466, 29.93098 ], [ -90.07416, 29.93306 ] ], [ [ -90.07442, 29.93116 ], [ -90.074476, 29.931216 ] ], [ [ -90.07241, 29.93452 ], [ -90.07309, 29.932187 ], [ -90.07442, 29.93116 ] ], [ [ -90.07416, 29.93306 ], [ -90.07371, 29.93461 ] ], [ [ -90.07416, 29.93306 ], [ -90.074131, 29.933051 ] ], [ [ -90.07371, 29.93461 ], [ -90.07314, 29.93647 ] ], [ [ -90.07371, 29.93461 ], [ -90.073664, 29.934604 ] ], [ [ -90.07314, 29.93647 ], [ -90.07256, 29.93843 ] ], [ [ -90.07314, 29.93647 ], [ -90.073082, 29.936457 ] ], [ [ -90.07256, 29.93843 ], [ -90.071683, 29.941597 ], [ -90.071479, 29.941599 ], [ -90.071661, 29.941667 ], [ -90.07094, 29.944 ] ], [ [ -90.07256, 29.93843 ], [ -90.072502, 29.938413 ] ], [ [ -90.07241, 29.93452 ], [ -90.072485, 29.934538 ] ], [ [ -90.07186, 29.93638 ], [ -90.07241, 29.93452 ] ], [ [ -90.07186, 29.93638 ], [ -90.07193, 29.936398 ] ], [ [ -90.06939816, 29.94921552 ], [ -90.068153, 29.948936 ], [ -90.070279, 29.942074 ], [ -90.07186, 29.93638 ] ], [ [ -90.07094, 29.944 ], [ -90.07047, 29.94556 ] ], [ [ -90.07094, 29.944 ], [ -90.070872, 29.943982 ] ], [ [ -90.07047, 29.94556 ], [ -90.07005, 29.947 ] ], [ [ -90.07047, 29.94556 ], [ -90.070436, 29.945525 ] ], [ [ -90.07005, 29.947 ], [ -90.06975, 29.94806 ] ], [ [ -90.07005, 29.947 ], [ -90.069999, 29.946987 ] ], [ [ -90.06975, 29.94806 ], [ -90.069674, 29.948061 ] ], [ [ -90.06975, 29.94806 ], [ -90.06939816, 29.94921552 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "68", "agency_id": "1", "route_short_name": "68", "route_long_name": "Little Woods Loop", "route_type": 3, "route_color": "#71c167", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.97645, 30.03834 ], [ -89.97664, 30.03843 ], [ -89.97692, 30.03829 ] ], [ [ -89.97692, 30.03829 ], [ -89.97787, 30.0396 ], [ -89.977783, 30.039649 ], [ -89.97923, 30.04152 ], [ -89.979731, 30.042904 ], [ -89.980704, 30.04445 ], [ -89.980855, 30.044498 ], [ -89.983813, 30.049433 ], [ -89.980636, 30.051039 ], [ -89.980437, 30.050921 ], [ -89.980421, 30.051155 ], [ -89.978913, 30.051948 ], [ -89.978738, 30.051765 ], [ -89.978677, 30.052069 ], [ -89.977245, 30.052863 ], [ -89.977051, 30.052781 ], [ -89.976958, 30.053006 ], [ -89.975788, 30.053637 ], [ -89.975592, 30.053562 ], [ -89.975541, 30.0538 ], [ -89.973551, 30.054905 ], [ -89.973385, 30.054854 ], [ -89.973272, 30.055063 ], [ -89.972784, 30.055342 ], [ -89.972631, 30.05524 ], [ -89.972574, 30.055444 ], [ -89.971275, 30.05611 ], [ -89.971148, 30.056291 ], [ -89.969023, 30.057561 ], [ -89.968905, 30.057534 ], [ -89.968787, 30.05771 ], [ -89.966744, 30.058977 ], [ -89.966607, 30.058952 ], [ -89.962065, 30.061865 ], [ -89.962016, 30.062006 ], [ -89.959685, 30.063503 ], [ -89.956226, 30.066063 ], [ -89.956112, 30.066028 ], [ -89.95599, 30.066248 ], [ -89.95366, 30.067977 ], [ -89.953509, 30.067955 ], [ -89.953454, 30.068118 ], [ -89.950729, 30.065397 ], [ -89.946811, 30.068414 ], [ -89.946749, 30.06833 ], [ -89.94669, 30.0685 ], [ -89.942903, 30.071528 ], [ -89.942335, 30.071825 ], [ -89.941472, 30.07201 ], [ -89.940678, 30.07195 ], [ -89.939877, 30.064125 ], [ -89.940204, 30.06394 ], [ -89.940102, 30.062858 ], [ -89.940258, 30.062259 ], [ -89.943034, 30.058206 ], [ -89.94453, 30.057068 ], [ -89.950705, 30.053277 ], [ -89.95767, 30.04878 ], [ -89.958914, 30.048079 ], [ -89.959109, 30.04811 ], [ -89.960969, 30.047225 ], [ -89.961446, 30.047327 ], [ -89.96165, 30.047541 ], [ -89.961978902637824, 30.047399774212174 ] ], [ [ -89.97692, 30.03829 ], [ -89.97708, 30.03819 ], [ -89.97689, 30.03789 ], [ -89.975, 30.03531 ] ], [ [ -89.97359, 30.03022 ], [ -89.9718, 30.03134 ], [ -89.97225, 30.03202 ], [ -89.97216, 30.032174 ], [ -89.9723, 30.0321 ], [ -89.97692, 30.03829 ] ], [ [ -89.97645, 30.03834 ], [ -89.976375, 30.038393 ] ], [ [ -89.97504, 30.03835 ], [ -89.97596, 30.03805 ], [ -89.97645, 30.03834 ] ], [ [ -89.97504, 30.03835 ], [ -89.975067, 30.038407 ] ], [ [ -89.975, 30.03531 ], [ -89.975062, 30.035281 ] ], [ [ -89.961978902637824, 30.047399774212174 ], [ -89.962004, 30.047431 ], [ -89.96239, 30.047124 ], [ -89.962235, 30.046623 ], [ -89.962476, 30.046195 ], [ -89.964596, 30.044451 ], [ -89.967964, 30.042296 ], [ -89.968258, 30.042452 ], [ -89.968229, 30.042119 ], [ -89.97276, 30.03928 ], [ -89.97504, 30.03835 ] ], [ [ -89.975, 30.03531 ], [ -89.97325, 30.03296 ] ], [ [ -89.97325, 30.03296 ], [ -89.97317, 30.03285 ], [ -89.976, 30.03123 ], [ -89.97496, 30.029613 ], [ -89.97476, 30.029502 ], [ -89.97359, 30.03022 ] ], [ [ -89.97359, 30.03022 ], [ -89.973563, 30.030193 ] ], [ [ -89.97325, 30.03296 ], [ -89.973326, 30.032917 ] ], [ [ -89.961978902637824, 30.047399774212174 ], [ -89.962197, 30.047272 ], [ -89.955691, 30.03943 ], [ -89.95545, 30.039583 ], [ -89.956384, 30.040767 ], [ -89.956593, 30.040874 ], [ -89.961978902637824, 30.047399774212174 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "12", "agency_id": "1", "route_short_name": "12", "route_long_name": "St. Charles Streetcar", "route_type": 0, "route_color": "#006737", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.13274, 29.9446 ], [ -90.13414, 29.94329 ] ], [ [ -90.13414, 29.94329 ], [ -90.13434, 29.9431 ], [ -90.133272, 29.942263 ] ], [ [ -90.13414, 29.94329 ], [ -90.134078, 29.943235 ] ], [ [ -90.13391, 29.94315 ], [ -90.133947, 29.943177 ] ], [ [ -90.13391, 29.94315 ], [ -90.13273, 29.9443 ] ], [ [ -90.133625, 29.942755 ], [ -90.134, 29.94307 ], [ -90.13391, 29.94315 ] ], [ [ -90.13262, 29.941796 ], [ -90.133625, 29.942755 ] ], [ [ -90.13262, 29.941796 ], [ -90.132665, 29.941979 ], [ -90.133625, 29.942755 ] ], [ [ -90.133272, 29.942263 ], [ -90.133169749999894, 29.942180874999913 ] ], [ [ -90.133272, 29.942263 ], [ -90.133169749999894, 29.942180874999913 ] ], [ [ -90.133169749999894, 29.942180874999913 ], [ -90.131817044776099, 29.941096825608788 ] ], [ [ -90.133169749999894, 29.942180874999913 ], [ -90.131817044776099, 29.941096825608788 ] ], [ [ -90.13125, 29.946 ], [ -90.13274, 29.9446 ] ], [ [ -90.13274, 29.9446 ], [ -90.132671, 29.944548 ] ], [ [ -90.13273, 29.9443 ], [ -90.13117, 29.94572 ] ], [ [ -90.13273, 29.9443 ], [ -90.132721, 29.944292 ] ], [ [ -90.130202, 29.939898 ], [ -90.132458, 29.941798 ], [ -90.13262, 29.941796 ] ], [ [ -90.130253300631637, 29.939938428974589 ], [ -90.13262, 29.941796 ] ], [ [ -90.131817044776099, 29.941096825608788 ], [ -90.131765, 29.941116 ] ], [ [ -90.131817044776099, 29.941096825608788 ], [ -90.131765, 29.941116 ] ], [ [ -90.131765, 29.941116 ], [ -90.131675447952901, 29.940977007760232 ] ], [ [ -90.131765, 29.941116 ], [ -90.131675447952901, 29.940977007760232 ] ], [ [ -90.131675447952901, 29.940977007760232 ], [ -90.131495074829985, 29.940829721088466 ] ], [ [ -90.131675447952901, 29.940977007760232 ], [ -90.131495074829985, 29.940829721088466 ] ], [ [ -90.131495074829985, 29.940829721088466 ], [ -90.130411, 29.93995 ], [ -90.130361966585255, 29.939938844249568 ] ], [ [ -90.131495074829985, 29.940829721088466 ], [ -90.130361966585255, 29.939938844249568 ] ], [ [ -90.12972, 29.94742 ], [ -90.13125, 29.946 ] ], [ [ -90.13125, 29.946 ], [ -90.131184, 29.945951 ] ], [ [ -90.13117, 29.94572 ], [ -90.131196, 29.945742 ] ], [ [ -90.13117, 29.94572 ], [ -90.12966, 29.94714 ] ], [ [ -90.130361966585255, 29.939938844249568 ], [ -90.13027252301255, 29.93991849465365 ] ], [ [ -90.130361966585255, 29.939938844249568 ], [ -90.13027252301255, 29.93991849465365 ] ], [ [ -90.13027252301255, 29.93991849465365 ], [ -90.130253300631637, 29.939938428974589 ] ], [ [ -90.13027252301255, 29.93991849465365 ], [ -90.130222, 29.939907 ] ], [ [ -90.130253300631637, 29.939938428974589 ], [ -90.130230079129575, 29.939920128585555 ] ], [ [ -90.130230079129575, 29.939920128585555 ], [ -90.130253300631637, 29.939938428974589 ] ], [ [ -90.130230079129575, 29.939920128585555 ], [ -90.130222, 29.939907 ] ], [ [ -90.130202, 29.939898 ], [ -90.130230079129575, 29.939920128585555 ] ], [ [ -90.130222, 29.939907 ], [ -90.130217, 29.93978 ], [ -90.12824, 29.9382 ] ], [ [ -90.130222, 29.939907 ], [ -90.12997, 29.939634 ], [ -90.128369, 29.938337 ], [ -90.128312649373854, 29.938309763864023 ] ], [ [ -90.128362, 29.938343 ], [ -90.130202, 29.939898 ] ], [ [ -90.128362, 29.938343 ], [ -90.128379, 29.938515 ], [ -90.130202, 29.939898 ] ], [ [ -90.129323, 29.947788 ], [ -90.12972, 29.94742 ] ], [ [ -90.12972, 29.94742 ], [ -90.12967, 29.947374 ] ], [ [ -90.12966, 29.94714 ], [ -90.129693, 29.947165 ] ], [ [ -90.12966, 29.94714 ], [ -90.128203, 29.948514 ] ], [ [ -90.128848, 29.948233333333306 ], [ -90.129323, 29.947788 ] ], [ [ -90.128848, 29.948233333333306 ], [ -90.129323, 29.947788 ] ], [ [ -90.12831136405525, 29.948740903225818 ], [ -90.128848, 29.948233333333306 ] ], [ [ -90.12831136405525, 29.948740903225818 ], [ -90.128848, 29.948233333333306 ] ], [ [ -90.126793, 29.937284 ], [ -90.128197, 29.938369 ], [ -90.128362, 29.938343 ] ], [ [ -90.128312649373854, 29.938309763864023 ], [ -90.128362, 29.938343 ] ], [ [ -90.128203215339937, 29.938236063392214 ], [ -90.128312649373854, 29.938309763864023 ] ], [ [ -90.128312649373854, 29.938309763864023 ], [ -90.128189, 29.93825 ] ], [ [ -90.128293150581584, 29.948757800062861 ], [ -90.12831136405525, 29.948740903225818 ] ], [ [ -90.128293150581584, 29.948757800062861 ], [ -90.12831136405525, 29.948740903225818 ] ], [ [ -90.128258778947369, 29.948754084210528 ], [ -90.128293150581584, 29.948757800062861 ] ], [ [ -90.128258778947369, 29.948754084210528 ], [ -90.128293150581584, 29.948757800062861 ] ], [ [ -90.128221, 29.94875 ], [ -90.128258778947369, 29.948754084210528 ] ], [ [ -90.128221, 29.94875 ], [ -90.128258778947369, 29.948754084210528 ] ], [ [ -90.12824, 29.9382 ], [ -90.128203215339937, 29.938236063392214 ] ], [ [ -90.12824, 29.9382 ], [ -90.127, 29.93728 ] ], [ [ -90.127397, 29.949505 ], [ -90.128221, 29.94875 ] ], [ [ -90.127397, 29.949505 ], [ -90.127488, 29.949511 ], [ -90.128221, 29.94875 ] ], [ [ -90.128203215339937, 29.938236063392214 ], [ -90.128189, 29.93825 ] ], [ [ -90.127963608695595, 29.93807369565215 ], [ -90.128203215339937, 29.938236063392214 ] ], [ [ -90.128203, 29.948514 ], [ -90.1281, 29.94861 ] ], [ [ -90.128203, 29.948514 ], [ -90.128127, 29.948607 ] ], [ [ -90.128189, 29.93825 ], [ -90.127963608695595, 29.93807369565215 ] ], [ [ -90.1281, 29.94861 ], [ -90.128127, 29.948607 ] ], [ [ -90.128127, 29.948607 ], [ -90.126674, 29.95002 ] ], [ [ -90.1281, 29.94861 ], [ -90.12663, 29.94998 ] ], [ [ -90.127963608695595, 29.93807369565215 ], [ -90.12696, 29.93732 ] ], [ [ -90.126793, 29.937284 ], [ -90.127963608695595, 29.93807369565215 ] ], [ [ -90.125124, 29.951624 ], [ -90.127397, 29.949505 ] ], [ [ -90.12517, 29.95166 ], [ -90.127397, 29.949505 ] ], [ [ -90.127, 29.93728 ], [ -90.12696, 29.93732 ] ], [ [ -90.127, 29.93728 ], [ -90.126239195588184, 29.936738258823482 ] ], [ [ -90.12696, 29.93732 ], [ -90.126239195588184, 29.936738258823482 ] ], [ [ -90.125307, 29.936238 ], [ -90.126793, 29.937284 ] ], [ [ -90.125307, 29.936238 ], [ -90.126793, 29.937284 ] ], [ [ -90.126674, 29.95002 ], [ -90.125179, 29.951429 ] ], [ [ -90.12663, 29.94998 ], [ -90.126674, 29.95002 ] ], [ [ -90.12663, 29.94998 ], [ -90.12513, 29.95139 ] ], [ [ -90.126239195588184, 29.936738258823482 ], [ -90.125729737704916, 29.93637975409834 ] ], [ [ -90.126239195588184, 29.936738258823482 ], [ -90.125729737704916, 29.93637975409834 ] ], [ [ -90.125729737704916, 29.93637975409834 ], [ -90.12553, 29.93624 ] ], [ [ -90.125729737704916, 29.93637975409834 ], [ -90.125495, 29.936279 ] ], [ [ -90.12553, 29.93624 ], [ -90.125495, 29.936279 ] ], [ [ -90.12553, 29.93624 ], [ -90.125151249999874, 29.935978749999922 ] ], [ [ -90.125495, 29.936279 ], [ -90.125151249999874, 29.935978749999922 ] ], [ [ -90.12374, 29.935065 ], [ -90.125307, 29.936238 ] ], [ [ -90.12374, 29.935065 ], [ -90.123766, 29.93522 ], [ -90.125307, 29.936238 ] ], [ [ -90.125179, 29.951429 ], [ -90.123669, 29.95284 ] ], [ [ -90.12513, 29.95139 ], [ -90.125179, 29.951429 ] ], [ [ -90.12368, 29.95308 ], [ -90.12517, 29.95166 ] ], [ [ -90.12517, 29.95166 ], [ -90.125124, 29.951624 ] ], [ [ -90.125151249999874, 29.935978749999922 ], [ -90.12401, 29.935172 ] ], [ [ -90.125151249999874, 29.935978749999922 ], [ -90.12401, 29.935172 ] ], [ [ -90.12513, 29.95139 ], [ -90.12363, 29.95281 ] ], [ [ -90.123623, 29.95303 ], [ -90.125124, 29.951624 ] ], [ [ -90.12401, 29.935172 ], [ -90.12397, 29.93514 ] ], [ [ -90.12401, 29.935172 ], [ -90.123938, 29.93518 ] ], [ [ -90.12397, 29.93514 ], [ -90.123938, 29.93518 ] ], [ [ -90.12397, 29.93514 ], [ -90.123896825174825, 29.935085118881112 ] ], [ [ -90.123938, 29.93518 ], [ -90.123896825174825, 29.935085118881112 ] ], [ [ -90.123896825174825, 29.935085118881112 ], [ -90.123341666666676, 29.934693 ] ], [ [ -90.123896825174825, 29.935085118881112 ], [ -90.123341666666676, 29.934693 ] ], [ [ -90.123736084, 29.935062864 ], [ -90.12374, 29.935065 ] ], [ [ -90.123736084, 29.935062864 ], [ -90.12374, 29.935065 ] ], [ [ -90.122945, 29.934635 ], [ -90.123604, 29.935102 ], [ -90.123736084, 29.935062864 ] ], [ [ -90.122945, 29.934635 ], [ -90.123736084, 29.935062864 ] ], [ [ -90.12217, 29.95449 ], [ -90.12368, 29.95308 ] ], [ [ -90.12368, 29.95308 ], [ -90.123623, 29.95303 ] ], [ [ -90.123669, 29.95284 ], [ -90.122151, 29.954248 ] ], [ [ -90.12363, 29.95281 ], [ -90.123669, 29.95284 ] ], [ [ -90.12363, 29.95281 ], [ -90.12212, 29.95422 ] ], [ [ -90.122111, 29.954448 ], [ -90.123623, 29.95303 ] ], [ [ -90.123341666666676, 29.934693 ], [ -90.122711, 29.934242 ], [ -90.122671066366451, 29.934229136762269 ] ], [ [ -90.123341666666676, 29.934693 ], [ -90.122671066366451, 29.934229136762269 ] ], [ [ -90.12233, 29.9342 ], [ -90.122945, 29.934635 ] ], [ [ -90.122671066366451, 29.934229136762269 ], [ -90.122503, 29.934175 ] ], [ [ -90.122671066366451, 29.934229136762269 ], [ -90.122503, 29.934175 ] ], [ [ -90.122503, 29.934175 ], [ -90.121824757142932, 29.933628914285769 ] ], [ [ -90.122503, 29.934175 ], [ -90.121824757142932, 29.933628914285769 ] ], [ [ -90.12233, 29.9342 ], [ -90.12236, 29.934161 ] ], [ [ -90.12146, 29.93358 ], [ -90.12233, 29.9342 ] ], [ [ -90.120719, 29.955611 ], [ -90.120825, 29.955714 ], [ -90.12217, 29.95449 ] ], [ [ -90.12217, 29.95449 ], [ -90.122111, 29.954448 ] ], [ [ -90.122151, 29.954248 ], [ -90.120719, 29.955611 ] ], [ [ -90.12212, 29.95422 ], [ -90.122151, 29.954248 ] ], [ [ -90.12212, 29.95422 ], [ -90.120719, 29.955611 ] ], [ [ -90.120719, 29.955611 ], [ -90.122111, 29.954448 ] ], [ [ -90.121824757142932, 29.933628914285769 ], [ -90.12173, 29.93356 ] ], [ [ -90.121824757142932, 29.933628914285769 ], [ -90.1217, 29.933583 ] ], [ [ -90.12173, 29.93356 ], [ -90.1217, 29.933583 ] ], [ [ -90.12173, 29.93356 ], [ -90.121656497560963, 29.93350487317074 ] ], [ [ -90.1217, 29.933583 ], [ -90.121656497560963, 29.93350487317074 ] ], [ [ -90.121656497560963, 29.93350487317074 ], [ -90.120875955840717, 29.932945541045466 ] ], [ [ -90.121656497560963, 29.93350487317074 ], [ -90.120875955840717, 29.932945541045466 ] ], [ [ -90.12146, 29.93358 ], [ -90.121501, 29.933539 ] ], [ [ -90.12055, 29.93293 ], [ -90.12146, 29.93358 ] ], [ [ -90.120875955840717, 29.932945541045466 ], [ -90.120801, 29.932956 ] ], [ [ -90.120875955840717, 29.932945541045466 ], [ -90.12084, 29.93292 ] ], [ [ -90.12084, 29.93292 ], [ -90.120801, 29.932956 ] ], [ [ -90.12084, 29.93292 ], [ -90.119979999999487, 29.932320999999625 ] ], [ [ -90.120801, 29.932956 ], [ -90.119979999999487, 29.932320999999625 ] ], [ [ -90.12055, 29.93293 ], [ -90.120581, 29.932891 ] ], [ [ -90.11911, 29.93191 ], [ -90.12055, 29.93293 ] ], [ [ -90.119979999999487, 29.932320999999625 ], [ -90.119495580645136, 29.931971838709678 ] ], [ [ -90.119979999999487, 29.932320999999625 ], [ -90.119495580645136, 29.931971838709678 ] ], [ [ -90.119495580645136, 29.931971838709678 ], [ -90.11942, 29.93191 ] ], [ [ -90.119495580645136, 29.931971838709678 ], [ -90.119382, 29.931951 ] ], [ [ -90.11942, 29.93191 ], [ -90.119382, 29.931951 ] ], [ [ -90.11942, 29.93191 ], [ -90.119383865771795, 29.931882899328834 ] ], [ [ -90.119382, 29.931951 ], [ -90.119383865771795, 29.931882899328834 ] ], [ [ -90.119383865771795, 29.931882899328834 ], [ -90.118964000000602, 29.931593333333762 ] ], [ [ -90.119383865771795, 29.931882899328834 ], [ -90.118964000000602, 29.931593333333762 ] ], [ [ -90.11911, 29.93191 ], [ -90.119139, 29.931874 ] ], [ [ -90.11795, 29.93109 ], [ -90.11911, 29.93191 ] ], [ [ -90.118964000000602, 29.931593333333762 ], [ -90.118900300970097, 29.931549902912078 ] ], [ [ -90.118964000000602, 29.931593333333762 ], [ -90.118900300970097, 29.931549902912078 ] ], [ [ -90.118900300970097, 29.931549902912078 ], [ -90.118665, 29.93139 ] ], [ [ -90.118900300970097, 29.931549902912078 ], [ -90.118665, 29.93139 ] ], [ [ -90.118665, 29.93139 ], [ -90.11824, 29.9311 ] ], [ [ -90.11824, 29.9311 ], [ -90.118213, 29.931132 ] ], [ [ -90.11824, 29.9311 ], [ -90.11676, 29.93023 ] ], [ [ -90.11795, 29.93109 ], [ -90.117973, 29.931059 ] ], [ [ -90.11642, 29.93024 ], [ -90.11795, 29.93109 ] ], [ [ -90.11676, 29.93023 ], [ -90.116741, 29.930256 ] ], [ [ -90.11676, 29.93023 ], [ -90.11501, 29.92939 ] ], [ [ -90.11642, 29.93024 ], [ -90.116451, 29.930198 ] ], [ [ -90.11474, 29.92945 ], [ -90.11642, 29.93024 ] ], [ [ -90.11501, 29.92939 ], [ -90.114973, 29.92945 ] ], [ [ -90.11501, 29.92939 ], [ -90.11313, 29.92851 ] ], [ [ -90.11474, 29.92945 ], [ -90.114768, 29.929404 ] ], [ [ -90.114052, 29.929103 ], [ -90.11474, 29.92945 ] ], [ [ -90.112893, 29.928515 ], [ -90.114052, 29.929103 ] ], [ [ -90.112893, 29.928515 ], [ -90.114052, 29.929103 ] ], [ [ -90.11313, 29.92851 ], [ -90.113101, 29.92855 ] ], [ [ -90.11313, 29.92851 ], [ -90.1116, 29.92778 ] ], [ [ -90.111417, 29.927817 ], [ -90.112893, 29.928515 ] ], [ [ -90.111417, 29.927817 ], [ -90.112893, 29.928515 ] ], [ [ -90.1116, 29.92778 ], [ -90.111572, 29.927836 ] ], [ [ -90.1116, 29.92778 ], [ -90.11079, 29.92739 ] ], [ [ -90.108904, 29.926639 ], [ -90.111417, 29.927817 ] ], [ [ -90.10887, 29.92669 ], [ -90.111417, 29.927817 ] ], [ [ -90.11079, 29.92739 ], [ -90.11075, 29.927453 ] ], [ [ -90.11079, 29.92739 ], [ -90.10895, 29.92653 ] ], [ [ -90.10895, 29.92653 ], [ -90.108925, 29.926565 ] ], [ [ -90.10895, 29.92653 ], [ -90.10771, 29.92607 ], [ -90.1068, 29.92604 ] ], [ [ -90.10887, 29.92669 ], [ -90.108904, 29.926639 ] ], [ [ -90.1066, 29.926171 ], [ -90.107662, 29.9262 ], [ -90.108274, 29.926367 ], [ -90.108904, 29.926639 ] ], [ [ -90.1066, 29.92622 ], [ -90.10771, 29.92626 ], [ -90.10887, 29.92669 ] ], [ [ -90.1068, 29.92604 ], [ -90.10452, 29.92621 ] ], [ [ -90.1068, 29.92604 ], [ -90.106796, 29.926077 ] ], [ [ -90.104335, 29.926339 ], [ -90.1066, 29.926171 ] ], [ [ -90.1066, 29.92622 ], [ -90.1066, 29.926171 ] ], [ [ -90.10434, 29.92639 ], [ -90.1066, 29.92622 ] ], [ [ -90.10452, 29.92621 ], [ -90.104522, 29.926254 ] ], [ [ -90.10452, 29.92621 ], [ -90.10227, 29.92639 ] ], [ [ -90.10186, 29.92648 ], [ -90.101983, 29.926578 ], [ -90.10434, 29.92639 ] ], [ [ -90.10434, 29.92639 ], [ -90.104335, 29.926339 ] ], [ [ -90.10186, 29.92648 ], [ -90.104335, 29.926339 ] ], [ [ -90.10227, 29.92639 ], [ -90.102274, 29.926442 ] ], [ [ -90.10227, 29.92639 ], [ -90.09976, 29.92658 ] ], [ [ -90.099601, 29.926715 ], [ -90.10186, 29.92648 ] ], [ [ -90.099601, 29.926715 ], [ -90.101836, 29.926581 ], [ -90.10186, 29.92648 ] ], [ [ -90.09976, 29.92658 ], [ -90.099764, 29.926621 ] ], [ [ -90.09976, 29.92658 ], [ -90.09751, 29.92675 ] ], [ [ -90.098745, 29.926825 ], [ -90.099601, 29.926715 ] ], [ [ -90.098745, 29.926825 ], [ -90.099601, 29.926715 ] ], [ [ -90.09734, 29.92693 ], [ -90.098745, 29.926825 ] ], [ [ -90.09751, 29.92675 ], [ -90.097516, 29.926792 ] ], [ [ -90.09751, 29.92675 ], [ -90.09567, 29.92692 ] ], [ [ -90.09552, 29.92708 ], [ -90.09734, 29.92693 ] ], [ [ -90.09734, 29.92693 ], [ -90.097339, 29.926879 ] ], [ [ -90.09567, 29.92692 ], [ -90.095675, 29.926947 ] ], [ [ -90.09567, 29.92692 ], [ -90.09476, 29.92705 ] ], [ [ -90.09361, 29.92755 ], [ -90.09552, 29.92708 ] ], [ [ -90.09552, 29.92708 ], [ -90.095514, 29.927047 ] ], [ [ -90.09476, 29.92705 ], [ -90.093873232418801, 29.927293994323552 ] ], [ [ -90.09476, 29.92705 ], [ -90.093873232418801, 29.927293994323552 ] ], [ [ -90.093873232418801, 29.927293994323552 ], [ -90.093787, 29.927342 ] ], [ [ -90.093873232418801, 29.927293994323552 ], [ -90.093787, 29.927342 ] ], [ [ -90.093787, 29.927342 ], [ -90.093663578034693, 29.927358335260106 ] ], [ [ -90.093787, 29.927342 ], [ -90.093663578034693, 29.927358335260106 ] ], [ [ -90.093663578034693, 29.927358335260106 ], [ -90.093651, 29.92736 ], [ -90.093276, 29.927498 ], [ -90.093151, 29.927543 ], [ -90.093107730770598, 29.927558923076408 ] ], [ [ -90.093663578034693, 29.927358335260106 ], [ -90.093107730770598, 29.927558923076408 ] ], [ [ -90.0916, 29.92828 ], [ -90.09361, 29.92755 ] ], [ [ -90.09361, 29.92755 ], [ -90.093592, 29.927509 ] ], [ [ -90.093107730770598, 29.927558923076408 ], [ -90.091565, 29.928116 ], [ -90.091588, 29.928207 ] ], [ [ -90.093107730770598, 29.927558923076408 ], [ -90.091651, 29.928093 ], [ -90.091588, 29.928207 ] ], [ [ -90.08894, 29.92938 ], [ -90.09018, 29.92878 ], [ -90.0916, 29.92828 ] ], [ [ -90.0916, 29.92828 ], [ -90.091588, 29.928244 ] ], [ [ -90.091588, 29.928207 ], [ -90.091469, 29.928144 ], [ -90.090850269662809, 29.928384674157336 ] ], [ [ -90.091588, 29.928207 ], [ -90.090850269662809, 29.928384674157336 ] ], [ [ -90.090850269662809, 29.928384674157336 ], [ -90.08930682334389, 29.929011214511014 ] ], [ [ -90.090850269662809, 29.928384674157336 ], [ -90.08930682334389, 29.929011214511014 ] ], [ [ -90.08930682334389, 29.929011214511014 ], [ -90.089089705544907, 29.929116271510505 ] ], [ [ -90.08930682334389, 29.929011214511014 ], [ -90.089089705544907, 29.929116271510505 ] ], [ [ -90.089089705544907, 29.929116271510505 ], [ -90.08902, 29.92915 ] ], [ [ -90.089089705544907, 29.929116271510505 ], [ -90.089039, 29.929178 ] ], [ [ -90.089039, 29.929178 ], [ -90.0889265, 29.92919675 ] ], [ [ -90.08902, 29.92915 ], [ -90.089039, 29.929178 ] ], [ [ -90.08902, 29.92915 ], [ -90.0889265, 29.92919675 ] ], [ [ -90.08729, 29.93029 ], [ -90.08894, 29.92938 ] ], [ [ -90.08894, 29.92938 ], [ -90.08892, 29.929344 ] ], [ [ -90.0889265, 29.92919675 ], [ -90.088925, 29.929197 ], [ -90.088743, 29.929298 ], [ -90.087469, 29.930009 ], [ -90.087444069600593, 29.930044721169285 ] ], [ [ -90.0889265, 29.92919675 ], [ -90.087444069600593, 29.930044721169285 ] ], [ [ -90.087444069600593, 29.930044721169285 ], [ -90.08738, 29.93008 ] ], [ [ -90.087444069600593, 29.930044721169285 ], [ -90.087402, 29.930105 ] ], [ [ -90.087402, 29.930105 ], [ -90.087244636981808, 29.930157182555238 ] ], [ [ -90.08738, 29.93008 ], [ -90.087402, 29.930105 ] ], [ [ -90.08738, 29.93008 ], [ -90.087244636981808, 29.930157182555238 ] ], [ [ -90.08588, 29.93109 ], [ -90.08729, 29.93029 ] ], [ [ -90.08729, 29.93029 ], [ -90.087271, 29.93026 ] ], [ [ -90.087244636981808, 29.930157182555238 ], [ -90.086560104712049, 29.930543371727733 ] ], [ [ -90.087244636981808, 29.930157182555238 ], [ -90.086560104712049, 29.930543371727733 ] ], [ [ -90.086560104712049, 29.930543371727733 ], [ -90.086021, 29.930836 ], [ -90.086039, 29.930939 ] ], [ [ -90.086560104712049, 29.930543371727733 ], [ -90.086039, 29.930939 ] ], [ [ -90.086039, 29.930939 ], [ -90.085869666666667, 29.930920792114691 ] ], [ [ -90.086039, 29.930939 ], [ -90.085869666666667, 29.930920792114691 ] ], [ [ -90.0843, 29.93198 ], [ -90.08588, 29.93109 ] ], [ [ -90.08588, 29.93109 ], [ -90.085858, 29.931058 ] ], [ [ -90.085869666666667, 29.930920792114691 ], [ -90.084417, 29.931839 ] ], [ [ -90.085869666666667, 29.930920792114691 ], [ -90.084402, 29.931743 ], [ -90.084417, 29.931839 ] ], [ [ -90.084417, 29.931839 ], [ -90.083875, 29.932035 ], [ -90.082800033494934, 29.932748064257371 ] ], [ [ -90.084417, 29.931839 ], [ -90.084053, 29.931932 ], [ -90.082811, 29.932638 ], [ -90.082796943278254, 29.932749516659221 ] ], [ [ -90.08356, 29.93239 ], [ -90.0843, 29.93198 ] ], [ [ -90.0843, 29.93198 ], [ -90.084266, 29.931945 ] ], [ [ -90.082800033494934, 29.932748064257371 ], [ -90.08356, 29.93239 ] ], [ [ -90.082645, 29.932859 ], [ -90.08356, 29.93239 ] ], [ [ -90.082796943278254, 29.932749516659221 ], [ -90.082800033494934, 29.932748064257371 ] ], [ [ -90.082800033494934, 29.932748064257371 ], [ -90.082796, 29.932757 ] ], [ [ -90.082778792773638, 29.932758047396383 ], [ -90.082796943278254, 29.932749516659221 ] ], [ [ -90.082796943278254, 29.932749516659221 ], [ -90.082796, 29.932757 ] ], [ [ -90.082796, 29.932757 ], [ -90.082778792773638, 29.932758047396383 ] ], [ [ -90.082796, 29.932757 ], [ -90.082776351543927, 29.932759194774327 ] ], [ [ -90.082778792773638, 29.932758047396383 ], [ -90.082132866738903, 29.933045307692275 ] ], [ [ -90.082776351543927, 29.932759194774327 ], [ -90.082778792773638, 29.932758047396383 ] ], [ [ -90.082776351543927, 29.932759194774327 ], [ -90.082132866738903, 29.933045307692275 ] ], [ [ -90.082645, 29.932859 ], [ -90.082776351543927, 29.932759194774327 ] ], [ [ -90.0807, 29.934065 ], [ -90.082645, 29.932859 ] ], [ [ -90.0807, 29.934065 ], [ -90.082645, 29.932859 ] ], [ [ -90.082132866738903, 29.933045307692275 ], [ -90.080906009836056, 29.9338181442623 ] ], [ [ -90.082132866738903, 29.933045307692275 ], [ -90.080906009836056, 29.9338181442623 ] ], [ [ -90.080906009836056, 29.9338181442623 ], [ -90.080689, 29.93402 ] ], [ [ -90.080906009836056, 29.9338181442623 ], [ -90.080689, 29.93402 ] ], [ [ -90.079579, 29.934816 ], [ -90.0807, 29.934065 ] ], [ [ -90.07961, 29.93485 ], [ -90.0807, 29.934065 ] ], [ [ -90.080689, 29.93402 ], [ -90.07992, 29.93446 ] ], [ [ -90.080689, 29.93402 ], [ -90.07992, 29.93446 ] ], [ [ -90.07992, 29.93446 ], [ -90.07967, 29.93462 ] ], [ [ -90.07967, 29.93462 ], [ -90.079719, 29.934683 ] ], [ [ -90.07967, 29.93462 ], [ -90.07877, 29.93522 ] ], [ [ -90.07875, 29.93545 ], [ -90.07961, 29.93485 ] ], [ [ -90.07961, 29.93485 ], [ -90.079579, 29.934816 ] ], [ [ -90.078702, 29.935412 ], [ -90.079579, 29.934816 ] ], [ [ -90.07877, 29.93522 ], [ -90.078831, 29.935282 ] ], [ [ -90.07877, 29.93522 ], [ -90.07761, 29.93615 ] ], [ [ -90.07761, 29.93639 ], [ -90.07875, 29.93545 ] ], [ [ -90.07875, 29.93545 ], [ -90.078702, 29.935412 ] ], [ [ -90.07755, 29.936358 ], [ -90.078702, 29.935412 ] ], [ [ -90.07761, 29.93615 ], [ -90.077665, 29.936198 ] ], [ [ -90.07761, 29.93615 ], [ -90.0765, 29.93757 ] ], [ [ -90.07655, 29.93782 ], [ -90.07761, 29.93639 ] ], [ [ -90.07761, 29.93639 ], [ -90.07755, 29.936358 ] ], [ [ -90.076498, 29.937784 ], [ -90.07755, 29.936358 ] ], [ [ -90.0765, 29.93757 ], [ -90.076555, 29.937595 ] ], [ [ -90.0755, 29.93924 ], [ -90.07655, 29.93782 ] ], [ [ -90.07655, 29.93782 ], [ -90.076498, 29.937784 ] ], [ [ -90.0765, 29.93757 ], [ -90.07551, 29.93892 ] ], [ [ -90.075443, 29.939206 ], [ -90.076498, 29.937784 ] ], [ [ -90.07551, 29.93892 ], [ -90.075541, 29.938941 ] ], [ [ -90.07551, 29.93892 ], [ -90.07442, 29.94039 ] ], [ [ -90.074438, 29.940531 ], [ -90.0755, 29.93924 ] ], [ [ -90.0755, 29.93924 ], [ -90.075443, 29.939206 ] ], [ [ -90.074438, 29.940531 ], [ -90.075443, 29.939206 ] ], [ [ -90.07442, 29.94039 ], [ -90.074456, 29.940408 ] ], [ [ -90.07353, 29.94189 ], [ -90.074438, 29.940531 ] ], [ [ -90.07353, 29.94189 ], [ -90.074438, 29.940531 ] ], [ [ -90.07442, 29.94039 ], [ -90.07269, 29.94269 ] ], [ [ -90.07291, 29.94276 ], [ -90.07353, 29.94189 ] ], [ [ -90.07315, 29.94389 ], [ -90.073194, 29.943817 ] ], [ [ -90.07315, 29.94389 ], [ -90.07357, 29.94413 ], [ -90.07297, 29.94605 ] ], [ [ -90.07281, 29.94367 ], [ -90.07315, 29.94389 ] ], [ [ -90.07297, 29.94605 ], [ -90.07257, 29.94745 ] ], [ [ -90.07297, 29.94605 ], [ -90.072901, 29.946037 ] ], [ [ -90.07281, 29.94367 ], [ -90.07297, 29.94338 ], [ -90.07277, 29.94296 ], [ -90.07291, 29.94276 ] ], [ [ -90.07291, 29.94276 ], [ -90.072815, 29.942753 ] ], [ [ -90.07233, 29.94376 ], [ -90.07281, 29.94367 ] ], [ [ -90.07269, 29.94269 ], [ -90.072751, 29.942725 ] ], [ [ -90.07269, 29.94269 ], [ -90.072, 29.94317 ], [ -90.07204, 29.94358 ], [ -90.07233, 29.94376 ] ], [ [ -90.07257, 29.94745 ], [ -90.07191, 29.94964 ] ], [ [ -90.07257, 29.94745 ], [ -90.072509, 29.947436 ] ], [ [ -90.07211, 29.94449 ], [ -90.07233, 29.94376 ] ], [ [ -90.07211, 29.94449 ], [ -90.072171, 29.944505 ] ], [ [ -90.07166, 29.94601 ], [ -90.07211, 29.94449 ] ], [ [ -90.07191, 29.94964 ], [ -90.07166, 29.950495 ] ], [ [ -90.07191, 29.94964 ], [ -90.071843, 29.949621 ] ], [ [ -90.07166, 29.94601 ], [ -90.071714, 29.946023 ] ], [ [ -90.07125, 29.9474 ], [ -90.07166, 29.94601 ] ], [ [ -90.07166, 29.950495 ], [ -90.071287, 29.951739 ], [ -90.071139, 29.951849 ] ], [ [ -90.07166, 29.950495 ], [ -90.071294, 29.951749 ], [ -90.071139, 29.951849 ] ], [ [ -90.07125, 29.9474 ], [ -90.071277, 29.947405 ] ], [ [ -90.07095, 29.94839 ], [ -90.07125, 29.9474 ] ], [ [ -90.071171799533786, 29.952083531468563 ], [ -90.070831, 29.95284 ] ], [ [ -90.071171799533786, 29.952083531468563 ], [ -90.07092, 29.95274 ], [ -90.070831, 29.95284 ] ], [ [ -90.071139, 29.951849 ], [ -90.071171799533786, 29.952083531468563 ] ], [ [ -90.071139, 29.951849 ], [ -90.071171799533786, 29.952083531468563 ] ], [ [ -90.07095, 29.94839 ], [ -90.071035, 29.948406 ] ], [ [ -90.07079, 29.94894 ], [ -90.07095, 29.94839 ] ], [ [ -90.070831, 29.95284 ], [ -90.07006, 29.95371 ], [ -90.06915, 29.95309 ], [ -90.06976, 29.95227 ] ], [ [ -90.070617208828509, 29.949561057724971 ], [ -90.07079, 29.94894 ] ], [ [ -90.070617208828509, 29.949561057724971 ], [ -90.07079, 29.94894 ] ], [ [ -90.070239303703744, 29.950775925925758 ], [ -90.070638, 29.949697 ] ], [ [ -90.070239303703744, 29.950775925925758 ], [ -90.070638, 29.949697 ] ], [ [ -90.070638, 29.949697 ], [ -90.070617208828509, 29.949561057724971 ] ], [ [ -90.070638, 29.949697 ], [ -90.070617208828509, 29.949561057724971 ] ], [ [ -90.07014, 29.95112 ], [ -90.070239303703744, 29.950775925925758 ] ], [ [ -90.070222, 29.951141 ], [ -90.070239303703744, 29.950775925925758 ] ], [ [ -90.070126741702353, 29.951164596092063 ], [ -90.070222, 29.951141 ] ], [ [ -90.07014, 29.95112 ], [ -90.070222, 29.951141 ] ], [ [ -90.070126741702353, 29.951164596092063 ], [ -90.07014, 29.95112 ] ], [ [ -90.06999, 29.951625 ], [ -90.070126741702353, 29.951164596092063 ] ], [ [ -90.06999, 29.951625 ], [ -90.070126741702353, 29.951164596092063 ] ], [ [ -90.06976, 29.95227 ], [ -90.06999, 29.951625 ] ], [ [ -90.06976, 29.95227 ], [ -90.069807, 29.9523 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "47", "agency_id": "1", "route_short_name": "47", "route_long_name": "Canal Streetcar - Cemeteries", "route_type": 0, "route_color": "#c32f3d", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.111235350515472, 29.981886731958742 ], [ -90.110412, 29.982175 ], [ -90.110492, 29.982693 ], [ -90.110744, 29.982628 ], [ -90.110816, 29.982154 ], [ -90.111235350515472, 29.981886731958742 ] ], [ [ -90.111177933333337, 29.9816556 ], [ -90.111235350515472, 29.981886731958742 ] ], [ [ -90.111235350515472, 29.981886731958742 ], [ -90.111177933333337, 29.9816556 ] ], [ [ -90.111177933333337, 29.9816556 ], [ -90.111066, 29.981562 ], [ -90.110918463878306, 29.981482019011391 ] ], [ [ -90.110918463878306, 29.981482019011391 ], [ -90.111177933333337, 29.9816556 ] ], [ [ -90.110450294736708, 29.981170884210449 ], [ -90.110918463878306, 29.981482019011391 ] ], [ [ -90.110918463878306, 29.981482019011391 ], [ -90.110450294736708, 29.981170884210449 ] ], [ [ -90.110450294736708, 29.981170884210449 ], [ -90.108685404441459, 29.979996783310895 ] ], [ [ -90.108685404441459, 29.979996783310895 ], [ -90.110450294736708, 29.981170884210449 ] ], [ [ -90.106814, 29.978711 ], [ -90.108685404441459, 29.979996783310895 ] ], [ [ -90.108685404441459, 29.979996783310895 ], [ -90.104105294117659, 29.976923588235309 ] ], [ [ -90.106376416667104, 29.978414481481781 ], [ -90.106814, 29.978711 ] ], [ [ -90.106376416667104, 29.978414481481781 ], [ -90.106814, 29.978711 ] ], [ [ -90.106274799999497, 29.978345599999638 ], [ -90.106376416667104, 29.978414481481781 ] ], [ [ -90.106274799999497, 29.978345599999638 ], [ -90.106376416667104, 29.978414481481781 ] ], [ [ -90.106188666666668, 29.978287333333334 ], [ -90.106274799999497, 29.978345599999638 ] ], [ [ -90.106188666666668, 29.978287333333334 ], [ -90.106274799999497, 29.978345599999638 ] ], [ [ -90.106085857142574, 29.978217698412521 ], [ -90.106188666666668, 29.978287333333334 ] ], [ [ -90.106085857142574, 29.978217698412521 ], [ -90.106188666666668, 29.978287333333334 ] ], [ [ -90.105807413793258, 29.978029103448392 ], [ -90.106085857142574, 29.978217698412521 ] ], [ [ -90.105807413793258, 29.978029103448392 ], [ -90.106085857142574, 29.978217698412521 ] ], [ [ -90.105726039105775, 29.977973932960641 ], [ -90.105807413793258, 29.978029103448392 ] ], [ [ -90.105726039105775, 29.977973932960641 ], [ -90.105807413793258, 29.978029103448392 ] ], [ [ -90.105532068965289, 29.977842517241225 ], [ -90.105726039105775, 29.977973932960641 ] ], [ [ -90.105532068965289, 29.977842517241225 ], [ -90.105726039105775, 29.977973932960641 ] ], [ [ -90.105477200002895, 29.977805400001934 ], [ -90.105532068965289, 29.977842517241225 ] ], [ [ -90.105477200002895, 29.977805400001934 ], [ -90.105532068965289, 29.977842517241225 ] ], [ [ -90.105375583332815, 29.97773651851816 ], [ -90.105477200002895, 29.977805400001934 ] ], [ [ -90.105375583332815, 29.97773651851816 ], [ -90.105477200002895, 29.977805400001934 ] ], [ [ -90.105226785714422, 29.977635678571524 ], [ -90.105375583332815, 29.97773651851816 ] ], [ [ -90.105226785714422, 29.977635678571524 ], [ -90.105375583332815, 29.97773651851816 ] ], [ [ -90.105119551723575, 29.977563137930652 ], [ -90.105226785714422, 29.977635678571524 ] ], [ [ -90.105119551723575, 29.977563137930652 ], [ -90.105226785714422, 29.977635678571524 ] ], [ [ -90.104938, 29.97744 ], [ -90.105119551723575, 29.977563137930652 ] ], [ [ -90.104938, 29.97744 ], [ -90.105119551723575, 29.977563137930652 ] ], [ [ -90.103094, 29.976197 ], [ -90.104938, 29.97744 ] ], [ [ -90.104105294117659, 29.976923588235309 ], [ -90.104938, 29.97744 ] ], [ [ -90.104105294117659, 29.976923588235309 ], [ -90.103998567473965, 29.976849408304439 ] ], [ [ -90.103998567473965, 29.976849408304439 ], [ -90.104105294117659, 29.976923588235309 ] ], [ [ -90.103094, 29.976197 ], [ -90.103998567473965, 29.976849408304439 ] ], [ [ -90.103998567473965, 29.976849408304439 ], [ -90.102379129032229, 29.97573054838707 ] ], [ [ -90.102152987499892, 29.975566768749932 ], [ -90.103094, 29.976197 ] ], [ [ -90.102379129032229, 29.97573054838707 ], [ -90.103094, 29.976197 ] ], [ [ -90.102379129032229, 29.97573054838707 ], [ -90.102152987499892, 29.975566768749932 ] ], [ [ -90.100437, 29.974417 ], [ -90.102379129032229, 29.97573054838707 ] ], [ [ -90.102152987499892, 29.975566768749932 ], [ -90.100412, 29.97439 ], [ -90.100376477625574, 29.974377182648407 ] ], [ [ -90.100437, 29.974417 ], [ -90.102152987499892, 29.975566768749932 ] ], [ [ -90.100376477625574, 29.974377182648407 ], [ -90.100437, 29.974417 ] ], [ [ -90.100290863309354, 29.974320575539558 ], [ -90.100376477625574, 29.974377182648407 ] ], [ [ -90.100376477625574, 29.974377182648407 ], [ -90.100290863309354, 29.974320575539558 ] ], [ [ -90.100290863309354, 29.974320575539558 ], [ -90.095403288561542, 29.971003046793779 ] ], [ [ -90.095403288561542, 29.971003046793779 ], [ -90.096828, 29.972039 ], [ -90.100290863309354, 29.974320575539558 ] ], [ [ -90.092170454789127, 29.968801176586517 ], [ -90.095403288561542, 29.971003046793779 ] ], [ [ -90.095403288561542, 29.971003046793779 ], [ -90.092170454789127, 29.968801176586517 ] ], [ [ -90.092170454789127, 29.968801176586517 ], [ -90.09223, 29.96874 ], [ -90.0913, 29.96812 ] ], [ [ -90.091254447268909, 29.968179381238745 ], [ -90.092170454789127, 29.968801176586517 ] ], [ [ -90.0913, 29.96812 ], [ -90.091254447268909, 29.968179381238745 ] ], [ [ -90.0913, 29.96812 ], [ -90.08902, 29.96656 ], [ -90.088958408789324, 29.966629082033602 ] ], [ [ -90.091254447268909, 29.968179381238745 ], [ -90.091244, 29.968193 ] ], [ [ -90.089092, 29.966714 ], [ -90.091254447268909, 29.968179381238745 ] ], [ [ -90.088958408789324, 29.966629082033602 ], [ -90.089092, 29.966714 ] ], [ [ -90.088953365955675, 29.966634738184837 ], [ -90.089092, 29.966714 ] ], [ [ -90.088958408789324, 29.966629082033602 ], [ -90.088953365955675, 29.966634738184837 ] ], [ [ -90.088449465116298, 29.966305794573653 ], [ -90.088958408789324, 29.966629082033602 ] ], [ [ -90.088953365955675, 29.966634738184837 ], [ -90.088828075085317, 29.966562979522173 ] ], [ [ -90.088828075085317, 29.966562979522173 ], [ -90.088953365955675, 29.966634738184837 ] ], [ [ -90.088828075085317, 29.966562979522173 ], [ -90.088449465116298, 29.966305794573653 ] ], [ [ -90.087519, 29.965685 ], [ -90.087573, 29.965845 ], [ -90.088828075085317, 29.966562979522173 ] ], [ [ -90.088449465116298, 29.966305794573653 ], [ -90.087599, 29.965729 ], [ -90.08768, 29.96564 ], [ -90.0859, 29.96445 ] ], [ [ -90.087519, 29.965685 ], [ -90.088449465116298, 29.966305794573653 ] ], [ [ -90.085842, 29.964549 ], [ -90.087519, 29.965685 ] ], [ [ -90.085842, 29.964549 ], [ -90.085975, 29.964774 ], [ -90.087343, 29.96568 ], [ -90.087519, 29.965685 ] ], [ [ -90.0859, 29.96445 ], [ -90.085829, 29.964529 ] ], [ [ -90.0859, 29.96445 ], [ -90.08408, 29.96321 ] ], [ [ -90.083851, 29.963185 ], [ -90.08569, 29.96457 ], [ -90.085842, 29.964549 ] ], [ [ -90.083851, 29.963185 ], [ -90.085842, 29.964549 ] ], [ [ -90.08408, 29.96321 ], [ -90.084071, 29.963277 ] ], [ [ -90.08408, 29.96321 ], [ -90.08262, 29.96223 ] ], [ [ -90.082505, 29.962276 ], [ -90.082617, 29.962469 ], [ -90.083727, 29.963227 ], [ -90.083851, 29.963185 ] ], [ [ -90.082555556665696, 29.962310306308883 ], [ -90.083851, 29.963185 ] ], [ [ -90.08262, 29.96223 ], [ -90.082555556665696, 29.962310306308883 ] ], [ [ -90.08262, 29.96223 ], [ -90.08048, 29.96077 ] ], [ [ -90.082555556665696, 29.962310306308883 ], [ -90.082555, 29.962311 ] ], [ [ -90.082505, 29.962276 ], [ -90.082555556665696, 29.962310306308883 ] ], [ [ -90.080356, 29.960816 ], [ -90.08048, 29.961036 ], [ -90.082354, 29.962283 ], [ -90.082505, 29.962276 ] ], [ [ -90.080356, 29.960816 ], [ -90.082505, 29.962276 ] ], [ [ -90.08048, 29.96077 ], [ -90.080407, 29.960849 ] ], [ [ -90.08048, 29.96077 ], [ -90.07821, 29.95923 ] ], [ [ -90.078051, 29.959296 ], [ -90.080201, 29.960855 ], [ -90.080356, 29.960816 ] ], [ [ -90.078051, 29.959296 ], [ -90.080356, 29.960816 ] ], [ [ -90.07821, 29.95923 ], [ -90.078134, 29.959314 ] ], [ [ -90.07821, 29.95923 ], [ -90.075648, 29.957474 ], [ -90.075405, 29.957434 ], [ -90.075412, 29.957307 ], [ -90.07298, 29.95567 ] ], [ [ -90.068064, 29.952575 ], [ -90.07533, 29.957553 ], [ -90.075522, 29.957474 ], [ -90.075494, 29.957664 ], [ -90.078051, 29.959296 ] ], [ [ -90.07298, 29.95567 ], [ -90.072937, 29.955716 ] ], [ [ -90.07298, 29.95567 ], [ -90.0702, 29.9538 ] ], [ [ -90.0702, 29.9538 ], [ -90.070162, 29.953844 ] ], [ [ -90.0702, 29.9538 ], [ -90.06814, 29.9524 ] ], [ [ -90.06814, 29.9524 ], [ -90.068084, 29.952458 ] ], [ [ -90.06814, 29.9524 ], [ -90.06636, 29.95118 ] ], [ [ -90.065793, 29.951016 ], [ -90.068064, 29.952575 ] ], [ [ -90.065793, 29.951016 ], [ -90.065873, 29.951143 ], [ -90.068064, 29.952575 ] ], [ [ -90.06636, 29.95118 ], [ -90.066304, 29.951243 ] ], [ [ -90.06636, 29.95118 ], [ -90.06432, 29.9498 ], [ -90.06402, 29.94977 ], [ -90.06431, 29.9501 ], [ -90.064487, 29.950104 ], [ -90.06443, 29.95017 ] ], [ [ -90.06443, 29.95017 ], [ -90.065793, 29.951016 ] ], [ [ -90.06443, 29.95017 ], [ -90.065793, 29.951016 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "55", "agency_id": "1", "route_short_name": "55", "route_long_name": "Elysian Fields", "route_type": 3, "route_color": "#51b948", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.07580804189864, 29.952282567755255 ], [ -90.07549, 29.952398 ], [ -90.074846, 29.95429 ], [ -90.0719, 29.9576 ] ], [ [ -90.06764, 29.96149 ], [ -90.06992, 29.95894 ], [ -90.07066, 29.95943 ], [ -90.07428, 29.95542 ], [ -90.07528, 29.954073 ], [ -90.07580804189864, 29.952282567755255 ] ], [ [ -90.07580804189864, 29.952282567755255 ], [ -90.075869, 29.950891 ], [ -90.078322, 29.95184 ], [ -90.077952, 29.953012 ], [ -90.07580804189864, 29.952282567755255 ] ], [ [ -90.0719, 29.9576 ], [ -90.07106, 29.95854 ], [ -90.07061, 29.95823 ] ], [ [ -90.0719, 29.9576 ], [ -90.071875, 29.957586 ] ], [ [ -90.07061, 29.95823 ], [ -90.070619, 29.958215 ] ], [ [ -90.07061, 29.95823 ], [ -90.07046, 29.95814 ], [ -90.06769, 29.96124 ] ], [ [ -90.06769, 29.96124 ], [ -90.06366, 29.96574 ] ], [ [ -90.06769, 29.96124 ], [ -90.067676, 29.961238 ] ], [ [ -90.06764, 29.96149 ], [ -90.067685, 29.961523 ] ], [ [ -90.06353, 29.96608 ], [ -90.06764, 29.96149 ] ], [ [ -90.06537, 30.02798 ], [ -90.065488, 30.027969 ] ], [ [ -90.06131, 30.02756 ], [ -90.06144, 30.02912 ], [ -90.06526, 30.0282 ], [ -90.06537, 30.02798 ] ], [ [ -90.06537, 30.02798 ], [ -90.06516, 30.02788 ], [ -90.06197, 30.02871 ] ], [ [ -90.06366, 29.96574 ], [ -90.06217, 29.96741 ], [ -90.06145, 29.96791 ] ], [ [ -90.06366, 29.96574 ], [ -90.063593, 29.965692 ] ], [ [ -90.06353, 29.96608 ], [ -90.063606, 29.966124 ] ], [ [ -90.06237, 29.9674 ], [ -90.06353, 29.96608 ] ], [ [ -90.06237, 29.9674 ], [ -90.062412, 29.967436 ] ], [ [ -90.05718, 29.96867 ], [ -90.05928, 29.96837 ], [ -90.0609, 29.96828 ], [ -90.06171, 29.96795 ], [ -90.06237, 29.9674 ] ], [ [ -90.06197, 30.02871 ], [ -90.061784028268562, 30.028680636042395 ] ], [ [ -90.06197, 30.02871 ], [ -90.061784028268562, 30.028680636042395 ] ], [ [ -90.061783947031188, 30.028679692439127 ], [ -90.061857, 30.028674 ] ], [ [ -90.061784028268562, 30.028680636042395 ], [ -90.061783947031188, 30.028679692439127 ] ], [ [ -90.061784028268562, 30.028680636042395 ], [ -90.06178, 30.02868 ] ], [ [ -90.06178, 30.02868 ], [ -90.061783947031188, 30.028679692439127 ] ], [ [ -90.061783947031188, 30.028679692439127 ], [ -90.06174, 30.028145 ] ], [ [ -90.06178, 30.02868 ], [ -90.06174, 30.028145 ] ], [ [ -90.0617, 30.02761 ], [ -90.061763, 30.02761 ] ], [ [ -90.06174, 30.028145 ], [ -90.0617, 30.02761 ] ], [ [ -90.06174, 30.028145 ], [ -90.06169, 30.02754 ] ], [ [ -90.0617, 30.02761 ], [ -90.06169, 30.02754 ] ], [ [ -90.06169, 30.02754 ], [ -90.06149, 30.02502 ] ], [ [ -90.06149, 30.02502 ], [ -90.06111, 30.02504 ] ], [ [ -90.06149, 30.02502 ], [ -90.0614, 30.02321 ] ], [ [ -90.0614, 30.02321 ], [ -90.061465, 30.023211 ] ], [ [ -90.06145, 29.96791 ], [ -90.06079, 29.96812 ], [ -90.05722, 29.96852 ] ], [ [ -90.06145, 29.96791 ], [ -90.061398, 29.96782 ] ], [ [ -90.0614, 30.02321 ], [ -90.06132, 30.02217 ] ], [ [ -90.06132, 30.02217 ], [ -90.061392, 30.022162 ] ], [ [ -90.06132, 30.02217 ], [ -90.0611, 30.01943 ] ], [ [ -90.06126, 30.02688 ], [ -90.06131, 30.02756 ] ], [ [ -90.0613, 30.02745 ], [ -90.06131, 30.02756 ] ], [ [ -90.0613, 30.02745 ], [ -90.061238, 30.027459 ] ], [ [ -90.06126, 30.02688 ], [ -90.0613, 30.02745 ] ], [ [ -90.06116, 30.02573 ], [ -90.06126, 30.02688 ] ], [ [ -90.0611, 30.01943 ], [ -90.061163, 30.019429 ] ], [ [ -90.06115, 30.02556 ], [ -90.06116, 30.02573 ] ], [ [ -90.061145872033009, 30.025560464396293 ], [ -90.06116, 30.02573 ] ], [ [ -90.06115, 30.02556 ], [ -90.061145872033009, 30.025560464396293 ] ], [ [ -90.06112, 30.02525 ], [ -90.06115, 30.02556 ] ], [ [ -90.061145872033009, 30.025560464396293 ], [ -90.06107, 30.025569 ] ], [ [ -90.06112, 30.02525 ], [ -90.061145872033009, 30.025560464396293 ] ], [ [ -90.05877, 30.02537 ], [ -90.06112, 30.02525 ] ], [ [ -90.06111, 30.02504 ], [ -90.06112, 30.02525 ] ], [ [ -90.06111, 30.02504 ], [ -90.05888, 30.02527 ] ], [ [ -90.0611, 30.02489 ], [ -90.06111, 30.02504 ] ], [ [ -90.0611, 30.01943 ], [ -90.06089, 30.01687 ] ], [ [ -90.06096, 30.02301 ], [ -90.0611, 30.02489 ] ], [ [ -90.0611, 30.02489 ], [ -90.061051, 30.024889 ] ], [ [ -90.06096, 30.02301 ], [ -90.060901, 30.02301 ] ], [ [ -90.06087, 30.02183 ], [ -90.06096, 30.02301 ] ], [ [ -90.06089, 30.01687 ], [ -90.060948, 30.016866 ] ], [ [ -90.06089, 30.01687 ], [ -90.06072, 30.01466 ] ], [ [ -90.06087, 30.02183 ], [ -90.060804, 30.021832 ] ], [ [ -90.06071, 30.01981 ], [ -90.06087, 30.02183 ] ], [ [ -90.06072, 30.01466 ], [ -90.060776, 30.014654 ] ], [ [ -90.06072, 30.01466 ], [ -90.06048, 30.01261 ] ], [ [ -90.06071, 30.01981 ], [ -90.060641, 30.019811 ] ], [ [ -90.06044, 30.01653 ], [ -90.06071, 30.01981 ] ], [ [ -90.06048, 30.01261 ], [ -90.060542, 30.012607 ] ], [ [ -90.06048, 30.01261 ], [ -90.0603, 30.01039 ] ], [ [ -90.06044, 30.01653 ], [ -90.06038, 30.016531 ] ], [ [ -90.06028, 30.01451 ], [ -90.06044, 30.01653 ] ], [ [ -90.0603, 30.01039 ], [ -90.060352, 30.010387 ] ], [ [ -90.0603, 30.01039 ], [ -90.06014, 30.00835 ] ], [ [ -90.06028, 30.01451 ], [ -90.060227, 30.014513 ] ], [ [ -90.06011, 30.01227 ], [ -90.06028, 30.01451 ] ], [ [ -90.06014, 30.00835 ], [ -90.060198, 30.008345 ] ], [ [ -90.06014, 30.00835 ], [ -90.05997, 30.00612 ] ], [ [ -90.06011, 30.01227 ], [ -90.060054, 30.012276 ] ], [ [ -90.05991, 30.00988 ], [ -90.06011, 30.01227 ] ], [ [ -90.05997, 30.00612 ], [ -90.060007, 30.00612 ] ], [ [ -90.05997, 30.00612 ], [ -90.05987, 30.00512 ] ], [ [ -90.05987, 30.00512 ], [ -90.059937, 30.005113 ] ], [ [ -90.05991, 30.00988 ], [ -90.059861, 30.00988 ] ], [ [ -90.05978, 30.00805 ], [ -90.05991, 30.00988 ] ], [ [ -90.05987, 30.00512 ], [ -90.05963, 30.00209 ] ], [ [ -90.05978, 30.00805 ], [ -90.059713, 30.008059 ] ], [ [ -90.05963, 30.00634 ], [ -90.05978, 30.00805 ] ], [ [ -90.05963, 30.00209 ], [ -90.059714, 30.002085 ] ], [ [ -90.05963, 30.00209 ], [ -90.05943, 29.99966 ] ], [ [ -90.05963, 30.00634 ], [ -90.059577, 30.006347 ] ], [ [ -90.05952, 30.0049 ], [ -90.05963, 30.00634 ] ], [ [ -90.05952, 30.0049 ], [ -90.059455, 30.004901 ] ], [ [ -90.0593, 30.0019 ], [ -90.05952, 30.0049 ] ], [ [ -90.05943, 29.99966 ], [ -90.059508, 29.999653 ] ], [ [ -90.05937, 29.99904 ], [ -90.059461, 29.999029 ] ], [ [ -90.05943, 29.99966 ], [ -90.05937, 29.99904 ] ], [ [ -90.05937, 29.99904 ], [ -90.05921, 29.99699 ] ], [ [ -90.05921, 29.99699 ], [ -90.059305, 29.996982 ] ], [ [ -90.0593, 30.0019 ], [ -90.059232, 30.001901 ] ], [ [ -90.05915, 30.00012 ], [ -90.0593, 30.0019 ] ], [ [ -90.05921, 29.99699 ], [ -90.05905, 29.99499 ] ], [ [ -90.05915, 30.00012 ], [ -90.05908, 30.000129 ] ], [ [ -90.05911, 29.99959 ], [ -90.05915, 30.00012 ] ], [ [ -90.05905, 29.99499 ], [ -90.059135, 29.994981 ] ], [ [ -90.05911, 29.99959 ], [ -90.059034, 29.999597 ] ], [ [ -90.05889, 29.99683 ], [ -90.05911, 29.99959 ] ], [ [ -90.05905, 29.99499 ], [ -90.05889, 29.99294 ] ], [ [ -90.05889, 29.99294 ], [ -90.058989, 29.992931 ] ], [ [ -90.05888, 30.02527 ], [ -90.058898, 30.025219 ] ], [ [ -90.05889, 29.99294 ], [ -90.05857, 29.98891 ] ], [ [ -90.05889, 29.99683 ], [ -90.058817, 29.996835 ] ], [ [ -90.05873, 29.9948 ], [ -90.05889, 29.99683 ] ], [ [ -90.05888, 30.02527 ], [ -90.05695, 30.02552 ] ], [ [ -90.05877, 30.02537 ], [ -90.058786, 30.025472 ] ], [ [ -90.05655, 30.02568 ], [ -90.05877, 30.02537 ] ], [ [ -90.05873, 29.9948 ], [ -90.058659, 29.994806 ] ], [ [ -90.05858, 29.99278 ], [ -90.05873, 29.9948 ] ], [ [ -90.05857, 29.98891 ], [ -90.058646, 29.988905 ] ], [ [ -90.05858, 29.99278 ], [ -90.058506, 29.992781 ] ], [ [ -90.05842, 29.99072 ], [ -90.05858, 29.99278 ] ], [ [ -90.05857, 29.98891 ], [ -90.05811, 29.98464 ], [ -90.0581, 29.98281 ] ], [ [ -90.05842, 29.99072 ], [ -90.058331, 29.990724 ] ], [ [ -90.05826, 29.98874 ], [ -90.05842, 29.99072 ] ], [ [ -90.05826, 29.98874 ], [ -90.058134, 29.988743 ] ], [ [ -90.05753, 29.9796 ], [ -90.057728, 29.982167 ], [ -90.05765, 29.9825 ], [ -90.057825, 29.982483 ], [ -90.05826, 29.98874 ] ], [ [ -90.0581, 29.98281 ], [ -90.058206, 29.982811 ] ], [ [ -90.0581, 29.98281 ], [ -90.05818, 29.98066 ], [ -90.057972, 29.979703 ], [ -90.0581, 29.979713 ], [ -90.057972, 29.979629 ], [ -90.057747, 29.978732 ], [ -90.057855, 29.978741 ], [ -90.057747, 29.978699 ], [ -90.05753, 29.97573 ] ], [ [ -90.05753, 29.97573 ], [ -90.057601, 29.975728 ] ], [ [ -90.05753, 29.97573 ], [ -90.05736, 29.97371 ] ], [ [ -90.05753, 29.9796 ], [ -90.057464, 29.979607 ] ], [ [ -90.05744, 29.9786 ], [ -90.05753, 29.9796 ] ], [ [ -90.05736, 29.97371 ], [ -90.057459, 29.973703 ] ], [ [ -90.05744, 29.9786 ], [ -90.057353, 29.978608 ] ], [ [ -90.0572, 29.97557 ], [ -90.05744, 29.9786 ] ], [ [ -90.05736, 29.97371 ], [ -90.05723, 29.97165 ] ], [ [ -90.05723, 29.97165 ], [ -90.05731, 29.971646 ] ], [ [ -90.05723, 29.97165 ], [ -90.05699, 29.96869 ], [ -90.05718, 29.96867 ] ], [ [ -90.05722, 29.96852 ], [ -90.056712, 29.968539 ], [ -90.05671, 29.96949 ] ], [ [ -90.05722, 29.96852 ], [ -90.057209, 29.968435 ] ], [ [ -90.0572, 29.97557 ], [ -90.057105, 29.975577 ] ], [ [ -90.05699, 29.97297 ], [ -90.0572, 29.97557 ] ], [ [ -90.05718, 29.96867 ], [ -90.057182, 29.96875 ] ], [ [ -90.05699, 29.97297 ], [ -90.056894, 29.972978 ] ], [ [ -90.05687, 29.9715 ], [ -90.05699, 29.97297 ] ], [ [ -90.05695, 30.02552 ], [ -90.05534, 30.02575 ] ], [ [ -90.05695, 30.02552 ], [ -90.056939, 30.025489 ] ], [ [ -90.05687, 29.9715 ], [ -90.056775, 29.971504 ] ], [ [ -90.05671, 29.96949 ], [ -90.05687, 29.9715 ] ], [ [ -90.05671, 29.96949 ], [ -90.056618, 29.969485 ] ], [ [ -90.05655, 30.02568 ], [ -90.056566, 30.025743 ] ], [ [ -90.05484, 30.02591 ], [ -90.05655, 30.02568 ] ], [ [ -90.05534, 30.02575 ], [ -90.055342, 30.025767 ] ], [ [ -90.05534, 30.02575 ], [ -90.052, 30.02629 ] ], [ [ -90.05484, 30.02591 ], [ -90.054845, 30.025958 ] ], [ [ -90.05204, 30.02642 ], [ -90.05484, 30.02591 ] ], [ [ -90.05204, 30.02642 ], [ -90.052046, 30.02644 ] ], [ [ -90.04511, 30.02845 ], [ -90.04563, 30.02896 ], [ -90.04783, 30.0272 ], [ -90.05204, 30.02642 ] ], [ [ -90.052, 30.02629 ], [ -90.04758, 30.02714 ], [ -90.04677, 30.02742 ], [ -90.04532, 30.02845 ], [ -90.04523, 30.02836 ] ], [ [ -90.052, 30.02629 ], [ -90.051982, 30.026215 ] ], [ [ -90.04523, 30.02836 ], [ -90.045311, 30.0283 ] ], [ [ -90.04523, 30.02836 ], [ -90.04466, 30.02779 ] ], [ [ -90.04511, 30.02845 ], [ -90.045042, 30.028508 ] ], [ [ -90.04396, 30.02731 ], [ -90.04511, 30.02845 ] ], [ [ -90.04466, 30.02779 ], [ -90.044737, 30.027735 ] ], [ [ -90.04466, 30.02779 ], [ -90.04347, 30.02647 ], [ -90.04346, 30.02618 ], [ -90.044, 30.02469 ], [ -90.04393, 30.02325 ] ], [ [ -90.04393, 30.02325 ], [ -90.043994, 30.023241 ] ], [ [ -90.04396, 30.02731 ], [ -90.043904, 30.027351 ] ], [ [ -90.04384, 30.02421 ], [ -90.04364, 30.02529 ], [ -90.04317, 30.02599 ], [ -90.04314, 30.0263 ], [ -90.04329, 30.02665 ], [ -90.04396, 30.02731 ] ], [ [ -90.04386, 30.02001 ], [ -90.043953, 30.019997 ] ], [ [ -90.04393, 30.02325 ], [ -90.0438, 30.02171 ], [ -90.04386, 30.02001 ] ], [ [ -90.04386, 30.02001 ], [ -90.04355, 30.01912 ], [ -90.04296, 30.01833 ] ], [ [ -90.04384, 30.02421 ], [ -90.043802, 30.024215 ] ], [ [ -90.04369, 30.02252 ], [ -90.04384, 30.02421 ] ], [ [ -90.04369, 30.02252 ], [ -90.043605, 30.022522 ] ], [ [ -90.04338, 30.01911 ], [ -90.04377, 30.02035 ], [ -90.04369, 30.02252 ] ], [ [ -90.04338, 30.01911 ], [ -90.043336, 30.019135 ] ], [ [ -90.04077, 30.00551 ], [ -90.04144, 30.00685 ], [ -90.04263, 30.01342 ], [ -90.04266, 30.01517 ], [ -90.04227, 30.01687 ], [ -90.04228, 30.01749 ], [ -90.04263, 30.01824 ], [ -90.04338, 30.01911 ] ], [ [ -90.04281, 30.01452 ], [ -90.043029, 30.014586 ] ], [ [ -90.04296, 30.01833 ], [ -90.042947, 30.018344 ] ], [ [ -90.04296, 30.01833 ], [ -90.04253, 30.0178 ], [ -90.0424, 30.01736 ], [ -90.0426, 30.0163 ] ], [ [ -90.0426, 30.0163 ], [ -90.04281, 30.01452 ] ], [ [ -90.04281, 30.01452 ], [ -90.04278, 30.01353 ], [ -90.04207, 30.00957 ] ], [ [ -90.0426, 30.0163 ], [ -90.042674, 30.016313 ] ], [ [ -90.04207, 30.00957 ], [ -90.042096, 30.009562 ] ], [ [ -90.04207, 30.00957 ], [ -90.0417, 30.00744 ] ], [ [ -90.0417, 30.00744 ], [ -90.041783, 30.007454 ] ], [ [ -90.0417, 30.00744 ], [ -90.04155, 30.00675 ], [ -90.04101, 30.00565 ] ], [ [ -90.04101, 30.00565 ], [ -90.041097, 30.005619 ] ], [ [ -90.04101, 30.00565 ], [ -90.04043, 30.0045 ] ], [ [ -90.04077, 30.00551 ], [ -90.040692, 30.00554 ] ], [ [ -90.04004, 30.00406 ], [ -90.04077, 30.00551 ] ], [ [ -90.04043, 30.0045 ], [ -90.04053, 30.004495 ] ], [ [ -90.04043, 30.0045 ], [ -90.04002, 30.00384 ], [ -90.038806, 30.004187 ], [ -90.038635, 30.004368 ], [ -90.037761, 30.004721 ], [ -90.037667, 30.004625 ], [ -90.033048, 30.00653 ], [ -90.029765, 30.007524 ], [ -90.029851, 30.00784 ], [ -90.032662, 30.006967 ], [ -90.03763, 30.00491 ], [ -90.04004, 30.00406 ] ], [ [ -90.04004, 30.00406 ], [ -90.039948, 30.004092 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "31", "agency_id": "1", "route_short_name": "31", "route_long_name": "Leonidas - Gentilly", "route_type": 3, "route_color": "#7a4028", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.13274, 29.9446 ], [ -90.132783, 29.944638 ] ], [ [ -90.13123, 29.94602 ], [ -90.13274, 29.9446 ] ], [ [ -90.13274, 29.9446 ], [ -90.1345, 29.94295 ], [ -90.134421, 29.94285 ], [ -90.13432, 29.94278 ], [ -90.13271, 29.94431 ] ], [ [ -90.13271, 29.94431 ], [ -90.13116, 29.94573 ] ], [ [ -90.13271, 29.94431 ], [ -90.132659, 29.944272 ] ], [ [ -90.132439656636507, 29.952258449326187 ], [ -90.13254, 29.95222 ] ], [ [ -90.13254, 29.95222 ], [ -90.132487, 29.952279 ] ], [ [ -90.13254, 29.95222 ], [ -90.13247, 29.95217 ] ], [ [ -90.13247, 29.95217 ], [ -90.1324, 29.95223 ] ], [ [ -90.13166, 29.95152 ], [ -90.13247, 29.95217 ] ], [ [ -90.132439656636507, 29.952258449326187 ], [ -90.132446, 29.952263 ] ], [ [ -90.132325736363654, 29.952300727272707 ], [ -90.132439656636507, 29.952258449326187 ] ], [ [ -90.1324, 29.95223 ], [ -90.132439656636507, 29.952258449326187 ] ], [ [ -90.1324, 29.95223 ], [ -90.132325736363654, 29.952300727272707 ] ], [ [ -90.13173, 29.95287 ], [ -90.1319, 29.952708 ], [ -90.131985, 29.952626 ], [ -90.132325736363654, 29.952300727272707 ] ], [ [ -90.132325736363654, 29.952300727272707 ], [ -90.132233, 29.95239 ], [ -90.131981, 29.95263 ], [ -90.131898, 29.95271 ], [ -90.13173, 29.95287 ] ], [ [ -90.13173, 29.95287 ], [ -90.13103, 29.95352 ] ], [ [ -90.13096, 29.95359 ], [ -90.13173, 29.95287 ] ], [ [ -90.13138056302445, 29.951292294117017 ], [ -90.13166, 29.95152 ] ], [ [ -90.13166, 29.95152 ], [ -90.131472, 29.951368 ], [ -90.13138056302445, 29.951292294117017 ] ], [ [ -90.13138056302445, 29.951292294117017 ], [ -90.131376235295406, 29.951288764706945 ] ], [ [ -90.131376235295406, 29.951288764706945 ], [ -90.13138056302445, 29.951292294117017 ] ], [ [ -90.130911405082216, 29.950908804185335 ], [ -90.131376235295406, 29.951288764706945 ] ], [ [ -90.131376235295406, 29.951288764706945 ], [ -90.13091, 29.95091 ] ], [ [ -90.13123, 29.94602 ], [ -90.131257, 29.946042 ] ], [ [ -90.1297, 29.94743 ], [ -90.13123, 29.94602 ] ], [ [ -90.13116, 29.94573 ], [ -90.12968, 29.94712 ] ], [ [ -90.13116, 29.94573 ], [ -90.131134, 29.945708 ] ], [ [ -90.13103, 29.95352 ], [ -90.13096, 29.95359 ] ], [ [ -90.13103, 29.95352 ], [ -90.130974, 29.953475 ] ], [ [ -90.13089, 29.95365 ], [ -90.13096, 29.95359 ] ], [ [ -90.13096, 29.95359 ], [ -90.130892673484297, 29.953652147552955 ] ], [ [ -90.130911405082216, 29.950908804185335 ], [ -90.130957, 29.95087 ] ], [ [ -90.130892673484297, 29.953652147552955 ], [ -90.130951, 29.953699 ] ], [ [ -90.13091, 29.95091 ], [ -90.130911405082216, 29.950908804185335 ] ], [ [ -90.13084, 29.95085 ], [ -90.130911405082216, 29.950908804185335 ] ], [ [ -90.13091, 29.95091 ], [ -90.13084, 29.95085 ] ], [ [ -90.130892673484297, 29.953652147552955 ], [ -90.1307, 29.95383 ] ], [ [ -90.13089, 29.95365 ], [ -90.130892673484297, 29.953652147552955 ] ], [ [ -90.1307, 29.95383 ], [ -90.13089, 29.95365 ] ], [ [ -90.13084, 29.95085 ], [ -90.13005, 29.9502 ] ], [ [ -90.13079, 29.95082 ], [ -90.13084, 29.95085 ] ], [ [ -90.13079, 29.95082 ], [ -90.130759, 29.950848 ] ], [ [ -90.13005, 29.9502 ], [ -90.13079, 29.95082 ] ], [ [ -90.1307, 29.95383 ], [ -90.13022, 29.95429 ] ], [ [ -90.13022, 29.95429 ], [ -90.12952, 29.95494 ] ], [ [ -90.12946, 29.955 ], [ -90.13022, 29.95429 ] ], [ [ -90.12916, 29.9495 ], [ -90.13005, 29.9502 ] ], [ [ -90.1297, 29.94743 ], [ -90.129743, 29.947465 ] ], [ [ -90.1284, 29.94866 ], [ -90.1297, 29.94743 ] ], [ [ -90.12968, 29.94712 ], [ -90.1281, 29.94861 ], [ -90.12828, 29.94877 ] ], [ [ -90.12968, 29.94712 ], [ -90.129633, 29.94709 ] ], [ [ -90.12952, 29.95494 ], [ -90.12946, 29.955 ] ], [ [ -90.12952, 29.95494 ], [ -90.129466, 29.954893 ] ], [ [ -90.12939, 29.95506 ], [ -90.12946, 29.955 ] ], [ [ -90.12946, 29.955 ], [ -90.129393244610057, 29.955062539260055 ] ], [ [ -90.129393244610057, 29.955062539260055 ], [ -90.129436, 29.955096 ] ], [ [ -90.129393244610057, 29.955062539260055 ], [ -90.1287, 29.95571 ] ], [ [ -90.12939, 29.95506 ], [ -90.129393244610057, 29.955062539260055 ] ], [ [ -90.1287, 29.95571 ], [ -90.12939, 29.95506 ] ], [ [ -90.12908, 29.94943 ], [ -90.12916, 29.9495 ] ], [ [ -90.12916, 29.9495 ], [ -90.129077862232776, 29.949432394299272 ] ], [ [ -90.12908, 29.94943 ], [ -90.129077862232776, 29.949432394299272 ] ], [ [ -90.12864, 29.94907 ], [ -90.12908, 29.94943 ] ], [ [ -90.129077862232776, 29.949432394299272 ], [ -90.129055, 29.949458 ] ], [ [ -90.129077862232776, 29.949432394299272 ], [ -90.12864, 29.94907 ] ], [ [ -90.1287, 29.95571 ], [ -90.12801, 29.95636 ] ], [ [ -90.12795, 29.95642 ], [ -90.1287, 29.95571 ] ], [ [ -90.12828, 29.94877 ], [ -90.12864, 29.94907 ] ], [ [ -90.1284, 29.94866 ], [ -90.128438, 29.948695 ] ], [ [ -90.12828, 29.94877 ], [ -90.1284, 29.94866 ] ], [ [ -90.12801, 29.95636 ], [ -90.12795, 29.95642 ] ], [ [ -90.12801, 29.95636 ], [ -90.127944, 29.95631 ] ], [ [ -90.12795, 29.95642 ], [ -90.12789, 29.95646 ] ], [ [ -90.12787, 29.95648 ], [ -90.127925, 29.956524 ] ], [ [ -90.12789, 29.95646 ], [ -90.12769, 29.95665 ] ], [ [ -90.12787, 29.95648 ], [ -90.12789, 29.95646 ] ], [ [ -90.12769, 29.95665 ], [ -90.12787, 29.95648 ] ], [ [ -90.12769, 29.95665 ], [ -90.12718, 29.95712 ] ], [ [ -90.12718, 29.95712 ], [ -90.1265, 29.95777 ] ], [ [ -90.12643, 29.95784 ], [ -90.12718, 29.95712 ] ], [ [ -90.1265, 29.95777 ], [ -90.12643, 29.95784 ] ], [ [ -90.1265, 29.95777 ], [ -90.126454, 29.957727 ] ], [ [ -90.126360410654812, 29.957900310765794 ], [ -90.126434, 29.957956 ] ], [ [ -90.12636, 29.9579 ], [ -90.12643, 29.95784 ] ], [ [ -90.12643, 29.95784 ], [ -90.126360410654812, 29.957900310765794 ] ], [ [ -90.126360410654812, 29.957900310765794 ], [ -90.12613, 29.9581 ] ], [ [ -90.12636, 29.9579 ], [ -90.126360410654812, 29.957900310765794 ] ], [ [ -90.12613, 29.9581 ], [ -90.12636, 29.9579 ] ], [ [ -90.12613, 29.9581 ], [ -90.1261, 29.95813 ] ], [ [ -90.1261, 29.95813 ], [ -90.124884, 29.959268 ], [ -90.12069, 29.955872 ], [ -90.121352, 29.955219 ], [ -90.121181, 29.955074 ], [ -90.111531, 29.96418 ], [ -90.111257, 29.9643 ], [ -90.110247, 29.965372 ], [ -90.11007, 29.965395 ], [ -90.110026, 29.965582 ], [ -90.109558, 29.965845 ], [ -90.109587, 29.965962 ], [ -90.10655, 29.96883 ] ], [ [ -90.10488, 29.97063 ], [ -90.108449, 29.96741 ], [ -90.114751, 29.961345 ], [ -90.120454, 29.956163 ], [ -90.120446, 29.956044 ], [ -90.124676, 29.959474 ], [ -90.124636, 29.959576 ], [ -90.1261, 29.95813 ] ], [ [ -90.10655, 29.96883 ], [ -90.10571, 29.96963 ] ], [ [ -90.10655, 29.96883 ], [ -90.106479, 29.968766 ] ], [ [ -90.10571, 29.96963 ], [ -90.10489, 29.9704 ] ], [ [ -90.10571, 29.96963 ], [ -90.105636, 29.969574 ] ], [ [ -90.10488, 29.97063 ], [ -90.104928, 29.970663 ] ], [ [ -90.10489, 29.9704 ], [ -90.10329, 29.9719 ] ], [ [ -90.10489, 29.9704 ], [ -90.104824, 29.970349 ] ], [ [ -90.10316, 29.97224 ], [ -90.10488, 29.97063 ] ], [ [ -90.10329, 29.9719 ], [ -90.100653, 29.974333 ], [ -90.100561, 29.974299 ], [ -90.100594, 29.974392 ], [ -90.09669, 29.97805 ] ], [ [ -90.10329, 29.9719 ], [ -90.103209, 29.971835 ] ], [ [ -90.10316, 29.97224 ], [ -90.103226, 29.972294 ] ], [ [ -90.10053, 29.97471 ], [ -90.10316, 29.97224 ] ], [ [ -90.10053, 29.97471 ], [ -90.100595, 29.974759 ] ], [ [ -90.09887, 29.97628 ], [ -90.10053, 29.97471 ] ], [ [ -90.09887, 29.97628 ], [ -90.098925, 29.976326 ] ], [ [ -90.09742, 29.97763 ], [ -90.09887, 29.97628 ] ], [ [ -90.09742, 29.97763 ], [ -90.097482, 29.977685 ] ], [ [ -90.09556, 29.9794 ], [ -90.09742, 29.97763 ] ], [ [ -90.09669, 29.97805 ], [ -90.09559, 29.97909 ] ], [ [ -90.09669, 29.97805 ], [ -90.096675, 29.978041 ] ], [ [ -90.09556, 29.9794 ], [ -90.095592, 29.979427 ] ], [ [ -90.09559, 29.97909 ], [ -90.09408, 29.9805 ] ], [ [ -90.09559, 29.97909 ], [ -90.09552, 29.979038 ] ], [ [ -90.09415, 29.98073 ], [ -90.09556, 29.9794 ] ], [ [ -90.09415, 29.98073 ], [ -90.094193, 29.980766 ] ], [ [ -90.0916, 29.98315 ], [ -90.09415, 29.98073 ] ], [ [ -90.09408, 29.9805 ], [ -90.09096, 29.98333 ] ], [ [ -90.09408, 29.9805 ], [ -90.094046, 29.980478 ] ], [ [ -90.0916, 29.98315 ], [ -90.091606, 29.983212 ] ], [ [ -90.09022, 29.98397 ], [ -90.09065, 29.98359 ], [ -90.0916, 29.98315 ] ], [ [ -90.09096, 29.98333 ], [ -90.09016, 29.98368 ], [ -90.08972, 29.98409 ], [ -90.08931, 29.98588 ], [ -90.0883, 29.98713 ], [ -90.08824, 29.9884 ], [ -90.08776, 29.98922 ], [ -90.08414, 29.98897 ] ], [ [ -90.09096, 29.98333 ], [ -90.090919, 29.983267 ] ], [ [ -90.09022, 29.98397 ], [ -90.090294, 29.984011 ] ], [ [ -90.08672, 29.98921 ], [ -90.08778, 29.98939 ], [ -90.08806, 29.9893 ], [ -90.08833, 29.9884 ], [ -90.08835, 29.98723 ], [ -90.0893, 29.98609 ], [ -90.0897, 29.98472 ], [ -90.09022, 29.98397 ] ], [ [ -90.08318, 29.98904 ], [ -90.08672, 29.98921 ] ], [ [ -90.08672, 29.98921 ], [ -90.086717, 29.989255 ] ], [ [ -90.08414, 29.98897 ], [ -90.084195, 29.98889 ] ], [ [ -90.08414, 29.98897 ], [ -90.08079, 29.98882 ] ], [ [ -90.08318, 29.98904 ], [ -90.083179, 29.989111 ] ], [ [ -90.08065, 29.98891 ], [ -90.08318, 29.98904 ] ], [ [ -90.08079, 29.98882 ], [ -90.080853, 29.988735 ] ], [ [ -90.08079, 29.98882 ], [ -90.07862, 29.98871 ] ], [ [ -90.08065, 29.98891 ], [ -90.080647, 29.988997 ] ], [ [ -90.07921, 29.98884 ], [ -90.08065, 29.98891 ] ], [ [ -90.07921, 29.98884 ], [ -90.079205, 29.988923 ] ], [ [ -90.07794, 29.98879 ], [ -90.07921, 29.98884 ] ], [ [ -90.07862, 29.98871 ], [ -90.078622, 29.988619 ] ], [ [ -90.07862, 29.98871 ], [ -90.07553, 29.98853 ] ], [ [ -90.07794, 29.98879 ], [ -90.077939, 29.988866 ] ], [ [ -90.07462, 29.98878 ], [ -90.07553, 29.98866 ], [ -90.07794, 29.98879 ] ], [ [ -90.07553, 29.98853 ], [ -90.075561, 29.988445 ] ], [ [ -90.07553, 29.98853 ], [ -90.07474, 29.98822 ], [ -90.07311, 29.9892 ] ], [ [ -90.07282, 29.98955 ], [ -90.07402, 29.98882 ], [ -90.07462, 29.98878 ] ], [ [ -90.07462, 29.98878 ], [ -90.074619, 29.988783 ] ], [ [ -90.07311, 29.9892 ], [ -90.07085, 29.99063 ] ], [ [ -90.07311, 29.9892 ], [ -90.073096, 29.989178 ] ], [ [ -90.07075, 29.99081 ], [ -90.07282, 29.98955 ] ], [ [ -90.07282, 29.98955 ], [ -90.072819, 29.989548 ] ], [ [ -90.07085, 29.99063 ], [ -90.06955, 29.99138 ] ], [ [ -90.07085, 29.99063 ], [ -90.070813, 29.990576 ] ], [ [ -90.07075, 29.99081 ], [ -90.070776, 29.990838 ] ], [ [ -90.06946, 29.9916 ], [ -90.07075, 29.99081 ] ], [ [ -90.06955, 29.99138 ], [ -90.06393, 29.99478 ] ], [ [ -90.06955, 29.99138 ], [ -90.069531, 29.991348 ] ], [ [ -90.06946, 29.9916 ], [ -90.06946, 29.991592 ] ], [ [ -90.06696, 29.99309 ], [ -90.06946, 29.9916 ] ], [ [ -90.06696, 29.99309 ], [ -90.06698, 29.9931 ] ], [ [ -90.06592, 29.99372 ], [ -90.06696, 29.99309 ] ], [ [ -90.06592, 29.99372 ], [ -90.065925, 29.993736 ] ], [ [ -90.06379, 29.99501 ], [ -90.06592, 29.99372 ] ], [ [ -90.06393, 29.99478 ], [ -90.0626, 29.99566 ] ], [ [ -90.06393, 29.99478 ], [ -90.063885, 29.994724 ] ], [ [ -90.06379, 29.99501 ], [ -90.063796, 29.995052 ] ], [ [ -90.06276, 29.99567 ], [ -90.06379, 29.99501 ] ], [ [ -90.06276, 29.99567 ], [ -90.062784, 29.995688 ] ], [ [ -90.06147, 29.99722 ], [ -90.06276, 29.99567 ] ], [ [ -90.0626, 29.99566 ], [ -90.06171, 29.99673 ] ], [ [ -90.0626, 29.99566 ], [ -90.062539, 29.995623 ] ], [ [ -90.06171, 29.99673 ], [ -90.06077, 29.99785 ] ], [ [ -90.06171, 29.99673 ], [ -90.061633, 29.99668 ] ], [ [ -90.06147, 29.99722 ], [ -90.061486, 29.997226 ] ], [ [ -90.06095, 29.99784 ], [ -90.06147, 29.99722 ] ], [ [ -90.06095, 29.99784 ], [ -90.060965, 29.997896 ] ], [ [ -90.05893, 29.99999 ], [ -90.059715, 29.999343 ], [ -90.06095, 29.99784 ] ], [ [ -90.06077, 29.99785 ], [ -90.05951, 29.99935 ] ], [ [ -90.06077, 29.99785 ], [ -90.060741, 29.997768 ] ], [ [ -90.05951, 29.99935 ], [ -90.05873, 29.99999 ] ], [ [ -90.05951, 29.99935 ], [ -90.059476, 29.999326 ] ], [ [ -90.05893, 29.99999 ], [ -90.058982, 30.000047 ] ], [ [ -90.05786, 30.0008 ], [ -90.05893, 29.99999 ] ], [ [ -90.05873, 29.99999 ], [ -90.0579, 30.00063 ] ], [ [ -90.05873, 29.99999 ], [ -90.058686, 29.999945 ] ], [ [ -90.05786, 30.0008 ], [ -90.057911, 30.000854 ] ], [ [ -90.0579, 30.00063 ], [ -90.05646, 30.00171 ] ], [ [ -90.0579, 30.00063 ], [ -90.057845, 30.00058 ] ], [ [ -90.05668, 30.00171 ], [ -90.05786, 30.0008 ] ], [ [ -90.05668, 30.00171 ], [ -90.056719, 30.001761 ] ], [ [ -90.05476, 30.00263 ], [ -90.05668, 30.00171 ] ], [ [ -90.05646, 30.00171 ], [ -90.05519, 30.00232 ] ], [ [ -90.05646, 30.00171 ], [ -90.05641, 30.001653 ] ], [ [ -90.05519, 30.00232 ], [ -90.05395, 30.00275 ], [ -90.05271, 30.00285 ] ], [ [ -90.05519, 30.00232 ], [ -90.05515, 30.002253 ] ], [ [ -90.05476, 30.00263 ], [ -90.054782, 30.002679 ] ], [ [ -90.05297, 30.00298 ], [ -90.05476, 30.00263 ] ], [ [ -90.05297, 30.00298 ], [ -90.052975, 30.003032 ] ], [ [ -90.05001, 30.00299 ], [ -90.05297, 30.00298 ] ], [ [ -90.05271, 30.00285 ], [ -90.05271, 30.002793 ] ], [ [ -90.05271, 30.00285 ], [ -90.050891, 30.002864 ], [ -90.050402, 30.002754 ], [ -90.04807, 30.00297 ] ], [ [ -90.05001, 30.00299 ], [ -90.050016, 30.003026 ] ], [ [ -90.04789, 30.00309 ], [ -90.05001, 30.00299 ] ], [ [ -90.04807, 30.00297 ], [ -90.048077, 30.002902 ] ], [ [ -90.04807, 30.00297 ], [ -90.04638, 30.00269 ] ], [ [ -90.04789, 30.00309 ], [ -90.047887, 30.003127 ] ], [ [ -90.0463, 30.00276 ], [ -90.04789, 30.00309 ] ], [ [ -90.04638, 30.00269 ], [ -90.046402, 30.00261 ] ], [ [ -90.04638, 30.00269 ], [ -90.04452, 30.00271 ] ], [ [ -90.0463, 30.00276 ], [ -90.046285, 30.002822 ] ], [ [ -90.04427, 30.00282 ], [ -90.0463, 30.00276 ] ], [ [ -90.04452, 30.00271 ], [ -90.04292, 30.00286 ], [ -90.04023, 30.00376 ] ], [ [ -90.04452, 30.00271 ], [ -90.044514, 30.002621 ] ], [ [ -90.04427, 30.00282 ], [ -90.044277, 30.002865 ] ], [ [ -90.04252, 30.00309 ], [ -90.04427, 30.00282 ] ], [ [ -90.04252, 30.00309 ], [ -90.042546, 30.003173 ] ], [ [ -90.03991, 30.00402 ], [ -90.04252, 30.00309 ] ], [ [ -90.04023, 30.00376 ], [ -90.038865, 30.004265 ], [ -90.038806, 30.004187 ], [ -90.03876, 30.004317 ], [ -90.037886, 30.004671 ], [ -90.037667, 30.004625 ], [ -90.037695, 30.004718 ], [ -90.033244, 30.00643 ], [ -90.029768, 30.007489 ], [ -90.029961, 30.007824 ], [ -90.031828, 30.007276 ], [ -90.03991, 30.00402 ] ], [ [ -90.04023, 30.00376 ], [ -90.040197, 30.003695 ] ], [ [ -90.03991, 30.00402 ], [ -90.039948, 30.004092 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "62-O", "agency_id": "1", "route_short_name": "62-O", "route_long_name": "Morrison OWL", "route_type": 3, "route_color": "#1f2d84", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.073164929577473, 29.964214366197194 ], [ -90.06159, 29.97711 ], [ -90.05473, 29.98281 ], [ -90.05385, 29.98369 ], [ -90.05298, 29.9853 ], [ -90.05237, 29.98794 ], [ -90.05181, 29.98909 ], [ -90.04487, 29.9969 ], [ -90.04208, 29.99944 ], [ -90.0396, 30.00116 ], [ -90.03531, 30.00272 ], [ -90.03544, 30.00361 ], [ -90.03565, 30.00408 ] ], [ [ -90.03565, 30.00408 ], [ -90.03665, 30.0036 ], [ -90.03674, 30.00311 ], [ -90.03711, 30.00281 ], [ -90.03924, 30.00162 ], [ -90.04173, 29.99999 ], [ -90.04333, 29.99872 ], [ -90.04487, 29.99726 ], [ -90.05205, 29.98915 ], [ -90.05265, 29.98785 ], [ -90.05331, 29.98509 ], [ -90.05412, 29.98373 ], [ -90.0615, 29.97748 ], [ -90.07155, 29.96622 ], [ -90.07204, 29.96599 ], [ -90.07321, 29.96589 ], [ -90.07351, 29.96571 ], [ -90.07415, 29.96489 ], [ -90.073164929577473, 29.964214366197194 ] ], [ [ -90.07198, 29.95798 ], [ -90.07489, 29.95471 ], [ -90.0787, 29.95642 ], [ -90.07899, 29.95689 ], [ -90.07893, 29.95729 ], [ -90.07851, 29.95778 ], [ -90.0781, 29.95868 ], [ -90.073164929577473, 29.964214366197194 ] ], [ [ -90.073164929577473, 29.964214366197194 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ], [ [ -90.03374, 30.00541 ], [ -90.03357, 30.00507 ], [ -90.03565, 30.00408 ] ], [ [ -90.0341, 30.00612 ], [ -90.030758, 30.007358 ], [ -90.02078, 30.00978 ], [ -90.02088, 30.01033 ] ], [ [ -90.02094, 30.0101 ], [ -90.02092, 30.00989 ], [ -90.02155, 30.00972 ], [ -90.03166, 30.00721 ], [ -90.03416, 30.00626 ], [ -90.0341, 30.00612 ] ], [ [ -90.0341, 30.00612 ], [ -90.0339, 30.00572 ] ], [ [ -90.0339, 30.00572 ], [ -90.033825, 30.005795 ] ], [ [ -90.0339, 30.00572 ], [ -90.03387, 30.00567 ] ], [ [ -90.033804096385524, 30.005538192771077 ], [ -90.03387, 30.00567 ] ], [ [ -90.03387, 30.00567 ], [ -90.0338, 30.00554 ] ], [ [ -90.033804096385524, 30.005538192771077 ], [ -90.033834, 30.005525 ] ], [ [ -90.0338, 30.00554 ], [ -90.033804096385524, 30.005538192771077 ] ], [ [ -90.03374, 30.00541 ], [ -90.033804096385524, 30.005538192771077 ] ], [ [ -90.0338, 30.00554 ], [ -90.03374, 30.00541 ] ], [ [ -90.02434, 30.02588 ], [ -90.024261, 30.025901 ] ], [ [ -90.02434, 30.02588 ], [ -90.02438, 30.02599 ], [ -90.02082, 30.02704 ] ], [ [ -90.02365, 30.02397 ], [ -90.02434, 30.02588 ] ], [ [ -90.0242, 30.02523 ], [ -90.024266, 30.025257 ] ], [ [ -90.02363, 30.02649 ], [ -90.02456, 30.02622 ], [ -90.0242, 30.02523 ] ], [ [ -90.0242, 30.02523 ], [ -90.02179, 30.0186 ] ], [ [ -90.02363, 30.02649 ], [ -90.023661, 30.026566 ] ], [ [ -90.02365, 30.02397 ], [ -90.023584, 30.02398 ] ], [ [ -90.02292, 30.022 ], [ -90.02365, 30.02397 ] ], [ [ -90.0208, 30.02733 ], [ -90.02363, 30.02649 ] ], [ [ -90.02292, 30.022 ], [ -90.022858, 30.022017 ] ], [ [ -90.02215, 30.01989 ], [ -90.02292, 30.022 ] ], [ [ -90.02215, 30.01989 ], [ -90.02209, 30.019908 ] ], [ [ -90.02161, 30.01824 ], [ -90.02215, 30.01989 ] ], [ [ -90.02179, 30.0186 ], [ -90.021836, 30.018586 ] ], [ [ -90.02179, 30.0186 ], [ -90.02154, 30.0163 ] ], [ [ -90.02161, 30.01824 ], [ -90.021569, 30.01824 ] ], [ [ -90.021006315674484, 30.012416140360443 ], [ -90.02121, 30.01304 ], [ -90.02127, 30.0137 ], [ -90.02114, 30.014271 ], [ -90.02133, 30.014509 ], [ -90.02161, 30.01824 ] ], [ [ -90.02154, 30.0163 ], [ -90.0216, 30.016292 ] ], [ [ -90.02154, 30.0163 ], [ -90.02135, 30.01439 ] ], [ [ -90.02135, 30.01439 ], [ -90.021412, 30.014387 ] ], [ [ -90.02135, 30.01439 ], [ -90.02116, 30.01241 ] ], [ [ -90.02116, 30.01241 ], [ -90.021239, 30.012418 ] ], [ [ -90.02116, 30.01241 ], [ -90.02094, 30.0101 ] ], [ [ -90.021006315674484, 30.012416140360443 ], [ -90.02096, 30.01242 ], [ -90.020957, 30.012361 ], [ -90.021006315674484, 30.012416140360443 ] ], [ [ -90.02088, 30.01033 ], [ -90.021006315674484, 30.012416140360443 ] ], [ [ -90.02094, 30.0101 ], [ -90.020993, 30.010096 ] ], [ [ -90.02088, 30.01033 ], [ -90.020829, 30.010331 ] ], [ [ -90.02082, 30.02704 ], [ -90.01914, 30.0275 ], [ -90.01767, 30.02763 ], [ -90.01687, 30.02826 ], [ -90.01625, 30.028337 ], [ -90.014385, 30.028895 ], [ -90.01414, 30.02907 ], [ -90.008582, 30.030856 ], [ -90.00152, 30.03354 ] ], [ [ -90.02082, 30.02704 ], [ -90.020798, 30.026987 ] ], [ [ -90.0208, 30.02733 ], [ -90.020801, 30.027416 ] ], [ [ -90.01626, 30.02867 ], [ -90.0208, 30.02733 ] ], [ [ -90.01626, 30.02867 ], [ -90.016277, 30.028719 ] ], [ [ -90.01237, 30.02991 ], [ -90.01626, 30.02867 ] ], [ [ -90.01237, 30.02991 ], [ -90.012394, 30.029969 ] ], [ [ -90.00965, 30.03083 ], [ -90.01237, 30.02991 ] ], [ [ -90.00965, 30.03083 ], [ -90.009685, 30.030906 ] ], [ [ -90.00677, 30.03182 ], [ -90.00965, 30.03083 ] ], [ [ -90.00478, 30.03257 ], [ -90.00677, 30.03182 ] ], [ [ -90.00677, 30.03182 ], [ -90.006743, 30.031936 ] ], [ [ -90.00478, 30.03257 ], [ -90.004816, 30.032656 ] ], [ [ -90.00331, 30.03312 ], [ -90.00478, 30.03257 ] ], [ [ -90.00331, 30.03312 ], [ -90.003345, 30.033185 ] ], [ [ -90.00178, 30.03369 ], [ -90.00331, 30.03312 ] ], [ [ -89.99937, 30.03459 ], [ -90.00178, 30.03369 ] ], [ [ -90.00178, 30.03369 ], [ -90.00176, 30.033786 ] ], [ [ -90.00152, 30.03354 ], [ -89.996766695029748, 30.035353008364151 ] ], [ [ -90.00152, 30.03354 ], [ -90.001488, 30.033483 ] ], [ [ -89.99937, 30.03459 ], [ -89.999401, 30.034649 ] ], [ [ -89.996634304239393, 30.035739459432801 ], [ -89.99937, 30.03459 ] ], [ [ -89.996766695029748, 30.035353008364151 ], [ -89.995615, 30.033421 ], [ -89.995549, 30.033055 ] ], [ [ -89.996634304239393, 30.035739459432801 ], [ -89.99692, 30.035617 ], [ -89.996766695029748, 30.035353008364151 ] ], [ [ -89.996766695029748, 30.035353008364151 ], [ -89.995605, 30.03335 ], [ -89.995549, 30.033055 ] ], [ [ -89.995828235294155, 30.036080705882334 ], [ -89.996634304239393, 30.035739459432801 ] ], [ [ -89.995828235294155, 30.036080705882334 ], [ -89.996592, 30.035889 ], [ -89.996634304239393, 30.035739459432801 ] ], [ [ -89.99647668161829, 30.035488191732618 ], [ -89.994331636871408, 30.036418508379928 ] ], [ [ -89.99647668161829, 30.035488191732618 ], [ -89.996484, 30.035502 ], [ -89.994331636871408, 30.036418508379928 ] ], [ [ -89.995198439024534, 30.033057121951515 ], [ -89.99647668161829, 30.035488191732618 ] ], [ [ -89.995198439024534, 30.033057121951515 ], [ -89.99647668161829, 30.035488191732618 ] ], [ [ -89.993392049999983, 30.037104758333331 ], [ -89.995828235294155, 30.036080705882334 ] ], [ [ -89.993392049999983, 30.037104758333331 ], [ -89.995828235294155, 30.036080705882334 ] ], [ [ -89.995549, 30.033055 ], [ -89.995114341798939, 30.032424176719562 ] ], [ [ -89.995549, 30.033055 ], [ -89.99538, 30.032965 ], [ -89.995114341798939, 30.032424176719562 ] ], [ [ -89.994804488805102, 30.032308356236044 ], [ -89.995198439024534, 30.033057121951515 ] ], [ [ -89.994804488805102, 30.032308356236044 ], [ -89.995198439024534, 30.033057121951515 ] ], [ [ -89.995114341798939, 30.032424176719562 ], [ -89.994978914858095, 30.032227210350573 ] ], [ [ -89.995114341798939, 30.032424176719562 ], [ -89.994978914858095, 30.032227210350573 ] ], [ [ -89.994978914858095, 30.032227210350573 ], [ -89.994804488805102, 30.032308356236044 ] ], [ [ -89.994978914858095, 30.032227210350573 ], [ -89.994804488805102, 30.032308356236044 ] ], [ [ -89.994331636871408, 30.036418508379928 ], [ -89.993485410071941, 30.036768201438822 ] ], [ [ -89.994331636871408, 30.036418508379928 ], [ -89.993485410071941, 30.036768201438822 ] ], [ [ -89.993485410071941, 30.036768201438822 ], [ -89.993260644014612, 30.036866398327238 ] ], [ [ -89.993485410071941, 30.036768201438822 ], [ -89.993260644014612, 30.036866398327238 ] ], [ [ -89.989855780938825, 30.038743671408255 ], [ -89.993392049999983, 30.037104758333331 ] ], [ [ -89.993260644014612, 30.036866398327238 ], [ -89.993392049999983, 30.037104758333331 ] ], [ [ -89.993260644014612, 30.036866398327238 ], [ -89.99318, 30.0369 ] ], [ [ -89.99318, 30.0369 ], [ -89.98976, 30.03839 ] ], [ [ -89.99318, 30.0369 ], [ -89.99315, 30.036852 ] ], [ [ -89.989855780938825, 30.038743671408255 ], [ -89.98986, 30.03875 ], [ -89.989819, 30.038773 ], [ -89.989855780938825, 30.038743671408255 ] ], [ [ -89.98825892016238, 30.039378380243573 ], [ -89.98826, 30.03938 ], [ -89.9891, 30.03899 ], [ -89.9897, 30.0387 ], [ -89.9898, 30.03866 ], [ -89.989855780938825, 30.038743671408255 ] ], [ [ -89.98976, 30.03839 ], [ -89.98838, 30.03899 ] ], [ [ -89.98976, 30.03839 ], [ -89.98972, 30.038328 ] ], [ [ -89.98838, 30.03899 ], [ -89.988252143042899, 30.039044795838748 ] ], [ [ -89.98838, 30.03899 ], [ -89.988342, 30.038922 ] ], [ [ -89.987608, 30.039752 ], [ -89.98825892016238, 30.039378380243573 ] ], [ [ -89.98825892016238, 30.039378380243573 ], [ -89.988407, 30.039311 ], [ -89.988252143042899, 30.039044795838748 ] ], [ [ -89.98808, 30.03908 ], [ -89.98825892016238, 30.039378380243573 ] ], [ [ -89.988252143042899, 30.039044795838748 ], [ -89.988051805309738, 30.038700115044239 ] ], [ [ -89.988252143042899, 30.039044795838748 ], [ -89.988051805309738, 30.038700115044239 ] ], [ [ -89.98808, 30.03908 ], [ -89.9829, 30.04156 ] ], [ [ -89.98801, 30.03898 ], [ -89.98808, 30.03908 ] ], [ [ -89.988051805309738, 30.038700115044239 ], [ -89.9878, 30.03766 ], [ -89.987579827956992, 30.037124698924739 ] ], [ [ -89.988051805309738, 30.038700115044239 ], [ -89.987579827956992, 30.037124698924739 ] ], [ [ -89.98801, 30.03898 ], [ -89.987945, 30.039013 ] ], [ [ -89.98714, 30.03677 ], [ -89.98751, 30.03746 ], [ -89.98801, 30.03898 ] ], [ [ -89.987608, 30.039752 ], [ -89.98764, 30.0398 ], [ -89.987572, 30.039836 ], [ -89.987608, 30.039752 ] ], [ [ -89.98541, 30.04072 ], [ -89.987608, 30.039752 ] ], [ [ -89.987579827956992, 30.037124698924739 ], [ -89.987001, 30.03605 ], [ -89.986781, 30.03572 ], [ -89.98655, 30.03586 ], [ -89.986890852482773, 30.036355560347964 ] ], [ [ -89.987579827956992, 30.037124698924739 ], [ -89.9871, 30.03627 ], [ -89.986890852482773, 30.036355560347964 ] ], [ [ -89.987084481358735, 30.036690687655341 ], [ -89.98714, 30.03677 ] ], [ [ -89.987084481358735, 30.036690687655341 ], [ -89.98714, 30.03677 ] ], [ [ -89.986890852482773, 30.036355560347964 ], [ -89.987084481358735, 30.036690687655341 ] ], [ [ -89.986890852482773, 30.036355560347964 ], [ -89.987084481358735, 30.036690687655341 ] ], [ [ -89.98541, 30.04072 ], [ -89.985444, 30.040786 ] ], [ [ -89.98303, 30.04195 ], [ -89.98541, 30.04072 ] ], [ [ -89.98303, 30.04195 ], [ -89.983068, 30.042017 ] ], [ [ -89.965355709662205, 30.051522576904958 ], [ -89.969004, 30.049104 ], [ -89.972419, 30.047149 ], [ -89.975778, 30.045381 ], [ -89.976513, 30.045038 ], [ -89.9767, 30.04506 ], [ -89.979843, 30.043423 ], [ -89.979983, 30.043452 ], [ -89.98303, 30.04195 ] ], [ [ -89.9829, 30.04156 ], [ -89.98035, 30.0428 ] ], [ [ -89.9829, 30.04156 ], [ -89.982868, 30.041378 ] ], [ [ -89.98035, 30.0428 ], [ -89.972418, 30.046743 ], [ -89.968806, 30.048771 ], [ -89.96528, 30.05094 ], [ -89.96328, 30.04859 ], [ -89.963080572597121, 30.048719627811863 ] ], [ [ -89.98035, 30.0428 ], [ -89.98028, 30.04265 ], [ -89.980166, 30.042767 ] ], [ [ -89.96977, 30.05684 ], [ -89.969701, 30.056883 ] ], [ [ -89.96977, 30.05684 ], [ -89.96991, 30.05701 ], [ -89.96895, 30.05759 ] ], [ [ -89.96871, 30.05551 ], [ -89.96977, 30.05684 ] ], [ [ -89.96895, 30.05759 ], [ -89.96665, 30.059 ] ], [ [ -89.96895, 30.05759 ], [ -89.968905, 30.057534 ] ], [ [ -89.96871, 30.05551 ], [ -89.968632, 30.055525 ] ], [ [ -89.96744, 30.054 ], [ -89.96871, 30.05551 ] ], [ [ -89.96744, 30.054 ], [ -89.967395, 30.054034 ] ], [ [ -89.965355709662205, 30.051522576904958 ], [ -89.96744, 30.054 ] ], [ [ -89.96665, 30.059 ], [ -89.96441, 30.06043 ] ], [ [ -89.96665, 30.059 ], [ -89.966607, 30.058952 ] ], [ [ -89.964988985112697, 30.051106768183761 ], [ -89.965355709662205, 30.051522576904958 ] ], [ [ -89.965, 30.0511 ], [ -89.965355709662205, 30.051522576904958 ] ], [ [ -89.965, 30.0511 ], [ -89.964988985112697, 30.051106768183761 ] ], [ [ -89.963102, 30.048746 ], [ -89.96413, 30.04997 ], [ -89.965, 30.0511 ] ], [ [ -89.964988985112697, 30.051106768183761 ], [ -89.964917, 30.051151 ] ], [ [ -89.963102, 30.048746 ], [ -89.964988985112697, 30.051106768183761 ] ], [ [ -89.96441, 30.06043 ], [ -89.96213, 30.06194 ] ], [ [ -89.96441, 30.06043 ], [ -89.964351, 30.060362 ] ], [ [ -89.963080572597121, 30.048719627811863 ], [ -89.963102, 30.048746 ] ], [ [ -89.963080572597121, 30.048719627811863 ], [ -89.963102, 30.048746 ] ], [ [ -89.961975234899313, 30.047417382550329 ], [ -89.962924, 30.048694 ], [ -89.963080572597121, 30.048719627811863 ] ], [ [ -89.96213, 30.06194 ], [ -89.95974, 30.06356 ] ], [ [ -89.96213, 30.06194 ], [ -89.962065, 30.061865 ] ], [ [ -89.94029, 30.06811 ], [ -89.93987, 30.06413 ], [ -89.9402, 30.06397 ], [ -89.94015, 30.06257 ], [ -89.94046, 30.06195 ], [ -89.94325, 30.058 ], [ -89.94397, 30.05744 ], [ -89.95767, 30.04878 ], [ -89.958914, 30.048079 ], [ -89.959109, 30.04811 ], [ -89.9608, 30.04727 ], [ -89.96122, 30.04723 ], [ -89.9617, 30.04753 ], [ -89.961975234899313, 30.047417382550329 ] ], [ [ -89.961975234899313, 30.047417382550329 ], [ -89.9622, 30.04727 ], [ -89.96184, 30.04685 ], [ -89.96191, 30.04642 ], [ -89.96408, 30.04448 ], [ -89.97208, 30.03942 ], [ -89.97655, 30.03744 ], [ -89.97027, 30.02887 ], [ -89.9701, 30.02896 ], [ -89.97225, 30.03202 ], [ -89.97216, 30.032174 ], [ -89.972307, 30.032098 ], [ -89.972755, 30.032737 ], [ -89.9722, 30.033004 ], [ -89.971462, 30.033161 ], [ -89.968962, 30.032752 ], [ -89.967536, 30.032817 ], [ -89.963308, 30.03369 ], [ -89.961957, 30.034275 ], [ -89.954805, 30.038801 ], [ -89.961975234899313, 30.047417382550329 ] ], [ [ -89.95974, 30.06356 ], [ -89.95616, 30.06608 ] ], [ [ -89.95974, 30.06356 ], [ -89.959685, 30.063503 ] ], [ [ -89.95616, 30.06608 ], [ -89.95358, 30.06802 ] ], [ [ -89.95616, 30.06608 ], [ -89.956112, 30.066028 ] ], [ [ -89.95358, 30.06802 ], [ -89.95346, 30.06812 ], [ -89.95187, 30.06651 ] ], [ [ -89.95358, 30.06802 ], [ -89.953509, 30.067955 ] ], [ [ -89.95187, 30.06651 ], [ -89.951896, 30.066489 ] ], [ [ -89.95187, 30.06651 ], [ -89.95079, 30.06543 ] ], [ [ -89.95079, 30.06543 ], [ -89.950834, 30.065398 ] ], [ [ -89.95079, 30.06543 ], [ -89.94917, 30.06658 ] ], [ [ -89.94917, 30.06658 ], [ -89.9479, 30.06756 ] ], [ [ -89.94917, 30.06658 ], [ -89.949129, 30.066541 ] ], [ [ -89.9479, 30.06756 ], [ -89.94681, 30.0684 ] ], [ [ -89.9479, 30.06756 ], [ -89.947857, 30.06752 ] ], [ [ -89.94681, 30.0684 ], [ -89.94571, 30.06927 ] ], [ [ -89.94681, 30.0684 ], [ -89.946749, 30.06833 ] ], [ [ -89.94571, 30.06927 ], [ -89.94408, 30.07057 ] ], [ [ -89.94571, 30.06927 ], [ -89.94566, 30.069221 ] ], [ [ -89.94408, 30.07057 ], [ -89.94288, 30.07155 ], [ -89.94224, 30.07184 ] ], [ [ -89.94408, 30.07057 ], [ -89.944047, 30.070538 ] ], [ [ -89.94224, 30.07184 ], [ -89.942262, 30.071794 ] ], [ [ -89.94224, 30.07184 ], [ -89.94151, 30.072 ], [ -89.94069, 30.07199 ] ], [ [ -89.94069, 30.07199 ], [ -89.940773, 30.071972 ] ], [ [ -89.94069, 30.07199 ], [ -89.94044, 30.06989 ] ], [ [ -89.94044, 30.06989 ], [ -89.940506, 30.069888 ] ], [ [ -89.94044, 30.06989 ], [ -89.94029, 30.06811 ] ], [ [ -89.94029, 30.06811 ], [ -89.940372, 30.068109 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "48", "agency_id": "1", "route_short_name": "48", "route_long_name": "Canal Streetcar - City Park\/Muse", "route_type": 0, "route_color": "#87cb25", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.10065610526317, 29.974594115789458 ], [ -90.10067508582857, 29.97457206218013 ] ], [ [ -90.10065610526317, 29.974594115789458 ], [ -90.10067508582857, 29.97457206218013 ] ], [ [ -90.10067508582857, 29.97457206218013 ], [ -90.100430895734576, 29.974424537440772 ] ], [ [ -90.10067508582857, 29.97457206218013 ], [ -90.10043061874579, 29.97442487946174 ] ], [ [ -90.099503822714553, 29.975685318559673 ], [ -90.10065610526317, 29.974594115789458 ] ], [ [ -90.099503822714553, 29.975685318559673 ], [ -90.10065610526317, 29.974594115789458 ] ], [ [ -90.100437, 29.974417 ], [ -90.100430048275854, 29.974424028965519 ] ], [ [ -90.100437, 29.974417 ], [ -90.100430895734576, 29.974424537440772 ] ], [ [ -90.100271888969772, 29.974320847105925 ], [ -90.100437, 29.974417 ] ], [ [ -90.100430895734576, 29.974424537440772 ], [ -90.10043061874579, 29.97442487946174 ] ], [ [ -90.100430895734576, 29.974424537440772 ], [ -90.100430048275854, 29.974424028965519 ] ], [ [ -90.10043061874579, 29.97442487946174 ], [ -90.098996, 29.976037 ] ], [ [ -90.10043061874579, 29.97442487946174 ], [ -90.100429735242997, 29.974424345476532 ] ], [ [ -90.100430048275854, 29.974424028965519 ], [ -90.100429735242997, 29.974424345476532 ] ], [ [ -90.100430048275854, 29.974424028965519 ], [ -90.100315, 29.974355 ] ], [ [ -90.100429735242997, 29.974424345476532 ], [ -90.099005, 29.975866 ], [ -90.098996, 29.976037 ] ], [ [ -90.100429735242997, 29.974424345476532 ], [ -90.100315, 29.974355 ] ], [ [ -90.100315, 29.974355 ], [ -90.100271888969772, 29.974320847105925 ] ], [ [ -90.100271888969772, 29.974320847105925 ], [ -90.09851, 29.97298 ] ], [ [ -90.09855, 29.97328 ], [ -90.100271888969772, 29.974320847105925 ] ], [ [ -90.099305, 29.975875 ], [ -90.099503822714553, 29.975685318559673 ] ], [ [ -90.099305, 29.975875 ], [ -90.099503822714553, 29.975685318559673 ] ], [ [ -90.099297627118617, 29.975882033898319 ], [ -90.099305, 29.975875 ] ], [ [ -90.099297627118617, 29.975882033898319 ], [ -90.099305, 29.975875 ] ], [ [ -90.09897, 29.976219 ], [ -90.099297627118617, 29.975882033898319 ] ], [ [ -90.09897, 29.976219 ], [ -90.099297627118617, 29.975882033898319 ] ], [ [ -90.098996, 29.976037 ], [ -90.09879, 29.97607 ], [ -90.097428, 29.977362 ], [ -90.097449, 29.977469 ] ], [ [ -90.098996, 29.976037 ], [ -90.097449, 29.977469 ] ], [ [ -90.09741, 29.97764 ], [ -90.09897, 29.976219 ] ], [ [ -90.09855, 29.97328 ], [ -90.098614, 29.973209 ] ], [ [ -90.095333570036672, 29.970951720272389 ], [ -90.09855, 29.97328 ] ], [ [ -90.09851, 29.97298 ], [ -90.098436, 29.973067 ] ], [ [ -90.09851, 29.97298 ], [ -90.09692, 29.97191 ] ], [ [ -90.097449, 29.977469 ], [ -90.09559, 29.97908 ] ], [ [ -90.097449, 29.977469 ], [ -90.095676, 29.979145 ] ], [ [ -90.09554, 29.97943 ], [ -90.09741, 29.97764 ] ], [ [ -90.09741, 29.97764 ], [ -90.097336, 29.977578 ] ], [ [ -90.09692, 29.97191 ], [ -90.096863, 29.971974 ] ], [ [ -90.09692, 29.97191 ], [ -90.09539, 29.97089 ] ], [ [ -90.095676, 29.979145 ], [ -90.094732117647141, 29.979880117646989 ] ], [ [ -90.09559, 29.97908 ], [ -90.095676, 29.979145 ] ], [ [ -90.09559, 29.97908 ], [ -90.094732117647141, 29.979880117646989 ] ], [ [ -90.09421, 29.98067 ], [ -90.09554, 29.97943 ] ], [ [ -90.09554, 29.97943 ], [ -90.095448, 29.979362 ] ], [ [ -90.09539, 29.97089 ], [ -90.095333570036672, 29.970951720272389 ] ], [ [ -90.09539, 29.97089 ], [ -90.09379, 29.96979 ] ], [ [ -90.095333570036672, 29.970951720272389 ], [ -90.095326, 29.97096 ] ], [ [ -90.09371934920874, 29.969869017332329 ], [ -90.095333570036672, 29.970951720272389 ] ], [ [ -90.094732117647141, 29.979880117646989 ], [ -90.094240941176452, 29.980339294117645 ] ], [ [ -90.094732117647141, 29.979880117646989 ], [ -90.094240941176452, 29.980339294117645 ] ], [ [ -90.094240941176452, 29.980339294117645 ], [ -90.0942368, 29.980343199999989 ] ], [ [ -90.094240941176452, 29.980339294117645 ], [ -90.0942368, 29.980343199999989 ] ], [ [ -90.0942368, 29.980343199999989 ], [ -90.094183711111114, 29.98039628888889 ] ], [ [ -90.0942368, 29.980343199999989 ], [ -90.094183711111114, 29.98039628888889 ] ], [ [ -90.090035, 29.983853 ], [ -90.08972, 29.98409 ], [ -90.08996, 29.98433 ], [ -90.09054, 29.98366 ], [ -90.0916, 29.98315 ], [ -90.09421, 29.98067 ] ], [ [ -90.09421, 29.98067 ], [ -90.094068, 29.98064 ] ], [ [ -90.094183711111114, 29.98039628888889 ], [ -90.0941, 29.98048 ] ], [ [ -90.094183711111114, 29.98039628888889 ], [ -90.094171, 29.980541 ] ], [ [ -90.094171, 29.980541 ], [ -90.091718599909413, 29.982743466243711 ] ], [ [ -90.0941, 29.98048 ], [ -90.094171, 29.980541 ] ], [ [ -90.0941, 29.98048 ], [ -90.091718599909413, 29.982743466243711 ] ], [ [ -90.09379, 29.96979 ], [ -90.09371934920874, 29.969869017332329 ] ], [ [ -90.09379, 29.96979 ], [ -90.09223, 29.96874 ] ], [ [ -90.09371934920874, 29.969869017332329 ], [ -90.093714, 29.969875 ] ], [ [ -90.092170454789127, 29.968801176586517 ], [ -90.09371934920874, 29.969869017332329 ] ], [ [ -90.09223, 29.96874 ], [ -90.092170454789127, 29.968801176586517 ] ], [ [ -90.09223, 29.96874 ], [ -90.0913, 29.96812 ] ], [ [ -90.092170454789127, 29.968801176586517 ], [ -90.092157, 29.968815 ] ], [ [ -90.091254447268909, 29.968179381238745 ], [ -90.092170454789127, 29.968801176586517 ] ], [ [ -90.091718599909413, 29.982743466243711 ], [ -90.090855208333338, 29.983369916666671 ] ], [ [ -90.091718599909413, 29.982743466243711 ], [ -90.090855208333338, 29.983369916666671 ] ], [ [ -90.0913, 29.96812 ], [ -90.091254447268909, 29.968179381238745 ] ], [ [ -90.0913, 29.96812 ], [ -90.08902, 29.96656 ] ], [ [ -90.091254447268909, 29.968179381238745 ], [ -90.091244, 29.968193 ] ], [ [ -90.088958408789324, 29.966629082033602 ], [ -90.091254447268909, 29.968179381238745 ] ], [ [ -90.090855208333338, 29.983369916666671 ], [ -90.09015, 29.98367 ], [ -90.090035, 29.983853 ] ], [ [ -90.090855208333338, 29.983369916666671 ], [ -90.09016, 29.98368 ], [ -90.090035, 29.983853 ] ], [ [ -90.08902, 29.96656 ], [ -90.088958408789324, 29.966629082033602 ] ], [ [ -90.08902, 29.96656 ], [ -90.08768, 29.96564 ] ], [ [ -90.088958408789324, 29.966629082033602 ], [ -90.088946, 29.966643 ] ], [ [ -90.082555556665696, 29.962310306308883 ], [ -90.08736, 29.965643 ], [ -90.088958408789324, 29.966629082033602 ] ], [ [ -90.08768, 29.96564 ], [ -90.087599, 29.965729 ] ], [ [ -90.08768, 29.96564 ], [ -90.0859, 29.96445 ] ], [ [ -90.0859, 29.96445 ], [ -90.085829, 29.964529 ] ], [ [ -90.0859, 29.96445 ], [ -90.08408, 29.96321 ] ], [ [ -90.08408, 29.96321 ], [ -90.084071, 29.963277 ] ], [ [ -90.08408, 29.96321 ], [ -90.08262, 29.96223 ] ], [ [ -90.08262, 29.96223 ], [ -90.082555556665696, 29.962310306308883 ] ], [ [ -90.08262, 29.96223 ], [ -90.08048, 29.96077 ] ], [ [ -90.082555556665696, 29.962310306308883 ], [ -90.082555, 29.962311 ] ], [ [ -90.06636, 29.95118 ], [ -90.06432, 29.9498 ], [ -90.06402, 29.94977 ], [ -90.06431, 29.9501 ], [ -90.064487, 29.950104 ], [ -90.06443, 29.95017 ], [ -90.072908, 29.955914 ], [ -90.073076, 29.955923 ], [ -90.074732, 29.957158 ], [ -90.07533, 29.957553 ], [ -90.075522, 29.957474 ], [ -90.075494, 29.957664 ], [ -90.082555556665696, 29.962310306308883 ] ], [ [ -90.08048, 29.96077 ], [ -90.080407, 29.960849 ] ], [ [ -90.08048, 29.96077 ], [ -90.07821, 29.95923 ] ], [ [ -90.07821, 29.95923 ], [ -90.078134, 29.959314 ] ], [ [ -90.07821, 29.95923 ], [ -90.075648, 29.957474 ], [ -90.075405, 29.957434 ], [ -90.075412, 29.957307 ], [ -90.07298, 29.95567 ] ], [ [ -90.07298, 29.95567 ], [ -90.072937, 29.955716 ] ], [ [ -90.07298, 29.95567 ], [ -90.0702, 29.9538 ] ], [ [ -90.0702, 29.9538 ], [ -90.070162, 29.953844 ] ], [ [ -90.0702, 29.9538 ], [ -90.06814, 29.9524 ] ], [ [ -90.06814, 29.9524 ], [ -90.068084, 29.952458 ] ], [ [ -90.06814, 29.9524 ], [ -90.06636, 29.95118 ] ], [ [ -90.06636, 29.95118 ], [ -90.066304, 29.951243 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "49", "agency_id": "1", "route_short_name": "49", "route_long_name": "UPT-Riverfront", "route_type": 0, "route_color": "#fdbb30", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.087931911290383, 29.965955217741975 ], [ -90.089092, 29.966714 ] ], [ [ -90.088946, 29.966643 ], [ -90.087931911290383, 29.965955217741975 ] ], [ [ -90.087931911290383, 29.965955217741975 ], [ -90.084071, 29.963277 ], [ -90.0825778, 29.962325399999987 ] ], [ [ -90.0825778, 29.962325399999987 ], [ -90.087931911290383, 29.965955217741975 ] ], [ [ -90.081914238938097, 29.961874761061971 ], [ -90.0825778, 29.962325399999987 ] ], [ [ -90.0825778, 29.962325399999987 ], [ -90.082421, 29.96222 ], [ -90.082018, 29.961946 ], [ -90.081914238938097, 29.961874761061971 ] ], [ [ -90.081914238938097, 29.961874761061971 ], [ -90.08175790109928, 29.961769000000263 ] ], [ [ -90.08175790109928, 29.961769000000263 ], [ -90.081914238938097, 29.961874761061971 ] ], [ [ -90.081742999999719, 29.961758880596815 ], [ -90.08175790109928, 29.961769000000263 ] ], [ [ -90.08175790109928, 29.961769000000263 ], [ -90.081742999999719, 29.961758880596815 ] ], [ [ -90.081742999999719, 29.961758880596815 ], [ -90.081571, 29.961641119402973 ] ], [ [ -90.081571, 29.961641119402973 ], [ -90.081742999999719, 29.961758880596815 ] ], [ [ -90.081556098901046, 29.961631 ], [ -90.081571, 29.961641119402973 ] ], [ [ -90.081571, 29.961641119402973 ], [ -90.081556098901046, 29.961631 ] ], [ [ -90.081556098901046, 29.961631 ], [ -90.081033999999818, 29.961276119402854 ] ], [ [ -90.081033999999818, 29.961276119402854 ], [ -90.081556098901046, 29.961631 ] ], [ [ -90.081019098901365, 29.961266000000183 ], [ -90.081033999999818, 29.961276119402854 ] ], [ [ -90.081033999999818, 29.961276119402854 ], [ -90.081019098901365, 29.961266000000183 ] ], [ [ -90.081019098901365, 29.961266000000183 ], [ -90.08016, 29.960665 ], [ -90.078134, 29.959314 ], [ -90.075528, 29.957468 ], [ -90.075499893254658, 29.957460230655755 ] ], [ [ -90.075499893254658, 29.957460230655755 ], [ -90.075494, 29.957664 ], [ -90.081019098901365, 29.961266000000183 ] ], [ [ -90.076253, 29.948886 ], [ -90.075766, 29.950583 ] ], [ [ -90.076253, 29.948886 ], [ -90.076215229508207, 29.949033147540952 ] ], [ [ -90.076215229508207, 29.949033147540952 ], [ -90.077493, 29.945675 ], [ -90.07788, 29.945456 ], [ -90.078413, 29.945538 ], [ -90.0784, 29.945436 ], [ -90.078191, 29.945407 ], [ -90.077619, 29.945467 ], [ -90.07727, 29.945648 ], [ -90.076967, 29.946122 ], [ -90.076873, 29.946754 ], [ -90.07627, 29.94846 ], [ -90.076253, 29.948886 ] ], [ [ -90.076211471910099, 29.94904778651691 ], [ -90.076215229508207, 29.949033147540952 ] ], [ [ -90.076215229508207, 29.949033147540952 ], [ -90.076211471910099, 29.94904778651691 ] ], [ [ -90.076211471910099, 29.94904778651691 ], [ -90.075766, 29.950583 ] ], [ [ -90.075759, 29.950997 ], [ -90.076211471910099, 29.94904778651691 ] ], [ [ -90.075766, 29.950583 ], [ -90.07559, 29.95084 ], [ -90.0755, 29.95236 ], [ -90.075007849206315, 29.953979396825414 ] ], [ [ -90.075766, 29.950583 ], [ -90.075582, 29.951127 ], [ -90.075598, 29.952005 ], [ -90.075544, 29.952249 ], [ -90.075007849206315, 29.953979396825414 ] ], [ [ -90.075063593417255, 29.954367930300009 ], [ -90.075724, 29.952319 ], [ -90.075759, 29.950997 ] ], [ [ -90.075063593417255, 29.954367930300009 ], [ -90.075275, 29.953899 ], [ -90.075677, 29.952516 ], [ -90.075809, 29.951972 ], [ -90.075759, 29.950997 ] ], [ [ -90.074938183653359, 29.95710998867553 ], [ -90.075499893254658, 29.957460230655755 ] ], [ [ -90.075499893254658, 29.957460230655755 ], [ -90.074938183653359, 29.95710998867553 ] ], [ [ -90.075059318653913, 29.954375799750732 ], [ -90.075063593417255, 29.954367930300009 ] ], [ [ -90.075059318653913, 29.954375799750732 ], [ -90.075063593417255, 29.954367930300009 ] ], [ [ -90.074776, 29.954679 ], [ -90.075059318653913, 29.954375799750732 ] ], [ [ -90.074776, 29.954679 ], [ -90.075059318653913, 29.954375799750732 ] ], [ [ -90.075007849206315, 29.953979396825414 ], [ -90.07497605780344, 29.954070724855516 ] ], [ [ -90.075007849206315, 29.953979396825414 ], [ -90.07497605780344, 29.954070724855516 ] ], [ [ -90.07497605780344, 29.954070724855516 ], [ -90.07462, 29.954599 ] ], [ [ -90.07497605780344, 29.954070724855516 ], [ -90.07462, 29.954599 ] ], [ [ -90.074938183653359, 29.95710998867553 ], [ -90.073679, 29.956209 ], [ -90.073708, 29.955981 ], [ -90.074626, 29.954933 ], [ -90.074776, 29.954679 ] ], [ [ -90.073458547738682, 29.956146841708545 ], [ -90.074938183653359, 29.95710998867553 ] ], [ [ -90.073458547738682, 29.956146841708545 ], [ -90.074776, 29.954679 ] ], [ [ -90.07462, 29.954599 ], [ -90.073370830770202, 29.955898501323592 ] ], [ [ -90.07462, 29.954599 ], [ -90.073370830770202, 29.955898501323592 ] ], [ [ -90.064487, 29.950104 ], [ -90.073458547738682, 29.956146841708545 ] ], [ [ -90.073370830770202, 29.955898501323592 ], [ -90.073317, 29.956047 ], [ -90.073458547738682, 29.956146841708545 ] ], [ [ -90.073370830770202, 29.955898501323592 ], [ -90.072937, 29.955716 ], [ -90.06814, 29.9524 ], [ -90.064487, 29.950104 ] ], [ [ -90.064487, 29.950104 ], [ -90.064073, 29.94984 ], [ -90.063926691681985, 29.949868070781946 ] ], [ [ -90.063926691681985, 29.949868070781946 ], [ -90.064487, 29.950104 ] ], [ [ -90.063926691681985, 29.949868070781946 ], [ -90.063857525423728, 29.94988113559323 ] ], [ [ -90.063857525423728, 29.94988113559323 ], [ -90.063926691681985, 29.949868070781946 ] ], [ [ -90.063857525423728, 29.94988113559323 ], [ -90.063427, 29.950008 ], [ -90.06369608659449, 29.952474507077341 ] ], [ [ -90.06369608659449, 29.952474507077341 ], [ -90.063549, 29.950109 ], [ -90.063567, 29.949992 ], [ -90.063857525423728, 29.94988113559323 ] ], [ [ -90.063703196293901, 29.952762449903048 ], [ -90.063415644578299, 29.954360935742962 ] ], [ [ -90.063415644578299, 29.954360935742962 ], [ -90.063703196293901, 29.952762449903048 ] ], [ [ -90.06369608659449, 29.952474507077341 ], [ -90.063703196293901, 29.952762449903048 ] ], [ [ -90.063703196293901, 29.952762449903048 ], [ -90.06369608659449, 29.952474507077341 ] ], [ [ -90.062828898270595, 29.955644002034578 ], [ -90.063415644578299, 29.954360935742962 ] ], [ [ -90.063415644578299, 29.954360935742962 ], [ -90.063348, 29.954706 ], [ -90.06319, 29.95511 ], [ -90.062828898270595, 29.955644002034578 ] ], [ [ -90.062828898270595, 29.955644002034578 ], [ -90.062651373134372, 29.955857017910382 ] ], [ [ -90.062651373134372, 29.955857017910382 ], [ -90.062828898270595, 29.955644002034578 ] ], [ [ -90.060857602897215, 29.95788588020234 ], [ -90.062651373134372, 29.955857017910382 ] ], [ [ -90.062651373134372, 29.955857017910382 ], [ -90.060857602897215, 29.95788588020234 ] ], [ [ -90.060857602897215, 29.95788588020234 ], [ -90.060704279187817, 29.958042775380708 ] ], [ [ -90.060704279187817, 29.958042775380708 ], [ -90.060857602897215, 29.95788588020234 ] ], [ [ -90.059230526315773, 29.959426842105266 ], [ -90.060704279187817, 29.958042775380708 ] ], [ [ -90.060704279187817, 29.958042775380708 ], [ -90.06038, 29.95848 ], [ -90.059230526315773, 29.959426842105266 ] ], [ [ -90.059230526315773, 29.959426842105266 ], [ -90.059083, 29.959525 ], [ -90.05716, 29.960899 ], [ -90.059121, 29.95953 ], [ -90.059230526315773, 29.959426842105266 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "57", "agency_id": "1", "route_short_name": "57", "route_long_name": "Franklin", "route_type": 3, "route_color": "#d6ed6b", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.123642, 29.9402 ], [ -90.124137, 29.940528 ] ], [ [ -90.123642, 29.9402 ], [ -90.12345, 29.94008 ] ], [ [ -90.12308, 29.93986 ], [ -90.123642, 29.9402 ] ], [ [ -90.12345, 29.94008 ], [ -90.123464, 29.94006 ] ], [ [ -90.12345, 29.94008 ], [ -90.12308, 29.93986 ] ], [ [ -90.12214, 29.93934 ], [ -90.12308, 29.93986 ] ], [ [ -90.12214, 29.93934 ], [ -90.12191, 29.93921 ] ], [ [ -90.12191, 29.93921 ], [ -90.12214, 29.93934 ] ], [ [ -90.1209, 29.93866 ], [ -90.12191, 29.93921 ] ], [ [ -90.120702460732971, 29.938556230366487 ], [ -90.1209, 29.93866 ] ], [ [ -90.1209, 29.93866 ], [ -90.1207, 29.93856 ] ], [ [ -90.120702460732971, 29.938556230366487 ], [ -90.120747, 29.938488 ] ], [ [ -90.1207, 29.93856 ], [ -90.120702460732971, 29.938556230366487 ] ], [ [ -90.12059, 29.9385 ], [ -90.120702460732971, 29.938556230366487 ] ], [ [ -90.1207, 29.93856 ], [ -90.12059, 29.9385 ] ], [ [ -90.12059, 29.9385 ], [ -90.12028, 29.93832 ] ], [ [ -90.12053, 29.93847 ], [ -90.12059, 29.9385 ] ], [ [ -90.12053, 29.93847 ], [ -90.1205, 29.938506 ] ], [ [ -90.12028, 29.93832 ], [ -90.12053, 29.93847 ] ], [ [ -90.11905, 29.9376 ], [ -90.12028, 29.93832 ] ], [ [ -90.11905, 29.9376 ], [ -90.11849, 29.93737 ] ], [ [ -90.11841, 29.93734 ], [ -90.11905, 29.9376 ] ], [ [ -90.11849, 29.93737 ], [ -90.11852, 29.937309 ] ], [ [ -90.11849, 29.93737 ], [ -90.11841, 29.93734 ] ], [ [ -90.1183, 29.93729 ], [ -90.11841, 29.93734 ] ], [ [ -90.11841, 29.93734 ], [ -90.11829779233382, 29.937294754973298 ] ], [ [ -90.1183, 29.93729 ], [ -90.11829779233382, 29.937294754973298 ] ], [ [ -90.11742, 29.93694 ], [ -90.1183, 29.93729 ] ], [ [ -90.11829779233382, 29.937294754973298 ], [ -90.118261, 29.937374 ] ], [ [ -90.11829779233382, 29.937294754973298 ], [ -90.11742, 29.93694 ] ], [ [ -90.11604, 29.93639 ], [ -90.11742, 29.93694 ] ], [ [ -90.11604, 29.93639 ], [ -90.11598, 29.93636 ] ], [ [ -90.1159, 29.93633 ], [ -90.11604, 29.93639 ] ], [ [ -90.11598, 29.93636 ], [ -90.115994, 29.936331 ] ], [ [ -90.11598, 29.93636 ], [ -90.11552, 29.93618 ] ], [ [ -90.1159, 29.93633 ], [ -90.115862, 29.936396 ] ], [ [ -90.11552, 29.93618 ], [ -90.1159, 29.93633 ] ], [ [ -90.11501, 29.93604 ], [ -90.11552, 29.93618 ] ], [ [ -90.114620866834173, 29.935946608040197 ], [ -90.11501, 29.93604 ] ], [ [ -90.11501, 29.93604 ], [ -90.11462, 29.93595 ] ], [ [ -90.114620866834173, 29.935946608040197 ], [ -90.114643, 29.93586 ] ], [ [ -90.11462, 29.93595 ], [ -90.114620866834173, 29.935946608040197 ] ], [ [ -90.11451, 29.93592 ], [ -90.114620866834173, 29.935946608040197 ] ], [ [ -90.11462, 29.93595 ], [ -90.11451, 29.93592 ] ], [ [ -90.11439, 29.93589 ], [ -90.11451, 29.93592 ] ], [ [ -90.11451, 29.93592 ], [ -90.114388863636364, 29.935893409090916 ] ], [ [ -90.11439, 29.93589 ], [ -90.114388863636364, 29.935893409090916 ] ], [ [ -90.11402, 29.93581 ], [ -90.11439, 29.93589 ] ], [ [ -90.114388863636364, 29.935893409090916 ], [ -90.114372, 29.935944 ] ], [ [ -90.114388863636364, 29.935893409090916 ], [ -90.11402, 29.93581 ] ], [ [ -90.11226, 29.93543 ], [ -90.11402, 29.93581 ] ], [ [ -90.11216, 29.9354 ], [ -90.11226, 29.93543 ] ], [ [ -90.11226, 29.93543 ], [ -90.112157172289457, 29.935409268606751 ] ], [ [ -90.11216, 29.9354 ], [ -90.112157172289457, 29.935409268606751 ] ], [ [ -90.111424409848922, 29.935259603753831 ], [ -90.11216, 29.9354 ] ], [ [ -90.112157172289457, 29.935409268606751 ], [ -90.112142, 29.935459 ] ], [ [ -90.112157172289457, 29.935409268606751 ], [ -90.111424409848922, 29.935259603753831 ] ], [ [ -90.111424409848922, 29.935259603753831 ], [ -90.111341, 29.935111 ], [ -90.111261384087797, 29.935228433470495 ] ], [ [ -90.111261384087797, 29.935228433470495 ], [ -90.111424409848922, 29.935259603753831 ] ], [ [ -90.111261384087797, 29.935228433470495 ], [ -90.111239508771945, 29.935224456140354 ] ], [ [ -90.111239508771945, 29.935224456140354 ], [ -90.111261384087797, 29.935228433470495 ] ], [ [ -90.111239508771945, 29.935224456140354 ], [ -90.110297, 29.935034 ], [ -90.110079779660936, 29.935026457627103 ] ], [ [ -90.11105, 29.93519 ], [ -90.111239508771945, 29.935224456140354 ] ], [ [ -90.11105, 29.93519 ], [ -90.111038, 29.935228 ] ], [ [ -90.110079779660936, 29.935026457627103 ], [ -90.11105, 29.93519 ] ], [ [ -90.109852499999988, 29.935018531249991 ], [ -90.110079779660936, 29.935026457627103 ] ], [ [ -90.110079779660936, 29.935026457627103 ], [ -90.109852499999988, 29.935018531249991 ] ], [ [ -90.109852499999988, 29.935018531249991 ], [ -90.109275090909108, 29.935004509090902 ] ], [ [ -90.109275090909108, 29.935004509090902 ], [ -90.109852499999988, 29.935018531249991 ] ], [ [ -90.10923, 29.935 ], [ -90.109275090909108, 29.935004509090902 ] ], [ [ -90.109275090909108, 29.935004509090902 ], [ -90.1092298912519, 29.935004132427107 ] ], [ [ -90.10923, 29.935 ], [ -90.1092298912519, 29.935004132427107 ] ], [ [ -90.10839, 29.93498 ], [ -90.10923, 29.935 ] ], [ [ -90.1092298912519, 29.935004132427107 ], [ -90.109229, 29.935038 ] ], [ [ -90.1092298912519, 29.935004132427107 ], [ -90.10839, 29.93498 ] ], [ [ -90.10839, 29.93498 ], [ -90.10737, 29.93494 ] ], [ [ -90.10728, 29.93494 ], [ -90.10839, 29.93498 ] ], [ [ -90.10737, 29.93494 ], [ -90.107373, 29.93489 ] ], [ [ -90.10737, 29.93494 ], [ -90.10728, 29.93494 ] ], [ [ -90.10715, 29.93495 ], [ -90.10728, 29.93494 ] ], [ [ -90.10714, 29.93495 ], [ -90.10715, 29.93495 ] ], [ [ -90.10715, 29.93495 ], [ -90.107140159901604, 29.934950730978727 ] ], [ [ -90.107140159901604, 29.934950730978727 ], [ -90.107147, 29.934982 ] ], [ [ -90.107140159901604, 29.934950730978727 ], [ -90.10645, 29.935 ] ], [ [ -90.10714, 29.93495 ], [ -90.107140159901604, 29.934950730978727 ] ], [ [ -90.10645, 29.935 ], [ -90.10714, 29.93495 ] ], [ [ -90.10553, 29.93507 ], [ -90.10645, 29.935 ] ], [ [ -90.105449590643261, 29.935073654970765 ], [ -90.10553, 29.93507 ] ], [ [ -90.10553, 29.93507 ], [ -90.10545, 29.93508 ] ], [ [ -90.10545, 29.93508 ], [ -90.10531, 29.93508 ] ], [ [ -90.10545, 29.93508 ], [ -90.105449590643261, 29.935073654970765 ] ], [ [ -90.10531, 29.93508 ], [ -90.105449590643261, 29.935073654970765 ] ], [ [ -90.105449590643261, 29.935073654970765 ], [ -90.105446, 29.935018 ] ], [ [ -90.10531, 29.93508 ], [ -90.10496, 29.93511 ] ], [ [ -90.10521, 29.93509 ], [ -90.10531, 29.93508 ] ], [ [ -90.10521, 29.93509 ], [ -90.105218, 29.935141 ] ], [ [ -90.10496, 29.93511 ], [ -90.10521, 29.93509 ] ], [ [ -90.10422, 29.93517 ], [ -90.10496, 29.93511 ] ], [ [ -90.10422, 29.93517 ], [ -90.10317, 29.93525 ] ], [ [ -90.10308, 29.93526 ], [ -90.10422, 29.93517 ] ], [ [ -90.10317, 29.93525 ], [ -90.10308, 29.93526 ] ], [ [ -90.10317, 29.93525 ], [ -90.103161, 29.935208 ] ], [ [ -90.10285, 29.93527 ], [ -90.10308, 29.93526 ] ], [ [ -90.10285, 29.93527 ], [ -90.1017, 29.93536 ] ], [ [ -90.10275, 29.93528 ], [ -90.10285, 29.93527 ] ], [ [ -90.10275, 29.93528 ], [ -90.102759, 29.935335 ] ], [ [ -90.1017, 29.93536 ], [ -90.10275, 29.93528 ] ], [ [ -90.101556818182004, 29.935371363636335 ], [ -90.1017, 29.93536 ] ], [ [ -90.1017, 29.93536 ], [ -90.101556818182004, 29.935371363636335 ] ], [ [ -90.101556818182004, 29.935371363636335 ], [ -90.10069, 29.93544 ] ], [ [ -90.10059, 29.93545 ], [ -90.101556818182004, 29.935371363636335 ] ], [ [ -90.10069, 29.93544 ], [ -90.10059, 29.93545 ] ], [ [ -90.10069, 29.93544 ], [ -90.100687, 29.935381 ] ], [ [ -90.10044, 29.93546 ], [ -90.10059, 29.93545 ] ], [ [ -90.10059, 29.93545 ], [ -90.100440043638343, 29.935460556388911 ] ], [ [ -90.100440043638343, 29.935460556388911 ], [ -90.100444, 29.935511 ] ], [ [ -90.100440043638343, 29.935460556388911 ], [ -90.100234000000754, 29.935475 ] ], [ [ -90.10044, 29.93546 ], [ -90.100440043638343, 29.935460556388911 ] ], [ [ -90.100234000000754, 29.935475 ], [ -90.10044, 29.93546 ] ], [ [ -90.100234000000754, 29.935475 ], [ -90.100173923076539, 29.935479230769243 ] ], [ [ -90.100173923076539, 29.935479230769243 ], [ -90.100234000000754, 29.935475 ] ], [ [ -90.099826276596104, 29.93550361702124 ], [ -90.100069, 29.935486 ], [ -90.100173923076539, 29.935479230769243 ] ], [ [ -90.100173923076539, 29.935479230769243 ], [ -90.099826276596104, 29.93550361702124 ] ], [ [ -90.099826276596104, 29.93550361702124 ], [ -90.099631230769091, 29.935517307692322 ] ], [ [ -90.099631230769091, 29.935517307692322 ], [ -90.099826276596104, 29.93550361702124 ] ], [ [ -90.09945, 29.93553 ], [ -90.099631230769091, 29.935517307692322 ] ], [ [ -90.099631230769091, 29.935517307692322 ], [ -90.09945, 29.93553 ] ], [ [ -90.09829, 29.93565 ], [ -90.09945, 29.93553 ] ], [ [ -90.098029006741569, 29.935696844943816 ], [ -90.09829, 29.93565 ] ], [ [ -90.09829, 29.93565 ], [ -90.09803, 29.9357 ] ], [ [ -90.09803, 29.9357 ], [ -90.0979, 29.93572 ] ], [ [ -90.09803, 29.9357 ], [ -90.098029006741569, 29.935696844943816 ] ], [ [ -90.0979, 29.93572 ], [ -90.098029006741569, 29.935696844943816 ] ], [ [ -90.098029006741569, 29.935696844943816 ], [ -90.098013, 29.935646 ] ], [ [ -90.0979, 29.93572 ], [ -90.09717, 29.93588 ] ], [ [ -90.09777, 29.93575 ], [ -90.0979, 29.93572 ] ], [ [ -90.09777, 29.93575 ], [ -90.097785, 29.935807 ] ], [ [ -90.09717, 29.93588 ], [ -90.09777, 29.93575 ] ], [ [ -90.09619, 29.93609 ], [ -90.09717, 29.93588 ] ], [ [ -90.09619, 29.93609 ], [ -90.096084304635539, 29.936128245033192 ] ], [ [ -90.096084304635539, 29.936128245033192 ], [ -90.09619, 29.93609 ] ], [ [ -90.09577, 29.93624 ], [ -90.096084304635539, 29.936128245033192 ] ], [ [ -90.096084304635539, 29.936128245033192 ], [ -90.095770585124512, 29.936241400119417 ] ], [ [ -90.095770585124512, 29.936241400119417 ], [ -90.095798, 29.936307 ] ], [ [ -90.095770585124512, 29.936241400119417 ], [ -90.09558, 29.93631 ] ], [ [ -90.09577, 29.93624 ], [ -90.095770585124512, 29.936241400119417 ] ], [ [ -90.095579632653042, 29.936309224489783 ], [ -90.09577, 29.93624 ] ], [ [ -90.09558, 29.93631 ], [ -90.09544, 29.93636 ] ], [ [ -90.09558, 29.93631 ], [ -90.095579632653042, 29.936309224489783 ] ], [ [ -90.09544, 29.93636 ], [ -90.095579632653042, 29.936309224489783 ] ], [ [ -90.095579632653042, 29.936309224489783 ], [ -90.095553, 29.936253 ] ], [ [ -90.09297, 29.93645 ], [ -90.09493, 29.93563 ], [ -90.09532, 29.93641 ], [ -90.09544, 29.93636 ] ], [ [ -90.09544, 29.93636 ], [ -90.09499, 29.93548 ], [ -90.0939, 29.93589 ] ], [ [ -90.0939, 29.93589 ], [ -90.09231, 29.93671 ] ], [ [ -90.0939, 29.93589 ], [ -90.093876, 29.935845 ] ], [ [ -90.09297, 29.93645 ], [ -90.093021, 29.93652 ] ], [ [ -90.09082, 29.93768 ], [ -90.09297, 29.93645 ] ], [ [ -90.09231, 29.93671 ], [ -90.091, 29.93746 ] ], [ [ -90.09231, 29.93671 ], [ -90.092271, 29.936656 ] ], [ [ -90.091, 29.93746 ], [ -90.08933, 29.9384 ] ], [ [ -90.091, 29.93746 ], [ -90.090962, 29.937408 ] ], [ [ -90.09082, 29.93768 ], [ -90.090863, 29.937738 ] ], [ [ -90.08921, 29.93858 ], [ -90.09082, 29.93768 ] ], [ [ -90.08933, 29.9384 ], [ -90.08821, 29.93899 ], [ -90.08754, 29.93916 ] ], [ [ -90.08933, 29.9384 ], [ -90.089265, 29.938321 ] ], [ [ -90.08921, 29.93858 ], [ -90.089262, 29.938647 ] ], [ [ -90.08745, 29.93932 ], [ -90.08811, 29.93918 ], [ -90.08921, 29.93858 ] ], [ [ -90.08754, 29.93916 ], [ -90.08708, 29.93914 ], [ -90.08602, 29.93881 ], [ -90.08493, 29.93897 ] ], [ [ -90.08754, 29.93916 ], [ -90.087537, 29.939091 ] ], [ [ -90.08745, 29.93932 ], [ -90.087452, 29.93935 ] ], [ [ -90.08488, 29.9392 ], [ -90.08588, 29.93897 ], [ -90.08685, 29.93927 ], [ -90.08745, 29.93932 ] ], [ [ -90.08493, 29.93897 ], [ -90.08304, 29.940129 ], [ -90.081449, 29.942309 ], [ -90.081189, 29.94249 ], [ -90.08038, 29.94373 ] ], [ [ -90.08493, 29.93897 ], [ -90.084894, 29.938899 ] ], [ [ -90.08488, 29.9392 ], [ -90.084922, 29.939254 ] ], [ [ -90.08308, 29.94039 ], [ -90.08488, 29.9392 ] ], [ [ -90.08308, 29.94039 ], [ -90.083136, 29.940453 ] ], [ [ -90.08144, 29.94265 ], [ -90.08308, 29.94039 ] ], [ [ -90.08144, 29.94265 ], [ -90.081487, 29.942673 ] ], [ [ -90.08045, 29.94396 ], [ -90.08144, 29.94265 ] ], [ [ -90.08045, 29.94396 ], [ -90.080535, 29.944007 ] ], [ [ -90.07718, 29.94633 ], [ -90.07761, 29.94538 ], [ -90.078, 29.94515 ], [ -90.0784, 29.94521 ], [ -90.07909, 29.94555 ], [ -90.07928, 29.9455 ], [ -90.08045, 29.94396 ] ], [ [ -90.08038, 29.94373 ], [ -90.07975, 29.94457 ] ], [ [ -90.08038, 29.94373 ], [ -90.080326, 29.943693 ] ], [ [ -90.07975, 29.94457 ], [ -90.0793, 29.94498 ], [ -90.0786, 29.94478 ], [ -90.078, 29.94481 ], [ -90.07743, 29.94526 ], [ -90.076903, 29.945829 ], [ -90.07627, 29.9483 ] ], [ [ -90.07975, 29.94457 ], [ -90.079697, 29.944541 ] ], [ [ -90.07718, 29.94633 ], [ -90.07725, 29.946349 ] ], [ [ -90.0765, 29.94871 ], [ -90.07718, 29.94633 ] ], [ [ -90.0765, 29.94871 ], [ -90.076537, 29.948723 ] ], [ [ -90.07584, 29.95106 ], [ -90.0765, 29.94871 ] ], [ [ -90.07627, 29.9483 ], [ -90.07564, 29.95056 ] ], [ [ -90.07627, 29.9483 ], [ -90.076215, 29.948286 ] ], [ [ -90.07584, 29.95106 ], [ -90.075911, 29.951058 ] ], [ [ -90.07526, 29.95407 ], [ -90.07581, 29.95223 ], [ -90.07584, 29.95106 ] ], [ [ -90.07564, 29.95056 ], [ -90.07551, 29.95226 ], [ -90.07478, 29.95438 ] ], [ [ -90.07564, 29.95056 ], [ -90.075579, 29.950548 ] ], [ [ -90.07526, 29.95407 ], [ -90.07528, 29.954073 ] ], [ [ -90.07198, 29.95798 ], [ -90.07498, 29.95461 ], [ -90.07526, 29.95407 ] ], [ [ -90.07478, 29.95438 ], [ -90.0719, 29.9576 ] ], [ [ -90.07478, 29.95438 ], [ -90.074706, 29.954333 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.04963, 29.99371 ], [ -90.04935, 29.990449 ], [ -90.049481, 29.990081 ], [ -90.049231, 29.988709 ], [ -90.048834, 29.983698 ], [ -90.048857, 29.983318 ], [ -90.048994, 29.983297 ], [ -90.048846, 29.983223 ], [ -90.048773, 29.982264 ], [ -90.048935, 29.982225 ], [ -90.048765, 29.982183 ], [ -90.048538, 29.979344 ], [ -90.048637, 29.979279 ], [ -90.048521, 29.979216 ], [ -90.048373, 29.97724 ], [ -90.048532, 29.977225 ], [ -90.048367, 29.977184 ], [ -90.048239, 29.975932 ], [ -90.048474, 29.975175 ], [ -90.048603, 29.975206 ], [ -90.0485, 29.975084 ], [ -90.048804, 29.974099 ], [ -90.050183, 29.974108 ], [ -90.050306, 29.974016 ], [ -90.054483, 29.973762 ], [ -90.054693, 29.973835 ], [ -90.054839, 29.973734 ], [ -90.064893, 29.973132 ], [ -90.064978, 29.973237 ], [ -90.065354, 29.973095 ], [ -90.065732, 29.972904 ], [ -90.066502, 29.972139 ], [ -90.07339, 29.96436 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07192, 29.96539 ], [ -90.06635, 29.97163 ] ], [ [ -90.07139, 29.96319 ], [ -90.07296, 29.96424 ], [ -90.07192, 29.96539 ] ], [ [ -90.07192, 29.96539 ], [ -90.071879, 29.965355 ] ], [ [ -90.0719, 29.9576 ], [ -90.07049, 29.95917 ] ], [ [ -90.0719, 29.9576 ], [ -90.071875, 29.957586 ] ], [ [ -90.07139, 29.96319 ], [ -90.071273, 29.963222 ] ], [ [ -90.07046, 29.96151 ], [ -90.07079, 29.96195 ], [ -90.07108, 29.96284 ], [ -90.07139, 29.96319 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ], [ [ -90.07049, 29.95917 ], [ -90.06998, 29.95979 ], [ -90.06981, 29.9604 ], [ -90.06995, 29.96094 ], [ -90.07046, 29.96151 ] ], [ [ -90.07049, 29.95917 ], [ -90.070453, 29.959145 ] ], [ [ -90.07046, 29.96151 ], [ -90.07034, 29.9616 ], [ -90.070267, 29.961523 ] ], [ [ -90.06635, 29.97163 ], [ -90.06541, 29.97264 ], [ -90.06483, 29.97283 ], [ -90.06205, 29.97297 ], [ -90.062041, 29.972891 ], [ -90.061713, 29.973001 ], [ -90.059708, 29.973037 ], [ -90.057935, 29.973216 ], [ -90.057054, 29.973167 ], [ -90.055864, 29.972673 ], [ -90.052674, 29.972781 ], [ -90.052383, 29.972897 ], [ -90.049775, 29.973046 ], [ -90.04893, 29.97293 ], [ -90.04844, 29.974509 ], [ -90.048145, 29.97501 ], [ -90.048059, 29.976159 ], [ -90.04831, 29.97918 ] ], [ [ -90.06635, 29.97163 ], [ -90.066285, 29.971593 ] ], [ [ -90.05228, 30.02637 ], [ -90.052388, 30.026429 ] ], [ [ -90.04511, 30.02845 ], [ -90.04563, 30.02896 ], [ -90.04783, 30.0272 ], [ -90.05228, 30.02637 ] ], [ [ -90.05228, 30.02637 ], [ -90.05215, 30.02487 ] ], [ [ -90.05215, 30.02487 ], [ -90.052264, 30.024862 ] ], [ [ -90.05215, 30.02487 ], [ -90.05199, 30.0227 ] ], [ [ -90.05199, 30.0227 ], [ -90.052044, 30.0227 ] ], [ [ -90.052, 30.02629 ], [ -90.04758, 30.02714 ], [ -90.04677, 30.02742 ], [ -90.04532, 30.02845 ], [ -90.04523, 30.02836 ] ], [ [ -90.05014, 30.00273 ], [ -90.05037, 30.006794 ], [ -90.050519, 30.007315 ], [ -90.051132, 30.0143 ], [ -90.052, 30.02629 ] ], [ [ -90.052, 30.02629 ], [ -90.051982, 30.026215 ] ], [ [ -90.05199, 30.0227 ], [ -90.05179, 30.02043 ] ], [ [ -90.05179, 30.02043 ], [ -90.051885, 30.020466 ] ], [ [ -90.05179, 30.02043 ], [ -90.05162, 30.0184 ] ], [ [ -90.05162, 30.0184 ], [ -90.051727, 30.018439 ] ], [ [ -90.05162, 30.0184 ], [ -90.05145, 30.01616 ] ], [ [ -90.05145, 30.01616 ], [ -90.051568, 30.016169 ] ], [ [ -90.05145, 30.01616 ], [ -90.05128, 30.01412 ] ], [ [ -90.05128, 30.01412 ], [ -90.0514, 30.014124 ] ], [ [ -90.05128, 30.01412 ], [ -90.05104, 30.01226 ] ], [ [ -90.05104, 30.01226 ], [ -90.051088, 30.012296 ] ], [ [ -90.05104, 30.01226 ], [ -90.05088, 30.01051 ] ], [ [ -90.05088, 30.01051 ], [ -90.050911, 30.010531 ] ], [ [ -90.05088, 30.01051 ], [ -90.05075, 30.00873 ] ], [ [ -90.05062, 30.00697 ], [ -90.050817, 30.006999 ] ], [ [ -90.05075, 30.00873 ], [ -90.050755, 30.008738 ] ], [ [ -90.05075, 30.00873 ], [ -90.05062, 30.00697 ] ], [ [ -90.05062, 30.00697 ], [ -90.05046, 30.00521 ] ], [ [ -90.05046, 30.00521 ], [ -90.050475, 30.005225 ] ], [ [ -90.05046, 30.00521 ], [ -90.05022, 30.00096 ] ], [ [ -90.05022, 30.00096 ], [ -90.050324, 30.000954 ] ], [ [ -90.05008, 29.99941 ], [ -90.050222, 29.999396 ] ], [ [ -90.05022, 30.00096 ], [ -90.05008, 29.99941 ] ], [ [ -90.04994, 29.99769 ], [ -90.050149, 29.997738 ] ], [ [ -90.05014, 30.00273 ], [ -90.050055, 30.002731 ] ], [ [ -90.04831, 29.97918 ], [ -90.048458, 29.982182 ], [ -90.04861, 29.98287 ], [ -90.048526, 29.983173 ], [ -90.048719, 29.98373 ], [ -90.048859, 29.985339 ], [ -90.049108, 29.990263 ], [ -90.04933, 29.99137 ], [ -90.05014, 30.00273 ] ], [ [ -90.05008, 29.99941 ], [ -90.04994, 29.99769 ] ], [ [ -90.04981, 29.9961 ], [ -90.050004, 29.996035 ] ], [ [ -90.04994, 29.99769 ], [ -90.04981, 29.9961 ] ], [ [ -90.04969, 29.9945 ], [ -90.049849, 29.994468 ] ], [ [ -90.04981, 29.9961 ], [ -90.04969, 29.9945 ] ], [ [ -90.04963, 29.99371 ], [ -90.049772, 29.99363 ] ], [ [ -90.04969, 29.9945 ], [ -90.04963, 29.99371 ] ], [ [ -90.04831, 29.97918 ], [ -90.048284, 29.979182 ] ], [ [ -90.04523, 30.02836 ], [ -90.045311, 30.0283 ] ], [ [ -90.04523, 30.02836 ], [ -90.04466, 30.02779 ] ], [ [ -90.04511, 30.02845 ], [ -90.045042, 30.028508 ] ], [ [ -90.04396, 30.02731 ], [ -90.04511, 30.02845 ] ], [ [ -90.04466, 30.02779 ], [ -90.044737, 30.027735 ] ], [ [ -90.04466, 30.02779 ], [ -90.04347, 30.02647 ], [ -90.04346, 30.02618 ], [ -90.044, 30.02469 ], [ -90.0439, 30.02292 ], [ -90.04373, 30.02293 ], [ -90.04379, 30.0248 ], [ -90.04364, 30.02529 ], [ -90.04317, 30.02599 ], [ -90.04314, 30.0263 ], [ -90.04329, 30.02665 ], [ -90.04396, 30.02731 ] ], [ [ -90.04396, 30.02731 ], [ -90.043904, 30.027351 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "103-O", "agency_id": "1", "route_short_name": "103-O", "route_long_name": "Algiers OWL", "route_type": 3, "route_color": "#245685", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.07735, 29.95141 ], [ -90.07731, 29.951484 ] ], [ [ -90.07735, 29.95141 ], [ -90.07832, 29.95182 ], [ -90.07713, 29.9556 ], [ -90.07401, 29.954109 ], [ -90.07492, 29.95074 ] ], [ [ -90.07546, 29.95078 ], [ -90.07735, 29.95141 ] ], [ [ -90.07641, 29.94501 ], [ -90.076436, 29.945028 ] ], [ [ -90.07559, 29.94845 ], [ -90.07606, 29.94677 ], [ -90.07596, 29.94601 ], [ -90.07605, 29.94551 ], [ -90.07641, 29.94501 ] ], [ [ -90.07641, 29.94501 ], [ -90.07713, 29.94402 ], [ -90.0767, 29.94373 ], [ -90.07306, 29.94193 ], [ -90.06703, 29.93858 ], [ -90.06521, 29.93792 ], [ -90.0637, 29.93772 ], [ -90.04377, 29.93786 ], [ -90.041473581081064, 29.937630716216223 ] ], [ [ -90.07559, 29.94845 ], [ -90.07568, 29.948474 ] ], [ [ -90.07496, 29.95061 ], [ -90.07559, 29.94845 ] ], [ [ -90.07546, 29.95078 ], [ -90.075443, 29.950822 ] ], [ [ -90.07496, 29.95061 ], [ -90.07546, 29.95078 ] ], [ [ -90.07539, 29.94665 ], [ -90.07495, 29.94806 ] ], [ [ -90.041372050964867, 29.938314918357239 ], [ -90.04228, 29.93846 ], [ -90.05066, 29.93892 ], [ -90.06408, 29.93881 ], [ -90.06585, 29.93899 ], [ -90.06913, 29.94005 ], [ -90.07409, 29.94272 ], [ -90.07515, 29.94363 ], [ -90.07597, 29.94414 ], [ -90.07621, 29.94447 ], [ -90.07625, 29.94481 ], [ -90.07563, 29.94588 ], [ -90.07539, 29.94665 ] ], [ [ -90.07539, 29.94665 ], [ -90.075299, 29.946626 ] ], [ [ -90.07492, 29.95074 ], [ -90.075, 29.950758 ] ], [ [ -90.07492, 29.95074 ], [ -90.07496, 29.95061 ] ], [ [ -90.07495, 29.94806 ], [ -90.07425, 29.95046 ], [ -90.07496, 29.95061 ] ], [ [ -90.07495, 29.94806 ], [ -90.074896, 29.948051 ] ], [ [ -90.05362, 29.95423 ], [ -90.05532, 29.95316 ], [ -90.05531, 29.95297 ] ], [ [ -90.05531, 29.95297 ], [ -90.05527, 29.95253 ], [ -90.05498, 29.95247 ], [ -90.05479, 29.9522 ], [ -90.05484, 29.95202 ], [ -90.05227, 29.94876 ] ], [ [ -90.05531, 29.95297 ], [ -90.055302, 29.952968 ] ], [ [ -90.05362, 29.95423 ], [ -90.053661, 29.954274 ] ], [ [ -90.05128, 29.955 ], [ -90.05248, 29.9549 ], [ -90.05362, 29.95423 ] ], [ [ -90.05233015341544, 29.947405902575621 ], [ -90.052292, 29.946674 ], [ -90.052401, 29.946573 ] ], [ [ -90.05233015341544, 29.947405902575621 ], [ -90.052401, 29.946573 ] ], [ [ -90.052401, 29.946573 ], [ -90.052271, 29.946447 ], [ -90.052139, 29.944567 ], [ -90.052243, 29.944447 ], [ -90.05212, 29.944362 ], [ -90.052015, 29.942544 ], [ -90.052127, 29.942366 ], [ -90.051972, 29.94227 ], [ -90.050941, 29.94232 ], [ -90.050706, 29.942228 ], [ -90.050495, 29.942344 ], [ -90.049675, 29.942381 ], [ -90.049545, 29.942296 ], [ -90.047566, 29.942288 ], [ -90.047429, 29.942189 ], [ -90.04725, 29.942278 ], [ -90.044519, 29.942127 ], [ -90.043441, 29.941848 ], [ -90.041128, 29.94169 ], [ -90.04124, 29.940124 ], [ -90.041413, 29.940062 ], [ -90.041272, 29.939984 ], [ -90.041482, 29.93905 ], [ -90.041372050964867, 29.938314918357239 ] ], [ [ -90.052401, 29.946573 ], [ -90.05226, 29.94648 ], [ -90.0522, 29.945439 ], [ -90.04941, 29.94557 ], [ -90.049325, 29.945461 ], [ -90.04905, 29.945559 ], [ -90.047376, 29.94538 ], [ -90.04729, 29.94548 ], [ -90.04546, 29.94538 ] ], [ [ -90.052285146443495, 29.948722133891231 ], [ -90.052362499999987, 29.948595 ] ], [ [ -90.052285146443495, 29.948722133891231 ], [ -90.052321, 29.948737 ], [ -90.052362499999987, 29.948595 ] ], [ [ -90.052362499999987, 29.948595 ], [ -90.052465, 29.948475 ], [ -90.052342265775778, 29.947687403860467 ] ], [ [ -90.052362499999987, 29.948595 ], [ -90.052342265775778, 29.947687403860467 ] ], [ [ -90.052342265775778, 29.947687403860467 ], [ -90.05233015341544, 29.947405902575621 ] ], [ [ -90.052342265775778, 29.947687403860467 ], [ -90.05233015341544, 29.947405902575621 ] ], [ [ -90.05227, 29.94876 ], [ -90.052285146443495, 29.948722133891231 ] ], [ [ -90.05227, 29.94876 ], [ -90.052285146443495, 29.948722133891231 ] ], [ [ -90.05128, 29.955 ], [ -90.051281, 29.955051 ] ], [ [ -90.04867, 29.95511 ], [ -90.05128, 29.955 ] ], [ [ -90.04867, 29.95511 ], [ -90.048669, 29.95518 ] ], [ [ -90.04647, 29.95499 ], [ -90.04867, 29.95511 ] ], [ [ -90.04467, 29.95477 ], [ -90.04647, 29.95499 ] ], [ [ -90.04647, 29.95499 ], [ -90.046459, 29.955073 ] ], [ [ -90.04546, 29.94538 ], [ -90.045467, 29.945298 ] ], [ [ -90.04546, 29.94538 ], [ -90.04322, 29.94526 ] ], [ [ -90.04467, 29.95477 ], [ -90.044654, 29.954837 ] ], [ [ -90.04039, 29.95044 ], [ -90.04016, 29.95388 ], [ -90.04467, 29.95477 ] ], [ [ -90.043785004050775, 29.919786493113698 ], [ -90.043574, 29.920109 ] ], [ [ -90.043785004050775, 29.919786493113698 ], [ -90.043953, 29.919869 ], [ -90.043238, 29.921007 ], [ -90.04315795046081, 29.920967677419341 ] ], [ [ -90.04288, 29.92196 ], [ -90.04627, 29.91681 ], [ -90.04713, 29.91585 ], [ -90.0471, 29.9154 ], [ -90.04668, 29.91535 ], [ -90.04626, 29.91573 ], [ -90.043785004050775, 29.919786493113698 ] ], [ [ -90.043574, 29.920109 ], [ -90.043785004050775, 29.919786493113698 ] ], [ [ -90.043574, 29.920109 ], [ -90.043535499999848, 29.92016850000023 ] ], [ [ -90.043535499999848, 29.92016850000023 ], [ -90.043574, 29.920109 ] ], [ [ -90.043276953974896, 29.920574351464424 ], [ -90.043535499999848, 29.92016850000023 ] ], [ [ -90.043535499999848, 29.92016850000023 ], [ -90.043276953974896, 29.920574351464424 ] ], [ [ -90.043276953974896, 29.920574351464424 ], [ -90.043043828453605, 29.920922720824727 ] ], [ [ -90.04315795046081, 29.920967677419341 ], [ -90.043276953974896, 29.920574351464424 ] ], [ [ -90.04322, 29.94526 ], [ -90.043227, 29.945182 ] ], [ [ -90.04322, 29.94526 ], [ -90.04103, 29.94516 ] ], [ [ -90.04287985714285, 29.92195957142858 ], [ -90.043336, 29.921196 ], [ -90.04315795046081, 29.920967677419341 ] ], [ [ -90.04315795046081, 29.920967677419341 ], [ -90.043043828453605, 29.920922720824727 ] ], [ [ -90.043043828453605, 29.920922720824727 ], [ -90.042652499999988, 29.9215425 ] ], [ [ -90.043043828453605, 29.920922720824727 ], [ -90.042736, 29.920919 ], [ -90.042434842519683, 29.921517031496077 ] ], [ [ -90.042845624999913, 29.92201700000011 ], [ -90.04288, 29.92196 ] ], [ [ -90.04288, 29.92196 ], [ -90.04287985714285, 29.92195957142858 ] ], [ [ -90.042845624999913, 29.92201700000011 ], [ -90.04287985714285, 29.92195957142858 ] ], [ [ -90.04287985714285, 29.92195957142858 ], [ -90.042652499999988, 29.9215425 ] ], [ [ -90.04229, 29.92288 ], [ -90.042845624999913, 29.92201700000011 ] ], [ [ -90.04230388000002, 29.923271799999625 ], [ -90.042332, 29.922889 ], [ -90.042845624999913, 29.92201700000011 ] ], [ [ -90.042652499999988, 29.9215425 ], [ -90.04234, 29.92186 ] ], [ [ -90.042652499999988, 29.9215425 ], [ -90.042434842519683, 29.921517031496077 ] ], [ [ -90.042434842519683, 29.921517031496077 ], [ -90.04207, 29.92194 ] ], [ [ -90.042434842519683, 29.921517031496077 ], [ -90.04228, 29.921824 ] ], [ [ -90.04234, 29.92186 ], [ -90.041593368190647, 29.922912419747068 ] ], [ [ -90.04234, 29.92186 ], [ -90.04228, 29.921824 ] ], [ [ -90.042281634146335, 29.923563658536633 ], [ -90.04230388000002, 29.923271799999625 ] ], [ [ -90.042281634146335, 29.923563658536633 ], [ -90.04230388000002, 29.923271799999625 ] ], [ [ -90.04230388000002, 29.923271799999625 ], [ -90.04229, 29.92288 ] ], [ [ -90.04198, 29.92335 ], [ -90.04229, 29.92288 ] ], [ [ -90.042277208333331, 29.92362187499997 ], [ -90.042281634146335, 29.923563658536633 ] ], [ [ -90.042277208333331, 29.92362187499997 ], [ -90.042281634146335, 29.923563658536633 ] ], [ [ -90.04228, 29.921824 ], [ -90.04194, 29.92214 ] ], [ [ -90.042265230769246, 29.923782461538273 ], [ -90.042277208333331, 29.92362187499997 ] ], [ [ -90.042265230769246, 29.923782461538273 ], [ -90.042277208333331, 29.92362187499997 ] ], [ [ -90.042252578947355, 29.923958736842046 ], [ -90.042265230769246, 29.923782461538273 ] ], [ [ -90.042252578947355, 29.923958736842046 ], [ -90.042265230769246, 29.923782461538273 ] ], [ [ -90.04218, 29.92504 ], [ -90.042258, 29.925096 ] ], [ [ -90.04223, 29.924255 ], [ -90.042252578947355, 29.923958736842046 ] ], [ [ -90.04223, 29.924255 ], [ -90.042252578947355, 29.923958736842046 ] ], [ [ -90.04218, 29.92504 ], [ -90.04223, 29.924255 ] ], [ [ -90.04208, 29.92653 ], [ -90.042184, 29.926584 ] ], [ [ -90.04208, 29.92653 ], [ -90.04218, 29.92504 ] ], [ [ -90.04182, 29.93069 ], [ -90.04208, 29.92653 ] ], [ [ -90.04207, 29.92194 ], [ -90.042073, 29.921942 ] ], [ [ -90.04207, 29.92194 ], [ -90.04194, 29.92214 ] ], [ [ -90.04207, 29.92348 ], [ -90.04201, 29.923493 ] ], [ [ -90.04207, 29.92348 ], [ -90.04203, 29.92497 ] ], [ [ -90.04198, 29.92335 ], [ -90.04207, 29.92348 ] ], [ [ -90.04203, 29.92497 ], [ -90.04195, 29.92643 ] ], [ [ -90.04203, 29.92497 ], [ -90.041925, 29.924963 ] ], [ [ -90.03945, 29.92601 ], [ -90.03998, 29.9265 ], [ -90.04198, 29.92335 ] ], [ [ -90.041593368190647, 29.922912419747068 ], [ -90.04198, 29.92335 ] ], [ [ -90.04195, 29.92643 ], [ -90.04166, 29.93069 ] ], [ [ -90.04195, 29.92643 ], [ -90.041897, 29.926425 ] ], [ [ -90.04194, 29.92214 ], [ -90.04155, 29.92273 ] ], [ [ -90.04182, 29.93076 ], [ -90.041881, 29.930767 ] ], [ [ -90.04166, 29.93069 ], [ -90.04182, 29.93069 ] ], [ [ -90.04182, 29.93076 ], [ -90.04182, 29.93069 ] ], [ [ -90.0417, 29.93304 ], [ -90.04182, 29.93076 ] ], [ [ -90.0417, 29.93304 ], [ -90.041818, 29.933048 ] ], [ [ -90.041473581081064, 29.937630716216223 ], [ -90.0417, 29.93304 ] ], [ [ -90.04123656050956, 29.937567675159237 ], [ -90.04005, 29.93702 ], [ -90.03927, 29.93637 ], [ -90.03875, 29.93552 ], [ -90.03848, 29.93448 ], [ -90.03877, 29.93235 ], [ -90.03904, 29.93187 ], [ -90.04052, 29.93073 ], [ -90.04166, 29.93069 ] ], [ [ -90.04166, 29.93069 ], [ -90.04161, 29.93135 ] ], [ [ -90.04161, 29.93135 ], [ -90.04154, 29.93287 ] ], [ [ -90.04161, 29.93135 ], [ -90.041465, 29.931337 ] ], [ [ -90.041593368190647, 29.922912419747068 ], [ -90.0407, 29.92429 ], [ -90.04027, 29.92472 ] ], [ [ -90.04155, 29.92273 ], [ -90.041593368190647, 29.922912419747068 ] ], [ [ -90.04155, 29.92273 ], [ -90.04027, 29.92472 ] ], [ [ -90.04154, 29.93287 ], [ -90.04143, 29.93449 ] ], [ [ -90.04154, 29.93287 ], [ -90.041474, 29.932869 ] ], [ [ -90.041372050964867, 29.938314918357239 ], [ -90.041353, 29.937786 ], [ -90.041483, 29.937772 ], [ -90.041473581081064, 29.937630716216223 ] ], [ [ -90.041473581081064, 29.937630716216223 ], [ -90.04123656050956, 29.937567675159237 ] ], [ [ -90.04143, 29.93449 ], [ -90.04137, 29.934492 ] ], [ [ -90.04143, 29.93449 ], [ -90.04137, 29.93561 ] ], [ [ -90.041133686440688, 29.938254025423706 ], [ -90.041372050964867, 29.938314918357239 ] ], [ [ -90.04137, 29.93561 ], [ -90.04126, 29.93725 ] ], [ [ -90.04137, 29.93561 ], [ -90.041283, 29.935601 ] ], [ [ -90.04126, 29.93725 ], [ -90.041179, 29.937251 ] ], [ [ -90.04126, 29.93725 ], [ -90.04123656050956, 29.937567675159237 ] ], [ [ -90.04123656050956, 29.937567675159237 ], [ -90.041133686440688, 29.938254025423706 ] ], [ [ -90.041133686440688, 29.938254025423706 ], [ -90.04099, 29.93887 ], [ -90.04099, 29.93991 ] ], [ [ -90.03945, 29.92601 ], [ -90.03779, 29.92904 ], [ -90.03722, 29.93209 ], [ -90.03729, 29.93446 ], [ -90.03761, 29.9356 ], [ -90.03852, 29.93678 ], [ -90.03957, 29.93758 ], [ -90.041133686440688, 29.938254025423706 ] ], [ [ -90.04103, 29.94516 ], [ -90.041039, 29.945084 ] ], [ [ -90.04103, 29.94516 ], [ -90.040725481105099, 29.945140274055248 ] ], [ [ -90.04099, 29.93991 ], [ -90.040894, 29.93992 ] ], [ [ -90.04099, 29.93991 ], [ -90.04087, 29.94297 ] ], [ [ -90.04087, 29.94297 ], [ -90.040731, 29.945044 ] ], [ [ -90.04087, 29.94297 ], [ -90.040788, 29.942967 ] ], [ [ -90.040731, 29.945044 ], [ -90.040725481105099, 29.945140274055248 ] ], [ [ -90.040731, 29.945044 ], [ -90.040665, 29.945031 ] ], [ [ -90.040725481105099, 29.945140274055248 ], [ -90.04054, 29.94814 ] ], [ [ -90.040725481105099, 29.945140274055248 ], [ -90.03883, 29.94506 ] ], [ [ -90.04054, 29.94814 ], [ -90.040466, 29.948142 ] ], [ [ -90.04054, 29.94814 ], [ -90.04053, 29.9484 ], [ -90.04045, 29.94933 ] ], [ [ -90.04045, 29.94933 ], [ -90.04039, 29.95044 ] ], [ [ -90.03846, 29.948342297872326 ], [ -90.04052, 29.94845 ], [ -90.04045, 29.94933 ] ], [ [ -90.04039, 29.95044 ], [ -90.040314, 29.950441 ] ], [ [ -90.04027, 29.92472 ], [ -90.03945, 29.92601 ] ], [ [ -90.03883, 29.94506 ], [ -90.038913, 29.944976 ] ], [ [ -90.03883, 29.94506 ], [ -90.03701, 29.94498 ] ], [ [ -90.03846, 29.948342297872326 ], [ -90.03846, 29.94835 ], [ -90.038445, 29.948349 ], [ -90.03846, 29.948342297872326 ] ], [ [ -90.03668, 29.94503 ], [ -90.03682, 29.94502 ], [ -90.03661, 29.94821 ], [ -90.03846, 29.948342297872326 ] ], [ [ -90.03701, 29.94498 ], [ -90.037077, 29.94484 ] ], [ [ -90.03701, 29.94498 ], [ -90.03401, 29.94478 ] ], [ [ -90.03668, 29.94503 ], [ -90.036674, 29.945058 ] ], [ [ -90.03359, 29.94486 ], [ -90.03668, 29.94503 ] ], [ [ -90.03401, 29.94478 ], [ -90.034017, 29.944691 ] ], [ [ -90.03401, 29.94478 ], [ -90.03309, 29.94467 ], [ -90.03173, 29.94415 ] ], [ [ -90.03359, 29.94486 ], [ -90.033583, 29.944937 ] ], [ [ -90.03135, 29.94412 ], [ -90.03293, 29.94473 ], [ -90.03359, 29.94486 ] ], [ [ -90.03173, 29.94415 ], [ -90.031754, 29.944107 ] ], [ [ -90.03173, 29.94415 ], [ -90.02989, 29.94344 ] ], [ [ -90.03135, 29.94412 ], [ -90.031267, 29.944163 ] ], [ [ -90.02946, 29.9434 ], [ -90.03135, 29.94412 ] ], [ [ -90.02989, 29.94344 ], [ -90.029925, 29.943376 ] ], [ [ -90.02989, 29.94344 ], [ -90.02849, 29.94291 ] ], [ [ -90.02946, 29.9434 ], [ -90.029427, 29.943468 ] ], [ [ -90.02722, 29.94254 ], [ -90.02946, 29.9434 ] ], [ [ -90.02849, 29.94291 ], [ -90.028532, 29.942832 ] ], [ [ -90.02849, 29.94291 ], [ -90.027477, 29.942515 ], [ -90.02742, 29.942377 ], [ -90.027357, 29.94246 ], [ -90.02518, 29.94159 ] ], [ [ -90.02722, 29.94254 ], [ -90.027183, 29.942603 ] ], [ [ -90.02511, 29.94165 ], [ -90.02722, 29.94254 ] ], [ [ -90.02518, 29.94159 ], [ -90.025227, 29.941503 ] ], [ [ -90.02518, 29.94159 ], [ -90.02491, 29.94153 ] ], [ [ -90.02511, 29.94165 ], [ -90.025124, 29.941621 ] ], [ [ -90.02491, 29.94153 ], [ -90.02511, 29.94165 ] ], [ [ -90.02353, 29.94094 ], [ -90.02491, 29.94153 ] ], [ [ -90.02353, 29.94094 ], [ -90.023406249999923, 29.940885 ] ], [ [ -90.023406249999923, 29.940885 ], [ -90.02353, 29.94094 ] ], [ [ -90.022651121951213, 29.940548317073148 ], [ -90.023406249999923, 29.940885 ] ], [ [ -90.023406249999923, 29.940885 ], [ -90.02265, 29.94055 ] ], [ [ -90.022651121951213, 29.940548317073148 ], [ -90.022692, 29.940487 ] ], [ [ -90.02265, 29.94055 ], [ -90.022651121951213, 29.940548317073148 ] ], [ [ -90.02252, 29.94049 ], [ -90.022651121951213, 29.940548317073148 ] ], [ [ -90.02265, 29.94055 ], [ -90.02252, 29.94049 ] ], [ [ -90.02252, 29.94049 ], [ -90.02139, 29.94 ] ], [ [ -90.02247, 29.94047 ], [ -90.02252, 29.94049 ] ], [ [ -90.02247, 29.94047 ], [ -90.02245, 29.94051 ] ], [ [ -90.02139, 29.94 ], [ -90.02247, 29.94047 ] ], [ [ -90.02139, 29.94 ], [ -90.021128299999617, 29.93988444999983 ] ], [ [ -90.021128299999617, 29.93988444999983 ], [ -90.02139, 29.94 ] ], [ [ -90.021103136986639, 29.939873301370024 ], [ -90.021128299999617, 29.93988444999983 ] ], [ [ -90.021128299999617, 29.93988444999983 ], [ -90.021103136986639, 29.939873301370024 ] ], [ [ -90.021103136986639, 29.939873301370024 ], [ -90.02033, 29.93953 ] ], [ [ -90.02026, 29.9395 ], [ -90.021103136986639, 29.939873301370024 ] ], [ [ -90.02033, 29.93953 ], [ -90.020384, 29.939442 ] ], [ [ -90.02033, 29.93953 ], [ -90.02026, 29.9395 ] ], [ [ -90.02026, 29.9395 ], [ -90.020188, 29.939578 ] ], [ [ -90.0179, 29.93846 ], [ -90.02026, 29.9395 ] ], [ [ -90.0179, 29.93846 ], [ -90.017983, 29.938353 ] ], [ [ -90.0179, 29.93846 ], [ -90.01637, 29.93779 ] ], [ [ -90.01783, 29.93844 ], [ -90.0179, 29.93846 ] ], [ [ -90.01783, 29.93844 ], [ -90.017787, 29.938516 ] ], [ [ -90.01637, 29.93779 ], [ -90.01783, 29.93844 ] ], [ [ -90.01637, 29.93779 ], [ -90.016476, 29.937674 ] ], [ [ -90.01637, 29.93779 ], [ -90.01628, 29.937855 ] ], [ [ -90.0146, 29.937 ], [ -90.01637, 29.93779 ] ], [ [ -90.0146, 29.937 ], [ -90.014689, 29.936898 ] ], [ [ -90.01454, 29.93697 ], [ -90.0146, 29.937 ] ], [ [ -90.0146, 29.937 ], [ -90.014538174133548, 29.936973119188494 ] ], [ [ -90.01454, 29.93697 ], [ -90.014538174133548, 29.936973119188494 ] ], [ [ -90.0135, 29.93652 ], [ -90.01454, 29.93697 ] ], [ [ -90.014538174133548, 29.936973119188494 ], [ -90.014492, 29.937052 ] ], [ [ -90.014538174133548, 29.936973119188494 ], [ -90.0135, 29.93652 ] ], [ [ -90.01343, 29.9365 ], [ -90.0135, 29.93652 ] ], [ [ -90.01343, 29.9365 ], [ -90.013308, 29.936543 ] ], [ [ -90.01343, 29.9365 ], [ -90.01304, 29.93632 ] ], [ [ -90.01295, 29.93628 ], [ -90.01343, 29.9365 ] ], [ [ -90.01304, 29.93632 ], [ -90.013088, 29.936238 ] ], [ [ -90.01304, 29.93632 ], [ -90.01295, 29.93628 ] ], [ [ -90.01155, 29.93567 ], [ -90.01295, 29.93628 ] ], [ [ -90.01155, 29.93567 ], [ -90.01103, 29.93545 ] ], [ [ -90.0115, 29.93565 ], [ -90.01155, 29.93567 ] ], [ [ -90.0115, 29.93565 ], [ -90.011458, 29.935731 ] ], [ [ -90.01103, 29.93545 ], [ -90.0115, 29.93565 ] ], [ [ -90.01103, 29.93545 ], [ -90.011155, 29.93538 ] ], [ [ -90.01008, 29.93501 ], [ -90.01103, 29.93545 ] ], [ [ -90.01008, 29.93501 ], [ -90.009992, 29.935088 ] ], [ [ -90.00975, 29.93487 ], [ -90.01008, 29.93501 ] ], [ [ -90.00961172535213, 29.934807147887309 ], [ -90.00975, 29.93487 ] ], [ [ -90.00975, 29.93487 ], [ -90.00961, 29.93481 ] ], [ [ -90.00961172535213, 29.934807147887309 ], [ -90.009659, 29.934729 ] ], [ [ -90.00961, 29.93481 ], [ -90.00961172535213, 29.934807147887309 ] ], [ [ -90.00953, 29.93477 ], [ -90.00961172535213, 29.934807147887309 ] ], [ [ -90.00961, 29.93481 ], [ -90.00953, 29.93477 ] ], [ [ -90.00879, 29.93444 ], [ -90.00953, 29.93477 ] ], [ [ -90.00879, 29.93444 ], [ -90.008745, 29.934534 ] ], [ [ -90.00879, 29.93444 ], [ -90.00841, 29.93427 ] ], [ [ -90.00808, 29.93413 ], [ -90.00879, 29.93444 ] ], [ [ -90.00841, 29.93427 ], [ -90.008453, 29.934193 ] ], [ [ -90.00841, 29.93427 ], [ -90.00808, 29.93413 ] ], [ [ -90.00798, 29.93408 ], [ -90.00808, 29.93413 ] ], [ [ -90.00798, 29.93408 ], [ -90.00753, 29.93388 ] ], [ [ -90.00783, 29.93402 ], [ -90.00798, 29.93408 ] ], [ [ -90.00783, 29.93402 ], [ -90.007789, 29.934079 ] ], [ [ -90.00753, 29.93388 ], [ -90.00783, 29.93402 ] ], [ [ -90.007351607142866, 29.933807321428571 ], [ -90.00753, 29.93388 ] ], [ [ -90.00753, 29.93388 ], [ -90.00735, 29.93381 ] ], [ [ -90.007351607142866, 29.933807321428571 ], [ -90.007404, 29.93372 ] ], [ [ -90.00735, 29.93381 ], [ -90.007351607142866, 29.933807321428571 ] ], [ [ -90.00726, 29.93377 ], [ -90.007351607142866, 29.933807321428571 ] ], [ [ -90.00735, 29.93381 ], [ -90.00726, 29.93377 ] ], [ [ -90.00556, 29.93303 ], [ -90.00726, 29.93377 ] ], [ [ -90.00556, 29.93303 ], [ -90.00541, 29.933142 ] ], [ [ -90.00488, 29.9327 ], [ -90.00556, 29.93303 ] ], [ [ -90.00488, 29.9327 ], [ -90.004961, 29.93263 ] ], [ [ -90.00398, 29.93232 ], [ -90.00488, 29.9327 ] ], [ [ -90.00398, 29.93232 ], [ -90.003813282442735, 29.932247366412202 ] ], [ [ -90.003813282442735, 29.932247366412202 ], [ -90.00398, 29.93232 ] ], [ [ -90.00302, 29.9319 ], [ -90.003813282442735, 29.932247366412202 ] ], [ [ -90.003813282442735, 29.932247366412202 ], [ -90.003019127755394, 29.931901444655132 ] ], [ [ -90.00297, 29.93188 ], [ -90.003101, 29.931773 ] ], [ [ -90.00302, 29.9319 ], [ -90.003019127755394, 29.931901444655132 ] ], [ [ -90.00297, 29.93188 ], [ -90.00302, 29.9319 ] ], [ [ -90.003019127755394, 29.931901444655132 ], [ -90.002988, 29.931953 ] ], [ [ -90.003019127755394, 29.931901444655132 ], [ -90.00297, 29.93188 ] ], [ [ -90.00136, 29.93117 ], [ -90.00297, 29.93188 ] ], [ [ -90.00136, 29.93117 ], [ -90.001449, 29.931086 ] ], [ [ -90.00131, 29.93114 ], [ -90.00136, 29.93117 ] ], [ [ -90.00136, 29.93117 ], [ -90.001306337952116, 29.931146235378797 ] ], [ [ -90.00131, 29.93114 ], [ -90.001306337952116, 29.931146235378797 ] ], [ [ -90.0008, 29.93092 ], [ -90.00131, 29.93114 ] ], [ [ -90.001306337952116, 29.931146235378797 ], [ -90.001273, 29.931203 ] ], [ [ -90.001306337952116, 29.931146235378797 ], [ -90.0008, 29.93092 ] ], [ [ -90.0008, 29.93092 ], [ -89.99958, 29.93037 ] ], [ [ -89.99962, 29.93039 ], [ -90.0008, 29.93092 ] ], [ [ -89.99958, 29.93037 ], [ -89.999662, 29.930309 ] ], [ [ -89.99962, 29.93039 ], [ -89.99958, 29.930453 ] ], [ [ -89.999444, 29.93031 ], [ -89.99962, 29.93039 ] ], [ [ -89.99958, 29.93037 ], [ -89.999444, 29.93031 ] ], [ [ -89.99755, 29.92948 ], [ -89.999444, 29.93031 ] ], [ [ -89.99755, 29.92948 ], [ -89.997656, 29.929416 ] ], [ [ -89.99755, 29.92948 ], [ -89.997491, 29.929524 ] ], [ [ -89.99685, 29.92918 ], [ -89.99755, 29.92948 ] ], [ [ -89.99755, 29.92948 ], [ -89.99685, 29.92918 ] ], [ [ -89.99591, 29.92877 ], [ -89.99685, 29.92918 ] ], [ [ -89.99591, 29.92877 ], [ -89.996035, 29.928701 ] ], [ [ -89.99573, 29.92869 ], [ -89.99591, 29.92877 ] ], [ [ -89.99558, 29.92862 ], [ -89.99573, 29.92869 ] ], [ [ -89.99573, 29.92869 ], [ -89.99557874524713, 29.9286221958175 ] ], [ [ -89.99558, 29.92862 ], [ -89.99557874524713, 29.9286221958175 ] ], [ [ -89.99477, 29.92826 ], [ -89.99558, 29.92862 ] ], [ [ -89.99557874524713, 29.9286221958175 ], [ -89.995548, 29.928676 ] ], [ [ -89.99557874524713, 29.9286221958175 ], [ -89.99477, 29.92826 ] ], [ [ -89.99331, 29.92761 ], [ -89.99477, 29.92826 ] ], [ [ -89.992741796113563, 29.927357076094189 ], [ -89.99331, 29.92761 ] ], [ [ -89.99331, 29.92761 ], [ -89.99274, 29.92736 ] ], [ [ -89.992741796113563, 29.927357076094189 ], [ -89.992783, 29.92729 ] ], [ [ -89.99274, 29.92736 ], [ -89.992741796113563, 29.927357076094189 ] ], [ [ -89.99257, 29.92728 ], [ -89.992741796113563, 29.927357076094189 ] ], [ [ -89.99274, 29.92736 ], [ -89.99257, 29.92728 ] ], [ [ -89.9923, 29.92717 ], [ -89.99257, 29.92728 ] ], [ [ -89.9923, 29.92717 ], [ -89.99208, 29.92705 ] ], [ [ -89.99224, 29.92714 ], [ -89.9923, 29.92717 ] ], [ [ -89.99224, 29.92714 ], [ -89.992202, 29.927194 ] ], [ [ -89.99208, 29.92705 ], [ -89.99224, 29.92714 ] ], [ [ -89.991012528453865, 29.926585475398351 ], [ -89.99208, 29.92705 ] ], [ [ -89.99208, 29.92705 ], [ -89.99101, 29.92659 ] ], [ [ -89.991012528453865, 29.926585475398351 ], [ -89.991048, 29.926522 ] ], [ [ -89.99101, 29.92659 ], [ -89.991012528453865, 29.926585475398351 ] ], [ [ -89.991, 29.92658 ], [ -89.991012528453865, 29.926585475398351 ] ], [ [ -89.99101, 29.92659 ], [ -89.991, 29.92658 ] ], [ [ -89.99089, 29.92654 ], [ -89.991, 29.92658 ] ], [ [ -89.99085, 29.92652 ], [ -89.99089, 29.92654 ] ], [ [ -89.99089, 29.92654 ], [ -89.990849004149368, 29.926521659751032 ] ], [ [ -89.99085, 29.92652 ], [ -89.990849004149368, 29.926521659751032 ] ], [ [ -89.98906, 29.92572 ], [ -89.99085, 29.92652 ] ], [ [ -89.990849004149368, 29.926521659751032 ], [ -89.990832, 29.92655 ] ], [ [ -89.990849004149368, 29.926521659751032 ], [ -89.98906, 29.92572 ] ], [ [ -89.98906, 29.92572 ], [ -89.988897499999581, 29.925648499999824 ] ], [ [ -89.988897499999581, 29.925648499999824 ], [ -89.98906, 29.92572 ] ], [ [ -89.988061100702581, 29.925278337236524 ], [ -89.988897499999581, 29.925648499999824 ] ], [ [ -89.988897499999581, 29.925648499999824 ], [ -89.98806, 29.92528 ] ], [ [ -89.988061100702581, 29.925278337236524 ], [ -89.988107, 29.925209 ] ], [ [ -89.98806, 29.92528 ], [ -89.988061100702581, 29.925278337236524 ] ], [ [ -89.98802, 29.92526 ], [ -89.988061100702581, 29.925278337236524 ] ], [ [ -89.98806, 29.92528 ], [ -89.98802, 29.92526 ] ], [ [ -89.98802, 29.92526 ], [ -89.987561056910678, 29.925061463414675 ] ], [ [ -89.98795, 29.92523 ], [ -89.98802, 29.92526 ] ], [ [ -89.98795, 29.92523 ], [ -89.98789, 29.925327 ] ], [ [ -89.987561056910678, 29.925061463414675 ], [ -89.98795, 29.92523 ] ], [ [ -89.987551874998928, 29.925057499999543 ], [ -89.987561056910678, 29.925061463414675 ] ], [ [ -89.987561056910678, 29.925061463414675 ], [ -89.987551874998928, 29.925057499999543 ] ], [ [ -89.987551874998928, 29.925057499999543 ], [ -89.987063636363246, 29.924846363636192 ] ], [ [ -89.987063636363246, 29.924846363636192 ], [ -89.987551874998928, 29.925057499999543 ] ], [ [ -89.98691, 29.92478 ], [ -89.987063636363246, 29.924846363636192 ] ], [ [ -89.987063636363246, 29.924846363636192 ], [ -89.98691, 29.92478 ] ], [ [ -89.98585, 29.9243 ], [ -89.98691, 29.92478 ] ], [ [ -89.98585, 29.9243 ], [ -89.98517, 29.92391 ] ], [ [ -89.98505, 29.92404 ], [ -89.98585, 29.9243 ] ], [ [ -89.98517, 29.92391 ], [ -89.985229, 29.923823 ] ], [ [ -89.98517, 29.92391 ], [ -89.98304, 29.92298 ] ], [ [ -89.98505, 29.92404 ], [ -89.985033, 29.924069 ] ], [ [ -89.97701, 29.92031 ], [ -89.97689, 29.92026 ], [ -89.97686, 29.92046 ], [ -89.98286, 29.9231 ], [ -89.982893, 29.92322 ], [ -89.98294, 29.92314 ], [ -89.98505, 29.92404 ] ], [ [ -89.98304, 29.92298 ], [ -89.983061, 29.922948 ] ], [ [ -89.98304, 29.92298 ], [ -89.98098, 29.92207 ] ], [ [ -89.98098, 29.92207 ], [ -89.981039, 29.922052 ] ], [ [ -89.98098, 29.92207 ], [ -89.97933, 29.92134 ] ], [ [ -89.97933, 29.92134 ], [ -89.979349, 29.921309 ] ], [ [ -89.97933, 29.92134 ], [ -89.97701, 29.92031 ] ], [ [ -89.97701, 29.92031 ], [ -89.977016, 29.920292 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "45", "agency_id": "1", "route_short_name": "45", "route_long_name": "Lakeview", "route_type": 3, "route_color": "#2ab560", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.12557, 30.00031 ], [ -90.125603, 30.000233 ] ], [ [ -90.11891, 29.99984 ], [ -90.12426, 30.00015 ], [ -90.12573, 30.00053 ], [ -90.12573, 30.00037 ], [ -90.12557, 30.00031 ] ], [ [ -90.12557, 30.00031 ], [ -90.12423, 29.99999 ], [ -90.11946, 29.99971 ] ], [ [ -90.12237, 29.99506 ], [ -90.122373, 29.995103 ] ], [ [ -90.12229, 29.99642 ], [ -90.12275, 29.99636 ], [ -90.12285, 29.9955 ], [ -90.12279, 29.99524 ], [ -90.12237, 29.99506 ] ], [ [ -90.12237, 29.99506 ], [ -90.12013, 29.99458 ] ], [ [ -90.12229, 29.99642 ], [ -90.122239, 29.996365 ] ], [ [ -90.11955, 29.99636 ], [ -90.11955, 29.99628 ], [ -90.12229, 29.99642 ] ], [ [ -90.12013, 29.99458 ], [ -90.120138, 29.994548 ] ], [ [ -90.12013, 29.99458 ], [ -90.11914, 29.99425 ], [ -90.11814, 29.99364 ] ], [ [ -90.11955, 29.99636 ], [ -90.119579, 29.99636 ] ], [ [ -90.11946, 29.99971 ], [ -90.11929, 29.9997 ], [ -90.11929, 29.99956 ], [ -90.11955, 29.99636 ] ], [ [ -90.11946, 29.99971 ], [ -90.119466, 29.999639 ] ], [ [ -90.11891, 29.99984 ], [ -90.118908, 29.999854 ] ], [ [ -90.11615, 30.00073 ], [ -90.11623, 29.9997 ], [ -90.11891, 29.99984 ] ], [ [ -90.11814, 29.99364 ], [ -90.118201, 29.993585 ] ], [ [ -90.11814, 29.99364 ], [ -90.1175, 29.99289 ], [ -90.11711, 29.99141 ] ], [ [ -90.11711, 29.99141 ], [ -90.11718, 29.991401 ] ], [ [ -90.11711, 29.99141 ], [ -90.11683, 29.98972 ] ], [ [ -90.11683, 29.98972 ], [ -90.116888, 29.989717 ] ], [ [ -90.11683, 29.98972 ], [ -90.11674, 29.98876 ] ], [ [ -90.11674, 29.98876 ], [ -90.116799, 29.988753 ] ], [ [ -90.11674, 29.98876 ], [ -90.11607, 29.98609 ], [ -90.11394, 29.980954 ], [ -90.110389, 29.982225 ], [ -90.11028, 29.98464 ] ], [ [ -90.11615, 30.00073 ], [ -90.116219, 30.000731 ] ], [ [ -90.11597, 30.00318 ], [ -90.11615, 30.00073 ] ], [ [ -90.11597, 30.00318 ], [ -90.116051, 30.003186 ] ], [ [ -90.1158, 30.00565 ], [ -90.11597, 30.00318 ] ], [ [ -90.1158, 30.00565 ], [ -90.115815, 30.005673 ] ], [ [ -90.11562, 30.00812 ], [ -90.1158, 30.00565 ] ], [ [ -90.11562, 30.00812 ], [ -90.115668, 30.008124 ] ], [ [ -90.11522, 30.01312 ], [ -90.11562, 30.00812 ] ], [ [ -90.11522, 30.01312 ], [ -90.115316, 30.01312 ] ], [ [ -90.11502, 30.01586 ], [ -90.11522, 30.01312 ] ], [ [ -90.11502, 30.01586 ], [ -90.115086, 30.015868 ] ], [ [ -90.11484, 30.01834 ], [ -90.11502, 30.01586 ] ], [ [ -90.11484, 30.01834 ], [ -90.114901, 30.018339 ] ], [ [ -90.11471, 30.01939 ], [ -90.11484, 30.01834 ] ], [ [ -90.11471, 30.01939 ], [ -90.114798, 30.019394 ] ], [ [ -90.11337, 30.02023 ], [ -90.11398, 30.02023 ], [ -90.11444, 30.02003 ], [ -90.11471, 30.01939 ] ], [ [ -90.11337, 30.02023 ], [ -90.113362, 30.020312 ] ], [ [ -90.1108, 30.02 ], [ -90.11337, 30.02023 ] ], [ [ -90.1108, 30.02 ], [ -90.110776, 30.020019 ] ], [ [ -90.10746, 30.01971 ], [ -90.1108, 30.02 ] ], [ [ -90.11028, 29.98464 ], [ -90.10993, 29.98674 ], [ -90.109754, 29.987086 ], [ -90.10985, 29.987352 ], [ -90.10967, 29.9889 ] ], [ [ -90.11028, 29.98464 ], [ -90.110183, 29.984632 ] ], [ [ -90.10967, 29.9889 ], [ -90.10955, 29.99054 ] ], [ [ -90.10967, 29.9889 ], [ -90.10959, 29.988889 ] ], [ [ -90.10955, 29.99054 ], [ -90.108959, 29.993822 ], [ -90.10878, 29.996649 ], [ -90.108568, 29.997285 ], [ -90.108341, 29.999106 ], [ -90.108458, 29.999389 ], [ -90.10828, 30.0009 ] ], [ [ -90.10955, 29.99054 ], [ -90.109497, 29.990539 ] ], [ [ -90.10828, 30.0009 ], [ -90.1075, 30.006689 ], [ -90.10738, 30.00851 ] ], [ [ -90.10828, 30.0009 ], [ -90.108156, 30.000891 ] ], [ [ -90.10746, 30.01971 ], [ -90.107463, 30.01972 ] ], [ [ -90.10609, 30.0193 ], [ -90.10605, 30.01958 ], [ -90.10746, 30.01971 ] ], [ [ -90.10738, 30.00851 ], [ -90.10716, 30.01031 ] ], [ [ -90.10738, 30.00851 ], [ -90.107294, 30.008502 ] ], [ [ -90.10716, 30.01031 ], [ -90.10694, 30.01213 ] ], [ [ -90.10716, 30.01031 ], [ -90.107058, 30.010305 ] ], [ [ -90.10694, 30.01213 ], [ -90.10674, 30.01392 ] ], [ [ -90.10694, 30.01213 ], [ -90.106842, 30.012118 ] ], [ [ -90.10674, 30.01392 ], [ -90.10653, 30.01573 ] ], [ [ -90.10674, 30.01392 ], [ -90.106625, 30.013912 ] ], [ [ -90.10653, 30.01573 ], [ -90.10632, 30.01755 ] ], [ [ -90.10653, 30.01573 ], [ -90.10643, 30.015724 ] ], [ [ -90.10632, 30.01755 ], [ -90.10609, 30.0193 ] ], [ [ -90.10632, 30.01755 ], [ -90.106235, 30.017545 ] ], [ [ -90.10609, 30.0193 ], [ -90.106008, 30.019295 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "114A", "agency_id": "1", "route_short_name": "114A", "route_long_name": "Garden Oaks - Sullen", "route_type": 3, "route_color": "#a6caf0", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.078410024657529, 29.945380002739718 ], [ -90.083302, 29.94856 ], [ -90.083635, 29.948476 ], [ -90.083946, 29.94816 ], [ -90.08342, 29.94776 ], [ -90.082401, 29.947156 ], [ -90.0815, 29.946459 ], [ -90.078828, 29.944776 ], [ -90.077053, 29.943949 ], [ -90.076928793969827, 29.944118592964809 ] ], [ [ -90.078410024657529, 29.945380002739718 ], [ -90.07937, 29.94586 ], [ -90.08292, 29.9481 ], [ -90.08317, 29.94815 ], [ -90.08329, 29.9477 ], [ -90.08227, 29.94709 ], [ -90.08086, 29.94617 ], [ -90.076928793969827, 29.944118592964809 ] ], [ [ -90.076824110977441, 29.944263538646606 ], [ -90.077991, 29.94486 ], [ -90.078410024657529, 29.945380002739718 ] ], [ [ -90.07744, 29.94563 ], [ -90.07796, 29.94533 ], [ -90.078410024657529, 29.945380002739718 ] ], [ [ -90.07821, 29.94571 ], [ -90.078213, 29.945713 ] ], [ [ -90.07728, 29.94599 ], [ -90.07806, 29.9464 ], [ -90.07832, 29.94591 ], [ -90.07821, 29.94571 ] ], [ [ -90.07821, 29.94571 ], [ -90.07759, 29.9458 ], [ -90.07744, 29.94563 ] ], [ [ -90.07728, 29.94599 ], [ -90.07744, 29.94563 ] ], [ [ -90.07735, 29.95141 ], [ -90.07731, 29.951484 ] ], [ [ -90.07735, 29.95141 ], [ -90.07832, 29.95182 ], [ -90.07713, 29.9556 ], [ -90.07401, 29.954109 ], [ -90.07492, 29.95074 ] ], [ [ -90.07546, 29.95078 ], [ -90.07735, 29.95141 ] ], [ [ -90.07613, 29.94694 ], [ -90.07661, 29.94706 ], [ -90.07696, 29.947 ], [ -90.07728, 29.94599 ] ], [ [ -90.076928793969827, 29.944118592964809 ], [ -90.076824110977441, 29.944263538646606 ] ], [ [ -90.076928793969827, 29.944118592964809 ], [ -90.06736, 29.93875 ], [ -90.06521, 29.93792 ], [ -90.0637, 29.93772 ], [ -90.0422, 29.93784 ], [ -90.04106, 29.9376 ], [ -90.04022, 29.93722 ], [ -90.03937, 29.9366 ], [ -90.03875, 29.93586 ] ], [ [ -90.076824110977441, 29.944263538646606 ], [ -90.075867628918743, 29.945544770953259 ] ], [ [ -90.038007893617021, 29.93057 ], [ -90.037897, 29.93388 ], [ -90.038187, 29.935237 ], [ -90.038723, 29.936195 ], [ -90.039324, 29.936883 ], [ -90.040611, 29.93772 ], [ -90.041727, 29.938147 ], [ -90.042886, 29.93838 ], [ -90.049087, 29.938733 ], [ -90.05311, 29.938817 ], [ -90.062434, 29.938715 ], [ -90.065727, 29.938547 ], [ -90.067356, 29.938945 ], [ -90.076824110977441, 29.944263538646606 ] ], [ [ -90.07613, 29.94694 ], [ -90.076106, 29.947003 ] ], [ [ -90.07559, 29.94845 ], [ -90.07601, 29.94691 ], [ -90.07613, 29.94694 ] ], [ [ -90.075867628918743, 29.945544770953259 ], [ -90.075689997609388, 29.945801922065481 ] ], [ [ -90.075867628918743, 29.945544770953259 ], [ -90.075848, 29.945612 ], [ -90.075689997609388, 29.945801922065481 ] ], [ [ -90.037442925373142, 29.93054 ], [ -90.03721, 29.93218 ], [ -90.037306, 29.93232 ], [ -90.037279, 29.934463 ], [ -90.037431, 29.935133 ], [ -90.037822, 29.935965 ], [ -90.038569, 29.936837 ], [ -90.03976, 29.937664 ], [ -90.040728, 29.938143 ], [ -90.042214, 29.938458 ], [ -90.05033, 29.93891 ], [ -90.06408, 29.93881 ], [ -90.06585, 29.93899 ], [ -90.06913, 29.94005 ], [ -90.072563, 29.941875 ], [ -90.074619, 29.943188 ], [ -90.076146, 29.944353 ], [ -90.076259, 29.944761 ], [ -90.075867628918743, 29.945544770953259 ] ], [ [ -90.075689997609388, 29.945801922065481 ], [ -90.07559, 29.94598 ] ], [ [ -90.075689997609388, 29.945801922065481 ], [ -90.07559, 29.94598 ] ], [ [ -90.07559, 29.94845 ], [ -90.07568, 29.948474 ] ], [ [ -90.07559, 29.94598 ], [ -90.07539, 29.94665 ] ], [ [ -90.07496, 29.95061 ], [ -90.07559, 29.94845 ] ], [ [ -90.07546, 29.95078 ], [ -90.075443, 29.950822 ] ], [ [ -90.07496, 29.95061 ], [ -90.07546, 29.95078 ] ], [ [ -90.07539, 29.94665 ], [ -90.07495, 29.94806 ] ], [ [ -90.07539, 29.94665 ], [ -90.075299, 29.946626 ] ], [ [ -90.07492, 29.95074 ], [ -90.075, 29.950758 ] ], [ [ -90.07492, 29.95074 ], [ -90.07496, 29.95061 ] ], [ [ -90.07495, 29.94806 ], [ -90.07425, 29.95046 ], [ -90.07496, 29.95061 ] ], [ [ -90.07495, 29.94806 ], [ -90.074896, 29.948051 ] ], [ [ -90.0428358847185, 29.921812831099192 ], [ -90.042849103379709, 29.92173186679921 ] ], [ [ -90.042789417618252, 29.922096442088076 ], [ -90.042909, 29.921902 ], [ -90.042849103379709, 29.92173186679921 ] ], [ [ -90.042849103379709, 29.92173186679921 ], [ -90.042837365131561, 29.921698328947354 ] ], [ [ -90.042849103379709, 29.92173186679921 ], [ -90.042837365131561, 29.921698328947354 ] ], [ [ -90.042837365131561, 29.921698328947354 ], [ -90.042646702545454, 29.921552333818184 ] ], [ [ -90.042837365131561, 29.921698328947354 ], [ -90.04279117412139, 29.9216697571885 ] ], [ [ -90.042790047898336, 29.922092581622689 ], [ -90.0428358847185, 29.921812831099192 ] ], [ [ -90.042790047898336, 29.922092581622689 ], [ -90.042863, 29.921975 ], [ -90.0428358847185, 29.921812831099192 ] ], [ [ -90.0428358847185, 29.921812831099192 ], [ -90.04279117412139, 29.9216697571885 ] ], [ [ -90.04279117412139, 29.9216697571885 ], [ -90.042646702545454, 29.921552333818184 ] ], [ [ -90.04279117412139, 29.9216697571885 ], [ -90.04262730992977, 29.921566779338004 ] ], [ [ -90.042762265609468, 29.92213766204166 ], [ -90.042790047898336, 29.922092581622689 ] ], [ [ -90.042789417618252, 29.922096442088076 ], [ -90.042790047898336, 29.922092581622689 ] ], [ [ -90.042778023746664, 29.922114873350981 ], [ -90.042789417618252, 29.922096442088076 ] ], [ [ -90.042778023746664, 29.922114873350981 ], [ -90.042789417618252, 29.922096442088076 ] ], [ [ -90.042762265609468, 29.92213766204166 ], [ -90.042778023746664, 29.922114873350981 ] ], [ [ -90.042609418719238, 29.922386320197017 ], [ -90.042778023746664, 29.922114873350981 ] ], [ [ -90.038387007125905, 29.930589857482182 ], [ -90.03857, 29.92907 ], [ -90.03914, 29.92747 ], [ -90.042762265609468, 29.92213766204166 ] ], [ [ -90.042609418719238, 29.922386320197017 ], [ -90.042762265609468, 29.92213766204166 ] ], [ [ -90.042646702545454, 29.921552333818184 ], [ -90.04262730992977, 29.921566779338004 ] ], [ [ -90.042646702545454, 29.921552333818184 ], [ -90.042540371428558, 29.921512857142869 ] ], [ [ -90.04262730992977, 29.921566779338004 ], [ -90.04228, 29.921824 ] ], [ [ -90.04262730992977, 29.921566779338004 ], [ -90.042540371428558, 29.921512857142869 ] ], [ [ -90.042463198473328, 29.922619837150055 ], [ -90.042609418719238, 29.922386320197017 ] ], [ [ -90.042463198473328, 29.922619837150055 ], [ -90.042609418719238, 29.922386320197017 ] ], [ [ -90.042540371428558, 29.921512857142869 ], [ -90.042436686886703, 29.921524401427288 ] ], [ [ -90.042540371428558, 29.921512857142869 ], [ -90.042436686886703, 29.921524401427288 ] ], [ [ -90.039456833333318, 29.927494469697017 ], [ -90.039522, 29.927309 ], [ -90.039999, 29.926465 ], [ -90.042463198473328, 29.922619837150055 ] ], [ [ -90.039456833333318, 29.927494469697017 ], [ -90.042463198473328, 29.922619837150055 ] ], [ [ -90.042436686886703, 29.921524401427288 ], [ -90.042373, 29.921547 ], [ -90.04228, 29.921824 ] ], [ [ -90.042436686886703, 29.921524401427288 ], [ -90.04228, 29.921824 ] ], [ [ -90.04228, 29.921824 ], [ -90.042076694331755, 29.921939904177165 ] ], [ [ -90.04228, 29.921824 ], [ -90.042104354838699, 29.92190019354841 ] ], [ [ -90.04228, 29.921824 ], [ -90.042104354838699, 29.92190019354841 ] ], [ [ -90.042104354838699, 29.92190019354841 ], [ -90.042073, 29.921942 ] ], [ [ -90.042104354838699, 29.92190019354841 ], [ -90.042076694331755, 29.921939904177165 ] ], [ [ -90.042076694331755, 29.921939904177165 ], [ -90.042073, 29.921942 ] ], [ [ -90.042076694331755, 29.921939904177165 ], [ -90.042034169811359, 29.922001632075418 ] ], [ [ -90.042073, 29.921942 ], [ -90.040162, 29.924763 ] ], [ [ -90.042073, 29.921942 ], [ -90.042024, 29.922016479999947 ] ], [ [ -90.042073, 29.921942 ], [ -90.042034169811359, 29.922001632075418 ] ], [ [ -90.042034169811359, 29.922001632075418 ], [ -90.042024, 29.922016479999947 ] ], [ [ -90.042034169811359, 29.922001632075418 ], [ -90.040289525034595, 29.924692811802682 ] ], [ [ -90.042024, 29.922016479999947 ], [ -90.041692008264221, 29.922519297521028 ] ], [ [ -90.042024, 29.922016479999947 ], [ -90.041692008264221, 29.922519297521028 ] ], [ [ -90.041692008264221, 29.922519297521028 ], [ -90.040162, 29.924763 ] ], [ [ -90.041692008264221, 29.922519297521028 ], [ -90.040289525034595, 29.924692811802682 ] ], [ [ -90.040289525034595, 29.924692811802682 ], [ -90.040162, 29.924763 ] ], [ [ -90.040289525034595, 29.924692811802682 ], [ -90.040162, 29.924763 ] ], [ [ -90.040162, 29.924763 ], [ -90.039525, 29.925758 ] ], [ [ -90.040162, 29.924763 ], [ -90.040141349127168, 29.92491788154614 ] ], [ [ -90.040162, 29.924763 ], [ -90.040141349127168, 29.92491788154614 ] ], [ [ -90.040141349127168, 29.92491788154614 ], [ -90.039694111111615, 29.925632777776965 ] ], [ [ -90.040141349127168, 29.92491788154614 ], [ -90.039694111111615, 29.925632777776965 ] ], [ [ -90.03977, 29.93046 ], [ -90.039862, 29.930463 ] ], [ [ -90.038821211009179, 29.93061 ], [ -90.03975, 29.93065 ], [ -90.03977, 29.93046 ] ], [ [ -90.03977, 29.93046 ], [ -90.03979, 29.92975 ], [ -90.039193010899183, 29.928497656675741 ] ], [ [ -90.039694111111615, 29.925632777776965 ], [ -90.039525, 29.925758 ] ], [ [ -90.039694111111615, 29.925632777776965 ], [ -90.039525, 29.925758 ] ], [ [ -90.039525, 29.925758 ], [ -90.03921681599999, 29.92640108 ] ], [ [ -90.039525, 29.925758 ], [ -90.03921681599999, 29.92640108 ] ], [ [ -90.039525, 29.925758 ], [ -90.039219734883702, 29.926415674418593 ] ], [ [ -90.039193010899183, 29.928497656675741 ], [ -90.039456833333318, 29.927494469697017 ] ], [ [ -90.039193010899183, 29.928497656675741 ], [ -90.039456833333318, 29.927494469697017 ] ], [ [ -90.039219734883702, 29.926415674418593 ], [ -90.038813878787792, 29.927180939394084 ] ], [ [ -90.039219734883702, 29.926415674418593 ], [ -90.039224, 29.926981 ], [ -90.038433, 29.928757 ], [ -90.038007893617021, 29.93057 ] ], [ [ -90.03921681599999, 29.92640108 ], [ -90.039219734883702, 29.926415674418593 ] ], [ [ -90.03921681599999, 29.92640108 ], [ -90.038813878787792, 29.927180939394084 ] ], [ [ -90.038821211009179, 29.93061 ], [ -90.039193010899183, 29.928497656675741 ] ], [ [ -90.038387007125905, 29.930589857482182 ], [ -90.038821211009179, 29.93061 ] ], [ [ -90.038225557522125, 29.934278898230051 ], [ -90.038821211009179, 29.93061 ] ], [ [ -90.038813878787792, 29.927180939394084 ], [ -90.038551511013409, 29.92773393392028 ] ], [ [ -90.038813878787792, 29.927180939394084 ], [ -90.038551511013409, 29.92773393392028 ] ], [ [ -90.03875, 29.93586 ], [ -90.038499935483841, 29.935377322580617 ] ], [ [ -90.03875, 29.93586 ], [ -90.038499935483841, 29.935377322580617 ] ], [ [ -90.038551511013409, 29.92773393392028 ], [ -90.038443112970725, 29.927946504754647 ] ], [ [ -90.038551511013409, 29.92773393392028 ], [ -90.038466, 29.927918 ], [ -90.038443112970725, 29.927946504754647 ] ], [ [ -90.038499935483841, 29.935377322580617 ], [ -90.038425428571415, 29.935192428571408 ] ], [ [ -90.038499935483841, 29.935377322580617 ], [ -90.038425428571415, 29.935192428571408 ] ], [ [ -90.038443112970725, 29.927946504754647 ], [ -90.038340080402008, 29.928074971859278 ] ], [ [ -90.038443112970725, 29.927946504754647 ], [ -90.038340080402008, 29.928074971859278 ] ], [ [ -90.038425428571415, 29.935192428571408 ], [ -90.038283631578963, 29.934639973684284 ] ], [ [ -90.038425428571415, 29.935192428571408 ], [ -90.03835, 29.93495 ], [ -90.038283631578963, 29.934639973684284 ] ], [ [ -90.038225557522125, 29.934278898230051 ], [ -90.03819, 29.93411 ], [ -90.03817, 29.93355 ], [ -90.038387007125905, 29.930589857482182 ] ], [ [ -90.038007893617021, 29.93057 ], [ -90.038387007125905, 29.930589857482182 ] ], [ [ -90.038340080402008, 29.928074971859278 ], [ -90.03789, 29.92849 ], [ -90.03652, 29.92922 ], [ -90.03631, 29.92953 ], [ -90.03627, 29.93008 ], [ -90.03601, 29.93031 ], [ -90.03393, 29.93011 ], [ -90.032407, 29.929269 ], [ -90.032219, 29.92942 ], [ -90.03220049587749, 29.929791657243815 ] ], [ [ -90.038340080402008, 29.928074971859278 ], [ -90.037879, 29.928755 ], [ -90.037442925373142, 29.93054 ] ], [ [ -90.038283631578963, 29.934639973684284 ], [ -90.038225557522125, 29.934278898230051 ] ], [ [ -90.038283631578963, 29.934639973684284 ], [ -90.038225557522125, 29.934278898230051 ] ], [ [ -90.037442925373142, 29.93054 ], [ -90.038007893617021, 29.93057 ] ], [ [ -90.0372, 29.93052 ], [ -90.037442925373142, 29.93054 ] ], [ [ -90.03220049587749, 29.929791657243815 ], [ -90.03445, 29.93037 ], [ -90.0372, 29.93052 ] ], [ [ -90.0372, 29.93052 ], [ -90.03719, 29.93059 ] ], [ [ -90.03220049587749, 29.929791657243815 ], [ -90.0321, 29.932196 ], [ -90.029943, 29.932057 ], [ -90.027540087375186, 29.93107860199715 ] ], [ [ -90.03105, 29.92952 ], [ -90.03220049587749, 29.929791657243815 ] ], [ [ -90.03105, 29.92952 ], [ -90.030985, 29.929635 ] ], [ [ -90.027540087375186, 29.93107860199715 ], [ -90.027652, 29.929247 ], [ -90.028325, 29.929243 ], [ -90.028899, 29.928471 ], [ -90.03105, 29.92952 ] ], [ [ -90.02742, 29.93103 ], [ -90.027540087375186, 29.93107860199715 ] ], [ [ -90.027540087375186, 29.93107860199715 ], [ -90.027458, 29.930912 ], [ -90.027359539748943, 29.931005815899564 ] ], [ [ -90.02742, 29.93103 ], [ -90.02739, 29.931074 ] ], [ [ -90.027359539748943, 29.931005815899564 ], [ -90.02742, 29.93103 ] ], [ [ -90.027359539748943, 29.931005815899564 ], [ -90.027352, 29.931013 ], [ -90.02706, 29.930885 ] ], [ [ -90.02706, 29.930885 ], [ -90.027359539748943, 29.931005815899564 ] ], [ [ -90.02706, 29.930885 ], [ -90.0269, 29.93082 ] ], [ [ -90.0269, 29.93082 ], [ -90.02706, 29.930885 ] ], [ [ -90.02549, 29.93073 ], [ -90.0269, 29.93082 ] ], [ [ -90.02549, 29.93073 ], [ -90.02541, 29.93072 ] ], [ [ -90.02482, 29.93069 ], [ -90.02549, 29.93073 ] ], [ [ -90.02541, 29.93072 ], [ -90.025414, 29.930633 ] ], [ [ -90.02541, 29.93072 ], [ -90.02482, 29.93069 ] ], [ [ -90.02193, 29.93058 ], [ -90.02482, 29.93069 ] ], [ [ -90.02265, 29.92103 ], [ -90.022695, 29.921027 ] ], [ [ -90.02266, 29.92112 ], [ -90.02265, 29.92225 ] ], [ [ -90.02266, 29.92112 ], [ -90.02265, 29.92103 ] ], [ [ -90.02261, 29.92077 ], [ -90.02266, 29.92112 ] ], [ [ -90.02265, 29.92103 ], [ -90.02261, 29.92077 ] ], [ [ -90.022562586037367, 29.922437315634209 ], [ -90.02265, 29.92225 ] ], [ [ -90.02265, 29.92225 ], [ -90.02257, 29.92244 ] ], [ [ -90.02256, 29.91876 ], [ -90.02262, 29.918774 ] ], [ [ -90.02259, 29.92069 ], [ -90.02261, 29.92077 ] ], [ [ -90.02259, 29.91866 ], [ -90.02252, 29.91884 ] ], [ [ -90.02256, 29.91876 ], [ -90.02259, 29.91866 ] ], [ [ -90.0214, 29.91852 ], [ -90.02259, 29.91866 ] ], [ [ -90.02254, 29.92045 ], [ -90.02259, 29.92069 ] ], [ [ -90.02259, 29.92069 ], [ -90.022538169934634, 29.920450285947705 ] ], [ [ -90.02257, 29.92244 ], [ -90.02251, 29.92255 ] ], [ [ -90.02257, 29.92244 ], [ -90.022562586037367, 29.922437315634209 ] ], [ [ -90.02251, 29.92255 ], [ -90.022562586037367, 29.922437315634209 ] ], [ [ -90.022562586037367, 29.922437315634209 ], [ -90.022454, 29.922398 ] ], [ [ -90.02246, 29.91902 ], [ -90.02256, 29.91876 ] ], [ [ -90.02254, 29.92045 ], [ -90.022538169934634, 29.920450285947705 ] ], [ [ -90.02251, 29.92032 ], [ -90.02254, 29.92045 ] ], [ [ -90.022538169934634, 29.920450285947705 ], [ -90.022412, 29.92047 ] ], [ [ -90.022538169934634, 29.920450285947705 ], [ -90.02251, 29.92032 ] ], [ [ -90.02252, 29.91884 ], [ -90.02246, 29.91902 ] ], [ [ -90.02252, 29.91884 ], [ -90.022433, 29.91882 ] ], [ [ -90.02246, 29.91902 ], [ -90.02237, 29.91951 ], [ -90.02251, 29.92032 ] ], [ [ -90.02251, 29.92255 ], [ -90.02169, 29.92455 ] ], [ [ -90.02193, 29.93058 ], [ -90.022002, 29.930485 ] ], [ [ -90.02184, 29.93058 ], [ -90.02193, 29.93058 ] ], [ [ -90.02193, 29.93058 ], [ -90.021, 29.93055 ] ], [ [ -90.02184, 29.93058 ], [ -90.021837, 29.93063 ] ], [ [ -90.021, 29.93055 ], [ -90.02184, 29.93058 ] ], [ [ -90.02162, 29.92471 ], [ -90.0217, 29.924772 ] ], [ [ -90.02169, 29.92455 ], [ -90.02162, 29.92471 ] ], [ [ -90.02162, 29.92471 ], [ -90.02169, 29.92455 ] ], [ [ -90.02162, 29.92471 ], [ -90.02099, 29.92564 ] ], [ [ -90.02132, 29.92536 ], [ -90.02162, 29.92471 ] ], [ [ -90.02162, 29.92471 ], [ -90.021565, 29.924638 ] ], [ [ -90.020773004987518, 29.918485947630902 ], [ -90.0214, 29.91852 ] ], [ [ -90.0214, 29.91852 ], [ -90.020773004987518, 29.918485947630902 ] ], [ [ -90.02132, 29.92536 ], [ -90.021393, 29.925386 ] ], [ [ -90.02008, 29.92808 ], [ -90.02041, 29.92696 ], [ -90.02132, 29.92536 ] ], [ [ -90.02046, 29.93051 ], [ -90.021, 29.93055 ] ], [ [ -90.02099, 29.92564 ], [ -90.02009, 29.9274 ] ], [ [ -90.02099, 29.92564 ], [ -90.020897, 29.925605 ] ], [ [ -90.020773004987518, 29.918485947630902 ], [ -90.020497736842117, 29.918392631578943 ] ], [ [ -90.02049, 29.91847 ], [ -90.020773004987518, 29.918485947630902 ] ], [ [ -90.02076, 29.91671 ], [ -90.02056, 29.91726 ], [ -90.0205, 29.91837 ] ], [ [ -90.01828, 29.91385 ], [ -90.01865, 29.91402 ], [ -90.0213, 29.91614 ], [ -90.02076, 29.91671 ] ], [ [ -90.02076, 29.91671 ], [ -90.02069, 29.916673 ] ], [ [ -90.020497958549214, 29.918390414507758 ], [ -90.020586, 29.918395 ] ], [ [ -90.0205, 29.91837 ], [ -90.020497958549214, 29.918390414507758 ] ], [ [ -90.0205, 29.91837 ], [ -90.02041, 29.918369 ] ], [ [ -90.020497958549214, 29.918390414507758 ], [ -90.020497736842117, 29.918392631578943 ] ], [ [ -90.02049, 29.91839 ], [ -90.020497958549214, 29.918390414507758 ] ], [ [ -90.020497736842117, 29.918392631578943 ], [ -90.02049, 29.91847 ] ], [ [ -90.020497736842117, 29.918392631578943 ], [ -90.02049, 29.91839 ] ], [ [ -90.02049, 29.91839 ], [ -90.02049, 29.91847 ] ], [ [ -90.02049, 29.91847 ], [ -90.02039, 29.91991 ] ], [ [ -90.02046, 29.93051 ], [ -90.02023, 29.93049 ] ], [ [ -90.02007, 29.93048 ], [ -90.02046, 29.93051 ] ], [ [ -90.02039, 29.91991 ], [ -90.02015, 29.92187 ], [ -90.01958, 29.92311 ] ], [ [ -90.02039, 29.91991 ], [ -90.020294, 29.919902 ] ], [ [ -90.02023, 29.93049 ], [ -90.02024, 29.930403 ] ], [ [ -90.02023, 29.93049 ], [ -90.02007, 29.93048 ] ], [ [ -90.02008, 29.92808 ], [ -90.020144, 29.928078 ] ], [ [ -90.02009, 29.9274 ], [ -90.01993, 29.92838 ], [ -90.01997, 29.9302 ] ], [ [ -90.02009, 29.9274 ], [ -90.020026, 29.927384 ] ], [ [ -90.02007, 29.93048 ], [ -90.02008, 29.92808 ] ], [ [ -90.01997, 29.9302 ], [ -90.01993, 29.93044 ], [ -90.02007, 29.93048 ] ], [ [ -90.01997, 29.9302 ], [ -90.019907, 29.930197 ] ], [ [ -90.01958, 29.92311 ], [ -90.01924, 29.9236 ], [ -90.01791, 29.92261 ], [ -90.01663, 29.92215 ], [ -90.01478, 29.92098 ] ], [ [ -90.01958, 29.92311 ], [ -90.019472, 29.92306 ] ], [ [ -90.01773, 29.91531 ], [ -90.01783, 29.91376 ], [ -90.01828, 29.91385 ] ], [ [ -90.01828, 29.91385 ], [ -90.018239, 29.913926 ] ], [ [ -90.01773, 29.91531 ], [ -90.017832, 29.915316 ] ], [ [ -90.01477, 29.92087 ], [ -90.01668, 29.91968 ], [ -90.01731, 29.91894 ], [ -90.01752, 29.91834 ], [ -90.01773, 29.91531 ] ], [ [ -90.01478, 29.92098 ], [ -90.01477, 29.92087 ] ], [ [ -90.01478, 29.92098 ], [ -90.01471, 29.92093 ] ], [ [ -90.01471, 29.92093 ], [ -90.01477, 29.92087 ] ], [ [ -90.0109, 29.91889 ], [ -90.01238, 29.92025 ], [ -90.01402, 29.9213 ], [ -90.01434, 29.92146 ], [ -90.01471, 29.92093 ] ], [ [ -90.01471, 29.92093 ], [ -90.01222, 29.91931 ] ], [ [ -90.01222, 29.91931 ], [ -90.012289, 29.919251 ] ], [ [ -90.01222, 29.91931 ], [ -90.00856, 29.91651 ] ], [ [ -90.0109, 29.91889 ], [ -90.010846, 29.918951 ] ], [ [ -90.00814, 29.91735 ], [ -90.0109, 29.91889 ] ], [ [ -90.00856, 29.91651 ], [ -90.008614, 29.916445 ] ], [ [ -90.00856, 29.91651 ], [ -90.00743, 29.91584 ], [ -90.00534, 29.91488 ] ], [ [ -90.00814, 29.91735 ], [ -90.008101, 29.9174 ] ], [ [ -90.00497, 29.91528 ], [ -90.00676, 29.91625 ], [ -90.00814, 29.91735 ] ], [ [ -90.00534, 29.91488 ], [ -90.005392, 29.914809 ] ], [ [ -90.00534, 29.91488 ], [ -90.00311, 29.91363 ] ], [ [ -90.00497, 29.91528 ], [ -90.004908, 29.915361 ] ], [ [ -90.0026, 29.91395 ], [ -90.00497, 29.91528 ] ], [ [ -90.00311, 29.91363 ], [ -90.003167, 29.913557 ] ], [ [ -90.00311, 29.91363 ], [ -90.00099, 29.91227 ] ], [ [ -90.0026, 29.91395 ], [ -90.002558, 29.914001 ] ], [ [ -90.00089, 29.91286 ], [ -90.0026, 29.91395 ] ], [ [ -90.00099, 29.91227 ], [ -90.001046, 29.912213 ] ], [ [ -90.00099, 29.91227 ], [ -89.99651, 29.90938 ] ], [ [ -90.00089, 29.91286 ], [ -90.000832, 29.912917 ] ], [ [ -89.99617, 29.9099 ], [ -89.99736, 29.91053 ], [ -90.00089, 29.91286 ] ], [ [ -89.99651, 29.90938 ], [ -89.996553, 29.909329 ] ], [ [ -89.99651, 29.90938 ], [ -89.99547, 29.90898 ], [ -89.9946, 29.90883 ] ], [ [ -89.99617, 29.9099 ], [ -89.996141, 29.909953 ] ], [ [ -89.99322, 29.90836 ], [ -89.99319, 29.90925 ], [ -89.99535, 29.90962 ], [ -89.99617, 29.9099 ] ], [ [ -89.9946, 29.90883 ], [ -89.994643, 29.908751 ] ], [ [ -89.9946, 29.90883 ], [ -89.99339, 29.90865 ], [ -89.99343, 29.90765 ] ], [ [ -89.99345, 29.90672 ], [ -89.993544, 29.90671 ] ], [ [ -89.99343, 29.90765 ], [ -89.993538, 29.907656 ] ], [ [ -89.99343, 29.90765 ], [ -89.99345, 29.90672 ] ], [ [ -89.99345, 29.90672 ], [ -89.99318, 29.90592 ], [ -89.99205, 29.90469 ] ], [ [ -89.99327, 29.90675 ], [ -89.993181, 29.906756 ] ], [ [ -89.99327, 29.90675 ], [ -89.99322, 29.90836 ] ], [ [ -89.99189, 29.9048 ], [ -89.99288, 29.90584 ], [ -89.99327, 29.90675 ] ], [ [ -89.99322, 29.90836 ], [ -89.993148, 29.908361 ] ], [ [ -89.99205, 29.90469 ], [ -89.992102, 29.904651 ] ], [ [ -89.99205, 29.90469 ], [ -89.99186, 29.9045 ], [ -89.98952, 29.90619 ] ], [ [ -89.99189, 29.9048 ], [ -89.991871, 29.904816 ] ], [ [ -89.98913, 29.90671 ], [ -89.9918, 29.90473 ], [ -89.99189, 29.9048 ] ], [ [ -89.98952, 29.90619 ], [ -89.98755, 29.90771 ] ], [ [ -89.98952, 29.90619 ], [ -89.989457, 29.906122 ] ], [ [ -89.98913, 29.90671 ], [ -89.989202, 29.906781 ] ], [ [ -89.98755, 29.90771 ], [ -89.98767, 29.90782 ], [ -89.98913, 29.90671 ] ], [ [ -89.98706, 29.90806 ], [ -89.98721, 29.9074 ], [ -89.98755, 29.90771 ] ], [ [ -89.98677, 29.91037 ], [ -89.98706, 29.90806 ] ], [ [ -89.98706, 29.90806 ], [ -89.98699, 29.908007 ] ], [ [ -89.98676, 29.91048 ], [ -89.986817, 29.910486 ] ], [ [ -89.98677, 29.91037 ], [ -89.98673, 29.91067 ] ], [ [ -89.98676, 29.91048 ], [ -89.98677, 29.91037 ] ], [ [ -89.98673, 29.91067 ], [ -89.98676, 29.91048 ] ], [ [ -89.98659, 29.91186 ], [ -89.98673, 29.91067 ] ], [ [ -89.986514968572266, 29.912469754564501 ], [ -89.98659, 29.91186 ] ], [ [ -89.98659, 29.91186 ], [ -89.98652, 29.91247 ] ], [ [ -89.98651, 29.91251 ], [ -89.986579, 29.912542 ] ], [ [ -89.98652, 29.91247 ], [ -89.98651, 29.91251 ] ], [ [ -89.98652, 29.91247 ], [ -89.986514968572266, 29.912469754564501 ] ], [ [ -89.98651, 29.91251 ], [ -89.986514968572266, 29.912469754564501 ] ], [ [ -89.986514968572266, 29.912469754564501 ], [ -89.986479, 29.912468 ] ], [ [ -89.98643, 29.91326 ], [ -89.98651, 29.91251 ] ], [ [ -89.986356071826279, 29.91382981069043 ], [ -89.98643, 29.91326 ] ], [ [ -89.98643, 29.91326 ], [ -89.98636, 29.91383 ] ], [ [ -89.98633, 29.91405 ], [ -89.98638, 29.914057 ] ], [ [ -89.98636, 29.91383 ], [ -89.98634, 29.91395 ] ], [ [ -89.98636, 29.91383 ], [ -89.986356071826279, 29.91382981069043 ] ], [ [ -89.98634, 29.91395 ], [ -89.986356071826279, 29.91382981069043 ] ], [ [ -89.986356071826279, 29.91382981069043 ], [ -89.986277, 29.913826 ] ], [ [ -89.98634, 29.91395 ], [ -89.98623, 29.9148 ] ], [ [ -89.98633, 29.91405 ], [ -89.98634, 29.91395 ] ], [ [ -89.98623, 29.9148 ], [ -89.98633, 29.91405 ] ], [ [ -89.98623, 29.9148 ], [ -89.98615, 29.91543 ] ], [ [ -89.98615, 29.91548 ], [ -89.98623, 29.9148 ] ], [ [ -89.98614, 29.91557 ], [ -89.986211, 29.915572 ] ], [ [ -89.98615, 29.91543 ], [ -89.98615, 29.91548 ] ], [ [ -89.98615, 29.91543 ], [ -89.986092, 29.915421 ] ], [ [ -89.98615, 29.91548 ], [ -89.986084374999876, 29.915987187500971 ] ], [ [ -89.98614, 29.91557 ], [ -89.98615, 29.91548 ] ], [ [ -89.986084374999876, 29.915987187500971 ], [ -89.98614, 29.91557 ] ], [ [ -89.98606, 29.91617 ], [ -89.986084374999876, 29.915987187500971 ] ], [ [ -89.986084374999876, 29.915987187500971 ], [ -89.98606, 29.91617 ] ], [ [ -89.98597, 29.91686 ], [ -89.98606, 29.91617 ] ], [ [ -89.98597, 29.91686 ], [ -89.98588, 29.91765 ] ], [ [ -89.98588, 29.91769 ], [ -89.98597, 29.91686 ] ], [ [ -89.985874704264077, 29.917730247592846 ], [ -89.985927, 29.917733 ] ], [ [ -89.98588, 29.91765 ], [ -89.98588, 29.91769 ] ], [ [ -89.98588, 29.91765 ], [ -89.985842, 29.917645 ] ], [ [ -89.98587, 29.91773 ], [ -89.98588, 29.91769 ] ], [ [ -89.98588, 29.91769 ], [ -89.985874704264077, 29.917730247592846 ] ], [ [ -89.985874704264077, 29.917730247592846 ], [ -89.98576, 29.9186 ] ], [ [ -89.98587, 29.91773 ], [ -89.985874704264077, 29.917730247592846 ] ], [ [ -89.98576, 29.9186 ], [ -89.98587, 29.91773 ] ], [ [ -89.985743083333347, 29.918739576922967 ], [ -89.98576, 29.9186 ] ], [ [ -89.98576, 29.9186 ], [ -89.985743083333347, 29.918739576922967 ] ], [ [ -89.985743083333347, 29.918739576922967 ], [ -89.98566, 29.91941 ] ], [ [ -89.98565, 29.91951 ], [ -89.985743083333347, 29.918739576922967 ] ], [ [ -89.98566, 29.91941 ], [ -89.98565, 29.91951 ] ], [ [ -89.98566, 29.91941 ], [ -89.985625, 29.919406 ] ], [ [ -89.98532, 29.92223 ], [ -89.98565, 29.91951 ] ], [ [ -89.98532, 29.92223 ], [ -89.985346, 29.922261 ] ], [ [ -89.9852, 29.92313 ], [ -89.98532, 29.92223 ] ], [ [ -89.98532, 29.92223 ], [ -89.9852, 29.92313 ] ], [ [ -89.98532, 29.92223 ], [ -89.985266, 29.922213 ] ], [ [ -89.98512, 29.92381 ], [ -89.985229, 29.923823 ] ], [ [ -89.98517, 29.92337 ], [ -89.9852, 29.92313 ] ], [ [ -89.98517, 29.92337 ], [ -89.98512, 29.92376 ] ], [ [ -89.98512, 29.92381 ], [ -89.98517, 29.92337 ] ], [ [ -89.98512, 29.92376 ], [ -89.98511, 29.92388 ] ], [ [ -89.98512, 29.92376 ], [ -89.985073, 29.923752 ] ], [ [ -89.98511, 29.92388 ], [ -89.98512, 29.92381 ] ], [ [ -89.9809, 29.92223 ], [ -89.98286, 29.9231 ], [ -89.982893, 29.92322 ], [ -89.98294, 29.92314 ], [ -89.98509, 29.92406 ], [ -89.98511, 29.92388 ] ], [ [ -89.98511, 29.92388 ], [ -89.98304, 29.92298 ] ], [ [ -89.98304, 29.92298 ], [ -89.983061, 29.922948 ] ], [ [ -89.98304, 29.92298 ], [ -89.98098, 29.92207 ] ], [ [ -89.98098, 29.92207 ], [ -89.981039, 29.922052 ] ], [ [ -89.98098, 29.92207 ], [ -89.97933, 29.92134 ] ], [ [ -89.9809, 29.92223 ], [ -89.980876, 29.922273 ] ], [ [ -89.98001, 29.92185 ], [ -89.9809, 29.92223 ] ], [ [ -89.98001, 29.92185 ], [ -89.979963, 29.921869 ] ], [ [ -89.97701, 29.92031 ], [ -89.97689, 29.92026 ], [ -89.97686, 29.92046 ], [ -89.98001, 29.92185 ] ], [ [ -89.97933, 29.92134 ], [ -89.979349, 29.921309 ] ], [ [ -89.97933, 29.92134 ], [ -89.97701, 29.92031 ] ], [ [ -89.97701, 29.92031 ], [ -89.977016, 29.920292 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "32", "agency_id": "1", "route_short_name": "32", "route_long_name": "Leonidas-Treme", "route_type": 3, "route_color": "#8fd1c5", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.13274, 29.9446 ], [ -90.132783, 29.944638 ] ], [ [ -90.13123, 29.94602 ], [ -90.13274, 29.9446 ] ], [ [ -90.13274, 29.9446 ], [ -90.1345, 29.94295 ], [ -90.134421, 29.94285 ], [ -90.13432, 29.94278 ], [ -90.13271, 29.94431 ] ], [ [ -90.13271, 29.94431 ], [ -90.13116, 29.94573 ] ], [ [ -90.13271, 29.94431 ], [ -90.132659, 29.944272 ] ], [ [ -90.13123, 29.94602 ], [ -90.131257, 29.946042 ] ], [ [ -90.1297, 29.94743 ], [ -90.13123, 29.94602 ] ], [ [ -90.13116, 29.94573 ], [ -90.12968, 29.94712 ] ], [ [ -90.13116, 29.94573 ], [ -90.131134, 29.945708 ] ], [ [ -90.13103, 29.95352 ], [ -90.12952, 29.95494 ] ], [ [ -90.13079, 29.95082 ], [ -90.13247, 29.95217 ], [ -90.13103, 29.95352 ] ], [ [ -90.13103, 29.95352 ], [ -90.130974, 29.953475 ] ], [ [ -90.13079, 29.95082 ], [ -90.130759, 29.950848 ] ], [ [ -90.12908, 29.94943 ], [ -90.13079, 29.95082 ] ], [ [ -90.1297, 29.94743 ], [ -90.129743, 29.947465 ] ], [ [ -90.1284, 29.94866 ], [ -90.1297, 29.94743 ] ], [ [ -90.12968, 29.94712 ], [ -90.1281, 29.94861 ], [ -90.12828, 29.94877 ] ], [ [ -90.12968, 29.94712 ], [ -90.129633, 29.94709 ] ], [ [ -90.12952, 29.95494 ], [ -90.12801, 29.95636 ] ], [ [ -90.12952, 29.95494 ], [ -90.129466, 29.954893 ] ], [ [ -90.12908, 29.94943 ], [ -90.129055, 29.949458 ] ], [ [ -90.12828, 29.94877 ], [ -90.12908, 29.94943 ] ], [ [ -90.1284, 29.94866 ], [ -90.128438, 29.948695 ] ], [ [ -90.12828, 29.94877 ], [ -90.1284, 29.94866 ] ], [ [ -90.120680161977006, 29.9558654287015 ], [ -90.12828, 29.94877 ] ], [ [ -90.12801, 29.95636 ], [ -90.1265, 29.95777 ] ], [ [ -90.12801, 29.95636 ], [ -90.127944, 29.95631 ] ], [ [ -90.1265, 29.95777 ], [ -90.124896, 29.959262 ], [ -90.123581, 29.95821 ] ], [ [ -90.1265, 29.95777 ], [ -90.126454, 29.957727 ] ], [ [ -90.075818603247441, 29.952257636074805 ], [ -90.075493, 29.952357 ], [ -90.074752, 29.95443 ], [ -90.069947, 29.959814 ], [ -90.069797, 29.960369 ], [ -90.069944, 29.960963 ], [ -90.070313, 29.961381 ], [ -90.070267, 29.961523 ], [ -90.070474, 29.961509 ], [ -90.070756, 29.961876 ], [ -90.071273, 29.963222 ], [ -90.071458, 29.963229 ], [ -90.073052, 29.964298 ], [ -90.073085, 29.964439 ], [ -90.073303, 29.96447 ], [ -90.075668, 29.966157 ], [ -90.075821, 29.966144 ], [ -90.079168, 29.968377 ], [ -90.07922, 29.968528 ], [ -90.079452, 29.968577 ], [ -90.084132, 29.971717 ], [ -90.085074, 29.972456 ], [ -90.085332, 29.972517 ], [ -90.086539, 29.973344 ], [ -90.086574, 29.973476 ], [ -90.086834, 29.97353 ], [ -90.088324, 29.97463 ], [ -90.090576, 29.976037 ], [ -90.09149, 29.97689 ], [ -90.091493, 29.977066 ], [ -90.091732, 29.977048 ], [ -90.093649, 29.978434 ], [ -90.095441, 29.979521 ], [ -90.120462, 29.956061 ], [ -90.124581, 29.959376 ], [ -90.124636, 29.959576 ], [ -90.124891, 29.959268 ], [ -90.123581, 29.95821 ] ], [ [ -90.123581, 29.95821 ], [ -90.123453144867284, 29.958107333439926 ] ], [ [ -90.123581, 29.95821 ], [ -90.123453144867284, 29.958107333439926 ] ], [ [ -90.123453144867284, 29.958107333439926 ], [ -90.123402, 29.95797 ] ], [ [ -90.123453144867284, 29.958107333439926 ], [ -90.123402, 29.95797 ] ], [ [ -90.123402, 29.95797 ], [ -90.123221391869933, 29.957921186991868 ] ], [ [ -90.123402, 29.95797 ], [ -90.123221391869933, 29.957921186991868 ] ], [ [ -90.123221391869933, 29.957921186991868 ], [ -90.120961880828929, 29.956099471502508 ] ], [ [ -90.123221391869933, 29.957921186991868 ], [ -90.121332, 29.956404 ], [ -90.120961880828929, 29.956099471502508 ] ], [ [ -90.120961880828929, 29.956099471502508 ], [ -90.120680161977006, 29.9558654287015 ] ], [ [ -90.120961880828929, 29.956099471502508 ], [ -90.120680161977006, 29.9558654287015 ] ], [ [ -90.120680161977006, 29.9558654287015 ], [ -90.121327, 29.955234 ], [ -90.121158, 29.955085 ], [ -90.112438, 29.963324 ], [ -90.111257, 29.9643 ], [ -90.111282, 29.9644 ], [ -90.110634, 29.965007 ], [ -90.110172, 29.965431 ], [ -90.11007, 29.965395 ], [ -90.110093, 29.965506 ], [ -90.10655, 29.96883 ] ], [ [ -90.10655, 29.96883 ], [ -90.10571, 29.96963 ] ], [ [ -90.10655, 29.96883 ], [ -90.106479, 29.968766 ] ], [ [ -90.10571, 29.96963 ], [ -90.10489, 29.9704 ] ], [ [ -90.10571, 29.96963 ], [ -90.105636, 29.969574 ] ], [ [ -90.10489, 29.9704 ], [ -90.10329, 29.9719 ] ], [ [ -90.10489, 29.9704 ], [ -90.104824, 29.970349 ] ], [ [ -90.10329, 29.9719 ], [ -90.100653, 29.974333 ], [ -90.100561, 29.974299 ], [ -90.100594, 29.974392 ], [ -90.09669, 29.97805 ] ], [ [ -90.10329, 29.9719 ], [ -90.103209, 29.971835 ] ], [ [ -90.09669, 29.97805 ], [ -90.09546, 29.97911 ] ], [ [ -90.09669, 29.97805 ], [ -90.096675, 29.978041 ] ], [ [ -90.09546, 29.97911 ], [ -90.09552, 29.979038 ] ], [ [ -90.09546, 29.97911 ], [ -90.09253, 29.97717 ] ], [ [ -90.09253, 29.97717 ], [ -90.092572, 29.977124 ] ], [ [ -90.09253, 29.97717 ], [ -90.09117, 29.97625 ] ], [ [ -90.09117, 29.97625 ], [ -90.091228, 29.976193 ] ], [ [ -90.09117, 29.97625 ], [ -90.0899, 29.97542 ] ], [ [ -90.0899, 29.97542 ], [ -90.089957, 29.975361 ] ], [ [ -90.0899, 29.97542 ], [ -90.0884, 29.97442 ] ], [ [ -90.0884, 29.97442 ], [ -90.088457, 29.974359 ] ], [ [ -90.0884, 29.97442 ], [ -90.08681, 29.97335 ] ], [ [ -90.08681, 29.97335 ], [ -90.086884, 29.973313 ] ], [ [ -90.08681, 29.97335 ], [ -90.08504, 29.97216 ] ], [ [ -90.08504, 29.97216 ], [ -90.085103, 29.972096 ] ], [ [ -90.08504, 29.97216 ], [ -90.08302, 29.97082 ] ], [ [ -90.08302, 29.97082 ], [ -90.083051, 29.970781 ] ], [ [ -90.08302, 29.97082 ], [ -90.08153, 29.96983 ] ], [ [ -90.08153, 29.96983 ], [ -90.081572, 29.969788 ] ], [ [ -90.08153, 29.96983 ], [ -90.0795, 29.96847 ] ], [ [ -90.0795, 29.96847 ], [ -90.079551, 29.968418 ] ], [ [ -90.0795, 29.96847 ], [ -90.07781, 29.96734 ] ], [ [ -90.07781, 29.96734 ], [ -90.077874, 29.967273 ] ], [ [ -90.07781, 29.96734 ], [ -90.07596, 29.9661 ] ], [ [ -90.07596, 29.9661 ], [ -90.07601, 29.966047 ] ], [ [ -90.07596, 29.9661 ], [ -90.07344, 29.9644 ] ], [ [ -90.074, 29.9557 ], [ -90.07514, 29.95436 ], [ -90.075818603247441, 29.952257636074805 ] ], [ [ -90.075818603247441, 29.952257636074805 ], [ -90.075874, 29.950893 ], [ -90.078325, 29.951809 ], [ -90.077939, 29.953036 ], [ -90.075818603247441, 29.952257636074805 ] ], [ [ -90.074, 29.9557 ], [ -90.074078, 29.955755 ] ], [ [ -90.07198, 29.95798 ], [ -90.074, 29.9557 ] ], [ [ -90.07344, 29.9644 ], [ -90.073489, 29.964347 ] ], [ [ -90.07344, 29.9644 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "114B", "agency_id": "1", "route_short_name": "114B", "route_long_name": "Garden Oaks - Woodland", "route_type": 3, "route_color": "#c0dcc0", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.083126543905621, 29.948432660550488 ], [ -90.083302, 29.94856 ], [ -90.083635, 29.948476 ], [ -90.083946, 29.94816 ], [ -90.08342, 29.94776 ], [ -90.082401, 29.947156 ], [ -90.0815, 29.946459 ], [ -90.078828, 29.944776 ], [ -90.077053, 29.943949 ], [ -90.076928793969799, 29.944118592964792 ] ], [ [ -90.08312, 29.94819 ], [ -90.083467, 29.948287 ], [ -90.083126543905621, 29.948432660550488 ] ], [ [ -90.082809776748107, 29.948214709351298 ], [ -90.083126543905621, 29.948432660550488 ] ], [ [ -90.083126543905621, 29.948432660550488 ], [ -90.082809776748107, 29.948214709351298 ] ], [ [ -90.08312, 29.94819 ], [ -90.08329, 29.9477 ], [ -90.08227, 29.94709 ], [ -90.08086, 29.94617 ], [ -90.076928793969799, 29.944118592964792 ] ], [ [ -90.078410024657487, 29.945380002739693 ], [ -90.08312, 29.94819 ] ], [ [ -90.082809776748107, 29.948214709351298 ], [ -90.082166, 29.947725 ], [ -90.078525396705302, 29.945523111409379 ] ], [ [ -90.078525396705302, 29.945523111409379 ], [ -90.082809776748107, 29.948214709351298 ] ], [ [ -90.078410024657487, 29.945380002739693 ], [ -90.078525396705302, 29.945523111409379 ] ], [ [ -90.078525396705302, 29.945523111409379 ], [ -90.078384507246398, 29.945367253623196 ] ], [ [ -90.078276, 29.945213 ], [ -90.078410024657487, 29.945380002739693 ] ], [ [ -90.078384507246398, 29.945367253623196 ], [ -90.078410024657487, 29.945380002739693 ] ], [ [ -90.078384507246398, 29.945367253623196 ], [ -90.078276, 29.945213 ] ], [ [ -90.07744, 29.94563 ], [ -90.07796, 29.94533 ], [ -90.078384507246398, 29.945367253623196 ] ], [ [ -90.078276, 29.945213 ], [ -90.077992, 29.944807 ], [ -90.076881433224685, 29.944184169381099 ] ], [ [ -90.076824110977398, 29.944263538646585 ], [ -90.077991, 29.94486 ], [ -90.078276, 29.945213 ] ], [ [ -90.07821, 29.94571 ], [ -90.078213, 29.945713 ] ], [ [ -90.07728, 29.94599 ], [ -90.07806, 29.9464 ], [ -90.07832, 29.94591 ], [ -90.07821, 29.94571 ] ], [ [ -90.07821, 29.94571 ], [ -90.07759, 29.9458 ], [ -90.07744, 29.94563 ] ], [ [ -90.07728, 29.94599 ], [ -90.07744, 29.94563 ] ], [ [ -90.07735, 29.95141 ], [ -90.07731, 29.951484 ] ], [ [ -90.07735, 29.95141 ], [ -90.07832, 29.95182 ], [ -90.07713, 29.9556 ], [ -90.07526, 29.95475 ], [ -90.075249, 29.954642 ], [ -90.07399, 29.954199 ], [ -90.07496, 29.95061 ] ], [ [ -90.07546, 29.95078 ], [ -90.07735, 29.95141 ] ], [ [ -90.07613, 29.94694 ], [ -90.07661, 29.94706 ], [ -90.07696, 29.947 ], [ -90.07728, 29.94599 ] ], [ [ -90.076928793969799, 29.944118592964792 ], [ -90.076881433224685, 29.944184169381099 ] ], [ [ -90.076928793969799, 29.944118592964792 ], [ -90.06736, 29.93875 ], [ -90.0661, 29.93818 ], [ -90.06475, 29.93783 ], [ -90.0637, 29.93772 ], [ -90.06114, 29.93772 ], [ -90.04283, 29.93787 ], [ -90.041, 29.93758 ], [ -90.04002, 29.9371 ], [ -90.03937, 29.9366 ], [ -90.03875, 29.93586 ], [ -90.03845, 29.93526 ], [ -90.03817, 29.93376 ], [ -90.038387007125905, 29.930589857482207 ] ], [ [ -90.076881433224685, 29.944184169381099 ], [ -90.076824110977398, 29.944263538646585 ] ], [ [ -90.076881433224685, 29.944184169381099 ], [ -90.071070817204287, 29.940971240143391 ] ], [ [ -90.076824110977398, 29.944263538646585 ], [ -90.075867628918786, 29.945544770953301 ] ], [ [ -90.071070817204287, 29.940971240143391 ], [ -90.076824110977398, 29.944263538646585 ] ], [ [ -90.07613, 29.94694 ], [ -90.076106, 29.947003 ] ], [ [ -90.07559, 29.94845 ], [ -90.07601, 29.94691 ], [ -90.07613, 29.94694 ] ], [ [ -90.075867628918786, 29.945544770953301 ], [ -90.075689997609388, 29.945801922065499 ] ], [ [ -90.075867628918786, 29.945544770953301 ], [ -90.075689997609388, 29.945801922065499 ] ], [ [ -90.037442925373114, 29.93054 ], [ -90.03721, 29.93218 ], [ -90.037306, 29.93232 ], [ -90.037279, 29.934463 ], [ -90.037431, 29.935133 ], [ -90.037822, 29.935965 ], [ -90.038569, 29.936837 ], [ -90.03976, 29.937664 ], [ -90.040728, 29.938143 ], [ -90.042214, 29.938458 ], [ -90.05033, 29.93891 ], [ -90.06408, 29.93881 ], [ -90.06585, 29.93899 ], [ -90.06913, 29.94005 ], [ -90.072563, 29.941875 ], [ -90.074619, 29.943188 ], [ -90.076146, 29.944353 ], [ -90.076259, 29.944761 ], [ -90.075867628918786, 29.945544770953301 ] ], [ [ -90.075689997609388, 29.945801922065499 ], [ -90.07559, 29.94598 ] ], [ [ -90.075689997609388, 29.945801922065499 ], [ -90.07559, 29.94598 ] ], [ [ -90.07559, 29.94845 ], [ -90.07568, 29.948474 ] ], [ [ -90.07559, 29.94598 ], [ -90.07539, 29.94665 ] ], [ [ -90.07496, 29.95061 ], [ -90.07559, 29.94845 ] ], [ [ -90.07546, 29.95078 ], [ -90.075443, 29.950822 ] ], [ [ -90.07496, 29.95061 ], [ -90.07546, 29.95078 ] ], [ [ -90.07539, 29.94665 ], [ -90.07495, 29.94806 ] ], [ [ -90.07539, 29.94665 ], [ -90.075299, 29.946626 ] ], [ [ -90.07495, 29.94806 ], [ -90.07425, 29.95046 ], [ -90.07496, 29.95061 ] ], [ [ -90.07495, 29.94806 ], [ -90.074896, 29.948051 ] ], [ [ -90.068806399456491, 29.939695005434778 ], [ -90.071070817204287, 29.940971240143391 ] ], [ [ -90.071070817204287, 29.940971240143391 ], [ -90.070729, 29.940795 ], [ -90.068806399456491, 29.939695005434778 ] ], [ [ -90.068806399456491, 29.939695005434778 ], [ -90.067404, 29.938932 ], [ -90.066492, 29.938634 ], [ -90.065677, 29.938524 ], [ -90.065272, 29.93851 ], [ -90.064452133614083, 29.9385784781776 ] ], [ [ -90.064452133614083, 29.9385784781776 ], [ -90.065727, 29.938547 ], [ -90.067251, 29.938891 ], [ -90.068806399456491, 29.939695005434778 ] ], [ [ -90.063050877358506, 29.938669396226395 ], [ -90.064452133614083, 29.9385784781776 ] ], [ [ -90.064452133614083, 29.9385784781776 ], [ -90.063050877358506, 29.938669396226395 ] ], [ [ -90.063050877358506, 29.938669396226395 ], [ -90.062209891304292, 29.938717673913004 ] ], [ [ -90.062209891304292, 29.938717673913004 ], [ -90.063050877358506, 29.938669396226395 ] ], [ [ -90.060974674418617, 29.938737906976701 ], [ -90.062209891304292, 29.938717673913004 ] ], [ [ -90.062209891304292, 29.938717673913004 ], [ -90.060974674418617, 29.938737906976701 ] ], [ [ -90.060974674418617, 29.938737906976701 ], [ -90.052662859999984, 29.93880733 ] ], [ [ -90.052662859999984, 29.93880733 ], [ -90.060974674418617, 29.938737906976701 ] ], [ [ -90.052662859999984, 29.93880733 ], [ -90.049616940789491, 29.938744427631597 ] ], [ [ -90.049616940789491, 29.938744427631597 ], [ -90.052662859999984, 29.93880733 ] ], [ [ -90.049616940789491, 29.938744427631597 ], [ -90.048108437499891, 29.9386675 ] ], [ [ -90.048108437499891, 29.9386675 ], [ -90.049087, 29.938733 ], [ -90.049616940789491, 29.938744427631597 ] ], [ [ -90.045995813084104, 29.938546906542093 ], [ -90.048108437499891, 29.9386675 ] ], [ [ -90.048108437499891, 29.9386675 ], [ -90.045995813084104, 29.938546906542093 ] ], [ [ -90.045995813084104, 29.938546906542093 ], [ -90.042670210526296, 29.938336842105279 ] ], [ [ -90.042670210526296, 29.938336842105279 ], [ -90.042886, 29.93838 ], [ -90.045995813084104, 29.938546906542093 ] ], [ [ -90.042302570599801, 29.922877446808201 ], [ -90.042862, 29.9219787205882 ] ], [ [ -90.042302570599801, 29.922877446808201 ], [ -90.042862, 29.9219787205882 ] ], [ [ -90.042862, 29.9219787205882 ], [ -90.042909, 29.921902 ], [ -90.042832918032801, 29.921685622950811 ] ], [ [ -90.042862, 29.9219787205882 ], [ -90.04280188533059, 29.921734983471097 ] ], [ [ -90.04280188533059, 29.921734983471097 ], [ -90.042832918032801, 29.921685622950811 ] ], [ [ -90.042832918032801, 29.921685622950811 ], [ -90.04573, 29.91746 ], [ -90.04713, 29.91585 ], [ -90.0471, 29.9154 ], [ -90.04668, 29.91535 ], [ -90.04626, 29.91573 ], [ -90.042644080996894, 29.921554286604383 ] ], [ [ -90.042832918032801, 29.921685622950811 ], [ -90.042644080996894, 29.921554286604383 ] ], [ [ -90.038387665669404, 29.930576686611786 ], [ -90.03857, 29.92907 ], [ -90.03908, 29.92759 ], [ -90.04280188533059, 29.921734983471097 ] ], [ [ -90.04280188533059, 29.921734983471097 ], [ -90.042515748587604, 29.921649427809175 ] ], [ [ -90.041799911392388, 29.938161582278486 ], [ -90.042670210526296, 29.938336842105279 ] ], [ [ -90.042670210526296, 29.938336842105279 ], [ -90.042234, 29.938292 ], [ -90.041799911392388, 29.938161582278486 ] ], [ [ -90.042644080996894, 29.921554286604383 ], [ -90.042621549295788, 29.921571070422594 ] ], [ [ -90.042644080996894, 29.921554286604383 ], [ -90.042621549295788, 29.921571070422594 ] ], [ [ -90.042621549295788, 29.921571070422594 ], [ -90.04249, 29.92165 ] ], [ [ -90.042621549295788, 29.921571070422594 ], [ -90.042515748587604, 29.921649427809175 ] ], [ [ -90.042515748587604, 29.921649427809175 ], [ -90.04249, 29.92165 ] ], [ [ -90.042515748587604, 29.921649427809175 ], [ -90.042470583333298, 29.921682779761877 ] ], [ [ -90.04249, 29.92165 ], [ -90.042470583333298, 29.921682779761877 ] ], [ [ -90.042470583333298, 29.921682779761877 ], [ -90.04228, 29.921824 ] ], [ [ -90.042470583333298, 29.921682779761877 ], [ -90.04228, 29.921824 ] ], [ [ -90.0413608181819, 29.924384090908895 ], [ -90.042302570599801, 29.922877446808201 ] ], [ [ -90.0413608181819, 29.924384090908895 ], [ -90.042302570599801, 29.922877446808201 ] ], [ [ -90.04228, 29.921824 ], [ -90.042073, 29.921942 ] ], [ [ -90.04228, 29.921824 ], [ -90.042073, 29.921942 ] ], [ [ -90.042073, 29.921942 ], [ -90.042003483333289, 29.922042333333401 ] ], [ [ -90.042073, 29.921942 ], [ -90.042003483333289, 29.922042333333401 ] ], [ [ -90.042003483333289, 29.922042333333401 ], [ -90.041555338983102, 29.922722203389789 ] ], [ [ -90.042003483333289, 29.922042333333401 ], [ -90.041555338983102, 29.922722203389789 ] ], [ [ -90.041799911392388, 29.938161582278486 ], [ -90.04164095593768, 29.938114191832401 ] ], [ [ -90.04164095593768, 29.938114191832401 ], [ -90.041799911392388, 29.938161582278486 ] ], [ [ -90.041486247422682, 29.938054752577305 ], [ -90.04164095593768, 29.938114191832401 ] ], [ [ -90.04164095593768, 29.938114191832401 ], [ -90.041486247422682, 29.938054752577305 ] ], [ [ -90.041555338983102, 29.922722203389789 ], [ -90.041496486486295, 29.92281194594619 ] ], [ [ -90.041555338983102, 29.922722203389789 ], [ -90.041496486486295, 29.92281194594619 ] ], [ [ -90.041496486486295, 29.92281194594619 ], [ -90.041432499999885, 29.922910500000189 ] ], [ [ -90.041496486486295, 29.92281194594619 ], [ -90.041432499999885, 29.922910500000189 ] ], [ [ -90.041486247422682, 29.938054752577305 ], [ -90.040411153210997, 29.937589906422001 ] ], [ [ -90.040411153210997, 29.937589906422001 ], [ -90.041486247422682, 29.938054752577305 ] ], [ [ -90.041432499999885, 29.922910500000189 ], [ -90.04135, 29.923038 ] ], [ [ -90.041432499999885, 29.922910500000189 ], [ -90.04135, 29.923038 ] ], [ [ -90.041203583333299, 29.924635666666692 ], [ -90.0413608181819, 29.924384090908895 ] ], [ [ -90.041203583333299, 29.924635666666692 ], [ -90.0413608181819, 29.924384090908895 ] ], [ [ -90.04135, 29.923038 ], [ -90.04022, 29.92479 ] ], [ [ -90.0395951818182, 29.9272037090909 ], [ -90.041203583333299, 29.924635666666692 ] ], [ [ -90.0395951818182, 29.9272037090909 ], [ -90.041203583333299, 29.924635666666692 ] ], [ [ -90.038734663747817, 29.936208374430809 ], [ -90.039324, 29.936883 ], [ -90.040411153210997, 29.937589906422001 ] ], [ [ -90.040411153210997, 29.937589906422001 ], [ -90.039902, 29.937304 ], [ -90.039279, 29.936851 ], [ -90.038734663747817, 29.936208374430809 ] ], [ [ -90.04022, 29.92479 ], [ -90.03958, 29.92579 ] ], [ [ -90.04022, 29.92479 ], [ -90.040162, 29.924763 ] ], [ [ -90.039776384903305, 29.930460208203378 ], [ -90.039862, 29.930463 ] ], [ [ -90.039811591836695, 29.930043061224495 ], [ -90.039816947368394, 29.929871684210511 ] ], [ [ -90.039811591836695, 29.930043061224495 ], [ -90.039816947368394, 29.929871684210511 ] ], [ [ -90.039816947368394, 29.929871684210511 ], [ -90.039722, 29.9296055 ] ], [ [ -90.039816947368394, 29.929871684210511 ], [ -90.039722, 29.9296055 ] ], [ [ -90.03977, 29.93046 ], [ -90.039811591836695, 29.930043061224495 ] ], [ [ -90.039776384903305, 29.930460208203378 ], [ -90.039811591836695, 29.930043061224495 ] ], [ [ -90.039750081750597, 29.930649509496298 ], [ -90.039776384903305, 29.930460208203378 ] ], [ [ -90.03977, 29.93046 ], [ -90.039776384903305, 29.930460208203378 ] ], [ [ -90.039750081750597, 29.930649509496298 ], [ -90.03977, 29.93046 ] ], [ [ -90.038387007125905, 29.930589857482207 ], [ -90.039750081750597, 29.930649509496298 ] ], [ [ -90.038387665669404, 29.930576686611786 ], [ -90.039750081750597, 29.930649509496298 ] ], [ [ -90.039722, 29.9296055 ], [ -90.039693692307679, 29.929555538461607 ] ], [ [ -90.039722, 29.9296055 ], [ -90.039693692307679, 29.929555538461607 ] ], [ [ -90.039693692307679, 29.929555538461607 ], [ -90.039320445682506, 29.928923025069697 ] ], [ [ -90.039693692307679, 29.929555538461607 ], [ -90.039320445682506, 29.928923025069697 ] ], [ [ -90.039521009900994, 29.927348613861287 ], [ -90.0395951818182, 29.9272037090909 ] ], [ [ -90.039521009900994, 29.927348613861287 ], [ -90.0395951818182, 29.9272037090909 ] ], [ [ -90.03958, 29.92579 ], [ -90.039525, 29.9258725 ] ], [ [ -90.03958, 29.92579 ], [ -90.039525, 29.925758 ] ], [ [ -90.039525, 29.925758 ], [ -90.039215794520501, 29.926395972602691 ] ], [ [ -90.039525, 29.925758 ], [ -90.039525, 29.9258725 ] ], [ [ -90.039525, 29.9258725 ], [ -90.039215794520501, 29.926395972602691 ] ], [ [ -90.039525, 29.9258725 ], [ -90.039219734883702, 29.926415674418593 ] ], [ [ -90.039379419795182, 29.927665529010305 ], [ -90.039521009900994, 29.927348613861287 ] ], [ [ -90.039379419795182, 29.927665529010305 ], [ -90.039521009900994, 29.927348613861287 ] ], [ [ -90.039275886075899, 29.928818481012577 ], [ -90.03923, 29.92869 ], [ -90.03918, 29.92843 ], [ -90.03923, 29.92809 ], [ -90.039379419795182, 29.927665529010305 ] ], [ [ -90.039275886075899, 29.928818481012577 ], [ -90.039198, 29.928393 ], [ -90.039379419795182, 29.927665529010305 ] ], [ [ -90.039320445682506, 29.928923025069697 ], [ -90.039275886075899, 29.928818481012577 ] ], [ [ -90.039320445682506, 29.928923025069697 ], [ -90.039275886075899, 29.928818481012577 ] ], [ [ -90.039219734883702, 29.926415674418593 ], [ -90.038452746987886, 29.927934506024101 ] ], [ [ -90.039219734883702, 29.926415674418593 ], [ -90.039224, 29.926981 ], [ -90.038433, 29.928757 ], [ -90.038007893616992, 29.93057 ] ], [ [ -90.039215794520501, 29.926395972602691 ], [ -90.039219734883702, 29.926415674418593 ] ], [ [ -90.039215794520501, 29.926395972602691 ], [ -90.03894, 29.9269 ], [ -90.038452746987886, 29.927934506024101 ] ], [ [ -90.038734663747817, 29.936208374430809 ], [ -90.038703820115998, 29.936160647969007 ] ], [ [ -90.038703820115998, 29.936160647969007 ], [ -90.038734663747817, 29.936208374430809 ] ], [ [ -90.038366309352597, 29.935557474820207 ], [ -90.038703820115998, 29.936160647969007 ] ], [ [ -90.038703820115998, 29.936160647969007 ], [ -90.038506, 29.935854 ], [ -90.038366309352597, 29.935557474820207 ] ], [ [ -90.038452746987886, 29.927934506024101 ], [ -90.038248516339905, 29.92818984313719 ] ], [ [ -90.038452746987886, 29.927934506024101 ], [ -90.038248516339905, 29.92818984313719 ] ], [ [ -90.038387007125905, 29.930589857482207 ], [ -90.038387665669404, 29.930576686611786 ] ], [ [ -90.0381562, 29.9305783 ], [ -90.038387665669404, 29.930576686611786 ] ], [ [ -90.0381562, 29.9305783 ], [ -90.038387007125905, 29.930589857482207 ] ], [ [ -90.038366309352597, 29.935557474820207 ], [ -90.038163370396106, 29.935129070187582 ] ], [ [ -90.038163370396106, 29.935129070187582 ], [ -90.038366309352597, 29.935557474820207 ] ], [ [ -90.038248516339905, 29.92818984313719 ], [ -90.03652, 29.92922 ], [ -90.03631, 29.92953 ], [ -90.03627, 29.93008 ], [ -90.03601, 29.93031 ], [ -90.03393, 29.93011 ], [ -90.03245, 29.929349 ], [ -90.032199, 29.929449 ], [ -90.032199220338981, 29.929790983050793 ] ], [ [ -90.038248516339905, 29.92818984313719 ], [ -90.037879, 29.928755 ], [ -90.037442925373114, 29.93054 ] ], [ [ -90.037996357565504, 29.934348188503797 ], [ -90.038163370396106, 29.935129070187582 ] ], [ [ -90.038163370396106, 29.935129070187582 ], [ -90.038024, 29.934577 ], [ -90.037996357565504, 29.934348188503797 ] ], [ [ -90.037950753269385, 29.932591325196107 ], [ -90.0381562, 29.9305783 ] ], [ [ -90.038007893616992, 29.93057 ], [ -90.0381562, 29.9305783 ] ], [ [ -90.037442925373114, 29.93054 ], [ -90.038007893616992, 29.93057 ] ], [ [ -90.038007893616992, 29.93057 ], [ -90.037950753269385, 29.932591325196107 ] ], [ [ -90.037996357565504, 29.934348188503797 ], [ -90.037936258083818, 29.932934958083798 ] ], [ [ -90.037936258083818, 29.932934958083798 ], [ -90.037996357565504, 29.934348188503797 ] ], [ [ -90.037936258083818, 29.932934958083798 ], [ -90.037950753269385, 29.932591325196107 ] ], [ [ -90.037950753269385, 29.932591325196107 ], [ -90.037936258083818, 29.932934958083798 ] ], [ [ -90.032199220338981, 29.929790983050793 ], [ -90.03434, 29.93036 ], [ -90.037442925373114, 29.93054 ] ], [ [ -90.032199220338981, 29.929790983050793 ], [ -90.032109, 29.93218 ], [ -90.02994, 29.93204 ], [ -90.027547407355996, 29.930961482303992 ] ], [ [ -90.027549000001585, 29.930935999973798 ], [ -90.027652, 29.929247 ], [ -90.028325, 29.929243 ], [ -90.028899, 29.928471 ], [ -90.03105, 29.92952 ], [ -90.030985, 29.929635 ], [ -90.032199220338981, 29.929790983050793 ] ], [ [ -90.027549000001585, 29.930935999973798 ], [ -90.027547407355996, 29.930961482303992 ] ], [ [ -90.027547407355996, 29.930961482303992 ], [ -90.027549000001585, 29.930935999973798 ] ], [ [ -90.027547407355996, 29.930961482303992 ], [ -90.027458, 29.930912 ], [ -90.027549000001585, 29.930935999973798 ] ], [ [ -90.02754, 29.93108 ], [ -90.027547407355996, 29.930961482303992 ] ], [ [ -90.02742, 29.93103 ], [ -90.02754, 29.93108 ] ], [ [ -90.02754, 29.93108 ], [ -90.027419332591791, 29.931030978865387 ] ], [ [ -90.02742, 29.93103 ], [ -90.027419332591791, 29.931030978865387 ] ], [ [ -90.027060000000404, 29.930885000000181 ], [ -90.02742, 29.93103 ] ], [ [ -90.027419332591791, 29.931030978865387 ], [ -90.02739, 29.931074 ] ], [ [ -90.027419332591791, 29.931030978865387 ], [ -90.027060000000404, 29.930885000000181 ] ], [ [ -90.027060000000404, 29.930885000000181 ], [ -90.0269, 29.93082 ] ], [ [ -90.0269, 29.93082 ], [ -90.027060000000404, 29.930885000000181 ] ], [ [ -90.02549, 29.93073 ], [ -90.0269, 29.93082 ] ], [ [ -90.02549, 29.93073 ], [ -90.02541, 29.93072 ] ], [ [ -90.02482, 29.93069 ], [ -90.02549, 29.93073 ] ], [ [ -90.02541, 29.93072 ], [ -90.025414, 29.930633 ] ], [ [ -90.02541, 29.93072 ], [ -90.02482, 29.93069 ] ], [ [ -90.02193, 29.93058 ], [ -90.02482, 29.93069 ] ], [ [ -90.022586684014883, 29.922400375464704 ], [ -90.022692155080179, 29.9214750855616 ] ], [ [ -90.022692155080179, 29.9214750855616 ], [ -90.022586684014883, 29.922400375464704 ] ], [ [ -90.022692155080179, 29.9214750855616 ], [ -90.02261, 29.92077 ] ], [ [ -90.02261, 29.92077 ], [ -90.022692155080179, 29.9214750855616 ] ], [ [ -90.02256, 29.91876 ], [ -90.02262, 29.918774 ] ], [ [ -90.02259, 29.92069 ], [ -90.02261, 29.92077 ] ], [ [ -90.02259, 29.91866 ], [ -90.02252, 29.91884 ] ], [ [ -90.02256, 29.91876 ], [ -90.02259, 29.91866 ] ], [ [ -90.0214, 29.91852 ], [ -90.02259, 29.91866 ] ], [ [ -90.02254, 29.92045 ], [ -90.02259, 29.92069 ] ], [ [ -90.02259, 29.92069 ], [ -90.022538169934592, 29.920450285947705 ] ], [ [ -90.022586684014883, 29.922400375464704 ], [ -90.02257, 29.92244 ] ], [ [ -90.02258173076919, 29.92257869230771 ], [ -90.022586684014883, 29.922400375464704 ] ], [ [ -90.02258173076919, 29.92257869230771 ], [ -90.02261, 29.92259 ], [ -90.02258, 29.922641 ], [ -90.02258173076919, 29.92257869230771 ] ], [ [ -90.02251, 29.92255 ], [ -90.02258173076919, 29.92257869230771 ] ], [ [ -90.02257, 29.92244 ], [ -90.02251, 29.92255 ] ], [ [ -90.02257, 29.92244 ], [ -90.022454, 29.922398 ] ], [ [ -90.02246, 29.91902 ], [ -90.02256, 29.91876 ] ], [ [ -90.02254, 29.92045 ], [ -90.022538169934592, 29.920450285947705 ] ], [ [ -90.02251, 29.92032 ], [ -90.02254, 29.92045 ] ], [ [ -90.022538169934592, 29.920450285947705 ], [ -90.022412, 29.92047 ] ], [ [ -90.022538169934592, 29.920450285947705 ], [ -90.02251, 29.92032 ] ], [ [ -90.02252, 29.91884 ], [ -90.02246, 29.91902 ] ], [ [ -90.02252, 29.91884 ], [ -90.022433, 29.91882 ] ], [ [ -90.02246, 29.91902 ], [ -90.02237, 29.91951 ], [ -90.02251, 29.92032 ] ], [ [ -90.02251, 29.92255 ], [ -90.02169, 29.92455 ] ], [ [ -90.02193, 29.93058 ], [ -90.022002, 29.930485 ] ], [ [ -90.02184, 29.93058 ], [ -90.02193, 29.93058 ] ], [ [ -90.02193, 29.93058 ], [ -90.021, 29.93055 ] ], [ [ -90.02184, 29.93058 ], [ -90.021837, 29.93063 ] ], [ [ -90.021, 29.93055 ], [ -90.02184, 29.93058 ] ], [ [ -90.02162, 29.92471 ], [ -90.0217, 29.924772 ] ], [ [ -90.02169, 29.92455 ], [ -90.02162, 29.92471 ] ], [ [ -90.02162, 29.92471 ], [ -90.02169, 29.92455 ] ], [ [ -90.02162, 29.92471 ], [ -90.02099, 29.92564 ] ], [ [ -90.02132, 29.92536 ], [ -90.02162, 29.92471 ] ], [ [ -90.02162, 29.92471 ], [ -90.021565, 29.924638 ] ], [ [ -90.020773004987504, 29.918485947630902 ], [ -90.0214, 29.91852 ] ], [ [ -90.0214, 29.91852 ], [ -90.020785, 29.91849 ], [ -90.020773004987504, 29.918485947630902 ] ], [ [ -90.02132, 29.92536 ], [ -90.021393, 29.925386 ] ], [ [ -90.02008, 29.92808 ], [ -90.02041, 29.92696 ], [ -90.02132, 29.92536 ] ], [ [ -90.02046, 29.93051 ], [ -90.021, 29.93055 ] ], [ [ -90.02099, 29.92564 ], [ -90.02009, 29.9274 ] ], [ [ -90.02099, 29.92564 ], [ -90.020897, 29.925605 ] ], [ [ -90.020773004987504, 29.918485947630902 ], [ -90.020497736842117, 29.918392631578893 ] ], [ [ -90.02049, 29.91847 ], [ -90.020773004987504, 29.918485947630902 ] ], [ [ -90.02076, 29.91671 ], [ -90.02056, 29.91726 ], [ -90.0205, 29.91837 ] ], [ [ -90.01828, 29.91385 ], [ -90.01865, 29.91402 ], [ -90.0213, 29.91614 ], [ -90.02076, 29.91671 ] ], [ [ -90.02076, 29.91671 ], [ -90.02069, 29.916673 ] ], [ [ -90.0204979585492, 29.918390414507815 ], [ -90.020586, 29.918395 ] ], [ [ -90.0205, 29.91837 ], [ -90.0204979585492, 29.918390414507815 ] ], [ [ -90.0205, 29.91837 ], [ -90.02041, 29.918369 ] ], [ [ -90.0204979585492, 29.918390414507815 ], [ -90.020497736842117, 29.918392631578893 ] ], [ [ -90.02049, 29.91839 ], [ -90.0204979585492, 29.918390414507815 ] ], [ [ -90.020497736842117, 29.918392631578893 ], [ -90.02049, 29.91847 ] ], [ [ -90.020497736842117, 29.918392631578893 ], [ -90.02049, 29.91839 ] ], [ [ -90.02049, 29.91839 ], [ -90.02049, 29.91847 ] ], [ [ -90.02049, 29.91847 ], [ -90.02039, 29.91991 ] ], [ [ -90.02046, 29.93051 ], [ -90.02023, 29.93049 ] ], [ [ -90.02007, 29.93048 ], [ -90.02046, 29.93051 ] ], [ [ -90.02039, 29.91991 ], [ -90.02015, 29.92187 ], [ -90.01958, 29.92311 ] ], [ [ -90.02039, 29.91991 ], [ -90.020294, 29.919902 ] ], [ [ -90.02023, 29.93049 ], [ -90.02024, 29.930403 ] ], [ [ -90.02023, 29.93049 ], [ -90.02007, 29.93048 ] ], [ [ -90.02008, 29.92808 ], [ -90.020144, 29.928078 ] ], [ [ -90.02009, 29.9274 ], [ -90.01993, 29.92838 ], [ -90.01997, 29.9302 ] ], [ [ -90.02009, 29.9274 ], [ -90.020026, 29.927384 ] ], [ [ -90.02007, 29.93048 ], [ -90.02008, 29.92808 ] ], [ [ -90.01997, 29.9302 ], [ -90.01993, 29.93044 ], [ -90.02007, 29.93048 ] ], [ [ -90.01997, 29.9302 ], [ -90.019907, 29.930197 ] ], [ [ -90.01958, 29.92311 ], [ -90.01924, 29.9236 ], [ -90.01791, 29.92261 ], [ -90.01663, 29.92215 ], [ -90.01471, 29.92093 ] ], [ [ -90.01958, 29.92311 ], [ -90.019472, 29.92306 ] ], [ [ -90.01471, 29.92093 ], [ -90.01514, 29.92055 ], [ -90.015353, 29.920536 ], [ -90.016701, 29.919696 ], [ -90.01739, 29.91879 ], [ -90.017832, 29.915316 ], [ -90.01773, 29.91531 ], [ -90.01783, 29.91376 ], [ -90.01828, 29.91385 ] ], [ [ -90.01828, 29.91385 ], [ -90.018239, 29.913926 ] ], [ [ -90.0132, 29.92454 ], [ -90.01403, 29.92458 ], [ -90.01424, 29.92194 ], [ -90.01434, 29.92146 ], [ -90.01471, 29.92093 ] ], [ [ -90.01471, 29.92093 ], [ -90.01455, 29.92083 ], [ -90.01432, 29.92111 ], [ -90.01402, 29.92189 ] ], [ [ -90.01402, 29.92189 ], [ -90.01385, 29.92408 ], [ -90.01367, 29.92424 ], [ -90.0134, 29.92435 ], [ -90.012876, 29.924242 ], [ -90.01074, 29.92422 ], [ -90.010267, 29.924151 ], [ -90.009848, 29.92393 ], [ -90.008198, 29.923685 ], [ -90.002122, 29.923513 ], [ -89.9941, 29.92074 ], [ -89.992944, 29.920521 ], [ -89.99274766409269, 29.920638151866186 ] ], [ [ -90.01402, 29.92189 ], [ -90.013951, 29.921876 ] ], [ [ -90.0132, 29.92454 ], [ -90.0132, 29.92461 ] ], [ [ -90.01088, 29.92442 ], [ -90.0132, 29.92454 ] ], [ [ -90.009852716606488, 29.924228637184097 ], [ -90.01088, 29.92442 ] ], [ [ -90.009852716606488, 29.924228637184097 ], [ -90.01088, 29.92442 ] ], [ [ -90.009515600079894, 29.924141612864602 ], [ -90.009601, 29.924247 ], [ -90.009852716606488, 29.924228637184097 ] ], [ [ -90.009515600079894, 29.924141612864602 ], [ -90.009852716606488, 29.924228637184097 ] ], [ [ -90.009352209125396, 29.924098517110284 ], [ -90.009515600079894, 29.924141612864602 ] ], [ [ -90.009352209125396, 29.924098517110284 ], [ -90.009515600079894, 29.924141612864602 ] ], [ [ -90.007754, 29.924047 ], [ -90.007991, 29.923953 ], [ -90.009042, 29.924013 ], [ -90.009352209125396, 29.924098517110284 ] ], [ [ -90.007754, 29.924047 ], [ -90.008003, 29.923966 ], [ -90.009352209125396, 29.924098517110284 ] ], [ [ -90.00698, 29.92391 ], [ -90.007625, 29.92394 ], [ -90.007754, 29.924047 ] ], [ [ -90.00698, 29.92391 ], [ -90.007754, 29.924047 ] ], [ [ -89.99274766409269, 29.920638151866186 ], [ -89.993981, 29.920834 ], [ -90.001429, 29.923569 ], [ -90.00698, 29.92391 ] ], [ [ -89.99733, 29.901 ], [ -89.997368, 29.901069 ] ], [ [ -89.99622, 29.90149 ], [ -89.99733, 29.901 ] ], [ [ -89.99733, 29.901 ], [ -89.99822, 29.90089 ], [ -90.000664, 29.901056 ], [ -90.000835, 29.900973 ], [ -90.000846, 29.900817 ], [ -89.999221, 29.900683 ], [ -89.99726, 29.90082 ] ], [ [ -89.99726, 29.90082 ], [ -89.997294, 29.900763 ] ], [ [ -89.99726, 29.90082 ], [ -89.99653, 29.90109 ], [ -89.9954, 29.90185 ] ], [ [ -89.99622, 29.90149 ], [ -89.996262, 29.901543 ] ], [ [ -89.99421, 29.90297 ], [ -89.99622, 29.90149 ] ], [ [ -89.9954, 29.90185 ], [ -89.9938, 29.90304 ] ], [ [ -89.9954, 29.90185 ], [ -89.995351, 29.901799 ] ], [ [ -89.99421, 29.90297 ], [ -89.994232, 29.902996 ] ], [ [ -89.99205, 29.90469 ], [ -89.99197, 29.90461 ], [ -89.99421, 29.90297 ] ], [ [ -89.9938, 29.90304 ], [ -89.992, 29.90439 ] ], [ [ -89.9938, 29.90304 ], [ -89.993741, 29.902986 ] ], [ [ -89.99345, 29.90672 ], [ -89.993544, 29.90671 ] ], [ [ -89.99319, 29.91105 ], [ -89.99322, 29.91058 ], [ -89.993397, 29.910262 ], [ -89.993538, 29.907656 ], [ -89.99343, 29.90765 ], [ -89.99345, 29.90672 ] ], [ [ -89.99345, 29.90672 ], [ -89.99318, 29.90592 ], [ -89.99205, 29.90469 ] ], [ [ -89.99327, 29.90675 ], [ -89.993181, 29.906756 ] ], [ [ -89.99327, 29.90675 ], [ -89.993075, 29.910092 ], [ -89.99319, 29.91105 ] ], [ [ -89.992, 29.90439 ], [ -89.99169, 29.90462 ], [ -89.99288, 29.90584 ], [ -89.99327, 29.90675 ] ], [ [ -89.99317, 29.91134 ], [ -89.99319, 29.91105 ] ], [ [ -89.99319, 29.91105 ], [ -89.99317, 29.91134 ] ], [ [ -89.99317, 29.91134 ], [ -89.992963, 29.912499 ], [ -89.993055930232586, 29.913433069765997 ] ], [ [ -89.993055930232586, 29.913433069765997 ], [ -89.993182, 29.912705 ], [ -89.99317, 29.91134 ] ], [ [ -89.993049, 29.913589 ], [ -89.993055930232586, 29.913433069765997 ] ], [ [ -89.993055930232586, 29.913433069765997 ], [ -89.993049, 29.913589 ] ], [ [ -89.993049, 29.913589 ], [ -89.992894, 29.915068 ], [ -89.9929, 29.916099 ] ], [ [ -89.9929, 29.916099 ], [ -89.993049, 29.913589 ] ], [ [ -89.9929, 29.916099 ], [ -89.9929, 29.91616 ] ], [ [ -89.9929, 29.91616 ], [ -89.99286, 29.91696 ] ], [ [ -89.99286, 29.91696 ], [ -89.9929, 29.91616 ] ], [ [ -89.99286, 29.91696 ], [ -89.992852666666579, 29.917070000001406 ] ], [ [ -89.992852666666579, 29.917070000001406 ], [ -89.99286, 29.91696 ] ], [ [ -89.992827333333395, 29.917438999999582 ], [ -89.992852666666579, 29.917070000001406 ] ], [ [ -89.992852666666579, 29.917070000001406 ], [ -89.992827333333395, 29.917438999999582 ] ], [ [ -89.992827333333395, 29.917438999999582 ], [ -89.99282, 29.917549 ] ], [ [ -89.99282, 29.917549 ], [ -89.992827333333395, 29.917438999999582 ] ], [ [ -89.99282, 29.917549 ], [ -89.99276, 29.918729 ] ], [ [ -89.99276, 29.918729 ], [ -89.992858, 29.918123 ], [ -89.99282, 29.917549 ] ], [ [ -89.99272, 29.91932 ], [ -89.99276, 29.918729 ] ], [ [ -89.99276, 29.918729 ], [ -89.99272, 29.91932 ] ], [ [ -89.99274766409269, 29.920638151866186 ], [ -89.992673404941598, 29.920611851750198 ] ], [ [ -89.992673404941598, 29.920611851750198 ], [ -89.99274766409269, 29.920638151866186 ] ], [ [ -89.992699, 29.919729 ], [ -89.99272, 29.91932 ] ], [ [ -89.99272, 29.91932 ], [ -89.992699, 29.919729 ] ], [ [ -89.992699, 29.919729 ], [ -89.992623, 29.920594 ], [ -89.992673404941598, 29.920611851750198 ] ], [ [ -89.992673404941598, 29.920611851750198 ], [ -89.992699, 29.919729 ] ], [ [ -89.99205, 29.90469 ], [ -89.992102, 29.904651 ] ], [ [ -89.992, 29.90439 ], [ -89.991935, 29.904327 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "201", "agency_id": "1", "route_short_name": "201", "route_long_name": "Kenner Loop", "route_type": 3, "route_color": "#86a7ce", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.27361, 30.02312 ], [ -90.27361, 30.023075 ] ], [ [ -90.27361, 30.02312 ], [ -90.27151, 30.02299 ] ], [ [ -90.27348, 30.02617 ], [ -90.27375, 30.02313 ], [ -90.27361, 30.02312 ] ], [ [ -90.27348, 30.02617 ], [ -90.273576, 30.026229 ] ], [ [ -90.27322, 30.02909 ], [ -90.27348, 30.02617 ] ], [ [ -90.27322, 30.02909 ], [ -90.2733, 30.029142 ] ], [ [ -90.27296, 30.03199 ], [ -90.27322, 30.02909 ] ], [ [ -90.27296, 30.03199 ], [ -90.273045, 30.032054 ] ], [ [ -90.27268, 30.03511 ], [ -90.27296, 30.03199 ] ], [ [ -90.27268, 30.03511 ], [ -90.272792, 30.03512 ] ], [ [ -90.27242, 30.03794 ], [ -90.27268, 30.03511 ] ], [ [ -90.27242, 30.03794 ], [ -90.272516, 30.037996 ] ], [ [ -90.27217, 30.04085 ], [ -90.27242, 30.03794 ] ], [ [ -90.27217, 30.04085 ], [ -90.272272, 30.040917 ] ], [ [ -90.26704, 30.04353 ], [ -90.27194, 30.0435 ], [ -90.27217, 30.04085 ] ], [ [ -90.27151, 30.02299 ], [ -90.271564, 30.022899 ] ], [ [ -90.27151, 30.02299 ], [ -90.26961, 30.02287 ], [ -90.26962, 30.02277 ] ], [ [ -90.26986, 30.02009 ], [ -90.27022, 30.01664 ], [ -90.27, 30.01546 ] ], [ [ -90.27, 30.01546 ], [ -90.26939, 30.01445 ], [ -90.26832, 30.01326 ] ], [ [ -90.27, 30.01546 ], [ -90.269995, 30.015457 ] ], [ [ -90.26986, 30.02009 ], [ -90.269984, 30.020161 ] ], [ [ -90.26962, 30.02277 ], [ -90.26986, 30.02009 ] ], [ [ -90.26962, 30.02277 ], [ -90.269674, 30.022777 ] ], [ [ -90.26832, 30.01326 ], [ -90.268523, 30.013313 ] ], [ [ -90.26832, 30.01326 ], [ -90.26715, 30.01181 ] ], [ [ -90.26715, 30.01181 ], [ -90.267359, 30.01187 ] ], [ [ -90.26715, 30.01181 ], [ -90.26668, 30.01025 ] ], [ [ -90.26704, 30.04353 ], [ -90.267042, 30.043556 ] ], [ [ -90.26236, 30.04269 ], [ -90.26465, 30.04354 ], [ -90.26704, 30.04353 ] ], [ [ -90.26668, 30.01025 ], [ -90.266691, 30.010252 ] ], [ [ -90.26668, 30.01025 ], [ -90.266267, 30.0061 ], [ -90.266371, 30.005658 ], [ -90.265938, 30.004342 ], [ -90.265686, 30.002181 ], [ -90.265423, 30.001726 ], [ -90.264688, 30.001201 ], [ -90.262108, 30.000751 ], [ -90.261405, 30.000509 ], [ -90.260633, 29.999942 ], [ -90.259984, 29.999273 ], [ -90.259662, 29.998558 ], [ -90.259522, 29.997043 ], [ -90.259088, 29.996481 ], [ -90.258707, 29.996272 ], [ -90.257141, 29.995924 ], [ -90.256449, 29.995914 ], [ -90.256078, 29.996007 ], [ -90.255708, 29.996433 ], [ -90.255743, 29.996841 ] ], [ [ -90.266222712328997, 30.010076356163989 ], [ -90.26634, 30.01007 ] ], [ [ -90.26634, 30.01007 ], [ -90.26636, 30.01026 ], [ -90.26592, 30.0103 ] ], [ [ -90.26631, 30.00985 ], [ -90.26634, 30.01007 ] ], [ [ -90.26631, 30.00985 ], [ -90.266222712328997, 30.010076356163989 ] ], [ [ -90.2644, 30.00574 ], [ -90.2659, 30.00563 ], [ -90.26631, 30.00985 ] ], [ [ -90.266222712328997, 30.010076356163989 ], [ -90.266192, 30.010156 ] ], [ [ -90.26615, 30.01011 ], [ -90.266222712328997, 30.010076356163989 ] ], [ [ -90.26615, 30.01011 ], [ -90.266192, 30.010156 ] ], [ [ -90.266192, 30.010156 ], [ -90.26598, 30.01015 ] ], [ [ -90.26598, 30.01015 ], [ -90.26615, 30.01011 ] ], [ [ -90.265915029354005, 30.010262720157002 ], [ -90.26598, 30.01015 ] ], [ [ -90.26598, 30.01015 ], [ -90.265915029354005, 30.010262720157002 ] ], [ [ -90.26592, 30.0103 ], [ -90.26556, 30.01032 ] ], [ [ -90.26592, 30.0103 ], [ -90.265915029354005, 30.010262720157002 ] ], [ [ -90.265915029354005, 30.010262720157002 ], [ -90.26556, 30.01032 ] ], [ [ -90.265844109892981, 30.005115693754984 ], [ -90.265705465337007, 30.00533491781799 ] ], [ [ -90.265844109892981, 30.005115693754984 ], [ -90.265705465337007, 30.00533491781799 ] ], [ [ -90.265704657686001, 30.003879664024989 ], [ -90.265844109892981, 30.005115693754984 ] ], [ [ -90.265704657686001, 30.003879664024989 ], [ -90.265681, 30.004202 ], [ -90.265844109892981, 30.005115693754984 ] ], [ [ -90.265705465337007, 30.00533491781799 ], [ -90.265523298643004, 30.005467171946002 ] ], [ [ -90.265705465337007, 30.00533491781799 ], [ -90.265523298643004, 30.005467171946002 ] ], [ [ -90.265647415730001, 30.002595820225 ], [ -90.265704657686001, 30.003879664024989 ] ], [ [ -90.265647415730001, 30.002595820225 ], [ -90.265704657686001, 30.003879664024989 ] ], [ [ -90.265506694468002, 30.002197705531984 ], [ -90.265647415730001, 30.002595820225 ] ], [ [ -90.265506694468002, 30.002197705531984 ], [ -90.265647415730001, 30.002595820225 ] ], [ [ -90.26556, 30.01032 ], [ -90.26282, 30.01054 ] ], [ [ -90.265523298643004, 30.005467171946002 ], [ -90.265466546769986, 30.005488791706991 ] ], [ [ -90.265523298643004, 30.005467171946002 ], [ -90.265466546769986, 30.005488791706991 ] ], [ [ -90.265167609756006, 30.001705487804987 ], [ -90.265506694468002, 30.002197705531984 ] ], [ [ -90.265167609756006, 30.001705487804987 ], [ -90.265506694468002, 30.002197705531984 ] ], [ [ -90.265466546769986, 30.005488791706991 ], [ -90.264481, 30.005481 ] ], [ [ -90.265466546769986, 30.005488791706991 ], [ -90.264481, 30.005481 ] ], [ [ -90.26528, 30.02278 ], [ -90.26503, 30.02554 ] ], [ [ -90.26342, 30.02258 ], [ -90.26529, 30.0227 ], [ -90.26528, 30.02278 ] ], [ [ -90.26528, 30.02278 ], [ -90.265243, 30.022778 ] ], [ [ -90.263544287334994, 30.001093423439993 ], [ -90.264808, 30.001418 ], [ -90.265167609756006, 30.001705487804987 ] ], [ [ -90.263544287334994, 30.001093423439993 ], [ -90.264731, 30.001401 ], [ -90.265167609756006, 30.001705487804987 ] ], [ [ -90.26503, 30.02554 ], [ -90.26475, 30.02843 ] ], [ [ -90.26503, 30.02554 ], [ -90.264935, 30.025529 ] ], [ [ -90.26475, 30.02843 ], [ -90.26448, 30.03133 ] ], [ [ -90.26475, 30.02843 ], [ -90.264669, 30.028423 ] ], [ [ -90.264481, 30.005481 ], [ -90.262521, 30.005647 ] ], [ [ -90.264481, 30.005481 ], [ -90.26253, 30.00573 ] ], [ [ -90.26448, 30.03133 ], [ -90.264367, 30.03271 ] ], [ [ -90.26448, 30.03133 ], [ -90.264455, 30.031326 ] ], [ [ -90.2643, 30.00575 ], [ -90.2644, 30.00574 ] ], [ [ -90.264308, 30.005807 ], [ -90.2644, 30.00574 ] ], [ [ -90.264367, 30.03271 ], [ -90.264128, 30.034275 ] ], [ [ -90.264367, 30.03271 ], [ -90.264128, 30.034275 ] ], [ [ -90.262038529915003, 30.005920367520996 ], [ -90.264308, 30.005807 ] ], [ [ -90.2643, 30.00575 ], [ -90.264308, 30.005807 ] ], [ [ -90.262038529915003, 30.005920367520996 ], [ -90.2643, 30.00575 ] ], [ [ -90.264128, 30.034275 ], [ -90.264064, 30.03614 ] ], [ [ -90.264128, 30.034275 ], [ -90.264185, 30.034833 ], [ -90.264064, 30.03614 ] ], [ [ -90.264064, 30.03614 ], [ -90.26396, 30.03726 ] ], [ [ -90.26396, 30.03726 ], [ -90.26372, 30.04017 ] ], [ [ -90.26396, 30.03726 ], [ -90.263915, 30.037259 ] ], [ [ -90.26372, 30.04017 ], [ -90.2635, 30.041 ], [ -90.26236, 30.04269 ] ], [ [ -90.26372, 30.04017 ], [ -90.263639, 30.040163 ] ], [ [ -90.262867, 30.00096 ], [ -90.263544287334994, 30.001093423439993 ] ], [ [ -90.262867, 30.00096 ], [ -90.263544287334994, 30.001093423439993 ] ], [ [ -90.26342, 30.02258 ], [ -90.263415, 30.022664 ] ], [ [ -90.26212, 30.0225 ], [ -90.26342, 30.02258 ] ], [ [ -90.261561263922999, 30.00092987893499 ], [ -90.262867, 30.00096 ] ], [ [ -90.261561263922999, 30.00092987893499 ], [ -90.262867, 30.00096 ] ], [ [ -90.26282, 30.01054 ], [ -90.26084, 30.01069 ] ], [ [ -90.26282, 30.01054 ], [ -90.262812, 30.010448 ] ], [ [ -90.26253, 30.00573 ], [ -90.25969, 30.00595 ] ], [ [ -90.26253, 30.00573 ], [ -90.262521, 30.005647 ] ], [ [ -90.262521, 30.005647 ], [ -90.259763, 30.005854 ] ], [ [ -90.26236, 30.04269 ], [ -90.262321, 30.042631 ] ], [ [ -90.26212, 30.0225 ], [ -90.262117, 30.022574 ] ], [ [ -90.25892, 30.02194 ], [ -90.26095, 30.02243 ], [ -90.26212, 30.0225 ] ], [ [ -90.261714946601984, 30.005947111649977 ], [ -90.262038529915003, 30.005920367520996 ] ], [ [ -90.261714946601984, 30.005947111649977 ], [ -90.262038529915003, 30.005920367520996 ] ], [ [ -90.25975, 30.0061 ], [ -90.261714946601984, 30.005947111649977 ] ], [ [ -90.259715, 30.006278 ], [ -90.261714946601984, 30.005947111649977 ] ], [ [ -90.26146145669999, 30.000941796214992 ], [ -90.261561263922999, 30.00092987893499 ] ], [ [ -90.26146145669999, 30.000941796214992 ], [ -90.261561263922999, 30.00092987893499 ] ], [ [ -90.261165829898999, 30.001129468432975 ], [ -90.26146145669999, 30.000941796214992 ] ], [ [ -90.261165829898999, 30.001129468432975 ], [ -90.26146145669999, 30.000941796214992 ] ], [ [ -90.260953489563988, 30.001183849146003 ], [ -90.261165829898999, 30.001129468432975 ] ], [ [ -90.260953489563988, 30.001183849146003 ], [ -90.261165829898999, 30.001129468432975 ] ], [ [ -90.260733890997997, 30.001201787443009 ], [ -90.260953489563988, 30.001183849146003 ] ], [ [ -90.260733890997997, 30.001201787443009 ], [ -90.260953489563988, 30.001183849146003 ] ], [ [ -90.26084, 30.01069 ], [ -90.260914, 30.010587 ] ], [ [ -90.26084, 30.01069 ], [ -90.25821, 30.0109 ] ], [ [ -90.260547621558018, 30.001083929417991 ], [ -90.260733890997997, 30.001201787443009 ] ], [ [ -90.260547621558018, 30.001083929417991 ], [ -90.260733890997997, 30.001201787443009 ] ], [ [ -90.260692910082994, 30.000340636096993 ], [ -90.260664060568999, 30.000474723114987 ] ], [ [ -90.260692910082994, 30.000340636096993 ], [ -90.260664060568999, 30.000474723114987 ] ], [ [ -90.260676167159986, 30.000249217456009 ], [ -90.260692910082994, 30.000340636096993 ] ], [ [ -90.260676167159986, 30.000249217456009 ], [ -90.260692910082994, 30.000340636096993 ] ], [ [ -90.260191737983988, 29.999699584495996 ], [ -90.260676167159986, 30.000249217456009 ] ], [ [ -90.260191737983988, 29.999699584495996 ], [ -90.260676167159986, 30.000249217456009 ] ], [ [ -90.260664060568999, 30.000474723114987 ], [ -90.260452060367996, 30.000720946623002 ] ], [ [ -90.260664060568999, 30.000474723114987 ], [ -90.260452060367996, 30.000720946623002 ] ], [ [ -90.260453689879981, 30.000996602309986 ], [ -90.260547621558018, 30.001083929417991 ] ], [ [ -90.260453689879981, 30.000996602309986 ], [ -90.260547621558018, 30.001083929417991 ] ], [ [ -90.260435563333004, 30.000868581578978 ], [ -90.260453689879981, 30.000996602309986 ] ], [ [ -90.260435563333004, 30.000868581578978 ], [ -90.260453689879981, 30.000996602309986 ] ], [ [ -90.260452060367996, 30.000720946623002 ], [ -90.260435563333004, 30.000868581578978 ] ], [ [ -90.260452060367996, 30.000720946623002 ], [ -90.260435563333004, 30.000868581578978 ] ], [ [ -90.259902932488984, 29.999375654007995 ], [ -90.260191737983988, 29.999699584495996 ] ], [ [ -90.259902932488984, 29.999375654007995 ], [ -90.260191737983988, 29.999699584495996 ] ], [ [ -90.259794779309999, 29.999237144828012 ], [ -90.259902932488984, 29.999375654007995 ] ], [ [ -90.259794779309999, 29.999237144828012 ], [ -90.259902932488984, 29.999375654007995 ] ], [ [ -90.259648767358982, 29.998981959914005 ], [ -90.259794779309999, 29.999237144828012 ] ], [ [ -90.259648767358982, 29.998981959914005 ], [ -90.259794779309999, 29.999237144828012 ] ], [ [ -90.259680054597993, 30.005860491378982 ], [ -90.259763, 30.005854 ] ], [ [ -90.259763, 30.005854 ], [ -90.259680054597993, 30.005860491378982 ] ], [ [ -90.25574, 30.00641 ], [ -90.25975, 30.0061 ] ], [ [ -90.25975, 30.0061 ], [ -90.259715, 30.006278 ] ], [ [ -90.255742, 30.006466 ], [ -90.259715, 30.006278 ] ], [ [ -90.25969, 30.00595 ], [ -90.25608, 30.00623 ] ], [ [ -90.25969, 30.00595 ], [ -90.259680054597993, 30.005860491378982 ] ], [ [ -90.259680054597993, 30.005860491378982 ], [ -90.256072, 30.006157 ] ], [ [ -90.259627886259992, 29.998926953593994 ], [ -90.259648767358982, 29.998981959914005 ] ], [ [ -90.259627886259992, 29.998926953593994 ], [ -90.259648767358982, 29.998981959914005 ] ], [ [ -90.259537399652004, 29.998605450043012 ], [ -90.259627886259992, 29.998926953593994 ] ], [ [ -90.259537399652004, 29.998605450043012 ], [ -90.259627886259992, 29.998926953593994 ] ], [ [ -90.259474133996989, 29.998212473631977 ], [ -90.259537399652004, 29.998605450043012 ] ], [ [ -90.259474133996989, 29.998212473631977 ], [ -90.259482, 29.998408 ], [ -90.259537399652004, 29.998605450043012 ] ], [ [ -90.259422224902991, 29.997649771797981 ], [ -90.259474133996989, 29.998212473631977 ] ], [ [ -90.259422224902991, 29.997649771797981 ], [ -90.259474133996989, 29.998212473631977 ] ], [ [ -90.259364787774985, 29.997542471668002 ], [ -90.259422224902991, 29.997649771797981 ] ], [ [ -90.259364787774985, 29.997542471668002 ], [ -90.259422224902991, 29.997649771797981 ] ], [ [ -90.259363609702007, 29.997540732083998 ], [ -90.259364787774985, 29.997542471668002 ] ], [ [ -90.259363609702007, 29.997540732083998 ], [ -90.259364787774985, 29.997542471668002 ] ], [ [ -90.25920256166998, 29.997430182162994 ], [ -90.259363609702007, 29.997540732083998 ] ], [ [ -90.25920256166998, 29.997430182162994 ], [ -90.259363609702007, 29.997540732083998 ] ], [ [ -90.259026963338002, 29.997372685208983 ], [ -90.25920256166998, 29.997430182162994 ] ], [ [ -90.259026963338002, 29.997372685208983 ], [ -90.25920256166998, 29.997430182162994 ] ], [ [ -90.257247157894014, 29.997259421052984 ], [ -90.259026963338002, 29.997372685208983 ] ], [ [ -90.257247157894014, 29.997259421052984 ], [ -90.259026963338002, 29.997372685208983 ] ], [ [ -90.25892, 30.02194 ], [ -90.258895, 30.022009 ] ], [ [ -90.25583, 30.02117 ], [ -90.25892, 30.02194 ] ], [ [ -90.25821, 30.0109 ], [ -90.25629, 30.01105 ] ], [ [ -90.25821, 30.0109 ], [ -90.258197, 30.010812 ] ], [ [ -90.256141603954987, 29.997189921432003 ], [ -90.257247157894014, 29.997259421052984 ] ], [ [ -90.256141603954987, 29.997189921432003 ], [ -90.257247157894014, 29.997259421052984 ] ], [ [ -90.25629, 30.01105 ], [ -90.256321, 30.010995 ] ], [ [ -90.25629, 30.01105 ], [ -90.25446, 30.01119 ] ], [ [ -90.256001260196996, 29.997139094232992 ], [ -90.256141603954987, 29.997189921432003 ] ], [ [ -90.256001260196996, 29.997139094232992 ], [ -90.256141603954987, 29.997189921432003 ] ], [ [ -90.25608, 30.00623 ], [ -90.2541, 30.00639 ] ], [ [ -90.25608, 30.00623 ], [ -90.256072, 30.006157 ] ], [ [ -90.256072, 30.006157 ], [ -90.254091, 30.006305 ] ], [ [ -90.255799442577995, 29.997019537741988 ], [ -90.256001260196996, 29.997139094232992 ] ], [ [ -90.255799442577995, 29.997019537741988 ], [ -90.256001260196996, 29.997139094232992 ] ], [ [ -90.25583, 30.02117 ], [ -90.255806, 30.021245 ] ], [ [ -90.25359, 30.02087 ], [ -90.25583, 30.02117 ] ], [ [ -90.255743, 29.996841 ], [ -90.255799442577995, 29.997019537741988 ] ], [ [ -90.255743, 29.996841 ], [ -90.255799442577995, 29.997019537741988 ] ], [ [ -90.25574, 30.00641 ], [ -90.255742, 30.006466 ] ], [ [ -90.255543, 30.006428 ], [ -90.255742, 30.006466 ] ], [ [ -90.255543, 30.006428 ], [ -90.25574, 30.00641 ] ], [ [ -90.25495, 30.00648 ], [ -90.255543, 30.006428 ] ], [ [ -90.253523037329984, 30.006564813347993 ], [ -90.25495, 30.00648 ] ], [ [ -90.253523037329984, 30.006564813347993 ], [ -90.25352, 30.00658 ], [ -90.25495, 30.00648 ] ], [ [ -90.25446, 30.01119 ], [ -90.254506, 30.011106 ] ], [ [ -90.25446, 30.01119 ], [ -90.25273, 30.01133 ] ], [ [ -90.2541, 30.00639 ], [ -90.253564134615004, 30.006502692307993 ] ], [ [ -90.2541, 30.00639 ], [ -90.254091, 30.006305 ] ], [ [ -90.254091, 30.006305 ], [ -90.253605, 30.006445 ], [ -90.253564134615004, 30.006502692307993 ] ], [ [ -90.25359, 30.02087 ], [ -90.253583, 30.020934 ] ], [ [ -90.25166, 30.02072 ], [ -90.25359, 30.02087 ] ], [ [ -90.253564134615004, 30.006502692307993 ], [ -90.253524180327986, 30.006559098360999 ] ], [ [ -90.253564134615004, 30.006502692307993 ], [ -90.253524180327986, 30.006559098360999 ] ], [ [ -90.253524180327986, 30.006559098360999 ], [ -90.253523037329984, 30.006564813347993 ] ], [ [ -90.253524180327986, 30.006559098360999 ], [ -90.253523037329984, 30.006564813347993 ] ], [ [ -90.25273, 30.01133 ], [ -90.25091, 30.01148 ] ], [ [ -90.25273, 30.01133 ], [ -90.252722, 30.011244 ] ], [ [ -90.250779, 30.020727 ], [ -90.25166, 30.02072 ] ], [ [ -90.250779, 30.020727 ], [ -90.25136, 30.020693 ], [ -90.25166, 30.02072 ] ], [ [ -90.25091, 30.01148 ], [ -90.2491, 30.01162 ] ], [ [ -90.25091, 30.01148 ], [ -90.250907, 30.011399 ] ], [ [ -90.24848, 30.020447 ], [ -90.250779, 30.020727 ] ], [ [ -90.24848, 30.020447 ], [ -90.250779, 30.020727 ] ], [ [ -90.2491, 30.01162 ], [ -90.24568, 30.0118 ] ], [ [ -90.2491, 30.01162 ], [ -90.249093, 30.011573 ] ], [ [ -90.24609, 30.02033 ], [ -90.24848, 30.020447 ] ], [ [ -90.24725, 29.97528 ], [ -90.247787, 29.973596 ] ], [ [ -90.24775, 29.97349 ], [ -90.247787, 29.973596 ] ], [ [ -90.247787, 29.973596 ], [ -90.24775, 29.97349 ] ], [ [ -90.24775, 29.97349 ], [ -90.24698, 29.97333 ] ], [ [ -90.24698, 29.97333 ], [ -90.24775, 29.97349 ] ], [ [ -90.24725, 29.97528 ], [ -90.247314, 29.975293 ] ], [ [ -90.24615, 29.97512 ], [ -90.24725, 29.97528 ] ], [ [ -90.24674, 29.97328 ], [ -90.24698, 29.97333 ] ], [ [ -90.24615, 29.97512 ], [ -90.24664, 29.9733 ], [ -90.24674, 29.97328 ] ], [ [ -90.24674, 29.97328 ], [ -90.24658, 29.97321 ], [ -90.24578, 29.97624 ] ], [ [ -90.24608, 29.97537 ], [ -90.24615, 29.97512 ] ], [ [ -90.24426, 30.02022 ], [ -90.24609, 30.02033 ] ], [ [ -90.24609, 30.02033 ], [ -90.246085, 30.020361 ] ], [ [ -90.24593, 29.97593 ], [ -90.24608, 29.97537 ] ], [ [ -90.24593, 29.97593 ], [ -90.24608, 29.97537 ] ], [ [ -90.24584, 29.97625 ], [ -90.24593, 29.97593 ] ], [ [ -90.245806666666994, 29.9763 ], [ -90.24584, 29.97625 ] ], [ [ -90.245806666666994, 29.9763 ], [ -90.24584, 29.97625 ] ], [ [ -90.24578, 29.97634 ], [ -90.245806666666994, 29.9763 ] ], [ [ -90.24572, 29.97656 ], [ -90.245806666666994, 29.9763 ] ], [ [ -90.24568, 30.0118 ], [ -90.245785, 30.011792 ] ], [ [ -90.24578, 29.97624 ], [ -90.24578, 29.97634 ] ], [ [ -90.24578, 29.97624 ], [ -90.24559, 29.97622 ], [ -90.24558, 29.976323 ] ], [ [ -90.24572, 29.97656 ], [ -90.24578, 29.97634 ] ], [ [ -90.24563, 29.97692 ], [ -90.24572, 29.97656 ] ], [ [ -90.24568, 30.0118 ], [ -90.24589, 30.01257 ], [ -90.245736, 30.014197 ], [ -90.2456, 30.01446 ] ], [ [ -90.24561, 29.97699 ], [ -90.245679, 29.977007 ] ], [ [ -90.24563, 29.97692 ], [ -90.245583, 29.977083 ], [ -90.24556, 29.977165000000991 ] ], [ [ -90.24561, 29.97699 ], [ -90.24563, 29.97692 ] ], [ [ -90.24556, 29.977165000000991 ], [ -90.24561, 29.97699 ] ], [ [ -90.2456, 30.01446 ], [ -90.245609, 30.014362 ] ], [ [ -90.2456, 30.01446 ], [ -90.24485, 30.0144 ] ], [ [ -90.24549, 29.97741 ], [ -90.24556, 29.977165000000991 ] ], [ [ -90.24556, 29.977165000000991 ], [ -90.24549, 29.97741 ] ], [ [ -90.24549, 29.97741 ], [ -90.24542, 29.977655 ] ], [ [ -90.24542, 29.977655 ], [ -90.24549, 29.97741 ] ], [ [ -90.24535, 29.9779 ], [ -90.24542, 29.977655 ] ], [ [ -90.24542, 29.977655 ], [ -90.24535, 29.9779 ] ], [ [ -90.24512, 29.97878 ], [ -90.24535, 29.9779 ] ], [ [ -90.24512, 29.97878 ], [ -90.24473, 29.97971 ] ], [ [ -90.24483, 29.97991 ], [ -90.24512, 29.97878 ] ], [ [ -90.24485, 30.0144 ], [ -90.244862, 30.014322 ] ], [ [ -90.24483, 29.97991 ], [ -90.244853, 29.979932 ] ], [ [ -90.24485, 30.0144 ], [ -90.244382, 30.01438 ] ], [ [ -90.24406, 29.98272 ], [ -90.24483, 29.97991 ] ], [ [ -90.24473, 29.97971 ], [ -90.24394, 29.98253 ] ], [ [ -90.24473, 29.97971 ], [ -90.244633, 29.979681 ] ], [ [ -90.244382, 30.01438 ], [ -90.243076, 30.014252 ] ], [ [ -90.244382, 30.01438 ], [ -90.244188, 30.01437 ], [ -90.243076, 30.014252 ] ], [ [ -90.24426, 30.02022 ], [ -90.244175, 30.020301 ] ], [ [ -90.24126, 30.02003 ], [ -90.24426, 30.02022 ] ], [ [ -90.24406, 29.98272 ], [ -90.244151, 29.982802 ] ], [ [ -90.2435, 29.98473 ], [ -90.24406, 29.98272 ] ], [ [ -90.24394, 29.98253 ], [ -90.24342, 29.98443 ] ], [ [ -90.24394, 29.98253 ], [ -90.243801, 29.982501 ] ], [ [ -90.2435, 29.98473 ], [ -90.243607, 29.984752 ] ], [ [ -90.24298, 29.98666 ], [ -90.2435, 29.98473 ] ], [ [ -90.24342, 29.98443 ], [ -90.24291, 29.98632 ] ], [ [ -90.24342, 29.98443 ], [ -90.243301, 29.984401 ] ], [ [ -90.243076, 30.014252 ], [ -90.240024, 30.014082 ], [ -90.240291, 30.01253 ] ], [ [ -90.24298, 29.98666 ], [ -90.243042, 29.986676 ] ], [ [ -90.24246, 29.98862 ], [ -90.24298, 29.98666 ] ], [ [ -90.24291, 29.98632 ], [ -90.24237, 29.98832 ] ], [ [ -90.24291, 29.98632 ], [ -90.242801, 29.986301 ] ], [ [ -90.24246, 29.98862 ], [ -90.24254, 29.988634 ] ], [ [ -90.24183, 29.99085 ], [ -90.24246, 29.98862 ] ], [ [ -90.24237, 29.98832 ], [ -90.241786, 29.99027 ], [ -90.24171, 29.99211 ] ], [ [ -90.24237, 29.98832 ], [ -90.242301, 29.988301 ] ], [ [ -90.24183, 29.99085 ], [ -90.241884, 29.990856 ] ], [ [ -90.2417, 29.99228 ], [ -90.24183, 29.99085 ] ], [ [ -90.24171, 29.99211 ], [ -90.2417, 29.99228 ] ], [ [ -90.24171, 29.99211 ], [ -90.241601, 29.992101 ] ], [ [ -90.24155, 29.99408 ], [ -90.2417, 29.99228 ] ], [ [ -90.241542813287012, 29.994170110325012 ], [ -90.241642, 29.994174 ] ], [ [ -90.24154, 29.99417 ], [ -90.24155, 29.99408 ] ], [ [ -90.24155, 29.99408 ], [ -90.241542813287012, 29.994170110325012 ] ], [ [ -90.241542813287012, 29.994170110325012 ], [ -90.24151, 29.99457 ] ], [ [ -90.24154, 29.99417 ], [ -90.241542813287012, 29.994170110325012 ] ], [ [ -90.24151, 29.99457 ], [ -90.24154, 29.99417 ] ], [ [ -90.24122, 29.99792 ], [ -90.24151, 29.99457 ] ], [ [ -90.24122, 29.99799 ], [ -90.241311, 29.997997 ] ], [ [ -90.24126, 30.02003 ], [ -90.241257, 30.020067 ] ], [ [ -90.23945, 30.01999 ], [ -90.23945, 30.01991 ], [ -90.24126, 30.02003 ] ], [ [ -90.24122, 29.99792 ], [ -90.24121, 29.99811 ] ], [ [ -90.24122, 29.99799 ], [ -90.24122, 29.99792 ] ], [ [ -90.24121, 29.99811 ], [ -90.24122, 29.99799 ] ], [ [ -90.24118, 29.99847 ], [ -90.24121, 29.99811 ] ], [ [ -90.24118, 29.99847 ], [ -90.24117, 29.99855 ] ], [ [ -90.24115, 29.99877 ], [ -90.24118, 29.99847 ] ], [ [ -90.24117, 29.99855 ], [ -90.24115, 29.99877 ] ], [ [ -90.24117, 29.99855 ], [ -90.241087, 29.998548 ] ], [ [ -90.24094, 30.0013 ], [ -90.24115, 29.99877 ] ], [ [ -90.24092, 30.00147 ], [ -90.241029, 30.001531 ] ], [ [ -90.240928242264999, 30.001399940749973 ], [ -90.24094, 30.0013 ] ], [ [ -90.24094, 30.0013 ], [ -90.24093, 30.0014 ] ], [ [ -90.24093, 30.0014 ], [ -90.24092, 30.00147 ] ], [ [ -90.24093, 30.0014 ], [ -90.240928242264999, 30.001399940749973 ] ], [ [ -90.24092, 30.00147 ], [ -90.240928242264999, 30.001399940749973 ] ], [ [ -90.240928242264999, 30.001399940749973 ], [ -90.240841, 30.001397 ] ], [ [ -90.2408, 30.00294 ], [ -90.24092, 30.00147 ] ], [ [ -90.2408, 30.00294 ], [ -90.24078, 30.00315 ] ], [ [ -90.24077, 30.00325 ], [ -90.24079, 30.00309 ], [ -90.2408, 30.00294 ] ], [ [ -90.24078, 30.00315 ], [ -90.24077, 30.00325 ] ], [ [ -90.24078, 30.00315 ], [ -90.240673, 30.003144 ] ], [ [ -90.24069, 30.0042 ], [ -90.24077, 30.00325 ] ], [ [ -90.24064, 30.00577 ], [ -90.240712, 30.005769 ] ], [ [ -90.240628441038993, 30.004929913390995 ], [ -90.24069, 30.0042 ] ], [ [ -90.24069, 30.0042 ], [ -90.24063, 30.00493 ] ], [ [ -90.24054, 30.00709 ], [ -90.24064, 30.00577 ] ], [ [ -90.24064, 30.00577 ], [ -90.24058, 30.00561 ] ], [ [ -90.24063, 30.00493 ], [ -90.24062, 30.00503 ] ], [ [ -90.24063, 30.00493 ], [ -90.240628441038993, 30.004929913390995 ] ], [ [ -90.24062, 30.00503 ], [ -90.240628441038993, 30.004929913390995 ] ], [ [ -90.240628441038993, 30.004929913390995 ], [ -90.240522, 30.004924 ] ], [ [ -90.24058, 30.00561 ], [ -90.24062, 30.00503 ] ], [ [ -90.24054, 30.00709 ], [ -90.240609, 30.007094 ] ], [ [ -90.24058, 30.00561 ], [ -90.24032, 30.00736 ] ], [ [ -90.240235, 30.01023 ], [ -90.24054, 30.00709 ] ], [ [ -90.24032, 30.00736 ], [ -90.24023, 30.0085 ], [ -90.23971, 30.01116 ], [ -90.23978, 30.01248 ] ], [ [ -90.24032, 30.00736 ], [ -90.240247, 30.007295 ] ], [ [ -90.240291, 30.01253 ], [ -90.240235, 30.01023 ] ], [ [ -90.240291, 30.01253 ], [ -90.24022, 30.01145 ], [ -90.240235, 30.01023 ] ], [ [ -90.23978, 30.01248 ], [ -90.23973, 30.01248 ] ], [ [ -90.23978, 30.01248 ], [ -90.2396, 30.01591 ] ], [ [ -90.2396, 30.01591 ], [ -90.23928, 30.01948 ] ], [ [ -90.2396, 30.01591 ], [ -90.23952, 30.015905 ] ], [ [ -90.23945, 30.01999 ], [ -90.239502, 30.019988 ] ], [ [ -90.23914, 30.02347 ], [ -90.23945, 30.01999 ] ], [ [ -90.23928, 30.01948 ], [ -90.23897, 30.02329 ] ], [ [ -90.23928, 30.01948 ], [ -90.239208, 30.019476 ] ], [ [ -90.23914, 30.02347 ], [ -90.239189, 30.023477 ] ], [ [ -90.23899, 30.02526 ], [ -90.23914, 30.02347 ] ], [ [ -90.23899, 30.02526 ], [ -90.239007, 30.025262 ] ], [ [ -90.23883, 30.02705 ], [ -90.23899, 30.02526 ] ], [ [ -90.23897, 30.02329 ], [ -90.23881, 30.02518 ] ], [ [ -90.23897, 30.02329 ], [ -90.238918, 30.023289 ] ], [ [ -90.23883, 30.02705 ], [ -90.238866, 30.027048 ] ], [ [ -90.23836, 30.03266 ], [ -90.238598, 30.031023 ], [ -90.23883, 30.02705 ] ], [ [ -90.23881, 30.02518 ], [ -90.238715, 30.025129 ] ], [ [ -90.23881, 30.02518 ], [ -90.23866, 30.0269 ] ], [ [ -90.23866, 30.0269 ], [ -90.23851, 30.02866 ] ], [ [ -90.23866, 30.0269 ], [ -90.238636, 30.026896 ] ], [ [ -90.23851, 30.02866 ], [ -90.23838, 30.03021 ] ], [ [ -90.23851, 30.02866 ], [ -90.238412, 30.028654 ] ], [ [ -90.23836, 30.03266 ], [ -90.238446, 30.032664 ] ], [ [ -90.23838, 30.03021 ], [ -90.238262, 30.030512 ] ], [ [ -90.23838, 30.03021 ], [ -90.238262, 30.030512 ] ], [ [ -90.2382, 30.03444 ], [ -90.23836, 30.03266 ] ], [ [ -90.2382, 30.03444 ], [ -90.238284, 30.034449 ] ], [ [ -90.238262, 30.030512 ], [ -90.238237, 30.031851 ] ], [ [ -90.238262, 30.030512 ], [ -90.238237, 30.031851 ] ], [ [ -90.238237, 30.031851 ], [ -90.23817, 30.03258 ] ], [ [ -90.23769, 30.03849 ], [ -90.23768, 30.03865 ], [ -90.23783, 30.03865 ], [ -90.2382, 30.03444 ] ], [ [ -90.23817, 30.03258 ], [ -90.238092, 30.032531 ] ], [ [ -90.23817, 30.03258 ], [ -90.23802, 30.03436 ] ], [ [ -90.23802, 30.03436 ], [ -90.23794, 30.034307 ] ], [ [ -90.23802, 30.03436 ], [ -90.23769, 30.03849 ] ], [ [ -90.23769, 30.03849 ], [ -90.237601, 30.038482 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "91", "agency_id": "1", "route_short_name": "91", "route_long_name": "Jackson-Esplanade", "route_type": 3, "route_color": "#a99b06", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.10862, 29.98275 ], [ -90.108625, 29.98273 ] ], [ [ -90.10862, 29.98275 ], [ -90.10671, 29.98328 ] ], [ [ -90.10568, 29.98365 ], [ -90.10866, 29.982873 ], [ -90.1104, 29.98227 ], [ -90.11035, 29.98342 ], [ -90.11052, 29.98359 ], [ -90.1107, 29.98343 ], [ -90.11076, 29.98217 ], [ -90.11066, 29.98207 ], [ -90.10862, 29.98275 ] ], [ [ -90.10671, 29.98328 ], [ -90.10504, 29.9837 ] ], [ [ -90.10671, 29.98328 ], [ -90.106689, 29.983226 ] ], [ [ -90.10568, 29.98365 ], [ -90.105686, 29.983718 ] ], [ [ -90.10327, 29.98414 ], [ -90.10372, 29.98413 ], [ -90.10568, 29.98365 ] ], [ [ -90.10504, 29.9837 ], [ -90.10369, 29.98403 ], [ -90.10271, 29.984 ], [ -90.10157, 29.98322 ] ], [ [ -90.10504, 29.9837 ], [ -90.105021, 29.983631 ] ], [ [ -90.10327, 29.98414 ], [ -90.103272, 29.984199 ] ], [ [ -90.10117, 29.98337 ], [ -90.10213, 29.98377 ], [ -90.10216, 29.98406 ], [ -90.10327, 29.98414 ] ], [ [ -90.10157, 29.98322 ], [ -90.101617, 29.98317 ] ], [ [ -90.10157, 29.98322 ], [ -90.09971, 29.98198 ] ], [ [ -90.10117, 29.98337 ], [ -90.101134, 29.983413 ] ], [ [ -90.09933, 29.98212 ], [ -90.10117, 29.98337 ] ], [ [ -90.09971, 29.98198 ], [ -90.09977, 29.98192 ] ], [ [ -90.09971, 29.98198 ], [ -90.0977, 29.98062 ] ], [ [ -90.09933, 29.98212 ], [ -90.09928, 29.982178 ] ], [ [ -90.09652, 29.98024 ], [ -90.09933, 29.98212 ] ], [ [ -90.0977, 29.98062 ], [ -90.09775, 29.980568 ] ], [ [ -90.0977, 29.98062 ], [ -90.09552, 29.97915 ], [ -90.09536, 29.9793 ] ], [ [ -90.09652, 29.98024 ], [ -90.096474, 29.980298 ] ], [ [ -90.09415, 29.98073 ], [ -90.09543, 29.97953 ], [ -90.09652, 29.98024 ] ], [ [ -90.09536, 29.9793 ], [ -90.09408, 29.9805 ] ], [ [ -90.09536, 29.9793 ], [ -90.095305, 29.979249 ] ], [ [ -90.09415, 29.98073 ], [ -90.094193, 29.980766 ] ], [ [ -90.0916, 29.98315 ], [ -90.09415, 29.98073 ] ], [ [ -90.09408, 29.9805 ], [ -90.09096, 29.98333 ] ], [ [ -90.09408, 29.9805 ], [ -90.094046, 29.980478 ] ], [ [ -90.0916, 29.98315 ], [ -90.091606, 29.983212 ] ], [ [ -90.09022, 29.98397 ], [ -90.09065, 29.98359 ], [ -90.0916, 29.98315 ] ], [ [ -90.09096, 29.98333 ], [ -90.08964, 29.98383 ], [ -90.08884, 29.98328 ] ], [ [ -90.09096, 29.98333 ], [ -90.090919, 29.983267 ] ], [ [ -90.09022, 29.98397 ], [ -90.090294, 29.984011 ] ], [ [ -90.08887, 29.98341 ], [ -90.08996, 29.98433 ], [ -90.09022, 29.98397 ] ], [ [ -90.08884, 29.98328 ], [ -90.088875, 29.983238 ] ], [ [ -90.08887, 29.98341 ], [ -90.088835, 29.983444 ] ], [ [ -90.08664, 29.98187 ], [ -90.08887, 29.98341 ] ], [ [ -90.08884, 29.98328 ], [ -90.0876, 29.98243 ] ], [ [ -90.0876, 29.98243 ], [ -90.087648, 29.982384 ] ], [ [ -90.0876, 29.98243 ], [ -90.08606, 29.98138 ] ], [ [ -90.08664, 29.98187 ], [ -90.086608, 29.981903 ] ], [ [ -90.08532, 29.98096 ], [ -90.08664, 29.98187 ] ], [ [ -90.08606, 29.98138 ], [ -90.086106, 29.981328 ] ], [ [ -90.08606, 29.98138 ], [ -90.08384, 29.97984 ] ], [ [ -90.08532, 29.98096 ], [ -90.085294, 29.980986 ] ], [ [ -90.08346, 29.97969 ], [ -90.08532, 29.98096 ] ], [ [ -90.08384, 29.97984 ], [ -90.084081, 29.979912 ] ], [ [ -90.08384, 29.97984 ], [ -90.08232, 29.97878 ] ], [ [ -90.08346, 29.97969 ], [ -90.083438, 29.97971 ] ], [ [ -90.08134, 29.97822 ], [ -90.08346, 29.97969 ] ], [ [ -90.082898110799434, 29.937111103786815 ], [ -90.08313, 29.93705 ] ], [ [ -90.08313, 29.93705 ], [ -90.083052, 29.9371 ] ], [ [ -90.08313, 29.93705 ], [ -90.08308, 29.93699 ] ], [ [ -90.08308, 29.93699 ], [ -90.082898110799434, 29.937111103786815 ] ], [ [ -90.08308, 29.93699 ], [ -90.08255, 29.93639 ] ], [ [ -90.08299, 29.93689 ], [ -90.08308, 29.93699 ] ], [ [ -90.08299, 29.93689 ], [ -90.082929, 29.936926 ] ], [ [ -90.08255, 29.93639 ], [ -90.08299, 29.93689 ] ], [ [ -90.082270227026811, 29.937527086486643 ], [ -90.082891, 29.937113 ], [ -90.082898110799434, 29.937111103786815 ] ], [ [ -90.082898110799434, 29.937111103786815 ], [ -90.082270227026811, 29.937527086486643 ] ], [ [ -90.08255, 29.93639 ], [ -90.08248, 29.93631 ] ], [ [ -90.08195563021701, 29.935696272954921 ], [ -90.08248, 29.93631 ] ], [ [ -90.08248, 29.93631 ], [ -90.08195, 29.9357 ] ], [ [ -90.08232, 29.97878 ], [ -90.082355, 29.978742 ] ], [ [ -90.08232, 29.97878 ], [ -90.0804, 29.97745 ] ], [ [ -90.082270227026811, 29.937527086486643 ], [ -90.08213, 29.93762 ] ], [ [ -90.08213, 29.93762 ], [ -90.082270227026811, 29.937527086486643 ] ], [ [ -90.08213, 29.93762 ], [ -90.081915135134949, 29.937756081081197 ] ], [ [ -90.081915135134949, 29.937756081081197 ], [ -90.08213, 29.93762 ] ], [ [ -90.08195563021701, 29.935696272954921 ], [ -90.082021, 29.935653 ] ], [ [ -90.08195, 29.9357 ], [ -90.08195563021701, 29.935696272954921 ] ], [ [ -90.08189, 29.93562 ], [ -90.08195563021701, 29.935696272954921 ] ], [ [ -90.08195, 29.9357 ], [ -90.08189, 29.93562 ] ], [ [ -90.08152930388664, 29.937999147261124 ], [ -90.081915135134949, 29.937756081081197 ] ], [ [ -90.081915135134949, 29.937756081081197 ], [ -90.08153, 29.938 ] ], [ [ -90.08189, 29.93562 ], [ -90.08133, 29.93496 ] ], [ [ -90.08182, 29.93554 ], [ -90.08189, 29.93562 ] ], [ [ -90.08182, 29.93554 ], [ -90.081767, 29.935572 ] ], [ [ -90.08133, 29.93496 ], [ -90.08182, 29.93554 ] ], [ [ -90.08153, 29.938 ], [ -90.08148, 29.93803 ] ], [ [ -90.08153, 29.938 ], [ -90.08152930388664, 29.937999147261124 ] ], [ [ -90.08148, 29.93803 ], [ -90.08152930388664, 29.937999147261124 ] ], [ [ -90.08152930388664, 29.937999147261124 ], [ -90.08149, 29.937951 ] ], [ [ -90.08148, 29.93803 ], [ -90.08082, 29.93889 ] ], [ [ -90.08126, 29.93842 ], [ -90.08148, 29.93803 ] ], [ [ -90.08134, 29.97822 ], [ -90.081305, 29.978251 ] ], [ [ -90.07555, 29.97422 ], [ -90.07847, 29.97621 ], [ -90.079794, 29.977285 ], [ -90.08134, 29.97822 ] ], [ [ -90.08126, 29.93842 ], [ -90.081333, 29.938463 ] ], [ [ -90.08133, 29.93496 ], [ -90.08073, 29.93427 ] ], [ [ -90.08024, 29.93984 ], [ -90.08126, 29.93842 ] ], [ [ -90.08082, 29.93889 ], [ -90.08022, 29.93965 ] ], [ [ -90.08082, 29.93889 ], [ -90.080748, 29.93885 ] ], [ [ -90.08071, 29.93422 ], [ -90.080777, 29.934205 ] ], [ [ -90.08073, 29.93427 ], [ -90.08071, 29.93422 ] ], [ [ -90.08046, 29.93399 ], [ -90.08073, 29.93427 ] ], [ [ -90.08071, 29.93422 ], [ -90.07967, 29.93293 ] ], [ [ -90.08046, 29.93399 ], [ -90.08043, 29.934003 ] ], [ [ -90.07952, 29.93289 ], [ -90.08046, 29.93399 ] ], [ [ -90.0804, 29.97745 ], [ -90.080428, 29.977427 ] ], [ [ -90.0804, 29.97745 ], [ -90.07847, 29.97611 ] ], [ [ -90.08024, 29.93984 ], [ -90.080266, 29.939859 ] ], [ [ -90.07934, 29.94107 ], [ -90.08024, 29.93984 ] ], [ [ -90.08022, 29.93965 ], [ -90.07923, 29.941 ] ], [ [ -90.08022, 29.93965 ], [ -90.080189, 29.939626 ] ], [ [ -90.07967, 29.93293 ], [ -90.079799, 29.932927 ] ], [ [ -90.07967, 29.93293 ], [ -90.0788, 29.93191 ] ], [ [ -90.07952, 29.93289 ], [ -90.079481, 29.932913 ] ], [ [ -90.07862, 29.93184 ], [ -90.07952, 29.93289 ] ], [ [ -90.07934, 29.94107 ], [ -90.079418, 29.941107 ] ], [ [ -90.07818, 29.94264 ], [ -90.07934, 29.94107 ] ], [ [ -90.07923, 29.941 ], [ -90.07804, 29.94262 ] ], [ [ -90.07923, 29.941 ], [ -90.079186, 29.940978 ] ], [ [ -90.0788, 29.93191 ], [ -90.078845, 29.931886 ] ], [ [ -90.0788, 29.93191 ], [ -90.07685, 29.92966 ] ], [ [ -90.07862, 29.93184 ], [ -90.078566, 29.931869 ] ], [ [ -90.07664, 29.92955 ], [ -90.07862, 29.93184 ] ], [ [ -90.07847, 29.97611 ], [ -90.078486, 29.976094 ] ], [ [ -90.07847, 29.97611 ], [ -90.07682, 29.97499 ] ], [ [ -90.07818, 29.94264 ], [ -90.078173, 29.94264 ] ], [ [ -90.07641, 29.94501 ], [ -90.07818, 29.94264 ] ], [ [ -90.07804, 29.94262 ], [ -90.07707, 29.94391 ] ], [ [ -90.07804, 29.94262 ], [ -90.077976, 29.942587 ] ], [ [ -90.07707, 29.94391 ], [ -90.07563, 29.94588 ], [ -90.07539, 29.94665 ] ], [ [ -90.07707, 29.94391 ], [ -90.07703, 29.943889 ] ], [ [ -90.07685, 29.92966 ], [ -90.076902, 29.929627 ] ], [ [ -90.07682, 29.97499 ], [ -90.076855, 29.974956 ] ], [ [ -90.07685, 29.92966 ], [ -90.07615, 29.92885 ] ], [ [ -90.07682, 29.97499 ], [ -90.07489, 29.97365 ] ], [ [ -90.07664, 29.92955 ], [ -90.076618, 29.929569 ] ], [ [ -90.07595, 29.92876 ], [ -90.07664, 29.92955 ] ], [ [ -90.07641, 29.94501 ], [ -90.076436, 29.945028 ] ], [ [ -90.07584, 29.95106 ], [ -90.07707, 29.94667 ], [ -90.07689, 29.94609 ], [ -90.07605, 29.94551 ], [ -90.07641, 29.94501 ] ], [ [ -90.07615, 29.92885 ], [ -90.076199, 29.928817 ] ], [ [ -90.07615, 29.92885 ], [ -90.07478, 29.92725 ] ], [ [ -90.07595, 29.92876 ], [ -90.075939, 29.92877 ] ], [ [ -90.07458, 29.92717 ], [ -90.07595, 29.92876 ] ], [ [ -90.07584, 29.95106 ], [ -90.075911, 29.951058 ] ], [ [ -90.07526, 29.95407 ], [ -90.07581, 29.95223 ], [ -90.07584, 29.95106 ] ], [ [ -90.07555, 29.97422 ], [ -90.075502, 29.974279 ] ], [ [ -90.07467, 29.97363 ], [ -90.07555, 29.97422 ] ], [ [ -90.07539, 29.94665 ], [ -90.074229, 29.950476 ], [ -90.075554, 29.95082 ], [ -90.075592, 29.95195 ], [ -90.07478, 29.95438 ], [ -90.07341, 29.95587 ] ], [ [ -90.07539, 29.94665 ], [ -90.075299, 29.946626 ] ], [ [ -90.07526, 29.95407 ], [ -90.07528, 29.954073 ] ], [ [ -90.074, 29.9557 ], [ -90.07498, 29.95461 ], [ -90.07526, 29.95407 ] ], [ [ -90.07489, 29.97365 ], [ -90.074928, 29.973607 ] ], [ [ -90.07489, 29.97365 ], [ -90.07402, 29.97305 ] ], [ [ -90.07478, 29.92725 ], [ -90.074833, 29.927218 ] ], [ [ -90.07478, 29.92725 ], [ -90.07408, 29.92645 ] ], [ [ -90.07467, 29.97363 ], [ -90.074639, 29.973658 ] ], [ [ -90.07378, 29.97302 ], [ -90.07467, 29.97363 ] ], [ [ -90.07458, 29.92717 ], [ -90.074538, 29.9272 ] ], [ [ -90.07389, 29.92638 ], [ -90.07458, 29.92717 ] ], [ [ -90.07408, 29.92645 ], [ -90.074136, 29.926412 ] ], [ [ -90.07408, 29.92645 ], [ -90.07339, 29.92564 ] ], [ [ -90.074, 29.9557 ], [ -90.074078, 29.955755 ] ], [ [ -90.07402, 29.97305 ], [ -90.074062, 29.973014 ] ], [ [ -90.07402, 29.97305 ], [ -90.07321, 29.97244 ] ], [ [ -90.07178553020961, 29.957723828606653 ], [ -90.07204, 29.9579 ], [ -90.074, 29.9557 ] ], [ [ -90.07389, 29.92638 ], [ -90.073841, 29.926411 ] ], [ [ -90.07321, 29.92558 ], [ -90.07389, 29.92638 ] ], [ [ -90.07378, 29.97302 ], [ -90.073727, 29.973083 ] ], [ [ -90.07288, 29.97243 ], [ -90.07378, 29.97302 ] ], [ [ -90.07339, 29.92564 ], [ -90.073441, 29.925601 ] ], [ [ -90.07341, 29.95587 ], [ -90.07178553020961, 29.957723828606653 ] ], [ [ -90.07341, 29.95587 ], [ -90.073384, 29.955849 ] ], [ [ -90.07339, 29.92564 ], [ -90.07245, 29.92468 ] ], [ [ -90.07321, 29.97244 ], [ -90.073249, 29.9724 ] ], [ [ -90.07321, 29.92558 ], [ -90.073182, 29.925602 ] ], [ [ -90.07245, 29.92468 ], [ -90.07321, 29.92558 ] ], [ [ -90.07321, 29.97244 ], [ -90.07056, 29.97062 ] ], [ [ -90.07288, 29.97243 ], [ -90.072837, 29.97247 ] ], [ [ -90.07029, 29.97063 ], [ -90.07288, 29.97243 ] ], [ [ -90.07245, 29.92468 ], [ -90.07221, 29.92484 ] ], [ [ -90.07109, 29.92347 ], [ -90.0713, 29.92336 ], [ -90.07245, 29.92468 ] ], [ [ -90.07221, 29.92484 ], [ -90.070189, 29.926067 ], [ -90.07025, 29.92613 ], [ -90.06842, 29.92782 ] ], [ [ -90.07221, 29.92484 ], [ -90.072151, 29.924778 ] ], [ [ -90.07178553020961, 29.957723828606653 ], [ -90.071058, 29.958539 ], [ -90.070576295077913, 29.958202935523648 ] ], [ [ -90.070576295077913, 29.958202935523648 ], [ -90.07129, 29.9574 ], [ -90.07178553020961, 29.957723828606653 ] ], [ [ -90.07109, 29.92347 ], [ -90.071116, 29.923512 ] ], [ [ -90.06906, 29.92482 ], [ -90.07109, 29.92347 ] ], [ [ -90.07056, 29.97062 ], [ -90.070605, 29.970578 ] ], [ [ -90.07041, 29.95838 ], [ -90.070576295077913, 29.958202935523648 ] ], [ [ -90.070576295077913, 29.958202935523648 ], [ -90.070465, 29.958126 ], [ -90.06348, 29.965934 ], [ -90.06372, 29.96611 ] ], [ [ -90.07056, 29.97062 ], [ -90.06886, 29.969476 ], [ -90.068614, 29.969156 ], [ -90.068501, 29.969219 ], [ -90.06709, 29.96822 ] ], [ [ -90.07041, 29.95838 ], [ -90.070468, 29.958418 ] ], [ [ -90.06764, 29.96149 ], [ -90.07041, 29.95838 ] ], [ [ -90.07029, 29.97063 ], [ -90.070241, 29.970683 ] ], [ [ -90.06831, 29.9693 ], [ -90.07029, 29.97063 ] ], [ [ -90.06906, 29.92482 ], [ -90.069093, 29.924855 ] ], [ [ -90.06842, 29.92782 ], [ -90.06831, 29.92792 ], [ -90.06729, 29.92702 ], [ -90.06761, 29.92596 ], [ -90.06906, 29.92482 ] ], [ [ -90.06842, 29.92782 ], [ -90.068365, 29.92777 ] ], [ [ -90.06831, 29.9693 ], [ -90.068284, 29.969328 ] ], [ [ -90.06674, 29.96818 ], [ -90.06831, 29.9693 ] ], [ [ -90.06764, 29.96149 ], [ -90.067685, 29.961523 ] ], [ [ -90.06379, 29.96594 ], [ -90.06371, 29.96589 ], [ -90.06764, 29.96149 ] ], [ [ -90.06709, 29.96822 ], [ -90.067116, 29.968188 ] ], [ [ -90.06709, 29.96822 ], [ -90.06551, 29.96714 ] ], [ [ -90.06674, 29.96818 ], [ -90.066699, 29.968219 ] ], [ [ -90.06523, 29.96713 ], [ -90.06674, 29.96818 ] ], [ [ -90.06551, 29.96714 ], [ -90.065558, 29.967087 ] ], [ [ -90.06551, 29.96714 ], [ -90.06379, 29.96594 ] ], [ [ -90.06523, 29.96713 ], [ -90.065191, 29.967177 ] ], [ [ -90.06372, 29.96611 ], [ -90.06523, 29.96713 ] ], [ [ -90.06379, 29.96594 ], [ -90.063802, 29.965925 ] ], [ [ -90.06372, 29.96611 ], [ -90.0637, 29.966133 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "84", "agency_id": "1", "route_short_name": "84", "route_long_name": "Galvez", "route_type": 3, "route_color": "#b890c2", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.084756325866664, 29.959030053866655 ], [ -90.068511, 29.977356 ], [ -90.065939, 29.978131 ], [ -90.04734, 29.979186 ], [ -90.030476499078347, 29.975500115727584 ] ], [ [ -90.030476499078347, 29.975500115727584 ], [ -90.046905, 29.979251 ], [ -90.04665, 29.980259 ], [ -90.047208, 29.980361 ], [ -90.067, 29.979193 ], [ -90.068826, 29.978795 ], [ -90.078536, 29.967801 ], [ -90.077764, 29.967297 ], [ -90.084567, 29.959814 ], [ -90.085012, 29.959154 ], [ -90.084756325866664, 29.959030053866655 ] ], [ [ -90.084756325866664, 29.959030053866655 ], [ -90.080282, 29.957032 ], [ -90.080265, 29.956915 ], [ -90.080156, 29.956964 ], [ -90.077414, 29.95573 ], [ -90.077351, 29.955562 ], [ -90.077237, 29.955656 ], [ -90.075174, 29.954697 ], [ -90.075152, 29.95439 ], [ -90.075862, 29.95236 ], [ -90.075911, 29.951058 ], [ -90.079555, 29.952378 ], [ -90.087594, 29.955986 ], [ -90.084756325866664, 29.959030053866655 ] ], [ [ -90.030476499078347, 29.975500115727584 ], [ -90.029992, 29.977004 ], [ -90.029799, 29.977116 ], [ -90.029392, 29.975768 ], [ -90.029467429828415, 29.975222337879465 ] ], [ [ -90.029467429828415, 29.975222337879465 ], [ -90.030476499078347, 29.975500115727584 ] ], [ [ -90.02982, 29.97014 ], [ -90.02945, 29.97165 ], [ -90.02984, 29.97303 ], [ -90.029165, 29.975139 ], [ -90.029467429828415, 29.975222337879465 ] ], [ [ -90.01409, 29.9662 ], [ -90.019579, 29.96752 ], [ -90.02262, 29.96812 ], [ -90.02497, 29.96891 ], [ -90.02648, 29.96926 ], [ -90.02798, 29.96921 ], [ -90.02889, 29.96939 ], [ -90.0299, 29.96978 ], [ -90.02982, 29.97014 ] ], [ [ -90.02982, 29.97014 ], [ -90.029716, 29.970063 ] ], [ [ -90.029467429828415, 29.975222337879465 ], [ -90.029993, 29.973108 ], [ -90.029553, 29.971596 ], [ -90.030465, 29.96869 ], [ -90.029309, 29.968735 ], [ -90.027035, 29.969089 ], [ -90.025747, 29.968996 ], [ -90.019898, 29.967086 ], [ -90.014271, 29.965903 ], [ -90.00912, 29.9646 ] ], [ [ -90.01409, 29.9662 ], [ -90.014075, 29.966237 ] ], [ [ -90.00985, 29.96268 ], [ -90.00889, 29.96468 ], [ -90.01139, 29.96558 ], [ -90.01409, 29.9662 ] ], [ [ -90.01011, 29.95947 ], [ -90.010221, 29.959404 ] ], [ [ -90.00994, 29.96285 ], [ -90.01134, 29.95992 ], [ -90.01011, 29.95947 ] ], [ [ -90.01011, 29.95947 ], [ -90.00823, 29.95878 ] ], [ [ -90.00994, 29.96285 ], [ -90.010033, 29.962883 ] ], [ [ -90.00996, 29.95959 ], [ -90.009942, 29.959621 ] ], [ [ -90.00996, 29.95959 ], [ -90.01112, 29.96001 ], [ -90.00985, 29.96268 ] ], [ [ -90.00768, 29.95876 ], [ -90.00996, 29.95959 ] ], [ [ -90.00912, 29.9646 ], [ -90.00994, 29.96285 ] ], [ [ -90.00985, 29.96268 ], [ -90.009824, 29.962668 ] ], [ [ -90.00912, 29.9646 ], [ -90.00914, 29.964608 ] ], [ [ -90.00823, 29.95878 ], [ -90.00834, 29.958726 ] ], [ [ -90.00823, 29.95878 ], [ -90.00585, 29.95791 ] ], [ [ -90.00768, 29.95876 ], [ -90.007646, 29.958819 ] ], [ [ -90.00473, 29.95765 ], [ -90.00768, 29.95876 ] ], [ [ -90.00585, 29.95791 ], [ -90.005867, 29.957864 ] ], [ [ -90.00585, 29.95791 ], [ -90.002749, 29.956795 ], [ -90.002631, 29.956995 ], [ -90.00473, 29.95765 ] ], [ [ -90.00473, 29.95765 ], [ -90.004684, 29.957696 ], [ -90.0047, 29.9577 ], [ -90.00473, 29.95765 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "202", "agency_id": "1", "route_short_name": "202", "route_long_name": "Airport Express", "route_type": 3, "route_color": "#ff00ff", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.240271762237754, 30.010080440559438 ], [ -90.24125, 30.01044 ], [ -90.24139, 30.01072 ], [ -90.24122, 30.01108 ], [ -90.24082, 30.0112 ], [ -90.240301, 30.010901 ], [ -90.240271762237754, 30.010080440559438 ] ], [ [ -90.240271762237754, 30.010080440559438 ], [ -90.24057, 30.00667 ], [ -90.24549, 30.00701 ], [ -90.24733, 30.00703 ], [ -90.26622, 30.0056 ], [ -90.26565, 30.00213 ], [ -90.26529, 30.00163 ], [ -90.26479, 30.00128 ], [ -90.2632, 30.00086 ], [ -90.26183, 30.00067 ], [ -90.26073, 30.00003 ], [ -90.2598, 29.99896 ], [ -90.25961, 29.99832 ], [ -90.25958, 29.9972 ], [ -90.25899, 29.99642 ], [ -90.25844, 29.99615 ], [ -90.25733, 29.99594 ], [ -90.25623, 29.99595 ], [ -90.25591, 29.99612 ], [ -90.2557, 29.99649 ], [ -90.25589, 29.99709 ], [ -90.25624, 29.9972 ], [ -90.25902, 29.99736 ], [ -90.25939, 29.99757 ], [ -90.25967, 29.99902 ], [ -90.26065, 30.00016 ], [ -90.26069, 30.00039 ], [ -90.26041, 30.00079 ], [ -90.26061, 30.00116 ], [ -90.26098, 30.00121 ], [ -90.26158, 30.00092 ], [ -90.26279, 30.00094 ], [ -90.26464, 30.00137 ], [ -90.26531, 30.00182 ], [ -90.26567, 30.00265 ], [ -90.26579, 30.00458 ], [ -90.265819, 30.005257 ], [ -90.265476, 30.005526 ], [ -90.24679, 30.006919 ], [ -90.240374, 30.006501 ], [ -90.240235, 30.008313 ], [ -90.239902, 30.008963 ], [ -90.23599, 30.00894 ], [ -90.21448, 30.00755 ], [ -90.21288, 30.00729 ], [ -90.21157, 30.00687 ], [ -90.21055, 30.00638 ], [ -90.20408, 30.00235 ], [ -90.20212, 30.00133 ], [ -90.19931, 30.00031 ], [ -90.19652, 29.99972 ], [ -90.16573, 29.99779 ], [ -90.12552, 29.99608 ], [ -90.1218, 29.9955 ], [ -90.12008, 29.99498 ], [ -90.11881, 29.99436 ], [ -90.11784, 29.99368 ], [ -90.11712, 29.99291 ], [ -90.11671, 29.99223 ], [ -90.11636, 29.99092 ], [ -90.11638, 29.98866 ], [ -90.11603, 29.98668 ], [ -90.11169, 29.97572 ], [ -90.11065, 29.97261 ], [ -90.10898, 29.96939 ], [ -90.10834, 29.96854 ], [ -90.10481, 29.96524 ], [ -90.08832, 29.95349 ], [ -90.08641, 29.95236 ], [ -90.08546, 29.95093 ], [ -90.08446, 29.94846 ], [ -90.08407, 29.94805 ], [ -90.08277, 29.94732 ], [ -90.08203, 29.94675 ], [ -90.07879, 29.94483 ], [ -90.078, 29.94481 ], [ -90.076903, 29.945829 ], [ -90.07627, 29.9483 ] ], [ [ -90.07556, 29.95195 ], [ -90.0749, 29.95421 ], [ -90.072798, 29.956597 ], [ -90.073088, 29.95676 ], [ -90.074826, 29.954775 ], [ -90.07528, 29.954073 ], [ -90.075862, 29.95236 ], [ -90.075876, 29.950832 ], [ -90.07716, 29.946358 ], [ -90.077308, 29.945997 ], [ -90.077882, 29.946397 ], [ -90.078096, 29.946374 ], [ -90.07829, 29.946039 ], [ -90.078223, 29.945659 ], [ -90.07759, 29.9458 ], [ -90.07744, 29.94563 ], [ -90.07796, 29.94532 ], [ -90.079625, 29.945986 ], [ -90.083932, 29.94863 ], [ -90.086185, 29.952349 ], [ -90.089903, 29.954745 ], [ -90.09375, 29.95773 ], [ -90.10449, 29.96519 ], [ -90.10713, 29.96755 ], [ -90.10873, 29.96929 ], [ -90.11058, 29.97285 ], [ -90.11156, 29.97587 ], [ -90.11585, 29.98684 ], [ -90.11612, 29.98818 ], [ -90.11609, 29.99098 ], [ -90.11652, 29.99243 ], [ -90.11725, 29.99344 ], [ -90.1181, 29.99417 ], [ -90.12001, 29.99532 ], [ -90.12111, 29.99583 ], [ -90.12238, 29.99614 ], [ -90.124685, 29.996268 ], [ -90.16625, 29.99805 ], [ -90.19596, 29.99994 ], [ -90.19895, 30.0005 ], [ -90.20205, 30.0016 ], [ -90.20405, 30.00267 ], [ -90.21041, 30.00663 ], [ -90.21146, 30.00713 ], [ -90.21299, 30.0076 ], [ -90.21431, 30.00781 ], [ -90.22684, 30.00862 ], [ -90.23133, 30.00912 ], [ -90.23503, 30.00936 ], [ -90.240271762237754, 30.010080440559438 ] ], [ [ -90.07627, 29.9483 ], [ -90.07564, 29.95056 ] ], [ [ -90.07627, 29.9483 ], [ -90.076215, 29.948286 ] ], [ [ -90.07564, 29.95056 ], [ -90.07556, 29.95195 ] ], [ [ -90.07564, 29.95056 ], [ -90.075579, 29.950548 ] ], [ [ -90.07556, 29.95195 ], [ -90.075474, 29.951945 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "3", "agency_id": "1", "route_short_name": "3", "route_long_name": "Tulane - Elmwood", "route_type": 3, "route_color": "#f58025", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.18203, 29.94926 ], [ -90.182091, 29.949291 ] ], [ [ -90.17184, 29.95977 ], [ -90.17585, 29.95739 ], [ -90.17732, 29.95636 ], [ -90.17871, 29.9541 ], [ -90.17963, 29.95303 ], [ -90.18203, 29.94926 ] ], [ [ -90.18203, 29.94926 ], [ -90.182482, 29.948631 ], [ -90.184842, 29.950509 ], [ -90.187197, 29.95679 ], [ -90.187159, 29.957031 ], [ -90.187497, 29.957079 ], [ -90.193081, 29.955523 ], [ -90.190978, 29.949862 ], [ -90.190602, 29.949174 ], [ -90.185533, 29.945116 ], [ -90.184948, 29.944778 ], [ -90.18123, 29.95009 ] ], [ [ -90.18123, 29.95009 ], [ -90.181258, 29.950107 ] ], [ [ -90.18123, 29.95009 ], [ -90.17975, 29.9525 ], [ -90.17875, 29.95361 ], [ -90.17702, 29.95634 ], [ -90.17601, 29.9571 ], [ -90.17188, 29.95957 ] ], [ [ -90.17188, 29.95957 ], [ -90.16632, 29.96285 ], [ -90.1656, 29.96309 ], [ -90.16467, 29.96317 ], [ -90.157019591715979, 29.962959982248528 ] ], [ [ -90.17188, 29.95957 ], [ -90.171851, 29.959534 ] ], [ [ -90.16102, 29.96324 ], [ -90.16469, 29.96334 ], [ -90.16569, 29.96324 ], [ -90.16667, 29.96284 ], [ -90.17184, 29.95977 ] ], [ [ -90.17184, 29.95977 ], [ -90.171812, 29.959895 ] ], [ [ -90.16102, 29.96324 ], [ -90.161021, 29.963281 ] ], [ [ -90.15682, 29.96311 ], [ -90.16102, 29.96324 ] ], [ [ -90.15682, 29.963101482352926 ], [ -90.157013, 29.963106 ], [ -90.157019591715979, 29.962959982248528 ] ], [ [ -90.157019591715979, 29.962959982248528 ], [ -90.157061, 29.962046 ], [ -90.156663, 29.962021 ], [ -90.15664, 29.96294 ] ], [ [ -90.157019591715979, 29.962959982248528 ], [ -90.15679, 29.96295 ] ], [ [ -90.15682, 29.963101482352926 ], [ -90.15682, 29.963097 ] ], [ [ -90.15682, 29.96311 ], [ -90.15682, 29.963101482352926 ] ], [ [ -90.156089090909077, 29.96309106060605 ], [ -90.15682, 29.963101482352926 ] ], [ [ -90.156089090909077, 29.96309106060605 ], [ -90.15682, 29.96311 ] ], [ [ -90.15679, 29.96295 ], [ -90.156787, 29.962944 ] ], [ [ -90.15679, 29.96295 ], [ -90.15664, 29.96294 ] ], [ [ -90.15664, 29.96294 ], [ -90.15492, 29.96289 ] ], [ [ -90.156, 29.96309 ], [ -90.156089090909077, 29.96309106060605 ] ], [ [ -90.156, 29.96309 ], [ -90.156089090909077, 29.96309106060605 ] ], [ [ -90.1547, 29.96306 ], [ -90.156, 29.96309 ] ], [ [ -90.15492, 29.96289 ], [ -90.154931, 29.962909 ] ], [ [ -90.15492, 29.96289 ], [ -90.15237, 29.96282 ] ], [ [ -90.1547, 29.96306 ], [ -90.154673, 29.963064 ] ], [ [ -90.15233, 29.96299 ], [ -90.1547, 29.96306 ] ], [ [ -90.15237, 29.96282 ], [ -90.15143, 29.96287 ], [ -90.14913, 29.96328 ] ], [ [ -90.15237, 29.96282 ], [ -90.152369, 29.962824 ] ], [ [ -90.15233, 29.96299 ], [ -90.152339, 29.962987 ] ], [ [ -90.14899, 29.96346 ], [ -90.15233, 29.96299 ] ], [ [ -90.14913, 29.96328 ], [ -90.149136, 29.963275 ] ], [ [ -90.14913, 29.96328 ], [ -90.14706, 29.96304 ] ], [ [ -90.14899, 29.96346 ], [ -90.148993, 29.963474 ] ], [ [ -90.147, 29.9632 ], [ -90.14899, 29.96346 ] ], [ [ -90.14706, 29.96304 ], [ -90.147061, 29.963052 ] ], [ [ -90.14706, 29.96304 ], [ -90.14532, 29.96277 ] ], [ [ -90.147, 29.9632 ], [ -90.146979, 29.963214 ] ], [ [ -90.14536, 29.96295 ], [ -90.147, 29.9632 ] ], [ [ -90.14536, 29.96295 ], [ -90.145359, 29.96298 ] ], [ [ -90.14284, 29.96256 ], [ -90.14536, 29.96295 ] ], [ [ -90.14532, 29.96277 ], [ -90.145316, 29.962791 ] ], [ [ -90.14532, 29.96277 ], [ -90.1406, 29.96212 ] ], [ [ -90.14284, 29.96256 ], [ -90.142836, 29.962597 ] ], [ [ -90.14043, 29.96236 ], [ -90.14094, 29.96227 ], [ -90.14284, 29.96256 ] ], [ [ -90.1406, 29.96212 ], [ -90.13995, 29.9625 ], [ -90.1395, 29.96349 ] ], [ [ -90.1406, 29.96212 ], [ -90.140593, 29.962077 ] ], [ [ -90.14043, 29.96236 ], [ -90.140439, 29.962375 ] ], [ [ -90.13967, 29.96358 ], [ -90.14006, 29.96268 ], [ -90.14043, 29.96236 ] ], [ [ -90.13967, 29.96358 ], [ -90.13968, 29.963587 ] ], [ [ -90.13814, 29.96543 ], [ -90.13858, 29.96546 ], [ -90.13895, 29.96526 ], [ -90.13967, 29.96358 ] ], [ [ -90.1395, 29.96349 ], [ -90.139514, 29.963498 ] ], [ [ -90.1395, 29.96349 ], [ -90.13881, 29.96514 ], [ -90.13848, 29.96529 ], [ -90.13747, 29.96516 ] ], [ [ -90.13814, 29.96543 ], [ -90.138138, 29.965452 ] ], [ [ -90.13729, 29.96532 ], [ -90.13814, 29.96543 ] ], [ [ -90.13747, 29.96516 ], [ -90.137472, 29.965167 ] ], [ [ -90.13747, 29.96516 ], [ -90.13416, 29.96478 ] ], [ [ -90.13729, 29.96532 ], [ -90.137287, 29.965348 ] ], [ [ -90.13406, 29.96495 ], [ -90.13729, 29.96532 ] ], [ [ -90.13416, 29.96478 ], [ -90.134161, 29.964788 ] ], [ [ -90.13416, 29.96478 ], [ -90.13277, 29.96462 ] ], [ [ -90.13406, 29.96495 ], [ -90.134059, 29.964978 ] ], [ [ -90.13194, 29.96467 ], [ -90.13406, 29.96495 ] ], [ [ -90.13277, 29.96462 ], [ -90.13277, 29.964607 ] ], [ [ -90.13277, 29.96462 ], [ -90.13075, 29.96395 ], [ -90.12945, 29.96295 ] ], [ [ -90.13194, 29.96467 ], [ -90.131911, 29.964773 ] ], [ [ -90.12945, 29.96332 ], [ -90.13059, 29.96419 ], [ -90.13194, 29.96467 ] ], [ [ -90.12945, 29.96295 ], [ -90.129533, 29.962875 ] ], [ [ -90.12945, 29.96295 ], [ -90.12489, 29.95927 ] ], [ [ -90.12945, 29.96332 ], [ -90.12939, 29.963375 ] ], [ [ -90.12784, 29.96202 ], [ -90.12945, 29.96332 ] ], [ [ -90.12784, 29.96202 ], [ -90.127761, 29.9621 ] ], [ [ -90.12621, 29.96069 ], [ -90.12784, 29.96202 ] ], [ [ -90.12621, 29.96069 ], [ -90.126135, 29.960759 ] ], [ [ -90.12472, 29.95949 ], [ -90.12621, 29.96069 ] ], [ [ -90.12489, 29.95927 ], [ -90.124924, 29.959131 ] ], [ [ -90.12489, 29.95927 ], [ -90.12335, 29.95802 ] ], [ [ -90.12472, 29.95949 ], [ -90.124636, 29.959576 ] ], [ [ -90.12299, 29.95809 ], [ -90.12472, 29.95949 ] ], [ [ -90.12335, 29.95802 ], [ -90.123402, 29.95797 ] ], [ [ -90.12335, 29.95802 ], [ -90.12068, 29.95587 ], [ -90.12134, 29.95524 ], [ -90.12124, 29.95515 ], [ -90.12057, 29.95568 ] ], [ [ -90.12299, 29.95809 ], [ -90.122928, 29.958146 ] ], [ [ -90.1204, 29.95612 ], [ -90.12047, 29.95605 ], [ -90.12299, 29.95809 ] ], [ [ -90.12057, 29.95568 ], [ -90.11959, 29.95662 ] ], [ [ -90.12057, 29.95568 ], [ -90.120533, 29.955649 ] ], [ [ -90.1204, 29.95612 ], [ -90.120454, 29.956163 ] ], [ [ -90.11809, 29.95825 ], [ -90.1204, 29.95612 ] ], [ [ -90.11959, 29.95662 ], [ -90.1181, 29.95801 ] ], [ [ -90.11959, 29.95662 ], [ -90.119575, 29.956605 ] ], [ [ -90.11809, 29.95825 ], [ -90.11815, 29.958302 ] ], [ [ -90.1181, 29.95801 ], [ -90.11659, 29.95944 ] ], [ [ -90.1181, 29.95801 ], [ -90.118043, 29.957964 ] ], [ [ -90.11658, 29.95967 ], [ -90.11809, 29.95825 ] ], [ [ -90.11658, 29.95967 ], [ -90.116649, 29.959724 ] ], [ [ -90.11659, 29.95944 ], [ -90.11506, 29.96086 ] ], [ [ -90.11659, 29.95944 ], [ -90.116506, 29.959373 ] ], [ [ -90.11492, 29.96123 ], [ -90.11658, 29.95967 ] ], [ [ -90.11506, 29.96086 ], [ -90.1136, 29.96222 ] ], [ [ -90.11506, 29.96086 ], [ -90.115025, 29.960832 ] ], [ [ -90.11492, 29.96123 ], [ -90.114962, 29.961263 ] ], [ [ -90.11354, 29.96251 ], [ -90.11492, 29.96123 ] ], [ [ -90.11354, 29.96251 ], [ -90.113604, 29.962562 ] ], [ [ -90.1136, 29.96222 ], [ -90.1135, 29.96231 ] ], [ [ -90.11355, 29.96218 ], [ -90.1136, 29.96222 ] ], [ [ -90.11355, 29.96218 ], [ -90.113558, 29.962168 ] ], [ [ -90.1135, 29.96231 ], [ -90.11318, 29.96206 ], [ -90.11327, 29.96193 ], [ -90.11355, 29.96218 ] ], [ [ -90.11131, 29.9646 ], [ -90.11354, 29.96251 ] ], [ [ -90.1135, 29.96231 ], [ -90.11133, 29.96436 ] ], [ [ -90.11131, 29.9646 ], [ -90.111376, 29.964655 ] ], [ [ -90.11133, 29.96436 ], [ -90.11014, 29.96546 ] ], [ [ -90.11133, 29.96436 ], [ -90.111257, 29.9643 ] ], [ [ -90.11, 29.96584 ], [ -90.11131, 29.9646 ] ], [ [ -90.11014, 29.96546 ], [ -90.10655, 29.96883 ] ], [ [ -90.11014, 29.96546 ], [ -90.11007, 29.965395 ] ], [ [ -90.11, 29.96584 ], [ -90.110015, 29.965861 ] ], [ [ -90.10624, 29.96937 ], [ -90.11, 29.96584 ] ], [ [ -90.10655, 29.96883 ], [ -90.10643, 29.96894 ], [ -90.10253, 29.96716 ] ], [ [ -90.10655, 29.96883 ], [ -90.106479, 29.968766 ] ], [ [ -90.10624, 29.96937 ], [ -90.1063, 29.969419 ] ], [ [ -90.10549, 29.9696 ], [ -90.10576, 29.96979 ], [ -90.10624, 29.96937 ] ], [ [ -90.10549, 29.9696 ], [ -90.105439, 29.969661 ] ], [ [ -90.10398, 29.96859 ], [ -90.10549, 29.9696 ] ], [ [ -90.10398, 29.96859 ], [ -90.103934, 29.968634 ] ], [ [ -90.10211, 29.96733 ], [ -90.10398, 29.96859 ] ], [ [ -90.10253, 29.96716 ], [ -90.102566, 29.967109 ] ], [ [ -90.10253, 29.96716 ], [ -90.10067, 29.96631 ] ], [ [ -90.10211, 29.96733 ], [ -90.102077, 29.967359 ] ], [ [ -90.10036, 29.96628 ], [ -90.10167, 29.96689 ], [ -90.10211, 29.96733 ] ], [ [ -90.10067, 29.96631 ], [ -90.100705, 29.966252 ] ], [ [ -90.10067, 29.96631 ], [ -90.09969, 29.96587 ] ], [ [ -90.10036, 29.96628 ], [ -90.100314, 29.966352 ] ], [ [ -90.09944, 29.96586 ], [ -90.10036, 29.96628 ] ], [ [ -90.09969, 29.96587 ], [ -90.099728, 29.965799 ] ], [ [ -90.09969, 29.96587 ], [ -90.09878, 29.96545 ] ], [ [ -90.09944, 29.96586 ], [ -90.099394, 29.965927 ] ], [ [ -90.09792, 29.96516 ], [ -90.09944, 29.96586 ] ], [ [ -90.09878, 29.96545 ], [ -90.098818, 29.965387 ] ], [ [ -90.09878, 29.96545 ], [ -90.09613, 29.96425 ] ], [ [ -90.09792, 29.96516 ], [ -90.097861, 29.965259 ] ], [ [ -90.09625, 29.96441 ], [ -90.09792, 29.96516 ] ], [ [ -90.09625, 29.96441 ], [ -90.096207, 29.964485 ] ], [ [ -90.09413, 29.96345 ], [ -90.09625, 29.96441 ] ], [ [ -90.09613, 29.96425 ], [ -90.096172, 29.96417 ] ], [ [ -90.09613, 29.96425 ], [ -90.09443, 29.96347 ] ], [ [ -90.09443, 29.96347 ], [ -90.094481, 29.963388 ] ], [ [ -90.09443, 29.96347 ], [ -90.09253, 29.96261 ] ], [ [ -90.09413, 29.96345 ], [ -90.094086, 29.96352 ] ], [ [ -90.09218, 29.96256 ], [ -90.09413, 29.96345 ] ], [ [ -90.09253, 29.96261 ], [ -90.092573, 29.962533 ] ], [ [ -90.09253, 29.96261 ], [ -90.09093, 29.96186 ] ], [ [ -90.09218, 29.96256 ], [ -90.092139, 29.962632 ] ], [ [ -90.09037, 29.96175 ], [ -90.09218, 29.96256 ] ], [ [ -90.09093, 29.96186 ], [ -90.090969, 29.961797 ] ], [ [ -90.09093, 29.96186 ], [ -90.08921, 29.9611 ] ], [ [ -90.09037, 29.96175 ], [ -90.090336, 29.961802 ] ], [ [ -90.08886, 29.96106 ], [ -90.09037, 29.96175 ] ], [ [ -90.08921, 29.9611 ], [ -90.089249, 29.961029 ] ], [ [ -90.08921, 29.9611 ], [ -90.08706, 29.96013 ] ], [ [ -90.08886, 29.96106 ], [ -90.088826, 29.961112 ] ], [ [ -90.08671, 29.96008 ], [ -90.08886, 29.96106 ] ], [ [ -90.08706, 29.96013 ], [ -90.087107, 29.960046 ] ], [ [ -90.08706, 29.96013 ], [ -90.08519, 29.95927 ] ], [ [ -90.08671, 29.96008 ], [ -90.086673, 29.960129 ] ], [ [ -90.08459, 29.95911 ], [ -90.08671, 29.96008 ] ], [ [ -90.08519, 29.95927 ], [ -90.085232, 29.959199 ] ], [ [ -90.08519, 29.95927 ], [ -90.08306, 29.9583 ] ], [ [ -90.08459, 29.95911 ], [ -90.084535, 29.959194 ] ], [ [ -90.08268, 29.95823 ], [ -90.08459, 29.95911 ] ], [ [ -90.08306, 29.9583 ], [ -90.083152, 29.958253 ] ], [ [ -90.08306, 29.9583 ], [ -90.08196, 29.9578 ] ], [ [ -90.08268, 29.95823 ], [ -90.082633, 29.958339 ] ], [ [ -90.08184, 29.95785 ], [ -90.08268, 29.95823 ] ], [ [ -90.08196, 29.9578 ], [ -90.082003, 29.957735 ] ], [ [ -90.08196, 29.9578 ], [ -90.07729, 29.95567 ] ], [ [ -90.08184, 29.95785 ], [ -90.08175, 29.95796 ], [ -90.081657, 29.957902 ] ], [ [ -90.07948, 29.95678 ], [ -90.08184, 29.95785 ] ], [ [ -90.07948, 29.95678 ], [ -90.079457, 29.95682 ] ], [ [ -90.07772, 29.95599 ], [ -90.07948, 29.95678 ] ], [ [ -90.07772, 29.95599 ], [ -90.077697, 29.956041 ] ], [ [ -90.07542, 29.95496 ], [ -90.07772, 29.95599 ] ], [ [ -90.07729, 29.95567 ], [ -90.077351, 29.955562 ] ], [ [ -90.07729, 29.95567 ], [ -90.0755, 29.95487 ], [ -90.07542, 29.95496 ] ], [ [ -90.07542, 29.95496 ], [ -90.07536, 29.95503 ] ], [ [ -90.07403, 29.9564 ], [ -90.07364, 29.95613 ], [ -90.07489, 29.95471 ], [ -90.07542, 29.95496 ] ], [ [ -90.07536, 29.95503 ], [ -90.07403, 29.9564 ] ], [ [ -90.07536, 29.95503 ], [ -90.075305, 29.954992 ] ], [ [ -90.07403, 29.9564 ], [ -90.074061, 29.956359 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "4", "agency_id": "1", "route_short_name": "4", "route_long_name": "Chalmette Ferry", "route_type": 4, "route_color": "#c0c0c0", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -89.970874, 29.928224 ], [ -89.973402, 29.922004 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "86", "agency_id": "1", "route_short_name": "86", "route_long_name": "St. Maurice-Arabi", "route_type": 3, "route_color": "#008080", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.01711, 29.95716 ], [ -90.017219, 29.957184 ] ], [ [ -90.01654, 29.95891 ], [ -90.01711, 29.95716 ] ], [ [ -90.01711, 29.95716 ], [ -90.01746, 29.95611 ], [ -90.01468, 29.95547 ], [ -90.01337, 29.955 ] ], [ [ -90.01654, 29.95891 ], [ -90.016637, 29.958935 ] ], [ [ -90.01587, 29.96112 ], [ -90.01654, 29.95891 ] ], [ [ -90.01521, 29.96322 ], [ -90.01587, 29.96112 ] ], [ [ -90.01587, 29.96112 ], [ -90.015861, 29.961119 ] ], [ [ -90.01521, 29.96322 ], [ -90.01522, 29.963222 ] ], [ [ -90.01421, 29.96627 ], [ -90.01521, 29.96322 ] ], [ [ -90.01387, 29.96734 ], [ -90.01421, 29.96627 ] ], [ [ -90.01421, 29.96627 ], [ -90.0142, 29.966263 ] ], [ [ -90.01387, 29.96734 ], [ -90.013895, 29.967346 ] ], [ [ -90.01319, 29.96942 ], [ -90.01387, 29.96734 ] ], [ [ -90.01337, 29.955 ], [ -90.0134, 29.954929 ] ], [ [ -90.01337, 29.955 ], [ -90.0124, 29.95465 ], [ -90.01157, 29.95641 ] ], [ [ -90.01319, 29.96942 ], [ -90.013212, 29.969422 ] ], [ [ -90.01253, 29.97147 ], [ -90.01319, 29.96942 ] ], [ [ -90.01253, 29.97147 ], [ -90.01257, 29.971479 ] ], [ [ -90.01185, 29.97352 ], [ -90.01253, 29.97147 ] ], [ [ -90.01185, 29.97352 ], [ -90.011897, 29.973528 ] ], [ [ -90.01119, 29.9756 ], [ -90.01185, 29.97352 ] ], [ [ -90.01157, 29.95641 ], [ -90.01064, 29.95835 ] ], [ [ -90.01157, 29.95641 ], [ -90.011511, 29.956388 ] ], [ [ -90.01119, 29.9756 ], [ -90.011193, 29.975622 ] ], [ [ -90.01063, 29.97728 ], [ -90.01119, 29.9756 ] ], [ [ -90.01063, 29.97728 ], [ -90.010652, 29.977282 ] ], [ [ -90.01064, 29.95835 ], [ -90.01011, 29.95947 ], [ -90.00823, 29.95878 ] ], [ [ -90.01064, 29.95835 ], [ -90.010588, 29.95833 ] ], [ [ -90.00759, 29.97695 ], [ -90.01051, 29.97763 ], [ -90.01063, 29.97728 ] ], [ [ -90.00887, 29.96473 ], [ -90.00755, 29.96746 ] ], [ [ -90.00428, 29.96301 ], [ -90.00887, 29.96473 ] ], [ [ -90.00887, 29.96473 ], [ -90.008809, 29.964709 ] ], [ [ -90.00823, 29.95878 ], [ -90.00834, 29.958726 ] ], [ [ -90.00823, 29.95878 ], [ -90.00585, 29.95791 ] ], [ [ -90.00759, 29.97695 ], [ -90.00756, 29.977016 ] ], [ [ -90.00374, 29.97541 ], [ -90.00369, 29.97552 ], [ -90.00759, 29.97695 ] ], [ [ -90.00755, 29.96746 ], [ -90.00656, 29.96953 ] ], [ [ -90.00755, 29.96746 ], [ -90.007403, 29.967409 ] ], [ [ -90.00656, 29.96953 ], [ -90.00559, 29.97158 ] ], [ [ -90.00656, 29.96953 ], [ -90.006491, 29.969504 ] ], [ [ -90.00585, 29.95791 ], [ -90.005867, 29.957864 ] ], [ [ -90.00585, 29.95791 ], [ -90.00478, 29.95751 ], [ -90.00473, 29.95765 ] ], [ [ -90.00559, 29.97158 ], [ -90.00476, 29.9733 ] ], [ [ -90.00559, 29.97158 ], [ -90.005527, 29.971491 ] ], [ [ -90.00476, 29.9733 ], [ -90.00374, 29.97541 ] ], [ [ -90.00476, 29.9733 ], [ -90.004541, 29.973225 ] ], [ [ -90.00473, 29.95765 ], [ -90.004684, 29.957696 ], [ -90.0047, 29.9577 ], [ -90.00473, 29.95765 ] ], [ [ -90.00473, 29.95765 ], [ -90.007646, 29.958819 ], [ -90.011115, 29.960003 ], [ -90.008903, 29.964546 ], [ -90.003444, 29.962549 ], [ -90.000634, 29.961444 ], [ -90.00066, 29.961354 ], [ -90.000578, 29.961426 ], [ -89.999199, 29.960955 ], [ -89.997878, 29.960799 ], [ -89.996133, 29.960245 ], [ -89.989788, 29.957664 ], [ -89.987732, 29.956768 ], [ -89.988329, 29.955642 ], [ -89.988159, 29.955576 ], [ -89.98755, 29.956695 ], [ -89.980912, 29.954009 ], [ -89.980306, 29.954083 ], [ -89.98344, 29.955422 ], [ -89.99668, 29.96058 ], [ -89.99753, 29.96086 ], [ -89.9995, 29.96115 ], [ -90.00428, 29.96301 ] ], [ [ -90.00428, 29.96301 ], [ -90.004257, 29.963051 ] ], [ [ -90.00374, 29.97541 ], [ -90.003661, 29.975383 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "80", "agency_id": "1", "route_short_name": "80", "route_long_name": "Desire-Louisa", "route_type": 3, "route_color": "#f8b9ab", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.05676, 29.96569 ], [ -90.056869, 29.965682 ] ], [ [ -90.05195, 29.96901 ], [ -90.054342, 29.968979 ], [ -90.056987, 29.968741 ], [ -90.05676, 29.96569 ] ], [ [ -90.05676, 29.96569 ], [ -90.056608, 29.96269 ], [ -90.056231, 29.962627 ], [ -90.056374, 29.9655 ], [ -90.056487, 29.965656 ], [ -90.056699, 29.968218 ], [ -90.056522, 29.968566 ], [ -90.050104, 29.968923 ], [ -90.04891, 29.972897 ], [ -90.03929, 29.970819 ], [ -90.038970801234385, 29.971860182634309 ] ], [ [ -90.05195, 29.96901 ], [ -90.051957, 29.969098 ] ], [ [ -90.04977, 29.971 ], [ -90.05032, 29.96913 ], [ -90.05195, 29.96901 ] ], [ [ -90.04977, 29.971 ], [ -90.049832, 29.971027 ] ], [ [ -90.04913, 29.97308 ], [ -90.04977, 29.971 ] ], [ [ -90.04913, 29.97308 ], [ -90.049171, 29.973085 ] ], [ [ -90.04101, 29.97232 ], [ -90.048844, 29.974113 ], [ -90.04913, 29.97308 ] ], [ [ -90.04101, 29.97232 ], [ -90.040983, 29.972401 ] ], [ [ -90.038970801234385, 29.971860182634309 ], [ -90.04101, 29.97232 ] ], [ [ -90.038970801234385, 29.971860182634309 ], [ -90.038958656934454, 29.971899854014111 ] ], [ [ -90.038958656934454, 29.971899854014111 ], [ -90.038970801234385, 29.971860182634309 ] ], [ [ -90.038958656934454, 29.971899854014111 ], [ -90.037725375000264, 29.976059124999058 ] ], [ [ -90.03803, 29.97506 ], [ -90.038958656934454, 29.971899854014111 ] ], [ [ -90.03803, 29.97506 ], [ -90.038105, 29.975073 ] ], [ [ -90.037725375000264, 29.976059124999058 ], [ -90.03803, 29.97506 ] ], [ [ -90.037687428571218, 29.976188142857797 ], [ -90.037725375000264, 29.976059124999058 ] ], [ [ -90.037725375000264, 29.976059124999058 ], [ -90.037687428571218, 29.976188142857797 ] ], [ [ -90.037687428571218, 29.976188142857797 ], [ -90.037632848739761, 29.97637427730994 ] ], [ [ -90.037632848739761, 29.97637427730994 ], [ -90.037687428571218, 29.976188142857797 ] ], [ [ -90.037459334712452, 29.976961465453044 ], [ -90.037632848739761, 29.97637427730994 ] ], [ [ -90.037632848739761, 29.97637427730994 ], [ -90.037459334712452, 29.976961465453044 ] ], [ [ -90.037416261386142, 29.977121399603956 ], [ -90.037495, 29.977139 ] ], [ [ -90.037459334712452, 29.976961465453044 ], [ -90.037426526717553, 29.977070419847312 ] ], [ [ -90.037426526717553, 29.977070419847312 ], [ -90.037459334712452, 29.976961465453044 ] ], [ [ -90.03741, 29.97712 ], [ -90.037426526717553, 29.977070419847312 ] ], [ [ -90.037426526717553, 29.977070419847312 ], [ -90.037416261386142, 29.977121399603956 ] ], [ [ -90.037416261386142, 29.977121399603956 ], [ -90.037252499999965, 29.977641666666784 ] ], [ [ -90.03741, 29.97712 ], [ -90.037416261386142, 29.977121399603956 ] ], [ [ -90.037252499999965, 29.977641666666784 ], [ -90.03741, 29.97712 ] ], [ [ -90.037252499999965, 29.977641666666784 ], [ -90.035448, 29.983565 ], [ -90.035532, 29.98363 ], [ -90.03653, 29.983862 ], [ -90.036986, 29.985038 ], [ -90.034408, 29.993762 ], [ -90.034513, 29.99382 ], [ -90.034753, 29.996426 ], [ -90.034652, 29.996492 ], [ -90.034769, 29.996559 ], [ -90.034869, 29.997489 ], [ -90.034808, 29.998239 ], [ -90.034516, 29.998434 ], [ -90.033065, 29.998516 ], [ -90.032682, 29.998393 ], [ -90.032427851405245, 29.998574372388905 ] ], [ [ -90.03679, 29.9792 ], [ -90.037252499999965, 29.977641666666784 ] ], [ [ -90.03689, 29.9858 ], [ -90.036893, 29.985803 ] ], [ [ -90.03626, 29.98787 ], [ -90.03689, 29.9858 ] ], [ [ -90.03689, 29.9858 ], [ -90.037393, 29.984052 ], [ -90.035762, 29.98368 ], [ -90.035537, 29.983383 ], [ -90.036244, 29.981281 ], [ -90.03679, 29.9792 ] ], [ [ -90.03679, 29.9792 ], [ -90.036875, 29.979215 ] ], [ [ -90.03563, 29.98995 ], [ -90.03626, 29.98787 ] ], [ [ -90.03626, 29.98787 ], [ -90.03622, 29.987869 ] ], [ [ -90.03563, 29.98995 ], [ -90.035599, 29.989954 ] ], [ [ -90.03499, 29.99208 ], [ -90.03563, 29.98995 ] ], [ [ -90.03494, 29.99659 ], [ -90.03512, 29.996634 ] ], [ [ -90.03499, 29.99208 ], [ -90.035021, 29.992092 ] ], [ [ -90.03467, 29.99366 ], [ -90.03467, 29.99316 ], [ -90.03499, 29.99208 ] ], [ [ -90.032427851405245, 29.998574372388905 ], [ -90.035135, 29.998405 ], [ -90.03494, 29.99659 ] ], [ [ -90.03494, 29.99659 ], [ -90.03467, 29.99366 ] ], [ [ -90.03467, 29.99366 ], [ -90.03475, 29.993707 ] ], [ [ -90.030117267208027, 29.998750107853283 ], [ -90.032427851405245, 29.998574372388905 ] ], [ [ -90.032427851405245, 29.998574372388905 ], [ -90.030117267208027, 29.998750107853283 ] ], [ [ -90.030117267208027, 29.998750107853283 ], [ -90.02995, 29.99876 ], [ -90.03014, 30.001618 ], [ -90.02988, 30.00247 ], [ -90.02898, 30.00422 ], [ -90.028879, 30.00463 ], [ -90.02883, 30.00504 ], [ -90.0289, 30.00565 ], [ -90.02913, 30.006299 ], [ -90.02982, 30.0078 ], [ -90.031608, 30.00739 ], [ -90.032982, 30.006724 ], [ -90.039985, 30.003999 ], [ -90.040457, 30.004946 ], [ -90.040564, 30.004835 ], [ -90.040135, 30.003776 ], [ -90.034148, 30.006154 ], [ -90.033612, 30.005095 ], [ -90.031766, 30.005652 ], [ -90.029213, 30.006098 ], [ -90.028955, 30.005652 ], [ -90.028869, 30.004742 ], [ -90.030114, 30.002401 ], [ -90.030286, 30.001546 ], [ -90.030117267208027, 29.998750107853283 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "61", "agency_id": "1", "route_short_name": "61", "route_long_name": "Lake Forest - Village de L'Est", "route_type": 3, "route_color": "#1f2d84", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.07772, 29.95599 ], [ -90.077697, 29.956041 ] ], [ [ -90.07772, 29.95599 ], [ -90.0787, 29.95642 ], [ -90.07897, 29.95681 ], [ -90.07893, 29.95729 ], [ -90.07851, 29.95778 ], [ -90.0781, 29.95868 ], [ -90.073164929577473, 29.964214366197194 ] ], [ [ -90.07198, 29.95798 ], [ -90.07489, 29.95471 ], [ -90.07772, 29.95599 ] ], [ [ -90.073164929577473, 29.964214366197194 ], [ -90.06159, 29.97711 ], [ -90.05473, 29.98281 ], [ -90.05385, 29.98369 ], [ -90.05298, 29.9853 ], [ -90.05237, 29.98794 ], [ -90.05181, 29.98909 ], [ -90.04487, 29.9969 ], [ -90.04208, 29.99944 ], [ -90.0396, 30.00116 ], [ -90.03531, 30.00272 ], [ -90.03544, 30.00361 ], [ -90.03565, 30.00408 ] ], [ [ -90.03565, 30.00408 ], [ -90.03665, 30.0036 ], [ -90.03674, 30.00311 ], [ -90.03711, 30.00281 ], [ -90.03924, 30.00162 ], [ -90.04173, 29.99999 ], [ -90.04333, 29.99872 ], [ -90.04487, 29.99726 ], [ -90.05205, 29.98915 ], [ -90.05265, 29.98785 ], [ -90.05331, 29.98509 ], [ -90.05412, 29.98373 ], [ -90.0615, 29.97748 ], [ -90.07155, 29.96622 ], [ -90.07204, 29.96599 ], [ -90.07321, 29.96589 ], [ -90.07351, 29.96571 ], [ -90.07415, 29.96489 ], [ -90.073164929577473, 29.964214366197194 ] ], [ [ -90.073164929577473, 29.964214366197194 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ], [ [ -90.03374, 30.00541 ], [ -90.03357, 30.00507 ], [ -90.03565, 30.00408 ] ], [ [ -90.0341, 30.00612 ], [ -90.030758, 30.007358 ], [ -90.02078, 30.00978 ], [ -90.02088, 30.01033 ] ], [ [ -90.02094, 30.0101 ], [ -90.02092, 30.00989 ], [ -90.02155, 30.00972 ], [ -90.03166, 30.00721 ], [ -90.03416, 30.00626 ], [ -90.0341, 30.00612 ] ], [ [ -90.0341, 30.00612 ], [ -90.0339, 30.00572 ] ], [ [ -90.0339, 30.00572 ], [ -90.033825, 30.005795 ] ], [ [ -90.0339, 30.00572 ], [ -90.03387, 30.00567 ] ], [ [ -90.033804096385524, 30.005538192771077 ], [ -90.03387, 30.00567 ] ], [ [ -90.03387, 30.00567 ], [ -90.0338, 30.00554 ] ], [ [ -90.033804096385524, 30.005538192771077 ], [ -90.033834, 30.005525 ] ], [ [ -90.0338, 30.00554 ], [ -90.033804096385524, 30.005538192771077 ] ], [ [ -90.03374, 30.00541 ], [ -90.033804096385524, 30.005538192771077 ] ], [ [ -90.0338, 30.00554 ], [ -90.03374, 30.00541 ] ], [ [ -90.02164, 30.0185 ], [ -90.020818066666763, 30.018717177777738 ] ], [ [ -90.02153, 30.01853 ], [ -90.02164, 30.0185 ] ], [ [ -90.02164, 30.0185 ], [ -90.02174, 30.01847 ], [ -90.02154, 30.0163 ] ], [ [ -90.02161, 30.01824 ], [ -90.02164, 30.0185 ] ], [ [ -90.02161, 30.01824 ], [ -90.021569, 30.01824 ] ], [ [ -90.02144, 30.01613 ], [ -90.02161, 30.01824 ] ], [ [ -90.02154, 30.0163 ], [ -90.0216, 30.016292 ] ], [ [ -90.02153, 30.01853 ], [ -90.021552, 30.018586 ] ], [ [ -90.02154, 30.0163 ], [ -90.02135, 30.01439 ] ], [ [ -90.020818066666763, 30.018717177777738 ], [ -90.02153, 30.01853 ] ], [ [ -90.02144, 30.01613 ], [ -90.021389, 30.016133 ] ], [ [ -90.02108, 30.01241 ], [ -90.02144, 30.01613 ] ], [ [ -90.02135, 30.01439 ], [ -90.021412, 30.014387 ] ], [ [ -90.02135, 30.01439 ], [ -90.02116, 30.01241 ] ], [ [ -90.02116, 30.01241 ], [ -90.021239, 30.012418 ] ], [ [ -90.02116, 30.01241 ], [ -90.02094, 30.0101 ] ], [ [ -90.02108, 30.01241 ], [ -90.020957, 30.012361 ] ], [ [ -90.02088, 30.01033 ], [ -90.02108, 30.01241 ] ], [ [ -90.02094, 30.0101 ], [ -90.020993, 30.010096 ] ], [ [ -90.02088, 30.01033 ], [ -90.020829, 30.010331 ] ], [ [ -90.020759719297615, 30.018732526315965 ], [ -90.020818066666763, 30.018717177777738 ] ], [ [ -90.020818066666763, 30.018717177777738 ], [ -90.020759719297615, 30.018732526315965 ] ], [ [ -90.020759719297615, 30.018732526315965 ], [ -90.02054, 30.01879 ] ], [ [ -90.02054, 30.01879 ], [ -90.020759719297615, 30.018732526315965 ] ], [ [ -90.01975, 30.019 ], [ -90.02054, 30.01879 ] ], [ [ -90.01975, 30.019 ], [ -90.01958, 30.01904 ] ], [ [ -90.01957, 30.01905 ], [ -90.01975, 30.019 ] ], [ [ -90.01957, 30.01905 ], [ -90.019602, 30.019149 ] ], [ [ -90.01958, 30.01904 ], [ -90.01877, 30.01925 ] ], [ [ -90.01958, 30.01904 ], [ -90.01956, 30.018987 ] ], [ [ -90.01877, 30.01925 ], [ -90.01957, 30.01905 ] ], [ [ -90.01797, 30.01948 ], [ -90.01877, 30.01925 ] ], [ [ -90.01797, 30.01948 ], [ -90.018026, 30.019354 ] ], [ [ -90.0178, 30.01952 ], [ -90.01797, 30.01948 ] ], [ [ -90.01797, 30.01948 ], [ -90.017801546790395, 30.019523944315551 ] ], [ [ -90.017801546790395, 30.019523944315551 ], [ -90.01782, 30.019571 ] ], [ [ -90.017801546790395, 30.019523944315551 ], [ -90.01751, 30.0196 ] ], [ [ -90.0178, 30.01952 ], [ -90.017801546790395, 30.019523944315551 ] ], [ [ -90.01751, 30.0196 ], [ -90.0178, 30.01952 ] ], [ [ -90.01619, 30.01994 ], [ -90.01751, 30.0196 ] ], [ [ -90.01619, 30.01994 ], [ -90.01618, 30.0198 ], [ -90.016296, 30.019785 ] ], [ [ -90.0154, 30.02015 ], [ -90.01619, 30.01994 ] ], [ [ -90.0154, 30.02015 ], [ -90.01538, 30.02015 ] ], [ [ -90.01507, 30.02024 ], [ -90.0154, 30.02015 ] ], [ [ -90.01538, 30.02015 ], [ -90.01507, 30.02024 ] ], [ [ -90.01538, 30.02015 ], [ -90.015342, 30.020032 ] ], [ [ -90.01503, 30.02025 ], [ -90.01507, 30.02024 ] ], [ [ -90.01496, 30.02026 ], [ -90.01503, 30.02025 ] ], [ [ -90.01503, 30.02025 ], [ -90.014961543624153, 30.020265402684551 ] ], [ [ -90.014961543624153, 30.020265402684551 ], [ -90.01497, 30.020295 ] ], [ [ -90.014961543624153, 30.020265402684551 ], [ -90.01463, 30.02034 ] ], [ [ -90.01496, 30.02026 ], [ -90.014961543624153, 30.020265402684551 ] ], [ [ -90.01463, 30.02034 ], [ -90.01496, 30.02026 ] ], [ [ -90.01313, 30.02073 ], [ -90.01463, 30.02034 ] ], [ [ -90.01313, 30.02073 ], [ -90.01295, 30.02076 ] ], [ [ -90.01303, 30.02075 ], [ -90.01313, 30.02073 ] ], [ [ -90.01303, 30.02075 ], [ -90.013043, 30.020826 ] ], [ [ -90.01295, 30.02076 ], [ -90.01303, 30.02075 ] ], [ [ -90.01295, 30.02076 ], [ -90.013021, 30.020664 ] ], [ [ -90.01218, 30.02084 ], [ -90.01295, 30.02076 ] ], [ [ -90.01218, 30.02084 ], [ -90.01175, 30.02088 ] ], [ [ -90.01166, 30.02089 ], [ -90.01218, 30.02084 ] ], [ [ -90.01175, 30.02088 ], [ -90.01166, 30.02089 ] ], [ [ -90.01175, 30.02088 ], [ -90.011735, 30.020796 ] ], [ [ -90.00985, 30.02105 ], [ -90.01166, 30.02089 ] ], [ [ -90.00985, 30.02105 ], [ -90.009889, 30.020984 ] ], [ [ -90.00967, 30.02107 ], [ -90.00985, 30.02105 ] ], [ [ -90.00953, 30.02108 ], [ -90.00967, 30.02107 ] ], [ [ -90.00967, 30.02107 ], [ -90.009530828878255, 30.021084583209216 ] ], [ [ -90.009530828878255, 30.021084583209216 ], [ -90.009547, 30.021174 ] ], [ [ -90.009530828878255, 30.021084583209216 ], [ -90.00753, 30.0213 ] ], [ [ -90.00953, 30.02108 ], [ -90.009530828878255, 30.021084583209216 ] ], [ [ -90.00753, 30.0213 ], [ -90.00953, 30.02108 ] ], [ [ -90.00571, 30.02146 ], [ -90.00753, 30.0213 ] ], [ [ -90.00571, 30.02146 ], [ -90.00572, 30.021533 ] ], [ [ -90.00539, 30.02149 ], [ -90.00571, 30.02146 ] ], [ [ -90.00571, 30.02146 ], [ -90.005698, 30.021371 ] ], [ [ -90.004519500766648, 30.021567137728887 ], [ -90.00539, 30.02149 ] ], [ [ -90.00539, 30.02149 ], [ -90.00452, 30.02157 ] ], [ [ -90.00452, 30.02157 ], [ -90.00437, 30.02158 ] ], [ [ -90.00452, 30.02157 ], [ -90.004519500766648, 30.021567137728887 ] ], [ [ -90.00437, 30.02158 ], [ -90.004519500766648, 30.021567137728887 ] ], [ [ -90.004519500766648, 30.021567137728887 ], [ -90.004505, 30.021484 ] ], [ [ -90.00437, 30.02158 ], [ -90.0035, 30.02166 ] ], [ [ -90.0035, 30.02166 ], [ -90.00437, 30.02158 ] ], [ [ -90.00437, 30.02158 ], [ -90.00433, 30.021665 ] ], [ [ -90.00249, 30.02175 ], [ -90.0035, 30.02166 ] ], [ [ -90.00225785714224, 30.02177285714291 ], [ -90.00249, 30.02175 ] ], [ [ -90.00249, 30.02175 ], [ -90.00225785714224, 30.02177285714291 ] ], [ [ -90.00225785714224, 30.02177285714291 ], [ -90.002212321429127, 30.021777321428523 ] ], [ [ -90.002212321429127, 30.021777321428523 ], [ -90.00225785714224, 30.02177285714291 ] ], [ [ -90.002025714285821, 30.021795714285702 ], [ -90.002212321429127, 30.021777321428523 ] ], [ [ -90.002212321429127, 30.021777321428523 ], [ -90.002108, 30.021788 ], [ -90.002025714285821, 30.021795714285702 ] ], [ [ -90.002025714285821, 30.021795714285702 ], [ -90.00198, 30.0218 ] ], [ [ -90.00188, 30.02181 ], [ -90.002025714285821, 30.021795714285702 ] ], [ [ -90.00198, 30.0218 ], [ -90.00188, 30.02181 ] ], [ [ -90.00198, 30.0218 ], [ -90.001975, 30.021719 ] ], [ [ -90.00171, 30.02182 ], [ -90.00188, 30.02181 ] ], [ [ -90.00188, 30.02181 ], [ -90.001710276243088, 30.02182414364642 ] ], [ [ -90.001710276243088, 30.02182414364642 ], [ -90.001716, 30.02191 ] ], [ [ -90.001710276243088, 30.02182414364642 ], [ -90.00152, 30.02184 ] ], [ [ -90.00171, 30.02182 ], [ -90.001710276243088, 30.02182414364642 ] ], [ [ -90.00152, 30.02184 ], [ -90.00171, 30.02182 ] ], [ [ -89.99972, 30.02203 ], [ -90.00152, 30.02184 ] ], [ [ -90.00053, 30.0239 ], [ -90.000586, 30.023969 ] ], [ [ -89.99757, 30.02459 ], [ -89.99974, 30.0242 ], [ -90.00053, 30.0239 ] ], [ [ -90.00053, 30.0239 ], [ -90.00081, 30.02373 ], [ -90.00027, 30.02308 ], [ -89.99991, 30.02237 ] ], [ [ -89.99991, 30.02237 ], [ -89.999975, 30.022349 ] ], [ [ -89.99991, 30.02237 ], [ -89.99972, 30.02203 ] ], [ [ -89.99972, 30.02203 ], [ -89.99957, 30.02207 ], [ -89.99971, 30.02245 ] ], [ [ -89.99971, 30.02245 ], [ -89.999633, 30.022468 ] ], [ [ -89.99971, 30.02245 ], [ -90.00024, 30.02343 ], [ -90.00009, 30.02382 ], [ -89.99752, 30.02441 ], [ -89.99471, 30.02547 ] ], [ [ -89.99757, 30.02459 ], [ -89.997611, 30.024675 ] ], [ [ -89.99519, 30.02548 ], [ -89.99757, 30.02459 ] ], [ [ -89.99519, 30.02548 ], [ -89.995208, 30.025518 ] ], [ [ -89.99174, 30.02722 ], [ -89.99268, 30.02681 ], [ -89.99394, 30.02597 ], [ -89.99519, 30.02548 ] ], [ [ -89.99471, 30.02547 ], [ -89.99376, 30.02584 ], [ -89.99208, 30.02685 ] ], [ [ -89.99471, 30.02547 ], [ -89.994636, 30.025399 ] ], [ [ -89.99208, 30.02685 ], [ -89.98985, 30.02774 ], [ -89.98898, 30.02796 ] ], [ [ -89.99208, 30.02685 ], [ -89.992039, 30.026779 ] ], [ [ -89.99174, 30.02722 ], [ -89.991772, 30.027276 ] ], [ [ -89.98726, 30.02839 ], [ -89.98969, 30.02799 ], [ -89.99174, 30.02722 ] ], [ [ -89.98898, 30.02796 ], [ -89.982731427179218, 30.0289061201949 ] ], [ [ -89.98898, 30.02796 ], [ -89.98892, 30.027756 ] ], [ [ -89.98726, 30.02839 ], [ -89.987274, 30.028456 ] ], [ [ -89.98421, 30.02888 ], [ -89.98726, 30.02839 ] ], [ [ -89.98421, 30.02888 ], [ -89.984225, 30.028955 ] ], [ [ -89.98284, 30.02912 ], [ -89.98421, 30.02888 ] ], [ [ -89.9826, 30.02916 ], [ -89.98284, 30.02912 ] ], [ [ -89.98284, 30.02912 ], [ -89.982731427179218, 30.0289061201949 ] ], [ [ -89.982731427179218, 30.0289061201949 ], [ -89.980936101098862, 30.026030582417562 ] ], [ [ -89.982731427179218, 30.0289061201949 ], [ -89.980936101098862, 30.026030582417562 ] ], [ [ -89.98187, 30.02927 ], [ -89.9826, 30.02916 ] ], [ [ -89.982455829462893, 30.028952858669321 ], [ -89.9826, 30.02916 ] ], [ [ -89.982455829462893, 30.028952858669321 ], [ -89.97869, 30.02969 ], [ -89.97668, 30.03068 ] ], [ [ -89.982377593968636, 30.028818670084441 ], [ -89.982455829462893, 30.028952858669321 ] ], [ [ -89.982377593968636, 30.028818670084441 ], [ -89.982455829462893, 30.028952858669321 ] ], [ [ -89.982254001120523, 30.028605549863919 ], [ -89.982377593968636, 30.028818670084441 ] ], [ [ -89.982254001120523, 30.028605549863919 ], [ -89.9822, 30.02872 ], [ -89.982377593968636, 30.028818670084441 ] ], [ [ -89.981981421524694, 30.028126022421571 ], [ -89.982254001120523, 30.028605549863919 ] ], [ [ -89.981981421524694, 30.028126022421571 ], [ -89.982254001120523, 30.028605549863919 ] ], [ [ -89.980629957532869, 30.02599222446916 ], [ -89.98113, 30.02669 ], [ -89.981981421524694, 30.028126022421571 ] ], [ [ -89.980629957532869, 30.02599222446916 ], [ -89.981981421524694, 30.028126022421571 ] ], [ [ -89.98187, 30.02927 ], [ -89.981881, 30.029334 ] ], [ [ -89.97753, 30.03039 ], [ -89.97931, 30.02967 ], [ -89.98187, 30.02927 ] ], [ [ -89.980936101098862, 30.026030582417562 ], [ -89.980733, 30.025703 ], [ -89.980701721767687, 30.025700799521331 ] ], [ [ -89.980936101098862, 30.026030582417562 ], [ -89.980701721767687, 30.025700799521331 ] ], [ [ -89.980701721767687, 30.025700799521331 ], [ -89.980615662701766, 30.025694745114688 ] ], [ [ -89.980701721767687, 30.025700799521331 ], [ -89.980615662701766, 30.025694745114688 ] ], [ [ -89.980619517337004, 30.025980360610269 ], [ -89.980629957532869, 30.02599222446916 ] ], [ [ -89.980619517337004, 30.025980360610269 ], [ -89.980629957532869, 30.02599222446916 ] ], [ [ -89.980507354838693, 30.025851419354819 ], [ -89.980619517337004, 30.025980360610269 ] ], [ [ -89.980507354838693, 30.025851419354819 ], [ -89.980619517337004, 30.025980360610269 ] ], [ [ -89.980615662701766, 30.025694745114688 ], [ -89.98055, 30.02572 ] ], [ [ -89.980615662701766, 30.025694745114688 ], [ -89.980534, 30.025689 ] ], [ [ -89.98055, 30.02572 ], [ -89.980527516728628, 30.025727494423773 ] ], [ [ -89.98055, 30.02572 ], [ -89.980534, 30.025689 ] ], [ [ -89.980534, 30.025689 ], [ -89.980527516728628, 30.025727494423773 ] ], [ [ -89.980527516728628, 30.025727494423773 ], [ -89.98043, 30.02576 ], [ -89.980507354838693, 30.025851419354819 ] ], [ [ -89.980527516728628, 30.025727494423773 ], [ -89.980507354838693, 30.025851419354819 ] ], [ [ -89.97753, 30.03039 ], [ -89.97758, 30.030459 ] ], [ [ -89.9723, 30.0321 ], [ -89.97293, 30.03298 ], [ -89.97753, 30.03039 ] ], [ [ -89.97668, 30.03068 ], [ -89.97311, 30.03255 ] ], [ [ -89.97668, 30.03068 ], [ -89.976667, 30.030661 ] ], [ [ -89.97311, 30.03255 ], [ -89.97299, 30.03261 ], [ -89.97114, 30.03009 ] ], [ [ -89.97311, 30.03255 ], [ -89.973096, 30.032531 ] ], [ [ -89.9723, 30.0321 ], [ -89.97216, 30.032174 ] ], [ [ -89.97079, 30.02993 ], [ -89.9723, 30.0321 ] ], [ [ -89.97114, 30.03009 ], [ -89.971184, 30.029961 ] ], [ [ -89.97114, 30.03009 ], [ -89.96909, 30.02715 ] ], [ [ -89.97079, 30.02993 ], [ -89.970655, 30.029999 ] ], [ [ -89.96925, 30.0277 ], [ -89.97079, 30.02993 ] ], [ [ -89.96925, 30.0277 ], [ -89.969169, 30.027743 ] ], [ [ -89.96854, 30.02426 ], [ -89.96879, 30.02686 ], [ -89.96925, 30.0277 ] ], [ [ -89.96909, 30.02715 ], [ -89.969166, 30.02713 ] ], [ [ -89.96909, 30.02715 ], [ -89.96894, 30.0268 ], [ -89.9687, 30.02444 ] ], [ [ -89.9687, 30.02444 ], [ -89.968769, 30.024437 ] ], [ [ -89.9687, 30.02444 ], [ -89.96839, 30.02139 ] ], [ [ -89.96854, 30.02426 ], [ -89.968426, 30.024349 ] ], [ [ -89.96825, 30.0214 ], [ -89.96854, 30.02426 ] ], [ [ -89.96839, 30.02139 ], [ -89.968473, 30.021384 ] ], [ [ -89.96839, 30.02139 ], [ -89.96809, 30.01845 ], [ -89.96525, 30.01915 ] ], [ [ -89.96825, 30.0214 ], [ -89.968193, 30.021403 ] ], [ [ -89.96777, 30.01865 ], [ -89.96796, 30.0186 ], [ -89.96825, 30.0214 ] ], [ [ -89.96777, 30.01865 ], [ -89.967797, 30.018742 ] ], [ [ -89.96506, 30.01932 ], [ -89.96777, 30.01865 ] ], [ [ -89.96525, 30.01915 ], [ -89.96309, 30.01969 ] ], [ [ -89.96525, 30.01915 ], [ -89.965235, 30.019102 ] ], [ [ -89.96506, 30.01932 ], [ -89.965081, 30.01939 ] ], [ [ -89.96293, 30.01984 ], [ -89.96506, 30.01932 ] ], [ [ -89.96309, 30.01969 ], [ -89.96172, 30.02003 ] ], [ [ -89.96309, 30.01969 ], [ -89.963075, 30.019634 ] ], [ [ -89.96293, 30.01984 ], [ -89.962959, 30.019921 ] ], [ [ -89.96152, 30.0202 ], [ -89.96293, 30.01984 ] ], [ [ -89.96172, 30.02003 ], [ -89.95937, 30.02062 ] ], [ [ -89.96172, 30.02003 ], [ -89.961698, 30.019962 ] ], [ [ -89.96152, 30.0202 ], [ -89.961541, 30.020267 ] ], [ [ -89.95894, 30.02085 ], [ -89.96152, 30.0202 ] ], [ [ -89.95937, 30.02062 ], [ -89.95579, 30.02152 ] ], [ [ -89.95937, 30.02062 ], [ -89.959351, 30.020552 ] ], [ [ -89.95894, 30.02085 ], [ -89.958964, 30.020925 ] ], [ [ -89.95534, 30.02174 ], [ -89.95894, 30.02085 ] ], [ [ -89.95579, 30.02152 ], [ -89.95181, 30.0226 ] ], [ [ -89.95579, 30.02152 ], [ -89.955764, 30.021438 ] ], [ [ -89.95534, 30.02174 ], [ -89.955369, 30.021808 ] ], [ [ -89.95159, 30.02279 ], [ -89.95534, 30.02174 ] ], [ [ -89.95181, 30.0226 ], [ -89.94783, 30.02397 ] ], [ [ -89.95181, 30.0226 ], [ -89.951796, 30.022557 ] ], [ [ -89.95159, 30.02279 ], [ -89.95161, 30.022849 ] ], [ [ -89.9479, 30.02405 ], [ -89.95159, 30.02279 ] ], [ [ -89.9479, 30.02405 ], [ -89.947938, 30.024136 ] ], [ [ -89.93302, 30.0293 ], [ -89.9479, 30.02405 ] ], [ [ -89.94783, 30.02397 ], [ -89.9326, 30.02931 ] ], [ [ -89.94783, 30.02397 ], [ -89.947798, 30.023907 ] ], [ [ -89.93302, 30.0293 ], [ -89.933056, 30.029377 ] ], [ [ -89.92766, 30.03118 ], [ -89.93302, 30.0293 ] ], [ [ -89.9326, 30.02931 ], [ -89.93072, 30.02998 ] ], [ [ -89.9326, 30.02931 ], [ -89.932558, 30.029222 ] ], [ [ -89.93072, 30.02998 ], [ -89.92799, 30.03094 ] ], [ [ -89.93072, 30.02998 ], [ -89.930697, 30.029924 ] ], [ [ -89.92976, 30.03663 ], [ -89.929667, 30.036645 ] ], [ [ -89.92976, 30.03663 ], [ -89.92978, 30.03675 ], [ -89.9269, 30.03763 ] ], [ [ -89.92889, 30.03389 ], [ -89.92946, 30.03537 ], [ -89.92976, 30.03663 ] ], [ [ -89.92889, 30.03389 ], [ -89.928825, 30.033909 ] ], [ [ -89.92766, 30.03118 ], [ -89.92889, 30.03389 ] ], [ [ -89.92799, 30.03094 ], [ -89.9276, 30.03107 ], [ -89.92766, 30.03118 ] ], [ [ -89.92799, 30.03094 ], [ -89.927935, 30.03083 ] ], [ [ -89.92746, 30.03125 ], [ -89.92766, 30.03118 ] ], [ [ -89.92746, 30.03125 ], [ -89.927508, 30.031357 ] ], [ [ -89.9245, 30.03227 ], [ -89.92746, 30.03125 ] ], [ [ -89.9269, 30.03763 ], [ -89.92374, 30.0386 ] ], [ [ -89.9269, 30.03763 ], [ -89.926873, 30.037572 ] ], [ [ -89.9245, 30.03227 ], [ -89.924527, 30.032343 ] ], [ [ -89.92304, 30.03275 ], [ -89.9245, 30.03227 ] ], [ [ -89.92374, 30.0386 ], [ -89.92208, 30.03909 ] ], [ [ -89.92374, 30.0386 ], [ -89.92372, 30.038547 ] ], [ [ -89.92304, 30.03275 ], [ -89.923064, 30.032814 ] ], [ [ -89.91717, 30.03461 ], [ -89.92304, 30.03275 ] ], [ [ -89.92208, 30.03909 ], [ -89.91948, 30.03989 ] ], [ [ -89.92208, 30.03909 ], [ -89.922057, 30.039046 ] ], [ [ -89.91948, 30.03989 ], [ -89.91707, 30.04061 ] ], [ [ -89.91948, 30.03989 ], [ -89.919461, 30.039847 ] ], [ [ -89.91717, 30.03461 ], [ -89.917203, 30.034696 ] ], [ [ -89.91347, 30.03581 ], [ -89.91717, 30.03461 ] ], [ [ -89.91707, 30.04061 ], [ -89.91389, 30.04158 ] ], [ [ -89.91707, 30.04061 ], [ -89.917048, 30.040547 ] ], [ [ -89.91389, 30.04158 ], [ -89.91375, 30.04162 ], [ -89.91262, 30.03879 ] ], [ [ -89.91389, 30.04158 ], [ -89.913865, 30.04152 ] ], [ [ -89.91347, 30.03581 ], [ -89.913517, 30.035926 ] ], [ [ -89.91162, 30.03641 ], [ -89.91347, 30.03581 ] ], [ [ -89.91262, 30.03879 ], [ -89.912695, 30.038766 ] ], [ [ -89.91262, 30.03879 ], [ -89.91164, 30.03648 ] ], [ [ -89.91164, 30.03648 ], [ -89.911699, 30.036463 ] ], [ [ -89.91164, 30.03648 ], [ -89.91162, 30.03641 ] ], [ [ -89.91135, 30.03649 ], [ -89.91162, 30.03641 ] ], [ [ -89.91162, 30.03641 ], [ -89.91157, 30.03629 ], [ -89.9054, 30.03825 ], [ -89.90545, 30.03836 ], [ -89.90699, 30.03787 ] ], [ [ -89.91135, 30.03649 ], [ -89.911378, 30.036545 ] ], [ [ -89.90933, 30.03713 ], [ -89.91135, 30.03649 ] ], [ [ -89.90933, 30.03713 ], [ -89.90936, 30.0372 ] ], [ [ -89.90699, 30.03787 ], [ -89.90933, 30.03713 ] ], [ [ -89.90699, 30.03787 ], [ -89.907013, 30.037929 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "1", "agency_id": "1", "route_short_name": "1", "route_long_name": "Algiers Point Ferry", "route_type": 4, "route_color": "#00ffff", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.055998, 29.953127 ], [ -90.062179, 29.949989 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "62", "agency_id": "1", "route_short_name": "62", "route_long_name": "Morrison Express", "route_type": 3, "route_color": "#00b6de", "route_text_color": "#0000ff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.07772, 29.95599 ], [ -90.077697, 29.956041 ] ], [ [ -90.07772, 29.95599 ], [ -90.0787, 29.95642 ], [ -90.07897, 29.95681 ], [ -90.07893, 29.95729 ], [ -90.07851, 29.95778 ], [ -90.0781, 29.95868 ], [ -90.073164929577473, 29.964214366197194 ] ], [ [ -90.074, 29.9557 ], [ -90.07489, 29.95471 ], [ -90.07772, 29.95599 ] ], [ [ -90.074, 29.9557 ], [ -90.074078, 29.955755 ] ], [ [ -90.07198, 29.95798 ], [ -90.074, 29.9557 ] ], [ [ -90.073164929577473, 29.964214366197194 ], [ -90.06159, 29.97711 ], [ -90.05473, 29.98281 ], [ -90.05385, 29.98369 ], [ -90.05298, 29.9853 ], [ -90.05237, 29.98794 ], [ -90.05181, 29.98909 ], [ -90.04487, 29.9969 ], [ -90.04208, 29.99944 ], [ -90.0396, 30.00116 ], [ -90.03531, 30.00272 ], [ -90.03544, 30.00361 ], [ -90.03565, 30.00408 ] ], [ [ -90.03565, 30.00408 ], [ -90.03665, 30.0036 ], [ -90.03674, 30.00311 ], [ -90.03711, 30.00281 ], [ -90.03924, 30.00162 ], [ -90.04173, 29.99999 ], [ -90.04333, 29.99872 ], [ -90.04487, 29.99726 ], [ -90.05205, 29.98915 ], [ -90.05265, 29.98785 ], [ -90.05331, 29.98509 ], [ -90.05412, 29.98373 ], [ -90.0615, 29.97748 ], [ -90.07155, 29.96622 ], [ -90.07204, 29.96599 ], [ -90.07321, 29.96589 ], [ -90.07351, 29.96571 ], [ -90.07415, 29.96489 ], [ -90.073164929577473, 29.964214366197194 ] ], [ [ -90.073164929577473, 29.964214366197194 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ], [ [ -90.03374, 30.00541 ], [ -90.03357, 30.00507 ], [ -90.03565, 30.00408 ] ], [ [ -90.0341, 30.00612 ], [ -90.030758, 30.007358 ], [ -90.02078, 30.00978 ], [ -90.02088, 30.01033 ] ], [ [ -90.02094, 30.0101 ], [ -90.02092, 30.00989 ], [ -90.02155, 30.00972 ], [ -90.03166, 30.00721 ], [ -90.03416, 30.00626 ], [ -90.0341, 30.00612 ] ], [ [ -90.0341, 30.00612 ], [ -90.0339, 30.00572 ] ], [ [ -90.0339, 30.00572 ], [ -90.033825, 30.005795 ] ], [ [ -90.0339, 30.00572 ], [ -90.03387, 30.00567 ] ], [ [ -90.033804096385524, 30.005538192771077 ], [ -90.03387, 30.00567 ] ], [ [ -90.03387, 30.00567 ], [ -90.0338, 30.00554 ] ], [ [ -90.033804096385524, 30.005538192771077 ], [ -90.033834, 30.005525 ] ], [ [ -90.0338, 30.00554 ], [ -90.033804096385524, 30.005538192771077 ] ], [ [ -90.03374, 30.00541 ], [ -90.033804096385524, 30.005538192771077 ] ], [ [ -90.0338, 30.00554 ], [ -90.03374, 30.00541 ] ], [ [ -90.02434, 30.02588 ], [ -90.024261, 30.025901 ] ], [ [ -90.02434, 30.02588 ], [ -90.02438, 30.02599 ], [ -90.02082, 30.02704 ] ], [ [ -90.02365, 30.02397 ], [ -90.02434, 30.02588 ] ], [ [ -90.0242, 30.02523 ], [ -90.024266, 30.025257 ] ], [ [ -90.02363, 30.02649 ], [ -90.02456, 30.02622 ], [ -90.0242, 30.02523 ] ], [ [ -90.0242, 30.02523 ], [ -90.02361, 30.02362 ] ], [ [ -90.02361, 30.02362 ], [ -90.023672, 30.023602 ] ], [ [ -90.02363, 30.02649 ], [ -90.023661, 30.026566 ] ], [ [ -90.02365, 30.02397 ], [ -90.023584, 30.02398 ] ], [ [ -90.02292, 30.022 ], [ -90.02365, 30.02397 ] ], [ [ -90.0208, 30.02733 ], [ -90.02363, 30.02649 ] ], [ [ -90.02361, 30.02362 ], [ -90.02308, 30.02221 ] ], [ [ -90.02308, 30.02221 ], [ -90.023153, 30.022186 ] ], [ [ -90.02308, 30.02221 ], [ -90.02228, 30.02002 ] ], [ [ -90.02292, 30.022 ], [ -90.022858, 30.022017 ] ], [ [ -90.02215, 30.01989 ], [ -90.02292, 30.022 ] ], [ [ -90.02228, 30.02002 ], [ -90.022361, 30.019997 ] ], [ [ -90.02228, 30.02002 ], [ -90.02179, 30.0186 ] ], [ [ -90.02215, 30.01989 ], [ -90.02209, 30.019908 ] ], [ [ -90.02161, 30.01824 ], [ -90.02215, 30.01989 ] ], [ [ -90.02179, 30.0186 ], [ -90.021836, 30.018586 ] ], [ [ -90.02179, 30.0186 ], [ -90.02154, 30.0163 ] ], [ [ -90.02161, 30.01824 ], [ -90.021569, 30.01824 ] ], [ [ -90.02144, 30.01613 ], [ -90.02161, 30.01824 ] ], [ [ -90.02154, 30.0163 ], [ -90.0216, 30.016292 ] ], [ [ -90.02154, 30.0163 ], [ -90.02135, 30.01439 ] ], [ [ -90.02144, 30.01613 ], [ -90.021389, 30.016133 ] ], [ [ -90.02108, 30.01241 ], [ -90.02144, 30.01613 ] ], [ [ -90.02135, 30.01439 ], [ -90.021412, 30.014387 ] ], [ [ -90.02135, 30.01439 ], [ -90.02116, 30.01241 ] ], [ [ -90.02116, 30.01241 ], [ -90.021239, 30.012418 ] ], [ [ -90.02116, 30.01241 ], [ -90.02094, 30.0101 ] ], [ [ -90.02108, 30.01241 ], [ -90.020957, 30.012361 ] ], [ [ -90.02088, 30.01033 ], [ -90.02108, 30.01241 ] ], [ [ -90.02094, 30.0101 ], [ -90.020993, 30.010096 ] ], [ [ -90.02088, 30.01033 ], [ -90.020829, 30.010331 ] ], [ [ -90.02082, 30.02704 ], [ -90.01914, 30.0275 ], [ -90.01767, 30.02763 ], [ -90.01687, 30.02826 ], [ -90.01625, 30.028337 ], [ -90.008582, 30.030856 ], [ -90.00152, 30.03354 ] ], [ [ -90.02082, 30.02704 ], [ -90.020798, 30.026987 ] ], [ [ -90.0208, 30.02733 ], [ -90.020801, 30.027416 ] ], [ [ -90.01626, 30.02867 ], [ -90.0208, 30.02733 ] ], [ [ -90.01626, 30.02867 ], [ -90.016277, 30.028719 ] ], [ [ -90.01424, 30.02929 ], [ -90.01626, 30.02867 ] ], [ [ -90.01424, 30.02929 ], [ -90.014255, 30.029333 ] ], [ [ -90.01237, 30.02991 ], [ -90.01424, 30.02929 ] ], [ [ -90.01237, 30.02991 ], [ -90.012394, 30.029969 ] ], [ [ -90.00965, 30.03083 ], [ -90.01237, 30.02991 ] ], [ [ -90.00965, 30.03083 ], [ -90.009685, 30.030906 ] ], [ [ -90.00677, 30.03182 ], [ -90.00965, 30.03083 ] ], [ [ -90.00478, 30.03257 ], [ -90.00677, 30.03182 ] ], [ [ -90.00677, 30.03182 ], [ -90.006743, 30.031936 ] ], [ [ -90.00478, 30.03257 ], [ -90.004816, 30.032656 ] ], [ [ -90.00331, 30.03312 ], [ -90.00478, 30.03257 ] ], [ [ -90.00331, 30.03312 ], [ -90.003345, 30.033185 ] ], [ [ -90.00178, 30.03369 ], [ -90.00331, 30.03312 ] ], [ [ -89.99937, 30.03459 ], [ -90.00178, 30.03369 ] ], [ [ -90.00178, 30.03369 ], [ -90.00176, 30.033786 ] ], [ [ -90.00152, 30.03354 ], [ -89.99689, 30.03533 ] ], [ [ -90.00152, 30.03354 ], [ -90.001488, 30.033483 ] ], [ [ -89.99937, 30.03459 ], [ -89.999401, 30.034649 ] ], [ [ -89.996916696850519, 30.035606393387834 ], [ -89.99937, 30.03459 ] ], [ [ -89.995207, 30.036339 ], [ -89.996916696850519, 30.035606393387834 ] ], [ [ -89.995207, 30.036339 ], [ -89.996439, 30.035819 ], [ -89.996592, 30.035889 ], [ -89.996578, 30.035763 ], [ -89.996916696850519, 30.035606393387834 ] ], [ [ -89.996916696850519, 30.035606393387834 ], [ -89.996782975265006, 30.03537459363957 ] ], [ [ -89.99689, 30.03533 ], [ -89.996782975265006, 30.03537459363957 ] ], [ [ -89.99689, 30.03533 ], [ -89.996859, 30.035264 ] ], [ [ -89.996782975265006, 30.03537459363957 ], [ -89.99677, 30.03538 ], [ -89.995528418298022, 30.033212793048321 ] ], [ [ -89.996782975265006, 30.03537459363957 ], [ -89.995528418298022, 30.033212793048321 ] ], [ [ -89.99646909645702, 30.035453689608392 ], [ -89.995055021858022, 30.036107273224008 ] ], [ [ -89.99646909645702, 30.035453689608392 ], [ -89.995055021858022, 30.036107273224008 ] ], [ [ -89.996374906232006, 30.035277615532127 ], [ -89.99646909645702, 30.035453689608392 ] ], [ [ -89.996374906232006, 30.035277615532127 ], [ -89.99633, 30.035385 ], [ -89.99646909645702, 30.035453689608392 ] ], [ [ -89.996034411043084, 30.034639730061627 ], [ -89.996374906232006, 30.035277615532127 ] ], [ [ -89.996034411043084, 30.034639730061627 ], [ -89.996374906232006, 30.035277615532127 ] ], [ [ -89.995981102563562, 30.03453958974259 ], [ -89.996034411043084, 30.034639730061627 ] ], [ [ -89.995981102563562, 30.03453958974259 ], [ -89.996034411043084, 30.034639730061627 ] ], [ [ -89.994795898360636, 30.032311934426215 ], [ -89.995435, 30.033512 ], [ -89.995506, 30.033647 ], [ -89.995722, 30.034052 ], [ -89.995937, 30.034456 ], [ -89.995981102563562, 30.03453958974259 ] ], [ [ -89.994795898360636, 30.032311934426215 ], [ -89.994793, 30.032313 ], [ -89.995981102563562, 30.03453958974259 ] ], [ [ -89.995528418298022, 30.033212793048321 ], [ -89.995549, 30.033055 ] ], [ [ -89.995528418298022, 30.033212793048321 ], [ -89.995549, 30.033055 ] ], [ [ -89.995549, 30.033055 ], [ -89.995026333333215, 30.032292399999807 ] ], [ [ -89.995549, 30.033055 ], [ -89.995439, 30.033051 ], [ -89.995026333333215, 30.032292399999807 ] ], [ [ -89.99339206795365, 30.037104751351347 ], [ -89.995207, 30.036339 ] ], [ [ -89.99339206795365, 30.037104751351347 ], [ -89.995207, 30.036339 ] ], [ [ -89.995055021858022, 30.036107273224008 ], [ -89.993364837696333, 30.036818239790563 ] ], [ [ -89.995055021858022, 30.036107273224008 ], [ -89.99343, 30.036808 ], [ -89.993364837696333, 30.036818239790563 ] ], [ [ -89.995026333333215, 30.032292399999807 ], [ -89.994996261872444, 30.032238271370417 ] ], [ [ -89.995026333333215, 30.032292399999807 ], [ -89.994996261872444, 30.032238271370417 ] ], [ [ -89.994996261872444, 30.032238271370417 ], [ -89.994795898360636, 30.032311934426215 ] ], [ [ -89.994996261872444, 30.032238271370417 ], [ -89.994795898360636, 30.032311934426215 ] ], [ [ -89.989855780938825, 30.038743671408255 ], [ -89.99339206795365, 30.037104751351347 ] ], [ [ -89.993364837696333, 30.036818239790563 ], [ -89.993284, 30.037015 ], [ -89.99339206795365, 30.037104751351347 ] ], [ [ -89.993364837696333, 30.036818239790563 ], [ -89.98976, 30.03839 ] ], [ [ -89.989855780938825, 30.038743671408255 ], [ -89.98986, 30.03875 ], [ -89.989819, 30.038773 ], [ -89.989855780938825, 30.038743671408255 ] ], [ [ -89.988260267947283, 30.039377766965796 ], [ -89.988274, 30.039402 ], [ -89.9898, 30.03866 ], [ -89.989855780938825, 30.038743671408255 ] ], [ [ -89.98976, 30.03839 ], [ -89.98838, 30.03899 ] ], [ [ -89.98976, 30.03839 ], [ -89.98972, 30.038328 ] ], [ [ -89.98838, 30.03899 ], [ -89.988252143042899, 30.039044795838748 ] ], [ [ -89.98838, 30.03899 ], [ -89.988342, 30.038922 ] ], [ [ -89.98541, 30.04072 ], [ -89.98742, 30.039766 ], [ -89.987572, 30.039836 ], [ -89.98765, 30.039655 ], [ -89.988260267947283, 30.039377766965796 ] ], [ [ -89.988260267947283, 30.039377766965796 ], [ -89.988407, 30.039311 ], [ -89.988252143042899, 30.039044795838748 ] ], [ [ -89.988050181470854, 30.039037402101236 ], [ -89.98807, 30.039042 ], [ -89.988260267947283, 30.039377766965796 ] ], [ [ -89.988252143042899, 30.039044795838748 ], [ -89.988051805309738, 30.038700115044239 ] ], [ [ -89.988252143042899, 30.039044795838748 ], [ -89.988051805309738, 30.038700115044239 ] ], [ [ -89.988051805309738, 30.038700115044239 ], [ -89.9878, 30.03766 ], [ -89.987579827956992, 30.037124698924739 ] ], [ [ -89.988051805309738, 30.038700115044239 ], [ -89.987579827956992, 30.037124698924739 ] ], [ [ -89.988050181470854, 30.039037402101236 ], [ -89.9829, 30.04156 ] ], [ [ -89.98801, 30.03898 ], [ -89.988050181470854, 30.039037402101236 ] ], [ [ -89.987945, 30.039013 ], [ -89.988050181470854, 30.039037402101236 ] ], [ [ -89.98801, 30.03898 ], [ -89.987945, 30.039013 ] ], [ [ -89.987941201834872, 30.038868669724778 ], [ -89.98801, 30.03898 ] ], [ [ -89.987941201834872, 30.038868669724778 ], [ -89.987945, 30.039013 ] ], [ [ -89.987763774999976, 30.0384651 ], [ -89.987941201834872, 30.038868669724778 ] ], [ [ -89.987763774999976, 30.0384651 ], [ -89.987941201834872, 30.038868669724778 ] ], [ [ -89.98773432679738, 30.038350816993454 ], [ -89.987763774999976, 30.0384651 ] ], [ [ -89.98773432679738, 30.038350816993454 ], [ -89.987763774999976, 30.0384651 ] ], [ [ -89.98766710344826, 30.038036827586208 ], [ -89.98773432679738, 30.038350816993454 ] ], [ [ -89.98766710344826, 30.038036827586208 ], [ -89.98773432679738, 30.038350816993454 ] ], [ [ -89.987556666666677, 30.037586666666716 ], [ -89.98766710344826, 30.038036827586208 ] ], [ [ -89.987556666666677, 30.037586666666716 ], [ -89.98766710344826, 30.038036827586208 ] ], [ [ -89.987579827956992, 30.037124698924739 ], [ -89.987001, 30.03605 ], [ -89.986781, 30.03572 ], [ -89.98655, 30.03586 ], [ -89.986890852482773, 30.036355560347964 ] ], [ [ -89.987579827956992, 30.037124698924739 ], [ -89.9871, 30.03627 ], [ -89.986890852482773, 30.036355560347964 ] ], [ [ -89.987479551569521, 30.03739892376684 ], [ -89.987556666666677, 30.037586666666716 ] ], [ [ -89.987479551569521, 30.03739892376684 ], [ -89.987556666666677, 30.037586666666716 ] ], [ [ -89.98714, 30.03677 ], [ -89.987479551569521, 30.03739892376684 ] ], [ [ -89.987079, 30.036801 ], [ -89.987479551569521, 30.03739892376684 ] ], [ [ -89.98714, 30.03677 ], [ -89.987079, 30.036801 ] ], [ [ -89.987084481358735, 30.036690687655341 ], [ -89.98714, 30.03677 ] ], [ [ -89.987084481358735, 30.036690687655341 ], [ -89.987079, 30.036801 ] ], [ [ -89.986890852482773, 30.036355560347964 ], [ -89.987084481358735, 30.036690687655341 ] ], [ [ -89.986890852482773, 30.036355560347964 ], [ -89.987084481358735, 30.036690687655341 ] ], [ [ -89.98541, 30.04072 ], [ -89.985444, 30.040786 ] ], [ [ -89.98303, 30.04195 ], [ -89.98541, 30.04072 ] ], [ [ -89.98303, 30.04195 ], [ -89.983068, 30.042017 ] ], [ [ -89.97994, 30.04338 ], [ -89.98303, 30.04195 ] ], [ [ -89.9829, 30.04156 ], [ -89.98035, 30.0428 ] ], [ [ -89.9829, 30.04156 ], [ -89.982868, 30.041378 ] ], [ [ -89.98035, 30.0428 ], [ -89.972418, 30.046743 ], [ -89.968806, 30.048771 ], [ -89.96528, 30.05094 ], [ -89.96333, 30.04866 ] ], [ [ -89.98035, 30.0428 ], [ -89.98028, 30.04265 ], [ -89.980166, 30.042767 ] ], [ [ -89.97994, 30.04338 ], [ -89.979983, 30.043452 ] ], [ [ -89.97869, 30.044 ], [ -89.97994, 30.04338 ] ], [ [ -89.97869, 30.044 ], [ -89.978722, 30.044055 ] ], [ [ -89.97666, 30.045 ], [ -89.97869, 30.044 ] ], [ [ -89.97666, 30.045 ], [ -89.9767, 30.04506 ] ], [ [ -89.97227, 30.04724 ], [ -89.97666, 30.045 ] ], [ [ -89.97227, 30.04724 ], [ -89.97231, 30.047294 ] ], [ [ -89.97026, 30.04838 ], [ -89.97227, 30.04724 ] ], [ [ -89.97026, 30.04838 ], [ -89.970305, 30.048446 ] ], [ [ -89.96606, 30.05099 ], [ -89.97026, 30.04838 ] ], [ [ -89.9681, 30.03276 ], [ -89.96563, 30.03319 ] ], [ [ -89.95795, 30.03708 ], [ -89.962234, 30.034452 ], [ -89.96351, 30.03385 ], [ -89.96838, 30.03293 ], [ -89.96939, 30.03298 ], [ -89.97101, 30.03333 ], [ -89.972415, 30.033263 ], [ -89.97239, 30.03318 ], [ -89.97333, 30.032774 ], [ -89.976019, 30.031218 ], [ -89.974779, 30.029509 ], [ -89.971786, 30.031364 ], [ -89.97216, 30.032174 ], [ -89.9723, 30.0321 ], [ -89.97275, 30.03274 ], [ -89.97249, 30.03288 ], [ -89.97189, 30.03308 ], [ -89.97117, 30.03314 ], [ -89.96937, 30.03279 ], [ -89.9681, 30.03276 ] ], [ [ -89.9681, 30.03276 ], [ -89.968094, 30.032694 ] ], [ [ -89.96606, 30.05099 ], [ -89.966111, 30.051048 ] ], [ [ -89.965, 30.0511 ], [ -89.96532, 30.05148 ], [ -89.96606, 30.05099 ] ], [ [ -89.96563, 30.03319 ], [ -89.96325, 30.03371 ], [ -89.96141, 30.03459 ] ], [ [ -89.96563, 30.03319 ], [ -89.965605, 30.033109 ] ], [ [ -89.965, 30.0511 ], [ -89.964917, 30.051151 ] ], [ [ -89.96302, 30.04864 ], [ -89.965, 30.0511 ] ], [ [ -89.96333, 30.04866 ], [ -89.963389, 30.048625 ] ], [ [ -89.96333, 30.04866 ], [ -89.96242, 30.04755 ] ], [ [ -89.96302, 30.04864 ], [ -89.962924, 30.048694 ] ], [ [ -89.95645, 30.04072 ], [ -89.96302, 30.04864 ] ], [ [ -89.96242, 30.04755 ], [ -89.962511, 30.047538 ] ], [ [ -89.96242, 30.04755 ], [ -89.95949, 30.04403 ] ], [ [ -89.96141, 30.03459 ], [ -89.95919, 30.03607 ] ], [ [ -89.96141, 30.03459 ], [ -89.961367, 30.03454 ] ], [ [ -89.95949, 30.04403 ], [ -89.95957, 30.04398 ] ], [ [ -89.95949, 30.04403 ], [ -89.95538, 30.03903 ] ], [ [ -89.95919, 30.03607 ], [ -89.95777, 30.03695 ] ], [ [ -89.95919, 30.03607 ], [ -89.959163, 30.035954 ] ], [ [ -89.95795, 30.03708 ], [ -89.957996, 30.037139 ] ], [ [ -89.95538, 30.03903 ], [ -89.95522, 30.03882 ], [ -89.95795, 30.03708 ] ], [ [ -89.95777, 30.03695 ], [ -89.95507, 30.03865 ] ], [ [ -89.95777, 30.03695 ], [ -89.957683, 30.036851 ] ], [ [ -89.95645, 30.04072 ], [ -89.956384, 30.040767 ] ], [ [ -89.95507, 30.03865 ], [ -89.95484, 30.0388 ], [ -89.95645, 30.04072 ] ], [ [ -89.95538, 30.03903 ], [ -89.955431, 30.038995 ] ], [ [ -89.95507, 30.03865 ], [ -89.95508, 30.038628 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "105", "agency_id": "1", "route_short_name": "105", "route_long_name": "Algiers Local", "route_type": 3, "route_color": "#71c167", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.04218, 29.92504 ], [ -90.042258, 29.925096 ] ], [ [ -90.0372, 29.93052 ], [ -90.04182, 29.93069 ], [ -90.04218, 29.92504 ] ], [ [ -90.04218, 29.92504 ], [ -90.04229, 29.92288 ], [ -90.043322, 29.921168 ], [ -90.043059, 29.920917 ], [ -90.04228, 29.921824 ], [ -90.041562, 29.923082 ], [ -90.042099, 29.923501 ], [ -90.04168, 29.930577 ], [ -90.034592, 29.930224 ], [ -90.033759, 29.930028 ], [ -90.032425, 29.929164 ], [ -90.032171383070306, 29.929785345767563 ] ], [ [ -90.032171383070306, 29.929785345767563 ], [ -90.03445, 29.93037 ], [ -90.0372, 29.93052 ] ], [ [ -90.0372, 29.93052 ], [ -90.03719, 29.93059 ] ], [ [ -90.032171383070306, 29.929785345767563 ], [ -90.032043, 29.932181 ], [ -90.030235, 29.932116 ], [ -90.029308, 29.931832 ], [ -90.028664, 29.932562 ], [ -90.027904, 29.933148 ], [ -90.027475796586046, 29.933282930298724 ] ], [ [ -90.03105, 29.92952 ], [ -90.032171383070306, 29.929785345767563 ] ], [ [ -90.03105, 29.92952 ], [ -90.030985, 29.929635 ] ], [ [ -90.0289, 29.92848 ], [ -90.03105, 29.92952 ] ], [ [ -90.0289, 29.92848 ], [ -90.028874, 29.928536 ] ], [ [ -90.02772, 29.92926 ], [ -90.02691, 29.92896 ], [ -90.02596, 29.92882 ], [ -90.02416, 29.92807 ], [ -90.02417, 29.92646 ], [ -90.0289, 29.92848 ] ], [ [ -90.02776, 29.93675 ], [ -90.027802, 29.936751 ] ], [ [ -90.02777, 29.9337 ], [ -90.027764, 29.933714 ] ], [ [ -90.02776, 29.93675 ], [ -90.0279, 29.9343 ], [ -90.02777, 29.9337 ] ], [ [ -90.02777, 29.9337 ], [ -90.027475796586046, 29.933282930298724 ] ], [ [ -90.02766, 29.93829 ], [ -90.02776, 29.93675 ] ], [ [ -90.02754, 29.93108 ], [ -90.02772, 29.92926 ] ], [ [ -90.02772, 29.92926 ], [ -90.027718, 29.929325 ] ], [ [ -90.02766, 29.93829 ], [ -90.027687, 29.938293 ] ], [ [ -90.02768, 29.93636 ], [ -90.02757, 29.93823 ] ], [ [ -90.027475796586046, 29.933282930298724 ], [ -90.02737, 29.933255 ], [ -90.0278, 29.93428 ], [ -90.02768, 29.93636 ] ], [ [ -90.02768, 29.93636 ], [ -90.027634, 29.936355 ] ], [ [ -90.02754, 29.94028 ], [ -90.02766, 29.93829 ] ], [ [ -90.02749, 29.9319 ], [ -90.027577, 29.931903 ] ], [ [ -90.02754, 29.93108 ], [ -90.027573, 29.931092 ] ], [ [ -90.02757, 29.93823 ], [ -90.027458, 29.93815 ] ], [ [ -90.02757, 29.93823 ], [ -90.02744, 29.94019 ] ], [ [ -90.02749, 29.9319 ], [ -90.02754, 29.93108 ] ], [ [ -90.02754, 29.94028 ], [ -90.027501, 29.940286 ] ], [ [ -90.02741, 29.94238 ], [ -90.02754, 29.94028 ] ], [ [ -90.027475796586046, 29.933282930298724 ], [ -90.02749, 29.9319 ] ], [ [ -90.02744, 29.94019 ], [ -90.02732, 29.942 ] ], [ [ -90.02744, 29.94019 ], [ -90.027387, 29.940187 ] ], [ [ -90.02741, 29.94238 ], [ -90.02742, 29.942377 ] ], [ [ -90.02511, 29.94165 ], [ -90.02738, 29.9426 ], [ -90.02741, 29.94238 ] ], [ [ -90.02732, 29.942 ], [ -90.02729, 29.94243 ], [ -90.02518, 29.94159 ] ], [ [ -90.02732, 29.942 ], [ -90.027262, 29.941999 ] ], [ [ -90.02518, 29.94159 ], [ -90.025227, 29.941503 ] ], [ [ -90.02518, 29.94159 ], [ -90.02491, 29.94153 ] ], [ [ -90.02511, 29.94165 ], [ -90.025124, 29.941621 ] ], [ [ -90.02491, 29.94153 ], [ -90.02511, 29.94165 ] ], [ [ -90.02353, 29.94094 ], [ -90.02491, 29.94153 ] ], [ [ -90.02353, 29.94094 ], [ -90.023406249999923, 29.940885 ] ], [ [ -90.023406249999923, 29.940885 ], [ -90.02353, 29.94094 ] ], [ [ -90.022651121951213, 29.940548317073148 ], [ -90.023406249999923, 29.940885 ] ], [ [ -90.023406249999923, 29.940885 ], [ -90.02331, 29.940843 ], [ -90.02265, 29.94055 ] ], [ [ -90.022651121951213, 29.940548317073148 ], [ -90.022692, 29.940487 ] ], [ [ -90.02265, 29.94055 ], [ -90.022651121951213, 29.940548317073148 ] ], [ [ -90.02252, 29.94049 ], [ -90.022651121951213, 29.940548317073148 ] ], [ [ -90.02265, 29.94055 ], [ -90.02252, 29.94049 ] ], [ [ -90.02252, 29.94049 ], [ -90.02139, 29.94 ] ], [ [ -90.02247, 29.94047 ], [ -90.02252, 29.94049 ] ], [ [ -90.02247, 29.94047 ], [ -90.02245, 29.94051 ] ], [ [ -90.02139, 29.94 ], [ -90.02166, 29.940118 ], [ -90.021795, 29.940176 ], [ -90.0222, 29.940353 ], [ -90.02247, 29.94047 ] ], [ [ -90.02139, 29.94 ], [ -90.021128299999617, 29.93988444999983 ] ], [ [ -90.021128299999617, 29.93988444999983 ], [ -90.02139, 29.94 ] ], [ [ -90.021103136986639, 29.939873301370024 ], [ -90.021128299999617, 29.93988444999983 ] ], [ [ -90.021128299999617, 29.93988444999983 ], [ -90.021103136986639, 29.939873301370024 ] ], [ [ -90.021103136986639, 29.939873301370024 ], [ -90.02033, 29.93953 ] ], [ [ -90.02026, 29.9395 ], [ -90.021103136986639, 29.939873301370024 ] ], [ [ -90.02033, 29.93953 ], [ -90.020384, 29.939442 ] ], [ [ -90.02033, 29.93953 ], [ -90.02026, 29.9395 ] ], [ [ -90.02026, 29.9395 ], [ -90.020188, 29.939578 ] ], [ [ -90.0179, 29.93846 ], [ -90.02026, 29.9395 ] ], [ [ -90.01821, 29.9086 ], [ -90.01825, 29.908599 ] ], [ [ -90.01814, 29.9087 ], [ -90.01821, 29.9086 ] ], [ [ -90.01821, 29.9086 ], [ -90.01827, 29.90753 ], [ -90.01778, 29.90731 ] ], [ [ -90.01814, 29.9087 ], [ -90.01808, 29.90971 ] ], [ [ -90.01765, 29.90744 ], [ -90.01814, 29.90767 ], [ -90.01814, 29.9087 ] ], [ [ -90.01798, 29.91173 ], [ -90.018082, 29.911727 ] ], [ [ -90.01808, 29.90971 ], [ -90.0179, 29.91139 ] ], [ [ -90.01798, 29.91173 ], [ -90.01808, 29.90971 ] ], [ [ -90.0179, 29.93846 ], [ -90.017983, 29.938353 ] ], [ [ -90.01773, 29.91531 ], [ -90.01798, 29.91173 ] ], [ [ -90.0179, 29.91139 ], [ -90.01744, 29.91741 ], [ -90.01727, 29.91822 ], [ -90.01689, 29.91895 ], [ -90.0163, 29.91961 ], [ -90.01455, 29.92083 ], [ -90.01422, 29.92127 ], [ -90.01402, 29.92189 ] ], [ [ -90.0179, 29.91139 ], [ -90.01781, 29.911386 ] ], [ [ -90.0179, 29.93846 ], [ -90.01637, 29.93779 ] ], [ [ -90.01783, 29.93844 ], [ -90.0179, 29.93846 ] ], [ [ -90.01773, 29.91531 ], [ -90.017832, 29.915316 ] ], [ [ -90.01783, 29.93844 ], [ -90.017787, 29.938516 ] ], [ [ -90.01637, 29.93779 ], [ -90.01783, 29.93844 ] ], [ [ -90.01778, 29.90731 ], [ -90.017808, 29.907276 ] ], [ [ -90.01778, 29.90731 ], [ -90.01371, 29.90442 ], [ -90.0109, 29.90186 ], [ -90.00968, 29.90134 ], [ -90.00829, 29.90119 ] ], [ [ -90.01477, 29.92087 ], [ -90.01668, 29.91968 ], [ -90.01731, 29.91894 ], [ -90.01752, 29.91834 ], [ -90.01773, 29.91531 ] ], [ [ -90.01765, 29.90744 ], [ -90.017612, 29.907493 ] ], [ [ -90.00821, 29.90137 ], [ -90.00966, 29.90152 ], [ -90.01089, 29.90208 ], [ -90.01371, 29.90467 ], [ -90.01765, 29.90744 ] ], [ [ -90.01637, 29.93779 ], [ -90.016476, 29.937674 ] ], [ [ -90.01637, 29.93779 ], [ -90.01628, 29.937855 ] ], [ [ -90.0146, 29.937 ], [ -90.01637, 29.93779 ] ], [ [ -90.01477, 29.92087 ], [ -90.014837, 29.920917 ] ], [ [ -90.01411, 29.92367 ], [ -90.01434, 29.92146 ], [ -90.01477, 29.92087 ] ], [ [ -90.0146, 29.937 ], [ -90.014689, 29.936898 ] ], [ [ -90.01454, 29.93697 ], [ -90.0146, 29.937 ] ], [ [ -90.0146, 29.937 ], [ -90.014538174133548, 29.936973119188494 ] ], [ [ -90.01454, 29.93697 ], [ -90.014538174133548, 29.936973119188494 ] ], [ [ -90.0135, 29.93652 ], [ -90.01454, 29.93697 ] ], [ [ -90.014538174133548, 29.936973119188494 ], [ -90.014492, 29.937052 ] ], [ [ -90.014538174133548, 29.936973119188494 ], [ -90.0135, 29.93652 ] ], [ [ -90.01411, 29.92367 ], [ -90.014178, 29.923679 ] ], [ [ -90.01368, 29.92979 ], [ -90.01411, 29.92367 ] ], [ [ -90.01402, 29.92189 ], [ -90.01354, 29.92961 ] ], [ [ -90.01402, 29.92189 ], [ -90.013951, 29.921876 ] ], [ [ -90.01368, 29.92979 ], [ -90.013788, 29.929799 ] ], [ [ -90.01344, 29.93349 ], [ -90.01368, 29.92979 ] ], [ [ -90.01354, 29.92961 ], [ -90.01338, 29.93223 ] ], [ [ -90.01354, 29.92961 ], [ -90.013414, 29.929603 ] ], [ [ -90.01344, 29.93349 ], [ -90.013519, 29.933487 ] ], [ [ -90.01295, 29.93628 ], [ -90.0135, 29.93652 ] ], [ [ -90.01295, 29.93628 ], [ -90.01331, 29.93535 ], [ -90.01344, 29.93349 ] ], [ [ -90.01338, 29.93223 ], [ -90.01315, 29.9334 ], [ -90.01304, 29.93535 ], [ -90.01272, 29.93618 ], [ -90.01295, 29.93628 ] ], [ [ -90.01338, 29.93223 ], [ -90.013263, 29.932226 ] ], [ [ -90.00829, 29.90119 ], [ -90.008374, 29.901096 ] ], [ [ -90.00829, 29.90119 ], [ -89.99922, 29.90075 ] ], [ [ -90.00821, 29.90137 ], [ -90.00821, 29.901439 ] ], [ [ -90.00067, 29.90099 ], [ -90.00821, 29.90137 ] ], [ [ -90.00067, 29.90099 ], [ -90.000664, 29.901056 ] ], [ [ -89.99733, 29.901 ], [ -89.99804, 29.90089 ], [ -90.00067, 29.90099 ] ], [ [ -89.99922, 29.90075 ], [ -89.999221, 29.900683 ] ], [ [ -89.99922, 29.90075 ], [ -89.99791, 29.90071 ], [ -89.99726, 29.90082 ] ], [ [ -89.99733, 29.901 ], [ -89.997368, 29.901069 ] ], [ [ -89.99622, 29.90149 ], [ -89.99733, 29.901 ] ], [ [ -89.99726, 29.90082 ], [ -89.997294, 29.900763 ] ], [ [ -89.99726, 29.90082 ], [ -89.99653, 29.90109 ], [ -89.9954, 29.90185 ] ], [ [ -89.99622, 29.90149 ], [ -89.996262, 29.901543 ] ], [ [ -89.99421, 29.90297 ], [ -89.99622, 29.90149 ] ], [ [ -89.9954, 29.90185 ], [ -89.9938, 29.90304 ] ], [ [ -89.9954, 29.90185 ], [ -89.995351, 29.901799 ] ], [ [ -89.99421, 29.90297 ], [ -89.994232, 29.902996 ] ], [ [ -89.9938, 29.90304 ], [ -89.99169, 29.90462 ], [ -89.991871, 29.904816 ], [ -89.991806, 29.904735 ], [ -89.99421, 29.90297 ] ], [ [ -89.9938, 29.90304 ], [ -89.993741, 29.902986 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "53-O", "agency_id": "1", "route_short_name": "53-O", "route_long_name": "Paris - Claiborne OWL", "route_type": 3, "route_color": "#4506b9", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.1187, 29.95462 ], [ -90.118627, 29.95469 ] ], [ [ -90.1187, 29.95462 ], [ -90.1199, 29.95559 ], [ -90.12003, 29.95552 ], [ -90.120097, 29.955386 ], [ -90.119104, 29.95449 ], [ -90.116881, 29.95278 ], [ -90.116174, 29.9511 ], [ -90.116245, 29.950981 ], [ -90.116091, 29.950861 ], [ -90.114033, 29.946028 ], [ -90.114075, 29.945868 ], [ -90.113963, 29.945846 ], [ -90.112994, 29.943552 ], [ -90.112248, 29.942881 ], [ -90.112226, 29.942718 ], [ -90.112071, 29.942748 ], [ -90.109766, 29.941439 ], [ -90.109748, 29.941291 ], [ -90.109615, 29.941313 ], [ -90.108213, 29.940423 ], [ -90.106828, 29.939881 ], [ -90.105936, 29.939815 ], [ -90.100111, 29.940336 ], [ -90.099994, 29.940266 ], [ -90.098685, 29.94044 ], [ -90.096349, 29.94122 ], [ -90.089989, 29.944838 ], [ -90.0887, 29.945794 ], [ -90.08834, 29.946217 ], [ -90.086881, 29.945287 ], [ -90.086726, 29.945304 ], [ -90.081414, 29.942292 ], [ -90.07953, 29.94487 ], [ -90.0791, 29.945 ], [ -90.07867, 29.94479 ], [ -90.078, 29.94481 ], [ -90.076903, 29.945829 ], [ -90.075579, 29.950548 ], [ -90.075505, 29.952304 ], [ -90.074931, 29.95416 ], [ -90.070453, 29.959145 ], [ -90.069852, 29.960087 ], [ -90.069914, 29.96087 ], [ -90.070329, 29.961388 ], [ -90.070267, 29.961523 ], [ -90.07047, 29.961513 ], [ -90.070781, 29.961946 ], [ -90.071273, 29.963222 ], [ -90.071398, 29.963186 ], [ -90.072963, 29.964248 ], [ -90.065437, 29.97262 ], [ -90.072519, 29.984836 ], [ -90.073027, 29.991775 ], [ -90.072929, 29.991833 ], [ -90.073079, 29.992248 ], [ -90.074503, 30.011403 ], [ -90.074625, 30.011679 ], [ -90.075345, 30.020836 ], [ -90.075126, 30.021072 ], [ -90.073914, 30.021162 ], [ -90.072743, 30.022416 ], [ -90.071241, 30.023169 ], [ -90.069793, 30.023503 ], [ -90.067812, 30.023339 ], [ -90.066073, 30.023561 ], [ -90.064417, 30.023964 ], [ -90.063271, 30.024674 ], [ -90.062337, 30.024957 ], [ -90.061066, 30.025036 ], [ -90.06144, 30.029123 ], [ -90.06527, 30.028204 ], [ -90.065488, 30.027969 ], [ -90.06516, 30.02788 ], [ -90.06178, 30.02868 ] ], [ [ -90.11706, 29.95331 ], [ -90.1187, 29.95462 ] ], [ [ -90.11706, 29.95331 ], [ -90.116991, 29.953378 ] ], [ [ -90.11579, 29.95115 ], [ -90.11645, 29.95265 ], [ -90.11706, 29.95331 ] ], [ [ -90.11579, 29.95115 ], [ -90.115738, 29.951168 ] ], [ [ -90.11498, 29.94918 ], [ -90.11579, 29.95115 ] ], [ [ -90.11439, 29.94782 ], [ -90.11498, 29.94918 ] ], [ [ -90.11498, 29.94918 ], [ -90.114873, 29.949174 ] ], [ [ -90.11374, 29.94626 ], [ -90.11439, 29.94782 ] ], [ [ -90.11439, 29.94782 ], [ -90.114288, 29.947816 ] ], [ [ -90.11374, 29.94626 ], [ -90.113644, 29.946287 ] ], [ [ -90.11303, 29.94448 ], [ -90.11374, 29.94626 ] ], [ [ -90.11303, 29.94448 ], [ -90.112945, 29.944498 ] ], [ [ -90.11177, 29.94293 ], [ -90.11251, 29.94342 ], [ -90.11281, 29.9438 ], [ -90.11303, 29.94448 ] ], [ [ -90.11177, 29.94293 ], [ -90.111725, 29.943008 ] ], [ [ -90.10937, 29.94159 ], [ -90.11177, 29.94293 ] ], [ [ -90.10937, 29.94159 ], [ -90.109318, 29.941657 ] ], [ [ -90.10817, 29.94082 ], [ -90.10937, 29.94159 ] ], [ [ -90.10817, 29.94082 ], [ -90.108095, 29.940832 ] ], [ [ -90.10583, 29.94018 ], [ -90.10659, 29.94011 ], [ -90.1072, 29.94022 ], [ -90.10817, 29.94082 ] ], [ [ -90.10329, 29.94044 ], [ -90.10583, 29.94018 ] ], [ [ -90.10583, 29.94018 ], [ -90.105775, 29.940278 ] ], [ [ -90.10329, 29.94044 ], [ -90.103291, 29.940506 ] ], [ [ -90.09986, 29.94068 ], [ -90.10329, 29.94044 ] ], [ [ -90.09986, 29.94068 ], [ -90.09987, 29.940776 ] ], [ [ -90.09606, 29.94184 ], [ -90.09864, 29.9408 ], [ -90.09986, 29.94068 ] ], [ [ -90.09606, 29.94184 ], [ -90.096126, 29.941916 ] ], [ [ -90.0913, 29.94454 ], [ -90.094647, 29.942779 ], [ -90.094808, 29.942564 ], [ -90.09606, 29.94184 ] ], [ [ -90.0913, 29.94454 ], [ -90.091353, 29.944603 ] ], [ [ -90.09005, 29.94526 ], [ -90.0913, 29.94454 ] ], [ [ -90.09005, 29.94526 ], [ -90.090105, 29.945329 ] ], [ [ -90.08817, 29.94632 ], [ -90.08854, 29.94654 ], [ -90.08919, 29.94583 ], [ -90.09005, 29.94526 ] ], [ [ -90.08817, 29.94632 ], [ -90.08812, 29.946386 ] ], [ [ -90.08655, 29.94542 ], [ -90.08817, 29.94632 ] ], [ [ -90.08655, 29.94542 ], [ -90.086519, 29.945464 ] ], [ [ -90.08499, 29.94452 ], [ -90.08655, 29.94542 ] ], [ [ -90.08499, 29.94452 ], [ -90.084957, 29.944558 ] ], [ [ -90.08343, 29.94366 ], [ -90.08499, 29.94452 ] ], [ [ -90.08343, 29.94366 ], [ -90.083392, 29.943703 ] ], [ [ -90.08144, 29.94265 ], [ -90.08149, 29.94258 ], [ -90.08343, 29.94366 ] ], [ [ -90.08144, 29.94265 ], [ -90.081487, 29.942673 ] ], [ [ -90.08045, 29.94396 ], [ -90.08144, 29.94265 ] ], [ [ -90.08045, 29.94396 ], [ -90.080535, 29.944007 ] ], [ [ -90.07718, 29.94633 ], [ -90.07761, 29.94538 ], [ -90.078, 29.94515 ], [ -90.0784, 29.94521 ], [ -90.07909, 29.94555 ], [ -90.07928, 29.9455 ], [ -90.08045, 29.94396 ] ], [ [ -90.07718, 29.94633 ], [ -90.07725, 29.946349 ] ], [ [ -90.0765, 29.94871 ], [ -90.07718, 29.94633 ] ], [ [ -90.0765, 29.94871 ], [ -90.076537, 29.948723 ] ], [ [ -90.07584, 29.95106 ], [ -90.0765, 29.94871 ] ], [ [ -90.07584, 29.95106 ], [ -90.075911, 29.951058 ] ], [ [ -90.07578, 29.95236 ], [ -90.075862, 29.95236 ] ], [ [ -90.07578, 29.95236 ], [ -90.07584, 29.95106 ] ], [ [ -90.0758, 30.00712 ], [ -90.07448, 30.00722 ], [ -90.07439, 30.00599 ] ], [ [ -90.07465, 30.00913 ], [ -90.07451, 30.00741 ], [ -90.07581, 30.00733 ], [ -90.0758, 30.00712 ] ], [ [ -90.0758, 30.00712 ], [ -90.07579, 30.00698 ], [ -90.07554, 30.00699 ], [ -90.07551, 30.00684 ], [ -90.07521, 30.00686 ], [ -90.07522, 30.00707 ], [ -90.07465, 30.00711 ], [ -90.074568, 30.007005 ] ], [ [ -90.07526, 29.95407 ], [ -90.07578, 29.95236 ] ], [ [ -90.07558, 30.02086 ], [ -90.075663, 30.020877 ] ], [ [ -90.07549, 30.01996 ], [ -90.075585, 30.019995 ] ], [ [ -90.07328, 30.02236 ], [ -90.0748, 30.02135 ], [ -90.07562, 30.02123 ], [ -90.07558, 30.02086 ] ], [ [ -90.07558, 30.02086 ], [ -90.07549, 30.01996 ] ], [ [ -90.07549, 30.01996 ], [ -90.07538, 30.01841 ] ], [ [ -90.07538, 30.01841 ], [ -90.075482, 30.018463 ] ], [ [ -90.07538, 30.01841 ], [ -90.07519, 30.01602 ] ], [ [ -90.07526, 29.95407 ], [ -90.07528, 29.954073 ] ], [ [ -90.07519, 30.01602 ], [ -90.075269, 30.016013 ] ], [ [ -90.074, 29.9557 ], [ -90.07498, 29.95461 ], [ -90.07526, 29.95407 ] ], [ [ -90.07519, 30.01602 ], [ -90.07498, 30.01329 ] ], [ [ -90.07498, 30.01329 ], [ -90.075096, 30.013347 ] ], [ [ -90.07498, 30.01329 ], [ -90.07486, 30.01174 ] ], [ [ -90.07486, 30.01174 ], [ -90.07491, 30.011734 ] ], [ [ -90.07486, 30.01174 ], [ -90.07465, 30.00913 ] ], [ [ -90.07465, 30.00913 ], [ -90.074738, 30.009122 ] ], [ [ -90.07439, 30.00599 ], [ -90.074465, 30.005985 ] ], [ [ -90.07439, 30.00599 ], [ -90.07421, 30.0038 ] ], [ [ -90.07421, 30.0038 ], [ -90.074247, 30.003825 ] ], [ [ -90.07421, 30.0038 ], [ -90.07409, 30.00224 ] ], [ [ -90.07409, 30.00224 ], [ -90.074185, 30.00224 ] ], [ [ -90.07409, 30.00224 ], [ -90.07394, 30.00019 ] ], [ [ -90.074, 29.9557 ], [ -90.074078, 29.955755 ] ], [ [ -90.07394, 30.00019 ], [ -90.074012, 30.000184 ] ], [ [ -90.07198, 29.95798 ], [ -90.074, 29.9557 ] ], [ [ -90.07394, 30.00019 ], [ -90.07378, 29.99817 ] ], [ [ -90.07378, 29.99817 ], [ -90.073844, 29.998167 ] ], [ [ -90.07378, 29.99817 ], [ -90.07361, 29.99616 ] ], [ [ -90.07361, 29.99616 ], [ -90.073687, 29.996152 ] ], [ [ -90.07361, 29.99616 ], [ -90.07344, 29.9941 ] ], [ [ -90.07344, 29.9941 ], [ -90.073524, 29.994098 ] ], [ [ -90.07344, 29.9941 ], [ -90.07329, 29.99207 ] ], [ [ -90.07329, 29.99207 ], [ -90.073365, 29.99207 ] ], [ [ -90.07328, 30.02236 ], [ -90.073307, 30.022403 ] ], [ [ -90.07329, 29.99207 ], [ -90.07309, 29.9908 ], [ -90.07309, 29.98947 ] ], [ [ -90.07177, 30.02313 ], [ -90.07328, 30.02236 ] ], [ [ -90.07309, 29.98947 ], [ -90.073153, 29.98947 ] ], [ [ -90.07309, 29.98947 ], [ -90.07293, 29.98802 ] ], [ [ -90.07293, 29.98802 ], [ -90.073017, 29.988016 ] ], [ [ -90.07293, 29.98802 ], [ -90.07276, 29.98592 ] ], [ [ -90.07276, 29.98592 ], [ -90.072785, 29.985935 ] ], [ [ -90.07276, 29.98592 ], [ -90.07274, 29.9856 ], [ -90.07295, 29.98529 ], [ -90.07202, 29.98368 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07063, 29.96748 ], [ -90.07339, 29.96436 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.0713, 29.96288 ], [ -90.070701, 29.961305 ], [ -90.070069, 29.960497 ], [ -90.0702, 29.96 ], [ -90.07198, 29.95798 ] ], [ [ -90.07202, 29.98368 ], [ -90.072097, 29.983649 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07202, 29.98368 ], [ -90.07092, 29.98177 ] ], [ [ -90.07177, 30.02313 ], [ -90.071807, 30.023203 ] ], [ [ -90.06847, 30.02372 ], [ -90.07025, 30.02353 ], [ -90.07177, 30.02313 ] ], [ [ -90.07092, 29.98177 ], [ -90.070999, 29.981741 ] ], [ [ -90.07092, 29.98177 ], [ -90.06964, 29.9795 ] ], [ [ -90.07063, 29.96748 ], [ -90.070652, 29.967506 ] ], [ [ -90.06596, 29.97299 ], [ -90.06599, 29.97267 ], [ -90.07063, 29.96748 ] ], [ [ -90.06964, 29.9795 ], [ -90.069695, 29.979476 ] ], [ [ -90.06964, 29.9795 ], [ -90.06908, 29.97854 ] ], [ [ -90.06908, 29.97854 ], [ -90.069133, 29.978516 ] ], [ [ -90.06908, 29.97854 ], [ -90.06852, 29.97755 ] ], [ [ -90.06852, 29.97755 ], [ -90.068521, 29.977547 ] ], [ [ -90.06852, 29.97755 ], [ -90.0674, 29.97563 ] ], [ [ -90.06847, 30.02372 ], [ -90.068479, 30.023786 ] ], [ [ -90.06684, 30.0238 ], [ -90.06847, 30.02372 ] ], [ [ -90.0674, 29.97563 ], [ -90.067473, 29.975619 ] ], [ [ -90.0674, 29.97563 ], [ -90.06596, 29.97299 ] ], [ [ -90.06684, 30.0238 ], [ -90.06685, 30.023875 ] ], [ [ -90.06178, 30.02868 ], [ -90.061566, 30.025278 ], [ -90.063452, 30.02481 ], [ -90.065149, 30.023999 ], [ -90.06684, 30.0238 ] ], [ [ -90.06596, 29.97299 ], [ -90.066045, 29.972989 ] ], [ [ -90.06178, 30.02868 ], [ -90.061857, 30.028674 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "51", "agency_id": "1", "route_short_name": "51", "route_long_name": "St. Bernard-St.Anthony", "route_type": 3, "route_color": "#692b91", "route_text_color": "#ffffff" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.11905, 29.95454 ], [ -90.119104, 29.95449 ] ], [ [ -90.1187, 29.95462 ], [ -90.1199, 29.95559 ], [ -90.12003, 29.95552 ], [ -90.12012, 29.95541 ], [ -90.11905, 29.95454 ] ], [ [ -90.11905, 29.95454 ], [ -90.11743, 29.95328 ] ], [ [ -90.1187, 29.95462 ], [ -90.118627, 29.95469 ] ], [ [ -90.11706, 29.95331 ], [ -90.1187, 29.95462 ] ], [ [ -90.11743, 29.95328 ], [ -90.117488, 29.953205 ] ], [ [ -90.11743, 29.95328 ], [ -90.11683, 29.95271 ], [ -90.11615, 29.95101 ] ], [ [ -90.11706, 29.95331 ], [ -90.116991, 29.953378 ] ], [ [ -90.11579, 29.95115 ], [ -90.11645, 29.95265 ], [ -90.11706, 29.95331 ] ], [ [ -90.11615, 29.95101 ], [ -90.116245, 29.950981 ] ], [ [ -90.11615, 29.95101 ], [ -90.1153, 29.949 ] ], [ [ -90.11579, 29.95115 ], [ -90.115738, 29.951168 ] ], [ [ -90.11498, 29.94918 ], [ -90.11579, 29.95115 ] ], [ [ -90.1153, 29.949 ], [ -90.115327, 29.949003 ] ], [ [ -90.1153, 29.949 ], [ -90.11491, 29.94807 ] ], [ [ -90.11491, 29.94807 ], [ -90.11498, 29.94805 ] ], [ [ -90.11439, 29.94782 ], [ -90.11498, 29.94918 ] ], [ [ -90.11498, 29.94918 ], [ -90.114873, 29.949174 ] ], [ [ -90.11491, 29.94807 ], [ -90.11397, 29.94588 ] ], [ [ -90.11374, 29.94626 ], [ -90.11439, 29.94782 ] ], [ [ -90.11439, 29.94782 ], [ -90.114288, 29.947816 ] ], [ [ -90.11397, 29.94588 ], [ -90.114075, 29.945868 ] ], [ [ -90.11397, 29.94588 ], [ -90.11339, 29.94449 ] ], [ [ -90.11374, 29.94626 ], [ -90.113644, 29.946287 ] ], [ [ -90.11303, 29.94448 ], [ -90.11374, 29.94626 ] ], [ [ -90.11339, 29.94449 ], [ -90.113466, 29.944463 ] ], [ [ -90.11339, 29.94449 ], [ -90.11313, 29.9438 ], [ -90.112755, 29.943273 ], [ -90.112205, 29.942845 ], [ -90.112226, 29.942718 ], [ -90.112077, 29.942775 ], [ -90.10976, 29.941435 ], [ -90.109748, 29.941291 ], [ -90.109629, 29.941335 ], [ -90.10748, 29.94009 ], [ -90.10673, 29.93988 ], [ -90.10594, 29.93988 ] ], [ [ -90.11303, 29.94448 ], [ -90.112945, 29.944498 ] ], [ [ -90.11177, 29.94293 ], [ -90.11251, 29.94342 ], [ -90.11281, 29.9438 ], [ -90.11303, 29.94448 ] ], [ [ -90.11177, 29.94293 ], [ -90.111725, 29.943008 ] ], [ [ -90.10937, 29.94159 ], [ -90.11177, 29.94293 ] ], [ [ -90.10937, 29.94159 ], [ -90.109318, 29.941657 ] ], [ [ -90.10817, 29.94082 ], [ -90.10937, 29.94159 ] ], [ [ -90.10817, 29.94082 ], [ -90.108095, 29.940832 ] ], [ [ -90.10583, 29.94018 ], [ -90.10659, 29.94011 ], [ -90.1072, 29.94022 ], [ -90.10817, 29.94082 ] ], [ [ -90.10594, 29.93988 ], [ -90.10369, 29.94007 ] ], [ [ -90.10594, 29.93988 ], [ -90.105936, 29.939815 ] ], [ [ -90.10329, 29.94044 ], [ -90.10583, 29.94018 ] ], [ [ -90.10583, 29.94018 ], [ -90.105775, 29.940278 ] ], [ [ -90.10369, 29.94007 ], [ -90.10229, 29.94017 ] ], [ [ -90.10369, 29.94007 ], [ -90.103681, 29.939977 ] ], [ [ -90.10329, 29.94044 ], [ -90.103291, 29.940506 ] ], [ [ -90.09986, 29.94068 ], [ -90.10329, 29.94044 ] ], [ [ -90.10229, 29.94017 ], [ -90.1, 29.94034 ] ], [ [ -90.10229, 29.94017 ], [ -90.102286, 29.940086 ] ], [ [ -90.1, 29.94034 ], [ -90.09854, 29.94048 ], [ -90.09757, 29.94082 ] ], [ [ -90.1, 29.94034 ], [ -90.099994, 29.940266 ] ], [ [ -90.09986, 29.94068 ], [ -90.09987, 29.940776 ] ], [ [ -90.09746, 29.94123 ], [ -90.09864, 29.9408 ], [ -90.09986, 29.94068 ] ], [ [ -90.09757, 29.94082 ], [ -90.09638, 29.94128 ] ], [ [ -90.09757, 29.94082 ], [ -90.09757, 29.940823 ] ], [ [ -90.09746, 29.94123 ], [ -90.097505, 29.941315 ] ], [ [ -90.09606, 29.94184 ], [ -90.09746, 29.94123 ] ], [ [ -90.09638, 29.94128 ], [ -90.094597, 29.94229 ], [ -90.09449, 29.942235 ], [ -90.094499, 29.942339 ], [ -90.0929, 29.94323 ] ], [ [ -90.09638, 29.94128 ], [ -90.096349, 29.94122 ] ], [ [ -90.09606, 29.94184 ], [ -90.096126, 29.941916 ] ], [ [ -90.0913, 29.94454 ], [ -90.094647, 29.942779 ], [ -90.094808, 29.942564 ], [ -90.09606, 29.94184 ] ], [ [ -90.0929, 29.94323 ], [ -90.09125, 29.94416 ] ], [ [ -90.0929, 29.94323 ], [ -90.092862, 29.943174 ] ], [ [ -90.0913, 29.94454 ], [ -90.091353, 29.944603 ] ], [ [ -90.09005, 29.94526 ], [ -90.0913, 29.94454 ] ], [ [ -90.09125, 29.94416 ], [ -90.09003, 29.94489 ] ], [ [ -90.09125, 29.94416 ], [ -90.091195, 29.944088 ] ], [ [ -90.09005, 29.94526 ], [ -90.090105, 29.945329 ] ], [ [ -90.08817, 29.94632 ], [ -90.08854, 29.94654 ], [ -90.08919, 29.94583 ], [ -90.09005, 29.94526 ] ], [ [ -90.09003, 29.94489 ], [ -90.08857, 29.94593 ] ], [ [ -90.09003, 29.94489 ], [ -90.089989, 29.944838 ] ], [ [ -90.08857, 29.94593 ], [ -90.08836, 29.94619 ], [ -90.08684, 29.94535 ] ], [ [ -90.08857, 29.94593 ], [ -90.088508, 29.945883 ] ], [ [ -90.08817, 29.94632 ], [ -90.08812, 29.946386 ] ], [ [ -90.08655, 29.94542 ], [ -90.08817, 29.94632 ] ], [ [ -90.08684, 29.94535 ], [ -90.086881, 29.945287 ] ], [ [ -90.08684, 29.94535 ], [ -90.08526, 29.94447 ] ], [ [ -90.08655, 29.94542 ], [ -90.086519, 29.945464 ] ], [ [ -90.08499, 29.94452 ], [ -90.08655, 29.94542 ] ], [ [ -90.08526, 29.94447 ], [ -90.085301, 29.944414 ] ], [ [ -90.08526, 29.94447 ], [ -90.08366, 29.94357 ] ], [ [ -90.08499, 29.94452 ], [ -90.084957, 29.944558 ] ], [ [ -90.08343, 29.94366 ], [ -90.08499, 29.94452 ] ], [ [ -90.08366, 29.94357 ], [ -90.083705, 29.943511 ] ], [ [ -90.08366, 29.94357 ], [ -90.08173, 29.94247 ] ], [ [ -90.08343, 29.94366 ], [ -90.083392, 29.943703 ] ], [ [ -90.08144, 29.94265 ], [ -90.08149, 29.94258 ], [ -90.08343, 29.94366 ] ], [ [ -90.08173, 29.94247 ], [ -90.081748, 29.942437 ] ], [ [ -90.08173, 29.94247 ], [ -90.08142, 29.94229 ], [ -90.08038, 29.94373 ] ], [ [ -90.08144, 29.94265 ], [ -90.081487, 29.942673 ] ], [ [ -90.08045, 29.94396 ], [ -90.08144, 29.94265 ] ], [ [ -90.08045, 29.94396 ], [ -90.080535, 29.944007 ] ], [ [ -90.07718, 29.94633 ], [ -90.07761, 29.94538 ], [ -90.078, 29.94515 ], [ -90.0784, 29.94521 ], [ -90.07909, 29.94555 ], [ -90.07928, 29.9455 ], [ -90.08045, 29.94396 ] ], [ [ -90.08038, 29.94373 ], [ -90.07975, 29.94457 ] ], [ [ -90.08038, 29.94373 ], [ -90.080326, 29.943693 ] ], [ [ -90.07975, 29.94457 ], [ -90.0793, 29.94498 ], [ -90.0786, 29.94478 ], [ -90.078, 29.94481 ], [ -90.07743, 29.94526 ], [ -90.076903, 29.945829 ], [ -90.07627, 29.9483 ] ], [ [ -90.07975, 29.94457 ], [ -90.079697, 29.944541 ] ], [ [ -90.07937, 29.99676 ], [ -90.079359, 29.996763 ] ], [ [ -90.07937, 29.99676 ], [ -90.081583, 30.000657 ], [ -90.081851, 30.000625 ], [ -90.079595, 29.996885 ], [ -90.079639, 29.996752 ], [ -90.079029, 29.995891 ], [ -90.079083, 29.995773 ], [ -90.078882, 29.995636 ], [ -90.07502, 29.98877 ] ], [ [ -90.07862, 29.99549 ], [ -90.07937, 29.99676 ] ], [ [ -90.07862, 29.99549 ], [ -90.078552, 29.995514 ] ], [ [ -90.07756, 29.99358 ], [ -90.07862, 29.99549 ] ], [ [ -90.07756, 29.99358 ], [ -90.077467, 29.993622 ] ], [ [ -90.07566, 29.9903 ], [ -90.07756, 29.99358 ] ], [ [ -90.07718, 29.94633 ], [ -90.07725, 29.946349 ] ], [ [ -90.0765, 29.94871 ], [ -90.07718, 29.94633 ] ], [ [ -90.0765, 29.94871 ], [ -90.076537, 29.948723 ] ], [ [ -90.07584, 29.95106 ], [ -90.0765, 29.94871 ] ], [ [ -90.07627, 29.9483 ], [ -90.07564, 29.95056 ] ], [ [ -90.07627, 29.9483 ], [ -90.076215, 29.948286 ] ], [ [ -90.07584, 29.95106 ], [ -90.075911, 29.951058 ] ], [ [ -90.07578, 29.95236 ], [ -90.075862, 29.95236 ] ], [ [ -90.07578, 29.95236 ], [ -90.07584, 29.95106 ] ], [ [ -90.07526, 29.95407 ], [ -90.07578, 29.95236 ] ], [ [ -90.07566, 29.9903 ], [ -90.075645, 29.990301 ] ], [ [ -90.075, 29.98914 ], [ -90.07566, 29.9903 ] ], [ [ -90.07564, 29.95056 ], [ -90.07556, 29.95195 ] ], [ [ -90.07564, 29.95056 ], [ -90.075579, 29.950548 ] ], [ [ -90.07556, 29.95195 ], [ -90.07478, 29.95438 ] ], [ [ -90.07556, 29.95195 ], [ -90.075474, 29.951945 ] ], [ [ -90.07526, 29.95407 ], [ -90.07528, 29.954073 ] ], [ [ -90.074, 29.9557 ], [ -90.07498, 29.95461 ], [ -90.07526, 29.95407 ] ], [ [ -90.07502, 29.98877 ], [ -90.075054, 29.988763 ] ], [ [ -90.07502, 29.98877 ], [ -90.07442, 29.9878 ] ], [ [ -90.075, 29.98914 ], [ -90.074922, 29.989169 ] ], [ [ -90.07437, 29.98829 ], [ -90.075, 29.98914 ] ], [ [ -90.07478, 29.95438 ], [ -90.07341, 29.95587 ] ], [ [ -90.07478, 29.95438 ], [ -90.074706, 29.954333 ] ], [ [ -90.07442, 29.9878 ], [ -90.074509, 29.987774 ] ], [ [ -90.07442, 29.9878 ], [ -90.07323, 29.98577 ] ], [ [ -90.07308, 29.98583 ], [ -90.07437, 29.98829 ] ], [ [ -90.07437, 29.98829 ], [ -90.074367, 29.988288 ] ], [ [ -90.074, 29.9557 ], [ -90.074078, 29.955755 ] ], [ [ -90.07198, 29.95798 ], [ -90.074, 29.9557 ] ], [ [ -90.07341, 29.95587 ], [ -90.0719, 29.9576 ] ], [ [ -90.07341, 29.95587 ], [ -90.073384, 29.955849 ] ], [ [ -90.07323, 29.98577 ], [ -90.0733, 29.985766 ] ], [ [ -90.07323, 29.98577 ], [ -90.07202, 29.98368 ] ], [ [ -90.07308, 29.98583 ], [ -90.073007, 29.985834 ] ], [ [ -90.07161, 29.98321 ], [ -90.07308, 29.98583 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07063, 29.96748 ], [ -90.07339, 29.96436 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07202, 29.98368 ], [ -90.072097, 29.983649 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07202, 29.98368 ], [ -90.07092, 29.98177 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07192, 29.96539 ], [ -90.07047, 29.96701 ] ], [ [ -90.07139, 29.96319 ], [ -90.07296, 29.96424 ], [ -90.07192, 29.96539 ] ], [ [ -90.07192, 29.96539 ], [ -90.071879, 29.965355 ] ], [ [ -90.0719, 29.9576 ], [ -90.07049, 29.95917 ] ], [ [ -90.0719, 29.9576 ], [ -90.071875, 29.957586 ] ], [ [ -90.07161, 29.98321 ], [ -90.071534, 29.983246 ] ], [ [ -90.07081, 29.98184 ], [ -90.07161, 29.98321 ] ], [ [ -90.07139, 29.96319 ], [ -90.071273, 29.963222 ] ], [ [ -90.07046, 29.96151 ], [ -90.07079, 29.96195 ], [ -90.07108, 29.96284 ], [ -90.07139, 29.96319 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07092, 29.98177 ], [ -90.070999, 29.981741 ] ], [ [ -90.07092, 29.98177 ], [ -90.06964, 29.9795 ] ], [ [ -90.07081, 29.98184 ], [ -90.07075, 29.981864 ] ], [ [ -90.0697, 29.97991 ], [ -90.07081, 29.98184 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ], [ [ -90.07063, 29.96748 ], [ -90.070652, 29.967506 ] ], [ [ -90.06596, 29.97299 ], [ -90.06599, 29.97267 ], [ -90.07063, 29.96748 ] ], [ [ -90.07049, 29.95917 ], [ -90.06998, 29.95979 ], [ -90.06981, 29.9604 ], [ -90.06995, 29.96094 ], [ -90.07046, 29.96151 ] ], [ [ -90.07049, 29.95917 ], [ -90.070453, 29.959145 ] ], [ [ -90.07047, 29.96701 ], [ -90.06859, 29.96911 ] ], [ [ -90.07047, 29.96701 ], [ -90.070446, 29.966993 ] ], [ [ -90.07046, 29.96151 ], [ -90.07034, 29.9616 ], [ -90.070267, 29.961523 ] ], [ [ -90.0697, 29.97991 ], [ -90.069637, 29.979937 ] ], [ [ -90.06893, 29.97859 ], [ -90.0697, 29.97991 ] ], [ [ -90.06964, 29.9795 ], [ -90.069695, 29.979476 ] ], [ [ -90.06964, 29.9795 ], [ -90.06908, 29.97854 ] ], [ [ -90.06908, 29.97854 ], [ -90.069133, 29.978516 ] ], [ [ -90.06908, 29.97854 ], [ -90.06852, 29.97755 ] ], [ [ -90.06836, 29.9776 ], [ -90.06893, 29.97859 ] ], [ [ -90.06893, 29.97859 ], [ -90.068901, 29.978581 ] ], [ [ -90.06859, 29.96911 ], [ -90.06708, 29.97082 ] ], [ [ -90.06859, 29.96911 ], [ -90.068531, 29.969071 ] ], [ [ -90.06852, 29.97755 ], [ -90.068521, 29.977547 ] ], [ [ -90.06852, 29.97755 ], [ -90.0674, 29.97563 ] ], [ [ -90.06836, 29.9776 ], [ -90.068345, 29.977602 ] ], [ [ -90.06722, 29.97569 ], [ -90.06836, 29.9776 ] ], [ [ -90.0674, 29.97563 ], [ -90.067473, 29.975619 ] ], [ [ -90.0674, 29.97563 ], [ -90.06596, 29.97299 ] ], [ [ -90.06722, 29.97569 ], [ -90.067178, 29.975706 ] ], [ [ -90.0663, 29.974 ], [ -90.06722, 29.97569 ] ], [ [ -90.06708, 29.97082 ], [ -90.06626, 29.97173 ] ], [ [ -90.06708, 29.97082 ], [ -90.066999, 29.970769 ] ], [ [ -90.0663, 29.974 ], [ -90.066225, 29.974028 ] ], [ [ -90.06626, 29.97173 ], [ -90.06546, 29.97259 ], [ -90.0663, 29.974 ] ], [ [ -90.06626, 29.97173 ], [ -90.066255, 29.971699 ] ], [ [ -90.06596, 29.97299 ], [ -90.066045, 29.972989 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "27", "agency_id": "1", "route_short_name": "27", "route_long_name": "Louisiana", "route_type": 3, "route_color": "#4fbdff", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.113972161290306, 29.980940403225794 ], [ -90.10745, 29.98311 ], [ -90.103756, 29.984022 ], [ -90.102175, 29.983966 ], [ -90.10156, 29.98911 ], [ -90.10213, 29.98916 ], [ -90.102235, 29.988936 ], [ -90.102147, 29.988892 ], [ -90.10253, 29.986501 ], [ -90.102715, 29.9841 ], [ -90.103272, 29.984199 ], [ -90.105686, 29.983718 ], [ -90.110303, 29.982343 ], [ -90.11403, 29.98106 ], [ -90.113972161290306, 29.980940403225794 ] ], [ [ -90.113559523610405, 29.979830026311198 ], [ -90.113986, 29.980936 ], [ -90.113972161290306, 29.980940403225794 ] ], [ [ -90.113972161290306, 29.980940403225794 ], [ -90.113559523610405, 29.979830026311198 ] ], [ [ -90.113535491104983, 29.979766230933258 ], [ -90.11346, 29.979857 ], [ -90.113559523610405, 29.979830026311198 ] ], [ [ -90.113559523610405, 29.979830026311198 ], [ -90.113535491104983, 29.979766230933258 ] ], [ [ -90.11349764583332, 29.979637020833323 ], [ -90.113535491104983, 29.979766230933258 ] ], [ [ -90.113535491104983, 29.979766230933258 ], [ -90.11349764583332, 29.979637020833323 ] ], [ [ -90.11349764583332, 29.979637020833323 ], [ -90.113214347826073, 29.978934695652143 ] ], [ [ -90.113214347826073, 29.978934695652143 ], [ -90.11349764583332, 29.979637020833323 ] ], [ [ -90.113442681818185, 29.971274613636368 ], [ -90.113429081698811, 29.971322411236709 ] ], [ [ -90.113429081698811, 29.971322411236709 ], [ -90.113442681818185, 29.971274613636368 ] ], [ [ -90.111771571428761, 29.970739 ], [ -90.11347, 29.971179 ], [ -90.113442681818185, 29.971274613636368 ] ], [ [ -90.113442681818185, 29.971274613636368 ], [ -90.113465, 29.97119 ], [ -90.111771571428761, 29.970739 ] ], [ [ -90.112784804804804, 29.97199769669669 ], [ -90.113429081698811, 29.971322411236709 ] ], [ [ -90.113429081698811, 29.971322411236709 ], [ -90.113395, 29.971444 ], [ -90.112784804804804, 29.97199769669669 ] ], [ [ -90.112559785910847, 29.977194148596599 ], [ -90.112672, 29.977485 ], [ -90.112707, 29.977578 ], [ -90.113214347826073, 29.978934695652143 ] ], [ [ -90.113214347826073, 29.978934695652143 ], [ -90.112559785910847, 29.977194148596599 ] ], [ [ -90.112798192293951, 29.976207635303052 ], [ -90.112345, 29.976635 ], [ -90.112559785910847, 29.977194148596599 ] ], [ [ -90.112559785910847, 29.977194148596599 ], [ -90.112355, 29.976644 ], [ -90.112798192293951, 29.976207635303052 ] ], [ [ -90.112795353543973, 29.976205235268981 ], [ -90.112798192293951, 29.976207635303052 ] ], [ [ -90.112798192293951, 29.976207635303052 ], [ -90.112795353543973, 29.976205235268981 ] ], [ [ -90.112150411764787, 29.975690058823581 ], [ -90.112657, 29.976211 ], [ -90.112795353543973, 29.976205235268981 ] ], [ [ -90.112795353543973, 29.976205235268981 ], [ -90.112150411764787, 29.975690058823581 ] ], [ [ -90.112784804804804, 29.97199769669669 ], [ -90.112655, 29.972026 ], [ -90.112527337891734, 29.972244121253564 ] ], [ [ -90.112527337891734, 29.972244121253564 ], [ -90.112784804804804, 29.97199769669669 ] ], [ [ -90.112527337891734, 29.972244121253564 ], [ -90.111333951115839, 29.973368163655692 ] ], [ [ -90.111333951115839, 29.973368163655692 ], [ -90.112527337891734, 29.972244121253564 ] ], [ [ -90.112117413778734, 29.975663389218433 ], [ -90.112150411764787, 29.975690058823581 ] ], [ [ -90.112150411764787, 29.975690058823581 ], [ -90.112117413778734, 29.975663389218433 ] ], [ [ -90.112117413778734, 29.975663389218433 ], [ -90.112145, 29.975556 ], [ -90.11202, 29.975582 ], [ -90.111894, 29.975371 ], [ -90.111244621621609, 29.973470334459439 ] ], [ [ -90.111244621621609, 29.973470334459439 ], [ -90.111251, 29.973749 ], [ -90.111933, 29.975495 ], [ -90.112011, 29.975683 ], [ -90.112117413778734, 29.975663389218433 ] ], [ [ -90.111771571428761, 29.970739 ], [ -90.107409, 29.969383 ], [ -90.106611, 29.969016 ], [ -90.108353, 29.967347 ], [ -90.108449, 29.96741 ], [ -90.108438, 29.967285 ], [ -90.110164, 29.965675 ], [ -90.106403, 29.962254 ], [ -90.106096, 29.961419 ], [ -90.10272, 29.95469 ] ], [ [ -90.10964, 29.96591 ], [ -90.106313, 29.969039 ], [ -90.107083, 29.969436 ], [ -90.107178, 29.969376 ], [ -90.111771571428761, 29.970739 ] ], [ [ -90.111333951115839, 29.973368163655692 ], [ -90.111255523447397, 29.973449893536113 ] ], [ [ -90.111255523447397, 29.973449893536113 ], [ -90.111333951115839, 29.973368163655692 ] ], [ [ -90.111244621621609, 29.973470334459439 ], [ -90.111255523447397, 29.973449893536113 ] ], [ [ -90.111255523447397, 29.973449893536113 ], [ -90.111244621621609, 29.973470334459439 ] ], [ [ -90.09397, 29.93364 ], [ -90.09641, 29.938799 ], [ -90.0964, 29.939529 ], [ -90.09605, 29.940509 ], [ -90.096099, 29.94146 ], [ -90.096356, 29.942253 ], [ -90.09825, 29.945979 ], [ -90.098229, 29.946318 ], [ -90.098529, 29.94656 ], [ -90.098953, 29.947711 ], [ -90.099241, 29.94804 ], [ -90.1, 29.949569 ], [ -90.101261, 29.952416 ], [ -90.10234, 29.954189 ], [ -90.10579, 29.961476 ], [ -90.10635, 29.96241 ], [ -90.10885, 29.96465 ], [ -90.10892, 29.96522 ], [ -90.10964, 29.96591 ] ], [ [ -90.10964, 29.96591 ], [ -90.109558, 29.965845 ] ], [ [ -90.10272, 29.95469 ], [ -90.102775, 29.954666 ] ], [ [ -90.10272, 29.95469 ], [ -90.10167, 29.95261 ] ], [ [ -90.10167, 29.95261 ], [ -90.101755, 29.952587 ] ], [ [ -90.10167, 29.95261 ], [ -90.10088, 29.95096 ] ], [ [ -90.10088, 29.95096 ], [ -90.100903, 29.950955 ] ], [ [ -90.10088, 29.95096 ], [ -90.09847, 29.94605 ], [ -90.098473, 29.945731 ], [ -90.098009, 29.94512 ], [ -90.096249, 29.94137 ], [ -90.09626, 29.94026 ], [ -90.096638, 29.939212 ], [ -90.096381, 29.938125 ], [ -90.09585, 29.937249 ], [ -90.095046, 29.935338 ], [ -90.094242, 29.933911 ], [ -90.094194, 29.933539 ], [ -90.0939, 29.93321 ], [ -90.09022, 29.92564 ], [ -90.089981, 29.924899 ], [ -90.08915, 29.923389 ], [ -90.089129, 29.922992 ], [ -90.088868, 29.922814 ], [ -90.087679, 29.920221 ], [ -90.086696, 29.918365 ], [ -90.086565339157119, 29.918381240330753 ] ], [ [ -90.09397, 29.93364 ], [ -90.093884, 29.933676 ] ], [ [ -90.0931, 29.93188 ], [ -90.09397, 29.93364 ] ], [ [ -90.0931, 29.93188 ], [ -90.093039, 29.931897 ] ], [ [ -90.09224, 29.93009 ], [ -90.0931, 29.93188 ] ], [ [ -90.09224, 29.93009 ], [ -90.092191, 29.930113 ] ], [ [ -90.0913, 29.92815 ], [ -90.09224, 29.93009 ] ], [ [ -90.0913, 29.92815 ], [ -90.091252, 29.928163 ] ], [ [ -90.09068, 29.92682 ], [ -90.0913, 29.92815 ] ], [ [ -90.09068, 29.92682 ], [ -90.090593, 29.926846 ] ], [ [ -90.08975, 29.92491 ], [ -90.09068, 29.92682 ] ], [ [ -90.08975, 29.92491 ], [ -90.08961, 29.92497 ], [ -90.089566, 29.924874 ] ], [ [ -90.08877, 29.92291 ], [ -90.08975, 29.92491 ] ], [ [ -90.08877, 29.92291 ], [ -90.088714, 29.922931 ] ], [ [ -90.08743, 29.92016 ], [ -90.08877, 29.92291 ] ], [ [ -90.08743, 29.92016 ], [ -90.087386, 29.920172 ] ], [ [ -90.086565339157119, 29.918381240330753 ], [ -90.08743, 29.92016 ] ], [ [ -90.086565339157119, 29.918381240330753 ], [ -90.084885841296952, 29.918604749146748 ] ], [ [ -90.084885841296952, 29.918604749146748 ], [ -90.086565339157119, 29.918381240330753 ] ], [ [ -90.084885841296952, 29.918604749146748 ], [ -90.084357222917944, 29.918709708829052 ] ], [ [ -90.084357222917944, 29.918709708829052 ], [ -90.084885841296952, 29.918604749146748 ] ], [ [ -90.0835, 29.91894 ], [ -90.084357222917944, 29.918709708829052 ] ], [ [ -90.084357222917944, 29.918709708829052 ], [ -90.083505272070212, 29.918952148683527 ] ], [ [ -90.083505272070212, 29.918952148683527 ], [ -90.083523, 29.918993 ] ], [ [ -90.083505272070212, 29.918952148683527 ], [ -90.083284613130047, 29.919011107854651 ] ], [ [ -90.0835, 29.91894 ], [ -90.083505272070212, 29.918952148683527 ] ], [ [ -90.083284613130047, 29.919011107854651 ], [ -90.0835, 29.91894 ] ], [ [ -90.083284613130047, 29.919011107854651 ], [ -90.077316147540984, 29.92094 ] ], [ [ -90.08069, 29.91986 ], [ -90.083284613130047, 29.919011107854651 ] ], [ [ -90.08069, 29.91986 ], [ -90.080714, 29.919906 ] ], [ [ -90.07816, 29.92068 ], [ -90.08069, 29.91986 ] ], [ [ -90.07816, 29.92068 ], [ -90.078191, 29.920757 ] ], [ [ -90.077316147540984, 29.92094 ], [ -90.07816, 29.92068 ] ], [ [ -90.077298805970145, 29.920945597014907 ], [ -90.077316147540984, 29.92094 ] ], [ [ -90.077316147540984, 29.92094 ], [ -90.077298805970145, 29.920945597014907 ] ], [ [ -90.077298805970145, 29.920945597014907 ], [ -90.077268545454515, 29.920955363636381 ] ], [ [ -90.077268545454515, 29.920955363636381 ], [ -90.077298805970145, 29.920945597014907 ] ], [ [ -90.077242388059716, 29.920963805970146 ], [ -90.077268545454515, 29.920955363636381 ] ], [ [ -90.077268545454515, 29.920955363636381 ], [ -90.077242388059716, 29.920963805970146 ] ], [ [ -90.077242388059716, 29.920963805970146 ], [ -90.074723, 29.92171 ], [ -90.073419, 29.922257 ], [ -90.071286245614033, 29.923366113060414 ] ], [ [ -90.07632, 29.92126 ], [ -90.07721, 29.92098 ], [ -90.077242388059716, 29.920963805970146 ] ], [ [ -90.07632, 29.92126 ], [ -90.076354, 29.921332 ] ], [ [ -90.07454, 29.92186 ], [ -90.07632, 29.92126 ] ], [ [ -90.07454, 29.92186 ], [ -90.074564, 29.921914 ] ], [ [ -90.07323, 29.92241 ], [ -90.07454, 29.92186 ] ], [ [ -90.07323, 29.92241 ], [ -90.073256, 29.922459 ] ], [ [ -90.071286245614033, 29.923366113060414 ], [ -90.07323, 29.92241 ] ], [ [ -90.07109, 29.92347 ], [ -90.071286245614033, 29.923366113060414 ] ], [ [ -90.071286245614033, 29.923366113060414 ], [ -90.072433, 29.924674 ], [ -90.070189, 29.926067 ], [ -90.070248939591465, 29.926128904823994 ] ], [ [ -90.07109, 29.92347 ], [ -90.071116, 29.923512 ] ], [ [ -90.070248939591465, 29.926128904823994 ], [ -90.0683, 29.927909 ], [ -90.067296, 29.927014 ], [ -90.067612, 29.925935 ], [ -90.069181, 29.924712 ], [ -90.07109, 29.92347 ] ], [ [ -90.070248939591465, 29.926128904823994 ], [ -90.07025, 29.92613 ], [ -90.07035, 29.92606 ], [ -90.070248939591465, 29.926128904823994 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "8", "agency_id": "1", "route_short_name": "8", "route_long_name": "St. Claude - Arabi", "route_type": 3, "route_color": "#ffa851", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.071764847581107, 29.957717090481996 ], [ -90.07202, 29.9579 ], [ -90.072749, 29.95724 ], [ -90.074969, 29.954596 ], [ -90.07528, 29.954073 ], [ -90.075820935687247, 29.952229387137443 ] ], [ [ -90.075820935687247, 29.952229387137443 ], [ -90.075876, 29.950926 ], [ -90.078328, 29.95181 ], [ -90.077952, 29.953004 ], [ -90.075820935687247, 29.952229387137443 ] ], [ [ -90.075820935687247, 29.952229387137443 ], [ -90.075438, 29.952471 ], [ -90.074799, 29.954347 ], [ -90.071764847581107, 29.957717090481996 ] ], [ [ -90.071764847581107, 29.957717090481996 ], [ -90.071071, 29.958516 ], [ -90.070606314161253, 29.958206647346437 ] ], [ [ -90.070606314161253, 29.958206647346437 ], [ -90.0713, 29.95739 ], [ -90.071764847581107, 29.957717090481996 ] ], [ [ -90.06764, 29.96149 ], [ -90.070606314161253, 29.958206647346437 ] ], [ [ -90.070606314161253, 29.958206647346437 ], [ -90.070472, 29.958118 ], [ -90.063817, 29.965572 ], [ -90.063593, 29.965692 ], [ -90.0621, 29.967492 ], [ -90.061547, 29.967877 ], [ -90.061398, 29.96782 ], [ -90.061174, 29.96802 ], [ -90.060584, 29.968164 ], [ -90.059625, 29.968183 ], [ -90.057992, 29.968468 ], [ -90.057209, 29.968435 ], [ -90.057005, 29.968547 ], [ -90.054505, 29.968701 ], [ -90.054423, 29.968618 ], [ -90.053491, 29.968761 ], [ -90.053355, 29.968686 ], [ -90.053217, 29.968787 ], [ -90.052307, 29.968851 ], [ -90.052214, 29.968718 ], [ -90.052095, 29.96884 ], [ -90.050304, 29.96895 ], [ -90.050286, 29.968853 ], [ -90.050078, 29.968911 ], [ -90.048456, 29.968548 ], [ -90.048385, 29.968429 ], [ -90.048139, 29.968486 ], [ -90.04614, 29.968036 ], [ -90.046101, 29.967935 ], [ -90.045912, 29.967985 ], [ -90.044325, 29.967538 ], [ -90.04227, 29.967171 ], [ -90.040661, 29.966789 ], [ -90.040628, 29.966671 ], [ -90.040498, 29.966748 ], [ -90.038937, 29.966386 ], [ -90.038935, 29.966255 ], [ -90.038768, 29.966344 ], [ -90.033743, 29.965227 ], [ -90.03368, 29.965071 ], [ -90.033622, 29.965201 ], [ -90.031687, 29.964683 ], [ -90.031586, 29.964752 ], [ -90.030697, 29.964565 ], [ -90.025556, 29.963396 ], [ -90.025355, 29.963233 ], [ -90.025334, 29.963342 ], [ -90.023742, 29.963003 ], [ -90.021596, 29.962482 ], [ -90.021531, 29.962357 ], [ -90.021378, 29.962436 ], [ -90.018704, 29.96183 ], [ -90.018613, 29.961711 ], [ -90.018457, 29.961777 ], [ -90.015946, 29.9612 ], [ -90.015903, 29.961092 ], [ -90.015739, 29.961147 ], [ -90.01406, 29.960759 ], [ -90.014013, 29.960649 ], [ -90.01388, 29.960715 ], [ -90.013051, 29.960517 ], [ -90.012394, 29.960308 ], [ -90.012372, 29.960188 ], [ -90.012238, 29.960259 ], [ -90.010329, 29.959564 ], [ -90.010221, 29.959404 ], [ -90.010187, 29.959499 ], [ -90.008352, 29.958836 ], [ -90.00834, 29.958726 ], [ -90.008188, 29.958762 ], [ -90.002766, 29.956788 ], [ -90.002621, 29.957016 ], [ -90.00488, 29.957688 ], [ -90.012166, 29.960477 ], [ -90.013804, 29.960861 ], [ -90.013828, 29.961011 ], [ -90.013922, 29.960884 ], [ -90.015643, 29.961304 ], [ -90.015687, 29.961426 ], [ -90.015726, 29.961317 ], [ -90.018319, 29.961901 ], [ -90.018397, 29.962028 ], [ -90.018526, 29.96195 ], [ -90.02118, 29.962553 ], [ -90.021273, 29.962673 ], [ -90.021365, 29.9626 ], [ -90.022122, 29.962737 ], [ -90.024912, 29.963347 ], [ -90.031082, 29.964742 ], [ -90.031408, 29.964936 ], [ -90.031682, 29.964891 ], [ -90.033392, 29.965387 ], [ -90.036154, 29.965997 ], [ -90.036357, 29.965956 ], [ -90.049977, 29.969152 ], [ -90.056322, 29.968817 ], [ -90.06107, 29.968209 ], [ -90.061703, 29.967951 ], [ -90.062412, 29.967436 ], [ -90.06353, 29.96608 ] ], [ [ -90.06764, 29.96149 ], [ -90.067685, 29.961523 ] ], [ [ -90.06353, 29.96608 ], [ -90.06764, 29.96149 ] ], [ [ -90.06353, 29.96608 ], [ -90.063606, 29.966124 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "52", "agency_id": "1", "route_short_name": "52", "route_long_name": "St. Bernard-Paris Avenue", "route_type": 3, "route_color": "#99aad1", "route_text_color": "#000000" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.110062391118703, 29.965532847993153 ], [ -90.109467027079234, 29.9650139497098 ] ], [ [ -90.109388, 29.964873 ], [ -90.109347, 29.964917 ], [ -90.1106, 29.96611 ], [ -90.110062391118703, 29.965532847993153 ] ], [ [ -90.10456, 29.95699 ], [ -90.10613, 29.95689 ], [ -90.10748, 29.95715 ], [ -90.111631, 29.959508 ], [ -90.112682, 29.959908 ], [ -90.114791, 29.961064 ], [ -90.110403, 29.965219 ], [ -90.11007, 29.965395 ], [ -90.110062391118703, 29.965532847993153 ] ], [ [ -90.110062391118703, 29.965532847993153 ], [ -90.109467027079234, 29.9650139497098 ] ], [ [ -90.109467027079234, 29.9650139497098 ], [ -90.109410914008322, 29.964962746532617 ] ], [ [ -90.109467027079234, 29.9650139497098 ], [ -90.109410914008322, 29.964962746532617 ] ], [ [ -90.109410914008322, 29.964962746532617 ], [ -90.109388, 29.964873 ] ], [ [ -90.109410914008322, 29.964962746532617 ], [ -90.109388, 29.964873 ] ], [ [ -90.109388, 29.964873 ], [ -90.106415, 29.962256 ], [ -90.103891325796027, 29.957099796031383 ] ], [ [ -90.10456, 29.95699 ], [ -90.104563, 29.957002 ] ], [ [ -90.103891325796027, 29.957099796031383 ], [ -90.10456, 29.95699 ] ], [ [ -90.08871, 29.94663 ], [ -90.092905, 29.949065 ], [ -90.093198, 29.949119 ], [ -90.09355, 29.948808 ], [ -90.098322, 29.946128 ], [ -90.098953, 29.947711 ], [ -90.099241, 29.94804 ], [ -90.1, 29.949569 ], [ -90.101261, 29.952416 ], [ -90.10234, 29.954189 ], [ -90.10374, 29.95713 ], [ -90.103891325796027, 29.957099796031383 ] ], [ [ -90.103891325796027, 29.957099796031383 ], [ -90.10272, 29.95469 ] ], [ [ -90.10272, 29.95469 ], [ -90.102775, 29.954666 ] ], [ [ -90.10272, 29.95469 ], [ -90.10167, 29.95261 ] ], [ [ -90.10167, 29.95261 ], [ -90.101755, 29.952587 ] ], [ [ -90.10167, 29.95261 ], [ -90.10088, 29.95096 ] ], [ [ -90.10088, 29.95096 ], [ -90.100903, 29.950955 ] ], [ [ -90.10088, 29.95096 ], [ -90.09967, 29.94853 ] ], [ [ -90.09967, 29.94853 ], [ -90.099757, 29.9485 ] ], [ [ -90.09967, 29.94853 ], [ -90.09839, 29.94589 ], [ -90.0981, 29.94604 ] ], [ [ -90.0981, 29.94604 ], [ -90.09308, 29.94884 ] ], [ [ -90.0981, 29.94604 ], [ -90.098039, 29.945949 ] ], [ [ -90.09308, 29.94884 ], [ -90.093106, 29.948797 ] ], [ [ -90.09308, 29.94884 ], [ -90.09148, 29.94795 ] ], [ [ -90.09148, 29.94795 ], [ -90.091524, 29.94789 ] ], [ [ -90.09148, 29.94795 ], [ -90.0906, 29.94746 ] ], [ [ -90.0906, 29.94746 ], [ -90.090638, 29.947409 ] ], [ [ -90.0906, 29.94746 ], [ -90.08881, 29.94646 ] ], [ [ -90.08881, 29.94646 ], [ -90.088856, 29.946391 ] ], [ [ -90.08881, 29.94646 ], [ -90.08684, 29.94535 ] ], [ [ -90.08871, 29.94663 ], [ -90.088671, 29.94669 ] ], [ [ -90.08817, 29.94632 ], [ -90.08871, 29.94663 ] ], [ [ -90.08817, 29.94632 ], [ -90.08812, 29.946386 ] ], [ [ -90.08655, 29.94542 ], [ -90.08817, 29.94632 ] ], [ [ -90.08684, 29.94535 ], [ -90.086881, 29.945287 ] ], [ [ -90.08684, 29.94535 ], [ -90.08526, 29.94447 ] ], [ [ -90.08655, 29.94542 ], [ -90.086519, 29.945464 ] ], [ [ -90.08499, 29.94452 ], [ -90.08655, 29.94542 ] ], [ [ -90.08526, 29.94447 ], [ -90.085301, 29.944414 ] ], [ [ -90.08526, 29.94447 ], [ -90.08366, 29.94357 ] ], [ [ -90.08499, 29.94452 ], [ -90.084957, 29.944558 ] ], [ [ -90.08343, 29.94366 ], [ -90.08499, 29.94452 ] ], [ [ -90.08366, 29.94357 ], [ -90.083705, 29.943511 ] ], [ [ -90.08366, 29.94357 ], [ -90.08142, 29.94229 ], [ -90.08126, 29.94253 ] ], [ [ -90.08343, 29.94366 ], [ -90.083392, 29.943703 ] ], [ [ -90.08144, 29.94265 ], [ -90.08149, 29.94258 ], [ -90.08343, 29.94366 ] ], [ [ -90.08144, 29.94265 ], [ -90.081487, 29.942673 ] ], [ [ -90.08045, 29.94396 ], [ -90.08144, 29.94265 ] ], [ [ -90.08126, 29.94253 ], [ -90.08038, 29.94373 ] ], [ [ -90.08126, 29.94253 ], [ -90.081189, 29.94249 ] ], [ [ -90.08045, 29.94396 ], [ -90.080535, 29.944007 ] ], [ [ -90.07718, 29.94633 ], [ -90.07761, 29.94538 ], [ -90.078, 29.94515 ], [ -90.0784, 29.94521 ], [ -90.07909, 29.94555 ], [ -90.07928, 29.9455 ], [ -90.08045, 29.94396 ] ], [ [ -90.08038, 29.94373 ], [ -90.07975, 29.94457 ] ], [ [ -90.08038, 29.94373 ], [ -90.080326, 29.943693 ] ], [ [ -90.07975, 29.94457 ], [ -90.0793, 29.94498 ], [ -90.0786, 29.94478 ], [ -90.078, 29.94481 ], [ -90.07743, 29.94526 ], [ -90.076903, 29.945829 ], [ -90.07627, 29.9483 ] ], [ [ -90.07975, 29.94457 ], [ -90.079697, 29.944541 ] ], [ [ -90.07718, 29.94633 ], [ -90.07725, 29.946349 ] ], [ [ -90.0765, 29.94871 ], [ -90.07718, 29.94633 ] ], [ [ -90.0765, 29.94871 ], [ -90.076537, 29.948723 ] ], [ [ -90.07584, 29.95106 ], [ -90.0765, 29.94871 ] ], [ [ -90.07627, 29.9483 ], [ -90.07564, 29.95056 ] ], [ [ -90.07627, 29.9483 ], [ -90.076215, 29.948286 ] ], [ [ -90.07584, 29.95106 ], [ -90.075911, 29.951058 ] ], [ [ -90.07578, 29.95236 ], [ -90.075862, 29.95236 ] ], [ [ -90.07578, 29.95236 ], [ -90.07584, 29.95106 ] ], [ [ -90.07526, 29.95407 ], [ -90.07578, 29.95236 ] ], [ [ -90.07558, 30.02086 ], [ -90.075663, 30.020877 ] ], [ [ -90.07564, 29.95056 ], [ -90.07556, 29.95195 ] ], [ [ -90.07564, 29.95056 ], [ -90.075579, 29.950548 ] ], [ [ -90.07549, 30.01996 ], [ -90.075585, 30.019995 ] ], [ [ -90.07328, 30.02236 ], [ -90.0748, 30.02135 ], [ -90.07562, 30.02123 ], [ -90.07558, 30.02086 ] ], [ [ -90.07558, 30.02086 ], [ -90.07549, 30.01996 ] ], [ [ -90.07556, 29.95195 ], [ -90.07478, 29.95438 ] ], [ [ -90.07556, 29.95195 ], [ -90.075474, 29.951945 ] ], [ [ -90.07549, 30.01996 ], [ -90.07538, 30.01841 ] ], [ [ -90.07538, 30.01841 ], [ -90.075482, 30.018463 ] ], [ [ -90.07538, 30.01841 ], [ -90.07519, 30.01602 ] ], [ [ -90.07535, 30.02099 ], [ -90.075311, 30.020996 ] ], [ [ -90.07535, 30.02099 ], [ -90.07382, 30.02123 ], [ -90.07315, 30.02207 ] ], [ [ -90.07528, 30.01985 ], [ -90.07535, 30.02099 ] ], [ [ -90.07526, 29.95407 ], [ -90.07528, 29.954073 ] ], [ [ -90.07528, 30.01985 ], [ -90.07519, 30.019852 ] ], [ [ -90.07514, 30.01842 ], [ -90.07528, 30.01985 ] ], [ [ -90.07519, 30.01602 ], [ -90.075269, 30.016013 ] ], [ [ -90.074, 29.9557 ], [ -90.07498, 29.95461 ], [ -90.07526, 29.95407 ] ], [ [ -90.07519, 30.01602 ], [ -90.07498, 30.01329 ] ], [ [ -90.07514, 30.01842 ], [ -90.074993, 30.018339 ] ], [ [ -90.07495, 30.01568 ], [ -90.07514, 30.01842 ] ], [ [ -90.07498, 30.01329 ], [ -90.075096, 30.013347 ] ], [ [ -90.07498, 30.01329 ], [ -90.07486, 30.01174 ] ], [ [ -90.07495, 30.01568 ], [ -90.074862, 30.015682 ] ], [ [ -90.07475, 30.0132 ], [ -90.07495, 30.01568 ] ], [ [ -90.07486, 30.01174 ], [ -90.07491, 30.011734 ] ], [ [ -90.07486, 30.01174 ], [ -90.07465, 30.00913 ] ], [ [ -90.07478, 29.95438 ], [ -90.07341, 29.95587 ] ], [ [ -90.07478, 29.95438 ], [ -90.074706, 29.954333 ] ], [ [ -90.07475, 30.0132 ], [ -90.07466, 30.013204 ] ], [ [ -90.07458, 30.0114 ], [ -90.07475, 30.0132 ] ], [ [ -90.07465, 30.00913 ], [ -90.074738, 30.009122 ] ], [ [ -90.07465, 30.00913 ], [ -90.074466, 30.007191 ], [ -90.074568, 30.007005 ], [ -90.074448, 30.006994 ], [ -90.07439, 30.00599 ] ], [ [ -90.07458, 30.0114 ], [ -90.074503, 30.011403 ] ], [ [ -90.0744, 30.00898 ], [ -90.07458, 30.0114 ] ], [ [ -90.07439, 30.00599 ], [ -90.074465, 30.005985 ] ], [ [ -90.0744, 30.00898 ], [ -90.074249, 30.008989 ] ], [ [ -90.07425, 30.00711 ], [ -90.0744, 30.00898 ] ], [ [ -90.07439, 30.00599 ], [ -90.07421, 30.0038 ] ], [ [ -90.07425, 30.00711 ], [ -90.074164, 30.007115 ] ], [ [ -90.07418, 30.00625 ], [ -90.07425, 30.00711 ] ], [ [ -90.07421, 30.0038 ], [ -90.074247, 30.003825 ] ], [ [ -90.07421, 30.0038 ], [ -90.07409, 30.00224 ] ], [ [ -90.07409, 30.00224 ], [ -90.074185, 30.00224 ] ], [ [ -90.07418, 30.00625 ], [ -90.074107, 30.006252 ] ], [ [ -90.07409, 30.00511 ], [ -90.07418, 30.00625 ] ], [ [ -90.07409, 30.00224 ], [ -90.07394, 30.00019 ] ], [ [ -90.07409, 30.00511 ], [ -90.074036, 30.005111 ] ], [ [ -90.07397, 30.00365 ], [ -90.07409, 30.00511 ] ], [ [ -90.074, 29.9557 ], [ -90.074078, 29.955755 ] ], [ [ -90.07394, 30.00019 ], [ -90.074012, 30.000184 ] ], [ [ -90.07198, 29.95798 ], [ -90.074, 29.9557 ] ], [ [ -90.07397, 30.00365 ], [ -90.073894, 30.003656 ] ], [ [ -90.07385, 30.00211 ], [ -90.07397, 30.00365 ] ], [ [ -90.07394, 30.00019 ], [ -90.07378, 29.99817 ] ], [ [ -90.07385, 30.00211 ], [ -90.07378, 30.002115 ] ], [ [ -90.07373, 30.00054 ], [ -90.07385, 30.00211 ] ], [ [ -90.07378, 29.99817 ], [ -90.073844, 29.998167 ] ], [ [ -90.07378, 29.99817 ], [ -90.07361, 29.99616 ] ], [ [ -90.07373, 30.00054 ], [ -90.073682, 30.000544 ] ], [ [ -90.07353, 29.998 ], [ -90.07373, 30.00054 ] ], [ [ -90.07361, 29.99616 ], [ -90.073687, 29.996152 ] ], [ [ -90.07361, 29.99616 ], [ -90.07344, 29.9941 ] ], [ [ -90.07353, 29.998 ], [ -90.073459, 29.998 ] ], [ [ -90.07336, 29.99595 ], [ -90.07353, 29.998 ] ], [ [ -90.07344, 29.9941 ], [ -90.073524, 29.994098 ] ], [ [ -90.07344, 29.9941 ], [ -90.07329, 29.99207 ] ], [ [ -90.07341, 29.95587 ], [ -90.0719, 29.9576 ] ], [ [ -90.07341, 29.95587 ], [ -90.073384, 29.955849 ] ], [ [ -90.07329, 29.99207 ], [ -90.073365, 29.99207 ] ], [ [ -90.07336, 29.99595 ], [ -90.073296, 29.995956 ] ], [ [ -90.0732, 29.99393 ], [ -90.07336, 29.99595 ] ], [ [ -90.07328, 30.02236 ], [ -90.073307, 30.022403 ] ], [ [ -90.07329, 29.99207 ], [ -90.07309, 29.9908 ], [ -90.07309, 29.98947 ] ], [ [ -90.07177, 30.02313 ], [ -90.07328, 30.02236 ] ], [ [ -90.0732, 29.99393 ], [ -90.073141, 29.993936 ] ], [ [ -90.07303, 29.99183 ], [ -90.0732, 29.99393 ] ], [ [ -90.07309, 29.98947 ], [ -90.073153, 29.98947 ] ], [ [ -90.07315, 30.02207 ], [ -90.07194, 30.02282 ] ], [ [ -90.07315, 30.02207 ], [ -90.073128, 30.021989 ] ], [ [ -90.07309, 29.98947 ], [ -90.07293, 29.98802 ] ], [ [ -90.07303, 29.99183 ], [ -90.072929, 29.991833 ] ], [ [ -90.07284, 29.98929 ], [ -90.07303, 29.99183 ] ], [ [ -90.07293, 29.98802 ], [ -90.073017, 29.988016 ] ], [ [ -90.07293, 29.98802 ], [ -90.07276, 29.98592 ] ], [ [ -90.07275, 29.98785 ], [ -90.07284, 29.98929 ] ], [ [ -90.07284, 29.98929 ], [ -90.072773, 29.989287 ] ], [ [ -90.07276, 29.98592 ], [ -90.072785, 29.985935 ] ], [ [ -90.07276, 29.98592 ], [ -90.07274, 29.9856 ], [ -90.07295, 29.98529 ], [ -90.07202, 29.98368 ] ], [ [ -90.07275, 29.98785 ], [ -90.072682, 29.98785 ] ], [ [ -90.07259, 29.98585 ], [ -90.07275, 29.98785 ] ], [ [ -90.07259, 29.98585 ], [ -90.072525, 29.985855 ] ], [ [ -90.07161, 29.98321 ], [ -90.07255, 29.98489 ], [ -90.07259, 29.98585 ] ], [ [ -90.07226, 29.96361 ], [ -90.072328, 29.963601 ] ], [ [ -90.07063, 29.96748 ], [ -90.07339, 29.96436 ], [ -90.07226, 29.96361 ] ], [ [ -90.07226, 29.96361 ], [ -90.07149, 29.96308 ], [ -90.07121, 29.96273 ] ], [ [ -90.07202, 29.98368 ], [ -90.072097, 29.983649 ] ], [ [ -90.07198, 29.95798 ], [ -90.072048, 29.958027 ] ], [ [ -90.07202, 29.98368 ], [ -90.07092, 29.98177 ] ], [ [ -90.07058, 29.95951 ], [ -90.07198, 29.95798 ] ], [ [ -90.07194, 30.02282 ], [ -90.07096, 30.02327 ], [ -90.07022, 30.02344 ], [ -90.06776, 30.02343 ] ], [ [ -90.07194, 30.02282 ], [ -90.071897, 30.022761 ] ], [ [ -90.07192, 29.96539 ], [ -90.07047, 29.96701 ] ], [ [ -90.07139, 29.96319 ], [ -90.07296, 29.96424 ], [ -90.07192, 29.96539 ] ], [ [ -90.07192, 29.96539 ], [ -90.071879, 29.965355 ] ], [ [ -90.0719, 29.9576 ], [ -90.07049, 29.95917 ] ], [ [ -90.0719, 29.9576 ], [ -90.071875, 29.957586 ] ], [ [ -90.07177, 30.02313 ], [ -90.071807, 30.023203 ] ], [ [ -90.06847, 30.02372 ], [ -90.07025, 30.02353 ], [ -90.07177, 30.02313 ] ], [ [ -90.07161, 29.98321 ], [ -90.071534, 29.983246 ] ], [ [ -90.07081, 29.98184 ], [ -90.07161, 29.98321 ] ], [ [ -90.07139, 29.96319 ], [ -90.071273, 29.963222 ] ], [ [ -90.07046, 29.96151 ], [ -90.07079, 29.96195 ], [ -90.07108, 29.96284 ], [ -90.07139, 29.96319 ] ], [ [ -90.07121, 29.96273 ], [ -90.071232, 29.962721 ] ], [ [ -90.07121, 29.96273 ], [ -90.07085, 29.9617 ], [ -90.07005, 29.96048 ], [ -90.0701, 29.9601 ], [ -90.07058, 29.95951 ] ], [ [ -90.07092, 29.98177 ], [ -90.070999, 29.981741 ] ], [ [ -90.07092, 29.98177 ], [ -90.06964, 29.9795 ] ], [ [ -90.07081, 29.98184 ], [ -90.07075, 29.981864 ] ], [ [ -90.0697, 29.97991 ], [ -90.07081, 29.98184 ] ], [ [ -90.07058, 29.95951 ], [ -90.070659, 29.959576 ] ], [ [ -90.07063, 29.96748 ], [ -90.070652, 29.967506 ] ], [ [ -90.06596, 29.97299 ], [ -90.06599, 29.97267 ], [ -90.07063, 29.96748 ] ], [ [ -90.07049, 29.95917 ], [ -90.06998, 29.95979 ], [ -90.06981, 29.9604 ], [ -90.06995, 29.96094 ], [ -90.07046, 29.96151 ] ], [ [ -90.07049, 29.95917 ], [ -90.070453, 29.959145 ] ], [ [ -90.07047, 29.96701 ], [ -90.06859, 29.96911 ] ], [ [ -90.07047, 29.96701 ], [ -90.070446, 29.966993 ] ], [ [ -90.07046, 29.96151 ], [ -90.07034, 29.9616 ], [ -90.070267, 29.961523 ] ], [ [ -90.0697, 29.97991 ], [ -90.069637, 29.979937 ] ], [ [ -90.06893, 29.97859 ], [ -90.0697, 29.97991 ] ], [ [ -90.06964, 29.9795 ], [ -90.069695, 29.979476 ] ], [ [ -90.06964, 29.9795 ], [ -90.06908, 29.97854 ] ], [ [ -90.06908, 29.97854 ], [ -90.069133, 29.978516 ] ], [ [ -90.06908, 29.97854 ], [ -90.06852, 29.97755 ] ], [ [ -90.06836, 29.9776 ], [ -90.06893, 29.97859 ] ], [ [ -90.06893, 29.97859 ], [ -90.068901, 29.978581 ] ], [ [ -90.06859, 29.96911 ], [ -90.06708, 29.97082 ] ], [ [ -90.06859, 29.96911 ], [ -90.068531, 29.969071 ] ], [ [ -90.06852, 29.97755 ], [ -90.068521, 29.977547 ] ], [ [ -90.06852, 29.97755 ], [ -90.0674, 29.97563 ] ], [ [ -90.06847, 30.02372 ], [ -90.068479, 30.023786 ] ], [ [ -90.06684, 30.0238 ], [ -90.06847, 30.02372 ] ], [ [ -90.06836, 29.9776 ], [ -90.068345, 29.977602 ] ], [ [ -90.06722, 29.97569 ], [ -90.06836, 29.9776 ] ], [ [ -90.06776, 30.02343 ], [ -90.067812, 30.023339 ] ], [ [ -90.06776, 30.02343 ], [ -90.06618, 30.023545 ], [ -90.066121, 30.02341 ], [ -90.066134, 30.023555 ], [ -90.06445, 30.02403 ] ], [ [ -90.0674, 29.97563 ], [ -90.067473, 29.975619 ] ], [ [ -90.0674, 29.97563 ], [ -90.06596, 29.97299 ] ], [ [ -90.06722, 29.97569 ], [ -90.067178, 29.975706 ] ], [ [ -90.0663, 29.974 ], [ -90.06722, 29.97569 ] ], [ [ -90.06708, 29.97082 ], [ -90.06626, 29.97173 ] ], [ [ -90.06708, 29.97082 ], [ -90.066999, 29.970769 ] ], [ [ -90.06684, 30.0238 ], [ -90.06685, 30.023875 ] ], [ [ -90.06178, 30.02868 ], [ -90.061566, 30.025278 ], [ -90.063452, 30.02481 ], [ -90.065149, 30.023999 ], [ -90.06684, 30.0238 ] ], [ [ -90.0663, 29.974 ], [ -90.066225, 29.974028 ] ], [ [ -90.06626, 29.97173 ], [ -90.06546, 29.97259 ], [ -90.0663, 29.974 ] ], [ [ -90.06626, 29.97173 ], [ -90.066255, 29.971699 ] ], [ [ -90.06596, 29.97299 ], [ -90.066045, 29.972989 ] ], [ [ -90.06445, 30.02403 ], [ -90.06269, 30.02485 ], [ -90.06111, 30.02504 ], [ -90.06115, 30.02556 ] ], [ [ -90.06445, 30.02403 ], [ -90.064417, 30.023964 ] ], [ [ -90.06178, 30.02868 ], [ -90.061857, 30.028674 ] ], [ [ -90.0613, 30.02745 ], [ -90.06144, 30.02912 ], [ -90.06526, 30.0282 ], [ -90.065488, 30.027969 ], [ -90.06516, 30.02788 ], [ -90.06178, 30.02868 ] ], [ [ -90.0613, 30.02745 ], [ -90.061238, 30.027459 ] ], [ [ -90.06115, 30.02556 ], [ -90.0613, 30.02745 ] ], [ [ -90.06115, 30.02556 ], [ -90.06107, 30.025569 ] ] ] } }, -{ "type": "Feature", "properties": { "agency_name": "NORTA", "route_id": "103", "agency_id": "1", "route_short_name": "103", "route_long_name": "General Meyer Local", "route_type": 3, "route_color": "#19a6fd", "route_text_color": "#000000", "edit_comment": "remade from NOLA centerlines" }, "geometry": { "type": "MultiLineString", "coordinates": [ [ [ -90.054892556327005, 29.952140618165 ], [ -90.054876910423005, 29.952068750154002 ], [ -90.054853222025002, 29.952030156193 ], [ -90.054792252018004, 29.951956499969999 ], [ -90.054751730679001, 29.951905757346001 ], [ -90.054711210407007, 29.951855013488 ], [ -90.054653452636998, 29.951789136462999 ], [ -90.054533588941993, 29.951644787747998 ], [ -90.054489206892995, 29.951591343579 ], [ -90.054440813667995, 29.951533060709 ], [ -90.054239275243006, 29.951285621819 ], [ -90.054151790958997, 29.951186425991999 ], [ -90.053551444836003, 29.950456134776999 ], [ -90.052860633674001, 29.94961710546 ], [ -90.052780108687998, 29.949525017285001 ], [ -90.052460404686997, 29.949137238311 ], [ -90.052251785085005, 29.948884194523998 ], [ -90.052249223537999, 29.948853693741 ], [ -90.052251500810002, 29.948823170417 ], [ -90.052258559986001, 29.948793387413001 ], [ -90.052270224636999, 29.948765089089001 ], [ -90.052286203232995, 29.948738982696 ], [ -90.052306096424005, 29.948715720705 ], [ -90.052329407024004, 29.948695884496001 ], [ -90.052355552438996, 29.948679969832 ], [ -90.052383879223001, 29.948668374461999 ], [ -90.052413679411003, 29.948661388186999 ], [ -90.052409166803002, 29.948596170491001 ], [ -90.052405158786001, 29.948538262421 ], [ -90.052400450278, 29.948470248284998 ], [ -90.052336823538994, 29.947551086034 ], [ -90.052312081349001, 29.947154493087002 ], [ -90.052270961030004, 29.94649475716 ], [ -90.052219947403003, 29.945681204052001 ], [ -90.052199807153997, 29.945445522353999 ] ], [ [ -90.054892335637007, 29.952140759285001 ], [ -90.054978349959995, 29.952455400681 ], [ -90.055159849051563, 29.952485711261648 ], [ -90.055247012001985, 29.952498422525249 ], [ -90.055296041161597, 29.952580137791269 ], [ -90.055303304740804, 29.952799861062122 ], [ -90.055323279583604, 29.95315032875861 ], [ -90.055049307852997, 29.953304855709 ], [ -90.054992678033003, 29.953350289970999 ], [ -90.054774004484997, 29.953486021446 ], [ -90.054677877396003, 29.953550298204998 ], [ -90.054049071874999, 29.953945710025 ], [ -90.053957892362007, 29.954003034313001 ], [ -90.053746606209003, 29.954135892322 ], [ -90.053705886301998, 29.954161800952001 ], [ -90.053316871007993, 29.954409342199 ], [ -90.053156192412999, 29.954511586361001 ], [ -90.052894261535002, 29.954678255335999 ], [ -90.052773159704003, 29.954760089916999 ], [ -90.052618192154, 29.954857950988998 ], [ -90.052576407160998, 29.954876173014998 ], [ -90.052532691758998, 29.954892574940999 ], [ -90.052487550229003, 29.954904503973001 ], [ -90.052441438955995, 29.954911839506 ], [ -90.052327297035006, 29.954924325943999 ], [ -90.051791525263994, 29.954968311032999 ], [ -90.051702113499005, 29.954975652708001 ], [ -90.051407538760998, 29.954999834256999 ], [ -90.050873214994994, 29.955032063409998 ], [ -90.050693507079004, 29.955040352606002 ], [ -90.050626381, 29.955043397436999 ], [ -90.050149158986002, 29.955063988751998 ], [ -90.050081523207993, 29.955066069838001 ], [ -90.050011162974997, 29.955069232766 ], [ -90.049705178579998, 29.955082357481999 ], [ -90.049704231348997, 29.955082398929999 ], [ -90.049639649732001, 29.955085166943 ], [ -90.049561295160998, 29.955088198664999 ], [ -90.049331997186002, 29.955097082468999 ], [ -90.048897590535006, 29.955113897528999 ], [ -90.048809568120006, 29.955114190911001 ], [ -90.048729263463997, 29.95511375649 ], [ -90.047990840173, 29.955079066945999 ], [ -90.047872521425006, 29.955073509367999 ], [ -90.047782461316999, 29.955071027049001 ], [ -90.047740367089006, 29.955068936398 ], [ -90.046770122492006, 29.955020808718 ], [ -90.046679631523006, 29.955013265474001 ], [ -90.046593488957001, 29.955004379744999 ], [ -90.045835959358996, 29.954912436392998 ], [ -90.045751341116997, 29.954903062193001 ], [ -90.045665341973006, 29.954891893479999 ], [ -90.044894993081002, 29.954798504346002 ], [ -90.044792337066994, 29.954784686307999 ], [ -90.044690377601995, 29.954772289171999 ], [ -90.044007773089007, 29.95468209086 ], [ -90.043794952097997, 29.954653968237 ], [ -90.043302554072994, 29.954564077665001 ], [ -90.042669871871993, 29.954448574425999 ], [ -90.042565838149002, 29.954431471749 ], [ -90.042331828697002, 29.954384742296 ], [ -90.041757875130997, 29.954259238325001 ], [ -90.041627122362002, 29.954230648745 ], [ -90.041544640726997, 29.954211161700002 ], [ -90.041459347905004, 29.954194426047 ], [ -90.041250131351006, 29.954147035717 ], [ -90.040516557217998, 29.953974887943001 ], [ -90.040439446687998, 29.953954418794002 ], [ -90.040365249776997, 29.953936760442001 ], [ -90.040246285212007, 29.953906510351 ], [ -90.040163250621006, 29.953884364499 ], [ -90.040171933606999, 29.953786981739999 ], [ -90.040533031806007, 29.948475020995001 ], [ -90.040537872024004, 29.94839988451 ] ], [ [ -90.052199807153997, 29.945445522353999 ], [ -90.051830225982997, 29.945464385377999 ], [ -90.051093864616007, 29.945494513919002 ], [ -90.050987861486007, 29.945500694189001 ], [ -90.050251479375007, 29.945534308256999 ], [ -90.050148675768995, 29.945540105100999 ], [ -90.049516758075995, 29.945570958099999 ], [ -90.049423319631998, 29.945571114307 ], [ -90.049315602134996, 29.945571420971 ], [ -90.048888955804003, 29.945550563146998 ], [ -90.041036881392003, 29.945171923932001 ], [ -90.040926687839999, 29.945168151920001 ], [ -90.040746947581994, 29.945148544529999 ] ], [ [ -90.052199807153997, 29.945445522353999 ], [ -90.052134500294997, 29.944390224928 ], [ -90.052067771718995, 29.943339758398999 ], [ -90.052057427120999, 29.943246505596001 ], [ -90.052010587344, 29.942469500247999 ], [ -90.051999230123002, 29.942281051278002 ], [ -90.051519286, 29.942305523826999 ], [ -90.051508811923, 29.942306066823001 ], [ -90.050893460759994, 29.942337433837999 ], [ -90.050788967700996, 29.94234394667 ], [ -90.050569410601994, 29.942357629166001 ], [ -90.050468088773997, 29.942363943686001 ], [ -90.050458602673004, 29.942364393624 ], [ -90.049914872304996, 29.942390183859001 ], [ -90.049751688833993, 29.942390308461999 ], [ -90.049673634903002, 29.942390365693001 ], [ -90.049516474694002, 29.942386621850002 ], [ -90.049172463109997, 29.942368716034 ], [ -90.044971638568995, 29.942165113236001 ], [ -90.044776966444005, 29.942158785821 ], [ -90.044754188886003, 29.942158045119999 ], [ -90.044750062457993, 29.942157905441 ], [ -90.044749476090999, 29.942157882802 ], [ -90.044732820779998, 29.942157062139 ], [ -90.044710647182001, 29.942155967601 ], [ -90.044677206897006, 29.942154320417 ], [ -90.044600229609998, 29.942146132165 ], [ -90.044599790090999, 29.942146068020001 ], [ -90.044536480293999, 29.942136726691 ], [ -90.044535540737996, 29.942136590063001 ], [ -90.044525111832996, 29.942134728603001 ], [ -90.044490032434993, 29.942128465189001 ], [ -90.044446277233007, 29.942120654033001 ], [ -90.044407299842007, 29.942113698217 ], [ -90.044391035244004, 29.942110384418999 ], [ -90.044343919577997, 29.94210078787 ], [ -90.044249211440004, 29.942079303627001 ], [ -90.044248330878006, 29.942079105623002 ], [ -90.044190759699006, 29.942060590358 ], [ -90.044157872520003, 29.942050014322 ], [ -90.044147395112006, 29.942046308399 ], [ -90.044067540659995, 29.942018065245001 ], [ -90.044003452517003, 29.941995400359001 ], [ -90.043970116302006, 29.941983607408002 ], [ -90.043937163015002, 29.941972552298999 ], [ -90.043901313679001, 29.941960523852 ], [ -90.043888021810005, 29.941956459795001 ], [ -90.043836132343998, 29.941940594129999 ], [ -90.043831728902006, 29.941939247335 ], [ -90.043713089218997, 29.941908233029 ], [ -90.043690506548998, 29.941902330902 ], [ -90.043688564739995, 29.94190187433 ], [ -90.043578728222002, 29.941876067456 ], [ -90.043508894808994, 29.94186532865 ], [ -90.043466472457993, 29.941858806940999 ], [ -90.043363857624001, 29.941848146893001 ], [ -90.043239813232006, 29.941835262485998 ], [ -90.043236658550995, 29.941835068048 ], [ -90.042855955641002, 29.941811608314001 ], [ -90.042342118373, 29.941779940187001 ], [ -90.042256622181, 29.941774752432998 ], [ -90.041411219037002, 29.941713364163999 ], [ -90.041245846066005, 29.941701427595 ], [ -90.041128395906995, 29.94169294912 ], [ -90.041134135338993, 29.941604617115001 ], [ -90.041157407171994, 29.941331869818999 ], [ -90.041179342798003, 29.941046894066002 ], [ -90.041185958628006, 29.940980487135 ], [ -90.041195394254999, 29.940885712311001 ], [ -90.041200856925002, 29.940839567211 ], [ -90.041213503983997, 29.940697896530001 ], [ -90.041248134712006, 29.940270692428999 ], [ -90.041251416867993, 29.940247739158 ], [ -90.041281297818998, 29.940092270128002 ], [ -90.041296851406997, 29.940011333579001 ], [ -90.041350354450998, 29.939888439265999 ], [ -90.041383617476995, 29.939811182899 ], [ -90.041418370114002, 29.939718494983001 ], [ -90.041441545970997, 29.939627403227 ], [ -90.041466762343006, 29.939511433044 ], [ -90.041479963425999, 29.939447967656999 ], [ -90.041485938362001, 29.939406131310999 ], [ -90.041498254359993, 29.939288085592999 ], [ -90.041498305868998, 29.93920188345 ], [ -90.041501639459, 29.939184644183999 ], [ -90.041507143789005, 29.939137744781 ], [ -90.041456897331003, 29.938962193590001 ], [ -90.041432314139001, 29.938889332567001 ], [ -90.041421486424994, 29.938852106121999 ], [ -90.041405516346998, 29.938787877317999 ], [ -90.041400498420003, 29.938700171621999 ], [ -90.041399544124005, 29.93867567 ], [ -90.041393483695998, 29.938445134108001 ], [ -90.041390643572001, 29.938321934619999 ], [ -90.041386531976002, 29.938143601699998 ], [ -90.041384638690005, 29.938061402235999 ], [ -90.041383610249, 29.938016810463001 ], [ -90.041382962192998, 29.937988649975999 ], [ -90.041379734762998, 29.937848759876999 ], [ -90.041381997399995, 29.937778800356998 ], [ -90.041389265589999, 29.937678176993 ], [ -90.041403983348999, 29.937474436 ], [ -90.041409619589004, 29.937396441556999 ], [ -90.041414902789995, 29.937310017790001 ], [ -90.041427483681005, 29.937104169489 ], [ -90.041428316440999, 29.937090557326002 ], [ -90.041434310352997, 29.937015447874 ], [ -90.041441696419, 29.936916106765 ], [ -90.041825134109999, 29.931099984492 ], [ -90.041839240339996, 29.930780850794001 ], [ -90.041836756772, 29.930759957816999 ], [ -90.041840923299006, 29.930674904608001 ], [ -90.041843712588999, 29.930617955946001 ], [ -90.041846656437002, 29.930557854339 ], [ -90.041853357090005, 29.930421062575999 ], [ -90.041887106721006, 29.929856850606999 ], [ -90.041895753136004, 29.929712281446999 ], [ -90.041945254854994, 29.928909675823999 ], [ -90.041946187451998, 29.928873329535001 ], [ -90.041946485964004, 29.928861565047001 ], [ -90.041951941381996, 29.928648072342 ], [ -90.042323288707294, 29.922833965065234 ], [ -90.042759103459417, 29.922182058831869 ], [ -90.042875320726651, 29.922002285246627 ], [ -90.042862609463043, 29.921847934188587 ], [ -90.042813580303431, 29.921695399025353 ], [ -90.042726417353009, 29.921586445337326 ], [ -90.042642886192183, 29.921508361860905 ], [ -90.042532116609365, 29.921504730071305 ], [ -90.042417715236937, 29.921519257229708 ], [ -90.042330552286515, 29.921562838704919 ], [ -90.042079958804038, 29.921911490506606 ], [ -90.041618721524728, 29.922616057689176 ], [ -90.041584219523514, 29.922723195482405 ], [ -90.041578771839113, 29.922832149170429 ], [ -90.041600562576718, 29.922921128015652 ], [ -90.041635064577932, 29.92302281812448 ], [ -90.041702252685553, 29.923099085706095 ], [ -90.041789415635975, 29.923177169182516 ], [ -90.041903817008404, 29.923273411606939 ], [ -90.041980084590023, 29.923351495083359 ], [ -90.04205090448724, 29.923444105718179 ], [ -90.042090854172841, 29.923549427616607 ], [ -90.042099933646853, 29.923674724357838 ], [ -90.041812736441997, 29.928627053825 ], [ -90.041806112833001, 29.928740486481001 ], [ -90.041797138958998, 29.928894258517001 ], [ -90.041749412106995, 29.929711796715999 ], [ -90.041749070313003, 29.929742018163001 ], [ -90.041750289711999, 29.929755543304999 ], [ -90.041744340153002, 29.929850995273998 ], [ -90.041699961258999, 29.930563045458999 ], [ -90.041688213064006, 29.930622502344999 ], [ -90.041676763824995, 29.930680482524998 ], [ -90.041650838482994, 29.930811704817 ], [ -90.041288377955993, 29.937008279954 ], [ -90.041285011746993, 29.937060553773001 ], [ -90.041267541729994, 29.937310540957 ], [ -90.041262549364006, 29.937390302253 ], [ -90.041259363576003, 29.937433040188001 ], [ -90.041244111290993, 29.937637354256999 ], [ -90.041233688527996, 29.937776980767001 ], [ -90.041224269157993, 29.937952731058999 ], [ -90.041222713736005, 29.937981747445999 ], [ -90.041195065541004, 29.938133638513001 ], [ -90.041156055220995, 29.938263362979999 ], [ -90.041102250823997, 29.938442273878 ], [ -90.041054000935006, 29.938602713129999 ], [ -90.041033472657006, 29.938679631985998 ], [ -90.041005301173996, 29.938806291513 ], [ -90.040990086961997, 29.938912919021998 ], [ -90.040980224286997, 29.939020461851999 ], [ -90.040962084003993, 29.939343623601001 ], [ -90.040955798734004, 29.939533696058 ], [ -90.040957876600004, 29.939636415307 ], [ -90.040962389277993, 29.939690813559999 ], [ -90.040977829086003, 29.939795167282998 ], [ -90.041004442629003, 29.939938942438001 ], [ -90.041015167099005, 29.939979332389999 ], [ -90.041017012354004, 29.939999834523999 ], [ -90.041038567805998, 29.940239416434 ], [ -90.041046460019999, 29.940376350278001 ], [ -90.041031678658996, 29.940674409795999 ], [ -90.041016004145007, 29.940973955829001 ], [ -90.041012934649999, 29.941032586681001 ], [ -90.040994345128993, 29.941268731354 ], [ -90.040970461198, 29.941619123372 ], [ -90.040966597619999, 29.941681268364999 ], [ -90.040953552491999, 29.941890949819999 ], [ -90.040951091184994, 29.941974799425001 ], [ -90.040949373863, 29.942033314892999 ], [ -90.040916015624006, 29.942524587445 ], [ -90.040881296673007, 29.943035607936 ], [ -90.040876533277995, 29.943105742421999 ], [ -90.040850591158005, 29.943562178213 ], [ -90.040819162071998, 29.944015802669 ], [ -90.040814229269998, 29.944093205182 ], [ -90.040746947581994, 29.945148544529999 ] ], [ [ -90.040537872024004, 29.94839988451 ], [ -90.040547044765006, 29.948257442439999 ], [ -90.040551565851999, 29.948187266205998 ], [ -90.040738736361007, 29.945264198804999 ], [ -90.040746947581994, 29.945148544529999 ] ], [ [ -90.040746947581994, 29.945148544529999 ], [ -90.036929774263001, 29.944970079935 ], [ -90.036829317805001, 29.944965333338001 ] ], [ [ -90.040537872024004, 29.94839988451 ], [ -90.040449234785996, 29.948395513981001 ], [ -90.036705387636005, 29.948217145499001 ], [ -90.036615232017994, 29.948213544847 ] ], [ [ -90.036829317805001, 29.944965333338001 ], [ -90.036720204183993, 29.945026480625 ], [ -90.036163963690996, 29.945013510355 ], [ -90.035910200182997, 29.945001689352001 ], [ -90.035753117311998, 29.944992808426001 ], [ -90.035584389166999, 29.944982101724001 ], [ -90.035505981211998, 29.944976847524 ], [ -90.035455919365006, 29.944973492458001 ], [ -90.034619615170996, 29.944932060629 ], [ -90.034549169643995, 29.944928041480999 ], [ -90.033391941700003, 29.944860564140001 ], [ -90.033319568497006, 29.944852341400001 ], [ -90.033243368056006, 29.944837992227001 ], [ -90.033168254386993, 29.944818747938001 ], [ -90.033094541606005, 29.944794689011001 ], [ -90.033001375422003, 29.944765758468002 ], [ -90.032881931564006, 29.944722921918999 ], [ -90.032622668816998, 29.944623713079 ], [ -90.032617205061001, 29.944621650367999 ], [ -90.030016892285005, 29.943616178546002 ], [ -90.029782270235998, 29.943524931214 ], [ -90.029711802248997, 29.943497751416 ] ], [ [ -90.036625274898, 29.948069036345998 ], [ -90.036628892474994, 29.94801696687 ], [ -90.036630398835996, 29.947995231219998 ], [ -90.036806093633999, 29.945504752177001 ], [ -90.036833811961998, 29.945125468633002 ], [ -90.036829317805001, 29.944965333338001 ] ], [ [ -90.036829317805001, 29.944965333338001 ], [ -90.036718399136006, 29.944912859386999 ], [ -90.036612081376006, 29.944909331569001 ], [ -90.035810382413004, 29.944866862182 ], [ -90.035607414553994, 29.944855594492999 ], [ -90.035520728308995, 29.944850703050001 ], [ -90.035456405784998, 29.944847074258 ], [ -90.034710725099998, 29.944811254266 ], [ -90.034627142085, 29.944804652744999 ], [ -90.034156237611995, 29.944779212918998 ], [ -90.033423031045004, 29.944734263303001 ], [ -90.033360517457993, 29.944724485702999 ], [ -90.033328145712005, 29.944717612291999 ], [ -90.033215239599997, 29.944691093138999 ], [ -90.033103286813997, 29.944660800745002 ], [ -90.033018565522994, 29.944633053143999 ], [ -90.032906085133007, 29.944592075185 ], [ -90.032791720589998, 29.944548022252999 ], [ -90.032693408914994, 29.944508124712002 ], [ -90.032627096585003, 29.944483015277999 ], [ -90.029846880906007, 29.943416316596998 ], [ -90.029767983854995, 29.943385977704999 ] ], [ [ -90.029645209733999, 29.943338763246 ], [ -90.027886152245998, 29.942662304136999 ], [ -90.027756872081994, 29.942612583791 ], [ -90.027696844459996, 29.942589410901999 ], [ -90.027569012444005, 29.942540061142001 ], [ -90.027410941452999, 29.942480169624002 ], [ -90.027351128795004, 29.942457507352 ], [ -90.027295583885007, 29.942436464031999 ], [ -90.027206861074006, 29.942402849055998 ], [ -90.026664587030993, 29.942190645621999 ], [ -90.026631589483003, 29.942177566992001 ] ], [ [ -90.029590391661003, 29.943450928114999 ], [ -90.029535912559993, 29.943429916555001 ], [ -90.028078911734994, 29.942870716394001 ], [ -90.027868203330996, 29.942797986687001 ], [ -90.027652908928005, 29.942709093676999 ], [ -90.027563596839002, 29.942673365312999 ], [ -90.027403102213995, 29.942609164116 ], [ -90.027287239111004, 29.942562815599999 ], [ -90.026700219378995, 29.942345396402001 ], [ -90.026569881368005, 29.942292164771999 ] ], [ [ -90.026569881368005, 29.942292164771999 ], [ -90.026598940913999, 29.942238198854 ], [ -90.026631589483003, 29.942177566992001 ] ], [ [ -90.026631589483003, 29.942177566992001 ], [ -90.026439585348996, 29.942101455833999 ], [ -90.026296070439003, 29.942044572139 ], [ -90.025872207450007, 29.941876559986 ], [ -90.025673723229005, 29.941797881799001 ], [ -90.025538445551007, 29.941792939549 ] ], [ [ -90.026569881368005, 29.942292164771999 ], [ -90.026378893892996, 29.942214161058001 ], [ -90.026249724531993, 29.942161404301 ], [ -90.025866368809005, 29.94198753421 ], [ -90.025641226765998, 29.941885425121001 ], [ -90.025538445551007, 29.941792939549 ] ], [ [ -90.025538445551007, 29.941792939549 ], [ -90.024732291621007, 29.941455561177001 ], [ -90.024413397939, 29.941329874569998 ] ], [ [ -90.019247707586999, 29.939036600362002 ], [ -90.019149413288005, 29.938998268298999 ], [ -90.017902590884006, 29.938443577070998 ], [ -90.017738960453002, 29.938379135268001 ], [ -90.017270924029006, 29.938174313642001 ], [ -90.016528716620996, 29.937849510143 ], [ -90.016376982584006, 29.937787349804001 ], [ -90.014603258614997, 29.937001704911001 ], [ -90.013706102458002, 29.936607946243999 ], [ -90.013511982880004, 29.936518757275 ], [ -90.013419348640994, 29.936475571795999 ], [ -90.012980259231, 29.936285499257 ], [ -90.012773942384001, 29.936196084159 ], [ -90.012362819992006, 29.936017903166 ] ], [ [ -90.003638168631994, 29.932160306078 ], [ -90.003138709590999, 29.931944266375002 ], [ -90.003024906438995, 29.931889962631999 ], [ -90.002987741827994, 29.931872229890999 ], [ -90.002934342583004, 29.931846749935001 ], [ -90.002826064565994, 29.931795083307001 ], [ -90.002822281963006, 29.931793454876999 ], [ -89.992999981566996, 29.927460760460001 ], [ -89.992839998039003, 29.927389411059998 ], [ -89.992609948745994, 29.927286817751 ], [ -89.992600802105997, 29.927283289325999 ], [ -89.992339006519003, 29.92718228124 ], [ -89.992059747151004, 29.927057717653 ], [ -89.991906016228995, 29.926989145505001 ] ], [ [ -89.986380178610005, 29.924545937819001 ], [ -89.986028522949994, 29.924385080707001 ], [ -89.985903066423006, 29.924329652371998 ] ], [ [ -89.985903066423006, 29.924329652371998 ], [ -89.985698584781005, 29.924204078186001 ], [ -89.985547112674993, 29.924121044062002 ], [ -89.985413864660003, 29.924047345087999 ], [ -89.985230820067002, 29.923952120130998 ], [ -89.985121433228002, 29.923901599154998 ], [ -89.985000350454001, 29.923845672334 ], [ -89.984883843475998, 29.923793378523001 ], [ -89.984715350087001, 29.923713558909999 ], [ -89.984661154408997, 29.923689334163001 ], [ -89.984403066704999, 29.923584440477999 ] ], [ [ -89.985903066423006, 29.924329652371998 ], [ -89.985670802919998, 29.924268779649999 ], [ -89.985421184730001, 29.924180910909001 ], [ -89.985101149670001, 29.924062086884 ], [ -89.985001842757995, 29.924025218459999 ], [ -89.984655245200003, 29.923880496582001 ], [ -89.984406514127002, 29.923779330116002 ] ], [ [ -89.978563444225998, 29.921209341649998 ], [ -89.978475664933995, 29.92117229726 ], [ -89.978393832289996, 29.92113687714 ], [ -89.978187993990005, 29.921042970681999 ], [ -89.977767448036005, 29.920859495356002 ], [ -89.977693682482993, 29.920827456737999 ], [ -89.977682895523003, 29.920822768806001 ], [ -89.977600362285997, 29.920786921550999 ], [ -89.977282614478, 29.920647769868999 ], [ -89.976887689551006, 29.920470767640001 ], [ -89.976912170443995, 29.920282335681001 ], [ -89.976999445798, 29.920317573851001 ], [ -89.977317406335999, 29.920458986187001 ], [ -89.977628334111998, 29.920594156206 ], [ -89.977710013668002, 29.920630888034001 ], [ -89.977799829874002, 29.920671276507001 ], [ -89.978173055184001, 29.920833242179 ], [ -89.978395810647996, 29.920925142788999 ], [ -89.978499865450999, 29.920977891642 ], [ -89.978580870011001, 29.921015842879999 ], [ -89.978702399106993, 29.921069753809999 ] ] ] } } -] -} +{"type":"FeatureCollection","name":"routes","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"route_id":"1","agency_id":"1","route_short_name":"1","route_long_name":"Algiers Point Ferry","route_type":"4","route_color":"#00ffff","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.063391","29.949821"],["-90.055998","29.953127"]]},{"type":"LineString","coordinates":[["-90.055998","29.953127"],["-90.056099","29.953081"],["-90.056201","29.953036"],["-90.056302","29.952990"],["-90.056403","29.952945"],["-90.056505","29.952899"],["-90.056606","29.952854"],["-90.056708","29.952808"],["-90.056809","29.952762"],["-90.056958","29.952695"],["-90.057108","29.952627"],["-90.057258","29.952559"],["-90.057407","29.952491"],["-90.057557","29.952423"],["-90.057706","29.952355"],["-90.057856","29.952287"],["-90.058006","29.952220"],["-90.058155","29.952152"],["-90.058305","29.952084"],["-90.058454","29.952016"],["-90.058604","29.951948"],["-90.058753","29.951880"],["-90.058903","29.951812"],["-90.059053","29.951745"],["-90.059202","29.951677"],["-90.059352","29.951609"],["-90.059501","29.951541"],["-90.059651","29.951473"],["-90.059800","29.951405"],["-90.059950","29.951338"],["-90.060100","29.951270"],["-90.060249","29.951202"],["-90.060399","29.951134"],["-90.060548","29.951066"],["-90.060698","29.950998"],["-90.060847","29.950930"],["-90.060997","29.950863"],["-90.061147","29.950795"],["-90.061296","29.950727"],["-90.061446","29.950659"],["-90.061595","29.950591"],["-90.061708","29.950543"],["-90.061820","29.950495"],["-90.061932","29.950447"],["-90.062044","29.950399"],["-90.062156","29.950351"],["-90.062269","29.950302"],["-90.062381","29.950254"],["-90.062493","29.950206"],["-90.062605","29.950158"],["-90.062718","29.950110"],["-90.062830","29.950062"],["-90.062942","29.950014"],["-90.063054","29.949965"],["-90.063167","29.949917"],["-90.063279","29.949869"],["-90.063391","29.949821"]]},{"type":"MultiPoint","coordinates":[["-90.063391","29.949821"],["-90.055998","29.953127"]]},{"type":"LineString","coordinates":[["-90.063391","29.949821"],["-90.063191","29.949838"],["-90.062990","29.949854"],["-90.062790","29.949871"],["-90.062589","29.949888"],["-90.062382","29.949926"],["-90.062176","29.949965"],["-90.061969","29.950003"],["-90.061763","29.950041"],["-90.061573","29.950121"],["-90.061383","29.950201"],["-90.061193","29.950281"],["-90.061003","29.950361"],["-90.060858","29.950477"],["-90.060713","29.950593"],["-90.060568","29.950710"],["-90.060423","29.950826"],["-90.060279","29.950942"],["-90.060134","29.951058"],["-90.059989","29.951174"],["-90.059844","29.951291"],["-90.059699","29.951407"],["-90.059554","29.951523"],["-90.059410","29.951639"],["-90.059265","29.951755"],["-90.059120","29.951872"],["-90.058975","29.951988"],["-90.058830","29.952104"],["-90.058685","29.952220"],["-90.058545","29.952315"],["-90.058404","29.952411"],["-90.058263","29.952506"],["-90.058122","29.952601"],["-90.057981","29.952697"],["-90.057840","29.952792"],["-90.057700","29.952887"],["-90.057559","29.952982"],["-90.057358","29.953013"],["-90.057157","29.953043"],["-90.056955","29.953073"],["-90.056754","29.953103"],["-90.056565","29.953109"],["-90.056376","29.953115"],["-90.056187","29.953121"],["-90.055998","29.953127"]]}]}},{"type":"Feature","properties":{"route_id":"103","agency_id":"1","route_short_name":"103","route_long_name":"General Meyer Local","route_type":"3","route_color":"#19a6fd","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.041696","29.935302"],["-90.041929","29.930776"],["-89.982893","29.923220"],["-89.985033","29.924069"],["-89.987890","29.925327"],["-89.990800","29.926685"],["-89.992202","29.927194"],["-89.995548","29.928676"],["-89.997491","29.929524"],["-89.999580","29.930453"],["-90.001273","29.931203"],["-90.002988","29.931953"],["-90.005410","29.933142"],["-90.007789","29.934079"],["-90.008745","29.934534"],["-90.009992","29.935088"],["-90.011458","29.935731"],["-90.013308","29.936543"],["-90.014492","29.937052"],["-90.016280","29.937855"],["-90.017787","29.938516"],["-90.020188","29.939578"],["-90.022423","29.940623"],["-90.025124","29.941621"],["-90.027183","29.942603"],["-90.029427","29.943468"],["-90.031267","29.944163"],["-90.033583","29.944937"],["-90.036674","29.945058"],["-90.041413","29.940062"],["-90.041483","29.937772"],["-90.041818","29.933048"],["-90.045697","29.942143"],["-90.047429","29.942189"],["-90.049545","29.942296"],["-90.053661","29.954274"],["-90.053680","29.950461"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.052243","29.944447"],["-90.052127","29.942366"],["-90.075299","29.946626"],["-90.055302","29.952968"],["-90.075384","29.950864"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.050706","29.942228"],["-90.038445","29.948349"],["-90.040489","29.948448"],["-90.043497","29.941810"],["-90.041236","29.941640"]]},{"type":"LineString","coordinates":[["-89.982893","29.923220"],["-89.982940","29.923140"],["-89.983040","29.923180"],["-89.983150","29.923230"],["-89.983260","29.923280"],["-89.983370","29.923330"],["-89.983480","29.923380"],["-89.983602","29.923433"],["-89.983725","29.923485"],["-89.983847","29.923538"],["-89.983970","29.923590"],["-89.984107","29.923645"],["-89.984245","29.923700"],["-89.984382","29.923755"],["-89.984520","29.923810"],["-89.984652","29.923868"],["-89.984785","29.923925"],["-89.984917","29.923983"],["-89.985050","29.924040"],["-89.985033","29.924069"],["-89.985050","29.924040"],["-89.985090","29.924060"],["-89.985227","29.924110"],["-89.985365","29.924160"],["-89.985502","29.924210"],["-89.985640","29.924260"],["-89.985690","29.924280"],["-89.985850","29.924300"],["-89.985982","29.924360"],["-89.986115","29.924420"],["-89.986247","29.924480"],["-89.986380","29.924540"],["-89.986512","29.924600"],["-89.986645","29.924660"],["-89.986777","29.924720"],["-89.986910","29.924780"],["-89.987040","29.924836"],["-89.987170","29.924893"],["-89.987300","29.924949"],["-89.987430","29.925005"],["-89.987560","29.925061"],["-89.987690","29.925118"],["-89.987820","29.925174"],["-89.987950","29.925230"],["-89.987890","29.925327"],["-89.987950","29.925230"],["-89.988020","29.925260"],["-89.988150","29.925318"],["-89.988280","29.925375"],["-89.988410","29.925433"],["-89.988540","29.925490"],["-89.988670","29.925548"],["-89.988800","29.925605"],["-89.988930","29.925663"],["-89.989060","29.925720"],["-89.989174","29.925771"],["-89.989289","29.925823"],["-89.989403","29.925874"],["-89.989517","29.925925"],["-89.989632","29.925976"],["-89.989746","29.926028"],["-89.989861","29.926079"],["-89.989975","29.926130"],["-89.990089","29.926181"],["-89.990204","29.926233"],["-89.990318","29.926284"],["-89.990432","29.926335"],["-89.990547","29.926386"],["-89.990661","29.926438"],["-89.990776","29.926489"],["-89.990890","29.926540"],["-89.990840","29.926700"],["-89.990800","29.926685"],["-89.990840","29.926700"],["-89.990890","29.926540"],["-89.991000","29.926580"],["-89.991134","29.926639"],["-89.991267","29.926698"],["-89.991401","29.926756"],["-89.991535","29.926815"],["-89.991669","29.926874"],["-89.991802","29.926933"],["-89.991936","29.926991"],["-89.992070","29.927050"],["-89.992202","29.927194"],["-89.992240","29.927140"],["-89.992300","29.927170"],["-89.992435","29.927225"],["-89.992570","29.927280"],["-89.992755","29.927363"],["-89.992940","29.927445"],["-89.993125","29.927528"],["-89.993310","29.927610"],["-89.993422","29.927660"],["-89.993535","29.927710"],["-89.993647","29.927760"],["-89.993760","29.927810"],["-89.993886","29.927866"],["-89.994012","29.927923"],["-89.994139","29.927979"],["-89.994265","29.928035"],["-89.994391","29.928091"],["-89.994517","29.928148"],["-89.994644","29.928204"],["-89.994770","29.928260"],["-89.994871","29.928305"],["-89.994972","29.928350"],["-89.995074","29.928395"],["-89.995175","29.928440"],["-89.995276","29.928485"],["-89.995377","29.928530"],["-89.995479","29.928575"],["-89.995580","29.928620"],["-89.995548","29.928676"],["-89.995580","29.928620"],["-89.995730","29.928690"],["-89.995910","29.928770"],["-89.996100","29.928850"],["-89.996210","29.928898"],["-89.996320","29.928945"],["-89.996430","29.928993"],["-89.996540","29.929040"],["-89.996650","29.929090"],["-89.996750","29.929135"],["-89.996850","29.929180"],["-89.997020","29.929250"],["-89.997190","29.929320"],["-89.997360","29.929390"],["-89.997550","29.929480"],["-89.997491","29.929524"],["-89.997550","29.929480"],["-89.997667","29.929531"],["-89.997785","29.929583"],["-89.997902","29.929634"],["-89.998020","29.929685"],["-89.998137","29.929736"],["-89.998255","29.929788"],["-89.998372","29.929839"],["-89.998490","29.929890"],["-89.998626","29.929950"],["-89.998762","29.930010"],["-89.998899","29.930070"],["-89.999035","29.930130"],["-89.999171","29.930190"],["-89.999307","29.930250"],["-89.999444","29.930310"],["-89.999620","29.930390"],["-89.999580","29.930453"],["-89.999620","29.930390"],["-89.999767","29.930456"],["-89.999915","29.930523"],["-90.000062","29.930589"],["-90.000210","29.930655"],["-90.000357","29.930721"],["-90.000505","29.930788"],["-90.000652","29.930854"],["-90.000800","29.930920"],["-90.000927","29.930975"],["-90.001055","29.931030"],["-90.001182","29.931085"],["-90.001310","29.931140"],["-90.001273","29.931203"],["-90.001310","29.931140"],["-90.001360","29.931170"],["-90.001530","29.931245"],["-90.001700","29.931320"],["-90.001859","29.931390"],["-90.002017","29.931460"],["-90.002176","29.931530"],["-90.002335","29.931600"],["-90.002494","29.931670"],["-90.002652","29.931740"],["-90.002811","29.931810"],["-90.002970","29.931880"],["-90.003020","29.931900"],["-90.002988","29.931953"],["-90.003020","29.931900"],["-90.003140","29.931953"],["-90.003260","29.932005"],["-90.003380","29.932058"],["-90.003500","29.932110"],["-90.003620","29.932163"],["-90.003740","29.932215"],["-90.003860","29.932268"],["-90.003980","29.932320"],["-90.004080","29.932363"],["-90.004180","29.932405"],["-90.004280","29.932448"],["-90.004380","29.932490"],["-90.004480","29.932533"],["-90.004580","29.932575"],["-90.004680","29.932618"],["-90.004780","29.932660"],["-90.004880","29.932700"],["-90.005050","29.932783"],["-90.005220","29.932865"],["-90.005390","29.932948"],["-90.005560","29.933030"],["-90.005510","29.933170"],["-90.005410","29.933142"],["-90.005510","29.933170"],["-90.005560","29.933030"],["-90.005700","29.933085"],["-90.005840","29.933140"],["-90.006035","29.933220"],["-90.006230","29.933300"],["-90.006365","29.933370"],["-90.006500","29.933440"],["-90.006650","29.933505"],["-90.006800","29.933570"],["-90.006950","29.933635"],["-90.007100","29.933700"],["-90.007260","29.933770"],["-90.007395","29.933825"],["-90.007530","29.933880"],["-90.007680","29.933950"],["-90.007830","29.934020"],["-90.007789","29.934079"],["-90.007830","29.934020"],["-90.007980","29.934080"],["-90.008080","29.934130"],["-90.008257","29.934208"],["-90.008435","29.934285"],["-90.008612","29.934363"],["-90.008790","29.934440"],["-90.008790","29.934530"],["-90.008745","29.934534"],["-90.008790","29.934530"],["-90.008790","29.934440"],["-90.008950","29.934510"],["-90.009095","29.934575"],["-90.009240","29.934640"],["-90.009385","29.934705"],["-90.009530","29.934770"],["-90.009640","29.934820"],["-90.009750","29.934870"],["-90.009915","29.934940"],["-90.010080","29.935010"],["-90.010080","29.935090"],["-90.009992","29.935088"],["-90.010080","29.935090"],["-90.010080","29.935010"],["-90.010255","29.935090"],["-90.010430","29.935170"],["-90.010605","29.935250"],["-90.010780","29.935330"],["-90.010905","29.935390"],["-90.011030","29.935450"],["-90.011147","29.935500"],["-90.011265","29.935550"],["-90.011382","29.935600"],["-90.011500","29.935650"],["-90.011458","29.935731"],["-90.011500","29.935650"],["-90.011550","29.935670"],["-90.011651","29.935715"],["-90.011752","29.935760"],["-90.011854","29.935805"],["-90.011955","29.935850"],["-90.012056","29.935895"],["-90.012157","29.935940"],["-90.012259","29.935985"],["-90.012360","29.936030"],["-90.012540","29.936105"],["-90.012720","29.936180"],["-90.012835","29.936230"],["-90.012950","29.936280"],["-90.013070","29.936335"],["-90.013190","29.936390"],["-90.013310","29.936445"],["-90.013430","29.936500"],["-90.013380","29.936580"],["-90.013308","29.936543"],["-90.013503","29.936604"],["-90.013698","29.936666"],["-90.013779","29.936691"],["-90.013958","29.936782"],["-90.014137","29.936873"],["-90.014316","29.936963"],["-90.014492","29.937052"],["-90.014688","29.937111"],["-90.014884","29.937170"],["-90.014949","29.937189"],["-90.015129","29.937279"],["-90.015309","29.937369"],["-90.015488","29.937459"],["-90.015668","29.937549"],["-90.015848","29.937639"],["-90.016027","29.937729"],["-90.016207","29.937819"],["-90.016280","29.937855"],["-90.016478","29.937909"],["-90.016676","29.937964"],["-90.016738","29.937981"],["-90.016917","29.938073"],["-90.017096","29.938164"],["-90.017275","29.938255"],["-90.017454","29.938346"],["-90.017632","29.938437"],["-90.017787","29.938516"],["-90.017991","29.938551"],["-90.018173","29.938582"],["-90.018357","29.938665"],["-90.018410","29.938689"],["-90.018594","29.938772"],["-90.018778","29.938856"],["-90.018962","29.938939"],["-90.019119","29.939010"],["-90.019304","29.939092"],["-90.019488","29.939175"],["-90.019661","29.939274"],["-90.019834","29.939374"],["-90.020007","29.939474"],["-90.020188","29.939578"],["-90.020260","29.939580"],["-90.020260","29.939490"],["-90.020402","29.939553"],["-90.020545","29.939615"],["-90.020687","29.939678"],["-90.020830","29.939740"],["-90.020972","29.939803"],["-90.021115","29.939865"],["-90.021257","29.939928"],["-90.021400","29.939990"],["-90.021542","29.940055"],["-90.021685","29.940120"],["-90.021827","29.940185"],["-90.021970","29.940250"],["-90.022112","29.940315"],["-90.022255","29.940380"],["-90.022397","29.940445"],["-90.022540","29.940510"],["-90.022510","29.940580"],["-90.022430","29.940580"],["-90.022423","29.940623"],["-90.022430","29.940580"],["-90.022510","29.940580"],["-90.022540","29.940510"],["-90.022662","29.940563"],["-90.022785","29.940615"],["-90.022907","29.940668"],["-90.023030","29.940720"],["-90.023152","29.940773"],["-90.023275","29.940825"],["-90.023397","29.940878"],["-90.023520","29.940930"],["-90.023630","29.940980"],["-90.023740","29.941030"],["-90.023870","29.941088"],["-90.024000","29.941145"],["-90.024130","29.941203"],["-90.024260","29.941260"],["-90.024400","29.941320"],["-90.024512","29.941365"],["-90.024625","29.941410"],["-90.024737","29.941455"],["-90.024850","29.941500"],["-90.024920","29.941530"],["-90.024960","29.941580"],["-90.025020","29.941610"],["-90.025124","29.941621"],["-90.025110","29.941650"],["-90.025170","29.941670"],["-90.025250","29.941710"],["-90.025375","29.941765"],["-90.025500","29.941820"],["-90.025685","29.941900"],["-90.025870","29.941980"],["-90.026000","29.942050"],["-90.026140","29.942120"],["-90.026280","29.942190"],["-90.026435","29.942245"],["-90.026590","29.942300"],["-90.026745","29.942355"],["-90.026900","29.942410"],["-90.027060","29.942475"],["-90.027220","29.942540"],["-90.027183","29.942603"],["-90.027220","29.942540"],["-90.027280","29.942560"],["-90.027380","29.942600"],["-90.027520","29.942650"],["-90.027650","29.942700"],["-90.027763","29.942744"],["-90.027876","29.942788"],["-90.027989","29.942831"],["-90.028102","29.942875"],["-90.028216","29.942919"],["-90.028329","29.942963"],["-90.028442","29.943006"],["-90.028555","29.943050"],["-90.028668","29.943094"],["-90.028781","29.943138"],["-90.028894","29.943181"],["-90.029007","29.943225"],["-90.029121","29.943269"],["-90.029234","29.943313"],["-90.029347","29.943356"],["-90.029460","29.943400"],["-90.029427","29.943468"],["-90.029460","29.943400"],["-90.029570","29.943440"],["-90.029680","29.943480"],["-90.029785","29.943521"],["-90.029890","29.943563"],["-90.029995","29.943604"],["-90.030100","29.943645"],["-90.030205","29.943686"],["-90.030310","29.943728"],["-90.030415","29.943769"],["-90.030520","29.943810"],["-90.030645","29.943855"],["-90.030770","29.943900"],["-90.030970","29.943970"],["-90.031050","29.944000"],["-90.031110","29.944020"],["-90.031230","29.944070"],["-90.031350","29.944120"],["-90.031267","29.944163"],["-90.031350","29.944120"],["-90.031500","29.944170"],["-90.031690","29.944245"],["-90.031880","29.944320"],["-90.032070","29.944400"],["-90.032202","29.944450"],["-90.032335","29.944500"],["-90.032467","29.944550"],["-90.032600","29.944600"],["-90.032765","29.944665"],["-90.032930","29.944730"],["-90.033070","29.944770"],["-90.033200","29.944810"],["-90.033320","29.944840"],["-90.033330","29.944840"],["-90.033460","29.944850"],["-90.033590","29.944860"],["-90.033583","29.944937"],["-90.033590","29.944860"],["-90.033690","29.944870"],["-90.033805","29.944876"],["-90.033920","29.944883"],["-90.034035","29.944889"],["-90.034150","29.944895"],["-90.034265","29.944901"],["-90.034380","29.944908"],["-90.034495","29.944914"],["-90.034610","29.944920"],["-90.034721","29.944925"],["-90.034832","29.944930"],["-90.034944","29.944935"],["-90.035055","29.944940"],["-90.035166","29.944945"],["-90.035277","29.944950"],["-90.035389","29.944955"],["-90.035500","29.944960"],["-90.035625","29.944970"],["-90.035750","29.944980"],["-90.035840","29.944980"],["-90.036000","29.944990"],["-90.036160","29.945000"],["-90.036290","29.945010"],["-90.036485","29.945020"],["-90.036680","29.945030"],["-90.036674","29.945058"],["-90.036818","29.945143"],["-90.036811","29.945239"],["-90.036805","29.945336"],["-90.036798","29.945432"],["-90.036791","29.945528"],["-90.036784","29.945624"],["-90.036778","29.945720"],["-90.036771","29.945816"],["-90.036764","29.945913"],["-90.036758","29.946009"],["-90.036751","29.946105"],["-90.036744","29.946201"],["-90.036737","29.946297"],["-90.036731","29.946393"],["-90.036724","29.946489"],["-90.036717","29.946586"],["-90.036711","29.946682"],["-90.036704","29.946778"],["-90.036697","29.946874"],["-90.036691","29.946970"],["-90.036684","29.947066"],["-90.036677","29.947163"],["-90.036670","29.947259"],["-90.036664","29.947355"],["-90.036657","29.947451"],["-90.036650","29.947547"],["-90.036644","29.947643"],["-90.036637","29.947740"],["-90.036630","29.947836"],["-90.036623","29.947932"],["-90.036617","29.948028"],["-90.036610","29.948124"],["-90.036603","29.948220"],["-90.036823","29.948231"],["-90.037043","29.948242"],["-90.037263","29.948253"],["-90.037483","29.948265"],["-90.037703","29.948276"],["-90.037923","29.948287"],["-90.038143","29.948298"],["-90.038363","29.948309"],["-90.038445","29.948349"],["-90.038650","29.948323"],["-90.038837","29.948299"],["-90.039044","29.948308"],["-90.039252","29.948316"],["-90.039459","29.948325"],["-90.039570","29.948330"],["-90.039777","29.948341"],["-90.039984","29.948352"],["-90.040192","29.948363"],["-90.040389","29.948419"],["-90.040489","29.948448"],["-90.040521","29.948549"],["-90.040512","29.948676"],["-90.040503","29.948803"],["-90.040495","29.948931"],["-90.040486","29.949058"],["-90.040477","29.949186"],["-90.040468","29.949313"],["-90.040460","29.949440"],["-90.040451","29.949568"],["-90.040442","29.949695"],["-90.040434","29.949822"],["-90.040425","29.949950"],["-90.040416","29.950077"],["-90.040407","29.950205"],["-90.040399","29.950332"],["-90.040390","29.950459"],["-90.040381","29.950587"],["-90.040375","29.950699"],["-90.040369","29.950811"],["-90.040363","29.950923"],["-90.040357","29.951034"],["-90.040351","29.951146"],["-90.040345","29.951258"],["-90.040339","29.951370"],["-90.040333","29.951482"],["-90.040327","29.951594"],["-90.040321","29.951706"],["-90.040315","29.951818"],["-90.040309","29.951930"],["-90.040303","29.952042"],["-90.040297","29.952154"],["-90.040291","29.952266"],["-90.040285","29.952378"],["-90.040269","29.952567"],["-90.040254","29.952756"],["-90.040238","29.952945"],["-90.040222","29.953134"],["-90.040206","29.953323"],["-90.040191","29.953512"],["-90.040175","29.953701"],["-90.040159","29.953890"],["-90.040336","29.953932"],["-90.040514","29.953973"],["-90.040691","29.954015"],["-90.040869","29.954056"],["-90.041046","29.954098"],["-90.041223","29.954139"],["-90.041401","29.954181"],["-90.041578","29.954222"],["-90.041740","29.954257"],["-90.041902","29.954291"],["-90.042064","29.954326"],["-90.042226","29.954361"],["-90.042388","29.954396"],["-90.042550","29.954430"],["-90.042712","29.954465"],["-90.042874","29.954500"],["-90.043089","29.954536"],["-90.043303","29.954572"],["-90.043518","29.954608"],["-90.043733","29.954644"],["-90.043848","29.954668"],["-90.043963","29.954692"],["-90.044078","29.954716"],["-90.044193","29.954740"],["-90.044308","29.954765"],["-90.044424","29.954789"],["-90.044539","29.954813"],["-90.044654","29.954837"],["-90.044670","29.954770"],["-90.044780","29.954790"],["-90.044910","29.954805"],["-90.045040","29.954820"],["-90.045170","29.954835"],["-90.045300","29.954850"],["-90.045412","29.954865"],["-90.045525","29.954880"],["-90.045637","29.954895"],["-90.045750","29.954910"],["-90.045905","29.954930"],["-90.046060","29.954950"],["-90.046255","29.954970"],["-90.046450","29.954990"],["-90.046470","29.954990"],["-90.046459","29.955073"],["-90.046470","29.954990"],["-90.046670","29.955010"],["-90.046720","29.955010"],["-90.046854","29.955018"],["-90.046987","29.955025"],["-90.047121","29.955033"],["-90.047255","29.955040"],["-90.047389","29.955048"],["-90.047522","29.955055"],["-90.047656","29.955063"],["-90.047790","29.955070"],["-90.047935","29.955078"],["-90.048080","29.955085"],["-90.048225","29.955093"],["-90.048370","29.955100"],["-90.048570","29.955100"],["-90.048670","29.955110"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953317"],["-90.055155","29.953215"],["-90.055250","29.953055"],["-90.055302","29.952968"],["-90.055279","29.952789"],["-90.055255","29.952611"],["-90.055250","29.952570"],["-90.055190","29.952500"],["-90.055130","29.952469"],["-90.054927","29.952430"],["-90.054896","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054133","29.951116"],["-90.054026","29.950962"],["-90.053920","29.950807"],["-90.053813","29.950653"],["-90.053706","29.950499"],["-90.053680","29.950461"],["-90.053516","29.950351"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052978","29.949746"],["-90.052887","29.949637"],["-90.052796","29.949529"],["-90.052705","29.949421"],["-90.052614","29.949312"],["-90.052523","29.949204"],["-90.052432","29.949095"],["-90.052341","29.948987"],["-90.052250","29.948843"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.052208","29.945259"],["-90.052216","29.945080"],["-90.052223","29.944900"],["-90.052231","29.944720"],["-90.052239","29.944540"],["-90.052243","29.944447"],["-90.052168","29.944279"],["-90.052127","29.944189"],["-90.052115","29.944009"],["-90.052103","29.943830"],["-90.052091","29.943650"],["-90.052079","29.943471"],["-90.052070","29.943330"],["-90.052081","29.943150"],["-90.052091","29.942971"],["-90.052102","29.942791"],["-90.052112","29.942611"],["-90.052123","29.942432"],["-90.052127","29.942366"],["-90.051928","29.942313"],["-90.051802","29.942280"],["-90.051595","29.942291"],["-90.051388","29.942301"],["-90.051180","29.942311"],["-90.050977","29.942275"],["-90.050773","29.942240"],["-90.050706","29.942228"],["-90.050618","29.942288"],["-90.050529","29.942349"],["-90.050323","29.942358"],["-90.050116","29.942368"],["-90.049910","29.942377"],["-90.049743","29.942385"],["-90.049575","29.942394"],["-90.049545","29.942296"],["-90.049487","29.942383"],["-90.049360","29.942377"],["-90.049234","29.942371"],["-90.049108","29.942365"],["-90.048981","29.942358"],["-90.048855","29.942352"],["-90.048728","29.942346"],["-90.048602","29.942339"],["-90.048476","29.942333"],["-90.048349","29.942327"],["-90.048223","29.942320"],["-90.048096","29.942314"],["-90.047970","29.942308"],["-90.047843","29.942301"],["-90.047717","29.942295"],["-90.047591","29.942289"],["-90.047464","29.942282"],["-90.047429","29.942189"],["-90.047384","29.942275"],["-90.047178","29.942265"],["-90.046973","29.942255"],["-90.046768","29.942245"],["-90.046563","29.942235"],["-90.046357","29.942224"],["-90.046152","29.942214"],["-90.045969","29.942205"],["-90.045786","29.942196"],["-90.045697","29.942143"],["-90.045515","29.942194"],["-90.045388","29.942184"],["-90.045260","29.942173"],["-90.045133","29.942163"],["-90.045006","29.942152"],["-90.044878","29.942142"],["-90.044751","29.942131"],["-90.044623","29.942121"],["-90.044496","29.942110"],["-90.044350","29.942071"],["-90.044204","29.942032"],["-90.044058","29.941992"],["-90.043912","29.941953"],["-90.043808","29.941917"],["-90.043704","29.941881"],["-90.043601","29.941846"],["-90.043497","29.941810"],["-90.043334","29.941817"],["-90.043172","29.941825"],["-90.043051","29.941813"],["-90.042930","29.941802"],["-90.042809","29.941790"],["-90.042688","29.941779"],["-90.042567","29.941767"],["-90.042446","29.941755"],["-90.042325","29.941744"],["-90.042204","29.941732"],["-90.042083","29.941721"],["-90.041962","29.941709"],["-90.041841","29.941698"],["-90.041720","29.941686"],["-90.041599","29.941675"],["-90.041478","29.941663"],["-90.041357","29.941652"],["-90.041236","29.941640"],["-90.041133","29.941657"],["-90.041148","29.941470"],["-90.041163","29.941283"],["-90.041177","29.941096"],["-90.041192","29.940909"],["-90.041207","29.940722"],["-90.041222","29.940535"],["-90.041236","29.940348"],["-90.041251","29.940161"],["-90.041413","29.940062"],["-90.041423","29.939882"],["-90.041433","29.939717"],["-90.041490","29.939560"],["-90.041510","29.939390"],["-90.041510","29.939240"],["-90.041500","29.939110"],["-90.041469","29.939000"],["-90.041433","29.938823"],["-90.041410","29.938710"],["-90.041401","29.938530"],["-90.041397","29.938349"],["-90.041392","29.938168"],["-90.041388","29.937987"],["-90.041384","29.937806"],["-90.041483","29.937772"],["-90.041468","29.937646"],["-90.041454","29.937520"],["-90.041439","29.937395"],["-90.041425","29.937269"],["-90.041433","29.937148"],["-90.041441","29.937028"],["-90.041449","29.936907"],["-90.041457","29.936787"],["-90.041465","29.936666"],["-90.041473","29.936546"],["-90.041481","29.936425"],["-90.041489","29.936304"],["-90.041497","29.936184"],["-90.041505","29.936063"],["-90.041513","29.935943"],["-90.041521","29.935822"],["-90.041529","29.935702"],["-90.041538","29.935581"],["-90.041546","29.935460"],["-90.041554","29.935340"],["-90.041696","29.935302"],["-90.041559","29.935207"],["-90.041566","29.935092"],["-90.041573","29.934976"],["-90.041581","29.934861"],["-90.041588","29.934745"],["-90.041600","29.934580"],["-90.041605","29.934480"],["-90.041610","29.934380"],["-90.041615","29.934278"],["-90.041620","29.934175"],["-90.041625","29.934073"],["-90.041630","29.933970"],["-90.041645","29.933835"],["-90.041660","29.933700"],["-90.041670","29.933520"],["-90.041680","29.933340"],["-90.041690","29.933190"],["-90.041700","29.933040"],["-90.041818","29.933048"],["-90.041700","29.933040"],["-90.041700","29.932960"],["-90.041713","29.932770"],["-90.041725","29.932580"],["-90.041738","29.932390"],["-90.041750","29.932200"],["-90.041763","29.932018"],["-90.041775","29.931835"],["-90.041788","29.931653"],["-90.041800","29.931470"],["-90.041803","29.931363"],["-90.041805","29.931255"],["-90.041808","29.931148"],["-90.041810","29.931040"],["-90.041815","29.930905"],["-90.041820","29.930770"],["-90.041929","29.930776"],["-90.041820","29.930770"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041845","29.930380"],["-90.041860","29.930200"],["-90.041875","29.930020"],["-90.041890","29.929840"],["-90.041900","29.929710"],["-90.041910","29.929525"],["-90.041920","29.929340"],["-90.041930","29.929200"],["-90.041940","29.929060"],["-90.041950","29.928880"],["-90.041950","29.928730"],["-90.041958","29.928618"],["-90.041965","29.928505"],["-90.041973","29.928393"],["-90.041980","29.928280"],["-90.041988","29.928168"],["-90.041995","29.928055"],["-90.042003","29.927943"],["-90.042010","29.927830"],["-90.042020","29.927685"],["-90.042030","29.927540"],["-90.042030","29.927440"],["-90.042030","29.927350"],["-90.042030","29.927310"],["-90.042040","29.927270"],["-90.042050","29.927160"],["-90.042060","29.927050"],["-90.042068","29.926920"],["-90.042075","29.926790"],["-90.042083","29.926660"],["-90.042090","29.926530"],["-90.042184","29.926584"],["-90.042155","29.926406"],["-90.042126","29.926228"],["-90.042116","29.926163"],["-90.042140","29.925984"],["-90.042145","29.925882"],["-90.042150","29.925780"],["-90.042154","29.925678"],["-90.042159","29.925576"],["-90.042164","29.925474"],["-90.042169","29.925372"],["-90.042174","29.925270"],["-90.042178","29.925168"],["-90.042258","29.925096"],["-90.042195","29.924919"],["-90.042203","29.924800"],["-90.042212","29.924680"],["-90.042220","29.924560"],["-90.042229","29.924441"],["-90.042237","29.924321"],["-90.042246","29.924201"],["-90.042254","29.924081"],["-90.042263","29.923962"],["-90.042271","29.923842"],["-90.042280","29.923722"],["-90.042288","29.923603"],["-90.042297","29.923483"],["-90.042305","29.923363"],["-90.042314","29.923244"],["-90.042322","29.923124"],["-90.042331","29.923004"],["-90.042296","29.922874"],["-90.042362","29.922771"],["-90.042429","29.922667"],["-90.042495","29.922564"],["-90.042561","29.922460"],["-90.042628","29.922357"],["-90.042694","29.922253"],["-90.042760","29.922150"],["-90.042827","29.922047"],["-90.042925","29.921897"],["-90.043023","29.921747"],["-90.043121","29.921597"],["-90.043218","29.921447"],["-90.043296","29.921333"],["-90.043374","29.921219"],["-90.043310","29.921105"],["-90.043245","29.920991"],["-90.043052","29.920917"],["-90.043145","29.920771"],["-90.043239","29.920625"],["-90.043332","29.920479"],["-90.043425","29.920333"],["-90.043518","29.920187"],["-90.043611","29.920041"],["-90.043705","29.919896"],["-90.043798","29.919750"],["-90.043969","29.919847"],["-90.043928","29.919967"],["-90.043886","29.920087"],["-90.043809","29.920200"],["-90.043731","29.920313"],["-90.043654","29.920426"],["-90.043576","29.920539"],["-90.043499","29.920652"],["-90.043422","29.920765"],["-90.043344","29.920878"],["-90.043267","29.920991"],["-90.043103","29.920961"],["-90.042940","29.920931"],["-90.042730","29.920949"],["-90.042675","29.921036"],["-90.042620","29.921122"],["-90.042565","29.921209"],["-90.042510","29.921296"],["-90.042455","29.921382"],["-90.042400","29.921469"],["-90.042345","29.921555"],["-90.042290","29.921642"],["-90.042202","29.921776"],["-90.042114","29.921909"],["-90.042026","29.922043"],["-90.041938","29.922177"],["-90.041850","29.922310"],["-90.041761","29.922444"],["-90.041673","29.922578"],["-90.041585","29.922711"],["-90.041497","29.922845"],["-90.041409","29.922979"],["-90.041320","29.923112"],["-90.041232","29.923246"],["-90.041144","29.923380"],["-90.041056","29.923513"],["-90.040968","29.923647"],["-90.040880","29.923781"],["-90.040779","29.923936"],["-90.040678","29.924091"],["-90.040578","29.924246"],["-90.040477","29.924401"],["-90.040377","29.924557"],["-90.040276","29.924712"],["-90.040175","29.924867"],["-90.040075","29.925022"],["-90.039977","29.925174"],["-90.039879","29.925327"],["-90.039781","29.925479"],["-90.039683","29.925631"],["-90.039585","29.925783"],["-90.039487","29.925936"],["-90.039390","29.926088"],["-90.039292","29.926240"],["-90.039206","29.926398"],["-90.039120","29.926556"],["-90.039034","29.926714"],["-90.038948","29.926872"],["-90.038887","29.927006"],["-90.038825","29.927139"],["-90.038763","29.927272"],["-90.038702","29.927405"],["-90.038640","29.927538"],["-90.038578","29.927671"],["-90.038517","29.927804"],["-90.038455","29.927937"],["-90.038353","29.928065"],["-90.038251","29.928193"],["-90.038181","29.928292"],["-90.038112","29.928390"],["-90.038042","29.928489"],["-90.037972","29.928588"],["-90.037902","29.928709"],["-90.037833","29.928830"],["-90.037796","29.929017"],["-90.037760","29.929204"],["-90.037724","29.929391"],["-90.037688","29.929578"],["-90.037660","29.929690"],["-90.037631","29.929801"],["-90.037603","29.929913"],["-90.037575","29.930025"],["-90.037547","29.930136"],["-90.037519","29.930248"],["-90.037491","29.930359"],["-90.037462","29.930471"],["-90.037420","29.930641"],["-90.037377","29.930810"],["-90.037348","29.930997"],["-90.037319","29.931184"],["-90.037290","29.931372"],["-90.037261","29.931559"],["-90.037296","29.931663"],["-90.037331","29.931768"],["-90.037322","29.931935"],["-90.037312","29.932103"],["-90.037303","29.932270"],["-90.037294","29.932437"],["-90.037284","29.932605"],["-90.037275","29.932772"],["-90.037265","29.932939"],["-90.037256","29.933107"],["-90.037258","29.933249"],["-90.037260","29.933390"],["-90.037262","29.933532"],["-90.037264","29.933674"],["-90.037266","29.933816"],["-90.037268","29.933958"],["-90.037270","29.934099"],["-90.037272","29.934241"],["-90.037294","29.934403"],["-90.037316","29.934566"],["-90.037338","29.934728"],["-90.037360","29.934890"],["-90.037380","29.935010"],["-90.037410","29.935090"],["-90.037420","29.935130"],["-90.037440","29.935200"],["-90.037450","29.935220"],["-90.037480","29.935290"],["-90.037520","29.935390"],["-90.037570","29.935510"],["-90.037610","29.935600"],["-90.037670","29.935700"],["-90.037720","29.935800"],["-90.037770","29.935880"],["-90.037850","29.935990"],["-90.037910","29.936080"],["-90.037980","29.936170"],["-90.038060","29.936270"],["-90.038120","29.936350"],["-90.038200","29.936440"],["-90.038230","29.936480"],["-90.038270","29.936520"],["-90.038360","29.936620"],["-90.038460","29.936710"],["-90.038520","29.936780"],["-90.038610","29.936860"],["-90.038680","29.936920"],["-90.038700","29.936930"],["-90.038790","29.937020"],["-90.038880","29.937090"],["-90.038970","29.937160"],["-90.039060","29.937230"],["-90.039100","29.937270"],["-90.039120","29.937280"],["-90.039250","29.937370"],["-90.039300","29.937410"],["-90.039360","29.937450"],["-90.039470","29.937520"],["-90.039570","29.937580"],["-90.039680","29.937640"],["-90.039770","29.937690"],["-90.039890","29.937760"],["-90.039985","29.937810"],["-90.040080","29.937860"],["-90.040220","29.937920"],["-90.040340","29.937980"],["-90.040390","29.938000"],["-90.040530","29.938050"],["-90.040690","29.938120"],["-90.040800","29.938155"],["-90.040910","29.938190"],["-90.041010","29.938220"],["-90.041120","29.938250"],["-90.041290","29.938300"],["-90.041400","29.938320"],["-90.041510","29.938350"],["-90.041520","29.938350"],["-90.041640","29.938380"],["-90.041790","29.938400"],["-90.041910","29.938420"],["-90.042030","29.938430"],["-90.042150","29.938450"],["-90.042280","29.938460"],["-90.042405","29.938465"],["-90.042530","29.938470"],["-90.042660","29.938480"],["-90.042810","29.938490"],["-90.042960","29.938500"],["-90.043150","29.938510"],["-90.043270","29.938510"],["-90.043340","29.938520"],["-90.043390","29.938520"],["-90.043520","29.938530"],["-90.043710","29.938540"],["-90.043880","29.938550"],["-90.044015","29.938555"],["-90.044150","29.938560"],["-90.044280","29.938570"],["-90.044410","29.938580"],["-90.044540","29.938590"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047310","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052508","29.938928"],["-90.052675","29.938925"],["-90.052843","29.938923"],["-90.053010","29.938920"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053345","29.938918"],["-90.053510","29.938915"],["-90.053675","29.938913"],["-90.053840","29.938910"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060130","29.938860"],["-90.060270","29.938860"],["-90.060340","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060675","29.938860"],["-90.060810","29.938860"],["-90.060955","29.938855"],["-90.061100","29.938850"],["-90.061240","29.938850"],["-90.061380","29.938850"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062360","29.938840"],["-90.062580","29.938840"],["-90.062790","29.938840"],["-90.062918","29.938840"],["-90.063045","29.938840"],["-90.063173","29.938840"],["-90.063300","29.938840"],["-90.063390","29.938840"],["-90.063570","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067675","29.939545"],["-90.067880","29.939610"],["-90.068020","29.939650"],["-90.068150","29.939690"],["-90.068300","29.939730"],["-90.068490","29.939800"],["-90.068670","29.939865"],["-90.068850","29.939930"],["-90.068990","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940200"],["-90.069460","29.940240"],["-90.069620","29.940320"],["-90.069735","29.940385"],["-90.069850","29.940450"],["-90.069960","29.940510"],["-90.070070","29.940570"],["-90.070180","29.940630"],["-90.070290","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070910","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071650","29.941390"],["-90.071750","29.941450"],["-90.071860","29.941500"],["-90.071930","29.941550"],["-90.072050","29.941610"],["-90.072227","29.941703"],["-90.072405","29.941795"],["-90.072582","29.941888"],["-90.072760","29.941980"],["-90.072865","29.942035"],["-90.072970","29.942090"],["-90.073100","29.942160"],["-90.073230","29.942240"],["-90.073380","29.942320"],["-90.073557","29.942420"],["-90.073735","29.942520"],["-90.073912","29.942620"],["-90.074090","29.942720"],["-90.074140","29.942830"],["-90.074280","29.942920"],["-90.074350","29.942970"],["-90.074420","29.943030"],["-90.074470","29.943070"],["-90.074510","29.943100"],["-90.074610","29.943180"],["-90.074710","29.943260"],["-90.074800","29.943335"],["-90.074890","29.943410"],["-90.074980","29.943485"],["-90.075070","29.943560"],["-90.075150","29.943630"],["-90.075255","29.943695"],["-90.075360","29.943760"],["-90.075440","29.943820"],["-90.075480","29.943840"],["-90.075540","29.943880"],["-90.075560","29.943880"],["-90.075660","29.943945"],["-90.075760","29.944010"],["-90.075850","29.944070"],["-90.075860","29.944070"],["-90.075920","29.944110"],["-90.075970","29.944140"],["-90.076040","29.944210"],["-90.076090","29.944270"],["-90.076110","29.944300"],["-90.076170","29.944390"],["-90.076210","29.944470"],["-90.076220","29.944510"],["-90.076240","29.944580"],["-90.076250","29.944680"],["-90.076250","29.944750"],["-90.076250","29.944800"],["-90.076250","29.944810"],["-90.076240","29.944840"],["-90.076220","29.944910"],["-90.076190","29.944970"],["-90.076140","29.945070"],["-90.076080","29.945160"],["-90.076030","29.945230"],["-90.075930","29.945350"],["-90.075920","29.945380"],["-90.075910","29.945400"],["-90.075910","29.945410"],["-90.075910","29.945440"],["-90.075840","29.945590"],["-90.075745","29.945720"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945990"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075470","29.946348"],["-90.075440","29.946445"],["-90.075410","29.946543"],["-90.075380","29.946640"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075080","29.947640"],["-90.075040","29.947770"],["-90.075010","29.947880"],["-90.074975","29.948000"],["-90.074940","29.948120"],["-90.074920","29.948190"],["-90.074883","29.948323"],["-90.074845","29.948455"],["-90.074808","29.948588"],["-90.074770","29.948720"],["-90.074730","29.948840"],["-90.074685","29.949000"],["-90.074640","29.949160"],["-90.074606","29.949271"],["-90.074573","29.949383"],["-90.074539","29.949494"],["-90.074505","29.949605"],["-90.074471","29.949716"],["-90.074438","29.949828"],["-90.074404","29.949939"],["-90.074370","29.950050"],["-90.074330","29.950185"],["-90.074290","29.950320"],["-90.074250","29.950460"],["-90.074362","29.950485"],["-90.074475","29.950510"],["-90.074587","29.950535"],["-90.074700","29.950560"],["-90.074720","29.950560"],["-90.074840","29.950585"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077340","29.951420"],["-90.077310","29.951484"],["-90.077340","29.951420"],["-90.077450","29.951460"],["-90.077600","29.951500"],["-90.077750","29.951550"],["-90.077860","29.951590"],["-90.077975","29.951648"],["-90.078090","29.951705"],["-90.078205","29.951763"],["-90.078320","29.951820"],["-90.078300","29.951880"],["-90.078280","29.951950"],["-90.078245","29.952065"],["-90.078210","29.952180"],["-90.078160","29.952340"],["-90.078130","29.952440"],["-90.078100","29.952540"],["-90.078063","29.952663"],["-90.078025","29.952785"],["-90.077988","29.952908"],["-90.077950","29.953030"],["-90.077916","29.953141"],["-90.077883","29.953253"],["-90.077849","29.953364"],["-90.077815","29.953475"],["-90.077781","29.953586"],["-90.077748","29.953698"],["-90.077714","29.953809"],["-90.077680","29.953920"],["-90.077640","29.954033"],["-90.077600","29.954145"],["-90.077560","29.954258"],["-90.077520","29.954370"],["-90.077490","29.954490"],["-90.077450","29.954640"],["-90.077415","29.954755"],["-90.077380","29.954870"],["-90.077338","29.955000"],["-90.077295","29.955130"],["-90.077253","29.955260"],["-90.077210","29.955390"],["-90.077210","29.955400"],["-90.077180","29.955495"],["-90.077150","29.955590"],["-90.076972","29.955510"],["-90.076795","29.955430"],["-90.076617","29.955350"],["-90.076440","29.955270"],["-90.076327","29.955218"],["-90.076215","29.955165"],["-90.076102","29.955113"],["-90.075990","29.955060"],["-90.075885","29.955015"],["-90.075780","29.954970"],["-90.075670","29.954920"],["-90.075510","29.954850"],["-90.075390","29.954795"],["-90.075270","29.954740"],["-90.075260","29.954730"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.041696","29.935302"],["-90.041929","29.930776"],["-89.982893","29.923220"],["-89.987890","29.925327"],["-89.992202","29.927194"],["-89.995548","29.928676"],["-89.997491","29.929524"],["-89.999580","29.930453"],["-90.001273","29.931203"],["-90.002988","29.931953"],["-90.005410","29.933142"],["-90.007789","29.934079"],["-90.008745","29.934534"],["-90.009992","29.935088"],["-90.011458","29.935731"],["-90.013308","29.936543"],["-90.014492","29.937052"],["-90.016280","29.937855"],["-90.017787","29.938516"],["-90.020188","29.939578"],["-90.022423","29.940623"],["-90.025124","29.941621"],["-90.027183","29.942603"],["-90.029427","29.943468"],["-90.031267","29.944163"],["-90.033583","29.944937"],["-90.036674","29.945058"],["-90.041413","29.940062"],["-90.041483","29.937772"],["-90.041818","29.933048"],["-90.045697","29.942143"],["-90.047429","29.942189"],["-90.049545","29.942296"],["-90.053661","29.954274"],["-90.053680","29.950461"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.052243","29.944447"],["-90.052127","29.942366"],["-90.075299","29.946626"],["-90.055302","29.952968"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.050706","29.942228"],["-90.038445","29.948349"],["-90.040489","29.948448"],["-90.043497","29.941810"],["-90.041236","29.941640"]]},{"type":"LineString","coordinates":[["-89.982893","29.923220"],["-89.983100","29.923235"],["-89.983213","29.923243"],["-89.983398","29.923325"],["-89.983540","29.923389"],["-89.983726","29.923468"],["-89.983909","29.923553"],["-89.984093","29.923637"],["-89.984281","29.923712"],["-89.984470","29.923787"],["-89.984659","29.923862"],["-89.984847","29.923937"],["-89.985036","29.924012"],["-89.985080","29.924029"],["-89.985266","29.924109"],["-89.985452","29.924189"],["-89.985570","29.924240"],["-89.985766","29.924300"],["-89.985930","29.924350"],["-89.986115","29.924431"],["-89.986300","29.924512"],["-89.986485","29.924594"],["-89.986671","29.924675"],["-89.986856","29.924756"],["-89.986910","29.924780"],["-89.987084","29.924877"],["-89.987259","29.924975"],["-89.987433","29.925072"],["-89.987608","29.925170"],["-89.987782","29.925267"],["-89.987890","29.925327"],["-89.988093","29.925363"],["-89.988297","29.925399"],["-89.988361","29.925410"],["-89.988546","29.925491"],["-89.988732","29.925571"],["-89.988918","29.925651"],["-89.989099","29.925729"],["-89.989283","29.925812"],["-89.989467","29.925896"],["-89.989651","29.925979"],["-89.989835","29.926062"],["-89.990018","29.926146"],["-89.990202","29.926229"],["-89.990386","29.926313"],["-89.990570","29.926396"],["-89.990754","29.926479"],["-89.990930","29.926559"],["-89.991116","29.926638"],["-89.991303","29.926717"],["-89.991489","29.926797"],["-89.991675","29.926876"],["-89.991862","29.926955"],["-89.992023","29.927068"],["-89.992184","29.927181"],["-89.992202","29.927194"],["-89.992405","29.927232"],["-89.992507","29.927251"],["-89.992659","29.927330"],["-89.992845","29.927409"],["-89.993032","29.927488"],["-89.993218","29.927567"],["-89.993403","29.927649"],["-89.993589","29.927729"],["-89.993775","29.927809"],["-89.993960","29.927890"],["-89.994145","29.927971"],["-89.994331","29.928052"],["-89.994516","29.928133"],["-89.994701","29.928214"],["-89.994760","29.928240"],["-89.994935","29.928337"],["-89.995110","29.928434"],["-89.995285","29.928530"],["-89.995460","29.928627"],["-89.995548","29.928676"],["-89.995753","29.928704"],["-89.995876","29.928721"],["-89.995920","29.928740"],["-89.996104","29.928824"],["-89.996288","29.928907"],["-89.996471","29.928991"],["-89.996600","29.929050"],["-89.996670","29.929080"],["-89.996846","29.929175"],["-89.997022","29.929270"],["-89.997198","29.929366"],["-89.997374","29.929461"],["-89.997491","29.929524"],["-89.997694","29.929561"],["-89.997800","29.929580"],["-89.997985","29.929661"],["-89.998171","29.929741"],["-89.998357","29.929822"],["-89.998490","29.929880"],["-89.998674","29.929963"],["-89.998859","29.930045"],["-89.999043","29.930128"],["-89.999228","29.930210"],["-89.999390","29.930322"],["-89.999552","29.930434"],["-89.999580","29.930453"],["-89.999781","29.930496"],["-89.999940","29.930530"],["-90.000125","29.930611"],["-90.000311","29.930691"],["-90.000496","29.930772"],["-90.000682","29.930853"],["-90.000790","29.930900"],["-90.000958","29.931005"],["-90.001126","29.931111"],["-90.001273","29.931203"],["-90.001475","29.931244"],["-90.001677","29.931285"],["-90.001863","29.931365"],["-90.002047","29.931449"],["-90.002231","29.931532"],["-90.002414","29.931616"],["-90.002598","29.931699"],["-90.002764","29.931807"],["-90.002930","29.931915"],["-90.002988","29.931953"],["-90.003190","29.931996"],["-90.003300","29.932019"],["-90.003485","29.932100"],["-90.003670","29.932181"],["-90.003779","29.932229"],["-90.003965","29.932308"],["-90.004110","29.932370"],["-90.004240","29.932430"],["-90.004425","29.932512"],["-90.004548","29.932591"],["-90.004671","29.932670"],["-90.004794","29.932748"],["-90.004917","29.932827"],["-90.005041","29.932906"],["-90.005164","29.932985"],["-90.005287","29.933063"],["-90.005410","29.933142"],["-90.005594","29.933125"],["-90.005778","29.933108"],["-90.005886","29.933155"],["-90.005994","29.933203"],["-90.006102","29.933251"],["-90.006210","29.933299"],["-90.006395","29.933380"],["-90.006509","29.933430"],["-90.006694","29.933511"],["-90.006760","29.933540"],["-90.006948","29.933616"],["-90.007130","29.933690"],["-90.007279","29.933759"],["-90.007447","29.933864"],["-90.007615","29.933970"],["-90.007789","29.934079"],["-90.007987","29.934133"],["-90.008167","29.934183"],["-90.008337","29.934286"],["-90.008507","29.934389"],["-90.008677","29.934493"],["-90.008745","29.934534"],["-90.008948","29.934573"],["-90.009150","29.934612"],["-90.009210","29.934624"],["-90.009395","29.934706"],["-90.009540","29.934770"],["-90.009701","29.934883"],["-90.009862","29.934997"],["-90.009992","29.935088"],["-90.010195","29.935124"],["-90.010399","29.935161"],["-90.010461","29.935172"],["-90.010646","29.935253"],["-90.010799","29.935320"],["-90.010940","29.935379"],["-90.011040","29.935420"],["-90.011225","29.935501"],["-90.011362","29.935636"],["-90.011458","29.935731"],["-90.011661","29.935769"],["-90.011864","29.935807"],["-90.011941","29.935821"],["-90.012126","29.935902"],["-90.012189","29.935929"],["-90.012359","29.936009"],["-90.012545","29.936089"],["-90.012731","29.936169"],["-90.012800","29.936199"],["-90.012970","29.936279"],["-90.013124","29.936399"],["-90.013278","29.936520"],["-90.013308","29.936543"],["-90.013503","29.936604"],["-90.013698","29.936666"],["-90.013779","29.936691"],["-90.013958","29.936782"],["-90.014137","29.936873"],["-90.014316","29.936963"],["-90.014492","29.937052"],["-90.014688","29.937111"],["-90.014884","29.937170"],["-90.014949","29.937189"],["-90.015129","29.937279"],["-90.015309","29.937369"],["-90.015488","29.937459"],["-90.015668","29.937549"],["-90.015848","29.937639"],["-90.016027","29.937729"],["-90.016207","29.937819"],["-90.016280","29.937855"],["-90.016478","29.937909"],["-90.016676","29.937964"],["-90.016738","29.937981"],["-90.016917","29.938073"],["-90.017096","29.938164"],["-90.017275","29.938255"],["-90.017454","29.938346"],["-90.017632","29.938437"],["-90.017787","29.938516"],["-90.017991","29.938551"],["-90.018173","29.938582"],["-90.018357","29.938665"],["-90.018410","29.938689"],["-90.018594","29.938772"],["-90.018778","29.938856"],["-90.018962","29.938939"],["-90.019119","29.939010"],["-90.019304","29.939092"],["-90.019488","29.939175"],["-90.019661","29.939274"],["-90.019834","29.939374"],["-90.020007","29.939474"],["-90.020188","29.939578"],["-90.020260","29.939580"],["-90.020260","29.939490"],["-90.020402","29.939553"],["-90.020545","29.939615"],["-90.020687","29.939678"],["-90.020830","29.939740"],["-90.020972","29.939803"],["-90.021115","29.939865"],["-90.021257","29.939928"],["-90.021400","29.939990"],["-90.021541","29.940053"],["-90.021682","29.940115"],["-90.021824","29.940178"],["-90.021965","29.940240"],["-90.022106","29.940303"],["-90.022247","29.940365"],["-90.022389","29.940428"],["-90.022530","29.940490"],["-90.022510","29.940580"],["-90.022430","29.940580"],["-90.022423","29.940623"],["-90.022430","29.940580"],["-90.022510","29.940580"],["-90.022530","29.940490"],["-90.022654","29.940545"],["-90.022777","29.940600"],["-90.022901","29.940655"],["-90.023025","29.940710"],["-90.023149","29.940765"],["-90.023272","29.940820"],["-90.023396","29.940875"],["-90.023520","29.940930"],["-90.023630","29.940980"],["-90.023740","29.941030"],["-90.023870","29.941088"],["-90.024000","29.941145"],["-90.024130","29.941203"],["-90.024260","29.941260"],["-90.024400","29.941320"],["-90.024512","29.941365"],["-90.024625","29.941410"],["-90.024737","29.941455"],["-90.024850","29.941500"],["-90.024920","29.941530"],["-90.024960","29.941580"],["-90.025020","29.941610"],["-90.025124","29.941621"],["-90.025302","29.941714"],["-90.025441","29.941787"],["-90.025549","29.941839"],["-90.025734","29.941920"],["-90.025870","29.941980"],["-90.026053","29.942065"],["-90.026236","29.942150"],["-90.026300","29.942180"],["-90.026490","29.942252"],["-90.026680","29.942325"],["-90.026849","29.942389"],["-90.027016","29.942496"],["-90.027183","29.942603"],["-90.027385","29.942643"],["-90.027588","29.942682"],["-90.027659","29.942696"],["-90.027849","29.942768"],["-90.028039","29.942840"],["-90.028220","29.942909"],["-90.028320","29.942950"],["-90.028510","29.943022"],["-90.028700","29.943094"],["-90.028891","29.943166"],["-90.029065","29.943264"],["-90.029239","29.943362"],["-90.029413","29.943460"],["-90.029427","29.943468"],["-90.029630","29.943506"],["-90.029833","29.943543"],["-90.030026","29.943608"],["-90.030218","29.943678"],["-90.030408","29.943749"],["-90.030599","29.943820"],["-90.030790","29.943890"],["-90.030979","29.943966"],["-90.031142","29.944077"],["-90.031267","29.944163"],["-90.031469","29.944204"],["-90.031671","29.944245"],["-90.031863","29.944314"],["-90.032053","29.944387"],["-90.032242","29.944460"],["-90.032432","29.944533"],["-90.032621","29.944607"],["-90.032813","29.944675"],["-90.033006","29.944743"],["-90.033110","29.944780"],["-90.033300","29.944820"],["-90.033487","29.944897"],["-90.033583","29.944937"],["-90.033789","29.944918"],["-90.033996","29.944900"],["-90.034074","29.944893"],["-90.034281","29.944904"],["-90.034488","29.944915"],["-90.034580","29.944920"],["-90.034787","29.944930"],["-90.034980","29.944940"],["-90.035187","29.944948"],["-90.035395","29.944956"],["-90.035489","29.944960"],["-90.035696","29.944968"],["-90.035759","29.944970"],["-90.035966","29.944977"],["-90.036174","29.944985"],["-90.036299","29.944989"],["-90.036502","29.945026"],["-90.036674","29.945058"],["-90.036755","29.945224"],["-90.036806","29.945329"],["-90.036794","29.945509"],["-90.036781","29.945688"],["-90.036769","29.945868"],["-90.036757","29.946047"],["-90.036745","29.946227"],["-90.036733","29.946406"],["-90.036721","29.946586"],["-90.036709","29.946760"],["-90.036691","29.946939"],["-90.036680","29.947049"],["-90.036667","29.947229"],["-90.036654","29.947408"],["-90.036641","29.947588"],["-90.036629","29.947767"],["-90.036616","29.947947"],["-90.036609","29.948040"],["-90.036600","29.948210"],["-90.036807","29.948216"],["-90.037015","29.948223"],["-90.037222","29.948229"],["-90.037430","29.948235"],["-90.037580","29.948240"],["-90.037785","29.948266"],["-90.037991","29.948292"],["-90.038196","29.948318"],["-90.038402","29.948344"],["-90.038445","29.948349"],["-90.038650","29.948323"],["-90.038837","29.948299"],["-90.039044","29.948308"],["-90.039252","29.948316"],["-90.039459","29.948325"],["-90.039570","29.948330"],["-90.039777","29.948341"],["-90.039984","29.948352"],["-90.040192","29.948363"],["-90.040389","29.948419"],["-90.040489","29.948448"],["-90.040485","29.948628"],["-90.040481","29.948808"],["-90.040477","29.948987"],["-90.040473","29.949167"],["-90.040470","29.949329"],["-90.040459","29.949509"],["-90.040449","29.949688"],["-90.040438","29.949868"],["-90.040427","29.950047"],["-90.040416","29.950227"],["-90.040406","29.950407"],["-90.040399","29.950520"],["-90.040387","29.950700"],["-90.040375","29.950879"],["-90.040363","29.951059"],["-90.040351","29.951238"],["-90.040338","29.951418"],["-90.040326","29.951597"],["-90.040320","29.951690"],["-90.040309","29.951870"],["-90.040298","29.952049"],["-90.040287","29.952229"],["-90.040277","29.952408"],["-90.040266","29.952588"],["-90.040255","29.952768"],["-90.040250","29.952849"],["-90.040237","29.953029"],["-90.040223","29.953208"],["-90.040210","29.953387"],["-90.040194","29.953567"],["-90.040179","29.953746"],["-90.040169","29.953860"],["-90.040366","29.953916"],["-90.040449","29.953940"],["-90.040649","29.953987"],["-90.040849","29.954035"],["-90.041050","29.954082"],["-90.041250","29.954129"],["-90.041451","29.954176"],["-90.041550","29.954200"],["-90.041752","29.954243"],["-90.041953","29.954287"],["-90.042154","29.954330"],["-90.042356","29.954374"],["-90.042557","29.954417"],["-90.042759","29.954459"],["-90.042961","29.954502"],["-90.043163","29.954544"],["-90.043364","29.954586"],["-90.043566","29.954628"],["-90.043769","29.954667"],["-90.043972","29.954706"],["-90.044174","29.954745"],["-90.044377","29.954784"],["-90.044580","29.954823"],["-90.044654","29.954837"],["-90.044860","29.954818"],["-90.045006","29.954804"],["-90.045212","29.954829"],["-90.045417","29.954853"],["-90.045623","29.954877"],["-90.045730","29.954890"],["-90.045929","29.954940"],["-90.046129","29.954990"],["-90.046328","29.955040"],["-90.046459","29.955073"],["-90.046664","29.955043"],["-90.046868","29.955012"],["-90.047075","29.955023"],["-90.047283","29.955034"],["-90.047490","29.955045"],["-90.047697","29.955056"],["-90.047770","29.955060"],["-90.047975","29.955087"],["-90.048180","29.955115"],["-90.048386","29.955142"],["-90.048591","29.955170"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953317"],["-90.055155","29.953215"],["-90.055250","29.953055"],["-90.055302","29.952968"],["-90.055279","29.952789"],["-90.055255","29.952611"],["-90.055250","29.952570"],["-90.055190","29.952500"],["-90.055130","29.952469"],["-90.054927","29.952430"],["-90.054896","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054133","29.951116"],["-90.054026","29.950962"],["-90.053920","29.950807"],["-90.053813","29.950653"],["-90.053706","29.950499"],["-90.053680","29.950461"],["-90.053516","29.950351"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052948","29.949707"],["-90.052860","29.949600"],["-90.052761","29.949442"],["-90.052662","29.949284"],["-90.052564","29.949125"],["-90.052465","29.948967"],["-90.052366","29.948809"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.052208","29.945259"],["-90.052216","29.945080"],["-90.052223","29.944900"],["-90.052231","29.944720"],["-90.052239","29.944540"],["-90.052243","29.944447"],["-90.052168","29.944279"],["-90.052127","29.944189"],["-90.052115","29.944009"],["-90.052103","29.943830"],["-90.052091","29.943650"],["-90.052079","29.943471"],["-90.052070","29.943330"],["-90.052081","29.943150"],["-90.052091","29.942971"],["-90.052102","29.942791"],["-90.052112","29.942611"],["-90.052123","29.942432"],["-90.052127","29.942366"],["-90.051928","29.942313"],["-90.051802","29.942280"],["-90.051595","29.942291"],["-90.051388","29.942301"],["-90.051180","29.942311"],["-90.050977","29.942275"],["-90.050773","29.942240"],["-90.050706","29.942228"],["-90.050514","29.942296"],["-90.050353","29.942353"],["-90.050146","29.942365"],["-90.049939","29.942378"],["-90.049737","29.942336"],["-90.049545","29.942296"],["-90.049338","29.942305"],["-90.049130","29.942315"],["-90.048923","29.942324"],["-90.048716","29.942334"],["-90.048580","29.942340"],["-90.048373","29.942327"],["-90.048166","29.942314"],["-90.047959","29.942300"],["-90.047752","29.942287"],["-90.047556","29.942228"],["-90.047429","29.942189"],["-90.047222","29.942202"],["-90.047015","29.942216"],["-90.046808","29.942229"],["-90.046640","29.942240"],["-90.046550","29.942229"],["-90.046344","29.942208"],["-90.046138","29.942187"],["-90.045931","29.942167"],["-90.045725","29.942146"],["-90.045697","29.942143"],["-90.045490","29.942151"],["-90.045282","29.942158"],["-90.045186","29.942162"],["-90.044979","29.942149"],["-90.044772","29.942135"],["-90.044679","29.942129"],["-90.044475","29.942096"],["-90.044309","29.942070"],["-90.044112","29.942013"],["-90.043915","29.941956"],["-90.043723","29.941889"],["-90.043530","29.941822"],["-90.043497","29.941810"],["-90.043289","29.941814"],["-90.043162","29.941816"],["-90.042955","29.941801"],["-90.042748","29.941787"],["-90.042541","29.941773"],["-90.042334","29.941759"],["-90.042128","29.941737"],["-90.041922","29.941714"],["-90.041716","29.941692"],["-90.041510","29.941670"],["-90.041305","29.941647"],["-90.041236","29.941640"],["-90.041204","29.941462"],["-90.041179","29.941320"],["-90.041195","29.941141"],["-90.041210","29.940980"],["-90.041226","29.940801"],["-90.041242","29.940621"],["-90.041258","29.940442"],["-90.041270","29.940310"],["-90.041363","29.940149"],["-90.041413","29.940062"],["-90.041423","29.939882"],["-90.041433","29.939717"],["-90.041490","29.939560"],["-90.041510","29.939390"],["-90.041510","29.939240"],["-90.041500","29.939110"],["-90.041469","29.939000"],["-90.041433","29.938823"],["-90.041410","29.938710"],["-90.041401","29.938530"],["-90.041397","29.938349"],["-90.041392","29.938168"],["-90.041388","29.937987"],["-90.041384","29.937806"],["-90.041483","29.937772"],["-90.041468","29.937646"],["-90.041454","29.937520"],["-90.041439","29.937395"],["-90.041425","29.937269"],["-90.041433","29.937148"],["-90.041441","29.937028"],["-90.041449","29.936907"],["-90.041457","29.936787"],["-90.041465","29.936666"],["-90.041473","29.936546"],["-90.041481","29.936425"],["-90.041489","29.936304"],["-90.041497","29.936184"],["-90.041505","29.936063"],["-90.041513","29.935943"],["-90.041521","29.935822"],["-90.041529","29.935702"],["-90.041538","29.935581"],["-90.041546","29.935460"],["-90.041554","29.935340"],["-90.041696","29.935302"],["-90.041559","29.935207"],["-90.041566","29.935092"],["-90.041573","29.934976"],["-90.041581","29.934861"],["-90.041588","29.934745"],["-90.041600","29.934580"],["-90.041605","29.934480"],["-90.041610","29.934380"],["-90.041615","29.934278"],["-90.041620","29.934175"],["-90.041625","29.934073"],["-90.041630","29.933970"],["-90.041645","29.933835"],["-90.041660","29.933700"],["-90.041670","29.933520"],["-90.041680","29.933340"],["-90.041690","29.933190"],["-90.041700","29.933040"],["-90.041818","29.933048"],["-90.041700","29.933040"],["-90.041700","29.932960"],["-90.041713","29.932770"],["-90.041725","29.932580"],["-90.041738","29.932390"],["-90.041750","29.932200"],["-90.041763","29.932018"],["-90.041775","29.931835"],["-90.041788","29.931653"],["-90.041800","29.931470"],["-90.041803","29.931363"],["-90.041805","29.931255"],["-90.041808","29.931148"],["-90.041810","29.931040"],["-90.041815","29.930905"],["-90.041820","29.930770"],["-90.041929","29.930776"],["-90.041820","29.930770"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041845","29.930380"],["-90.041860","29.930200"],["-90.041875","29.930020"],["-90.041890","29.929840"],["-90.041900","29.929710"],["-90.041910","29.929525"],["-90.041920","29.929340"],["-90.041930","29.929200"],["-90.041940","29.929060"],["-90.041950","29.928880"],["-90.041960","29.928730"],["-90.041966","29.928618"],["-90.041973","29.928505"],["-90.041979","29.928393"],["-90.041985","29.928280"],["-90.041991","29.928168"],["-90.041998","29.928055"],["-90.042004","29.927943"],["-90.042010","29.927830"],["-90.042020","29.927685"],["-90.042030","29.927540"],["-90.042030","29.927440"],["-90.042030","29.927350"],["-90.042030","29.927310"],["-90.042040","29.927270"],["-90.042050","29.927160"],["-90.042060","29.927050"],["-90.042068","29.926920"],["-90.042075","29.926790"],["-90.042083","29.926660"],["-90.042090","29.926530"],["-90.042184","29.926584"],["-90.042155","29.926406"],["-90.042126","29.926228"],["-90.042116","29.926163"],["-90.042140","29.925984"],["-90.042145","29.925882"],["-90.042150","29.925780"],["-90.042154","29.925678"],["-90.042159","29.925576"],["-90.042164","29.925474"],["-90.042169","29.925372"],["-90.042174","29.925270"],["-90.042178","29.925168"],["-90.042258","29.925096"],["-90.042195","29.924919"],["-90.042203","29.924800"],["-90.042212","29.924680"],["-90.042220","29.924560"],["-90.042229","29.924441"],["-90.042237","29.924321"],["-90.042246","29.924201"],["-90.042254","29.924081"],["-90.042263","29.923962"],["-90.042271","29.923842"],["-90.042280","29.923722"],["-90.042288","29.923603"],["-90.042297","29.923483"],["-90.042305","29.923363"],["-90.042314","29.923244"],["-90.042322","29.923124"],["-90.042331","29.923004"],["-90.042296","29.922874"],["-90.042362","29.922771"],["-90.042429","29.922667"],["-90.042495","29.922564"],["-90.042561","29.922460"],["-90.042628","29.922357"],["-90.042694","29.922253"],["-90.042760","29.922150"],["-90.042827","29.922047"],["-90.042925","29.921897"],["-90.043023","29.921747"],["-90.043121","29.921597"],["-90.043218","29.921447"],["-90.043296","29.921333"],["-90.043374","29.921219"],["-90.043310","29.921105"],["-90.043245","29.920991"],["-90.043052","29.920917"],["-90.043145","29.920771"],["-90.043239","29.920625"],["-90.043332","29.920479"],["-90.043425","29.920333"],["-90.043518","29.920187"],["-90.043611","29.920041"],["-90.043705","29.919896"],["-90.043798","29.919750"],["-90.043969","29.919847"],["-90.043928","29.919967"],["-90.043886","29.920087"],["-90.043809","29.920200"],["-90.043731","29.920313"],["-90.043654","29.920426"],["-90.043576","29.920539"],["-90.043499","29.920652"],["-90.043422","29.920765"],["-90.043344","29.920878"],["-90.043267","29.920991"],["-90.043103","29.920961"],["-90.042940","29.920931"],["-90.042730","29.920949"],["-90.042675","29.921036"],["-90.042620","29.921122"],["-90.042565","29.921209"],["-90.042510","29.921296"],["-90.042455","29.921382"],["-90.042400","29.921469"],["-90.042345","29.921555"],["-90.042290","29.921642"],["-90.042202","29.921776"],["-90.042114","29.921909"],["-90.042026","29.922043"],["-90.041938","29.922177"],["-90.041850","29.922310"],["-90.041761","29.922444"],["-90.041673","29.922578"],["-90.041585","29.922711"],["-90.041497","29.922845"],["-90.041409","29.922979"],["-90.041320","29.923112"],["-90.041232","29.923246"],["-90.041144","29.923380"],["-90.041056","29.923513"],["-90.040968","29.923647"],["-90.040880","29.923781"],["-90.040779","29.923936"],["-90.040678","29.924091"],["-90.040578","29.924246"],["-90.040477","29.924401"],["-90.040377","29.924557"],["-90.040276","29.924712"],["-90.040175","29.924867"],["-90.040075","29.925022"],["-90.039977","29.925174"],["-90.039879","29.925327"],["-90.039781","29.925479"],["-90.039683","29.925631"],["-90.039585","29.925783"],["-90.039487","29.925936"],["-90.039390","29.926088"],["-90.039292","29.926240"],["-90.039206","29.926398"],["-90.039120","29.926556"],["-90.039034","29.926714"],["-90.038948","29.926872"],["-90.038887","29.927006"],["-90.038825","29.927139"],["-90.038763","29.927272"],["-90.038702","29.927405"],["-90.038640","29.927538"],["-90.038578","29.927671"],["-90.038517","29.927804"],["-90.038455","29.927937"],["-90.038353","29.928065"],["-90.038251","29.928193"],["-90.038181","29.928292"],["-90.038112","29.928390"],["-90.038042","29.928489"],["-90.037972","29.928588"],["-90.037902","29.928709"],["-90.037833","29.928830"],["-90.037796","29.929017"],["-90.037760","29.929204"],["-90.037724","29.929391"],["-90.037688","29.929578"],["-90.037660","29.929690"],["-90.037631","29.929801"],["-90.037603","29.929913"],["-90.037575","29.930025"],["-90.037547","29.930136"],["-90.037519","29.930248"],["-90.037491","29.930359"],["-90.037462","29.930471"],["-90.037420","29.930641"],["-90.037377","29.930810"],["-90.037348","29.930997"],["-90.037319","29.931184"],["-90.037290","29.931372"],["-90.037261","29.931559"],["-90.037296","29.931663"],["-90.037331","29.931768"],["-90.037322","29.931935"],["-90.037312","29.932103"],["-90.037303","29.932270"],["-90.037294","29.932437"],["-90.037284","29.932605"],["-90.037275","29.932772"],["-90.037265","29.932939"],["-90.037256","29.933107"],["-90.037258","29.933249"],["-90.037260","29.933390"],["-90.037262","29.933532"],["-90.037264","29.933674"],["-90.037266","29.933816"],["-90.037268","29.933958"],["-90.037270","29.934099"],["-90.037272","29.934241"],["-90.037294","29.934403"],["-90.037316","29.934566"],["-90.037338","29.934728"],["-90.037360","29.934890"],["-90.037380","29.935010"],["-90.037410","29.935090"],["-90.037420","29.935130"],["-90.037440","29.935200"],["-90.037450","29.935220"],["-90.037480","29.935290"],["-90.037520","29.935390"],["-90.037570","29.935510"],["-90.037610","29.935600"],["-90.037670","29.935700"],["-90.037720","29.935800"],["-90.037770","29.935880"],["-90.037850","29.935990"],["-90.037910","29.936080"],["-90.037980","29.936170"],["-90.038060","29.936270"],["-90.038120","29.936350"],["-90.038200","29.936440"],["-90.038230","29.936480"],["-90.038270","29.936520"],["-90.038360","29.936620"],["-90.038460","29.936710"],["-90.038520","29.936780"],["-90.038610","29.936860"],["-90.038680","29.936920"],["-90.038700","29.936930"],["-90.038790","29.937020"],["-90.038880","29.937090"],["-90.038970","29.937160"],["-90.039060","29.937230"],["-90.039100","29.937270"],["-90.039120","29.937280"],["-90.039250","29.937370"],["-90.039300","29.937410"],["-90.039360","29.937450"],["-90.039470","29.937520"],["-90.039570","29.937580"],["-90.039680","29.937640"],["-90.039770","29.937690"],["-90.039890","29.937760"],["-90.039985","29.937810"],["-90.040080","29.937860"],["-90.040220","29.937920"],["-90.040340","29.937980"],["-90.040390","29.938000"],["-90.040530","29.938050"],["-90.040690","29.938120"],["-90.040800","29.938155"],["-90.040910","29.938190"],["-90.041010","29.938220"],["-90.041120","29.938250"],["-90.041290","29.938300"],["-90.041400","29.938320"],["-90.041510","29.938350"],["-90.041520","29.938350"],["-90.041640","29.938380"],["-90.041790","29.938400"],["-90.041910","29.938420"],["-90.042030","29.938430"],["-90.042150","29.938450"],["-90.042280","29.938460"],["-90.042405","29.938465"],["-90.042530","29.938470"],["-90.042660","29.938480"],["-90.042810","29.938490"],["-90.042960","29.938500"],["-90.043150","29.938510"],["-90.043270","29.938510"],["-90.043340","29.938520"],["-90.043390","29.938520"],["-90.043520","29.938530"],["-90.043710","29.938540"],["-90.043880","29.938550"],["-90.044015","29.938555"],["-90.044150","29.938560"],["-90.044280","29.938570"],["-90.044410","29.938580"],["-90.044540","29.938590"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047310","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052508","29.938928"],["-90.052675","29.938925"],["-90.052843","29.938923"],["-90.053010","29.938920"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053345","29.938918"],["-90.053510","29.938915"],["-90.053675","29.938913"],["-90.053840","29.938910"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060130","29.938860"],["-90.060270","29.938860"],["-90.060340","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060675","29.938860"],["-90.060810","29.938860"],["-90.060955","29.938855"],["-90.061100","29.938850"],["-90.061240","29.938850"],["-90.061380","29.938850"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062360","29.938840"],["-90.062580","29.938840"],["-90.062790","29.938840"],["-90.062918","29.938840"],["-90.063045","29.938840"],["-90.063173","29.938840"],["-90.063300","29.938840"],["-90.063390","29.938840"],["-90.063570","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067675","29.939545"],["-90.067880","29.939610"],["-90.068020","29.939650"],["-90.068150","29.939690"],["-90.068300","29.939730"],["-90.068490","29.939800"],["-90.068670","29.939865"],["-90.068850","29.939930"],["-90.068990","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940200"],["-90.069460","29.940240"],["-90.069620","29.940320"],["-90.069735","29.940385"],["-90.069850","29.940450"],["-90.069960","29.940510"],["-90.070070","29.940570"],["-90.070180","29.940630"],["-90.070290","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070910","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071650","29.941390"],["-90.071750","29.941450"],["-90.071860","29.941500"],["-90.071930","29.941550"],["-90.072050","29.941610"],["-90.072227","29.941703"],["-90.072405","29.941795"],["-90.072582","29.941888"],["-90.072760","29.941980"],["-90.072865","29.942035"],["-90.072970","29.942090"],["-90.073100","29.942160"],["-90.073230","29.942240"],["-90.073380","29.942320"],["-90.073557","29.942420"],["-90.073735","29.942520"],["-90.073912","29.942620"],["-90.074090","29.942720"],["-90.074140","29.942830"],["-90.074280","29.942920"],["-90.074350","29.942970"],["-90.074420","29.943030"],["-90.074470","29.943070"],["-90.074510","29.943100"],["-90.074610","29.943180"],["-90.074710","29.943260"],["-90.074800","29.943335"],["-90.074890","29.943410"],["-90.074980","29.943485"],["-90.075070","29.943560"],["-90.075150","29.943630"],["-90.075255","29.943695"],["-90.075360","29.943760"],["-90.075440","29.943820"],["-90.075480","29.943840"],["-90.075540","29.943880"],["-90.075560","29.943880"],["-90.075660","29.943945"],["-90.075760","29.944010"],["-90.075850","29.944070"],["-90.075860","29.944070"],["-90.075920","29.944110"],["-90.075970","29.944140"],["-90.076040","29.944210"],["-90.076090","29.944270"],["-90.076110","29.944300"],["-90.076170","29.944390"],["-90.076210","29.944470"],["-90.076220","29.944510"],["-90.076240","29.944580"],["-90.076250","29.944680"],["-90.076250","29.944750"],["-90.076250","29.944800"],["-90.076250","29.944810"],["-90.076240","29.944840"],["-90.076220","29.944910"],["-90.076190","29.944970"],["-90.076140","29.945070"],["-90.076080","29.945160"],["-90.076030","29.945230"],["-90.075930","29.945350"],["-90.075920","29.945380"],["-90.075910","29.945400"],["-90.075910","29.945410"],["-90.075910","29.945440"],["-90.075840","29.945590"],["-90.075745","29.945720"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945990"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075470","29.946348"],["-90.075440","29.946445"],["-90.075410","29.946543"],["-90.075380","29.946640"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.041696","29.935302"],["-90.041929","29.930776"],["-89.982893","29.923220"],["-89.987890","29.925327"],["-89.992202","29.927194"],["-89.995548","29.928676"],["-89.997491","29.929524"],["-89.999580","29.930453"],["-90.001273","29.931203"],["-90.002988","29.931953"],["-90.005410","29.933142"],["-90.007789","29.934079"],["-90.008745","29.934534"],["-90.009992","29.935088"],["-90.011458","29.935731"],["-90.013308","29.936543"],["-90.014492","29.937052"],["-90.016280","29.937855"],["-90.017787","29.938516"],["-90.020188","29.939578"],["-90.022423","29.940623"],["-90.025124","29.941621"],["-90.027183","29.942603"],["-90.029427","29.943468"],["-90.031267","29.944163"],["-90.033583","29.944937"],["-90.036674","29.945058"],["-90.041413","29.940062"],["-90.041483","29.937772"],["-90.041818","29.933048"],["-90.045697","29.942143"],["-90.047429","29.942189"],["-90.049545","29.942296"],["-90.053661","29.954274"],["-90.053680","29.950461"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.052243","29.944447"],["-90.052127","29.942366"],["-90.075299","29.946626"],["-90.055302","29.952968"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.050706","29.942228"],["-90.035354","29.948182"],["-90.038445","29.948349"],["-90.040489","29.948448"],["-90.043497","29.941810"],["-90.041236","29.941640"]]},{"type":"LineString","coordinates":[["-89.982893","29.923220"],["-89.983100","29.923235"],["-89.983213","29.923243"],["-89.983398","29.923325"],["-89.983540","29.923389"],["-89.983726","29.923468"],["-89.983909","29.923553"],["-89.984093","29.923637"],["-89.984281","29.923712"],["-89.984470","29.923787"],["-89.984659","29.923862"],["-89.984847","29.923937"],["-89.985036","29.924012"],["-89.985080","29.924029"],["-89.985266","29.924109"],["-89.985452","29.924189"],["-89.985570","29.924240"],["-89.985766","29.924300"],["-89.985930","29.924350"],["-89.986115","29.924431"],["-89.986300","29.924512"],["-89.986485","29.924594"],["-89.986671","29.924675"],["-89.986856","29.924756"],["-89.986910","29.924780"],["-89.987084","29.924877"],["-89.987259","29.924975"],["-89.987433","29.925072"],["-89.987608","29.925170"],["-89.987782","29.925267"],["-89.987890","29.925327"],["-89.988093","29.925363"],["-89.988297","29.925399"],["-89.988361","29.925410"],["-89.988546","29.925491"],["-89.988732","29.925571"],["-89.988918","29.925651"],["-89.989099","29.925729"],["-89.989283","29.925812"],["-89.989467","29.925896"],["-89.989651","29.925979"],["-89.989835","29.926062"],["-89.990018","29.926146"],["-89.990202","29.926229"],["-89.990386","29.926313"],["-89.990570","29.926396"],["-89.990754","29.926479"],["-89.990930","29.926559"],["-89.991116","29.926638"],["-89.991303","29.926717"],["-89.991489","29.926797"],["-89.991675","29.926876"],["-89.991862","29.926955"],["-89.992023","29.927068"],["-89.992184","29.927181"],["-89.992202","29.927194"],["-89.992405","29.927232"],["-89.992507","29.927251"],["-89.992659","29.927330"],["-89.992845","29.927409"],["-89.993032","29.927488"],["-89.993218","29.927567"],["-89.993403","29.927649"],["-89.993589","29.927729"],["-89.993775","29.927809"],["-89.993960","29.927890"],["-89.994145","29.927971"],["-89.994331","29.928052"],["-89.994516","29.928133"],["-89.994701","29.928214"],["-89.994760","29.928240"],["-89.994935","29.928337"],["-89.995110","29.928434"],["-89.995285","29.928530"],["-89.995460","29.928627"],["-89.995548","29.928676"],["-89.995753","29.928704"],["-89.995876","29.928721"],["-89.995920","29.928740"],["-89.996104","29.928824"],["-89.996288","29.928907"],["-89.996471","29.928991"],["-89.996600","29.929050"],["-89.996670","29.929080"],["-89.996846","29.929175"],["-89.997022","29.929270"],["-89.997198","29.929366"],["-89.997374","29.929461"],["-89.997491","29.929524"],["-89.997694","29.929561"],["-89.997800","29.929580"],["-89.997985","29.929661"],["-89.998171","29.929741"],["-89.998357","29.929822"],["-89.998490","29.929880"],["-89.998674","29.929963"],["-89.998859","29.930045"],["-89.999043","29.930128"],["-89.999228","29.930210"],["-89.999390","29.930322"],["-89.999552","29.930434"],["-89.999580","29.930453"],["-89.999781","29.930496"],["-89.999940","29.930530"],["-90.000125","29.930611"],["-90.000311","29.930691"],["-90.000496","29.930772"],["-90.000682","29.930853"],["-90.000790","29.930900"],["-90.000958","29.931005"],["-90.001126","29.931111"],["-90.001273","29.931203"],["-90.001475","29.931244"],["-90.001677","29.931285"],["-90.001863","29.931365"],["-90.002047","29.931449"],["-90.002231","29.931532"],["-90.002414","29.931616"],["-90.002598","29.931699"],["-90.002764","29.931807"],["-90.002930","29.931915"],["-90.002988","29.931953"],["-90.003190","29.931996"],["-90.003300","29.932019"],["-90.003485","29.932100"],["-90.003670","29.932181"],["-90.003779","29.932229"],["-90.003965","29.932308"],["-90.004110","29.932370"],["-90.004240","29.932430"],["-90.004425","29.932512"],["-90.004548","29.932591"],["-90.004671","29.932670"],["-90.004794","29.932748"],["-90.004917","29.932827"],["-90.005041","29.932906"],["-90.005164","29.932985"],["-90.005287","29.933063"],["-90.005410","29.933142"],["-90.005594","29.933125"],["-90.005778","29.933108"],["-90.005886","29.933155"],["-90.005994","29.933203"],["-90.006102","29.933251"],["-90.006210","29.933299"],["-90.006395","29.933380"],["-90.006509","29.933430"],["-90.006694","29.933511"],["-90.006760","29.933540"],["-90.006948","29.933616"],["-90.007130","29.933690"],["-90.007279","29.933759"],["-90.007447","29.933864"],["-90.007615","29.933970"],["-90.007789","29.934079"],["-90.007987","29.934133"],["-90.008167","29.934183"],["-90.008337","29.934286"],["-90.008507","29.934389"],["-90.008677","29.934493"],["-90.008745","29.934534"],["-90.008948","29.934573"],["-90.009150","29.934612"],["-90.009210","29.934624"],["-90.009395","29.934706"],["-90.009540","29.934770"],["-90.009701","29.934883"],["-90.009862","29.934997"],["-90.009992","29.935088"],["-90.010195","29.935124"],["-90.010399","29.935161"],["-90.010461","29.935172"],["-90.010646","29.935253"],["-90.010799","29.935320"],["-90.010940","29.935379"],["-90.011040","29.935420"],["-90.011225","29.935501"],["-90.011362","29.935636"],["-90.011458","29.935731"],["-90.011661","29.935769"],["-90.011864","29.935807"],["-90.011941","29.935821"],["-90.012126","29.935902"],["-90.012189","29.935929"],["-90.012359","29.936009"],["-90.012545","29.936089"],["-90.012731","29.936169"],["-90.012800","29.936199"],["-90.012970","29.936279"],["-90.013124","29.936399"],["-90.013278","29.936520"],["-90.013308","29.936543"],["-90.013503","29.936604"],["-90.013698","29.936666"],["-90.013779","29.936691"],["-90.013958","29.936782"],["-90.014137","29.936873"],["-90.014316","29.936963"],["-90.014492","29.937052"],["-90.014688","29.937111"],["-90.014884","29.937170"],["-90.014949","29.937189"],["-90.015129","29.937279"],["-90.015309","29.937369"],["-90.015488","29.937459"],["-90.015668","29.937549"],["-90.015848","29.937639"],["-90.016027","29.937729"],["-90.016207","29.937819"],["-90.016280","29.937855"],["-90.016478","29.937909"],["-90.016676","29.937964"],["-90.016738","29.937981"],["-90.016917","29.938073"],["-90.017096","29.938164"],["-90.017275","29.938255"],["-90.017454","29.938346"],["-90.017632","29.938437"],["-90.017787","29.938516"],["-90.017991","29.938551"],["-90.018173","29.938582"],["-90.018357","29.938665"],["-90.018410","29.938689"],["-90.018594","29.938772"],["-90.018778","29.938856"],["-90.018962","29.938939"],["-90.019119","29.939010"],["-90.019304","29.939092"],["-90.019488","29.939175"],["-90.019661","29.939274"],["-90.019834","29.939374"],["-90.020007","29.939474"],["-90.020188","29.939578"],["-90.020260","29.939580"],["-90.020260","29.939490"],["-90.020402","29.939553"],["-90.020545","29.939615"],["-90.020687","29.939678"],["-90.020830","29.939740"],["-90.020972","29.939803"],["-90.021115","29.939865"],["-90.021257","29.939928"],["-90.021400","29.939990"],["-90.021541","29.940053"],["-90.021682","29.940115"],["-90.021824","29.940178"],["-90.021965","29.940240"],["-90.022106","29.940303"],["-90.022247","29.940365"],["-90.022389","29.940428"],["-90.022530","29.940490"],["-90.022510","29.940580"],["-90.022430","29.940580"],["-90.022423","29.940623"],["-90.022430","29.940580"],["-90.022510","29.940580"],["-90.022530","29.940490"],["-90.022654","29.940545"],["-90.022777","29.940600"],["-90.022901","29.940655"],["-90.023025","29.940710"],["-90.023149","29.940765"],["-90.023272","29.940820"],["-90.023396","29.940875"],["-90.023520","29.940930"],["-90.023630","29.940980"],["-90.023740","29.941030"],["-90.023870","29.941088"],["-90.024000","29.941145"],["-90.024130","29.941203"],["-90.024260","29.941260"],["-90.024400","29.941320"],["-90.024512","29.941365"],["-90.024625","29.941410"],["-90.024737","29.941455"],["-90.024850","29.941500"],["-90.024920","29.941530"],["-90.024960","29.941580"],["-90.025020","29.941610"],["-90.025124","29.941621"],["-90.025302","29.941714"],["-90.025441","29.941787"],["-90.025549","29.941839"],["-90.025734","29.941920"],["-90.025870","29.941980"],["-90.026053","29.942065"],["-90.026236","29.942150"],["-90.026300","29.942180"],["-90.026490","29.942252"],["-90.026680","29.942325"],["-90.026849","29.942389"],["-90.027016","29.942496"],["-90.027183","29.942603"],["-90.027385","29.942643"],["-90.027588","29.942682"],["-90.027659","29.942696"],["-90.027849","29.942768"],["-90.028039","29.942840"],["-90.028220","29.942909"],["-90.028320","29.942950"],["-90.028510","29.943022"],["-90.028700","29.943094"],["-90.028891","29.943166"],["-90.029065","29.943264"],["-90.029239","29.943362"],["-90.029413","29.943460"],["-90.029427","29.943468"],["-90.029630","29.943506"],["-90.029833","29.943543"],["-90.030026","29.943608"],["-90.030218","29.943678"],["-90.030408","29.943749"],["-90.030599","29.943820"],["-90.030790","29.943890"],["-90.030979","29.943966"],["-90.031142","29.944077"],["-90.031267","29.944163"],["-90.031469","29.944204"],["-90.031671","29.944245"],["-90.031863","29.944314"],["-90.032053","29.944387"],["-90.032242","29.944460"],["-90.032432","29.944533"],["-90.032621","29.944607"],["-90.032813","29.944675"],["-90.033006","29.944743"],["-90.033110","29.944780"],["-90.033300","29.944820"],["-90.033487","29.944897"],["-90.033583","29.944937"],["-90.033789","29.944918"],["-90.033996","29.944900"],["-90.034074","29.944893"],["-90.034281","29.944904"],["-90.034488","29.944915"],["-90.034580","29.944920"],["-90.034787","29.944930"],["-90.034980","29.944940"],["-90.035187","29.944948"],["-90.035395","29.944956"],["-90.035489","29.944960"],["-90.035696","29.944968"],["-90.035759","29.944970"],["-90.035966","29.944977"],["-90.036174","29.944985"],["-90.036299","29.944989"],["-90.036502","29.945026"],["-90.036674","29.945058"],["-90.036755","29.945224"],["-90.036806","29.945329"],["-90.036794","29.945509"],["-90.036781","29.945688"],["-90.036769","29.945868"],["-90.036757","29.946047"],["-90.036745","29.946227"],["-90.036733","29.946406"],["-90.036721","29.946586"],["-90.036709","29.946760"],["-90.036691","29.946939"],["-90.036680","29.947049"],["-90.036667","29.947229"],["-90.036654","29.947408"],["-90.036641","29.947588"],["-90.036629","29.947767"],["-90.036616","29.947947"],["-90.036609","29.948040"],["-90.036402","29.948033"],["-90.036194","29.948026"],["-90.035987","29.948018"],["-90.035779","29.948011"],["-90.035572","29.948003"],["-90.035365","29.947995"],["-90.035157","29.947987"],["-90.035044","29.947983"],["-90.034837","29.947974"],["-90.034629","29.947965"],["-90.034422","29.947957"],["-90.034260","29.947950"],["-90.034250","29.948130"],["-90.034457","29.948139"],["-90.034665","29.948149"],["-90.034872","29.948159"],["-90.035079","29.948169"],["-90.035286","29.948179"],["-90.035354","29.948182"],["-90.035562","29.948183"],["-90.035769","29.948184"],["-90.035864","29.948184"],["-90.036071","29.948191"],["-90.036279","29.948199"],["-90.036486","29.948206"],["-90.036600","29.948210"],["-90.036807","29.948216"],["-90.037015","29.948223"],["-90.037222","29.948229"],["-90.037430","29.948235"],["-90.037580","29.948240"],["-90.037785","29.948266"],["-90.037991","29.948292"],["-90.038196","29.948318"],["-90.038402","29.948344"],["-90.038445","29.948349"],["-90.038650","29.948323"],["-90.038837","29.948299"],["-90.039044","29.948308"],["-90.039252","29.948316"],["-90.039459","29.948325"],["-90.039570","29.948330"],["-90.039777","29.948341"],["-90.039984","29.948352"],["-90.040192","29.948363"],["-90.040389","29.948419"],["-90.040489","29.948448"],["-90.040485","29.948628"],["-90.040481","29.948808"],["-90.040477","29.948987"],["-90.040473","29.949167"],["-90.040470","29.949329"],["-90.040459","29.949509"],["-90.040449","29.949688"],["-90.040438","29.949868"],["-90.040427","29.950047"],["-90.040416","29.950227"],["-90.040406","29.950407"],["-90.040399","29.950520"],["-90.040387","29.950700"],["-90.040375","29.950879"],["-90.040363","29.951059"],["-90.040351","29.951238"],["-90.040338","29.951418"],["-90.040326","29.951597"],["-90.040320","29.951690"],["-90.040309","29.951870"],["-90.040298","29.952049"],["-90.040287","29.952229"],["-90.040277","29.952408"],["-90.040266","29.952588"],["-90.040255","29.952768"],["-90.040250","29.952849"],["-90.040237","29.953029"],["-90.040223","29.953208"],["-90.040210","29.953387"],["-90.040194","29.953567"],["-90.040179","29.953746"],["-90.040169","29.953860"],["-90.040366","29.953916"],["-90.040449","29.953940"],["-90.040649","29.953987"],["-90.040849","29.954035"],["-90.041050","29.954082"],["-90.041250","29.954129"],["-90.041451","29.954176"],["-90.041550","29.954200"],["-90.041752","29.954243"],["-90.041953","29.954287"],["-90.042154","29.954330"],["-90.042356","29.954374"],["-90.042557","29.954417"],["-90.042759","29.954459"],["-90.042961","29.954502"],["-90.043163","29.954544"],["-90.043364","29.954586"],["-90.043566","29.954628"],["-90.043769","29.954667"],["-90.043972","29.954706"],["-90.044174","29.954745"],["-90.044377","29.954784"],["-90.044580","29.954823"],["-90.044654","29.954837"],["-90.044860","29.954818"],["-90.045006","29.954804"],["-90.045212","29.954829"],["-90.045417","29.954853"],["-90.045623","29.954877"],["-90.045730","29.954890"],["-90.045929","29.954940"],["-90.046129","29.954990"],["-90.046328","29.955040"],["-90.046459","29.955073"],["-90.046664","29.955043"],["-90.046868","29.955012"],["-90.047075","29.955023"],["-90.047283","29.955034"],["-90.047490","29.955045"],["-90.047697","29.955056"],["-90.047770","29.955060"],["-90.047975","29.955087"],["-90.048180","29.955115"],["-90.048386","29.955142"],["-90.048591","29.955170"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953317"],["-90.055155","29.953215"],["-90.055250","29.953055"],["-90.055302","29.952968"],["-90.055279","29.952789"],["-90.055255","29.952611"],["-90.055250","29.952570"],["-90.055190","29.952500"],["-90.055130","29.952469"],["-90.054927","29.952430"],["-90.054896","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054133","29.951116"],["-90.054026","29.950962"],["-90.053920","29.950807"],["-90.053813","29.950653"],["-90.053706","29.950499"],["-90.053680","29.950461"],["-90.053516","29.950351"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052948","29.949707"],["-90.052860","29.949600"],["-90.052761","29.949442"],["-90.052662","29.949284"],["-90.052564","29.949125"],["-90.052465","29.948967"],["-90.052366","29.948809"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.052208","29.945259"],["-90.052216","29.945080"],["-90.052223","29.944900"],["-90.052231","29.944720"],["-90.052239","29.944540"],["-90.052243","29.944447"],["-90.052168","29.944279"],["-90.052127","29.944189"],["-90.052115","29.944009"],["-90.052103","29.943830"],["-90.052091","29.943650"],["-90.052079","29.943471"],["-90.052070","29.943330"],["-90.052081","29.943150"],["-90.052091","29.942971"],["-90.052102","29.942791"],["-90.052112","29.942611"],["-90.052123","29.942432"],["-90.052127","29.942366"],["-90.051928","29.942313"],["-90.051802","29.942280"],["-90.051595","29.942291"],["-90.051388","29.942301"],["-90.051180","29.942311"],["-90.050977","29.942275"],["-90.050773","29.942240"],["-90.050706","29.942228"],["-90.050514","29.942296"],["-90.050353","29.942353"],["-90.050146","29.942365"],["-90.049939","29.942378"],["-90.049737","29.942336"],["-90.049545","29.942296"],["-90.049338","29.942305"],["-90.049130","29.942315"],["-90.048923","29.942324"],["-90.048716","29.942334"],["-90.048580","29.942340"],["-90.048373","29.942327"],["-90.048166","29.942314"],["-90.047959","29.942300"],["-90.047752","29.942287"],["-90.047556","29.942228"],["-90.047429","29.942189"],["-90.047222","29.942202"],["-90.047015","29.942216"],["-90.046808","29.942229"],["-90.046640","29.942240"],["-90.046550","29.942229"],["-90.046344","29.942208"],["-90.046138","29.942187"],["-90.045931","29.942167"],["-90.045725","29.942146"],["-90.045697","29.942143"],["-90.045490","29.942151"],["-90.045282","29.942158"],["-90.045186","29.942162"],["-90.044979","29.942149"],["-90.044772","29.942135"],["-90.044679","29.942129"],["-90.044475","29.942096"],["-90.044309","29.942070"],["-90.044112","29.942013"],["-90.043915","29.941956"],["-90.043723","29.941889"],["-90.043530","29.941822"],["-90.043497","29.941810"],["-90.043289","29.941814"],["-90.043162","29.941816"],["-90.042955","29.941801"],["-90.042748","29.941787"],["-90.042541","29.941773"],["-90.042334","29.941759"],["-90.042128","29.941737"],["-90.041922","29.941714"],["-90.041716","29.941692"],["-90.041510","29.941670"],["-90.041305","29.941647"],["-90.041236","29.941640"],["-90.041204","29.941462"],["-90.041179","29.941320"],["-90.041195","29.941141"],["-90.041210","29.940980"],["-90.041226","29.940801"],["-90.041242","29.940621"],["-90.041258","29.940442"],["-90.041270","29.940310"],["-90.041363","29.940149"],["-90.041413","29.940062"],["-90.041423","29.939882"],["-90.041433","29.939717"],["-90.041490","29.939560"],["-90.041510","29.939390"],["-90.041510","29.939240"],["-90.041500","29.939110"],["-90.041469","29.939000"],["-90.041433","29.938823"],["-90.041410","29.938710"],["-90.041401","29.938530"],["-90.041397","29.938349"],["-90.041392","29.938168"],["-90.041388","29.937987"],["-90.041384","29.937806"],["-90.041483","29.937772"],["-90.041468","29.937646"],["-90.041454","29.937520"],["-90.041439","29.937395"],["-90.041425","29.937269"],["-90.041433","29.937148"],["-90.041441","29.937028"],["-90.041449","29.936907"],["-90.041457","29.936787"],["-90.041465","29.936666"],["-90.041473","29.936546"],["-90.041481","29.936425"],["-90.041489","29.936304"],["-90.041497","29.936184"],["-90.041505","29.936063"],["-90.041513","29.935943"],["-90.041521","29.935822"],["-90.041529","29.935702"],["-90.041538","29.935581"],["-90.041546","29.935460"],["-90.041554","29.935340"],["-90.041696","29.935302"],["-90.041559","29.935207"],["-90.041566","29.935092"],["-90.041573","29.934976"],["-90.041581","29.934861"],["-90.041588","29.934745"],["-90.041600","29.934580"],["-90.041605","29.934480"],["-90.041610","29.934380"],["-90.041615","29.934278"],["-90.041620","29.934175"],["-90.041625","29.934073"],["-90.041630","29.933970"],["-90.041645","29.933835"],["-90.041660","29.933700"],["-90.041670","29.933520"],["-90.041680","29.933340"],["-90.041690","29.933190"],["-90.041700","29.933040"],["-90.041818","29.933048"],["-90.041700","29.933040"],["-90.041700","29.932960"],["-90.041713","29.932770"],["-90.041725","29.932580"],["-90.041738","29.932390"],["-90.041750","29.932200"],["-90.041763","29.932018"],["-90.041775","29.931835"],["-90.041788","29.931653"],["-90.041800","29.931470"],["-90.041803","29.931363"],["-90.041805","29.931255"],["-90.041808","29.931148"],["-90.041810","29.931040"],["-90.041815","29.930905"],["-90.041820","29.930770"],["-90.041929","29.930776"],["-90.041820","29.930770"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041845","29.930380"],["-90.041860","29.930200"],["-90.041875","29.930020"],["-90.041890","29.929840"],["-90.041900","29.929710"],["-90.041910","29.929525"],["-90.041920","29.929340"],["-90.041930","29.929200"],["-90.041940","29.929060"],["-90.041950","29.928880"],["-90.041960","29.928730"],["-90.041966","29.928618"],["-90.041973","29.928505"],["-90.041979","29.928393"],["-90.041985","29.928280"],["-90.041991","29.928168"],["-90.041998","29.928055"],["-90.042004","29.927943"],["-90.042010","29.927830"],["-90.042020","29.927685"],["-90.042030","29.927540"],["-90.042030","29.927440"],["-90.042030","29.927350"],["-90.042030","29.927310"],["-90.042040","29.927270"],["-90.042050","29.927160"],["-90.042060","29.927050"],["-90.042068","29.926920"],["-90.042075","29.926790"],["-90.042083","29.926660"],["-90.042090","29.926530"],["-90.042184","29.926584"],["-90.042155","29.926406"],["-90.042126","29.926228"],["-90.042116","29.926163"],["-90.042140","29.925984"],["-90.042145","29.925882"],["-90.042150","29.925780"],["-90.042154","29.925678"],["-90.042159","29.925576"],["-90.042164","29.925474"],["-90.042169","29.925372"],["-90.042174","29.925270"],["-90.042178","29.925168"],["-90.042258","29.925096"],["-90.042195","29.924919"],["-90.042203","29.924800"],["-90.042212","29.924680"],["-90.042220","29.924560"],["-90.042229","29.924441"],["-90.042237","29.924321"],["-90.042246","29.924201"],["-90.042254","29.924081"],["-90.042263","29.923962"],["-90.042271","29.923842"],["-90.042280","29.923722"],["-90.042288","29.923603"],["-90.042297","29.923483"],["-90.042305","29.923363"],["-90.042314","29.923244"],["-90.042322","29.923124"],["-90.042331","29.923004"],["-90.042296","29.922874"],["-90.042362","29.922771"],["-90.042429","29.922667"],["-90.042495","29.922564"],["-90.042561","29.922460"],["-90.042628","29.922357"],["-90.042694","29.922253"],["-90.042760","29.922150"],["-90.042827","29.922047"],["-90.042925","29.921897"],["-90.043023","29.921747"],["-90.043121","29.921597"],["-90.043218","29.921447"],["-90.043296","29.921333"],["-90.043374","29.921219"],["-90.043310","29.921105"],["-90.043245","29.920991"],["-90.043052","29.920917"],["-90.043145","29.920771"],["-90.043239","29.920625"],["-90.043332","29.920479"],["-90.043425","29.920333"],["-90.043518","29.920187"],["-90.043611","29.920041"],["-90.043705","29.919896"],["-90.043798","29.919750"],["-90.043969","29.919847"],["-90.043928","29.919967"],["-90.043886","29.920087"],["-90.043809","29.920200"],["-90.043731","29.920313"],["-90.043654","29.920426"],["-90.043576","29.920539"],["-90.043499","29.920652"],["-90.043422","29.920765"],["-90.043344","29.920878"],["-90.043267","29.920991"],["-90.043103","29.920961"],["-90.042940","29.920931"],["-90.042730","29.920949"],["-90.042675","29.921036"],["-90.042620","29.921122"],["-90.042565","29.921209"],["-90.042510","29.921296"],["-90.042455","29.921382"],["-90.042400","29.921469"],["-90.042345","29.921555"],["-90.042290","29.921642"],["-90.042202","29.921776"],["-90.042114","29.921909"],["-90.042026","29.922043"],["-90.041938","29.922177"],["-90.041850","29.922310"],["-90.041761","29.922444"],["-90.041673","29.922578"],["-90.041585","29.922711"],["-90.041497","29.922845"],["-90.041409","29.922979"],["-90.041320","29.923112"],["-90.041232","29.923246"],["-90.041144","29.923380"],["-90.041056","29.923513"],["-90.040968","29.923647"],["-90.040880","29.923781"],["-90.040779","29.923936"],["-90.040678","29.924091"],["-90.040578","29.924246"],["-90.040477","29.924401"],["-90.040377","29.924557"],["-90.040276","29.924712"],["-90.040175","29.924867"],["-90.040075","29.925022"],["-90.039977","29.925174"],["-90.039879","29.925327"],["-90.039781","29.925479"],["-90.039683","29.925631"],["-90.039585","29.925783"],["-90.039487","29.925936"],["-90.039390","29.926088"],["-90.039292","29.926240"],["-90.039206","29.926398"],["-90.039120","29.926556"],["-90.039034","29.926714"],["-90.038948","29.926872"],["-90.038887","29.927006"],["-90.038825","29.927139"],["-90.038763","29.927272"],["-90.038702","29.927405"],["-90.038640","29.927538"],["-90.038578","29.927671"],["-90.038517","29.927804"],["-90.038455","29.927937"],["-90.038353","29.928065"],["-90.038251","29.928193"],["-90.038181","29.928292"],["-90.038112","29.928390"],["-90.038042","29.928489"],["-90.037972","29.928588"],["-90.037902","29.928709"],["-90.037833","29.928830"],["-90.037796","29.929017"],["-90.037760","29.929204"],["-90.037724","29.929391"],["-90.037688","29.929578"],["-90.037660","29.929690"],["-90.037631","29.929801"],["-90.037603","29.929913"],["-90.037575","29.930025"],["-90.037547","29.930136"],["-90.037519","29.930248"],["-90.037491","29.930359"],["-90.037462","29.930471"],["-90.037420","29.930641"],["-90.037377","29.930810"],["-90.037348","29.930997"],["-90.037319","29.931184"],["-90.037290","29.931372"],["-90.037261","29.931559"],["-90.037296","29.931663"],["-90.037331","29.931768"],["-90.037322","29.931935"],["-90.037312","29.932103"],["-90.037303","29.932270"],["-90.037294","29.932437"],["-90.037284","29.932605"],["-90.037275","29.932772"],["-90.037265","29.932939"],["-90.037256","29.933107"],["-90.037258","29.933249"],["-90.037260","29.933390"],["-90.037262","29.933532"],["-90.037264","29.933674"],["-90.037266","29.933816"],["-90.037268","29.933958"],["-90.037270","29.934099"],["-90.037272","29.934241"],["-90.037294","29.934403"],["-90.037316","29.934566"],["-90.037338","29.934728"],["-90.037360","29.934890"],["-90.037380","29.935010"],["-90.037410","29.935090"],["-90.037420","29.935130"],["-90.037440","29.935200"],["-90.037450","29.935220"],["-90.037480","29.935290"],["-90.037520","29.935390"],["-90.037570","29.935510"],["-90.037610","29.935600"],["-90.037670","29.935700"],["-90.037720","29.935800"],["-90.037770","29.935880"],["-90.037850","29.935990"],["-90.037910","29.936080"],["-90.037980","29.936170"],["-90.038060","29.936270"],["-90.038120","29.936350"],["-90.038200","29.936440"],["-90.038230","29.936480"],["-90.038270","29.936520"],["-90.038360","29.936620"],["-90.038460","29.936710"],["-90.038520","29.936780"],["-90.038610","29.936860"],["-90.038680","29.936920"],["-90.038700","29.936930"],["-90.038790","29.937020"],["-90.038880","29.937090"],["-90.038970","29.937160"],["-90.039060","29.937230"],["-90.039100","29.937270"],["-90.039120","29.937280"],["-90.039250","29.937370"],["-90.039300","29.937410"],["-90.039360","29.937450"],["-90.039470","29.937520"],["-90.039570","29.937580"],["-90.039680","29.937640"],["-90.039770","29.937690"],["-90.039890","29.937760"],["-90.039985","29.937810"],["-90.040080","29.937860"],["-90.040220","29.937920"],["-90.040340","29.937980"],["-90.040390","29.938000"],["-90.040530","29.938050"],["-90.040690","29.938120"],["-90.040800","29.938155"],["-90.040910","29.938190"],["-90.041010","29.938220"],["-90.041120","29.938250"],["-90.041290","29.938300"],["-90.041400","29.938320"],["-90.041510","29.938350"],["-90.041520","29.938350"],["-90.041640","29.938380"],["-90.041790","29.938400"],["-90.041910","29.938420"],["-90.042030","29.938430"],["-90.042150","29.938450"],["-90.042280","29.938460"],["-90.042405","29.938465"],["-90.042530","29.938470"],["-90.042660","29.938480"],["-90.042810","29.938490"],["-90.042960","29.938500"],["-90.043150","29.938510"],["-90.043270","29.938510"],["-90.043340","29.938520"],["-90.043390","29.938520"],["-90.043520","29.938530"],["-90.043710","29.938540"],["-90.043880","29.938550"],["-90.044015","29.938555"],["-90.044150","29.938560"],["-90.044280","29.938570"],["-90.044410","29.938580"],["-90.044540","29.938590"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047310","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052508","29.938928"],["-90.052675","29.938925"],["-90.052843","29.938923"],["-90.053010","29.938920"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053345","29.938918"],["-90.053510","29.938915"],["-90.053675","29.938913"],["-90.053840","29.938910"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060130","29.938860"],["-90.060270","29.938860"],["-90.060340","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060675","29.938860"],["-90.060810","29.938860"],["-90.060955","29.938855"],["-90.061100","29.938850"],["-90.061240","29.938850"],["-90.061380","29.938850"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062360","29.938840"],["-90.062580","29.938840"],["-90.062790","29.938840"],["-90.062918","29.938840"],["-90.063045","29.938840"],["-90.063173","29.938840"],["-90.063300","29.938840"],["-90.063390","29.938840"],["-90.063570","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067675","29.939545"],["-90.067880","29.939610"],["-90.068020","29.939650"],["-90.068150","29.939690"],["-90.068300","29.939730"],["-90.068490","29.939800"],["-90.068670","29.939865"],["-90.068850","29.939930"],["-90.068990","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940200"],["-90.069460","29.940240"],["-90.069620","29.940320"],["-90.069735","29.940385"],["-90.069850","29.940450"],["-90.069960","29.940510"],["-90.070070","29.940570"],["-90.070180","29.940630"],["-90.070290","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070910","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071650","29.941390"],["-90.071750","29.941450"],["-90.071860","29.941500"],["-90.071930","29.941550"],["-90.072050","29.941610"],["-90.072227","29.941703"],["-90.072405","29.941795"],["-90.072582","29.941888"],["-90.072760","29.941980"],["-90.072865","29.942035"],["-90.072970","29.942090"],["-90.073100","29.942160"],["-90.073230","29.942240"],["-90.073380","29.942320"],["-90.073557","29.942420"],["-90.073735","29.942520"],["-90.073912","29.942620"],["-90.074090","29.942720"],["-90.074140","29.942830"],["-90.074280","29.942920"],["-90.074350","29.942970"],["-90.074420","29.943030"],["-90.074470","29.943070"],["-90.074510","29.943100"],["-90.074610","29.943180"],["-90.074710","29.943260"],["-90.074800","29.943335"],["-90.074890","29.943410"],["-90.074980","29.943485"],["-90.075070","29.943560"],["-90.075150","29.943630"],["-90.075255","29.943695"],["-90.075360","29.943760"],["-90.075440","29.943820"],["-90.075480","29.943840"],["-90.075540","29.943880"],["-90.075560","29.943880"],["-90.075660","29.943945"],["-90.075760","29.944010"],["-90.075850","29.944070"],["-90.075860","29.944070"],["-90.075920","29.944110"],["-90.075970","29.944140"],["-90.076040","29.944210"],["-90.076090","29.944270"],["-90.076110","29.944300"],["-90.076170","29.944390"],["-90.076210","29.944470"],["-90.076220","29.944510"],["-90.076240","29.944580"],["-90.076250","29.944680"],["-90.076250","29.944750"],["-90.076250","29.944800"],["-90.076250","29.944810"],["-90.076240","29.944840"],["-90.076220","29.944910"],["-90.076190","29.944970"],["-90.076140","29.945070"],["-90.076080","29.945160"],["-90.076030","29.945230"],["-90.075930","29.945350"],["-90.075920","29.945380"],["-90.075910","29.945400"],["-90.075910","29.945410"],["-90.075910","29.945440"],["-90.075840","29.945590"],["-90.075745","29.945720"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945990"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075470","29.946348"],["-90.075440","29.946445"],["-90.075410","29.946543"],["-90.075380","29.946640"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.041696","29.935302"],["-90.041929","29.930776"],["-89.982893","29.923220"],["-89.987890","29.925327"],["-89.990800","29.926685"],["-89.992202","29.927194"],["-89.995548","29.928676"],["-89.997491","29.929524"],["-89.999580","29.930453"],["-90.001273","29.931203"],["-90.002988","29.931953"],["-90.005410","29.933142"],["-90.007789","29.934079"],["-90.008745","29.934534"],["-90.009992","29.935088"],["-90.011458","29.935731"],["-90.013308","29.936543"],["-90.014492","29.937052"],["-90.016280","29.937855"],["-90.017787","29.938516"],["-90.020188","29.939578"],["-90.022423","29.940623"],["-90.025124","29.941621"],["-90.027183","29.942603"],["-90.029427","29.943468"],["-90.031267","29.944163"],["-90.033583","29.944937"],["-90.036674","29.945058"],["-90.041413","29.940062"],["-90.041483","29.937772"],["-90.041818","29.933048"],["-90.045697","29.942143"],["-90.047429","29.942189"],["-90.049545","29.942296"],["-90.053661","29.954274"],["-90.053680","29.950461"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.052243","29.944447"],["-90.052127","29.942366"],["-90.075299","29.946626"],["-90.055302","29.952968"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.050706","29.942228"],["-90.035354","29.948182"],["-90.038445","29.948349"],["-90.040489","29.948448"],["-90.043497","29.941810"],["-90.041236","29.941640"]]},{"type":"LineString","coordinates":[["-89.982893","29.923220"],["-89.983092","29.923272"],["-89.983290","29.923324"],["-89.983489","29.923376"],["-89.983540","29.923389"],["-89.983726","29.923468"],["-89.983909","29.923553"],["-89.984093","29.923637"],["-89.984281","29.923712"],["-89.984470","29.923787"],["-89.984659","29.923862"],["-89.984847","29.923937"],["-89.985036","29.924012"],["-89.985080","29.924029"],["-89.985266","29.924109"],["-89.985452","29.924189"],["-89.985570","29.924240"],["-89.985766","29.924300"],["-89.985930","29.924350"],["-89.986115","29.924431"],["-89.986300","29.924512"],["-89.986485","29.924594"],["-89.986671","29.924675"],["-89.986856","29.924756"],["-89.986910","29.924780"],["-89.987084","29.924877"],["-89.987259","29.924975"],["-89.987433","29.925072"],["-89.987608","29.925170"],["-89.987782","29.925267"],["-89.987890","29.925327"],["-89.987950","29.925230"],["-89.988020","29.925260"],["-89.988150","29.925318"],["-89.988280","29.925375"],["-89.988410","29.925433"],["-89.988540","29.925490"],["-89.988670","29.925548"],["-89.988800","29.925605"],["-89.988930","29.925663"],["-89.989060","29.925720"],["-89.989174","29.925771"],["-89.989289","29.925823"],["-89.989403","29.925874"],["-89.989517","29.925925"],["-89.989632","29.925976"],["-89.989746","29.926028"],["-89.989861","29.926079"],["-89.989975","29.926130"],["-89.990089","29.926181"],["-89.990204","29.926233"],["-89.990318","29.926284"],["-89.990432","29.926335"],["-89.990547","29.926386"],["-89.990661","29.926438"],["-89.990776","29.926489"],["-89.990890","29.926540"],["-89.990840","29.926700"],["-89.990800","29.926685"],["-89.990840","29.926700"],["-89.990890","29.926540"],["-89.991000","29.926580"],["-89.991134","29.926639"],["-89.991267","29.926698"],["-89.991401","29.926756"],["-89.991535","29.926815"],["-89.991669","29.926874"],["-89.991802","29.926933"],["-89.991936","29.926991"],["-89.992070","29.927050"],["-89.992202","29.927194"],["-89.992405","29.927232"],["-89.992507","29.927251"],["-89.992659","29.927330"],["-89.992845","29.927409"],["-89.993032","29.927488"],["-89.993218","29.927567"],["-89.993403","29.927649"],["-89.993589","29.927729"],["-89.993775","29.927809"],["-89.993960","29.927890"],["-89.994145","29.927971"],["-89.994331","29.928052"],["-89.994516","29.928133"],["-89.994701","29.928214"],["-89.994760","29.928240"],["-89.994935","29.928337"],["-89.995110","29.928434"],["-89.995285","29.928530"],["-89.995460","29.928627"],["-89.995548","29.928676"],["-89.995753","29.928704"],["-89.995876","29.928721"],["-89.995920","29.928740"],["-89.996104","29.928824"],["-89.996288","29.928907"],["-89.996471","29.928991"],["-89.996600","29.929050"],["-89.996670","29.929080"],["-89.996846","29.929175"],["-89.997022","29.929270"],["-89.997198","29.929366"],["-89.997374","29.929461"],["-89.997491","29.929524"],["-89.997694","29.929561"],["-89.997800","29.929580"],["-89.997985","29.929661"],["-89.998171","29.929741"],["-89.998357","29.929822"],["-89.998490","29.929880"],["-89.998674","29.929963"],["-89.998859","29.930045"],["-89.999043","29.930128"],["-89.999228","29.930210"],["-89.999390","29.930322"],["-89.999552","29.930434"],["-89.999580","29.930453"],["-89.999781","29.930496"],["-89.999940","29.930530"],["-90.000125","29.930611"],["-90.000311","29.930691"],["-90.000496","29.930772"],["-90.000682","29.930853"],["-90.000790","29.930900"],["-90.000958","29.931005"],["-90.001126","29.931111"],["-90.001273","29.931203"],["-90.001475","29.931244"],["-90.001677","29.931285"],["-90.001863","29.931365"],["-90.002047","29.931449"],["-90.002231","29.931532"],["-90.002414","29.931616"],["-90.002598","29.931699"],["-90.002764","29.931807"],["-90.002930","29.931915"],["-90.002988","29.931953"],["-90.003190","29.931996"],["-90.003300","29.932019"],["-90.003485","29.932100"],["-90.003670","29.932181"],["-90.003779","29.932229"],["-90.003965","29.932308"],["-90.004110","29.932370"],["-90.004240","29.932430"],["-90.004425","29.932512"],["-90.004610","29.932593"],["-90.004759","29.932659"],["-90.004839","29.932689"],["-90.005024","29.932770"],["-90.005209","29.932852"],["-90.005316","29.933006"],["-90.005410","29.933142"],["-90.005615","29.933113"],["-90.005753","29.933093"],["-90.005937","29.933176"],["-90.006121","29.933259"],["-90.006210","29.933299"],["-90.006395","29.933380"],["-90.006509","29.933430"],["-90.006694","29.933511"],["-90.006760","29.933540"],["-90.006948","29.933616"],["-90.007130","29.933690"],["-90.007279","29.933759"],["-90.007447","29.933864"],["-90.007615","29.933970"],["-90.007789","29.934079"],["-90.007987","29.934133"],["-90.008167","29.934183"],["-90.008337","29.934286"],["-90.008507","29.934389"],["-90.008677","29.934493"],["-90.008745","29.934534"],["-90.008948","29.934573"],["-90.009150","29.934612"],["-90.009210","29.934624"],["-90.009395","29.934706"],["-90.009540","29.934770"],["-90.009701","29.934883"],["-90.009862","29.934997"],["-90.009992","29.935088"],["-90.010195","29.935124"],["-90.010399","29.935161"],["-90.010461","29.935172"],["-90.010646","29.935253"],["-90.010799","29.935320"],["-90.010940","29.935379"],["-90.011040","29.935420"],["-90.011225","29.935501"],["-90.011362","29.935636"],["-90.011458","29.935731"],["-90.011661","29.935769"],["-90.011864","29.935807"],["-90.011941","29.935821"],["-90.012126","29.935902"],["-90.012189","29.935929"],["-90.012359","29.936009"],["-90.012545","29.936089"],["-90.012731","29.936169"],["-90.012800","29.936199"],["-90.012970","29.936279"],["-90.013124","29.936399"],["-90.013278","29.936520"],["-90.013308","29.936543"],["-90.013503","29.936604"],["-90.013698","29.936666"],["-90.013779","29.936691"],["-90.013958","29.936782"],["-90.014137","29.936873"],["-90.014316","29.936963"],["-90.014492","29.937052"],["-90.014688","29.937111"],["-90.014884","29.937170"],["-90.014949","29.937189"],["-90.015129","29.937279"],["-90.015309","29.937369"],["-90.015488","29.937459"],["-90.015668","29.937549"],["-90.015848","29.937639"],["-90.016027","29.937729"],["-90.016207","29.937819"],["-90.016280","29.937855"],["-90.016478","29.937909"],["-90.016676","29.937964"],["-90.016738","29.937981"],["-90.016917","29.938073"],["-90.017096","29.938164"],["-90.017275","29.938255"],["-90.017454","29.938346"],["-90.017632","29.938437"],["-90.017787","29.938516"],["-90.017991","29.938551"],["-90.018173","29.938582"],["-90.018357","29.938665"],["-90.018410","29.938689"],["-90.018594","29.938772"],["-90.018778","29.938856"],["-90.018962","29.938939"],["-90.019119","29.939010"],["-90.019304","29.939092"],["-90.019488","29.939175"],["-90.019661","29.939274"],["-90.019834","29.939374"],["-90.020007","29.939474"],["-90.020188","29.939578"],["-90.020260","29.939580"],["-90.020260","29.939490"],["-90.020402","29.939553"],["-90.020545","29.939615"],["-90.020687","29.939678"],["-90.020830","29.939740"],["-90.020972","29.939803"],["-90.021115","29.939865"],["-90.021257","29.939928"],["-90.021400","29.939990"],["-90.021542","29.940055"],["-90.021685","29.940120"],["-90.021827","29.940185"],["-90.021970","29.940250"],["-90.022112","29.940315"],["-90.022255","29.940380"],["-90.022397","29.940445"],["-90.022540","29.940510"],["-90.022510","29.940580"],["-90.022430","29.940580"],["-90.022423","29.940623"],["-90.022430","29.940580"],["-90.022510","29.940580"],["-90.022540","29.940510"],["-90.022662","29.940563"],["-90.022785","29.940615"],["-90.022907","29.940668"],["-90.023030","29.940720"],["-90.023152","29.940773"],["-90.023275","29.940825"],["-90.023397","29.940878"],["-90.023520","29.940930"],["-90.023630","29.940980"],["-90.023740","29.941030"],["-90.023870","29.941088"],["-90.024000","29.941145"],["-90.024130","29.941203"],["-90.024260","29.941260"],["-90.024400","29.941320"],["-90.024512","29.941365"],["-90.024625","29.941410"],["-90.024737","29.941455"],["-90.024850","29.941500"],["-90.024920","29.941530"],["-90.024960","29.941580"],["-90.025020","29.941610"],["-90.025124","29.941621"],["-90.025302","29.941714"],["-90.025441","29.941787"],["-90.025549","29.941839"],["-90.025734","29.941920"],["-90.025870","29.941980"],["-90.026053","29.942065"],["-90.026236","29.942150"],["-90.026300","29.942180"],["-90.026490","29.942252"],["-90.026680","29.942325"],["-90.026849","29.942389"],["-90.027016","29.942496"],["-90.027183","29.942603"],["-90.027385","29.942643"],["-90.027588","29.942682"],["-90.027659","29.942696"],["-90.027849","29.942768"],["-90.028039","29.942840"],["-90.028220","29.942909"],["-90.028320","29.942950"],["-90.028510","29.943022"],["-90.028700","29.943094"],["-90.028891","29.943166"],["-90.029065","29.943264"],["-90.029239","29.943362"],["-90.029413","29.943460"],["-90.029427","29.943468"],["-90.029630","29.943506"],["-90.029833","29.943543"],["-90.030026","29.943608"],["-90.030218","29.943678"],["-90.030408","29.943749"],["-90.030599","29.943820"],["-90.030790","29.943890"],["-90.030979","29.943966"],["-90.031142","29.944077"],["-90.031267","29.944163"],["-90.031469","29.944204"],["-90.031671","29.944245"],["-90.031863","29.944314"],["-90.032053","29.944387"],["-90.032242","29.944460"],["-90.032432","29.944533"],["-90.032621","29.944607"],["-90.032813","29.944675"],["-90.033006","29.944743"],["-90.033110","29.944780"],["-90.033300","29.944820"],["-90.033487","29.944897"],["-90.033583","29.944937"],["-90.033789","29.944918"],["-90.033996","29.944900"],["-90.034074","29.944893"],["-90.034281","29.944904"],["-90.034488","29.944915"],["-90.034580","29.944920"],["-90.034787","29.944930"],["-90.034980","29.944940"],["-90.035187","29.944948"],["-90.035395","29.944956"],["-90.035489","29.944960"],["-90.035696","29.944968"],["-90.035759","29.944970"],["-90.035966","29.944977"],["-90.036174","29.944985"],["-90.036299","29.944989"],["-90.036502","29.945026"],["-90.036674","29.945058"],["-90.036755","29.945224"],["-90.036806","29.945329"],["-90.036794","29.945509"],["-90.036781","29.945688"],["-90.036769","29.945868"],["-90.036757","29.946047"],["-90.036745","29.946227"],["-90.036733","29.946406"],["-90.036721","29.946586"],["-90.036709","29.946760"],["-90.036691","29.946939"],["-90.036680","29.947049"],["-90.036667","29.947229"],["-90.036654","29.947408"],["-90.036641","29.947588"],["-90.036629","29.947767"],["-90.036616","29.947947"],["-90.036609","29.948040"],["-90.036402","29.948033"],["-90.036194","29.948026"],["-90.035987","29.948018"],["-90.035779","29.948011"],["-90.035572","29.948003"],["-90.035365","29.947995"],["-90.035157","29.947987"],["-90.035044","29.947983"],["-90.034837","29.947974"],["-90.034629","29.947965"],["-90.034422","29.947957"],["-90.034260","29.947950"],["-90.034250","29.948130"],["-90.034457","29.948139"],["-90.034665","29.948149"],["-90.034872","29.948159"],["-90.035079","29.948169"],["-90.035286","29.948179"],["-90.035354","29.948182"],["-90.035562","29.948183"],["-90.035769","29.948184"],["-90.035864","29.948184"],["-90.036071","29.948191"],["-90.036279","29.948199"],["-90.036486","29.948206"],["-90.036600","29.948210"],["-90.036807","29.948216"],["-90.037015","29.948223"],["-90.037222","29.948229"],["-90.037430","29.948235"],["-90.037580","29.948240"],["-90.037785","29.948266"],["-90.037991","29.948292"],["-90.038196","29.948318"],["-90.038402","29.948344"],["-90.038445","29.948349"],["-90.038650","29.948323"],["-90.038837","29.948299"],["-90.039044","29.948308"],["-90.039252","29.948316"],["-90.039459","29.948325"],["-90.039570","29.948330"],["-90.039777","29.948341"],["-90.039984","29.948352"],["-90.040192","29.948363"],["-90.040389","29.948419"],["-90.040489","29.948448"],["-90.040485","29.948628"],["-90.040481","29.948808"],["-90.040477","29.948987"],["-90.040473","29.949167"],["-90.040470","29.949329"],["-90.040459","29.949509"],["-90.040449","29.949688"],["-90.040438","29.949868"],["-90.040427","29.950047"],["-90.040416","29.950227"],["-90.040406","29.950407"],["-90.040399","29.950520"],["-90.040387","29.950700"],["-90.040375","29.950879"],["-90.040363","29.951059"],["-90.040351","29.951238"],["-90.040338","29.951418"],["-90.040326","29.951597"],["-90.040320","29.951690"],["-90.040309","29.951870"],["-90.040298","29.952049"],["-90.040287","29.952229"],["-90.040277","29.952408"],["-90.040266","29.952588"],["-90.040255","29.952768"],["-90.040250","29.952849"],["-90.040237","29.953029"],["-90.040223","29.953208"],["-90.040210","29.953387"],["-90.040194","29.953567"],["-90.040179","29.953746"],["-90.040169","29.953860"],["-90.040366","29.953916"],["-90.040449","29.953940"],["-90.040649","29.953987"],["-90.040849","29.954035"],["-90.041050","29.954082"],["-90.041250","29.954129"],["-90.041451","29.954176"],["-90.041550","29.954200"],["-90.041752","29.954243"],["-90.041953","29.954287"],["-90.042154","29.954330"],["-90.042356","29.954374"],["-90.042557","29.954417"],["-90.042759","29.954459"],["-90.042961","29.954502"],["-90.043163","29.954544"],["-90.043364","29.954586"],["-90.043566","29.954628"],["-90.043769","29.954667"],["-90.043972","29.954706"],["-90.044174","29.954745"],["-90.044377","29.954784"],["-90.044580","29.954823"],["-90.044654","29.954837"],["-90.044860","29.954818"],["-90.045006","29.954804"],["-90.045212","29.954829"],["-90.045417","29.954853"],["-90.045623","29.954877"],["-90.045730","29.954890"],["-90.045929","29.954940"],["-90.046129","29.954990"],["-90.046328","29.955040"],["-90.046459","29.955073"],["-90.046664","29.955043"],["-90.046868","29.955012"],["-90.047075","29.955023"],["-90.047283","29.955034"],["-90.047490","29.955045"],["-90.047697","29.955056"],["-90.047770","29.955060"],["-90.047975","29.955087"],["-90.048180","29.955115"],["-90.048386","29.955142"],["-90.048591","29.955170"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953317"],["-90.055155","29.953215"],["-90.055250","29.953055"],["-90.055302","29.952968"],["-90.055279","29.952789"],["-90.055255","29.952611"],["-90.055250","29.952570"],["-90.055190","29.952500"],["-90.055130","29.952469"],["-90.054927","29.952430"],["-90.054896","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054133","29.951116"],["-90.054026","29.950962"],["-90.053920","29.950807"],["-90.053813","29.950653"],["-90.053706","29.950499"],["-90.053680","29.950461"],["-90.053516","29.950351"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052948","29.949707"],["-90.052860","29.949600"],["-90.052740","29.949453"],["-90.052620","29.949307"],["-90.052499","29.949160"],["-90.052379","29.949013"],["-90.052342","29.948836"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.052208","29.945259"],["-90.052216","29.945080"],["-90.052223","29.944900"],["-90.052231","29.944720"],["-90.052239","29.944540"],["-90.052243","29.944447"],["-90.052168","29.944279"],["-90.052127","29.944189"],["-90.052115","29.944009"],["-90.052103","29.943830"],["-90.052091","29.943650"],["-90.052079","29.943471"],["-90.052070","29.943330"],["-90.052081","29.943150"],["-90.052091","29.942971"],["-90.052102","29.942791"],["-90.052112","29.942611"],["-90.052123","29.942432"],["-90.052127","29.942366"],["-90.051928","29.942313"],["-90.051802","29.942280"],["-90.051595","29.942291"],["-90.051388","29.942301"],["-90.051180","29.942311"],["-90.050977","29.942275"],["-90.050773","29.942240"],["-90.050706","29.942228"],["-90.050514","29.942296"],["-90.050353","29.942353"],["-90.050146","29.942365"],["-90.049939","29.942378"],["-90.049737","29.942336"],["-90.049545","29.942296"],["-90.049338","29.942305"],["-90.049130","29.942315"],["-90.048923","29.942324"],["-90.048716","29.942334"],["-90.048580","29.942340"],["-90.048373","29.942327"],["-90.048166","29.942314"],["-90.047959","29.942300"],["-90.047752","29.942287"],["-90.047556","29.942228"],["-90.047429","29.942189"],["-90.047222","29.942202"],["-90.047015","29.942216"],["-90.046808","29.942229"],["-90.046640","29.942240"],["-90.046550","29.942229"],["-90.046344","29.942208"],["-90.046138","29.942187"],["-90.045931","29.942167"],["-90.045725","29.942146"],["-90.045697","29.942143"],["-90.045490","29.942151"],["-90.045282","29.942158"],["-90.045186","29.942162"],["-90.044979","29.942149"],["-90.044772","29.942135"],["-90.044679","29.942129"],["-90.044475","29.942096"],["-90.044309","29.942070"],["-90.044112","29.942013"],["-90.043915","29.941956"],["-90.043723","29.941889"],["-90.043530","29.941822"],["-90.043497","29.941810"],["-90.043289","29.941814"],["-90.043162","29.941816"],["-90.042955","29.941801"],["-90.042748","29.941787"],["-90.042541","29.941773"],["-90.042334","29.941759"],["-90.042128","29.941737"],["-90.041922","29.941714"],["-90.041716","29.941692"],["-90.041510","29.941670"],["-90.041305","29.941647"],["-90.041236","29.941640"],["-90.041204","29.941462"],["-90.041179","29.941320"],["-90.041195","29.941141"],["-90.041210","29.940980"],["-90.041226","29.940801"],["-90.041242","29.940621"],["-90.041258","29.940442"],["-90.041270","29.940310"],["-90.041363","29.940149"],["-90.041413","29.940062"],["-90.041423","29.939882"],["-90.041433","29.939717"],["-90.041490","29.939560"],["-90.041510","29.939390"],["-90.041510","29.939240"],["-90.041500","29.939110"],["-90.041469","29.939000"],["-90.041433","29.938823"],["-90.041410","29.938710"],["-90.041401","29.938530"],["-90.041397","29.938349"],["-90.041392","29.938168"],["-90.041388","29.937987"],["-90.041384","29.937806"],["-90.041483","29.937772"],["-90.041468","29.937646"],["-90.041454","29.937520"],["-90.041439","29.937395"],["-90.041425","29.937269"],["-90.041433","29.937148"],["-90.041441","29.937028"],["-90.041449","29.936907"],["-90.041457","29.936787"],["-90.041465","29.936666"],["-90.041473","29.936546"],["-90.041481","29.936425"],["-90.041489","29.936304"],["-90.041497","29.936184"],["-90.041505","29.936063"],["-90.041513","29.935943"],["-90.041521","29.935822"],["-90.041529","29.935702"],["-90.041538","29.935581"],["-90.041546","29.935460"],["-90.041554","29.935340"],["-90.041696","29.935302"],["-90.041559","29.935207"],["-90.041566","29.935092"],["-90.041573","29.934976"],["-90.041581","29.934861"],["-90.041588","29.934745"],["-90.041600","29.934580"],["-90.041605","29.934480"],["-90.041610","29.934380"],["-90.041615","29.934278"],["-90.041620","29.934175"],["-90.041625","29.934073"],["-90.041630","29.933970"],["-90.041645","29.933835"],["-90.041660","29.933700"],["-90.041670","29.933520"],["-90.041680","29.933340"],["-90.041690","29.933190"],["-90.041700","29.933040"],["-90.041818","29.933048"],["-90.041700","29.933040"],["-90.041700","29.932960"],["-90.041713","29.932770"],["-90.041725","29.932580"],["-90.041738","29.932390"],["-90.041750","29.932200"],["-90.041763","29.932018"],["-90.041775","29.931835"],["-90.041788","29.931653"],["-90.041800","29.931470"],["-90.041803","29.931363"],["-90.041805","29.931255"],["-90.041808","29.931148"],["-90.041810","29.931040"],["-90.041815","29.930905"],["-90.041820","29.930770"],["-90.041929","29.930776"],["-90.041820","29.930770"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041845","29.930380"],["-90.041860","29.930200"],["-90.041875","29.930020"],["-90.041890","29.929840"],["-90.041900","29.929710"],["-90.041910","29.929525"],["-90.041920","29.929340"],["-90.041930","29.929200"],["-90.041940","29.929060"],["-90.041950","29.928880"],["-90.041960","29.928730"],["-90.041966","29.928618"],["-90.041973","29.928505"],["-90.041979","29.928393"],["-90.041985","29.928280"],["-90.041991","29.928168"],["-90.041998","29.928055"],["-90.042004","29.927943"],["-90.042010","29.927830"],["-90.042020","29.927685"],["-90.042030","29.927540"],["-90.042030","29.927440"],["-90.042030","29.927350"],["-90.042030","29.927310"],["-90.042040","29.927270"],["-90.042050","29.927160"],["-90.042060","29.927050"],["-90.042068","29.926920"],["-90.042075","29.926790"],["-90.042083","29.926660"],["-90.042090","29.926530"],["-90.042184","29.926584"],["-90.042155","29.926406"],["-90.042126","29.926228"],["-90.042116","29.926163"],["-90.042140","29.925984"],["-90.042145","29.925882"],["-90.042150","29.925780"],["-90.042154","29.925678"],["-90.042159","29.925576"],["-90.042164","29.925474"],["-90.042169","29.925372"],["-90.042174","29.925270"],["-90.042178","29.925168"],["-90.042258","29.925096"],["-90.042195","29.924919"],["-90.042203","29.924800"],["-90.042212","29.924680"],["-90.042220","29.924560"],["-90.042229","29.924441"],["-90.042237","29.924321"],["-90.042246","29.924201"],["-90.042254","29.924081"],["-90.042263","29.923962"],["-90.042271","29.923842"],["-90.042280","29.923722"],["-90.042288","29.923603"],["-90.042297","29.923483"],["-90.042305","29.923363"],["-90.042314","29.923244"],["-90.042322","29.923124"],["-90.042331","29.923004"],["-90.042296","29.922874"],["-90.042362","29.922771"],["-90.042429","29.922667"],["-90.042495","29.922564"],["-90.042561","29.922460"],["-90.042628","29.922357"],["-90.042694","29.922253"],["-90.042760","29.922150"],["-90.042827","29.922047"],["-90.042925","29.921897"],["-90.043023","29.921747"],["-90.043121","29.921597"],["-90.043218","29.921447"],["-90.043296","29.921333"],["-90.043374","29.921219"],["-90.043310","29.921105"],["-90.043245","29.920991"],["-90.043052","29.920917"],["-90.043145","29.920771"],["-90.043239","29.920625"],["-90.043332","29.920479"],["-90.043425","29.920333"],["-90.043518","29.920187"],["-90.043611","29.920041"],["-90.043705","29.919896"],["-90.043798","29.919750"],["-90.043969","29.919847"],["-90.043928","29.919967"],["-90.043886","29.920087"],["-90.043809","29.920200"],["-90.043731","29.920313"],["-90.043654","29.920426"],["-90.043576","29.920539"],["-90.043499","29.920652"],["-90.043422","29.920765"],["-90.043344","29.920878"],["-90.043267","29.920991"],["-90.043103","29.920961"],["-90.042940","29.920931"],["-90.042730","29.920949"],["-90.042675","29.921036"],["-90.042620","29.921122"],["-90.042565","29.921209"],["-90.042510","29.921296"],["-90.042455","29.921382"],["-90.042400","29.921469"],["-90.042345","29.921555"],["-90.042290","29.921642"],["-90.042202","29.921776"],["-90.042114","29.921909"],["-90.042026","29.922043"],["-90.041938","29.922177"],["-90.041850","29.922310"],["-90.041761","29.922444"],["-90.041673","29.922578"],["-90.041585","29.922711"],["-90.041497","29.922845"],["-90.041409","29.922979"],["-90.041320","29.923112"],["-90.041232","29.923246"],["-90.041144","29.923380"],["-90.041056","29.923513"],["-90.040968","29.923647"],["-90.040880","29.923781"],["-90.040779","29.923936"],["-90.040678","29.924091"],["-90.040578","29.924246"],["-90.040477","29.924401"],["-90.040377","29.924557"],["-90.040276","29.924712"],["-90.040175","29.924867"],["-90.040075","29.925022"],["-90.039977","29.925174"],["-90.039879","29.925327"],["-90.039781","29.925479"],["-90.039683","29.925631"],["-90.039585","29.925783"],["-90.039487","29.925936"],["-90.039390","29.926088"],["-90.039292","29.926240"],["-90.039206","29.926398"],["-90.039120","29.926556"],["-90.039034","29.926714"],["-90.038948","29.926872"],["-90.038887","29.927006"],["-90.038825","29.927139"],["-90.038763","29.927272"],["-90.038702","29.927405"],["-90.038640","29.927538"],["-90.038578","29.927671"],["-90.038517","29.927804"],["-90.038455","29.927937"],["-90.038353","29.928065"],["-90.038251","29.928193"],["-90.038181","29.928292"],["-90.038112","29.928390"],["-90.038042","29.928489"],["-90.037972","29.928588"],["-90.037902","29.928709"],["-90.037833","29.928830"],["-90.037796","29.929017"],["-90.037760","29.929204"],["-90.037724","29.929391"],["-90.037688","29.929578"],["-90.037660","29.929690"],["-90.037631","29.929801"],["-90.037603","29.929913"],["-90.037575","29.930025"],["-90.037547","29.930136"],["-90.037519","29.930248"],["-90.037491","29.930359"],["-90.037462","29.930471"],["-90.037420","29.930641"],["-90.037377","29.930810"],["-90.037348","29.930997"],["-90.037319","29.931184"],["-90.037290","29.931372"],["-90.037261","29.931559"],["-90.037296","29.931663"],["-90.037331","29.931768"],["-90.037322","29.931935"],["-90.037312","29.932103"],["-90.037303","29.932270"],["-90.037294","29.932437"],["-90.037284","29.932605"],["-90.037275","29.932772"],["-90.037265","29.932939"],["-90.037256","29.933107"],["-90.037258","29.933249"],["-90.037260","29.933390"],["-90.037262","29.933532"],["-90.037264","29.933674"],["-90.037266","29.933816"],["-90.037268","29.933958"],["-90.037270","29.934099"],["-90.037272","29.934241"],["-90.037294","29.934403"],["-90.037316","29.934566"],["-90.037338","29.934728"],["-90.037360","29.934890"],["-90.037380","29.935010"],["-90.037410","29.935090"],["-90.037420","29.935130"],["-90.037440","29.935200"],["-90.037450","29.935220"],["-90.037480","29.935290"],["-90.037520","29.935390"],["-90.037570","29.935510"],["-90.037610","29.935600"],["-90.037670","29.935700"],["-90.037720","29.935800"],["-90.037770","29.935880"],["-90.037850","29.935990"],["-90.037910","29.936080"],["-90.037980","29.936170"],["-90.038060","29.936270"],["-90.038120","29.936350"],["-90.038200","29.936440"],["-90.038230","29.936480"],["-90.038270","29.936520"],["-90.038360","29.936620"],["-90.038460","29.936710"],["-90.038520","29.936780"],["-90.038610","29.936860"],["-90.038680","29.936920"],["-90.038700","29.936930"],["-90.038790","29.937020"],["-90.038880","29.937090"],["-90.038970","29.937160"],["-90.039060","29.937230"],["-90.039100","29.937270"],["-90.039120","29.937280"],["-90.039250","29.937370"],["-90.039300","29.937410"],["-90.039360","29.937450"],["-90.039470","29.937520"],["-90.039570","29.937580"],["-90.039680","29.937640"],["-90.039770","29.937690"],["-90.039890","29.937760"],["-90.039985","29.937810"],["-90.040080","29.937860"],["-90.040220","29.937920"],["-90.040340","29.937980"],["-90.040390","29.938000"],["-90.040530","29.938050"],["-90.040690","29.938120"],["-90.040800","29.938155"],["-90.040910","29.938190"],["-90.041010","29.938220"],["-90.041120","29.938250"],["-90.041290","29.938300"],["-90.041400","29.938320"],["-90.041510","29.938350"],["-90.041520","29.938350"],["-90.041640","29.938380"],["-90.041790","29.938400"],["-90.041910","29.938420"],["-90.042030","29.938430"],["-90.042150","29.938450"],["-90.042280","29.938460"],["-90.042405","29.938465"],["-90.042530","29.938470"],["-90.042660","29.938480"],["-90.042810","29.938490"],["-90.042960","29.938500"],["-90.043150","29.938510"],["-90.043270","29.938510"],["-90.043340","29.938520"],["-90.043390","29.938520"],["-90.043520","29.938530"],["-90.043710","29.938540"],["-90.043880","29.938550"],["-90.044015","29.938555"],["-90.044150","29.938560"],["-90.044280","29.938570"],["-90.044410","29.938580"],["-90.044540","29.938590"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047310","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052508","29.938928"],["-90.052675","29.938925"],["-90.052843","29.938923"],["-90.053010","29.938920"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053345","29.938918"],["-90.053510","29.938915"],["-90.053675","29.938913"],["-90.053840","29.938910"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060130","29.938860"],["-90.060270","29.938860"],["-90.060340","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060675","29.938860"],["-90.060810","29.938860"],["-90.060955","29.938855"],["-90.061100","29.938850"],["-90.061240","29.938850"],["-90.061380","29.938850"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062360","29.938840"],["-90.062580","29.938840"],["-90.062790","29.938840"],["-90.062918","29.938840"],["-90.063045","29.938840"],["-90.063173","29.938840"],["-90.063300","29.938840"],["-90.063390","29.938840"],["-90.063570","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067675","29.939545"],["-90.067880","29.939610"],["-90.068020","29.939650"],["-90.068150","29.939690"],["-90.068300","29.939730"],["-90.068490","29.939800"],["-90.068670","29.939865"],["-90.068850","29.939930"],["-90.068990","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940200"],["-90.069460","29.940240"],["-90.069620","29.940320"],["-90.069735","29.940385"],["-90.069850","29.940450"],["-90.069960","29.940510"],["-90.070070","29.940570"],["-90.070180","29.940630"],["-90.070290","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070910","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071650","29.941390"],["-90.071750","29.941450"],["-90.071860","29.941500"],["-90.071930","29.941550"],["-90.072050","29.941610"],["-90.072227","29.941703"],["-90.072405","29.941795"],["-90.072582","29.941888"],["-90.072760","29.941980"],["-90.072865","29.942035"],["-90.072970","29.942090"],["-90.073100","29.942160"],["-90.073230","29.942240"],["-90.073380","29.942320"],["-90.073557","29.942420"],["-90.073735","29.942520"],["-90.073912","29.942620"],["-90.074090","29.942720"],["-90.074140","29.942830"],["-90.074280","29.942920"],["-90.074350","29.942970"],["-90.074420","29.943030"],["-90.074470","29.943070"],["-90.074510","29.943100"],["-90.074610","29.943180"],["-90.074710","29.943260"],["-90.074800","29.943335"],["-90.074890","29.943410"],["-90.074980","29.943485"],["-90.075070","29.943560"],["-90.075150","29.943630"],["-90.075255","29.943695"],["-90.075360","29.943760"],["-90.075440","29.943820"],["-90.075480","29.943840"],["-90.075540","29.943880"],["-90.075560","29.943880"],["-90.075660","29.943945"],["-90.075760","29.944010"],["-90.075850","29.944070"],["-90.075860","29.944070"],["-90.075920","29.944110"],["-90.075970","29.944140"],["-90.076040","29.944210"],["-90.076090","29.944270"],["-90.076110","29.944300"],["-90.076170","29.944390"],["-90.076210","29.944470"],["-90.076220","29.944510"],["-90.076240","29.944580"],["-90.076250","29.944680"],["-90.076250","29.944750"],["-90.076250","29.944800"],["-90.076250","29.944810"],["-90.076240","29.944840"],["-90.076220","29.944910"],["-90.076190","29.944970"],["-90.076140","29.945070"],["-90.076080","29.945160"],["-90.076030","29.945230"],["-90.075930","29.945350"],["-90.075920","29.945380"],["-90.075910","29.945400"],["-90.075910","29.945410"],["-90.075910","29.945440"],["-90.075840","29.945590"],["-90.075745","29.945720"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945990"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075470","29.946348"],["-90.075440","29.946445"],["-90.075410","29.946543"],["-90.075380","29.946640"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.041465","29.931337"],["-90.041474","29.932869"],["-90.049325","29.945461"],["-89.977042","29.920232"],["-89.982893","29.923220"],["-90.041070","29.945102"],["-90.041370","29.934492"],["-90.041283","29.935601"],["-90.040894","29.939920"],["-90.040788","29.942967"],["-90.038913","29.944976"],["-90.037077","29.944840"],["-90.034017","29.944691"],["-90.031754","29.944107"],["-90.029925","29.943376"],["-90.028532","29.942832"],["-90.027368","29.942269"],["-90.025227","29.941503"],["-90.022692","29.940487"],["-90.020384","29.939442"],["-90.017983","29.938353"],["-90.016476","29.937674"],["-90.014689","29.936898"],["-90.013088","29.936238"],["-90.011155","29.935380"],["-90.009659","29.934729"],["-90.008453","29.934193"],["-90.007404","29.933720"],["-90.004961","29.932630"],["-90.003101","29.931773"],["-90.001449","29.931086"],["-89.999662","29.930309"],["-89.997656","29.929416"],["-89.996035","29.928701"],["-89.992783","29.927290"],["-89.991048","29.926522"],["-89.988107","29.925209"],["-89.985229","29.923823"],["-89.983078","29.922904"],["-89.981062","29.921974"],["-89.979400","29.921278"],["-90.053661","29.954274"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.047376","29.945380"],["-90.045467","29.945298"],["-90.043227","29.945182"],["-90.055302","29.952968"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.074290","29.953176"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.041179","29.937251"],["-90.040665","29.945031"],["-90.040466","29.948142"],["-90.040314","29.950441"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075210","29.954670"],["-90.075180","29.954640"],["-90.075170","29.954620"],["-90.075160","29.954610"],["-90.075160","29.954590"],["-90.075160","29.954580"],["-90.075160","29.954560"],["-90.075160","29.954540"],["-90.075150","29.954490"],["-90.075160","29.954430"],["-90.075160","29.954410"],["-90.075170","29.954370"],["-90.075160","29.954360"],["-90.075150","29.954330"],["-90.075220","29.954180"],["-90.075280","29.954030"],["-90.075290","29.954000"],["-90.075340","29.953835"],["-90.075390","29.953670"],["-90.075340","29.953600"],["-90.075240","29.953540"],["-90.075140","29.953480"],["-90.075035","29.953439"],["-90.074930","29.953398"],["-90.074825","29.953356"],["-90.074720","29.953315"],["-90.074615","29.953274"],["-90.074510","29.953233"],["-90.074405","29.953191"],["-90.074300","29.953150"],["-90.074290","29.953176"],["-90.074300","29.953150"],["-90.074220","29.953110"],["-90.074260","29.952940"],["-90.074310","29.952785"],["-90.074360","29.952630"],["-90.074395","29.952520"],["-90.074430","29.952410"],["-90.074460","29.952280"],["-90.074495","29.952165"],["-90.074530","29.952050"],["-90.074575","29.951905"],["-90.074620","29.951760"],["-90.074670","29.951593"],["-90.074720","29.951425"],["-90.074770","29.951258"],["-90.074820","29.951090"],["-90.074870","29.950915"],["-90.074920","29.950740"],["-90.075000","29.950758"],["-90.074920","29.950740"],["-90.074960","29.950610"],["-90.075010","29.950480"],["-90.075045","29.950335"],["-90.075080","29.950190"],["-90.075130","29.950020"],["-90.075180","29.949850"],["-90.075220","29.949710"],["-90.075270","29.949550"],["-90.075290","29.949460"],["-90.075330","29.949350"],["-90.075340","29.949310"],["-90.075371","29.949203"],["-90.075403","29.949095"],["-90.075434","29.948988"],["-90.075465","29.948880"],["-90.075496","29.948773"],["-90.075528","29.948665"],["-90.075559","29.948558"],["-90.075680","29.948474"],["-90.075590","29.948450"],["-90.075620","29.948350"],["-90.075630","29.948260"],["-90.075630","29.948230"],["-90.075678","29.948068"],["-90.075725","29.947905"],["-90.075773","29.947743"],["-90.075820","29.947580"],["-90.075860","29.947430"],["-90.075898","29.947300"],["-90.075935","29.947170"],["-90.075973","29.947040"],["-90.076010","29.946910"],["-90.076050","29.946810"],["-90.076060","29.946770"],["-90.076060","29.946690"],["-90.076060","29.946630"],["-90.076040","29.946520"],["-90.076030","29.946440"],["-90.076010","29.946350"],["-90.075990","29.946280"],["-90.075970","29.946170"],["-90.075970","29.946160"],["-90.075960","29.946010"],["-90.075990","29.945850"],["-90.076020","29.945690"],["-90.076050","29.945510"],["-90.076150","29.945360"],["-90.076225","29.945255"],["-90.076300","29.945150"],["-90.076375","29.945045"],["-90.076450","29.944940"],["-90.076555","29.944795"],["-90.076660","29.944650"],["-90.076770","29.944500"],["-90.076830","29.944420"],["-90.076840","29.944400"],["-90.076900","29.944330"],["-90.076930","29.944290"],["-90.076970","29.944230"],["-90.076980","29.944220"],["-90.077030","29.944160"],["-90.077040","29.944150"],["-90.077080","29.944090"],["-90.077100","29.944070"],["-90.077130","29.944020"],["-90.077030","29.943970"],["-90.077020","29.943960"],["-90.076860","29.943845"],["-90.076700","29.943730"],["-90.076630","29.943720"],["-90.076590","29.943710"],["-90.076520","29.943690"],["-90.076460","29.943660"],["-90.076310","29.943590"],["-90.076135","29.943500"],["-90.075960","29.943410"],["-90.075820","29.943330"],["-90.075640","29.943230"],["-90.075580","29.943200"],["-90.075470","29.943140"],["-90.075400","29.943100"],["-90.075225","29.943005"],["-90.075050","29.942910"],["-90.075050","29.942900"],["-90.074960","29.942860"],["-90.074790","29.942760"],["-90.074770","29.942750"],["-90.074740","29.942730"],["-90.074690","29.942700"],["-90.074600","29.942650"],["-90.074500","29.942590"],["-90.074362","29.942518"],["-90.074225","29.942445"],["-90.074087","29.942373"],["-90.073950","29.942300"],["-90.073835","29.942248"],["-90.073720","29.942195"],["-90.073605","29.942143"],["-90.073490","29.942090"],["-90.073350","29.942020"],["-90.073180","29.941940"],["-90.073060","29.941930"],["-90.072880","29.941830"],["-90.072770","29.941770"],["-90.072670","29.941710"],["-90.072570","29.941660"],["-90.072460","29.941590"],["-90.072350","29.941530"],["-90.072205","29.941460"],["-90.072060","29.941390"],["-90.071960","29.941340"],["-90.071775","29.941235"],["-90.071590","29.941130"],["-90.071510","29.941080"],["-90.071405","29.941020"],["-90.071300","29.940960"],["-90.071170","29.940890"],["-90.071030","29.940810"],["-90.070917","29.940748"],["-90.070805","29.940685"],["-90.070692","29.940623"],["-90.070580","29.940560"],["-90.070480","29.940510"],["-90.070335","29.940425"],["-90.070190","29.940340"],["-90.070100","29.940290"],["-90.069940","29.940200"],["-90.069790","29.940115"],["-90.069640","29.940030"],["-90.069470","29.939940"],["-90.069300","29.939840"],["-90.069190","29.939780"],["-90.069080","29.939720"],["-90.068985","29.939665"],["-90.068890","29.939610"],["-90.068820","29.939570"],["-90.068695","29.939500"],["-90.068570","29.939430"],["-90.068415","29.939345"],["-90.068260","29.939260"],["-90.068130","29.939180"],["-90.067950","29.939090"],["-90.067830","29.939020"],["-90.067780","29.938990"],["-90.067740","29.938970"],["-90.067620","29.938900"],["-90.067490","29.938830"],["-90.067360","29.938750"],["-90.067180","29.938660"],["-90.067030","29.938580"],["-90.066990","29.938560"],["-90.066800","29.938480"],["-90.066660","29.938410"],["-90.066550","29.938365"],["-90.066440","29.938320"],["-90.066330","29.938270"],["-90.066240","29.938240"],["-90.066105","29.938190"],["-90.065970","29.938140"],["-90.065855","29.938105"],["-90.065740","29.938070"],["-90.065560","29.938010"],["-90.065450","29.937980"],["-90.065340","29.937950"],["-90.065210","29.937920"],["-90.065180","29.937920"],["-90.065090","29.937900"],["-90.064900","29.937860"],["-90.064750","29.937830"],["-90.064580","29.937810"],["-90.064370","29.937780"],["-90.064300","29.937770"],["-90.064110","29.937750"],["-90.063990","29.937740"],["-90.063870","29.937730"],["-90.063700","29.937720"],["-90.063560","29.937720"],["-90.063380","29.937720"],["-90.063350","29.937720"],["-90.063140","29.937720"],["-90.063005","29.937720"],["-90.062870","29.937720"],["-90.062750","29.937720"],["-90.062630","29.937720"],["-90.062475","29.937720"],["-90.062320","29.937720"],["-90.062310","29.937720"],["-90.062190","29.937725"],["-90.062070","29.937730"],["-90.061945","29.937730"],["-90.061820","29.937730"],["-90.061620","29.937720"],["-90.061520","29.937720"],["-90.061390","29.937720"],["-90.061250","29.937720"],["-90.061140","29.937720"],["-90.061040","29.937720"],["-90.060930","29.937720"],["-90.060770","29.937720"],["-90.060610","29.937720"],["-90.060460","29.937720"],["-90.060310","29.937720"],["-90.060105","29.937725"],["-90.059900","29.937730"],["-90.059690","29.937730"],["-90.059480","29.937730"],["-90.059275","29.937735"],["-90.059070","29.937740"],["-90.058860","29.937740"],["-90.058850","29.937740"],["-90.058650","29.937740"],["-90.058440","29.937740"],["-90.058233","29.937743"],["-90.058025","29.937745"],["-90.057818","29.937748"],["-90.057610","29.937750"],["-90.057600","29.937750"],["-90.057410","29.937750"],["-90.057253","29.937750"],["-90.057095","29.937750"],["-90.056938","29.937750"],["-90.056780","29.937750"],["-90.056575","29.937755"],["-90.056370","29.937760"],["-90.056155","29.937760"],["-90.055940","29.937760"],["-90.055735","29.937765"],["-90.055530","29.937770"],["-90.055320","29.937770"],["-90.055120","29.937770"],["-90.054920","29.937770"],["-90.054910","29.937770"],["-90.054700","29.937770"],["-90.054585","29.937770"],["-90.054470","29.937770"],["-90.054275","29.937775"],["-90.054080","29.937780"],["-90.054060","29.937780"],["-90.053933","29.937783"],["-90.053805","29.937785"],["-90.053678","29.937788"],["-90.053550","29.937790"],["-90.053350","29.937795"],["-90.053150","29.937800"],["-90.052940","29.937800"],["-90.052830","29.937810"],["-90.052650","29.937810"],["-90.052505","29.937815"],["-90.052360","29.937820"],["-90.052220","29.937820"],["-90.052080","29.937820"],["-90.051860","29.937830"],["-90.051640","29.937840"],["-90.051510","29.937840"],["-90.051365","29.937843"],["-90.051220","29.937845"],["-90.051075","29.937848"],["-90.050930","29.937850"],["-90.050890","29.937850"],["-90.050880","29.937850"],["-90.050790","29.937850"],["-90.050720","29.937850"],["-90.050680","29.937850"],["-90.050570","29.937850"],["-90.050500","29.937850"],["-90.050460","29.937850"],["-90.050420","29.937850"],["-90.050400","29.937850"],["-90.050380","29.937850"],["-90.050350","29.937850"],["-90.050280","29.937850"],["-90.050250","29.937850"],["-90.050240","29.937850"],["-90.050210","29.937850"],["-90.050200","29.937850"],["-90.050150","29.937850"],["-90.050130","29.937850"],["-90.050080","29.937850"],["-90.050040","29.937850"],["-90.049980","29.937850"],["-90.049850","29.937850"],["-90.049730","29.937840"],["-90.049600","29.937833"],["-90.049470","29.937825"],["-90.049340","29.937818"],["-90.049210","29.937810"],["-90.049100","29.937820"],["-90.048965","29.937820"],["-90.048830","29.937820"],["-90.048770","29.937820"],["-90.048630","29.937820"],["-90.048510","29.937820"],["-90.048380","29.937820"],["-90.048250","29.937820"],["-90.048065","29.937820"],["-90.047880","29.937820"],["-90.047745","29.937825"],["-90.047610","29.937830"],["-90.047430","29.937830"],["-90.047250","29.937830"],["-90.047070","29.937830"],["-90.046850","29.937830"],["-90.046725","29.937835"],["-90.046600","29.937840"],["-90.046415","29.937840"],["-90.046230","29.937840"],["-90.046140","29.937840"],["-90.046110","29.937840"],["-90.045980","29.937840"],["-90.045850","29.937840"],["-90.045670","29.937840"],["-90.045490","29.937840"],["-90.045355","29.937845"],["-90.045220","29.937850"],["-90.045090","29.937850"],["-90.044960","29.937850"],["-90.044830","29.937850"],["-90.044700","29.937850"],["-90.044565","29.937850"],["-90.044430","29.937850"],["-90.044295","29.937850"],["-90.044160","29.937850"],["-90.044030","29.937850"],["-90.043900","29.937850"],["-90.043700","29.937850"],["-90.043578","29.937850"],["-90.043455","29.937850"],["-90.043333","29.937850"],["-90.043210","29.937850"],["-90.043088","29.937850"],["-90.042965","29.937850"],["-90.042843","29.937850"],["-90.042720","29.937850"],["-90.042590","29.937840"],["-90.042500","29.937840"],["-90.042390","29.937840"],["-90.042230","29.937830"],["-90.042080","29.937810"],["-90.041970","29.937800"],["-90.041840","29.937780"],["-90.041725","29.937755"],["-90.041610","29.937730"],["-90.041530","29.937720"],["-90.041320","29.937660"],["-90.041170","29.937620"],["-90.041025","29.937565"],["-90.040880","29.937510"],["-90.040770","29.937465"],["-90.040660","29.937420"],["-90.040560","29.937380"],["-90.040530","29.937360"],["-90.040350","29.937265"],["-90.040170","29.937170"],["-90.040010","29.937070"],["-90.039920","29.937010"],["-90.039830","29.936950"],["-90.039700","29.936850"],["-90.039575","29.936750"],["-90.039450","29.936650"],["-90.039365","29.936570"],["-90.039280","29.936490"],["-90.039202","29.936403"],["-90.039080","29.936264"],["-90.038957","29.936126"],["-90.038925","29.935944"],["-90.038888","29.935832"],["-90.038850","29.935719"],["-90.038813","29.935606"],["-90.038775","29.935493"],["-90.038737","29.935381"],["-90.038700","29.935268"],["-90.038662","29.935155"],["-90.038625","29.935042"],["-90.038589","29.934896"],["-90.038553","29.934750"],["-90.038517","29.934603"],["-90.038481","29.934457"],["-90.038504","29.934340"],["-90.038526","29.934224"],["-90.038538","29.934124"],["-90.038549","29.934024"],["-90.038560","29.933924"],["-90.038571","29.933824"],["-90.038593","29.933674"],["-90.038614","29.933523"],["-90.038636","29.933373"],["-90.038657","29.933222"],["-90.038664","29.933067"],["-90.038670","29.932913"],["-90.038687","29.932789"],["-90.038703","29.932664"],["-90.038730","29.932553"],["-90.038758","29.932441"],["-90.038785","29.932329"],["-90.038813","29.932218"],["-90.038884","29.932107"],["-90.038955","29.931997"],["-90.039066","29.931875"],["-90.039177","29.931753"],["-90.039324","29.931638"],["-90.039470","29.931523"],["-90.039621","29.931416"],["-90.039773","29.931309"],["-90.039883","29.931222"],["-90.039994","29.931135"],["-90.040105","29.931048"],["-90.040215","29.930960"],["-90.040355","29.930852"],["-90.040494","29.930744"],["-90.040661","29.930667"],["-90.040810","29.930668"],["-90.040960","29.930669"],["-90.041109","29.930670"],["-90.041259","29.930671"],["-90.041408","29.930672"],["-90.041558","29.930673"],["-90.041707","29.930674"],["-90.041857","29.930674"],["-90.041864","29.930551"],["-90.041871","29.930428"],["-90.041884","29.930242"],["-90.041956","29.930163"],["-90.041890","29.930136"],["-90.041895","29.930025"],["-90.041900","29.929914"],["-90.041906","29.929802"],["-90.041911","29.929691"],["-90.041918","29.929568"],["-90.041925","29.929445"],["-90.041932","29.929322"],["-90.041938","29.929199"],["-90.041945","29.929076"],["-90.041952","29.928953"],["-90.041959","29.928830"],["-90.041966","29.928707"],["-90.041972","29.928584"],["-90.041979","29.928461"],["-90.041986","29.928338"],["-90.041993","29.928215"],["-90.042000","29.928092"],["-90.042006","29.927969"],["-90.042013","29.927846"],["-90.042020","29.927723"],["-90.042027","29.927600"],["-90.042034","29.927477"],["-90.042040","29.927354"],["-90.042047","29.927231"],["-90.042054","29.927108"],["-90.042061","29.926985"],["-90.042068","29.926862"],["-90.042074","29.926739"],["-90.042184","29.926584"],["-90.042167","29.926480"],["-90.042151","29.926377"],["-90.042134","29.926273"],["-90.042117","29.926169"],["-90.042125","29.926063"],["-90.042132","29.925957"],["-90.042139","29.925850"],["-90.042146","29.925688"],["-90.042153","29.925526"],["-90.042160","29.925364"],["-90.042167","29.925202"],["-90.042258","29.925096"],["-90.042178","29.925006"],["-90.042187","29.924882"],["-90.042197","29.924757"],["-90.042206","29.924632"],["-90.042216","29.924507"],["-90.042225","29.924382"],["-90.042235","29.924257"],["-90.042245","29.924132"],["-90.042254","29.924007"],["-90.042264","29.923882"],["-90.042273","29.923757"],["-90.042283","29.923632"],["-90.042292","29.923507"],["-90.042302","29.923382"],["-90.042311","29.923257"],["-90.042321","29.923132"],["-90.042331","29.923007"],["-90.042293","29.922870"],["-90.042369","29.922757"],["-90.042446","29.922644"],["-90.042522","29.922531"],["-90.042598","29.922418"],["-90.042674","29.922304"],["-90.042751","29.922191"],["-90.042827","29.922078"],["-90.042903","29.921965"],["-90.042962","29.921869"],["-90.043020","29.921774"],["-90.043078","29.921679"],["-90.043137","29.921584"],["-90.043195","29.921488"],["-90.043253","29.921393"],["-90.043312","29.921298"],["-90.043370","29.921202"],["-90.043320","29.921114"],["-90.043271","29.921026"],["-90.043161","29.920951"],["-90.043051","29.920928"],["-90.043132","29.920806"],["-90.043213","29.920684"],["-90.043294","29.920562"],["-90.043375","29.920440"],["-90.043456","29.920318"],["-90.043538","29.920196"],["-90.043619","29.920074"],["-90.043700","29.919952"],["-90.043791","29.919819"],["-90.043882","29.919687"],["-90.043982","29.919731"],["-90.044081","29.919775"],["-90.043983","29.919931"],["-90.043886","29.920087"],["-90.043815","29.920201"],["-90.043743","29.920315"],["-90.043672","29.920428"],["-90.043600","29.920542"],["-90.043529","29.920656"],["-90.043458","29.920770"],["-90.043386","29.920884"],["-90.043315","29.920998"],["-90.043186","29.920960"],["-90.043057","29.920923"],["-90.042918","29.920928"],["-90.042778","29.920932"],["-90.042703","29.921038"],["-90.042628","29.921144"],["-90.042553","29.921250"],["-90.042478","29.921356"],["-90.042420","29.921446"],["-90.042361","29.921536"],["-90.042303","29.921627"],["-90.042245","29.921717"],["-90.042186","29.921807"],["-90.042128","29.921898"],["-90.042070","29.921988"],["-90.042011","29.922079"],["-90.041953","29.922169"],["-90.041895","29.922259"],["-90.041836","29.922350"],["-90.041778","29.922440"],["-90.041720","29.922530"],["-90.041661","29.922621"],["-90.041603","29.922711"],["-90.041545","29.922802"],["-90.041571","29.922908"],["-90.041598","29.923015"],["-90.041681","29.923099"],["-90.041765","29.923183"],["-90.041904","29.923304"],["-90.042044","29.923425"],["-90.042078","29.923529"],["-90.042113","29.923634"],["-90.042106","29.923780"],["-90.042098","29.923925"],["-90.042091","29.924071"],["-90.042084","29.924217"],["-90.042076","29.924363"],["-90.042069","29.924509"],["-90.042062","29.924655"],["-90.042049","29.924809"],["-90.041925","29.924963"],["-90.042052","29.925106"],["-90.042041","29.925212"],["-90.042030","29.925317"],["-90.042018","29.925423"],["-90.042007","29.925529"],["-90.041996","29.925686"],["-90.041986","29.925843"],["-90.041976","29.926000"],["-90.041966","29.926157"],["-90.041956","29.926314"],["-90.041778","29.926423"],["-90.041859","29.926532"],["-90.041940","29.926640"],["-90.041930","29.926770"],["-90.041920","29.926900"],["-90.041915","29.926998"],["-90.041910","29.927095"],["-90.041905","29.927193"],["-90.041900","29.927290"],["-90.041893","29.927415"],["-90.041885","29.927540"],["-90.041878","29.927665"],["-90.041870","29.927790"],["-90.041860","29.927870"],["-90.041850","29.928050"],["-90.041840","29.928220"],["-90.041830","29.928390"],["-90.041820","29.928560"],["-90.041810","29.928730"],["-90.041805","29.928845"],["-90.041800","29.928960"],["-90.041790","29.929085"],["-90.041780","29.929210"],["-90.041775","29.929330"],["-90.041770","29.929450"],["-90.041765","29.929550"],["-90.041760","29.929650"],["-90.041755","29.929750"],["-90.041750","29.929850"],["-90.041745","29.930040"],["-90.041740","29.930230"],["-90.041710","29.930395"],["-90.041680","29.930560"],["-90.041660","29.930690"],["-90.041648","29.930855"],["-90.041635","29.931020"],["-90.041623","29.931185"],["-90.041544","29.931261"],["-90.041465","29.931337"],["-90.041610","29.931350"],["-90.041600","29.931460"],["-90.041595","29.931648"],["-90.041590","29.931835"],["-90.041585","29.932023"],["-90.041580","29.932210"],["-90.041570","29.932375"],["-90.041560","29.932540"],["-90.041550","29.932705"],["-90.041540","29.932870"],["-90.041474","29.932869"],["-90.041540","29.932870"],["-90.041540","29.932940"],["-90.041533","29.933038"],["-90.041525","29.933135"],["-90.041518","29.933233"],["-90.041510","29.933330"],["-90.041500","29.933510"],["-90.041490","29.933690"],["-90.041478","29.933863"],["-90.041465","29.934035"],["-90.041453","29.934208"],["-90.041440","29.934380"],["-90.041430","29.934490"],["-90.041370","29.934492"],["-90.041430","29.934490"],["-90.041430","29.934560"],["-90.041420","29.934728"],["-90.041410","29.934895"],["-90.041400","29.935063"],["-90.041390","29.935230"],["-90.041380","29.935420"],["-90.041370","29.935610"],["-90.041283","29.935601"],["-90.041370","29.935610"],["-90.041363","29.935735"],["-90.041355","29.935860"],["-90.041348","29.935985"],["-90.041340","29.936110"],["-90.041320","29.936290"],["-90.041310","29.936465"],["-90.041300","29.936640"],["-90.041290","29.936820"],["-90.041270","29.937000"],["-90.041265","29.937125"],["-90.041260","29.937250"],["-90.041179","29.937251"],["-90.041260","29.937250"],["-90.041250","29.937440"],["-90.041230","29.937630"],["-90.041230","29.937650"],["-90.041230","29.937660"],["-90.041210","29.937775"],["-90.041190","29.937890"],["-90.041180","29.937930"],["-90.041180","29.937990"],["-90.041160","29.938140"],["-90.041130","29.938270"],["-90.041120","29.938280"],["-90.041090","29.938425"],["-90.041060","29.938570"],["-90.041030","29.938700"],["-90.041020","29.938750"],["-90.040990","29.938870"],["-90.040990","29.939040"],["-90.040980","29.939110"],["-90.040960","29.939290"],["-90.040960","29.939320"],["-90.040950","29.939470"],["-90.040940","29.939560"],["-90.040960","29.939720"],["-90.040990","29.939910"],["-90.040894","29.939920"],["-90.040990","29.939910"],["-90.041000","29.940000"],["-90.041007","29.940105"],["-90.041015","29.940210"],["-90.041022","29.940315"],["-90.041030","29.940420"],["-90.041023","29.940558"],["-90.041015","29.940695"],["-90.041008","29.940833"],["-90.041000","29.940970"],["-90.040990","29.941143"],["-90.040980","29.941315"],["-90.040970","29.941488"],["-90.040960","29.941660"],["-90.040950","29.941805"],["-90.040940","29.941950"],["-90.040931","29.942078"],["-90.040923","29.942205"],["-90.040914","29.942333"],["-90.040905","29.942460"],["-90.040896","29.942588"],["-90.040883","29.942778"],["-90.040870","29.942969"],["-90.040788","29.942967"],["-90.040870","29.942970"],["-90.040860","29.943030"],["-90.040853","29.943163"],["-90.040845","29.943295"],["-90.040838","29.943428"],["-90.040830","29.943560"],["-90.040823","29.943693"],["-90.040815","29.943825"],["-90.040808","29.943958"],["-90.040800","29.944090"],["-90.040791","29.944208"],["-90.040783","29.944325"],["-90.040774","29.944443"],["-90.040765","29.944560"],["-90.040756","29.944678"],["-90.040748","29.944795"],["-90.040739","29.944913"],["-90.040730","29.945030"],["-90.040665","29.945031"],["-90.040730","29.945030"],["-90.040720","29.945140"],["-90.040714","29.945273"],["-90.040708","29.945405"],["-90.040701","29.945538"],["-90.040695","29.945670"],["-90.040689","29.945803"],["-90.040683","29.945935"],["-90.040676","29.946068"],["-90.040670","29.946200"],["-90.040661","29.946334"],["-90.040653","29.946468"],["-90.040644","29.946601"],["-90.040635","29.946735"],["-90.040626","29.946869"],["-90.040618","29.947003"],["-90.040609","29.947136"],["-90.040600","29.947270"],["-90.040594","29.947370"],["-90.040588","29.947470"],["-90.040581","29.947570"],["-90.040575","29.947670"],["-90.040569","29.947770"],["-90.040563","29.947870"],["-90.040556","29.947970"],["-90.040550","29.948070"],["-90.040540","29.948140"],["-90.040466","29.948142"],["-90.040540","29.948140"],["-90.040540","29.948260"],["-90.040530","29.948400"],["-90.040520","29.948516"],["-90.040510","29.948633"],["-90.040500","29.948749"],["-90.040490","29.948865"],["-90.040480","29.948981"],["-90.040470","29.949098"],["-90.040460","29.949214"],["-90.040450","29.949330"],["-90.040443","29.949469"],["-90.040435","29.949608"],["-90.040428","29.949746"],["-90.040420","29.949885"],["-90.040413","29.950024"],["-90.040405","29.950163"],["-90.040398","29.950301"],["-90.040390","29.950440"],["-90.040314","29.950441"],["-90.040390","29.950440"],["-90.040380","29.950520"],["-90.040374","29.950668"],["-90.040368","29.950815"],["-90.040361","29.950963"],["-90.040355","29.951110"],["-90.040349","29.951258"],["-90.040343","29.951405"],["-90.040336","29.951553"],["-90.040330","29.951700"],["-90.040320","29.951848"],["-90.040310","29.951995"],["-90.040300","29.952143"],["-90.040290","29.952290"],["-90.040280","29.952438"],["-90.040270","29.952585"],["-90.040260","29.952733"],["-90.040250","29.952880"],["-90.040230","29.953035"],["-90.040210","29.953190"],["-90.040200","29.953320"],["-90.040190","29.953460"],["-90.040180","29.953600"],["-90.040170","29.953740"],["-90.040160","29.953880"],["-90.040300","29.953915"],["-90.040440","29.953950"],["-90.040579","29.953983"],["-90.040717","29.954015"],["-90.040856","29.954048"],["-90.040995","29.954080"],["-90.041134","29.954113"],["-90.041272","29.954145"],["-90.041411","29.954178"],["-90.041550","29.954210"],["-90.041730","29.954250"],["-90.041910","29.954290"],["-90.042120","29.954335"],["-90.042330","29.954380"],["-90.042440","29.954405"],["-90.042550","29.954430"],["-90.042765","29.954470"],["-90.042980","29.954510"],["-90.043140","29.954540"],["-90.043300","29.954570"],["-90.043420","29.954590"],["-90.043600","29.954620"],["-90.043780","29.954660"],["-90.043895","29.954675"],["-90.044010","29.954690"],["-90.044170","29.954710"],["-90.044320","29.954730"],["-90.044530","29.954760"],["-90.044670","29.954770"],["-90.044654","29.954837"],["-90.044670","29.954770"],["-90.044780","29.954790"],["-90.044910","29.954805"],["-90.045040","29.954820"],["-90.045170","29.954835"],["-90.045300","29.954850"],["-90.045412","29.954865"],["-90.045525","29.954880"],["-90.045637","29.954895"],["-90.045750","29.954910"],["-90.045905","29.954930"],["-90.046060","29.954950"],["-90.046255","29.954970"],["-90.046450","29.954990"],["-90.046470","29.954990"],["-90.046459","29.955073"],["-90.046470","29.954990"],["-90.046670","29.955010"],["-90.046720","29.955010"],["-90.046854","29.955018"],["-90.046987","29.955025"],["-90.047121","29.955033"],["-90.047255","29.955040"],["-90.047389","29.955048"],["-90.047522","29.955055"],["-90.047656","29.955063"],["-90.047790","29.955070"],["-90.047935","29.955078"],["-90.048080","29.955085"],["-90.048225","29.955093"],["-90.048370","29.955100"],["-90.048570","29.955100"],["-90.048670","29.955110"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953317"],["-90.055155","29.953215"],["-90.055250","29.953055"],["-90.055302","29.952968"],["-90.055299","29.952866"],["-90.055295","29.952765"],["-90.055292","29.952663"],["-90.055288","29.952562"],["-90.055205","29.952476"],["-90.055015","29.952474"],["-90.054960","29.952445"],["-90.054878","29.952321"],["-90.054795","29.952196"],["-90.054850","29.952148"],["-90.054873","29.952073"],["-90.054855","29.952028"],["-90.054787","29.951941"],["-90.054719","29.951854"],["-90.054650","29.951767"],["-90.054582","29.951680"],["-90.054516","29.951602"],["-90.054450","29.951524"],["-90.054385","29.951446"],["-90.054319","29.951368"],["-90.054253","29.951290"],["-90.054187","29.951212"],["-90.054121","29.951134"],["-90.054056","29.951056"],["-90.053990","29.950978"],["-90.053924","29.950900"],["-90.053858","29.950822"],["-90.053792","29.950744"],["-90.053727","29.950666"],["-90.053661","29.950587"],["-90.053595","29.950509"],["-90.053529","29.950431"],["-90.053450","29.950335"],["-90.053371","29.950238"],["-90.053291","29.950141"],["-90.053212","29.950045"],["-90.053133","29.949948"],["-90.053054","29.949851"],["-90.052974","29.949754"],["-90.052895","29.949658"],["-90.052816","29.949561"],["-90.052736","29.949464"],["-90.052657","29.949368"],["-90.052578","29.949271"],["-90.052499","29.949174"],["-90.052419","29.949078"],["-90.052340","29.948981"],["-90.052261","29.948884"],["-90.052272","29.948773"],["-90.052321","29.948737"],["-90.052298","29.948719"],["-90.052346","29.948628"],["-90.052394","29.948537"],["-90.052387","29.948421"],["-90.052380","29.948306"],["-90.052373","29.948191"],["-90.052366","29.948075"],["-90.052360","29.947960"],["-90.052353","29.947845"],["-90.052346","29.947730"],["-90.052339","29.947614"],["-90.052332","29.947499"],["-90.052325","29.947384"],["-90.052318","29.947268"],["-90.052311","29.947153"],["-90.052304","29.947038"],["-90.052297","29.946922"],["-90.052290","29.946807"],["-90.052283","29.946692"],["-90.052401","29.946573"],["-90.052288","29.946536"],["-90.052280","29.946439"],["-90.052271","29.946342"],["-90.052262","29.946245"],["-90.052254","29.946149"],["-90.052245","29.946052"],["-90.052236","29.945955"],["-90.052228","29.945858"],["-90.052219","29.945761"],["-90.052208","29.945582"],["-90.052200","29.945439"],["-90.051993","29.945450"],["-90.051786","29.945460"],["-90.051578","29.945471"],["-90.051371","29.945481"],["-90.051164","29.945492"],["-90.051000","29.945500"],["-90.050793","29.945510"],["-90.050585","29.945519"],["-90.050378","29.945529"],["-90.050171","29.945538"],["-90.049964","29.945551"],["-90.049810","29.945560"],["-90.049603","29.945565"],["-90.049410","29.945570"],["-90.049325","29.945461"],["-90.049188","29.945510"],["-90.049050","29.945559"],["-90.048843","29.945549"],["-90.048635","29.945540"],["-90.048428","29.945530"],["-90.048399","29.945529"],["-90.048271","29.945510"],["-90.048143","29.945492"],["-90.048015","29.945473"],["-90.047887","29.945455"],["-90.047760","29.945436"],["-90.047632","29.945417"],["-90.047504","29.945399"],["-90.047376","29.945380"],["-90.047300","29.945380"],["-90.047290","29.945480"],["-90.047120","29.945470"],["-90.046950","29.945460"],["-90.046800","29.945450"],["-90.046650","29.945440"],["-90.046500","29.945430"],["-90.046350","29.945420"],["-90.046239","29.945415"],["-90.046127","29.945410"],["-90.046016","29.945405"],["-90.045905","29.945400"],["-90.045794","29.945395"],["-90.045682","29.945390"],["-90.045571","29.945385"],["-90.045460","29.945380"],["-90.045467","29.945298"],["-90.045460","29.945380"],["-90.045380","29.945380"],["-90.045241","29.945373"],["-90.045102","29.945365"],["-90.044964","29.945358"],["-90.044825","29.945350"],["-90.044686","29.945343"],["-90.044547","29.945335"],["-90.044409","29.945328"],["-90.044270","29.945320"],["-90.044090","29.945310"],["-90.043910","29.945300"],["-90.043730","29.945290"],["-90.043550","29.945280"],["-90.043435","29.945270"],["-90.043320","29.945260"],["-90.043220","29.945260"],["-90.043227","29.945182"],["-90.043160","29.945180"],["-90.043150","29.945270"],["-90.043022","29.945264"],["-90.042895","29.945258"],["-90.042767","29.945251"],["-90.042640","29.945245"],["-90.042512","29.945239"],["-90.042385","29.945233"],["-90.042257","29.945226"],["-90.042130","29.945220"],["-90.041997","29.945214"],["-90.041865","29.945208"],["-90.041732","29.945201"],["-90.041600","29.945195"],["-90.041467","29.945189"],["-90.041335","29.945183"],["-90.041202","29.945176"],["-90.041070","29.945170"],["-90.041070","29.945102"],["-90.041070","29.945170"],["-90.040930","29.945160"],["-90.040750","29.945150"],["-90.040630","29.945144"],["-90.040510","29.945138"],["-90.040390","29.945131"],["-90.040270","29.945125"],["-90.040150","29.945119"],["-90.040030","29.945113"],["-90.039910","29.945106"],["-90.039790","29.945100"],["-90.039670","29.945095"],["-90.039550","29.945090"],["-90.039430","29.945085"],["-90.039310","29.945080"],["-90.039190","29.945075"],["-90.039070","29.945070"],["-90.038950","29.945065"],["-90.038830","29.945060"],["-90.038913","29.944976"],["-90.038830","29.944970"],["-90.038830","29.945060"],["-90.038704","29.945054"],["-90.038577","29.945048"],["-90.038451","29.945041"],["-90.038325","29.945035"],["-90.038199","29.945029"],["-90.038072","29.945023"],["-90.037946","29.945016"],["-90.037820","29.945010"],["-90.037632","29.945003"],["-90.037445","29.944995"],["-90.037257","29.944988"],["-90.037134","29.944984"],["-90.037010","29.944980"],["-90.037077","29.944840"],["-90.037010","29.944980"],["-90.036820","29.944920"],["-90.036656","29.944913"],["-90.036492","29.944905"],["-90.036329","29.944898"],["-90.036165","29.944890"],["-90.036001","29.944883"],["-90.035837","29.944875"],["-90.035674","29.944868"],["-90.035510","29.944860"],["-90.035345","29.944850"],["-90.035180","29.944840"],["-90.035015","29.944830"],["-90.034850","29.944820"],["-90.034730","29.944815"],["-90.034610","29.944810"],["-90.034460","29.944803"],["-90.034310","29.944795"],["-90.034160","29.944788"],["-90.034010","29.944780"],["-90.034017","29.944691"],["-90.034010","29.944780"],["-90.033855","29.944770"],["-90.033700","29.944760"],["-90.033600","29.944760"],["-90.033450","29.944740"],["-90.033320","29.944730"],["-90.033170","29.944690"],["-90.033090","29.944670"],["-90.032960","29.944620"],["-90.032830","29.944570"],["-90.032725","29.944535"],["-90.032620","29.944500"],["-90.032435","29.944425"],["-90.032250","29.944350"],["-90.032135","29.944305"],["-90.032020","29.944260"],["-90.031830","29.944190"],["-90.031730","29.944150"],["-90.031754","29.944107"],["-90.031730","29.944150"],["-90.031615","29.944110"],["-90.031500","29.944070"],["-90.031350","29.944010"],["-90.031167","29.943939"],["-90.030985","29.943868"],["-90.030802","29.943796"],["-90.030620","29.943725"],["-90.030437","29.943654"],["-90.030255","29.943583"],["-90.030072","29.943511"],["-90.029890","29.943440"],["-90.029925","29.943376"],["-90.029890","29.943440"],["-90.029740","29.943390"],["-90.029620","29.943340"],["-90.029445","29.943270"],["-90.029270","29.943200"],["-90.029160","29.943160"],["-90.029050","29.943120"],["-90.028940","29.943080"],["-90.028830","29.943040"],["-90.028660","29.942975"],["-90.028490","29.942910"],["-90.028532","29.942832"],["-90.028500","29.942900"],["-90.028372","29.942850"],["-90.028245","29.942800"],["-90.028117","29.942750"],["-90.027990","29.942700"],["-90.027855","29.942650"],["-90.027720","29.942600"],["-90.027710","29.942590"],["-90.027555","29.942535"],["-90.027400","29.942480"],["-90.027410","29.942375"],["-90.027310","29.942260"],["-90.027368","29.942269"],["-90.027310","29.942260"],["-90.027290","29.942430"],["-90.027170","29.942385"],["-90.027050","29.942340"],["-90.026930","29.942295"],["-90.026810","29.942250"],["-90.026630","29.942180"],["-90.026480","29.942125"],["-90.026330","29.942070"],["-90.026167","29.942003"],["-90.026005","29.941935"],["-90.025842","29.941868"],["-90.025680","29.941800"],["-90.025565","29.941755"],["-90.025450","29.941710"],["-90.025335","29.941665"],["-90.025227","29.941503"],["-90.025180","29.941590"],["-90.025070","29.941550"],["-90.024990","29.941530"],["-90.024910","29.941530"],["-90.024850","29.941500"],["-90.024737","29.941455"],["-90.024625","29.941410"],["-90.024512","29.941365"],["-90.024400","29.941320"],["-90.024260","29.941260"],["-90.024130","29.941203"],["-90.024000","29.941145"],["-90.023870","29.941088"],["-90.023740","29.941030"],["-90.023635","29.940985"],["-90.023530","29.940940"],["-90.023420","29.940891"],["-90.023310","29.940843"],["-90.023200","29.940794"],["-90.023090","29.940745"],["-90.022980","29.940696"],["-90.022870","29.940648"],["-90.022760","29.940599"],["-90.022650","29.940550"],["-90.022692","29.940487"],["-90.022650","29.940550"],["-90.022520","29.940490"],["-90.022379","29.940429"],["-90.022237","29.940368"],["-90.022096","29.940306"],["-90.021955","29.940245"],["-90.021814","29.940184"],["-90.021672","29.940123"],["-90.021531","29.940061"],["-90.021390","29.940000"],["-90.021257","29.939941"],["-90.021125","29.939883"],["-90.020992","29.939824"],["-90.020860","29.939765"],["-90.020727","29.939706"],["-90.020595","29.939648"],["-90.020462","29.939589"],["-90.020330","29.939530"],["-90.020384","29.939442"],["-90.020330","29.939530"],["-90.020260","29.939500"],["-90.020070","29.939418"],["-90.019880","29.939335"],["-90.019690","29.939253"],["-90.019500","29.939170"],["-90.019305","29.939080"],["-90.019110","29.938990"],["-90.018990","29.938939"],["-90.018870","29.938888"],["-90.018750","29.938836"],["-90.018630","29.938785"],["-90.018510","29.938734"],["-90.018390","29.938683"],["-90.018270","29.938631"],["-90.018150","29.938580"],["-90.018025","29.938520"],["-90.017900","29.938460"],["-90.017900","29.938350"],["-90.017983","29.938353"],["-90.017900","29.938350"],["-90.017900","29.938460"],["-90.017709","29.938376"],["-90.017517","29.938293"],["-90.017326","29.938209"],["-90.017135","29.938125"],["-90.016944","29.938041"],["-90.016752","29.937958"],["-90.016561","29.937874"],["-90.016370","29.937790"],["-90.016380","29.937670"],["-90.016476","29.937674"],["-90.016380","29.937670"],["-90.016370","29.937790"],["-90.016259","29.937741"],["-90.016149","29.937691"],["-90.016038","29.937642"],["-90.015927","29.937593"],["-90.015817","29.937543"],["-90.015706","29.937494"],["-90.015596","29.937444"],["-90.015485","29.937395"],["-90.015374","29.937346"],["-90.015264","29.937296"],["-90.015153","29.937247"],["-90.015042","29.937198"],["-90.014932","29.937148"],["-90.014821","29.937099"],["-90.014711","29.937049"],["-90.014600","29.937000"],["-90.014600","29.936890"],["-90.014689","29.936898"],["-90.014600","29.936890"],["-90.014600","29.937000"],["-90.014462","29.936940"],["-90.014325","29.936880"],["-90.014187","29.936820"],["-90.014050","29.936760"],["-90.013912","29.936700"],["-90.013775","29.936640"],["-90.013637","29.936580"],["-90.013500","29.936520"],["-90.013430","29.936500"],["-90.013235","29.936410"],["-90.013040","29.936320"],["-90.013088","29.936238"],["-90.013040","29.936320"],["-90.012950","29.936280"],["-90.012835","29.936230"],["-90.012720","29.936180"],["-90.012540","29.936105"],["-90.012360","29.936030"],["-90.012259","29.935985"],["-90.012157","29.935940"],["-90.012056","29.935895"],["-90.011955","29.935850"],["-90.011854","29.935805"],["-90.011752","29.935760"],["-90.011651","29.935715"],["-90.011550","29.935670"],["-90.011420","29.935615"],["-90.011290","29.935560"],["-90.011160","29.935505"],["-90.011030","29.935450"],["-90.011090","29.935350"],["-90.011155","29.935380"],["-90.011090","29.935350"],["-90.011030","29.935450"],["-90.010905","29.935390"],["-90.010780","29.935330"],["-90.010605","29.935250"],["-90.010430","29.935170"],["-90.010255","29.935090"],["-90.010080","29.935010"],["-90.009915","29.934940"],["-90.009750","29.934870"],["-90.009610","29.934810"],["-90.009659","29.934729"],["-90.009610","29.934810"],["-90.009530","29.934770"],["-90.009385","29.934705"],["-90.009240","29.934640"],["-90.009095","29.934575"],["-90.008950","29.934510"],["-90.008790","29.934440"],["-90.008600","29.934355"],["-90.008410","29.934270"],["-90.008453","29.934193"],["-90.008410","29.934270"],["-90.008245","29.934200"],["-90.008080","29.934130"],["-90.007980","29.934080"],["-90.007867","29.934030"],["-90.007755","29.933980"],["-90.007642","29.933930"],["-90.007530","29.933880"],["-90.007350","29.933810"],["-90.007404","29.933720"],["-90.007350","29.933810"],["-90.007260","29.933770"],["-90.007100","29.933700"],["-90.006950","29.933635"],["-90.006800","29.933570"],["-90.006650","29.933505"],["-90.006500","29.933440"],["-90.006365","29.933370"],["-90.006230","29.933300"],["-90.006035","29.933220"],["-90.005840","29.933140"],["-90.005700","29.933085"],["-90.005560","29.933030"],["-90.005390","29.932948"],["-90.005220","29.932865"],["-90.005050","29.932783"],["-90.004880","29.932700"],["-90.004880","29.932630"],["-90.004961","29.932630"],["-90.004880","29.932630"],["-90.004880","29.932700"],["-90.004780","29.932660"],["-90.004680","29.932618"],["-90.004580","29.932575"],["-90.004480","29.932533"],["-90.004380","29.932490"],["-90.004280","29.932448"],["-90.004180","29.932405"],["-90.004080","29.932363"],["-90.003980","29.932320"],["-90.003854","29.932265"],["-90.003727","29.932210"],["-90.003601","29.932155"],["-90.003475","29.932100"],["-90.003349","29.932045"],["-90.003222","29.931990"],["-90.003096","29.931935"],["-90.002970","29.931880"],["-90.003040","29.931750"],["-90.003101","29.931773"],["-90.003040","29.931750"],["-90.002970","29.931880"],["-90.002811","29.931810"],["-90.002652","29.931740"],["-90.002494","29.931670"],["-90.002335","29.931600"],["-90.002176","29.931530"],["-90.002017","29.931460"],["-90.001859","29.931390"],["-90.001700","29.931320"],["-90.001530","29.931245"],["-90.001360","29.931170"],["-90.001400","29.931070"],["-90.001449","29.931086"],["-90.001400","29.931070"],["-90.001360","29.931170"],["-90.001220","29.931108"],["-90.001080","29.931045"],["-90.000940","29.930983"],["-90.000800","29.930920"],["-90.000647","29.930851"],["-90.000495","29.930783"],["-90.000342","29.930714"],["-90.000190","29.930645"],["-90.000037","29.930576"],["-89.999885","29.930508"],["-89.999732","29.930439"],["-89.999580","29.930370"],["-89.999610","29.930300"],["-89.999662","29.930309"],["-89.999610","29.930300"],["-89.999580","29.930370"],["-89.999444","29.930310"],["-89.999307","29.930250"],["-89.999171","29.930190"],["-89.999035","29.930130"],["-89.998899","29.930070"],["-89.998762","29.930010"],["-89.998626","29.929950"],["-89.998490","29.929890"],["-89.998372","29.929839"],["-89.998255","29.929788"],["-89.998137","29.929736"],["-89.998020","29.929685"],["-89.997902","29.929634"],["-89.997785","29.929583"],["-89.997667","29.929531"],["-89.997550","29.929480"],["-89.997600","29.929390"],["-89.997656","29.929416"],["-89.997600","29.929390"],["-89.997550","29.929480"],["-89.997375","29.929405"],["-89.997200","29.929330"],["-89.997025","29.929255"],["-89.996850","29.929180"],["-89.996750","29.929135"],["-89.996650","29.929090"],["-89.996540","29.929040"],["-89.996430","29.928993"],["-89.996320","29.928945"],["-89.996210","29.928898"],["-89.996100","29.928850"],["-89.995910","29.928770"],["-89.995970","29.928670"],["-89.996035","29.928701"],["-89.995970","29.928670"],["-89.995910","29.928770"],["-89.995730","29.928690"],["-89.995610","29.928636"],["-89.995490","29.928583"],["-89.995370","29.928529"],["-89.995250","29.928475"],["-89.995130","29.928421"],["-89.995010","29.928368"],["-89.994890","29.928314"],["-89.994770","29.928260"],["-89.994644","29.928204"],["-89.994517","29.928148"],["-89.994391","29.928091"],["-89.994265","29.928035"],["-89.994139","29.927979"],["-89.994012","29.927923"],["-89.993886","29.927866"],["-89.993760","29.927810"],["-89.993647","29.927760"],["-89.993535","29.927710"],["-89.993422","29.927660"],["-89.993310","29.927610"],["-89.993167","29.927548"],["-89.993025","29.927485"],["-89.992882","29.927423"],["-89.992740","29.927360"],["-89.992783","29.927290"],["-89.992740","29.927360"],["-89.992570","29.927280"],["-89.992435","29.927225"],["-89.992300","29.927170"],["-89.992190","29.927110"],["-89.992080","29.927050"],["-89.991946","29.926993"],["-89.991812","29.926935"],["-89.991679","29.926878"],["-89.991545","29.926820"],["-89.991411","29.926763"],["-89.991277","29.926705"],["-89.991144","29.926648"],["-89.991010","29.926590"],["-89.991048","29.926522"],["-89.991010","29.926590"],["-89.991000","29.926580"],["-89.990890","29.926540"],["-89.990776","29.926489"],["-89.990661","29.926438"],["-89.990547","29.926386"],["-89.990432","29.926335"],["-89.990318","29.926284"],["-89.990204","29.926233"],["-89.990089","29.926181"],["-89.989975","29.926130"],["-89.989861","29.926079"],["-89.989746","29.926028"],["-89.989632","29.925976"],["-89.989517","29.925925"],["-89.989403","29.925874"],["-89.989289","29.925823"],["-89.989174","29.925771"],["-89.989060","29.925720"],["-89.988935","29.925665"],["-89.988810","29.925610"],["-89.988685","29.925555"],["-89.988560","29.925500"],["-89.988435","29.925445"],["-89.988310","29.925390"],["-89.988185","29.925335"],["-89.988060","29.925280"],["-89.988107","29.925209"],["-89.988060","29.925280"],["-89.988020","29.925260"],["-89.987881","29.925200"],["-89.987742","29.925140"],["-89.987604","29.925080"],["-89.987465","29.925020"],["-89.987326","29.924960"],["-89.987187","29.924900"],["-89.987049","29.924840"],["-89.986910","29.924780"],["-89.986777","29.924720"],["-89.986645","29.924660"],["-89.986512","29.924600"],["-89.986380","29.924540"],["-89.986247","29.924480"],["-89.986115","29.924420"],["-89.985982","29.924360"],["-89.985850","29.924300"],["-89.985750","29.924220"],["-89.985720","29.924200"],["-89.985582","29.924128"],["-89.985445","29.924055"],["-89.985307","29.923983"],["-89.985170","29.923910"],["-89.985229","29.923823"],["-89.985130","29.923810"],["-89.985120","29.923890"],["-89.985002","29.923838"],["-89.984885","29.923785"],["-89.984767","29.923733"],["-89.984650","29.923680"],["-89.984502","29.923620"],["-89.984355","29.923560"],["-89.984207","29.923500"],["-89.984060","29.923440"],["-89.983935","29.923380"],["-89.983810","29.923320"],["-89.983645","29.923245"],["-89.983480","29.923170"],["-89.983315","29.923095"],["-89.983150","29.923020"],["-89.983078","29.922904"],["-89.983040","29.922980"],["-89.982970","29.922950"],["-89.982775","29.922863"],["-89.982580","29.922775"],["-89.982385","29.922688"],["-89.982190","29.922600"],["-89.982077","29.922553"],["-89.981965","29.922505"],["-89.981852","29.922458"],["-89.981740","29.922410"],["-89.981552","29.922328"],["-89.981365","29.922245"],["-89.981177","29.922163"],["-89.980990","29.922080"],["-89.981000","29.921970"],["-89.981062","29.921974"],["-89.981000","29.921970"],["-89.980990","29.922080"],["-89.980871","29.922026"],["-89.980752","29.921973"],["-89.980634","29.921919"],["-89.980515","29.921865"],["-89.980396","29.921811"],["-89.980277","29.921758"],["-89.980159","29.921704"],["-89.980040","29.921650"],["-89.979870","29.921575"],["-89.979700","29.921500"],["-89.979530","29.921425"],["-89.979360","29.921350"],["-89.979400","29.921278"],["-89.979360","29.921350"],["-89.979270","29.921320"],["-89.979077","29.921235"],["-89.978885","29.921150"],["-89.978692","29.921065"],["-89.978500","29.920980"],["-89.978401","29.920935"],["-89.978302","29.920890"],["-89.978204","29.920845"],["-89.978105","29.920800"],["-89.978006","29.920755"],["-89.977907","29.920710"],["-89.977809","29.920665"],["-89.977710","29.920620"],["-89.977532","29.920543"],["-89.977355","29.920465"],["-89.977177","29.920388"],["-89.977000","29.920310"],["-89.977042","29.920232"],["-89.977000","29.920310"],["-89.976910","29.920270"],["-89.976900","29.920370"],["-89.976892","29.920474"],["-89.977066","29.920550"],["-89.977240","29.920627"],["-89.977414","29.920704"],["-89.977588","29.920780"],["-89.977762","29.920857"],["-89.977936","29.920934"],["-89.978110","29.921010"],["-89.978283","29.921087"],["-89.978457","29.921164"],["-89.978631","29.921240"],["-89.978805","29.921317"],["-89.978979","29.921393"],["-89.979153","29.921470"],["-89.979327","29.921547"],["-89.979501","29.921623"],["-89.979675","29.921700"],["-89.979842","29.921775"],["-89.980010","29.921850"],["-89.980182","29.921925"],["-89.980355","29.922000"],["-89.980527","29.922075"],["-89.980700","29.922150"],["-89.980860","29.922220"],["-89.980969","29.922268"],["-89.981077","29.922315"],["-89.981186","29.922363"],["-89.981295","29.922410"],["-89.981404","29.922458"],["-89.981512","29.922505"],["-89.981621","29.922553"],["-89.981730","29.922600"],["-89.981750","29.922610"],["-89.981910","29.922690"],["-89.982040","29.922745"],["-89.982170","29.922800"],["-89.982342","29.922878"],["-89.982515","29.922955"],["-89.982687","29.923033"],["-89.982860","29.923110"],["-89.982893","29.923220"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.076106","29.947003"],["-90.041465","29.931337"],["-90.041474","29.932869"],["-90.049325","29.945461"],["-89.977042","29.920232"],["-89.982893","29.923220"],["-90.041070","29.945102"],["-90.041370","29.934492"],["-90.041283","29.935601"],["-90.040894","29.939920"],["-90.040788","29.942967"],["-90.038913","29.944976"],["-90.037077","29.944840"],["-90.034017","29.944691"],["-90.031754","29.944107"],["-90.029925","29.943376"],["-90.028532","29.942832"],["-90.027368","29.942269"],["-90.025227","29.941503"],["-90.022692","29.940487"],["-90.020384","29.939442"],["-90.017983","29.938353"],["-90.014689","29.936898"],["-90.013088","29.936238"],["-90.011155","29.935380"],["-90.009659","29.934729"],["-90.008453","29.934193"],["-90.007404","29.933720"],["-90.004961","29.932630"],["-90.003101","29.931773"],["-90.001449","29.931086"],["-89.999662","29.930309"],["-89.997656","29.929416"],["-89.996035","29.928701"],["-89.992783","29.927290"],["-89.991048","29.926522"],["-89.988107","29.925209"],["-89.985229","29.923823"],["-89.983078","29.922904"],["-89.981062","29.921974"],["-89.979400","29.921278"],["-90.053661","29.954274"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.047376","29.945380"],["-90.045467","29.945298"],["-90.043227","29.945182"],["-90.055302","29.952968"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.074290","29.953176"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.041179","29.937251"],["-90.040665","29.945031"],["-90.077705","29.945589"],["-90.040466","29.948142"],["-90.040314","29.950441"],["-90.038206","29.930649"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075052","29.954585"],["-90.074855","29.954529"],["-90.074790","29.954510"],["-90.074670","29.954510"],["-90.074482","29.954434"],["-90.074294","29.954358"],["-90.074249","29.954340"],["-90.074073","29.954244"],["-90.073990","29.954199"],["-90.074000","29.954079"],["-90.073990","29.953950"],["-90.074000","29.953860"],["-90.074019","29.953770"],["-90.074069","29.953595"],["-90.074119","29.953421"],["-90.074226","29.953267"],["-90.074290","29.953176"],["-90.074298","29.952996"],["-90.074307","29.952817"],["-90.074309","29.952764"],["-90.074350","29.952620"],["-90.074397","29.952445"],["-90.074419","29.952360"],["-90.074471","29.952186"],["-90.074509","29.952060"],["-90.074561","29.951886"],["-90.074599","29.951759"],["-90.074667","29.951589"],["-90.074735","29.951419"],["-90.074803","29.951249"],["-90.074871","29.951079"],["-90.074939","29.950909"],["-90.075000","29.950758"],["-90.074987","29.950578"],["-90.074980","29.950479"],["-90.075031","29.950305"],["-90.075081","29.950130"],["-90.075132","29.949956"],["-90.075183","29.949781"],["-90.075234","29.949607"],["-90.075284","29.949432"],["-90.075320","29.949310"],["-90.075393","29.949141"],["-90.075465","29.948973"],["-90.075538","29.948804"],["-90.075610","29.948636"],["-90.075680","29.948474"],["-90.075681","29.948294"],["-90.075681","29.948136"],["-90.075732","29.947962"],["-90.075783","29.947787"],["-90.075834","29.947613"],["-90.075885","29.947439"],["-90.075936","29.947264"],["-90.075960","29.947085"],["-90.076010","29.946910"],["-90.076130","29.946940"],["-90.076106","29.947003"],["-90.076130","29.946940"],["-90.076240","29.946970"],["-90.076350","29.947000"],["-90.076530","29.947050"],["-90.076650","29.947050"],["-90.076700","29.947050"],["-90.076740","29.947040"],["-90.076790","29.947030"],["-90.076820","29.947020"],["-90.076880","29.946990"],["-90.076980","29.946950"],["-90.077025","29.946810"],["-90.077070","29.946670"],["-90.077100","29.946575"],["-90.077130","29.946480"],["-90.077160","29.946385"],["-90.077190","29.946290"],["-90.077200","29.946270"],["-90.077220","29.946190"],["-90.077250","29.946090"],["-90.077280","29.945990"],["-90.077320","29.945880"],["-90.077350","29.945770"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077630","29.945550"],["-90.077640","29.945550"],["-90.077650","29.945560"],["-90.077660","29.945560"],["-90.077690","29.945550"],["-90.077700","29.945550"],["-90.077705","29.945589"],["-90.077700","29.945550"],["-90.077835","29.945545"],["-90.077970","29.945540"],["-90.078040","29.945530"],["-90.078150","29.945545"],["-90.078260","29.945560"],["-90.078430","29.945630"],["-90.078535","29.945680"],["-90.078640","29.945730"],["-90.078800","29.945750"],["-90.078958","29.945803"],["-90.079116","29.945857"],["-90.079274","29.945910"],["-90.079431","29.945963"],["-90.079533","29.946025"],["-90.079635","29.946087"],["-90.079737","29.946150"],["-90.079839","29.946212"],["-90.079941","29.946274"],["-90.080043","29.946336"],["-90.080145","29.946398"],["-90.080247","29.946461"],["-90.080391","29.946542"],["-90.080535","29.946623"],["-90.080679","29.946705"],["-90.080823","29.946786"],["-90.080968","29.946867"],["-90.081112","29.946949"],["-90.081256","29.947030"],["-90.081400","29.947111"],["-90.081541","29.947196"],["-90.081682","29.947281"],["-90.081823","29.947366"],["-90.081963","29.947451"],["-90.082104","29.947535"],["-90.082245","29.947620"],["-90.082386","29.947705"],["-90.082527","29.947790"],["-90.082638","29.947879"],["-90.082749","29.947969"],["-90.082861","29.948058"],["-90.082972","29.948148"],["-90.083091","29.948175"],["-90.083211","29.948201"],["-90.083330","29.948228"],["-90.083449","29.948255"],["-90.083380","29.948341"],["-90.083310","29.948427"],["-90.083106","29.948445"],["-90.082945","29.948315"],["-90.082848","29.948239"],["-90.082752","29.948163"],["-90.082655","29.948087"],["-90.082559","29.948011"],["-90.082462","29.947935"],["-90.082366","29.947858"],["-90.082269","29.947782"],["-90.082173","29.947706"],["-90.082068","29.947650"],["-90.081963","29.947595"],["-90.081859","29.947539"],["-90.081754","29.947483"],["-90.081650","29.947427"],["-90.081545","29.947372"],["-90.081440","29.947316"],["-90.081336","29.947260"],["-90.081239","29.947203"],["-90.081143","29.947146"],["-90.081046","29.947089"],["-90.080949","29.947032"],["-90.080853","29.946975"],["-90.080756","29.946918"],["-90.080660","29.946861"],["-90.080563","29.946804"],["-90.080420","29.946701"],["-90.080276","29.946598"],["-90.080133","29.946494"],["-90.079989","29.946391"],["-90.079897","29.946333"],["-90.079804","29.946276"],["-90.079712","29.946218"],["-90.079619","29.946161"],["-90.079527","29.946103"],["-90.079434","29.946046"],["-90.079341","29.945988"],["-90.079249","29.945931"],["-90.079152","29.945879"],["-90.079054","29.945827"],["-90.078957","29.945775"],["-90.078860","29.945724"],["-90.078763","29.945672"],["-90.078666","29.945620"],["-90.078568","29.945569"],["-90.078471","29.945517"],["-90.078380","29.945382"],["-90.078289","29.945247"],["-90.078237","29.945154"],["-90.078186","29.945061"],["-90.078103","29.944954"],["-90.078020","29.944847"],["-90.077843","29.944738"],["-90.077666","29.944629"],["-90.077526","29.944551"],["-90.077386","29.944474"],["-90.077245","29.944396"],["-90.077105","29.944319"],["-90.076965","29.944241"],["-90.076825","29.944163"],["-90.076685","29.944086"],["-90.076545","29.944008"],["-90.076405","29.943931"],["-90.076264","29.943853"],["-90.076124","29.943776"],["-90.075984","29.943698"],["-90.075844","29.943620"],["-90.075704","29.943543"],["-90.075564","29.943465"],["-90.075424","29.943388"],["-90.075269","29.943300"],["-90.075115","29.943212"],["-90.074961","29.943125"],["-90.074807","29.943037"],["-90.074652","29.942949"],["-90.074498","29.942861"],["-90.074344","29.942774"],["-90.074190","29.942686"],["-90.074074","29.942621"],["-90.073959","29.942556"],["-90.073844","29.942491"],["-90.073728","29.942426"],["-90.073613","29.942360"],["-90.073498","29.942295"],["-90.073382","29.942230"],["-90.073267","29.942165"],["-90.073152","29.942100"],["-90.073036","29.942035"],["-90.072921","29.941970"],["-90.072806","29.941905"],["-90.072690","29.941840"],["-90.072575","29.941775"],["-90.072460","29.941710"],["-90.072344","29.941645"],["-90.072213","29.941577"],["-90.072082","29.941509"],["-90.071950","29.941441"],["-90.071819","29.941373"],["-90.071687","29.941305"],["-90.071556","29.941237"],["-90.071424","29.941169"],["-90.071293","29.941101"],["-90.071132","29.941011"],["-90.070971","29.940922"],["-90.070810","29.940832"],["-90.070649","29.940743"],["-90.070489","29.940652"],["-90.070329","29.940561"],["-90.070169","29.940471"],["-90.070010","29.940380"],["-90.069850","29.940290"],["-90.069690","29.940199"],["-90.069530","29.940108"],["-90.069370","29.940018"],["-90.069210","29.939927"],["-90.069050","29.939836"],["-90.068890","29.939746"],["-90.068730","29.939655"],["-90.068570","29.939564"],["-90.068410","29.939474"],["-90.068250","29.939383"],["-90.068090","29.939292"],["-90.067946","29.939213"],["-90.067801","29.939134"],["-90.067656","29.939055"],["-90.067511","29.938976"],["-90.067400","29.938935"],["-90.067288","29.938893"],["-90.067177","29.938851"],["-90.067066","29.938809"],["-90.066913","29.938763"],["-90.066760","29.938716"],["-90.066607","29.938670"],["-90.066454","29.938623"],["-90.066256","29.938599"],["-90.066057","29.938574"],["-90.065859","29.938550"],["-90.065660","29.938525"],["-90.065498","29.938524"],["-90.065336","29.938523"],["-90.065174","29.938522"],["-90.065011","29.938521"],["-90.064856","29.938541"],["-90.064700","29.938560"],["-90.064545","29.938580"],["-90.064389","29.938600"],["-90.064240","29.938608"],["-90.064091","29.938616"],["-90.063942","29.938624"],["-90.063794","29.938632"],["-90.063645","29.938640"],["-90.063496","29.938649"],["-90.063347","29.938657"],["-90.063198","29.938665"],["-90.063055","29.938673"],["-90.062911","29.938681"],["-90.062768","29.938689"],["-90.062624","29.938697"],["-90.062481","29.938706"],["-90.062337","29.938714"],["-90.062194","29.938722"],["-90.062050","29.938730"],["-90.061884","29.938729"],["-90.061717","29.938729"],["-90.061551","29.938728"],["-90.061385","29.938728"],["-90.061219","29.938727"],["-90.061052","29.938726"],["-90.060886","29.938726"],["-90.060720","29.938725"],["-90.060589","29.938729"],["-90.060458","29.938732"],["-90.060327","29.938736"],["-90.060197","29.938739"],["-90.060066","29.938743"],["-90.059935","29.938746"],["-90.059804","29.938750"],["-90.059674","29.938753"],["-90.059547","29.938754"],["-90.059421","29.938756"],["-90.059294","29.938757"],["-90.059168","29.938758"],["-90.059042","29.938759"],["-90.058915","29.938760"],["-90.058789","29.938761"],["-90.058662","29.938763"],["-90.058536","29.938764"],["-90.058410","29.938765"],["-90.058283","29.938766"],["-90.058157","29.938767"],["-90.058030","29.938768"],["-90.057904","29.938769"],["-90.057778","29.938771"],["-90.057651","29.938772"],["-90.057481","29.938771"],["-90.057311","29.938771"],["-90.057140","29.938770"],["-90.056970","29.938769"],["-90.056800","29.938769"],["-90.056629","29.938768"],["-90.056459","29.938768"],["-90.056289","29.938767"],["-90.056121","29.938771"],["-90.055953","29.938774"],["-90.055786","29.938778"],["-90.055618","29.938781"],["-90.055451","29.938785"],["-90.055283","29.938788"],["-90.055115","29.938792"],["-90.054948","29.938795"],["-90.054756","29.938796"],["-90.054564","29.938796"],["-90.054372","29.938797"],["-90.054180","29.938797"],["-90.053988","29.938798"],["-90.053796","29.938798"],["-90.053604","29.938799"],["-90.053412","29.938799"],["-90.053195","29.938801"],["-90.052979","29.938804"],["-90.052762","29.938806"],["-90.052546","29.938808"],["-90.052329","29.938811"],["-90.052112","29.938813"],["-90.051896","29.938815"],["-90.051679","29.938818"],["-90.051524","29.938814"],["-90.051368","29.938810"],["-90.051213","29.938806"],["-90.051057","29.938801"],["-90.050901","29.938797"],["-90.050746","29.938793"],["-90.050590","29.938789"],["-90.050435","29.938785"],["-90.050221","29.938775"],["-90.050008","29.938765"],["-90.049794","29.938756"],["-90.049581","29.938746"],["-90.049368","29.938736"],["-90.049154","29.938726"],["-90.048941","29.938716"],["-90.048727","29.938706"],["-90.048519","29.938692"],["-90.048312","29.938678"],["-90.048104","29.938664"],["-90.047896","29.938650"],["-90.047688","29.938636"],["-90.047480","29.938623"],["-90.047272","29.938609"],["-90.047064","29.938595"],["-90.046911","29.938589"],["-90.046759","29.938584"],["-90.046606","29.938579"],["-90.046453","29.938574"],["-90.046300","29.938568"],["-90.046147","29.938563"],["-90.045994","29.938558"],["-90.045841","29.938553"],["-90.045655","29.938541"],["-90.045470","29.938530"],["-90.045284","29.938519"],["-90.045098","29.938507"],["-90.044913","29.938496"],["-90.044727","29.938485"],["-90.044541","29.938473"],["-90.044355","29.938462"],["-90.044170","29.938451"],["-90.043984","29.938439"],["-90.043798","29.938428"],["-90.043612","29.938417"],["-90.043427","29.938405"],["-90.043241","29.938394"],["-90.043055","29.938383"],["-90.042869","29.938371"],["-90.042712","29.938351"],["-90.042556","29.938330"],["-90.042399","29.938309"],["-90.042242","29.938288"],["-90.042121","29.938251"],["-90.042000","29.938215"],["-90.041880","29.938178"],["-90.041759","29.938141"],["-90.041638","29.938105"],["-90.041517","29.938068"],["-90.041397","29.938032"],["-90.041276","29.937995"],["-90.041172","29.937946"],["-90.041069","29.937897"],["-90.040965","29.937848"],["-90.040861","29.937799"],["-90.040757","29.937750"],["-90.040654","29.937701"],["-90.040550","29.937652"],["-90.040446","29.937603"],["-90.040279","29.937513"],["-90.040111","29.937423"],["-90.039943","29.937333"],["-90.039776","29.937243"],["-90.039631","29.937128"],["-90.039487","29.937012"],["-90.039343","29.936896"],["-90.039199","29.936781"],["-90.039129","29.936695"],["-90.039059","29.936609"],["-90.038990","29.936524"],["-90.038920","29.936438"],["-90.038850","29.936352"],["-90.038781","29.936266"],["-90.038711","29.936181"],["-90.038641","29.936095"],["-90.038585","29.936001"],["-90.038528","29.935907"],["-90.038472","29.935813"],["-90.038416","29.935718"],["-90.038373","29.935603"],["-90.038331","29.935487"],["-90.038288","29.935372"],["-90.038245","29.935256"],["-90.038203","29.935140"],["-90.038160","29.935025"],["-90.038118","29.934909"],["-90.038075","29.934793"],["-90.038059","29.934671"],["-90.038043","29.934549"],["-90.038027","29.934426"],["-90.038011","29.934304"],["-90.037995","29.934182"],["-90.037979","29.934059"],["-90.037962","29.933937"],["-90.037946","29.933815"],["-90.037945","29.933672"],["-90.037944","29.933530"],["-90.037942","29.933388"],["-90.037941","29.933245"],["-90.037940","29.933103"],["-90.037938","29.932961"],["-90.037937","29.932818"],["-90.037936","29.932676"],["-90.038016","29.932499"],["-90.038031","29.932397"],["-90.038046","29.932295"],["-90.038060","29.932192"],["-90.038075","29.932090"],["-90.038083","29.931952"],["-90.038091","29.931813"],["-90.038099","29.931675"],["-90.038107","29.931537"],["-90.038120","29.931426"],["-90.038132","29.931315"],["-90.038144","29.931204"],["-90.038157","29.931093"],["-90.038169","29.930982"],["-90.038181","29.930871"],["-90.038194","29.930760"],["-90.038206","29.930649"],["-90.038182","29.930586"],["-90.038379","29.930594"],["-90.038575","29.930601"],["-90.038771","29.930609"],["-90.038967","29.930616"],["-90.039163","29.930624"],["-90.039359","29.930631"],["-90.039555","29.930639"],["-90.039751","29.930647"],["-90.039883","29.930648"],["-90.040014","29.930649"],["-90.040145","29.930651"],["-90.040276","29.930652"],["-90.040407","29.930654"],["-90.040538","29.930655"],["-90.040669","29.930657"],["-90.040800","29.930658"],["-90.040931","29.930660"],["-90.041062","29.930661"],["-90.041193","29.930663"],["-90.041325","29.930664"],["-90.041456","29.930665"],["-90.041587","29.930667"],["-90.041718","29.930668"],["-90.041849","29.930670"],["-90.041856","29.930547"],["-90.041864","29.930423"],["-90.041872","29.930300"],["-90.041879","29.930177"],["-90.041887","29.930054"],["-90.041894","29.929931"],["-90.041902","29.929807"],["-90.041909","29.929684"],["-90.041917","29.929561"],["-90.041924","29.929438"],["-90.041932","29.929315"],["-90.041939","29.929191"],["-90.041947","29.929068"],["-90.041955","29.928945"],["-90.041962","29.928822"],["-90.041970","29.928699"],["-90.041977","29.928575"],["-90.041985","29.928452"],["-90.041992","29.928329"],["-90.042000","29.928206"],["-90.042007","29.928083"],["-90.042015","29.927959"],["-90.042022","29.927836"],["-90.042030","29.927713"],["-90.042038","29.927590"],["-90.042045","29.927467"],["-90.042053","29.927343"],["-90.042060","29.927220"],["-90.042068","29.927097"],["-90.042075","29.926974"],["-90.042083","29.926851"],["-90.042090","29.926727"],["-90.042184","29.926584"],["-90.042167","29.926480"],["-90.042151","29.926377"],["-90.042134","29.926273"],["-90.042117","29.926169"],["-90.042125","29.926063"],["-90.042132","29.925957"],["-90.042139","29.925850"],["-90.042146","29.925688"],["-90.042153","29.925526"],["-90.042160","29.925364"],["-90.042167","29.925202"],["-90.042258","29.925096"],["-90.042178","29.925006"],["-90.042187","29.924882"],["-90.042197","29.924757"],["-90.042206","29.924632"],["-90.042216","29.924507"],["-90.042225","29.924382"],["-90.042235","29.924257"],["-90.042245","29.924132"],["-90.042254","29.924007"],["-90.042264","29.923882"],["-90.042273","29.923757"],["-90.042283","29.923632"],["-90.042292","29.923507"],["-90.042302","29.923382"],["-90.042311","29.923257"],["-90.042321","29.923132"],["-90.042331","29.923007"],["-90.042293","29.922870"],["-90.042369","29.922757"],["-90.042446","29.922644"],["-90.042522","29.922531"],["-90.042598","29.922418"],["-90.042674","29.922304"],["-90.042751","29.922191"],["-90.042827","29.922078"],["-90.042903","29.921965"],["-90.042962","29.921869"],["-90.043020","29.921774"],["-90.043078","29.921679"],["-90.043137","29.921584"],["-90.043195","29.921488"],["-90.043253","29.921393"],["-90.043312","29.921298"],["-90.043370","29.921202"],["-90.043320","29.921114"],["-90.043271","29.921026"],["-90.043161","29.920951"],["-90.043051","29.920928"],["-90.043132","29.920806"],["-90.043213","29.920684"],["-90.043294","29.920562"],["-90.043375","29.920440"],["-90.043456","29.920318"],["-90.043538","29.920196"],["-90.043619","29.920074"],["-90.043700","29.919952"],["-90.043791","29.919819"],["-90.043882","29.919687"],["-90.043982","29.919731"],["-90.044081","29.919775"],["-90.043983","29.919931"],["-90.043886","29.920087"],["-90.043815","29.920201"],["-90.043743","29.920315"],["-90.043672","29.920428"],["-90.043600","29.920542"],["-90.043529","29.920656"],["-90.043458","29.920770"],["-90.043386","29.920884"],["-90.043315","29.920998"],["-90.043186","29.920960"],["-90.043057","29.920923"],["-90.042918","29.920928"],["-90.042778","29.920932"],["-90.042703","29.921038"],["-90.042628","29.921144"],["-90.042553","29.921250"],["-90.042478","29.921356"],["-90.042420","29.921446"],["-90.042361","29.921536"],["-90.042303","29.921627"],["-90.042245","29.921717"],["-90.042186","29.921807"],["-90.042128","29.921898"],["-90.042070","29.921988"],["-90.042011","29.922079"],["-90.041953","29.922169"],["-90.041895","29.922259"],["-90.041836","29.922350"],["-90.041778","29.922440"],["-90.041720","29.922530"],["-90.041661","29.922621"],["-90.041603","29.922711"],["-90.041545","29.922802"],["-90.041571","29.922908"],["-90.041598","29.923015"],["-90.041681","29.923099"],["-90.041765","29.923183"],["-90.041904","29.923304"],["-90.042044","29.923425"],["-90.042078","29.923529"],["-90.042113","29.923634"],["-90.042106","29.923780"],["-90.042098","29.923925"],["-90.042091","29.924071"],["-90.042084","29.924217"],["-90.042076","29.924363"],["-90.042069","29.924509"],["-90.042062","29.924655"],["-90.042049","29.924809"],["-90.041925","29.924963"],["-90.042052","29.925106"],["-90.042041","29.925212"],["-90.042030","29.925317"],["-90.042018","29.925423"],["-90.042007","29.925529"],["-90.041996","29.925686"],["-90.041986","29.925843"],["-90.041976","29.926000"],["-90.041966","29.926157"],["-90.041956","29.926314"],["-90.041778","29.926423"],["-90.041859","29.926532"],["-90.041940","29.926640"],["-90.041930","29.926770"],["-90.041920","29.926900"],["-90.041915","29.926998"],["-90.041910","29.927095"],["-90.041905","29.927193"],["-90.041900","29.927290"],["-90.041893","29.927415"],["-90.041885","29.927540"],["-90.041878","29.927665"],["-90.041870","29.927790"],["-90.041860","29.927870"],["-90.041850","29.928050"],["-90.041840","29.928220"],["-90.041830","29.928390"],["-90.041820","29.928560"],["-90.041810","29.928730"],["-90.041805","29.928845"],["-90.041800","29.928960"],["-90.041790","29.929085"],["-90.041780","29.929210"],["-90.041775","29.929330"],["-90.041770","29.929450"],["-90.041765","29.929550"],["-90.041760","29.929650"],["-90.041755","29.929750"],["-90.041750","29.929850"],["-90.041745","29.930040"],["-90.041740","29.930230"],["-90.041710","29.930395"],["-90.041680","29.930560"],["-90.041660","29.930690"],["-90.041648","29.930855"],["-90.041635","29.931020"],["-90.041623","29.931185"],["-90.041544","29.931261"],["-90.041465","29.931337"],["-90.041557","29.931498"],["-90.041621","29.931610"],["-90.041612","29.931790"],["-90.041602","29.931969"],["-90.041593","29.932149"],["-90.041590","29.932209"],["-90.041580","29.932389"],["-90.041569","29.932568"],["-90.041514","29.932742"],["-90.041474","29.932869"],["-90.041516","29.933045"],["-90.041538","29.933139"],["-90.041525","29.933319"],["-90.041513","29.933498"],["-90.041500","29.933678"],["-90.041487","29.933857"],["-90.041480","29.933960"],["-90.041443","29.934137"],["-90.041407","29.934314"],["-90.041370","29.934492"],["-90.041394","29.934671"],["-90.041419","29.934849"],["-90.041412","29.935029"],["-90.041401","29.935209"],["-90.041349","29.935383"],["-90.041296","29.935557"],["-90.041283","29.935601"],["-90.041310","29.935779"],["-90.041338","29.935958"],["-90.041349","29.936030"],["-90.041339","29.936169"],["-90.041313","29.936347"],["-90.041286","29.936526"],["-90.041260","29.936704"],["-90.041233","29.936883"],["-90.041207","29.937061"],["-90.041181","29.937239"],["-90.041179","29.937251"],["-90.041215","29.937428"],["-90.041250","29.937605"],["-90.041230","29.937784"],["-90.041209","29.937950"],["-90.041199","29.937999"],["-90.041170","29.938120"],["-90.041130","29.938250"],["-90.041088","29.938426"],["-90.041045","29.938602"],["-90.041003","29.938778"],["-90.040986","29.938957"],["-90.040970","29.939130"],["-90.040960","29.939310"],["-90.040951","29.939489"],["-90.040927","29.939668"],["-90.040904","29.939847"],["-90.040894","29.939920"],["-90.040981","29.940083"],["-90.041027","29.940169"],["-90.041040","29.940300"],["-90.041032","29.940480"],["-90.041024","29.940659"],["-90.041015","29.940839"],["-90.041010","29.940959"],["-90.040999","29.941139"],["-90.040989","29.941299"],["-90.040980","29.941479"],["-90.040970","29.941658"],["-90.040958","29.941838"],["-90.040950","29.941959"],["-90.040921","29.942137"],["-90.040893","29.942315"],["-90.040864","29.942493"],["-90.040835","29.942672"],["-90.040807","29.942850"],["-90.040788","29.942967"],["-90.040833","29.943143"],["-90.040870","29.943290"],["-90.040858","29.943470"],["-90.040847","29.943649"],["-90.040835","29.943829"],["-90.040824","29.944008"],["-90.040820","29.944070"],["-90.040791","29.944248"],["-90.040763","29.944426"],["-90.040734","29.944604"],["-90.040705","29.944783"],["-90.040676","29.944961"],["-90.040665","29.945031"],["-90.040706","29.945207"],["-90.040736","29.945339"],["-90.040723","29.945519"],["-90.040710","29.945698"],["-90.040696","29.945877"],["-90.040681","29.946057"],["-90.040670","29.946200"],["-90.040658","29.946380"],["-90.040646","29.946559"],["-90.040634","29.946739"],["-90.040623","29.946918"],["-90.040611","29.947098"],["-90.040600","29.947259"],["-90.040573","29.947437"],["-90.040546","29.947616"],["-90.040519","29.947794"],["-90.040492","29.947972"],["-90.040466","29.948142"],["-90.040485","29.948321"],["-90.040505","29.948500"],["-90.040511","29.948560"],["-90.040501","29.948740"],["-90.040492","29.948919"],["-90.040482","29.949099"],["-90.040473","29.949279"],["-90.040470","29.949329"],["-90.040445","29.949508"],["-90.040420","29.949686"],["-90.040395","29.949865"],["-90.040370","29.950043"],["-90.040345","29.950222"],["-90.040320","29.950400"],["-90.040314","29.950441"],["-90.040339","29.950620"],["-90.040364","29.950798"],["-90.040375","29.950879"],["-90.040363","29.951059"],["-90.040351","29.951238"],["-90.040338","29.951418"],["-90.040326","29.951597"],["-90.040320","29.951690"],["-90.040309","29.951870"],["-90.040298","29.952049"],["-90.040287","29.952229"],["-90.040277","29.952408"],["-90.040266","29.952588"],["-90.040255","29.952768"],["-90.040250","29.952849"],["-90.040237","29.953029"],["-90.040223","29.953208"],["-90.040210","29.953387"],["-90.040194","29.953567"],["-90.040179","29.953746"],["-90.040169","29.953860"],["-90.040366","29.953916"],["-90.040449","29.953940"],["-90.040649","29.953987"],["-90.040849","29.954035"],["-90.041050","29.954082"],["-90.041250","29.954129"],["-90.041451","29.954176"],["-90.041550","29.954200"],["-90.041752","29.954243"],["-90.041953","29.954287"],["-90.042154","29.954330"],["-90.042356","29.954374"],["-90.042557","29.954417"],["-90.042759","29.954459"],["-90.042961","29.954502"],["-90.043163","29.954544"],["-90.043364","29.954586"],["-90.043566","29.954628"],["-90.043769","29.954667"],["-90.043972","29.954706"],["-90.044174","29.954745"],["-90.044377","29.954784"],["-90.044580","29.954823"],["-90.044654","29.954837"],["-90.044860","29.954818"],["-90.045006","29.954804"],["-90.045212","29.954829"],["-90.045417","29.954853"],["-90.045623","29.954877"],["-90.045730","29.954890"],["-90.045929","29.954940"],["-90.046129","29.954990"],["-90.046328","29.955040"],["-90.046459","29.955073"],["-90.046664","29.955043"],["-90.046868","29.955012"],["-90.047075","29.955023"],["-90.047283","29.955034"],["-90.047490","29.955045"],["-90.047697","29.955056"],["-90.047770","29.955060"],["-90.047975","29.955087"],["-90.048180","29.955115"],["-90.048386","29.955142"],["-90.048591","29.955170"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953316"],["-90.055113","29.953175"],["-90.055242","29.953034"],["-90.055302","29.952968"],["-90.055195","29.952814"],["-90.055089","29.952659"],["-90.054982","29.952505"],["-90.054930","29.952430"],["-90.054897","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054119","29.951124"],["-90.053997","29.950978"],["-90.053876","29.950832"],["-90.053755","29.950686"],["-90.053633","29.950540"],["-90.053550","29.950440"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052948","29.949707"],["-90.052860","29.949600"],["-90.052761","29.949442"],["-90.052662","29.949284"],["-90.052564","29.949125"],["-90.052465","29.948967"],["-90.052366","29.948809"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.051993","29.945450"],["-90.051786","29.945460"],["-90.051578","29.945471"],["-90.051371","29.945481"],["-90.051164","29.945492"],["-90.051000","29.945500"],["-90.050793","29.945510"],["-90.050585","29.945519"],["-90.050378","29.945529"],["-90.050171","29.945538"],["-90.049964","29.945551"],["-90.049810","29.945560"],["-90.049608","29.945519"],["-90.049406","29.945478"],["-90.049325","29.945461"],["-90.049122","29.945498"],["-90.048919","29.945535"],["-90.048843","29.945549"],["-90.048636","29.945540"],["-90.048428","29.945530"],["-90.048224","29.945501"],["-90.048019","29.945472"],["-90.047814","29.945442"],["-90.047609","29.945413"],["-90.047404","29.945384"],["-90.047376","29.945380"],["-90.047171","29.945409"],["-90.046966","29.945439"],["-90.046874","29.945452"],["-90.046667","29.945443"],["-90.046459","29.945435"],["-90.046339","29.945430"],["-90.046135","29.945399"],["-90.045930","29.945368"],["-90.045726","29.945337"],["-90.045521","29.945306"],["-90.045467","29.945298"],["-90.045265","29.945340"],["-90.045164","29.945361"],["-90.044958","29.945342"],["-90.044751","29.945323"],["-90.044545","29.945304"],["-90.044338","29.945285"],["-90.044132","29.945266"],["-90.043926","29.945247"],["-90.043719","29.945227"],["-90.043513","29.945208"],["-90.043306","29.945189"],["-90.043227","29.945182"],["-90.043160","29.945180"],["-90.043150","29.945270"],["-90.043022","29.945264"],["-90.042895","29.945258"],["-90.042767","29.945251"],["-90.042640","29.945245"],["-90.042512","29.945239"],["-90.042385","29.945233"],["-90.042257","29.945226"],["-90.042130","29.945220"],["-90.041997","29.945214"],["-90.041865","29.945208"],["-90.041732","29.945201"],["-90.041600","29.945195"],["-90.041467","29.945189"],["-90.041335","29.945183"],["-90.041202","29.945176"],["-90.041070","29.945170"],["-90.041070","29.945102"],["-90.041070","29.945170"],["-90.040930","29.945160"],["-90.040750","29.945150"],["-90.040630","29.945144"],["-90.040510","29.945138"],["-90.040390","29.945131"],["-90.040270","29.945125"],["-90.040150","29.945119"],["-90.040030","29.945113"],["-90.039910","29.945106"],["-90.039790","29.945100"],["-90.039670","29.945095"],["-90.039550","29.945090"],["-90.039430","29.945085"],["-90.039310","29.945080"],["-90.039190","29.945075"],["-90.039070","29.945070"],["-90.038950","29.945065"],["-90.038830","29.945060"],["-90.038913","29.944976"],["-90.038708","29.945006"],["-90.038504","29.945035"],["-90.038415","29.945048"],["-90.038208","29.945041"],["-90.038160","29.945040"],["-90.037953","29.945027"],["-90.037820","29.945019"],["-90.037670","29.945009"],["-90.037500","29.944999"],["-90.037310","29.944927"],["-90.037119","29.944856"],["-90.037077","29.944840"],["-90.036875","29.944883"],["-90.036674","29.944925"],["-90.036466","29.944920"],["-90.036259","29.944910"],["-90.036052","29.944899"],["-90.035844","29.944888"],["-90.035637","29.944878"],["-90.035480","29.944870"],["-90.035273","29.944857"],["-90.035066","29.944844"],["-90.035000","29.944840"],["-90.034793","29.944830"],["-90.034585","29.944820"],["-90.034385","29.944774"],["-90.034184","29.944729"],["-90.034017","29.944691"],["-90.033816","29.944737"],["-90.033670","29.944770"],["-90.033510","29.944760"],["-90.033360","29.944740"],["-90.033190","29.944700"],["-90.032999","29.944630"],["-90.032807","29.944561"],["-90.032640","29.944500"],["-90.032450","29.944428"],["-90.032260","29.944356"],["-90.032069","29.944284"],["-90.031895","29.944186"],["-90.031754","29.944107"],["-90.031553","29.944063"],["-90.031400","29.944030"],["-90.031211","29.943956"],["-90.031021","29.943883"],["-90.030860","29.943820"],["-90.030678","29.943734"],["-90.030496","29.943647"],["-90.030314","29.943561"],["-90.030132","29.943474"],["-90.029950","29.943388"],["-90.029925","29.943376"],["-90.029720","29.943347"],["-90.029600","29.943330"],["-90.029408","29.943261"],["-90.029217","29.943191"],["-90.029025","29.943122"],["-90.028910","29.943080"],["-90.028820","29.943039"],["-90.028660","29.942924"],["-90.028532","29.942832"],["-90.028500","29.942900"],["-90.028372","29.942850"],["-90.028245","29.942800"],["-90.028117","29.942750"],["-90.027990","29.942700"],["-90.027855","29.942650"],["-90.027720","29.942600"],["-90.027710","29.942590"],["-90.027555","29.942535"],["-90.027400","29.942480"],["-90.027410","29.942375"],["-90.027310","29.942260"],["-90.027368","29.942269"],["-90.027310","29.942260"],["-90.027290","29.942430"],["-90.027170","29.942385"],["-90.027050","29.942340"],["-90.026930","29.942295"],["-90.026810","29.942250"],["-90.026630","29.942180"],["-90.026480","29.942125"],["-90.026330","29.942070"],["-90.026167","29.942003"],["-90.026005","29.941935"],["-90.025842","29.941868"],["-90.025680","29.941800"],["-90.025565","29.941755"],["-90.025450","29.941710"],["-90.025335","29.941665"],["-90.025227","29.941503"],["-90.025019","29.941503"],["-90.024882","29.941503"],["-90.024693","29.941428"],["-90.024549","29.941370"],["-90.024410","29.941309"],["-90.024279","29.941270"],["-90.024094","29.941189"],["-90.023908","29.941108"],["-90.023723","29.941028"],["-90.023537","29.940947"],["-90.023361","29.940851"],["-90.023186","29.940756"],["-90.023010","29.940660"],["-90.022834","29.940564"],["-90.022692","29.940487"],["-90.022488","29.940453"],["-90.022335","29.940428"],["-90.022150","29.940346"],["-90.021965","29.940265"],["-90.021780","29.940183"],["-90.021595","29.940102"],["-90.021410","29.940020"],["-90.021236","29.939922"],["-90.021062","29.939824"],["-90.020888","29.939726"],["-90.020714","29.939628"],["-90.020540","29.939530"],["-90.020384","29.939442"],["-90.020180","29.939408"],["-90.019976","29.939374"],["-90.019919","29.939365"],["-90.019734","29.939284"],["-90.019549","29.939202"],["-90.019500","29.939180"],["-90.019315","29.939098"],["-90.019131","29.939015"],["-90.018947","29.938932"],["-90.018763","29.938849"],["-90.018579","29.938765"],["-90.018410","29.938689"],["-90.018226","29.938606"],["-90.018093","29.938468"],["-90.017983","29.938353"],["-90.017777","29.938329"],["-90.017572","29.938304"],["-90.017519","29.938298"],["-90.017334","29.938217"],["-90.017149","29.938135"],["-90.016963","29.938054"],["-90.016778","29.937973"],["-90.016593","29.937892"],["-90.016408","29.937811"],["-90.016231","29.937717"],["-90.016054","29.937623"],["-90.015877","29.937529"],["-90.015700","29.937435"],["-90.015523","29.937341"],["-90.015346","29.937247"],["-90.015169","29.937153"],["-90.014992","29.937059"],["-90.014815","29.936965"],["-90.014689","29.936898"],["-90.014483","29.936877"],["-90.014277","29.936856"],["-90.014218","29.936850"],["-90.014031","29.936771"],["-90.013846","29.936691"],["-90.013659","29.936612"],["-90.013473","29.936532"],["-90.013420","29.936510"],["-90.013269","29.936386"],["-90.013118","29.936263"],["-90.013088","29.936238"],["-90.012889","29.936188"],["-90.012689","29.936138"],["-90.012614","29.936119"],["-90.012428","29.936039"],["-90.012359","29.936009"],["-90.012189","29.935929"],["-90.012004","29.935848"],["-90.011818","29.935767"],["-90.011633","29.935686"],["-90.011570","29.935659"],["-90.011388","29.935573"],["-90.011238","29.935449"],["-90.011155","29.935380"],["-90.010951","29.935346"],["-90.010800","29.935320"],["-90.010615","29.935239"],["-90.010429","29.935158"],["-90.010244","29.935077"],["-90.010090","29.935010"],["-90.009924","29.934902"],["-90.009758","29.934794"],["-90.009659","29.934729"],["-90.009460","29.934679"],["-90.009260","29.934629"],["-90.009170","29.934606"],["-90.008985","29.934524"],["-90.008840","29.934460"],["-90.008678","29.934348"],["-90.008515","29.934236"],["-90.008453","29.934193"],["-90.008253","29.934143"],["-90.008054","29.934094"],["-90.007999","29.934080"],["-90.007829","29.933977"],["-90.007659","29.933874"],["-90.007488","29.933771"],["-90.007404","29.933720"],["-90.007203","29.933674"],["-90.007003","29.933628"],["-90.006942","29.933614"],["-90.006760","29.933540"],["-90.006575","29.933459"],["-90.006509","29.933430"],["-90.006324","29.933349"],["-90.006210","29.933299"],["-90.006026","29.933216"],["-90.005842","29.933133"],["-90.005658","29.933050"],["-90.005569","29.933010"],["-90.005401","29.932905"],["-90.005232","29.932800"],["-90.005064","29.932694"],["-90.004961","29.932630"],["-90.004756","29.932602"],["-90.004574","29.932577"],["-90.004389","29.932496"],["-90.004240","29.932430"],["-90.004110","29.932370"],["-90.003924","29.932291"],["-90.003779","29.932229"],["-90.003594","29.932148"],["-90.003409","29.932067"],["-90.003300","29.932019"],["-90.003181","29.931872"],["-90.003101","29.931773"],["-90.002893","29.931774"],["-90.002765","29.931775"],["-90.002581","29.931692"],["-90.002397","29.931608"],["-90.002214","29.931524"],["-90.002030","29.931441"],["-90.001846","29.931357"],["-90.001699","29.931290"],["-90.001548","29.931167"],["-90.001449","29.931086"],["-90.001243","29.931067"],["-90.001136","29.931057"],["-90.000952","29.930973"],["-90.000790","29.930900"],["-90.000605","29.930819"],["-90.000419","29.930739"],["-90.000234","29.930658"],["-90.000048","29.930577"],["-89.999940","29.930530"],["-89.999787","29.930408"],["-89.999662","29.930309"],["-89.999463","29.930259"],["-89.999263","29.930208"],["-89.999171","29.930185"],["-89.998987","29.930102"],["-89.998803","29.930019"],["-89.998618","29.929937"],["-89.998490","29.929879"],["-89.998304","29.929799"],["-89.998119","29.929718"],["-89.997933","29.929638"],["-89.997781","29.929516"],["-89.997656","29.929416"],["-89.997456","29.929368"],["-89.997256","29.929319"],["-89.997169","29.929298"],["-89.996984","29.929217"],["-89.996799","29.929136"],["-89.996670","29.929080"],["-89.996600","29.929050"],["-89.996431","29.928946"],["-89.996262","29.928841"],["-89.996093","29.928737"],["-89.996035","29.928701"],["-89.995832","29.928665"],["-89.995690","29.928640"],["-89.995504","29.928560"],["-89.995318","29.928480"],["-89.995132","29.928400"],["-89.994946","29.928320"],["-89.994760","29.928240"],["-89.994575","29.928159"],["-89.994390","29.928078"],["-89.994205","29.927997"],["-89.994020","29.927915"],["-89.993835","29.927834"],["-89.993649","29.927754"],["-89.993463","29.927674"],["-89.993278","29.927593"],["-89.993108","29.927489"],["-89.992939","29.927385"],["-89.992783","29.927290"],["-89.992586","29.927233"],["-89.992389","29.927176"],["-89.992329","29.927159"],["-89.992144","29.927077"],["-89.991989","29.927009"],["-89.991811","29.926917"],["-89.991633","29.926825"],["-89.991454","29.926732"],["-89.991276","29.926640"],["-89.991098","29.926548"],["-89.991048","29.926522"],["-89.990850","29.926469"],["-89.990651","29.926416"],["-89.990562","29.926392"],["-89.990378","29.926309"],["-89.990194","29.926226"],["-89.990010","29.926142"],["-89.989826","29.926059"],["-89.989643","29.925975"],["-89.989459","29.925892"],["-89.989275","29.925809"],["-89.989099","29.925729"],["-89.988921","29.925636"],["-89.988744","29.925543"],["-89.988566","29.925450"],["-89.988389","29.925357"],["-89.988211","29.925264"],["-89.988107","29.925209"],["-89.987907","29.925160"],["-89.987708","29.925111"],["-89.987619","29.925089"],["-89.987434","29.925008"],["-89.987248","29.924927"],["-89.987063","29.924846"],["-89.986910","29.924780"],["-89.986725","29.924699"],["-89.986540","29.924618"],["-89.986355","29.924536"],["-89.986169","29.924455"],["-89.985984","29.924374"],["-89.985930","29.924350"],["-89.985769","29.924236"],["-89.985600","29.924132"],["-89.985450","29.924007"],["-89.985301","29.923883"],["-89.985229","29.923823"],["-89.985130","29.923810"],["-89.985120","29.923890"],["-89.985002","29.923838"],["-89.984885","29.923785"],["-89.984767","29.923733"],["-89.984650","29.923680"],["-89.984502","29.923620"],["-89.984355","29.923560"],["-89.984207","29.923500"],["-89.984060","29.923440"],["-89.983935","29.923380"],["-89.983810","29.923320"],["-89.983645","29.923245"],["-89.983480","29.923170"],["-89.983315","29.923095"],["-89.983150","29.923020"],["-89.983040","29.922980"],["-89.983078","29.922904"],["-89.983040","29.922980"],["-89.982970","29.922950"],["-89.982775","29.922863"],["-89.982580","29.922775"],["-89.982385","29.922688"],["-89.982190","29.922600"],["-89.982077","29.922553"],["-89.981965","29.922505"],["-89.981852","29.922458"],["-89.981740","29.922410"],["-89.981552","29.922328"],["-89.981365","29.922245"],["-89.981177","29.922163"],["-89.980990","29.922080"],["-89.981000","29.921970"],["-89.981062","29.921974"],["-89.981000","29.921970"],["-89.980990","29.922080"],["-89.980871","29.922026"],["-89.980752","29.921973"],["-89.980634","29.921919"],["-89.980515","29.921865"],["-89.980396","29.921811"],["-89.980277","29.921758"],["-89.980159","29.921704"],["-89.980040","29.921650"],["-89.979870","29.921575"],["-89.979700","29.921500"],["-89.979530","29.921425"],["-89.979360","29.921350"],["-89.979400","29.921278"],["-89.979360","29.921350"],["-89.979270","29.921320"],["-89.979077","29.921235"],["-89.978885","29.921150"],["-89.978692","29.921065"],["-89.978500","29.920980"],["-89.978401","29.920935"],["-89.978302","29.920890"],["-89.978204","29.920845"],["-89.978105","29.920800"],["-89.978006","29.920755"],["-89.977907","29.920710"],["-89.977809","29.920665"],["-89.977710","29.920620"],["-89.977532","29.920543"],["-89.977355","29.920465"],["-89.977177","29.920388"],["-89.977110","29.920310"],["-89.977042","29.920232"],["-89.977000","29.920310"],["-89.976910","29.920270"],["-89.976900","29.920370"],["-89.976892","29.920474"],["-89.977066","29.920550"],["-89.977240","29.920627"],["-89.977414","29.920704"],["-89.977588","29.920780"],["-89.977762","29.920857"],["-89.977936","29.920934"],["-89.978110","29.921010"],["-89.978283","29.921087"],["-89.978457","29.921164"],["-89.978631","29.921240"],["-89.978805","29.921317"],["-89.978979","29.921393"],["-89.979153","29.921470"],["-89.979327","29.921547"],["-89.979501","29.921623"],["-89.979675","29.921700"],["-89.979842","29.921775"],["-89.980010","29.921850"],["-89.980182","29.921925"],["-89.980355","29.922000"],["-89.980527","29.922075"],["-89.980700","29.922150"],["-89.980860","29.922220"],["-89.980969","29.922268"],["-89.981077","29.922315"],["-89.981186","29.922363"],["-89.981295","29.922410"],["-89.981404","29.922458"],["-89.981512","29.922505"],["-89.981621","29.922553"],["-89.981730","29.922600"],["-89.981750","29.922610"],["-89.981910","29.922690"],["-89.982040","29.922745"],["-89.982170","29.922800"],["-89.982342","29.922878"],["-89.982515","29.922955"],["-89.982687","29.923033"],["-89.982860","29.923110"],["-89.982893","29.923220"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.076106","29.947003"],["-90.041465","29.931337"],["-90.041474","29.932869"],["-90.049325","29.945461"],["-89.977042","29.920232"],["-89.982893","29.923220"],["-90.041070","29.945102"],["-90.041370","29.934492"],["-90.041283","29.935601"],["-90.040894","29.939920"],["-90.040788","29.942967"],["-90.038913","29.944976"],["-90.037077","29.944840"],["-90.034017","29.944691"],["-90.031754","29.944107"],["-90.029925","29.943376"],["-90.028532","29.942832"],["-90.027368","29.942269"],["-90.025227","29.941503"],["-90.022692","29.940487"],["-90.020384","29.939442"],["-90.017983","29.938353"],["-90.014689","29.936898"],["-90.013088","29.936238"],["-90.011155","29.935380"],["-90.009659","29.934729"],["-90.008453","29.934193"],["-90.007404","29.933720"],["-90.004961","29.932630"],["-90.003101","29.931773"],["-90.001449","29.931086"],["-89.999662","29.930309"],["-89.997656","29.929416"],["-89.996035","29.928701"],["-89.992783","29.927290"],["-89.991048","29.926522"],["-89.988107","29.925209"],["-89.985229","29.923823"],["-89.983078","29.922904"],["-89.981062","29.921974"],["-89.979400","29.921278"],["-90.053661","29.954274"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.047376","29.945380"],["-90.045467","29.945298"],["-90.043227","29.945182"],["-90.055302","29.952968"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.074290","29.953176"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.041179","29.937251"],["-90.040665","29.945031"],["-90.035354","29.948182"],["-90.077705","29.945589"],["-90.040466","29.948142"],["-90.042369","29.922906"],["-90.040314","29.950441"],["-90.041956","29.930163"],["-90.038206","29.930649"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075052","29.954585"],["-90.074855","29.954529"],["-90.074790","29.954510"],["-90.074670","29.954510"],["-90.074482","29.954434"],["-90.074294","29.954358"],["-90.074249","29.954340"],["-90.074073","29.954244"],["-90.073990","29.954199"],["-90.074000","29.954079"],["-90.073990","29.953950"],["-90.074000","29.953860"],["-90.074019","29.953770"],["-90.074069","29.953595"],["-90.074119","29.953421"],["-90.074226","29.953267"],["-90.074290","29.953176"],["-90.074298","29.952996"],["-90.074307","29.952817"],["-90.074309","29.952764"],["-90.074350","29.952620"],["-90.074397","29.952445"],["-90.074419","29.952360"],["-90.074471","29.952186"],["-90.074509","29.952060"],["-90.074561","29.951886"],["-90.074599","29.951759"],["-90.074667","29.951589"],["-90.074735","29.951419"],["-90.074803","29.951249"],["-90.074871","29.951079"],["-90.074939","29.950909"],["-90.075000","29.950758"],["-90.074987","29.950578"],["-90.074980","29.950479"],["-90.075031","29.950305"],["-90.075081","29.950130"],["-90.075132","29.949956"],["-90.075183","29.949781"],["-90.075234","29.949607"],["-90.075284","29.949432"],["-90.075320","29.949310"],["-90.075393","29.949141"],["-90.075465","29.948973"],["-90.075538","29.948804"],["-90.075610","29.948636"],["-90.075680","29.948474"],["-90.075681","29.948294"],["-90.075681","29.948136"],["-90.075732","29.947962"],["-90.075783","29.947787"],["-90.075834","29.947613"],["-90.075885","29.947439"],["-90.075936","29.947264"],["-90.075960","29.947085"],["-90.076010","29.946910"],["-90.076130","29.946940"],["-90.076106","29.947003"],["-90.076130","29.946940"],["-90.076240","29.946970"],["-90.076350","29.947000"],["-90.076530","29.947050"],["-90.076650","29.947050"],["-90.076700","29.947050"],["-90.076740","29.947040"],["-90.076790","29.947030"],["-90.076820","29.947020"],["-90.076880","29.946990"],["-90.076980","29.946950"],["-90.077025","29.946810"],["-90.077070","29.946670"],["-90.077100","29.946575"],["-90.077130","29.946480"],["-90.077160","29.946385"],["-90.077190","29.946290"],["-90.077200","29.946270"],["-90.077220","29.946190"],["-90.077250","29.946090"],["-90.077280","29.945990"],["-90.077320","29.945880"],["-90.077350","29.945770"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077630","29.945550"],["-90.077640","29.945550"],["-90.077650","29.945560"],["-90.077660","29.945560"],["-90.077690","29.945550"],["-90.077700","29.945550"],["-90.077705","29.945589"],["-90.077700","29.945550"],["-90.077835","29.945545"],["-90.077970","29.945540"],["-90.078040","29.945530"],["-90.078150","29.945545"],["-90.078260","29.945560"],["-90.078430","29.945630"],["-90.078535","29.945680"],["-90.078640","29.945730"],["-90.078800","29.945750"],["-90.078958","29.945803"],["-90.079116","29.945857"],["-90.079274","29.945910"],["-90.079431","29.945963"],["-90.079533","29.946025"],["-90.079635","29.946087"],["-90.079737","29.946150"],["-90.079839","29.946212"],["-90.079941","29.946274"],["-90.080043","29.946336"],["-90.080145","29.946398"],["-90.080247","29.946461"],["-90.080391","29.946542"],["-90.080535","29.946623"],["-90.080679","29.946705"],["-90.080823","29.946786"],["-90.080968","29.946867"],["-90.081112","29.946949"],["-90.081256","29.947030"],["-90.081400","29.947111"],["-90.081541","29.947196"],["-90.081682","29.947281"],["-90.081823","29.947366"],["-90.081963","29.947451"],["-90.082104","29.947535"],["-90.082245","29.947620"],["-90.082386","29.947705"],["-90.082527","29.947790"],["-90.082638","29.947879"],["-90.082749","29.947969"],["-90.082861","29.948058"],["-90.082972","29.948148"],["-90.083091","29.948175"],["-90.083211","29.948201"],["-90.083330","29.948228"],["-90.083449","29.948255"],["-90.083380","29.948341"],["-90.083310","29.948427"],["-90.083106","29.948445"],["-90.082945","29.948315"],["-90.082848","29.948239"],["-90.082752","29.948163"],["-90.082655","29.948087"],["-90.082559","29.948011"],["-90.082462","29.947935"],["-90.082366","29.947858"],["-90.082269","29.947782"],["-90.082173","29.947706"],["-90.082068","29.947650"],["-90.081963","29.947595"],["-90.081859","29.947539"],["-90.081754","29.947483"],["-90.081650","29.947427"],["-90.081545","29.947372"],["-90.081440","29.947316"],["-90.081336","29.947260"],["-90.081239","29.947203"],["-90.081143","29.947146"],["-90.081046","29.947089"],["-90.080949","29.947032"],["-90.080853","29.946975"],["-90.080756","29.946918"],["-90.080660","29.946861"],["-90.080563","29.946804"],["-90.080420","29.946701"],["-90.080276","29.946598"],["-90.080133","29.946494"],["-90.079989","29.946391"],["-90.079897","29.946333"],["-90.079804","29.946276"],["-90.079712","29.946218"],["-90.079619","29.946161"],["-90.079527","29.946103"],["-90.079434","29.946046"],["-90.079341","29.945988"],["-90.079249","29.945931"],["-90.079152","29.945879"],["-90.079054","29.945827"],["-90.078957","29.945775"],["-90.078860","29.945724"],["-90.078763","29.945672"],["-90.078666","29.945620"],["-90.078568","29.945569"],["-90.078471","29.945517"],["-90.078380","29.945382"],["-90.078289","29.945247"],["-90.078237","29.945154"],["-90.078186","29.945061"],["-90.078103","29.944954"],["-90.078020","29.944847"],["-90.077843","29.944738"],["-90.077666","29.944629"],["-90.077526","29.944551"],["-90.077386","29.944474"],["-90.077245","29.944396"],["-90.077105","29.944319"],["-90.076965","29.944241"],["-90.076825","29.944163"],["-90.076685","29.944086"],["-90.076545","29.944008"],["-90.076405","29.943931"],["-90.076264","29.943853"],["-90.076124","29.943776"],["-90.075984","29.943698"],["-90.075844","29.943620"],["-90.075704","29.943543"],["-90.075564","29.943465"],["-90.075424","29.943388"],["-90.075269","29.943300"],["-90.075115","29.943212"],["-90.074961","29.943125"],["-90.074807","29.943037"],["-90.074652","29.942949"],["-90.074498","29.942861"],["-90.074344","29.942774"],["-90.074190","29.942686"],["-90.074074","29.942621"],["-90.073959","29.942556"],["-90.073844","29.942491"],["-90.073728","29.942426"],["-90.073613","29.942360"],["-90.073498","29.942295"],["-90.073382","29.942230"],["-90.073267","29.942165"],["-90.073152","29.942100"],["-90.073036","29.942035"],["-90.072921","29.941970"],["-90.072806","29.941905"],["-90.072690","29.941840"],["-90.072575","29.941775"],["-90.072460","29.941710"],["-90.072344","29.941645"],["-90.072213","29.941577"],["-90.072082","29.941509"],["-90.071950","29.941441"],["-90.071819","29.941373"],["-90.071687","29.941305"],["-90.071556","29.941237"],["-90.071424","29.941169"],["-90.071293","29.941101"],["-90.071132","29.941011"],["-90.070971","29.940922"],["-90.070810","29.940832"],["-90.070649","29.940743"],["-90.070489","29.940652"],["-90.070329","29.940561"],["-90.070169","29.940471"],["-90.070010","29.940380"],["-90.069850","29.940290"],["-90.069690","29.940199"],["-90.069530","29.940108"],["-90.069370","29.940018"],["-90.069210","29.939927"],["-90.069050","29.939836"],["-90.068890","29.939746"],["-90.068730","29.939655"],["-90.068570","29.939564"],["-90.068410","29.939474"],["-90.068250","29.939383"],["-90.068090","29.939292"],["-90.067946","29.939213"],["-90.067801","29.939134"],["-90.067656","29.939055"],["-90.067511","29.938976"],["-90.067400","29.938935"],["-90.067288","29.938893"],["-90.067177","29.938851"],["-90.067066","29.938809"],["-90.066913","29.938763"],["-90.066760","29.938716"],["-90.066607","29.938670"],["-90.066454","29.938623"],["-90.066256","29.938599"],["-90.066057","29.938574"],["-90.065859","29.938550"],["-90.065660","29.938525"],["-90.065498","29.938524"],["-90.065336","29.938523"],["-90.065174","29.938522"],["-90.065011","29.938521"],["-90.064856","29.938541"],["-90.064700","29.938560"],["-90.064545","29.938580"],["-90.064389","29.938600"],["-90.064240","29.938608"],["-90.064091","29.938616"],["-90.063942","29.938624"],["-90.063794","29.938632"],["-90.063645","29.938640"],["-90.063496","29.938649"],["-90.063347","29.938657"],["-90.063198","29.938665"],["-90.063055","29.938673"],["-90.062911","29.938681"],["-90.062768","29.938689"],["-90.062624","29.938697"],["-90.062481","29.938706"],["-90.062337","29.938714"],["-90.062194","29.938722"],["-90.062050","29.938730"],["-90.061884","29.938729"],["-90.061717","29.938729"],["-90.061551","29.938728"],["-90.061385","29.938728"],["-90.061219","29.938727"],["-90.061052","29.938726"],["-90.060886","29.938726"],["-90.060720","29.938725"],["-90.060589","29.938729"],["-90.060458","29.938732"],["-90.060327","29.938736"],["-90.060197","29.938739"],["-90.060066","29.938743"],["-90.059935","29.938746"],["-90.059804","29.938750"],["-90.059674","29.938753"],["-90.059547","29.938754"],["-90.059421","29.938756"],["-90.059294","29.938757"],["-90.059168","29.938758"],["-90.059042","29.938759"],["-90.058915","29.938760"],["-90.058789","29.938761"],["-90.058662","29.938763"],["-90.058536","29.938764"],["-90.058410","29.938765"],["-90.058283","29.938766"],["-90.058157","29.938767"],["-90.058030","29.938768"],["-90.057904","29.938769"],["-90.057778","29.938771"],["-90.057651","29.938772"],["-90.057481","29.938771"],["-90.057311","29.938771"],["-90.057140","29.938770"],["-90.056970","29.938769"],["-90.056800","29.938769"],["-90.056629","29.938768"],["-90.056459","29.938768"],["-90.056289","29.938767"],["-90.056121","29.938771"],["-90.055953","29.938774"],["-90.055786","29.938778"],["-90.055618","29.938781"],["-90.055451","29.938785"],["-90.055283","29.938788"],["-90.055115","29.938792"],["-90.054948","29.938795"],["-90.054756","29.938796"],["-90.054564","29.938796"],["-90.054372","29.938797"],["-90.054180","29.938797"],["-90.053988","29.938798"],["-90.053796","29.938798"],["-90.053604","29.938799"],["-90.053412","29.938799"],["-90.053195","29.938801"],["-90.052979","29.938804"],["-90.052762","29.938806"],["-90.052546","29.938808"],["-90.052329","29.938811"],["-90.052112","29.938813"],["-90.051896","29.938815"],["-90.051679","29.938818"],["-90.051524","29.938814"],["-90.051368","29.938810"],["-90.051213","29.938806"],["-90.051057","29.938801"],["-90.050901","29.938797"],["-90.050746","29.938793"],["-90.050590","29.938789"],["-90.050435","29.938785"],["-90.050221","29.938775"],["-90.050008","29.938765"],["-90.049794","29.938756"],["-90.049581","29.938746"],["-90.049368","29.938736"],["-90.049154","29.938726"],["-90.048941","29.938716"],["-90.048727","29.938706"],["-90.048519","29.938692"],["-90.048312","29.938678"],["-90.048104","29.938664"],["-90.047896","29.938650"],["-90.047688","29.938636"],["-90.047480","29.938623"],["-90.047272","29.938609"],["-90.047064","29.938595"],["-90.046911","29.938589"],["-90.046759","29.938584"],["-90.046606","29.938579"],["-90.046453","29.938574"],["-90.046300","29.938568"],["-90.046147","29.938563"],["-90.045994","29.938558"],["-90.045841","29.938553"],["-90.045655","29.938541"],["-90.045470","29.938530"],["-90.045284","29.938519"],["-90.045098","29.938507"],["-90.044913","29.938496"],["-90.044727","29.938485"],["-90.044541","29.938473"],["-90.044355","29.938462"],["-90.044170","29.938451"],["-90.043984","29.938439"],["-90.043798","29.938428"],["-90.043612","29.938417"],["-90.043427","29.938405"],["-90.043241","29.938394"],["-90.043055","29.938383"],["-90.042869","29.938371"],["-90.042712","29.938351"],["-90.042556","29.938330"],["-90.042399","29.938309"],["-90.042242","29.938288"],["-90.042121","29.938251"],["-90.042000","29.938215"],["-90.041880","29.938178"],["-90.041759","29.938141"],["-90.041638","29.938105"],["-90.041517","29.938068"],["-90.041397","29.938032"],["-90.041276","29.937995"],["-90.041172","29.937946"],["-90.041069","29.937897"],["-90.040965","29.937848"],["-90.040861","29.937799"],["-90.040757","29.937750"],["-90.040654","29.937701"],["-90.040550","29.937652"],["-90.040446","29.937603"],["-90.040279","29.937513"],["-90.040111","29.937423"],["-90.039943","29.937333"],["-90.039776","29.937243"],["-90.039631","29.937128"],["-90.039487","29.937012"],["-90.039343","29.936896"],["-90.039199","29.936781"],["-90.039129","29.936695"],["-90.039059","29.936609"],["-90.038990","29.936524"],["-90.038920","29.936438"],["-90.038850","29.936352"],["-90.038781","29.936266"],["-90.038711","29.936181"],["-90.038641","29.936095"],["-90.038585","29.936001"],["-90.038528","29.935907"],["-90.038472","29.935813"],["-90.038416","29.935718"],["-90.038373","29.935603"],["-90.038331","29.935487"],["-90.038288","29.935372"],["-90.038245","29.935256"],["-90.038203","29.935140"],["-90.038160","29.935025"],["-90.038118","29.934909"],["-90.038075","29.934793"],["-90.038059","29.934671"],["-90.038043","29.934549"],["-90.038027","29.934426"],["-90.038011","29.934304"],["-90.037995","29.934182"],["-90.037979","29.934059"],["-90.037962","29.933937"],["-90.037946","29.933815"],["-90.037945","29.933672"],["-90.037944","29.933530"],["-90.037942","29.933388"],["-90.037941","29.933245"],["-90.037940","29.933103"],["-90.037938","29.932961"],["-90.037937","29.932818"],["-90.037936","29.932676"],["-90.038016","29.932499"],["-90.038031","29.932397"],["-90.038046","29.932295"],["-90.038060","29.932192"],["-90.038075","29.932090"],["-90.038083","29.931952"],["-90.038091","29.931813"],["-90.038099","29.931675"],["-90.038107","29.931537"],["-90.038120","29.931426"],["-90.038132","29.931315"],["-90.038144","29.931204"],["-90.038157","29.931093"],["-90.038169","29.930982"],["-90.038181","29.930871"],["-90.038194","29.930760"],["-90.038206","29.930649"],["-90.038176","29.930577"],["-90.038377","29.930586"],["-90.038577","29.930595"],["-90.038778","29.930603"],["-90.038978","29.930612"],["-90.039179","29.930621"],["-90.039346","29.930628"],["-90.039513","29.930634"],["-90.039680","29.930641"],["-90.039847","29.930647"],["-90.040013","29.930654"],["-90.040180","29.930660"],["-90.040347","29.930667"],["-90.040514","29.930673"],["-90.040681","29.930680"],["-90.040848","29.930686"],["-90.041015","29.930693"],["-90.041182","29.930699"],["-90.041349","29.930706"],["-90.041515","29.930712"],["-90.041682","29.930719"],["-90.041849","29.930725"],["-90.041876","29.930585"],["-90.041903","29.930444"],["-90.041929","29.930304"],["-90.041956","29.930163"],["-90.041941","29.930050"],["-90.041927","29.929937"],["-90.041912","29.929825"],["-90.041898","29.929712"],["-90.041908","29.929529"],["-90.041918","29.929345"],["-90.041928","29.929162"],["-90.041938","29.928979"],["-90.041948","29.928795"],["-90.041958","29.928612"],["-90.041968","29.928428"],["-90.041978","29.928245"],["-90.041988","29.928062"],["-90.041998","29.927878"],["-90.042008","29.927695"],["-90.042018","29.927512"],["-90.042028","29.927328"],["-90.042038","29.927145"],["-90.042048","29.926962"],["-90.042058","29.926778"],["-90.042121","29.926681"],["-90.042184","29.926584"],["-90.042167","29.926480"],["-90.042151","29.926377"],["-90.042134","29.926273"],["-90.042117","29.926169"],["-90.042125","29.926063"],["-90.042132","29.925957"],["-90.042139","29.925850"],["-90.042146","29.925688"],["-90.042153","29.925526"],["-90.042160","29.925364"],["-90.042167","29.925202"],["-90.042258","29.925096"],["-90.042191","29.924937"],["-90.042199","29.924819"],["-90.042208","29.924700"],["-90.042216","29.924582"],["-90.042224","29.924463"],["-90.042233","29.924345"],["-90.042241","29.924226"],["-90.042249","29.924108"],["-90.042258","29.923990"],["-90.042266","29.923871"],["-90.042274","29.923753"],["-90.042283","29.923634"],["-90.042291","29.923516"],["-90.042300","29.923397"],["-90.042308","29.923279"],["-90.042316","29.923160"],["-90.042325","29.923042"],["-90.042369","29.922906"],["-90.042343","29.922875"],["-90.042403","29.922768"],["-90.042463","29.922662"],["-90.042523","29.922555"],["-90.042583","29.922449"],["-90.042643","29.922343"],["-90.042703","29.922236"],["-90.042764","29.922130"],["-90.042824","29.922024"],["-90.042893","29.921923"],["-90.042962","29.921821"],["-90.043031","29.921720"],["-90.043100","29.921619"],["-90.043169","29.921518"],["-90.043238","29.921417"],["-90.043307","29.921316"],["-90.043376","29.921215"],["-90.043320","29.921092"],["-90.043207","29.920971"],["-90.043011","29.920934"],["-90.042907","29.920922"],["-90.042962","29.920838"],["-90.043016","29.920754"],["-90.043071","29.920670"],["-90.043126","29.920586"],["-90.043181","29.920501"],["-90.043236","29.920417"],["-90.043290","29.920333"],["-90.043345","29.920249"],["-90.043400","29.920165"],["-90.043455","29.920081"],["-90.043510","29.919997"],["-90.043565","29.919913"],["-90.043619","29.919828"],["-90.043674","29.919744"],["-90.043729","29.919660"],["-90.043784","29.919576"],["-90.043950","29.919683"],["-90.044116","29.919790"],["-90.044001","29.919938"],["-90.043886","29.920087"],["-90.043811","29.920206"],["-90.043736","29.920324"],["-90.043661","29.920443"],["-90.043585","29.920561"],["-90.043510","29.920680"],["-90.043435","29.920799"],["-90.043360","29.920917"],["-90.043285","29.921036"],["-90.043184","29.920979"],["-90.043084","29.920922"],["-90.042939","29.920928"],["-90.042794","29.920934"],["-90.042647","29.921043"],["-90.042576","29.921150"],["-90.042506","29.921258"],["-90.042436","29.921365"],["-90.042366","29.921472"],["-90.042296","29.921580"],["-90.042226","29.921687"],["-90.042156","29.921795"],["-90.042086","29.921902"],["-90.042016","29.922009"],["-90.041946","29.922117"],["-90.041876","29.922224"],["-90.041806","29.922331"],["-90.041736","29.922439"],["-90.041665","29.922546"],["-90.041595","29.922653"],["-90.041525","29.922761"],["-90.041559","29.922888"],["-90.041592","29.923014"],["-90.041709","29.923127"],["-90.041826","29.923240"],["-90.041936","29.923330"],["-90.042046","29.923421"],["-90.042081","29.923606"],["-90.042115","29.923791"],["-90.042104","29.923934"],["-90.042093","29.924077"],["-90.042081","29.924220"],["-90.042070","29.924364"],["-90.042058","29.924507"],["-90.042047","29.924650"],["-90.042036","29.924793"],["-90.042024","29.924937"],["-90.041925","29.924963"],["-90.041980","29.925074"],["-90.042035","29.925185"],["-90.042025","29.925330"],["-90.042015","29.925474"],["-90.042005","29.925618"],["-90.041995","29.925762"],["-90.041985","29.925906"],["-90.041975","29.926050"],["-90.041965","29.926194"],["-90.041955","29.926338"],["-90.041778","29.926423"],["-90.041865","29.926511"],["-90.041952","29.926599"],["-90.041929","29.926754"],["-90.041907","29.926908"],["-90.041884","29.927063"],["-90.041862","29.927218"],["-90.041855","29.927360"],["-90.041848","29.927503"],["-90.041841","29.927645"],["-90.041833","29.927788"],["-90.041826","29.927930"],["-90.041819","29.928073"],["-90.041812","29.928215"],["-90.041805","29.928358"],["-90.041798","29.928500"],["-90.041791","29.928643"],["-90.041784","29.928785"],["-90.041776","29.928928"],["-90.041769","29.929070"],["-90.041762","29.929213"],["-90.041755","29.929355"],["-90.041748","29.929459"],["-90.041740","29.929563"],["-90.041733","29.929667"],["-90.041725","29.929771"],["-90.041715","29.929910"],["-90.041705","29.930048"],["-90.041695","29.930187"],["-90.041685","29.930326"],["-90.041675","29.930465"],["-90.041665","29.930604"],["-90.041655","29.930742"],["-90.041645","29.930881"],["-90.041635","29.931020"],["-90.041623","29.931185"],["-90.041544","29.931261"],["-90.041465","29.931337"],["-90.041557","29.931498"],["-90.041621","29.931610"],["-90.041612","29.931790"],["-90.041602","29.931969"],["-90.041593","29.932149"],["-90.041590","29.932209"],["-90.041580","29.932389"],["-90.041569","29.932568"],["-90.041514","29.932742"],["-90.041474","29.932869"],["-90.041516","29.933045"],["-90.041538","29.933139"],["-90.041525","29.933319"],["-90.041513","29.933498"],["-90.041500","29.933678"],["-90.041487","29.933857"],["-90.041480","29.933960"],["-90.041443","29.934137"],["-90.041407","29.934314"],["-90.041370","29.934492"],["-90.041394","29.934671"],["-90.041419","29.934849"],["-90.041412","29.935029"],["-90.041401","29.935209"],["-90.041349","29.935383"],["-90.041296","29.935557"],["-90.041283","29.935601"],["-90.041310","29.935779"],["-90.041338","29.935958"],["-90.041349","29.936030"],["-90.041339","29.936169"],["-90.041313","29.936347"],["-90.041286","29.936526"],["-90.041260","29.936704"],["-90.041233","29.936883"],["-90.041207","29.937061"],["-90.041181","29.937239"],["-90.041179","29.937251"],["-90.041215","29.937428"],["-90.041250","29.937605"],["-90.041230","29.937784"],["-90.041209","29.937950"],["-90.041199","29.937999"],["-90.041170","29.938120"],["-90.041130","29.938250"],["-90.041088","29.938426"],["-90.041045","29.938602"],["-90.041003","29.938778"],["-90.040986","29.938957"],["-90.040970","29.939130"],["-90.040960","29.939310"],["-90.040951","29.939489"],["-90.040927","29.939668"],["-90.040904","29.939847"],["-90.040894","29.939920"],["-90.040981","29.940083"],["-90.041027","29.940169"],["-90.041040","29.940300"],["-90.041032","29.940480"],["-90.041024","29.940659"],["-90.041015","29.940839"],["-90.041010","29.940959"],["-90.040999","29.941139"],["-90.040989","29.941299"],["-90.040980","29.941479"],["-90.040970","29.941658"],["-90.040958","29.941838"],["-90.040950","29.941959"],["-90.040921","29.942137"],["-90.040893","29.942315"],["-90.040864","29.942493"],["-90.040835","29.942672"],["-90.040807","29.942850"],["-90.040788","29.942967"],["-90.040833","29.943143"],["-90.040870","29.943290"],["-90.040858","29.943470"],["-90.040847","29.943649"],["-90.040835","29.943829"],["-90.040824","29.944008"],["-90.040820","29.944070"],["-90.040791","29.944248"],["-90.040763","29.944426"],["-90.040734","29.944604"],["-90.040705","29.944783"],["-90.040676","29.944961"],["-90.040665","29.945031"],["-90.040706","29.945207"],["-90.040736","29.945339"],["-90.040723","29.945519"],["-90.040710","29.945698"],["-90.040696","29.945877"],["-90.040681","29.946057"],["-90.040670","29.946200"],["-90.040658","29.946380"],["-90.040646","29.946559"],["-90.040634","29.946739"],["-90.040623","29.946918"],["-90.040611","29.947098"],["-90.040600","29.947259"],["-90.040573","29.947437"],["-90.040546","29.947616"],["-90.040519","29.947794"],["-90.040492","29.947972"],["-90.040466","29.948142"],["-90.040265","29.948186"],["-90.040115","29.948218"],["-90.039908","29.948207"],["-90.039701","29.948196"],["-90.039579","29.948190"],["-90.039372","29.948179"],["-90.039165","29.948169"],["-90.038957","29.948158"],["-90.038750","29.948147"],["-90.038589","29.948139"],["-90.038382","29.948129"],["-90.038174","29.948119"],["-90.037967","29.948109"],["-90.037760","29.948098"],["-90.037590","29.948090"],["-90.037383","29.948079"],["-90.037176","29.948069"],["-90.036968","29.948058"],["-90.036761","29.948048"],["-90.036609","29.948040"],["-90.036402","29.948033"],["-90.036194","29.948026"],["-90.035987","29.948018"],["-90.035779","29.948011"],["-90.035572","29.948003"],["-90.035365","29.947995"],["-90.035157","29.947987"],["-90.035044","29.947983"],["-90.034837","29.947974"],["-90.034629","29.947965"],["-90.034422","29.947957"],["-90.034260","29.947950"],["-90.034250","29.948130"],["-90.034457","29.948139"],["-90.034665","29.948149"],["-90.034872","29.948159"],["-90.035079","29.948169"],["-90.035286","29.948179"],["-90.035354","29.948182"],["-90.035562","29.948183"],["-90.035769","29.948184"],["-90.035864","29.948184"],["-90.036071","29.948191"],["-90.036279","29.948199"],["-90.036486","29.948206"],["-90.036600","29.948210"],["-90.036807","29.948216"],["-90.037015","29.948223"],["-90.037222","29.948229"],["-90.037430","29.948235"],["-90.037580","29.948240"],["-90.037787","29.948249"],["-90.037995","29.948258"],["-90.038202","29.948268"],["-90.038409","29.948277"],["-90.038480","29.948280"],["-90.038630","29.948290"],["-90.038837","29.948299"],["-90.039045","29.948308"],["-90.039252","29.948316"],["-90.039459","29.948325"],["-90.039570","29.948330"],["-90.039777","29.948341"],["-90.039984","29.948352"],["-90.040192","29.948363"],["-90.040399","29.948374"],["-90.040520","29.948380"],["-90.040511","29.948560"],["-90.040501","29.948739"],["-90.040492","29.948919"],["-90.040482","29.949099"],["-90.040473","29.949278"],["-90.040470","29.949329"],["-90.040445","29.949508"],["-90.040420","29.949686"],["-90.040395","29.949865"],["-90.040370","29.950043"],["-90.040345","29.950222"],["-90.040320","29.950400"],["-90.040314","29.950441"],["-90.040339","29.950620"],["-90.040364","29.950798"],["-90.040375","29.950879"],["-90.040363","29.951059"],["-90.040351","29.951238"],["-90.040338","29.951418"],["-90.040326","29.951597"],["-90.040320","29.951690"],["-90.040309","29.951870"],["-90.040298","29.952049"],["-90.040287","29.952229"],["-90.040277","29.952408"],["-90.040266","29.952588"],["-90.040255","29.952768"],["-90.040250","29.952849"],["-90.040237","29.953029"],["-90.040223","29.953208"],["-90.040210","29.953387"],["-90.040194","29.953567"],["-90.040179","29.953746"],["-90.040169","29.953860"],["-90.040366","29.953916"],["-90.040449","29.953940"],["-90.040649","29.953987"],["-90.040849","29.954035"],["-90.041050","29.954082"],["-90.041250","29.954129"],["-90.041451","29.954176"],["-90.041550","29.954200"],["-90.041752","29.954243"],["-90.041953","29.954287"],["-90.042154","29.954330"],["-90.042356","29.954374"],["-90.042557","29.954417"],["-90.042759","29.954459"],["-90.042961","29.954502"],["-90.043163","29.954544"],["-90.043364","29.954586"],["-90.043566","29.954628"],["-90.043769","29.954667"],["-90.043972","29.954706"],["-90.044174","29.954745"],["-90.044377","29.954784"],["-90.044580","29.954823"],["-90.044654","29.954837"],["-90.044860","29.954818"],["-90.045006","29.954804"],["-90.045212","29.954829"],["-90.045417","29.954853"],["-90.045623","29.954877"],["-90.045730","29.954890"],["-90.045929","29.954940"],["-90.046129","29.954990"],["-90.046328","29.955040"],["-90.046459","29.955073"],["-90.046664","29.955043"],["-90.046868","29.955012"],["-90.047075","29.955023"],["-90.047283","29.955034"],["-90.047490","29.955045"],["-90.047697","29.955056"],["-90.047770","29.955060"],["-90.047975","29.955087"],["-90.048180","29.955115"],["-90.048386","29.955142"],["-90.048591","29.955170"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953316"],["-90.055113","29.953175"],["-90.055242","29.953034"],["-90.055302","29.952968"],["-90.055195","29.952814"],["-90.055089","29.952659"],["-90.054982","29.952505"],["-90.054930","29.952430"],["-90.054897","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054119","29.951124"],["-90.053997","29.950978"],["-90.053876","29.950832"],["-90.053755","29.950686"],["-90.053633","29.950540"],["-90.053550","29.950440"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052948","29.949707"],["-90.052860","29.949600"],["-90.052761","29.949442"],["-90.052662","29.949284"],["-90.052564","29.949125"],["-90.052465","29.948967"],["-90.052366","29.948809"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.051993","29.945450"],["-90.051786","29.945460"],["-90.051578","29.945471"],["-90.051371","29.945481"],["-90.051164","29.945492"],["-90.051000","29.945500"],["-90.050793","29.945510"],["-90.050585","29.945519"],["-90.050378","29.945529"],["-90.050171","29.945538"],["-90.049964","29.945551"],["-90.049810","29.945560"],["-90.049608","29.945519"],["-90.049406","29.945478"],["-90.049325","29.945461"],["-90.049122","29.945498"],["-90.048919","29.945535"],["-90.048843","29.945549"],["-90.048636","29.945540"],["-90.048428","29.945530"],["-90.048224","29.945501"],["-90.048019","29.945472"],["-90.047814","29.945442"],["-90.047609","29.945413"],["-90.047404","29.945384"],["-90.047376","29.945380"],["-90.047171","29.945409"],["-90.046966","29.945439"],["-90.046874","29.945452"],["-90.046667","29.945443"],["-90.046459","29.945435"],["-90.046339","29.945430"],["-90.046135","29.945399"],["-90.045930","29.945368"],["-90.045726","29.945337"],["-90.045521","29.945306"],["-90.045467","29.945298"],["-90.045265","29.945340"],["-90.045164","29.945361"],["-90.044958","29.945342"],["-90.044751","29.945323"],["-90.044545","29.945304"],["-90.044338","29.945285"],["-90.044132","29.945266"],["-90.043926","29.945247"],["-90.043719","29.945227"],["-90.043513","29.945208"],["-90.043306","29.945189"],["-90.043227","29.945182"],["-90.043160","29.945180"],["-90.043150","29.945270"],["-90.043022","29.945264"],["-90.042895","29.945258"],["-90.042767","29.945251"],["-90.042640","29.945245"],["-90.042512","29.945239"],["-90.042385","29.945233"],["-90.042257","29.945226"],["-90.042130","29.945220"],["-90.041997","29.945214"],["-90.041865","29.945208"],["-90.041732","29.945201"],["-90.041600","29.945195"],["-90.041467","29.945189"],["-90.041335","29.945183"],["-90.041202","29.945176"],["-90.041070","29.945170"],["-90.041070","29.945102"],["-90.041070","29.945170"],["-90.040930","29.945160"],["-90.040750","29.945150"],["-90.040630","29.945144"],["-90.040510","29.945138"],["-90.040390","29.945131"],["-90.040270","29.945125"],["-90.040150","29.945119"],["-90.040030","29.945113"],["-90.039910","29.945106"],["-90.039790","29.945100"],["-90.039670","29.945095"],["-90.039550","29.945090"],["-90.039430","29.945085"],["-90.039310","29.945080"],["-90.039190","29.945075"],["-90.039070","29.945070"],["-90.038950","29.945065"],["-90.038830","29.945060"],["-90.038913","29.944976"],["-90.038708","29.945006"],["-90.038504","29.945035"],["-90.038415","29.945048"],["-90.038208","29.945041"],["-90.038160","29.945040"],["-90.037953","29.945027"],["-90.037820","29.945019"],["-90.037670","29.945009"],["-90.037500","29.944999"],["-90.037310","29.944927"],["-90.037119","29.944856"],["-90.037077","29.944840"],["-90.036875","29.944883"],["-90.036674","29.944925"],["-90.036466","29.944920"],["-90.036259","29.944910"],["-90.036052","29.944899"],["-90.035844","29.944888"],["-90.035637","29.944878"],["-90.035480","29.944870"],["-90.035273","29.944857"],["-90.035066","29.944844"],["-90.035000","29.944840"],["-90.034793","29.944830"],["-90.034585","29.944820"],["-90.034385","29.944774"],["-90.034184","29.944729"],["-90.034017","29.944691"],["-90.033816","29.944737"],["-90.033670","29.944770"],["-90.033510","29.944760"],["-90.033360","29.944740"],["-90.033190","29.944700"],["-90.032999","29.944630"],["-90.032807","29.944561"],["-90.032640","29.944500"],["-90.032450","29.944428"],["-90.032260","29.944356"],["-90.032069","29.944284"],["-90.031895","29.944186"],["-90.031754","29.944107"],["-90.031553","29.944063"],["-90.031400","29.944030"],["-90.031211","29.943956"],["-90.031021","29.943883"],["-90.030860","29.943820"],["-90.030678","29.943734"],["-90.030496","29.943647"],["-90.030314","29.943561"],["-90.030132","29.943474"],["-90.029950","29.943388"],["-90.029925","29.943376"],["-90.029720","29.943347"],["-90.029600","29.943330"],["-90.029408","29.943261"],["-90.029217","29.943191"],["-90.029025","29.943122"],["-90.028910","29.943080"],["-90.028820","29.943039"],["-90.028660","29.942924"],["-90.028532","29.942832"],["-90.028500","29.942900"],["-90.028372","29.942850"],["-90.028245","29.942800"],["-90.028117","29.942750"],["-90.027990","29.942700"],["-90.027855","29.942650"],["-90.027720","29.942600"],["-90.027710","29.942590"],["-90.027555","29.942535"],["-90.027400","29.942480"],["-90.027410","29.942375"],["-90.027310","29.942260"],["-90.027368","29.942269"],["-90.027310","29.942260"],["-90.027290","29.942430"],["-90.027170","29.942385"],["-90.027050","29.942340"],["-90.026930","29.942295"],["-90.026810","29.942250"],["-90.026630","29.942180"],["-90.026480","29.942125"],["-90.026330","29.942070"],["-90.026167","29.942003"],["-90.026005","29.941935"],["-90.025842","29.941868"],["-90.025680","29.941800"],["-90.025565","29.941755"],["-90.025450","29.941710"],["-90.025335","29.941665"],["-90.025227","29.941503"],["-90.025019","29.941503"],["-90.024882","29.941503"],["-90.024693","29.941428"],["-90.024549","29.941370"],["-90.024410","29.941309"],["-90.024279","29.941270"],["-90.024094","29.941189"],["-90.023908","29.941108"],["-90.023723","29.941028"],["-90.023537","29.940947"],["-90.023361","29.940851"],["-90.023186","29.940756"],["-90.023010","29.940660"],["-90.022834","29.940564"],["-90.022692","29.940487"],["-90.022488","29.940453"],["-90.022335","29.940428"],["-90.022150","29.940346"],["-90.021965","29.940265"],["-90.021780","29.940183"],["-90.021595","29.940102"],["-90.021410","29.940020"],["-90.021236","29.939922"],["-90.021062","29.939824"],["-90.020888","29.939726"],["-90.020714","29.939628"],["-90.020540","29.939530"],["-90.020384","29.939442"],["-90.020180","29.939408"],["-90.019976","29.939374"],["-90.019919","29.939365"],["-90.019734","29.939284"],["-90.019549","29.939202"],["-90.019500","29.939180"],["-90.019315","29.939098"],["-90.019131","29.939015"],["-90.018947","29.938932"],["-90.018763","29.938849"],["-90.018579","29.938765"],["-90.018410","29.938689"],["-90.018226","29.938606"],["-90.018093","29.938468"],["-90.017983","29.938353"],["-90.017777","29.938329"],["-90.017572","29.938304"],["-90.017519","29.938298"],["-90.017334","29.938217"],["-90.017149","29.938135"],["-90.016963","29.938054"],["-90.016778","29.937973"],["-90.016593","29.937892"],["-90.016408","29.937811"],["-90.016231","29.937717"],["-90.016054","29.937623"],["-90.015877","29.937529"],["-90.015700","29.937435"],["-90.015523","29.937341"],["-90.015346","29.937247"],["-90.015169","29.937153"],["-90.014992","29.937059"],["-90.014815","29.936965"],["-90.014689","29.936898"],["-90.014483","29.936877"],["-90.014277","29.936856"],["-90.014218","29.936850"],["-90.014031","29.936771"],["-90.013846","29.936691"],["-90.013659","29.936612"],["-90.013473","29.936532"],["-90.013420","29.936510"],["-90.013269","29.936386"],["-90.013118","29.936263"],["-90.013088","29.936238"],["-90.012889","29.936188"],["-90.012689","29.936138"],["-90.012614","29.936119"],["-90.012428","29.936039"],["-90.012359","29.936009"],["-90.012189","29.935929"],["-90.012004","29.935848"],["-90.011818","29.935767"],["-90.011633","29.935686"],["-90.011570","29.935659"],["-90.011388","29.935573"],["-90.011238","29.935449"],["-90.011155","29.935380"],["-90.010951","29.935346"],["-90.010800","29.935320"],["-90.010615","29.935239"],["-90.010429","29.935158"],["-90.010244","29.935077"],["-90.010090","29.935010"],["-90.009924","29.934902"],["-90.009758","29.934794"],["-90.009659","29.934729"],["-90.009460","29.934679"],["-90.009260","29.934629"],["-90.009170","29.934606"],["-90.008985","29.934524"],["-90.008840","29.934460"],["-90.008678","29.934348"],["-90.008515","29.934236"],["-90.008453","29.934193"],["-90.008253","29.934143"],["-90.008054","29.934094"],["-90.007999","29.934080"],["-90.007829","29.933977"],["-90.007659","29.933874"],["-90.007488","29.933771"],["-90.007404","29.933720"],["-90.007203","29.933674"],["-90.007003","29.933628"],["-90.006942","29.933614"],["-90.006760","29.933540"],["-90.006575","29.933459"],["-90.006509","29.933430"],["-90.006324","29.933349"],["-90.006210","29.933299"],["-90.006026","29.933216"],["-90.005842","29.933133"],["-90.005658","29.933050"],["-90.005569","29.933010"],["-90.005401","29.932905"],["-90.005232","29.932800"],["-90.005064","29.932694"],["-90.004961","29.932630"],["-90.004756","29.932602"],["-90.004574","29.932577"],["-90.004389","29.932496"],["-90.004240","29.932430"],["-90.004110","29.932370"],["-90.003924","29.932291"],["-90.003779","29.932229"],["-90.003594","29.932148"],["-90.003409","29.932067"],["-90.003300","29.932019"],["-90.003181","29.931872"],["-90.003101","29.931773"],["-90.002893","29.931774"],["-90.002765","29.931775"],["-90.002581","29.931692"],["-90.002397","29.931608"],["-90.002214","29.931524"],["-90.002030","29.931441"],["-90.001846","29.931357"],["-90.001699","29.931290"],["-90.001548","29.931167"],["-90.001449","29.931086"],["-90.001243","29.931067"],["-90.001136","29.931057"],["-90.000952","29.930973"],["-90.000790","29.930900"],["-90.000605","29.930819"],["-90.000419","29.930739"],["-90.000234","29.930658"],["-90.000048","29.930577"],["-89.999940","29.930530"],["-89.999787","29.930408"],["-89.999662","29.930309"],["-89.999463","29.930259"],["-89.999263","29.930208"],["-89.999171","29.930185"],["-89.998987","29.930102"],["-89.998803","29.930019"],["-89.998618","29.929937"],["-89.998490","29.929879"],["-89.998304","29.929799"],["-89.998119","29.929718"],["-89.997933","29.929638"],["-89.997781","29.929516"],["-89.997656","29.929416"],["-89.997456","29.929368"],["-89.997256","29.929319"],["-89.997169","29.929298"],["-89.996984","29.929217"],["-89.996799","29.929136"],["-89.996670","29.929080"],["-89.996600","29.929050"],["-89.996431","29.928946"],["-89.996262","29.928841"],["-89.996093","29.928737"],["-89.996035","29.928701"],["-89.995832","29.928665"],["-89.995690","29.928640"],["-89.995504","29.928560"],["-89.995318","29.928480"],["-89.995132","29.928400"],["-89.994946","29.928320"],["-89.994760","29.928240"],["-89.994575","29.928159"],["-89.994390","29.928078"],["-89.994205","29.927997"],["-89.994020","29.927915"],["-89.993835","29.927834"],["-89.993649","29.927754"],["-89.993463","29.927674"],["-89.993278","29.927593"],["-89.993108","29.927489"],["-89.992939","29.927385"],["-89.992783","29.927290"],["-89.992586","29.927233"],["-89.992389","29.927176"],["-89.992329","29.927159"],["-89.992144","29.927077"],["-89.991989","29.927009"],["-89.991811","29.926917"],["-89.991633","29.926825"],["-89.991454","29.926732"],["-89.991276","29.926640"],["-89.991098","29.926548"],["-89.991048","29.926522"],["-89.990850","29.926469"],["-89.990651","29.926416"],["-89.990562","29.926392"],["-89.990378","29.926309"],["-89.990194","29.926226"],["-89.990010","29.926142"],["-89.989826","29.926059"],["-89.989643","29.925975"],["-89.989459","29.925892"],["-89.989275","29.925809"],["-89.989099","29.925729"],["-89.988921","29.925636"],["-89.988744","29.925543"],["-89.988566","29.925450"],["-89.988389","29.925357"],["-89.988211","29.925264"],["-89.988107","29.925209"],["-89.987907","29.925160"],["-89.987708","29.925111"],["-89.987619","29.925089"],["-89.987434","29.925008"],["-89.987248","29.924927"],["-89.987063","29.924846"],["-89.986910","29.924780"],["-89.986725","29.924699"],["-89.986540","29.924618"],["-89.986355","29.924536"],["-89.986169","29.924455"],["-89.985984","29.924374"],["-89.985930","29.924350"],["-89.985769","29.924236"],["-89.985600","29.924132"],["-89.985450","29.924007"],["-89.985301","29.923883"],["-89.985229","29.923823"],["-89.985130","29.923810"],["-89.985120","29.923890"],["-89.985002","29.923838"],["-89.984885","29.923785"],["-89.984767","29.923733"],["-89.984650","29.923680"],["-89.984502","29.923620"],["-89.984355","29.923560"],["-89.984207","29.923500"],["-89.984060","29.923440"],["-89.983935","29.923380"],["-89.983810","29.923320"],["-89.983645","29.923245"],["-89.983480","29.923170"],["-89.983315","29.923095"],["-89.983150","29.923020"],["-89.983040","29.922980"],["-89.983078","29.922904"],["-89.983040","29.922980"],["-89.982970","29.922950"],["-89.982775","29.922863"],["-89.982580","29.922775"],["-89.982385","29.922688"],["-89.982190","29.922600"],["-89.982077","29.922553"],["-89.981965","29.922505"],["-89.981852","29.922458"],["-89.981740","29.922410"],["-89.981552","29.922328"],["-89.981365","29.922245"],["-89.981177","29.922163"],["-89.980990","29.922080"],["-89.981000","29.921970"],["-89.981062","29.921974"],["-89.981000","29.921970"],["-89.980990","29.922080"],["-89.980871","29.922026"],["-89.980752","29.921973"],["-89.980634","29.921919"],["-89.980515","29.921865"],["-89.980396","29.921811"],["-89.980277","29.921758"],["-89.980159","29.921704"],["-89.980040","29.921650"],["-89.979870","29.921575"],["-89.979700","29.921500"],["-89.979530","29.921425"],["-89.979360","29.921350"],["-89.979400","29.921278"],["-89.979360","29.921350"],["-89.979270","29.921320"],["-89.979077","29.921235"],["-89.978885","29.921150"],["-89.978692","29.921065"],["-89.978500","29.920980"],["-89.978401","29.920935"],["-89.978302","29.920890"],["-89.978204","29.920845"],["-89.978105","29.920800"],["-89.978006","29.920755"],["-89.977907","29.920710"],["-89.977809","29.920665"],["-89.977710","29.920620"],["-89.977532","29.920543"],["-89.977355","29.920465"],["-89.977177","29.920388"],["-89.977110","29.920310"],["-89.977042","29.920232"],["-89.977000","29.920310"],["-89.976910","29.920270"],["-89.976900","29.920370"],["-89.976892","29.920474"],["-89.977066","29.920550"],["-89.977240","29.920627"],["-89.977414","29.920704"],["-89.977588","29.920780"],["-89.977762","29.920857"],["-89.977936","29.920934"],["-89.978110","29.921010"],["-89.978283","29.921087"],["-89.978457","29.921164"],["-89.978631","29.921240"],["-89.978805","29.921317"],["-89.978979","29.921393"],["-89.979153","29.921470"],["-89.979327","29.921547"],["-89.979501","29.921623"],["-89.979675","29.921700"],["-89.979842","29.921775"],["-89.980010","29.921850"],["-89.980182","29.921925"],["-89.980355","29.922000"],["-89.980527","29.922075"],["-89.980700","29.922150"],["-89.980860","29.922220"],["-89.980969","29.922268"],["-89.981077","29.922315"],["-89.981186","29.922363"],["-89.981295","29.922410"],["-89.981404","29.922458"],["-89.981512","29.922505"],["-89.981621","29.922553"],["-89.981730","29.922600"],["-89.981750","29.922610"],["-89.981910","29.922690"],["-89.982040","29.922745"],["-89.982170","29.922800"],["-89.982342","29.922878"],["-89.982515","29.922955"],["-89.982687","29.923033"],["-89.982860","29.923110"],["-89.982893","29.923220"]]},{"type":"MultiPoint","coordinates":[["-90.044654","29.954837"],["-90.046459","29.955073"],["-90.048669","29.955180"],["-90.051281","29.955051"],["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.041465","29.931337"],["-90.041474","29.932869"],["-90.049325","29.945461"],["-89.977042","29.920232"],["-89.982893","29.923220"],["-90.041070","29.945102"],["-90.041370","29.934492"],["-90.041283","29.935601"],["-90.040894","29.939920"],["-90.040788","29.942967"],["-90.038913","29.944976"],["-90.037077","29.944840"],["-90.034017","29.944691"],["-90.031754","29.944107"],["-90.029925","29.943376"],["-90.028532","29.942832"],["-90.027368","29.942269"],["-90.025227","29.941503"],["-90.022692","29.940487"],["-90.020384","29.939442"],["-90.017983","29.938353"],["-90.016476","29.937674"],["-90.014689","29.936898"],["-90.013088","29.936238"],["-90.011155","29.935380"],["-90.009659","29.934729"],["-90.008453","29.934193"],["-90.007404","29.933720"],["-90.004961","29.932630"],["-90.003101","29.931773"],["-90.001449","29.931086"],["-89.999662","29.930309"],["-89.997656","29.929416"],["-89.996035","29.928701"],["-89.992783","29.927290"],["-89.991048","29.926522"],["-89.988107","29.925209"],["-89.985229","29.923823"],["-89.983078","29.922904"],["-89.981062","29.921974"],["-89.979400","29.921278"],["-90.053661","29.954274"],["-90.052321","29.948737"],["-90.052401","29.946573"],["-90.047376","29.945380"],["-90.045467","29.945298"],["-90.043227","29.945182"],["-90.055302","29.952968"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.074290","29.953176"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-90.041179","29.937251"],["-90.040665","29.945031"],["-90.035354","29.948182"],["-90.040466","29.948142"],["-90.040314","29.950441"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075052","29.954585"],["-90.074855","29.954529"],["-90.074790","29.954510"],["-90.074670","29.954510"],["-90.074482","29.954434"],["-90.074294","29.954358"],["-90.074249","29.954340"],["-90.074073","29.954244"],["-90.073990","29.954199"],["-90.074000","29.954079"],["-90.073990","29.953950"],["-90.074000","29.953860"],["-90.074019","29.953770"],["-90.074069","29.953595"],["-90.074119","29.953421"],["-90.074226","29.953267"],["-90.074290","29.953176"],["-90.074298","29.952996"],["-90.074307","29.952817"],["-90.074309","29.952764"],["-90.074350","29.952620"],["-90.074397","29.952445"],["-90.074419","29.952360"],["-90.074471","29.952186"],["-90.074509","29.952060"],["-90.074561","29.951886"],["-90.074599","29.951759"],["-90.074667","29.951589"],["-90.074735","29.951419"],["-90.074803","29.951249"],["-90.074871","29.951079"],["-90.074939","29.950909"],["-90.075000","29.950758"],["-90.074987","29.950578"],["-90.074980","29.950479"],["-90.075031","29.950305"],["-90.075081","29.950130"],["-90.075132","29.949956"],["-90.075183","29.949781"],["-90.075234","29.949607"],["-90.075284","29.949432"],["-90.075320","29.949310"],["-90.075393","29.949141"],["-90.075465","29.948973"],["-90.075538","29.948804"],["-90.075610","29.948636"],["-90.075680","29.948474"],["-90.075590","29.948450"],["-90.075620","29.948350"],["-90.075630","29.948260"],["-90.075630","29.948230"],["-90.075678","29.948068"],["-90.075725","29.947905"],["-90.075773","29.947743"],["-90.075820","29.947580"],["-90.075860","29.947430"],["-90.075898","29.947300"],["-90.075935","29.947170"],["-90.075973","29.947040"],["-90.076010","29.946910"],["-90.076050","29.946810"],["-90.076060","29.946770"],["-90.076060","29.946690"],["-90.076060","29.946630"],["-90.076040","29.946520"],["-90.076030","29.946440"],["-90.076010","29.946350"],["-90.075990","29.946280"],["-90.075970","29.946170"],["-90.075970","29.946160"],["-90.075960","29.946010"],["-90.075990","29.945850"],["-90.076020","29.945690"],["-90.076050","29.945510"],["-90.076150","29.945360"],["-90.076225","29.945255"],["-90.076300","29.945150"],["-90.076375","29.945045"],["-90.076450","29.944940"],["-90.076555","29.944795"],["-90.076660","29.944650"],["-90.076770","29.944500"],["-90.076830","29.944420"],["-90.076840","29.944400"],["-90.076900","29.944330"],["-90.076930","29.944290"],["-90.076970","29.944230"],["-90.076980","29.944220"],["-90.077030","29.944160"],["-90.077040","29.944150"],["-90.077080","29.944090"],["-90.077100","29.944070"],["-90.077130","29.944020"],["-90.077030","29.943970"],["-90.077020","29.943960"],["-90.076860","29.943845"],["-90.076700","29.943730"],["-90.076630","29.943720"],["-90.076590","29.943710"],["-90.076520","29.943690"],["-90.076460","29.943660"],["-90.076310","29.943590"],["-90.076135","29.943500"],["-90.075960","29.943410"],["-90.075820","29.943330"],["-90.075640","29.943230"],["-90.075580","29.943200"],["-90.075470","29.943140"],["-90.075400","29.943100"],["-90.075225","29.943005"],["-90.075050","29.942910"],["-90.075050","29.942900"],["-90.074960","29.942860"],["-90.074790","29.942760"],["-90.074770","29.942750"],["-90.074740","29.942730"],["-90.074690","29.942700"],["-90.074600","29.942650"],["-90.074500","29.942590"],["-90.074362","29.942518"],["-90.074225","29.942445"],["-90.074087","29.942373"],["-90.073950","29.942300"],["-90.073835","29.942248"],["-90.073720","29.942195"],["-90.073605","29.942143"],["-90.073490","29.942090"],["-90.073350","29.942020"],["-90.073180","29.941940"],["-90.073060","29.941930"],["-90.072880","29.941830"],["-90.072770","29.941770"],["-90.072670","29.941710"],["-90.072570","29.941660"],["-90.072460","29.941590"],["-90.072350","29.941530"],["-90.072205","29.941460"],["-90.072060","29.941390"],["-90.071960","29.941340"],["-90.071775","29.941235"],["-90.071590","29.941130"],["-90.071510","29.941080"],["-90.071405","29.941020"],["-90.071300","29.940960"],["-90.071170","29.940890"],["-90.071030","29.940810"],["-90.070917","29.940748"],["-90.070805","29.940685"],["-90.070692","29.940623"],["-90.070580","29.940560"],["-90.070480","29.940510"],["-90.070335","29.940425"],["-90.070190","29.940340"],["-90.070100","29.940290"],["-90.069940","29.940200"],["-90.069790","29.940115"],["-90.069640","29.940030"],["-90.069470","29.939940"],["-90.069300","29.939840"],["-90.069190","29.939780"],["-90.069080","29.939720"],["-90.068985","29.939665"],["-90.068890","29.939610"],["-90.068820","29.939570"],["-90.068695","29.939500"],["-90.068570","29.939430"],["-90.068415","29.939345"],["-90.068260","29.939260"],["-90.068130","29.939180"],["-90.067950","29.939090"],["-90.067830","29.939020"],["-90.067780","29.938990"],["-90.067740","29.938970"],["-90.067620","29.938900"],["-90.067490","29.938830"],["-90.067360","29.938750"],["-90.067180","29.938660"],["-90.067030","29.938580"],["-90.066990","29.938560"],["-90.066800","29.938480"],["-90.066660","29.938410"],["-90.066550","29.938365"],["-90.066440","29.938320"],["-90.066330","29.938270"],["-90.066240","29.938240"],["-90.066105","29.938190"],["-90.065970","29.938140"],["-90.065855","29.938105"],["-90.065740","29.938070"],["-90.065560","29.938010"],["-90.065450","29.937980"],["-90.065340","29.937950"],["-90.065210","29.937920"],["-90.065180","29.937920"],["-90.065090","29.937900"],["-90.064900","29.937860"],["-90.064750","29.937830"],["-90.064580","29.937810"],["-90.064370","29.937780"],["-90.064300","29.937770"],["-90.064110","29.937750"],["-90.063990","29.937740"],["-90.063870","29.937730"],["-90.063700","29.937720"],["-90.063560","29.937720"],["-90.063380","29.937720"],["-90.063350","29.937720"],["-90.063140","29.937720"],["-90.063005","29.937720"],["-90.062870","29.937720"],["-90.062750","29.937720"],["-90.062630","29.937720"],["-90.062475","29.937720"],["-90.062320","29.937720"],["-90.062310","29.937720"],["-90.062190","29.937725"],["-90.062070","29.937730"],["-90.061945","29.937730"],["-90.061820","29.937730"],["-90.061620","29.937720"],["-90.061520","29.937720"],["-90.061390","29.937720"],["-90.061250","29.937720"],["-90.061140","29.937720"],["-90.061040","29.937720"],["-90.060930","29.937720"],["-90.060770","29.937720"],["-90.060610","29.937720"],["-90.060460","29.937720"],["-90.060310","29.937720"],["-90.060105","29.937725"],["-90.059900","29.937730"],["-90.059690","29.937730"],["-90.059480","29.937730"],["-90.059275","29.937735"],["-90.059070","29.937740"],["-90.058860","29.937740"],["-90.058850","29.937740"],["-90.058650","29.937740"],["-90.058440","29.937740"],["-90.058233","29.937743"],["-90.058025","29.937745"],["-90.057818","29.937748"],["-90.057610","29.937750"],["-90.057600","29.937750"],["-90.057410","29.937750"],["-90.057253","29.937750"],["-90.057095","29.937750"],["-90.056938","29.937750"],["-90.056780","29.937750"],["-90.056575","29.937755"],["-90.056370","29.937760"],["-90.056155","29.937760"],["-90.055940","29.937760"],["-90.055735","29.937765"],["-90.055530","29.937770"],["-90.055320","29.937770"],["-90.055120","29.937770"],["-90.054920","29.937770"],["-90.054910","29.937770"],["-90.054700","29.937770"],["-90.054585","29.937770"],["-90.054470","29.937770"],["-90.054275","29.937775"],["-90.054080","29.937780"],["-90.054060","29.937780"],["-90.053933","29.937783"],["-90.053805","29.937785"],["-90.053678","29.937788"],["-90.053550","29.937790"],["-90.053350","29.937795"],["-90.053150","29.937800"],["-90.052940","29.937800"],["-90.052830","29.937810"],["-90.052650","29.937810"],["-90.052505","29.937815"],["-90.052360","29.937820"],["-90.052220","29.937820"],["-90.052080","29.937820"],["-90.051860","29.937830"],["-90.051640","29.937840"],["-90.051510","29.937840"],["-90.051365","29.937843"],["-90.051220","29.937845"],["-90.051075","29.937848"],["-90.050930","29.937850"],["-90.050890","29.937850"],["-90.050880","29.937850"],["-90.050790","29.937850"],["-90.050720","29.937850"],["-90.050680","29.937850"],["-90.050570","29.937850"],["-90.050500","29.937850"],["-90.050460","29.937850"],["-90.050420","29.937850"],["-90.050400","29.937850"],["-90.050380","29.937850"],["-90.050350","29.937850"],["-90.050280","29.937850"],["-90.050250","29.937850"],["-90.050240","29.937850"],["-90.050210","29.937850"],["-90.050200","29.937850"],["-90.050150","29.937850"],["-90.050130","29.937850"],["-90.050080","29.937850"],["-90.050040","29.937850"],["-90.049980","29.937850"],["-90.049850","29.937850"],["-90.049730","29.937840"],["-90.049600","29.937833"],["-90.049470","29.937825"],["-90.049340","29.937818"],["-90.049210","29.937810"],["-90.049100","29.937820"],["-90.048965","29.937820"],["-90.048830","29.937820"],["-90.048770","29.937820"],["-90.048630","29.937820"],["-90.048510","29.937820"],["-90.048380","29.937820"],["-90.048250","29.937820"],["-90.048065","29.937820"],["-90.047880","29.937820"],["-90.047745","29.937825"],["-90.047610","29.937830"],["-90.047430","29.937830"],["-90.047250","29.937830"],["-90.047070","29.937830"],["-90.046850","29.937830"],["-90.046725","29.937835"],["-90.046600","29.937840"],["-90.046415","29.937840"],["-90.046230","29.937840"],["-90.046140","29.937840"],["-90.046110","29.937840"],["-90.045980","29.937840"],["-90.045850","29.937840"],["-90.045670","29.937840"],["-90.045490","29.937840"],["-90.045355","29.937845"],["-90.045220","29.937850"],["-90.045090","29.937850"],["-90.044960","29.937850"],["-90.044830","29.937850"],["-90.044700","29.937850"],["-90.044565","29.937850"],["-90.044430","29.937850"],["-90.044295","29.937850"],["-90.044160","29.937850"],["-90.044030","29.937850"],["-90.043900","29.937850"],["-90.043700","29.937850"],["-90.043578","29.937850"],["-90.043455","29.937850"],["-90.043333","29.937850"],["-90.043210","29.937850"],["-90.043088","29.937850"],["-90.042965","29.937850"],["-90.042843","29.937850"],["-90.042720","29.937850"],["-90.042590","29.937840"],["-90.042500","29.937840"],["-90.042390","29.937840"],["-90.042230","29.937830"],["-90.042080","29.937810"],["-90.041970","29.937800"],["-90.041840","29.937780"],["-90.041725","29.937755"],["-90.041610","29.937730"],["-90.041530","29.937720"],["-90.041320","29.937660"],["-90.041170","29.937620"],["-90.041025","29.937565"],["-90.040880","29.937510"],["-90.040770","29.937465"],["-90.040660","29.937420"],["-90.040560","29.937380"],["-90.040530","29.937360"],["-90.040350","29.937265"],["-90.040170","29.937170"],["-90.040010","29.937070"],["-90.039920","29.937010"],["-90.039830","29.936950"],["-90.039700","29.936850"],["-90.039575","29.936750"],["-90.039450","29.936650"],["-90.039365","29.936570"],["-90.039280","29.936490"],["-90.039202","29.936403"],["-90.039080","29.936264"],["-90.038957","29.936126"],["-90.038925","29.935944"],["-90.038888","29.935832"],["-90.038850","29.935719"],["-90.038813","29.935606"],["-90.038775","29.935493"],["-90.038737","29.935381"],["-90.038700","29.935268"],["-90.038662","29.935155"],["-90.038625","29.935042"],["-90.038589","29.934896"],["-90.038553","29.934750"],["-90.038517","29.934603"],["-90.038481","29.934457"],["-90.038504","29.934340"],["-90.038526","29.934224"],["-90.038538","29.934124"],["-90.038549","29.934024"],["-90.038560","29.933924"],["-90.038571","29.933824"],["-90.038593","29.933674"],["-90.038614","29.933523"],["-90.038636","29.933373"],["-90.038657","29.933222"],["-90.038664","29.933067"],["-90.038670","29.932913"],["-90.038687","29.932789"],["-90.038703","29.932664"],["-90.038730","29.932553"],["-90.038758","29.932441"],["-90.038785","29.932329"],["-90.038813","29.932218"],["-90.038884","29.932107"],["-90.038955","29.931997"],["-90.039066","29.931875"],["-90.039177","29.931753"],["-90.039324","29.931638"],["-90.039470","29.931523"],["-90.039621","29.931416"],["-90.039773","29.931309"],["-90.039883","29.931222"],["-90.039994","29.931135"],["-90.040105","29.931048"],["-90.040215","29.930960"],["-90.040355","29.930852"],["-90.040494","29.930744"],["-90.040661","29.930667"],["-90.040810","29.930668"],["-90.040960","29.930669"],["-90.041109","29.930670"],["-90.041259","29.930671"],["-90.041408","29.930672"],["-90.041558","29.930673"],["-90.041707","29.930674"],["-90.041857","29.930674"],["-90.041864","29.930551"],["-90.041871","29.930428"],["-90.041884","29.930242"],["-90.041956","29.930163"],["-90.041890","29.930136"],["-90.041895","29.930025"],["-90.041900","29.929914"],["-90.041906","29.929802"],["-90.041911","29.929691"],["-90.041918","29.929568"],["-90.041925","29.929445"],["-90.041932","29.929322"],["-90.041938","29.929199"],["-90.041945","29.929076"],["-90.041952","29.928953"],["-90.041959","29.928830"],["-90.041966","29.928707"],["-90.041972","29.928584"],["-90.041979","29.928461"],["-90.041986","29.928338"],["-90.041993","29.928215"],["-90.042000","29.928092"],["-90.042006","29.927969"],["-90.042013","29.927846"],["-90.042020","29.927723"],["-90.042027","29.927600"],["-90.042034","29.927477"],["-90.042040","29.927354"],["-90.042047","29.927231"],["-90.042054","29.927108"],["-90.042061","29.926985"],["-90.042068","29.926862"],["-90.042074","29.926739"],["-90.042184","29.926584"],["-90.042167","29.926480"],["-90.042151","29.926377"],["-90.042134","29.926273"],["-90.042117","29.926169"],["-90.042125","29.926063"],["-90.042132","29.925957"],["-90.042139","29.925850"],["-90.042146","29.925688"],["-90.042153","29.925526"],["-90.042160","29.925364"],["-90.042167","29.925202"],["-90.042258","29.925096"],["-90.042178","29.925006"],["-90.042187","29.924882"],["-90.042197","29.924757"],["-90.042206","29.924632"],["-90.042216","29.924507"],["-90.042225","29.924382"],["-90.042235","29.924257"],["-90.042245","29.924132"],["-90.042254","29.924007"],["-90.042264","29.923882"],["-90.042273","29.923757"],["-90.042283","29.923632"],["-90.042292","29.923507"],["-90.042302","29.923382"],["-90.042311","29.923257"],["-90.042321","29.923132"],["-90.042331","29.923007"],["-90.042293","29.922870"],["-90.042369","29.922757"],["-90.042446","29.922644"],["-90.042522","29.922531"],["-90.042598","29.922418"],["-90.042674","29.922304"],["-90.042751","29.922191"],["-90.042827","29.922078"],["-90.042903","29.921965"],["-90.042962","29.921869"],["-90.043020","29.921774"],["-90.043078","29.921679"],["-90.043137","29.921584"],["-90.043195","29.921488"],["-90.043253","29.921393"],["-90.043312","29.921298"],["-90.043370","29.921202"],["-90.043320","29.921114"],["-90.043271","29.921026"],["-90.043161","29.920951"],["-90.043051","29.920928"],["-90.043132","29.920806"],["-90.043213","29.920684"],["-90.043294","29.920562"],["-90.043375","29.920440"],["-90.043456","29.920318"],["-90.043538","29.920196"],["-90.043619","29.920074"],["-90.043700","29.919952"],["-90.043791","29.919819"],["-90.043882","29.919687"],["-90.043982","29.919731"],["-90.044081","29.919775"],["-90.043983","29.919931"],["-90.043886","29.920087"],["-90.043815","29.920201"],["-90.043743","29.920315"],["-90.043672","29.920428"],["-90.043600","29.920542"],["-90.043529","29.920656"],["-90.043458","29.920770"],["-90.043386","29.920884"],["-90.043315","29.920998"],["-90.043186","29.920960"],["-90.043057","29.920923"],["-90.042918","29.920928"],["-90.042778","29.920932"],["-90.042703","29.921038"],["-90.042628","29.921144"],["-90.042553","29.921250"],["-90.042478","29.921356"],["-90.042420","29.921446"],["-90.042361","29.921536"],["-90.042303","29.921627"],["-90.042245","29.921717"],["-90.042186","29.921807"],["-90.042128","29.921898"],["-90.042070","29.921988"],["-90.042011","29.922079"],["-90.041953","29.922169"],["-90.041895","29.922259"],["-90.041836","29.922350"],["-90.041778","29.922440"],["-90.041720","29.922530"],["-90.041661","29.922621"],["-90.041603","29.922711"],["-90.041545","29.922802"],["-90.041571","29.922908"],["-90.041598","29.923015"],["-90.041681","29.923099"],["-90.041765","29.923183"],["-90.041904","29.923304"],["-90.042044","29.923425"],["-90.042078","29.923529"],["-90.042113","29.923634"],["-90.042106","29.923780"],["-90.042098","29.923925"],["-90.042091","29.924071"],["-90.042084","29.924217"],["-90.042076","29.924363"],["-90.042069","29.924509"],["-90.042062","29.924655"],["-90.042049","29.924809"],["-90.041925","29.924963"],["-90.042052","29.925106"],["-90.042041","29.925212"],["-90.042030","29.925317"],["-90.042018","29.925423"],["-90.042007","29.925529"],["-90.041996","29.925686"],["-90.041986","29.925843"],["-90.041976","29.926000"],["-90.041966","29.926157"],["-90.041956","29.926314"],["-90.041778","29.926423"],["-90.041859","29.926532"],["-90.041940","29.926640"],["-90.041930","29.926770"],["-90.041920","29.926900"],["-90.041915","29.926998"],["-90.041910","29.927095"],["-90.041905","29.927193"],["-90.041900","29.927290"],["-90.041893","29.927415"],["-90.041885","29.927540"],["-90.041878","29.927665"],["-90.041870","29.927790"],["-90.041860","29.927870"],["-90.041850","29.928050"],["-90.041840","29.928220"],["-90.041830","29.928390"],["-90.041820","29.928560"],["-90.041810","29.928730"],["-90.041805","29.928845"],["-90.041800","29.928960"],["-90.041790","29.929085"],["-90.041780","29.929210"],["-90.041775","29.929330"],["-90.041770","29.929450"],["-90.041765","29.929550"],["-90.041760","29.929650"],["-90.041755","29.929750"],["-90.041750","29.929850"],["-90.041745","29.930040"],["-90.041740","29.930230"],["-90.041710","29.930395"],["-90.041680","29.930560"],["-90.041660","29.930690"],["-90.041648","29.930855"],["-90.041635","29.931020"],["-90.041623","29.931185"],["-90.041544","29.931261"],["-90.041465","29.931337"],["-90.041557","29.931498"],["-90.041621","29.931610"],["-90.041612","29.931790"],["-90.041602","29.931969"],["-90.041593","29.932149"],["-90.041590","29.932209"],["-90.041580","29.932389"],["-90.041569","29.932568"],["-90.041514","29.932742"],["-90.041474","29.932869"],["-90.041516","29.933045"],["-90.041538","29.933139"],["-90.041525","29.933319"],["-90.041513","29.933498"],["-90.041500","29.933678"],["-90.041487","29.933857"],["-90.041480","29.933960"],["-90.041443","29.934137"],["-90.041407","29.934314"],["-90.041370","29.934492"],["-90.041394","29.934671"],["-90.041419","29.934849"],["-90.041412","29.935029"],["-90.041401","29.935209"],["-90.041349","29.935383"],["-90.041296","29.935557"],["-90.041283","29.935601"],["-90.041310","29.935779"],["-90.041338","29.935958"],["-90.041349","29.936030"],["-90.041339","29.936169"],["-90.041313","29.936347"],["-90.041286","29.936526"],["-90.041260","29.936704"],["-90.041233","29.936883"],["-90.041207","29.937061"],["-90.041181","29.937239"],["-90.041179","29.937251"],["-90.041215","29.937428"],["-90.041250","29.937605"],["-90.041230","29.937784"],["-90.041209","29.937950"],["-90.041199","29.937999"],["-90.041170","29.938120"],["-90.041130","29.938250"],["-90.041088","29.938426"],["-90.041045","29.938602"],["-90.041003","29.938778"],["-90.040986","29.938957"],["-90.040970","29.939130"],["-90.040960","29.939310"],["-90.040951","29.939489"],["-90.040927","29.939668"],["-90.040904","29.939847"],["-90.040894","29.939920"],["-90.040981","29.940083"],["-90.041027","29.940169"],["-90.041040","29.940300"],["-90.041032","29.940480"],["-90.041024","29.940659"],["-90.041015","29.940839"],["-90.041010","29.940959"],["-90.040999","29.941139"],["-90.040989","29.941299"],["-90.040980","29.941479"],["-90.040970","29.941658"],["-90.040958","29.941838"],["-90.040950","29.941959"],["-90.040921","29.942137"],["-90.040893","29.942315"],["-90.040864","29.942493"],["-90.040835","29.942672"],["-90.040807","29.942850"],["-90.040788","29.942967"],["-90.040833","29.943143"],["-90.040870","29.943290"],["-90.040858","29.943470"],["-90.040847","29.943649"],["-90.040835","29.943829"],["-90.040824","29.944008"],["-90.040820","29.944070"],["-90.040791","29.944248"],["-90.040763","29.944426"],["-90.040734","29.944604"],["-90.040705","29.944783"],["-90.040676","29.944961"],["-90.040665","29.945031"],["-90.040706","29.945207"],["-90.040736","29.945339"],["-90.040723","29.945519"],["-90.040710","29.945698"],["-90.040696","29.945877"],["-90.040681","29.946057"],["-90.040670","29.946200"],["-90.040658","29.946380"],["-90.040646","29.946559"],["-90.040634","29.946739"],["-90.040623","29.946918"],["-90.040611","29.947098"],["-90.040600","29.947259"],["-90.040573","29.947437"],["-90.040546","29.947616"],["-90.040519","29.947794"],["-90.040492","29.947972"],["-90.040466","29.948142"],["-90.040265","29.948186"],["-90.040115","29.948218"],["-90.039908","29.948207"],["-90.039701","29.948196"],["-90.039579","29.948190"],["-90.039372","29.948179"],["-90.039165","29.948169"],["-90.038957","29.948158"],["-90.038750","29.948147"],["-90.038589","29.948139"],["-90.038382","29.948129"],["-90.038174","29.948119"],["-90.037967","29.948109"],["-90.037760","29.948098"],["-90.037590","29.948090"],["-90.037383","29.948079"],["-90.037176","29.948069"],["-90.036968","29.948058"],["-90.036761","29.948048"],["-90.036609","29.948040"],["-90.036402","29.948033"],["-90.036194","29.948026"],["-90.035987","29.948018"],["-90.035779","29.948011"],["-90.035572","29.948003"],["-90.035365","29.947995"],["-90.035157","29.947987"],["-90.035044","29.947983"],["-90.034837","29.947974"],["-90.034629","29.947965"],["-90.034422","29.947957"],["-90.034260","29.947950"],["-90.034250","29.948130"],["-90.034457","29.948139"],["-90.034665","29.948149"],["-90.034872","29.948159"],["-90.035079","29.948169"],["-90.035286","29.948179"],["-90.035354","29.948182"],["-90.035562","29.948183"],["-90.035769","29.948184"],["-90.035864","29.948184"],["-90.036071","29.948191"],["-90.036279","29.948199"],["-90.036486","29.948206"],["-90.036600","29.948210"],["-90.036807","29.948216"],["-90.037015","29.948223"],["-90.037222","29.948229"],["-90.037430","29.948235"],["-90.037580","29.948240"],["-90.037787","29.948249"],["-90.037995","29.948258"],["-90.038202","29.948268"],["-90.038409","29.948277"],["-90.038480","29.948280"],["-90.038630","29.948290"],["-90.038837","29.948299"],["-90.039045","29.948308"],["-90.039252","29.948316"],["-90.039459","29.948325"],["-90.039570","29.948330"],["-90.039777","29.948341"],["-90.039984","29.948352"],["-90.040192","29.948363"],["-90.040399","29.948374"],["-90.040520","29.948380"],["-90.040511","29.948560"],["-90.040501","29.948739"],["-90.040492","29.948919"],["-90.040482","29.949099"],["-90.040473","29.949278"],["-90.040470","29.949329"],["-90.040445","29.949508"],["-90.040420","29.949686"],["-90.040395","29.949865"],["-90.040370","29.950043"],["-90.040345","29.950222"],["-90.040320","29.950400"],["-90.040314","29.950441"],["-90.040339","29.950620"],["-90.040364","29.950798"],["-90.040375","29.950879"],["-90.040363","29.951059"],["-90.040351","29.951238"],["-90.040338","29.951418"],["-90.040326","29.951597"],["-90.040320","29.951690"],["-90.040309","29.951870"],["-90.040298","29.952049"],["-90.040287","29.952229"],["-90.040277","29.952408"],["-90.040266","29.952588"],["-90.040255","29.952768"],["-90.040250","29.952849"],["-90.040237","29.953029"],["-90.040223","29.953208"],["-90.040210","29.953387"],["-90.040194","29.953567"],["-90.040179","29.953746"],["-90.040169","29.953860"],["-90.040366","29.953916"],["-90.040449","29.953940"],["-90.040649","29.953987"],["-90.040849","29.954035"],["-90.041050","29.954082"],["-90.041250","29.954129"],["-90.041451","29.954176"],["-90.041550","29.954200"],["-90.041752","29.954243"],["-90.041953","29.954287"],["-90.042154","29.954330"],["-90.042356","29.954374"],["-90.042557","29.954417"],["-90.042759","29.954459"],["-90.042961","29.954502"],["-90.043163","29.954544"],["-90.043364","29.954586"],["-90.043566","29.954628"],["-90.043769","29.954667"],["-90.043972","29.954706"],["-90.044174","29.954745"],["-90.044377","29.954784"],["-90.044580","29.954823"],["-90.044654","29.954837"],["-90.044860","29.954818"],["-90.045006","29.954804"],["-90.045212","29.954829"],["-90.045417","29.954853"],["-90.045623","29.954877"],["-90.045730","29.954890"],["-90.045929","29.954940"],["-90.046129","29.954990"],["-90.046328","29.955040"],["-90.046459","29.955073"],["-90.046664","29.955043"],["-90.046868","29.955012"],["-90.047075","29.955023"],["-90.047283","29.955034"],["-90.047490","29.955045"],["-90.047697","29.955056"],["-90.047770","29.955060"],["-90.047975","29.955087"],["-90.048180","29.955115"],["-90.048386","29.955142"],["-90.048591","29.955170"],["-90.048669","29.955180"],["-90.048871","29.955137"],["-90.049027","29.955104"],["-90.049180","29.955100"],["-90.049387","29.955086"],["-90.049594","29.955072"],["-90.049801","29.955059"],["-90.050008","29.955045"],["-90.050079","29.955040"],["-90.050286","29.955029"],["-90.050493","29.955019"],["-90.050680","29.955009"],["-90.050870","29.955010"],["-90.051076","29.955031"],["-90.051281","29.955051"],["-90.051478","29.954993"],["-90.051617","29.954952"],["-90.051824","29.954934"],["-90.051990","29.954919"],["-90.052197","29.954904"],["-90.052404","29.954889"],["-90.052520","29.954880"],["-90.052696","29.954785"],["-90.052780","29.954740"],["-90.052957","29.954646"],["-90.053134","29.954553"],["-90.053312","29.954459"],["-90.053489","29.954365"],["-90.053661","29.954274"],["-90.053790","29.954133"],["-90.053866","29.954050"],["-90.054032","29.953942"],["-90.054197","29.953833"],["-90.054249","29.953799"],["-90.054413","29.953689"],["-90.054577","29.953579"],["-90.054650","29.953530"],["-90.054817","29.953423"],["-90.054984","29.953317"],["-90.055155","29.953215"],["-90.055250","29.953055"],["-90.055302","29.952968"],["-90.055279","29.952789"],["-90.055255","29.952611"],["-90.055250","29.952570"],["-90.055190","29.952500"],["-90.055130","29.952469"],["-90.054927","29.952430"],["-90.054896","29.952252"],["-90.054880","29.952160"],["-90.054860","29.952050"],["-90.054809","29.951980"],["-90.054691","29.951832"],["-90.054572","29.951685"],["-90.054454","29.951537"],["-90.054335","29.951389"],["-90.054240","29.951270"],["-90.054119","29.951124"],["-90.053997","29.950978"],["-90.053876","29.950832"],["-90.053755","29.950686"],["-90.053633","29.950540"],["-90.053550","29.950440"],["-90.053430","29.950293"],["-90.053309","29.950147"],["-90.053189","29.950000"],["-90.053069","29.949854"],["-90.052948","29.949707"],["-90.052860","29.949600"],["-90.052761","29.949442"],["-90.052662","29.949284"],["-90.052564","29.949125"],["-90.052465","29.948967"],["-90.052366","29.948809"],["-90.052321","29.948737"],["-90.052350","29.948559"],["-90.052378","29.948390"],["-90.052365","29.948210"],["-90.052353","29.948031"],["-90.052341","29.947851"],["-90.052328","29.947672"],["-90.052319","29.947539"],["-90.052334","29.947360"],["-90.052349","29.947180"],["-90.052365","29.947001"],["-90.052380","29.946821"],["-90.052395","29.946642"],["-90.052401","29.946573"],["-90.052311","29.946411"],["-90.052250","29.946300"],["-90.052239","29.946120"],["-90.052229","29.945941"],["-90.052219","29.945761"],["-90.052208","29.945581"],["-90.052200","29.945439"],["-90.051993","29.945450"],["-90.051786","29.945460"],["-90.051578","29.945471"],["-90.051371","29.945481"],["-90.051164","29.945492"],["-90.051000","29.945500"],["-90.050793","29.945510"],["-90.050585","29.945519"],["-90.050378","29.945529"],["-90.050171","29.945538"],["-90.049964","29.945551"],["-90.049810","29.945560"],["-90.049608","29.945519"],["-90.049406","29.945478"],["-90.049325","29.945461"],["-90.049122","29.945498"],["-90.048919","29.945535"],["-90.048843","29.945549"],["-90.048636","29.945540"],["-90.048428","29.945530"],["-90.048224","29.945501"],["-90.048019","29.945472"],["-90.047814","29.945442"],["-90.047609","29.945413"],["-90.047404","29.945384"],["-90.047376","29.945380"],["-90.047171","29.945409"],["-90.046966","29.945439"],["-90.046874","29.945452"],["-90.046667","29.945443"],["-90.046459","29.945435"],["-90.046339","29.945430"],["-90.046135","29.945399"],["-90.045930","29.945368"],["-90.045726","29.945337"],["-90.045521","29.945306"],["-90.045467","29.945298"],["-90.045265","29.945340"],["-90.045164","29.945361"],["-90.044958","29.945342"],["-90.044751","29.945323"],["-90.044545","29.945304"],["-90.044338","29.945285"],["-90.044132","29.945266"],["-90.043926","29.945247"],["-90.043719","29.945227"],["-90.043513","29.945208"],["-90.043306","29.945189"],["-90.043227","29.945182"],["-90.043160","29.945180"],["-90.043150","29.945270"],["-90.043022","29.945264"],["-90.042895","29.945258"],["-90.042767","29.945251"],["-90.042640","29.945245"],["-90.042512","29.945239"],["-90.042385","29.945233"],["-90.042257","29.945226"],["-90.042130","29.945220"],["-90.041997","29.945214"],["-90.041865","29.945208"],["-90.041732","29.945201"],["-90.041600","29.945195"],["-90.041467","29.945189"],["-90.041335","29.945183"],["-90.041202","29.945176"],["-90.041070","29.945170"],["-90.041070","29.945102"],["-90.041070","29.945170"],["-90.040930","29.945160"],["-90.040750","29.945150"],["-90.040630","29.945144"],["-90.040510","29.945138"],["-90.040390","29.945131"],["-90.040270","29.945125"],["-90.040150","29.945119"],["-90.040030","29.945113"],["-90.039910","29.945106"],["-90.039790","29.945100"],["-90.039670","29.945095"],["-90.039550","29.945090"],["-90.039430","29.945085"],["-90.039310","29.945080"],["-90.039190","29.945075"],["-90.039070","29.945070"],["-90.038950","29.945065"],["-90.038830","29.945060"],["-90.038913","29.944976"],["-90.038708","29.945006"],["-90.038504","29.945035"],["-90.038415","29.945048"],["-90.038208","29.945041"],["-90.038160","29.945040"],["-90.037953","29.945028"],["-90.037820","29.945020"],["-90.037613","29.945007"],["-90.037406","29.944995"],["-90.037224","29.944909"],["-90.037077","29.944840"],["-90.036875","29.944883"],["-90.036674","29.944925"],["-90.036466","29.944920"],["-90.036259","29.944910"],["-90.036052","29.944899"],["-90.035844","29.944888"],["-90.035637","29.944878"],["-90.035480","29.944870"],["-90.035273","29.944857"],["-90.035066","29.944844"],["-90.035000","29.944840"],["-90.034793","29.944830"],["-90.034585","29.944820"],["-90.034385","29.944774"],["-90.034184","29.944729"],["-90.034017","29.944691"],["-90.033816","29.944737"],["-90.033670","29.944770"],["-90.033510","29.944760"],["-90.033360","29.944740"],["-90.033190","29.944700"],["-90.032999","29.944630"],["-90.032807","29.944561"],["-90.032640","29.944500"],["-90.032455","29.944418"],["-90.032270","29.944336"],["-90.032086","29.944254"],["-90.031901","29.944172"],["-90.031754","29.944107"],["-90.031553","29.944063"],["-90.031400","29.944030"],["-90.031211","29.943956"],["-90.031021","29.943883"],["-90.030860","29.943820"],["-90.030678","29.943734"],["-90.030496","29.943647"],["-90.030314","29.943561"],["-90.030132","29.943474"],["-90.029950","29.943388"],["-90.029925","29.943376"],["-90.029720","29.943347"],["-90.029600","29.943330"],["-90.029408","29.943261"],["-90.029217","29.943191"],["-90.029025","29.943122"],["-90.028910","29.943080"],["-90.028745","29.942971"],["-90.028579","29.942863"],["-90.028532","29.942832"],["-90.028500","29.942900"],["-90.028372","29.942850"],["-90.028245","29.942800"],["-90.028117","29.942750"],["-90.027990","29.942700"],["-90.027855","29.942650"],["-90.027720","29.942600"],["-90.027710","29.942590"],["-90.027555","29.942535"],["-90.027400","29.942480"],["-90.027410","29.942375"],["-90.027310","29.942260"],["-90.027368","29.942269"],["-90.027310","29.942260"],["-90.027290","29.942430"],["-90.027170","29.942385"],["-90.027050","29.942340"],["-90.026930","29.942295"],["-90.026810","29.942250"],["-90.026630","29.942180"],["-90.026480","29.942125"],["-90.026330","29.942070"],["-90.026167","29.942003"],["-90.026005","29.941935"],["-90.025842","29.941868"],["-90.025680","29.941800"],["-90.025565","29.941755"],["-90.025450","29.941710"],["-90.025335","29.941665"],["-90.025227","29.941503"],["-90.025019","29.941503"],["-90.024882","29.941503"],["-90.024695","29.941426"],["-90.024506","29.941350"],["-90.024410","29.941310"],["-90.024290","29.941260"],["-90.024105","29.941178"],["-90.023920","29.941097"],["-90.023735","29.941015"],["-90.023550","29.940933"],["-90.023372","29.940841"],["-90.023194","29.940748"],["-90.023016","29.940656"],["-90.022838","29.940563"],["-90.022692","29.940487"],["-90.022493","29.940437"],["-90.022335","29.940398"],["-90.022150","29.940317"],["-90.021965","29.940235"],["-90.021780","29.940153"],["-90.021595","29.940072"],["-90.021410","29.939990"],["-90.021233","29.939896"],["-90.021057","29.939801"],["-90.020880","29.939707"],["-90.020703","29.939613"],["-90.020527","29.939518"],["-90.020384","29.939442"],["-90.020183","29.939396"],["-90.019983","29.939350"],["-90.019920","29.939336"],["-90.019735","29.939254"],["-90.019551","29.939172"],["-90.019500","29.939150"],["-90.019313","29.939071"],["-90.019127","29.938993"],["-90.018952","29.938895"],["-90.018778","29.938798"],["-90.018603","29.938700"],["-90.018429","29.938603"],["-90.018255","29.938505"],["-90.018080","29.938407"],["-90.017983","29.938353"],["-90.017783","29.938306"],["-90.017582","29.938259"],["-90.017400","29.938172"],["-90.017223","29.938079"],["-90.017047","29.937983"],["-90.016871","29.937888"],["-90.016695","29.937793"],["-90.016519","29.937697"],["-90.016476","29.937674"],["-90.016273","29.937638"],["-90.016069","29.937602"],["-90.015885","29.937519"],["-90.015706","29.937428"],["-90.015528","29.937335"],["-90.015350","29.937243"],["-90.015172","29.937150"],["-90.014994","29.937058"],["-90.014817","29.936965"],["-90.014689","29.936898"],["-90.014485","29.936865"],["-90.014281","29.936831"],["-90.014217","29.936821"],["-90.014031","29.936742"],["-90.013844","29.936663"],["-90.013658","29.936583"],["-90.013472","29.936504"],["-90.013310","29.936392"],["-90.013148","29.936279"],["-90.013088","29.936238"],["-90.012888","29.936190"],["-90.012688","29.936142"],["-90.012501","29.936064"],["-90.012360","29.936000"],["-90.012174","29.935920"],["-90.011988","29.935840"],["-90.011802","29.935760"],["-90.011616","29.935680"],["-90.011570","29.935660"],["-90.011406","29.935550"],["-90.011242","29.935439"],["-90.011155","29.935380"],["-90.010951","29.935346"],["-90.010800","29.935320"],["-90.010615","29.935239"],["-90.010429","29.935158"],["-90.010244","29.935077"],["-90.010090","29.935010"],["-90.009924","29.934902"],["-90.009758","29.934794"],["-90.009659","29.934729"],["-90.009460","29.934679"],["-90.009260","29.934629"],["-90.009170","29.934606"],["-90.008985","29.934524"],["-90.008840","29.934460"],["-90.008678","29.934348"],["-90.008515","29.934236"],["-90.008453","29.934193"],["-90.008254","29.934143"],["-90.008054","29.934093"],["-90.008000","29.934080"],["-90.007830","29.933977"],["-90.007660","29.933874"],["-90.007489","29.933771"],["-90.007404","29.933720"],["-90.007204","29.933671"],["-90.007004","29.933623"],["-90.006945","29.933608"],["-90.006760","29.933526"],["-90.006575","29.933445"],["-90.006520","29.933420"],["-90.006334","29.933340"],["-90.006220","29.933290"],["-90.006034","29.933210"],["-90.005848","29.933130"],["-90.005662","29.933050"],["-90.005570","29.933010"],["-90.005402","29.932905"],["-90.005233","29.932800"],["-90.005065","29.932695"],["-90.004961","29.932630"],["-90.004778","29.932546"],["-90.004594","29.932461"],["-90.004411","29.932377"],["-90.004228","29.932292"],["-90.004045","29.932208"],["-90.003861","29.932123"],["-90.003678","29.932039"],["-90.003495","29.931955"],["-90.003312","29.931870"],["-90.003128","29.931786"],["-90.003101","29.931773"],["-90.002893","29.931769"],["-90.002766","29.931767"],["-90.002581","29.931685"],["-90.002397","29.931602"],["-90.002213","29.931520"],["-90.002028","29.931437"],["-90.001844","29.931354"],["-90.001700","29.931290"],["-90.001549","29.931167"],["-90.001449","29.931086"],["-90.001243","29.931067"],["-90.001136","29.931057"],["-90.000952","29.930973"],["-90.000790","29.930900"],["-90.000605","29.930819"],["-90.000419","29.930739"],["-90.000234","29.930658"],["-90.000048","29.930577"],["-89.999940","29.930530"],["-89.999787","29.930408"],["-89.999662","29.930309"],["-89.999463","29.930259"],["-89.999263","29.930208"],["-89.999171","29.930185"],["-89.998987","29.930102"],["-89.998802","29.930020"],["-89.998618","29.929937"],["-89.998490","29.929880"],["-89.998315","29.929783"],["-89.998141","29.929686"],["-89.997966","29.929588"],["-89.997791","29.929491"],["-89.997656","29.929416"],["-89.997456","29.929368"],["-89.997256","29.929319"],["-89.997169","29.929298"],["-89.996984","29.929217"],["-89.996799","29.929136"],["-89.996670","29.929080"],["-89.996600","29.929050"],["-89.996431","29.928946"],["-89.996262","29.928841"],["-89.996093","29.928737"],["-89.996035","29.928701"],["-89.995832","29.928665"],["-89.995690","29.928640"],["-89.995504","29.928560"],["-89.995318","29.928480"],["-89.995132","29.928400"],["-89.994946","29.928320"],["-89.994760","29.928240"],["-89.994575","29.928159"],["-89.994390","29.928078"],["-89.994205","29.927997"],["-89.994019","29.927916"],["-89.993834","29.927835"],["-89.993656","29.927743"],["-89.993478","29.927650"],["-89.993300","29.927558"],["-89.993122","29.927466"],["-89.992944","29.927373"],["-89.992783","29.927290"],["-89.992586","29.927233"],["-89.992389","29.927176"],["-89.992329","29.927159"],["-89.992144","29.927077"],["-89.991989","29.927009"],["-89.991811","29.926917"],["-89.991633","29.926825"],["-89.991454","29.926732"],["-89.991276","29.926640"],["-89.991098","29.926548"],["-89.991048","29.926522"],["-89.990850","29.926469"],["-89.990651","29.926416"],["-89.990562","29.926392"],["-89.990378","29.926309"],["-89.990194","29.926226"],["-89.990010","29.926142"],["-89.989826","29.926059"],["-89.989643","29.925975"],["-89.989459","29.925892"],["-89.989275","29.925809"],["-89.989099","29.925729"],["-89.988921","29.925636"],["-89.988744","29.925543"],["-89.988566","29.925450"],["-89.988389","29.925357"],["-89.988211","29.925264"],["-89.988107","29.925209"],["-89.987907","29.925160"],["-89.987708","29.925111"],["-89.987619","29.925089"],["-89.987434","29.925008"],["-89.987248","29.924927"],["-89.987063","29.924846"],["-89.986910","29.924780"],["-89.986725","29.924699"],["-89.986540","29.924618"],["-89.986355","29.924536"],["-89.986169","29.924455"],["-89.985984","29.924374"],["-89.985930","29.924350"],["-89.985769","29.924236"],["-89.985600","29.924132"],["-89.985450","29.924007"],["-89.985301","29.923883"],["-89.985229","29.923823"],["-89.985130","29.923810"],["-89.985120","29.923890"],["-89.985002","29.923838"],["-89.984885","29.923785"],["-89.984767","29.923733"],["-89.984650","29.923680"],["-89.984502","29.923620"],["-89.984355","29.923560"],["-89.984207","29.923500"],["-89.984060","29.923440"],["-89.983935","29.923380"],["-89.983810","29.923320"],["-89.983645","29.923245"],["-89.983480","29.923170"],["-89.983315","29.923095"],["-89.983150","29.923020"],["-89.983040","29.922980"],["-89.983078","29.922904"],["-89.983040","29.922980"],["-89.982970","29.922950"],["-89.982775","29.922863"],["-89.982580","29.922775"],["-89.982385","29.922688"],["-89.982190","29.922600"],["-89.982077","29.922553"],["-89.981965","29.922505"],["-89.981852","29.922458"],["-89.981740","29.922410"],["-89.981552","29.922328"],["-89.981365","29.922245"],["-89.981177","29.922163"],["-89.980990","29.922080"],["-89.981000","29.921970"],["-89.981062","29.921974"],["-89.981000","29.921970"],["-89.980990","29.922080"],["-89.980871","29.922026"],["-89.980752","29.921973"],["-89.980634","29.921919"],["-89.980515","29.921865"],["-89.980396","29.921811"],["-89.980277","29.921758"],["-89.980159","29.921704"],["-89.980040","29.921650"],["-89.979870","29.921575"],["-89.979700","29.921500"],["-89.979530","29.921425"],["-89.979360","29.921350"],["-89.979400","29.921278"],["-89.979360","29.921350"],["-89.979270","29.921320"],["-89.979077","29.921235"],["-89.978885","29.921150"],["-89.978692","29.921065"],["-89.978500","29.920980"],["-89.978401","29.920935"],["-89.978302","29.920890"],["-89.978204","29.920845"],["-89.978105","29.920800"],["-89.978006","29.920755"],["-89.977907","29.920710"],["-89.977809","29.920665"],["-89.977710","29.920620"],["-89.977532","29.920543"],["-89.977355","29.920465"],["-89.977177","29.920388"],["-89.977110","29.920310"],["-89.977042","29.920232"],["-89.977000","29.920310"],["-89.976910","29.920270"],["-89.976900","29.920370"],["-89.976892","29.920474"],["-89.977066","29.920550"],["-89.977240","29.920627"],["-89.977414","29.920704"],["-89.977588","29.920780"],["-89.977762","29.920857"],["-89.977936","29.920934"],["-89.978110","29.921010"],["-89.978283","29.921087"],["-89.978457","29.921164"],["-89.978631","29.921240"],["-89.978805","29.921317"],["-89.978979","29.921393"],["-89.979153","29.921470"],["-89.979327","29.921547"],["-89.979501","29.921623"],["-89.979675","29.921700"],["-89.979842","29.921775"],["-89.980010","29.921850"],["-89.980182","29.921925"],["-89.980355","29.922000"],["-89.980527","29.922075"],["-89.980700","29.922150"],["-89.980860","29.922220"],["-89.980969","29.922268"],["-89.981077","29.922315"],["-89.981186","29.922363"],["-89.981295","29.922410"],["-89.981404","29.922458"],["-89.981512","29.922505"],["-89.981621","29.922553"],["-89.981730","29.922600"],["-89.981750","29.922610"],["-89.981910","29.922690"],["-89.982040","29.922745"],["-89.982170","29.922800"],["-89.982342","29.922878"],["-89.982515","29.922955"],["-89.982687","29.923033"],["-89.982860","29.923110"],["-89.982893","29.923220"]]}]}},{"type":"Feature","properties":{"route_id":"105","agency_id":"1","route_short_name":"105","route_long_name":"Algiers Local","route_type":"3","route_color":"#71c167","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.014492","29.937052"],["-90.016280","29.937855"],["-90.017787","29.938516"],["-90.020188","29.939578"],["-90.025124","29.941621"],["-90.027368","29.942269"],["-90.027501","29.940286"],["-90.027687","29.938293"],["-90.027802","29.936751"],["-90.027764","29.933714"],["-90.027577","29.931903"],["-90.028750","29.928473"],["-90.027718","29.929325"],["-90.020410","29.918369"],["-89.991813","29.904860"],["-90.013414","29.929603"],["-90.013263","29.932226"],["-90.042258","29.925096"],["-90.017810","29.911386"],["-90.043886","29.920087"],["-89.994342","29.902975"],["-89.996262","29.901543"],["-89.997368","29.901069"],["-90.000664","29.901056"],["-90.008210","29.901439"],["-90.017612","29.907493"],["-90.027573","29.931092"],["-90.027518","29.941358"],["-90.037190","29.930590"],["-90.013951","29.921876"],["-90.020690","29.916673"],["-90.020294","29.919902"],["-90.019472","29.923060"],["-90.035199","29.930500"],["-90.022360","29.940497"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-89.991813","29.904860"],["-89.991811","29.904743"],["-89.991959","29.904634"],["-89.992108","29.904525"],["-89.992256","29.904417"],["-89.992404","29.904308"],["-89.992553","29.904200"],["-89.992701","29.904091"],["-89.992849","29.903983"],["-89.992998","29.903874"],["-89.993146","29.903766"],["-89.993294","29.903657"],["-89.993443","29.903548"],["-89.993591","29.903440"],["-89.993740","29.903331"],["-89.993888","29.903223"],["-89.994036","29.903114"],["-89.994185","29.903006"],["-89.994342","29.902975"],["-89.994319","29.902894"],["-89.994459","29.902796"],["-89.994600","29.902699"],["-89.994700","29.902625"],["-89.994800","29.902551"],["-89.994900","29.902478"],["-89.995000","29.902404"],["-89.995100","29.902330"],["-89.995198","29.902258"],["-89.995295","29.902185"],["-89.995393","29.902113"],["-89.995490","29.902040"],["-89.995588","29.901968"],["-89.995685","29.901895"],["-89.995783","29.901823"],["-89.995880","29.901750"],["-89.996040","29.901630"],["-89.996160","29.901540"],["-89.996262","29.901543"],["-89.996220","29.901490"],["-89.996360","29.901400"],["-89.996370","29.901390"],["-89.996465","29.901340"],["-89.996560","29.901290"],["-89.996665","29.901240"],["-89.996770","29.901190"],["-89.996960","29.901110"],["-89.997120","29.901060"],["-89.997330","29.901000"],["-89.997368","29.901069"],["-89.997330","29.901000"],["-89.997530","29.900950"],["-89.997710","29.900920"],["-89.997860","29.900900"],["-89.998040","29.900890"],["-89.998220","29.900890"],["-89.998430","29.900900"],["-89.998549","29.900905"],["-89.998667","29.900910"],["-89.998786","29.900915"],["-89.998905","29.900920"],["-89.999024","29.900925"],["-89.999142","29.900930"],["-89.999261","29.900935"],["-89.999380","29.900940"],["-89.999550","29.900940"],["-89.999690","29.900946"],["-89.999830","29.900953"],["-89.999970","29.900959"],["-90.000110","29.900965"],["-90.000250","29.900971"],["-90.000390","29.900978"],["-90.000530","29.900984"],["-90.000670","29.900990"],["-90.000664","29.901056"],["-90.000670","29.900990"],["-90.000830","29.901000"],["-90.001045","29.901005"],["-90.001260","29.901010"],["-90.001340","29.901020"],["-90.001370","29.901020"],["-90.001570","29.901030"],["-90.001715","29.901035"],["-90.001860","29.901040"],["-90.002070","29.901050"],["-90.002170","29.901060"],["-90.002260","29.901080"],["-90.002340","29.901100"],["-90.002430","29.901110"],["-90.002510","29.901120"],["-90.002650","29.901130"],["-90.002777","29.901135"],["-90.002905","29.901140"],["-90.003032","29.901145"],["-90.003160","29.901150"],["-90.003340","29.901158"],["-90.003520","29.901165"],["-90.003700","29.901173"],["-90.003880","29.901180"],["-90.004060","29.901188"],["-90.004240","29.901195"],["-90.004420","29.901203"],["-90.004600","29.901210"],["-90.004782","29.901219"],["-90.004965","29.901228"],["-90.005147","29.901236"],["-90.005330","29.901245"],["-90.005512","29.901254"],["-90.005695","29.901263"],["-90.005877","29.901271"],["-90.006060","29.901280"],["-90.006265","29.901288"],["-90.006470","29.901295"],["-90.006675","29.901303"],["-90.006880","29.901310"],["-90.007035","29.901318"],["-90.007190","29.901325"],["-90.007345","29.901333"],["-90.007500","29.901340"],["-90.007635","29.901345"],["-90.007770","29.901350"],["-90.007905","29.901355"],["-90.008040","29.901360"],["-90.008210","29.901370"],["-90.008210","29.901439"],["-90.008210","29.901370"],["-90.008270","29.901370"],["-90.008485","29.901380"],["-90.008700","29.901390"],["-90.008910","29.901400"],["-90.008930","29.901400"],["-90.009030","29.901410"],["-90.009140","29.901420"],["-90.009320","29.901450"],["-90.009520","29.901490"],["-90.009660","29.901520"],["-90.009720","29.901540"],["-90.009790","29.901560"],["-90.009990","29.901620"],["-90.010105","29.901665"],["-90.010220","29.901710"],["-90.010330","29.901760"],["-90.010470","29.901830"],["-90.010600","29.901900"],["-90.010750","29.901990"],["-90.010890","29.902080"],["-90.010990","29.902150"],["-90.011070","29.902220"],["-90.011140","29.902270"],["-90.011290","29.902400"],["-90.011430","29.902535"],["-90.011570","29.902670"],["-90.011695","29.902790"],["-90.011820","29.902910"],["-90.011945","29.903030"],["-90.012070","29.903150"],["-90.012200","29.903275"],["-90.012330","29.903400"],["-90.012465","29.903520"],["-90.012600","29.903640"],["-90.012640","29.903680"],["-90.012725","29.903763"],["-90.012810","29.903845"],["-90.012895","29.903928"],["-90.012980","29.904010"],["-90.013130","29.904150"],["-90.013225","29.904240"],["-90.013320","29.904330"],["-90.013410","29.904415"],["-90.013500","29.904500"],["-90.013620","29.904590"],["-90.013710","29.904670"],["-90.013790","29.904720"],["-90.013870","29.904770"],["-90.013970","29.904840"],["-90.014070","29.904910"],["-90.014200","29.905000"],["-90.014300","29.905060"],["-90.014427","29.905140"],["-90.014555","29.905220"],["-90.014682","29.905300"],["-90.014810","29.905380"],["-90.014977","29.905493"],["-90.015145","29.905605"],["-90.015312","29.905718"],["-90.015480","29.905830"],["-90.015625","29.905925"],["-90.015770","29.906020"],["-90.015880","29.906110"],["-90.015990","29.906200"],["-90.016110","29.906310"],["-90.016250","29.906440"],["-90.016390","29.906580"],["-90.016530","29.906720"],["-90.016625","29.906790"],["-90.016720","29.906860"],["-90.016830","29.906950"],["-90.016940","29.907020"],["-90.017117","29.907125"],["-90.017295","29.907230"],["-90.017472","29.907335"],["-90.017650","29.907440"],["-90.017612","29.907493"],["-90.017650","29.907440"],["-90.017780","29.907510"],["-90.017820","29.907530"],["-90.017950","29.907600"],["-90.018140","29.907670"],["-90.018128","29.907855"],["-90.018115","29.908040"],["-90.018103","29.908225"],["-90.018090","29.908410"],["-90.018090","29.908500"],["-90.018090","29.908540"],["-90.018110","29.908590"],["-90.018140","29.908700"],["-90.018130","29.908840"],["-90.018130","29.909010"],["-90.018120","29.909150"],["-90.018110","29.909290"],["-90.018100","29.909470"],["-90.018080","29.909610"],["-90.018080","29.909710"],["-90.018010","29.909760"],["-90.018000","29.909910"],["-90.017991","29.910070"],["-90.017982","29.910213"],["-90.017973","29.910357"],["-90.017964","29.910500"],["-90.017956","29.910643"],["-90.017947","29.910787"],["-90.017938","29.910930"],["-90.017929","29.911073"],["-90.017920","29.911216"],["-90.017865","29.911301"],["-90.017810","29.911386"],["-90.017832","29.911484"],["-90.017854","29.911583"],["-90.017877","29.911681"],["-90.017899","29.911779"],["-90.017887","29.911901"],["-90.017875","29.912022"],["-90.017864","29.912144"],["-90.017852","29.912265"],["-90.017840","29.912386"],["-90.017828","29.912508"],["-90.017817","29.912629"],["-90.017805","29.912751"],["-90.017793","29.912872"],["-90.017781","29.912994"],["-90.017770","29.913115"],["-90.017758","29.913237"],["-90.017746","29.913358"],["-90.017735","29.913480"],["-90.017723","29.913601"],["-90.017711","29.913723"],["-90.017832","29.913755"],["-90.017953","29.913788"],["-90.018075","29.913820"],["-90.018196","29.913853"],["-90.018349","29.913925"],["-90.018501","29.913997"],["-90.018654","29.914069"],["-90.018807","29.914141"],["-90.018893","29.914212"],["-90.018979","29.914283"],["-90.019065","29.914354"],["-90.019151","29.914425"],["-90.019236","29.914495"],["-90.019322","29.914566"],["-90.019408","29.914637"],["-90.019494","29.914708"],["-90.019580","29.914779"],["-90.019665","29.914850"],["-90.019751","29.914921"],["-90.019837","29.914992"],["-90.019923","29.915063"],["-90.020009","29.915134"],["-90.020095","29.915205"],["-90.020180","29.915275"],["-90.020323","29.915392"],["-90.020465","29.915508"],["-90.020607","29.915624"],["-90.020749","29.915740"],["-90.020891","29.915857"],["-90.021033","29.915973"],["-90.021176","29.916089"],["-90.021318","29.916205"],["-90.021202","29.916303"],["-90.021087","29.916401"],["-90.020972","29.916498"],["-90.020856","29.916596"],["-90.020690","29.916673"],["-90.020677","29.916770"],["-90.020664","29.916867"],["-90.020621","29.916974"],["-90.020578","29.917081"],["-90.020559","29.917181"],["-90.020540","29.917280"],["-90.020536","29.917416"],["-90.020531","29.917551"],["-90.020526","29.917687"],["-90.020521","29.917822"],["-90.020513","29.917940"],["-90.020505","29.918058"],["-90.020497","29.918176"],["-90.020489","29.918294"],["-90.020410","29.918369"],["-90.020494","29.918542"],["-90.020481","29.918700"],["-90.020469","29.918859"],["-90.020456","29.919017"],["-90.020444","29.919176"],["-90.020432","29.919334"],["-90.020419","29.919492"],["-90.020407","29.919651"],["-90.020395","29.919809"],["-90.020294","29.919902"],["-90.020395","29.919963"],["-90.020385","29.920078"],["-90.020376","29.920194"],["-90.020367","29.920309"],["-90.020357","29.920425"],["-90.020348","29.920541"],["-90.020338","29.920656"],["-90.020329","29.920772"],["-90.020320","29.920888"],["-90.020309","29.920989"],["-90.020298","29.921090"],["-90.020287","29.921191"],["-90.020277","29.921292"],["-90.020239","29.921450"],["-90.020202","29.921608"],["-90.020151","29.921780"],["-90.020130","29.921905"],["-90.020110","29.922029"],["-90.020055","29.922185"],["-90.020000","29.922341"],["-90.019954","29.922442"],["-90.019908","29.922543"],["-90.019862","29.922644"],["-90.019815","29.922745"],["-90.019744","29.922870"],["-90.019673","29.922994"],["-90.019472","29.923060"],["-90.019496","29.923245"],["-90.019428","29.923337"],["-90.019360","29.923429"],["-90.019292","29.923521"],["-90.019224","29.923613"],["-90.019119","29.923546"],["-90.019014","29.923480"],["-90.018908","29.923414"],["-90.018803","29.923348"],["-90.018652","29.923208"],["-90.018500","29.923069"],["-90.018394","29.922983"],["-90.018288","29.922898"],["-90.018182","29.922812"],["-90.018076","29.922727"],["-90.017982","29.922676"],["-90.017895","29.922614"],["-90.017808","29.922553"],["-90.017654","29.922498"],["-90.017500","29.922443"],["-90.017302","29.922384"],["-90.017105","29.922325"],["-90.016912","29.922261"],["-90.016719","29.922197"],["-90.016623","29.922139"],["-90.016528","29.922082"],["-90.016432","29.922024"],["-90.016337","29.921966"],["-90.016217","29.921891"],["-90.016098","29.921815"],["-90.015979","29.921740"],["-90.015859","29.921664"],["-90.015761","29.921604"],["-90.015663","29.921545"],["-90.015565","29.921485"],["-90.015468","29.921425"],["-90.015370","29.921366"],["-90.015272","29.921306"],["-90.015174","29.921246"],["-90.015076","29.921187"],["-90.014904","29.921073"],["-90.014732","29.920959"],["-90.014639","29.920902"],["-90.014545","29.920845"],["-90.014462","29.920941"],["-90.014378","29.921038"],["-90.014294","29.921176"],["-90.014209","29.921314"],["-90.014168","29.921430"],["-90.014126","29.921545"],["-90.014079","29.921682"],["-90.014032","29.921819"],["-90.013951","29.921876"],["-90.013951","29.921876"],["-90.014006","29.921970"],["-90.013963","29.922131"],["-90.013953","29.922304"],["-90.013943","29.922477"],["-90.013933","29.922650"],["-90.013923","29.922823"],["-90.013917","29.922934"],["-90.013911","29.923044"],["-90.013905","29.923154"],["-90.013899","29.923264"],["-90.013893","29.923374"],["-90.013887","29.923485"],["-90.013881","29.923595"],["-90.013875","29.923705"],["-90.013868","29.923843"],["-90.013860","29.923980"],["-90.013850","29.924080"],["-90.013840","29.924240"],["-90.013830","29.924370"],["-90.013825","29.924470"],["-90.013820","29.924570"],["-90.013820","29.924670"],["-90.013820","29.924768"],["-90.013820","29.924865"],["-90.013820","29.924963"],["-90.013820","29.925060"],["-90.013815","29.925180"],["-90.013810","29.925300"],["-90.013803","29.925415"],["-90.013795","29.925530"],["-90.013788","29.925645"],["-90.013780","29.925760"],["-90.013780","29.925800"],["-90.013775","29.925925"],["-90.013770","29.926050"],["-90.013765","29.926153"],["-90.013760","29.926255"],["-90.013755","29.926358"],["-90.013750","29.926460"],["-90.013738","29.926631"],["-90.013725","29.926803"],["-90.013713","29.926974"],["-90.013700","29.927145"],["-90.013688","29.927316"],["-90.013675","29.927488"],["-90.013663","29.927659"],["-90.013650","29.927830"],["-90.013640","29.928015"],["-90.013630","29.928200"],["-90.013624","29.928309"],["-90.013618","29.928418"],["-90.013611","29.928526"],["-90.013605","29.928635"],["-90.013599","29.928744"],["-90.013593","29.928853"],["-90.013586","29.928961"],["-90.013580","29.929070"],["-90.013570","29.929170"],["-90.013563","29.929280"],["-90.013555","29.929390"],["-90.013548","29.929500"],["-90.013540","29.929610"],["-90.013414","29.929603"],["-90.013540","29.929610"],["-90.013530","29.929710"],["-90.013525","29.929835"],["-90.013520","29.929960"],["-90.013520","29.930010"],["-90.013513","29.930136"],["-90.013505","29.930263"],["-90.013498","29.930389"],["-90.013490","29.930515"],["-90.013483","29.930641"],["-90.013475","29.930768"],["-90.013468","29.930894"],["-90.013460","29.931020"],["-90.013450","29.931183"],["-90.013440","29.931345"],["-90.013430","29.931508"],["-90.013420","29.931670"],["-90.013410","29.931810"],["-90.013400","29.931950"],["-90.013390","29.932090"],["-90.013380","29.932230"],["-90.013263","29.932226"],["-90.013380","29.932230"],["-90.013380","29.932280"],["-90.013370","29.932320"],["-90.013370","29.932380"],["-90.013350","29.932490"],["-90.013310","29.932640"],["-90.013275","29.932765"],["-90.013240","29.932890"],["-90.013220","29.932995"],["-90.013200","29.933100"],["-90.013180","29.933260"],["-90.013150","29.933400"],["-90.013145","29.933510"],["-90.013140","29.933620"],["-90.013140","29.933680"],["-90.013140","29.933810"],["-90.013135","29.933968"],["-90.013130","29.934125"],["-90.013125","29.934283"],["-90.013120","29.934440"],["-90.013115","29.934595"],["-90.013110","29.934750"],["-90.013095","29.934895"],["-90.013080","29.935040"],["-90.013065","29.935145"],["-90.013050","29.935250"],["-90.013040","29.935350"],["-90.013010","29.935440"],["-90.012980","29.935540"],["-90.012950","29.935640"],["-90.012930","29.935700"],["-90.012890","29.935810"],["-90.012848","29.935903"],["-90.012805","29.935995"],["-90.012763","29.936088"],["-90.012720","29.936180"],["-90.012835","29.936230"],["-90.012950","29.936280"],["-90.013070","29.936335"],["-90.013190","29.936390"],["-90.013310","29.936445"],["-90.013430","29.936500"],["-90.013500","29.936520"],["-90.013630","29.936576"],["-90.013760","29.936633"],["-90.013890","29.936689"],["-90.014020","29.936745"],["-90.014150","29.936801"],["-90.014280","29.936858"],["-90.014410","29.936914"],["-90.014540","29.936970"],["-90.014492","29.937052"],["-90.014688","29.937111"],["-90.014884","29.937170"],["-90.014949","29.937189"],["-90.015129","29.937279"],["-90.015309","29.937369"],["-90.015488","29.937459"],["-90.015668","29.937549"],["-90.015848","29.937639"],["-90.016027","29.937729"],["-90.016207","29.937819"],["-90.016280","29.937855"],["-90.016478","29.937909"],["-90.016676","29.937964"],["-90.016738","29.937981"],["-90.016917","29.938073"],["-90.017096","29.938164"],["-90.017275","29.938255"],["-90.017454","29.938346"],["-90.017632","29.938437"],["-90.017787","29.938516"],["-90.017991","29.938551"],["-90.018173","29.938582"],["-90.018357","29.938665"],["-90.018410","29.938689"],["-90.018594","29.938772"],["-90.018778","29.938856"],["-90.018962","29.938939"],["-90.019119","29.939010"],["-90.019304","29.939092"],["-90.019488","29.939175"],["-90.019661","29.939274"],["-90.019834","29.939374"],["-90.020007","29.939474"],["-90.020188","29.939578"],["-90.020354","29.939604"],["-90.020519","29.939630"],["-90.020630","29.939678"],["-90.020742","29.939725"],["-90.020853","29.939773"],["-90.020964","29.939821"],["-90.021075","29.939868"],["-90.021187","29.939916"],["-90.021298","29.939963"],["-90.021409","29.940011"],["-90.021520","29.940059"],["-90.021632","29.940106"],["-90.021743","29.940154"],["-90.021854","29.940201"],["-90.021965","29.940249"],["-90.022077","29.940297"],["-90.022188","29.940344"],["-90.022299","29.940392"],["-90.022360","29.940497"],["-90.022571","29.940547"],["-90.022782","29.940596"],["-90.022917","29.940656"],["-90.023053","29.940717"],["-90.023188","29.940777"],["-90.023324","29.940837"],["-90.023459","29.940897"],["-90.023595","29.940957"],["-90.023730","29.941017"],["-90.023866","29.941077"],["-90.024001","29.941138"],["-90.024137","29.941198"],["-90.024336","29.941282"],["-90.024535","29.941366"],["-90.024734","29.941450"],["-90.024933","29.941534"],["-90.025124","29.941621"],["-90.025110","29.941650"],["-90.025170","29.941670"],["-90.025250","29.941700"],["-90.025375","29.941760"],["-90.025500","29.941820"],["-90.025685","29.941905"],["-90.025870","29.941990"],["-90.026000","29.942050"],["-90.026145","29.942120"],["-90.026290","29.942190"],["-90.026430","29.942240"],["-90.026570","29.942290"],["-90.026735","29.942350"],["-90.026900","29.942410"],["-90.027090","29.942485"],["-90.027280","29.942560"],["-90.027380","29.942610"],["-90.027400","29.942480"],["-90.027410","29.942375"],["-90.027420","29.942270"],["-90.027368","29.942269"],["-90.027420","29.942270"],["-90.027430","29.942140"],["-90.027438","29.942035"],["-90.027445","29.941930"],["-90.027453","29.941825"],["-90.027460","29.941720"],["-90.027475","29.941540"],["-90.027490","29.941360"],["-90.027518","29.941358"],["-90.027490","29.941360"],["-90.027490","29.941300"],["-90.027500","29.941155"],["-90.027510","29.941010"],["-90.027520","29.940835"],["-90.027530","29.940660"],["-90.027540","29.940470"],["-90.027550","29.940280"],["-90.027501","29.940286"],["-90.027540","29.940215"],["-90.027550","29.940072"],["-90.027560","29.939930"],["-90.027565","29.939825"],["-90.027570","29.939720"],["-90.027575","29.939615"],["-90.027585","29.939515"],["-90.027593","29.939388"],["-90.027600","29.939260"],["-90.027608","29.939139"],["-90.027615","29.939018"],["-90.027623","29.938896"],["-90.027630","29.938775"],["-90.027638","29.938654"],["-90.027645","29.938533"],["-90.027653","29.938411"],["-90.027660","29.938290"],["-90.027687","29.938293"],["-90.027660","29.938290"],["-90.027670","29.938240"],["-90.027678","29.938124"],["-90.027685","29.938008"],["-90.027693","29.937891"],["-90.027700","29.937775"],["-90.027708","29.937659"],["-90.027715","29.937543"],["-90.027723","29.937426"],["-90.027730","29.937310"],["-90.027738","29.937170"],["-90.027745","29.937030"],["-90.027753","29.936890"],["-90.027760","29.936750"],["-90.027802","29.936751"],["-90.027760","29.936750"],["-90.027768","29.936645"],["-90.027775","29.936540"],["-90.027783","29.936435"],["-90.027790","29.936330"],["-90.027790","29.936220"],["-90.027800","29.936100"],["-90.027806","29.935984"],["-90.027813","29.935868"],["-90.027819","29.935751"],["-90.027825","29.935635"],["-90.027831","29.935519"],["-90.027838","29.935403"],["-90.027844","29.935286"],["-90.027850","29.935170"],["-90.027858","29.935020"],["-90.027865","29.934870"],["-90.027873","29.934720"],["-90.027880","29.934570"],["-90.027890","29.934435"],["-90.027900","29.934300"],["-90.027900","29.934280"],["-90.027900","29.934110"],["-90.027890","29.934000"],["-90.027870","29.933930"],["-90.027850","29.933880"],["-90.027830","29.933810"],["-90.027770","29.933700"],["-90.027764","29.933714"],["-90.027770","29.933700"],["-90.027675","29.933550"],["-90.027580","29.933400"],["-90.027540","29.933340"],["-90.027450","29.933260"],["-90.027440","29.933190"],["-90.027430","29.933110"],["-90.027430","29.933020"],["-90.027438","29.932880"],["-90.027445","29.932740"],["-90.027453","29.932600"],["-90.027460","29.932460"],["-90.027468","29.932320"],["-90.027475","29.932180"],["-90.027483","29.932040"],["-90.027490","29.931900"],["-90.027577","29.931903"],["-90.027490","29.931900"],["-90.027496","29.931798"],["-90.027503","29.931695"],["-90.027509","29.931593"],["-90.027515","29.931490"],["-90.027521","29.931388"],["-90.027528","29.931285"],["-90.027534","29.931183"],["-90.027540","29.931080"],["-90.027570","29.931090"],["-90.027573","29.931092"],["-90.027570","29.931090"],["-90.027540","29.931080"],["-90.027549","29.930936"],["-90.027558","29.930793"],["-90.027566","29.930649"],["-90.027575","29.930505"],["-90.027584","29.930361"],["-90.027593","29.930218"],["-90.027601","29.930074"],["-90.027610","29.929930"],["-90.027616","29.929826"],["-90.027622","29.929721"],["-90.027627","29.929617"],["-90.027633","29.929513"],["-90.027676","29.929419"],["-90.027718","29.929325"],["-90.027584","29.929270"],["-90.027451","29.929215"],["-90.027315","29.929150"],["-90.027180","29.929085"],["-90.027045","29.929020"],["-90.026909","29.928955"],["-90.026752","29.928939"],["-90.026595","29.928922"],["-90.026438","29.928906"],["-90.026281","29.928890"],["-90.026161","29.928862"],["-90.026040","29.928834"],["-90.025937","29.928791"],["-90.025834","29.928748"],["-90.025732","29.928705"],["-90.025629","29.928662"],["-90.025504","29.928615"],["-90.025379","29.928567"],["-90.025255","29.928519"],["-90.025130","29.928472"],["-90.025005","29.928424"],["-90.024881","29.928376"],["-90.024756","29.928329"],["-90.024631","29.928281"],["-90.024529","29.928235"],["-90.024427","29.928188"],["-90.024325","29.928142"],["-90.024223","29.928095"],["-90.024089","29.928002"],["-90.024095","29.927835"],["-90.024104","29.927666"],["-90.024113","29.927497"],["-90.024123","29.927328"],["-90.024132","29.927158"],["-90.024142","29.926989"],["-90.024151","29.926820"],["-90.024160","29.926651"],["-90.024170","29.926482"],["-90.024313","29.926543"],["-90.024456","29.926603"],["-90.024600","29.926664"],["-90.024743","29.926724"],["-90.024886","29.926785"],["-90.025030","29.926845"],["-90.025173","29.926906"],["-90.025316","29.926967"],["-90.025460","29.927027"],["-90.025603","29.927088"],["-90.025746","29.927148"],["-90.025890","29.927209"],["-90.026033","29.927270"],["-90.026176","29.927330"],["-90.026320","29.927391"],["-90.026463","29.927451"],["-90.026606","29.927512"],["-90.026750","29.927572"],["-90.026893","29.927633"],["-90.027036","29.927694"],["-90.027180","29.927754"],["-90.027323","29.927815"],["-90.027466","29.927875"],["-90.027610","29.927936"],["-90.027753","29.927997"],["-90.027896","29.928057"],["-90.028040","29.928118"],["-90.028183","29.928178"],["-90.028310","29.928232"],["-90.028436","29.928286"],["-90.028563","29.928340"],["-90.028690","29.928394"],["-90.028750","29.928473"],["-90.028889","29.928471"],["-90.029005","29.928520"],["-90.029121","29.928569"],["-90.029301","29.928671"],["-90.029481","29.928772"],["-90.029660","29.928873"],["-90.029840","29.928974"],["-90.030023","29.929057"],["-90.030206","29.929140"],["-90.030389","29.929224"],["-90.030572","29.929307"],["-90.030754","29.929383"],["-90.030936","29.929459"],["-90.031117","29.929535"],["-90.031299","29.929612"],["-90.031428","29.929651"],["-90.031557","29.929689"],["-90.031686","29.929728"],["-90.031815","29.929767"],["-90.031927","29.929777"],["-90.032040","29.929786"],["-90.032153","29.929795"],["-90.032265","29.929804"],["-90.032484","29.929835"],["-90.032702","29.929865"],["-90.032879","29.929932"],["-90.033055","29.929999"],["-90.033231","29.930065"],["-90.033408","29.930132"],["-90.033597","29.930179"],["-90.033787","29.930226"],["-90.033977","29.930273"],["-90.034167","29.930320"],["-90.034293","29.930334"],["-90.034419","29.930348"],["-90.034546","29.930361"],["-90.034672","29.930375"],["-90.034798","29.930388"],["-90.034925","29.930402"],["-90.035051","29.930415"],["-90.035177","29.930429"],["-90.035199","29.930500"],["-90.035389","29.930469"],["-90.035580","29.930438"],["-90.035763","29.930446"],["-90.035947","29.930454"],["-90.036131","29.930462"],["-90.036315","29.930470"],["-90.036498","29.930479"],["-90.036682","29.930487"],["-90.036866","29.930495"],["-90.037049","29.930503"],["-90.037190","29.930590"],["-90.037200","29.930520"],["-90.037280","29.930530"],["-90.037430","29.930540"],["-90.037470","29.930540"],["-90.037620","29.930550"],["-90.037640","29.930550"],["-90.037770","29.930560"],["-90.037870","29.930570"],["-90.037880","29.930570"],["-90.037970","29.930570"],["-90.037980","29.930570"],["-90.038040","29.930570"],["-90.038180","29.930580"],["-90.038390","29.930590"],["-90.038410","29.930590"],["-90.038500","29.930600"],["-90.038600","29.930600"],["-90.038630","29.930600"],["-90.038640","29.930600"],["-90.038730","29.930610"],["-90.038740","29.930610"],["-90.038800","29.930610"],["-90.038810","29.930610"],["-90.038830","29.930610"],["-90.038850","29.930610"],["-90.038880","29.930610"],["-90.038890","29.930610"],["-90.038910","29.930610"],["-90.038970","29.930620"],["-90.039000","29.930620"],["-90.039137","29.930625"],["-90.039275","29.930630"],["-90.039412","29.930635"],["-90.039550","29.930640"],["-90.039750","29.930650"],["-90.039870","29.930654"],["-90.039990","29.930658"],["-90.040110","29.930661"],["-90.040230","29.930665"],["-90.040350","29.930669"],["-90.040470","29.930673"],["-90.040590","29.930676"],["-90.040710","29.930680"],["-90.040822","29.930685"],["-90.040935","29.930690"],["-90.041047","29.930695"],["-90.041160","29.930700"],["-90.041285","29.930698"],["-90.041410","29.930695"],["-90.041535","29.930693"],["-90.041660","29.930690"],["-90.041730","29.930690"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041835","29.930460"],["-90.041840","29.930360"],["-90.041845","29.930260"],["-90.041850","29.930160"],["-90.041956","29.930163"],["-90.041850","29.930160"],["-90.041860","29.930000"],["-90.041870","29.929840"],["-90.041880","29.929710"],["-90.041895","29.929525"],["-90.041910","29.929340"],["-90.041915","29.929200"],["-90.041920","29.929060"],["-90.041930","29.928880"],["-90.041940","29.928730"],["-90.041948","29.928618"],["-90.041955","29.928505"],["-90.041963","29.928393"],["-90.041970","29.928280"],["-90.041978","29.928168"],["-90.041985","29.928055"],["-90.041993","29.927943"],["-90.042000","29.927830"],["-90.042005","29.927685"],["-90.042010","29.927540"],["-90.042020","29.927440"],["-90.042030","29.927350"],["-90.042040","29.927310"],["-90.042040","29.927270"],["-90.042040","29.927160"],["-90.042050","29.927050"],["-90.042058","29.926920"],["-90.042065","29.926790"],["-90.042073","29.926660"],["-90.042080","29.926530"],["-90.042090","29.926420"],["-90.042098","29.926288"],["-90.042105","29.926155"],["-90.042113","29.926023"],["-90.042120","29.925890"],["-90.042128","29.925784"],["-90.042135","29.925678"],["-90.042143","29.925571"],["-90.042150","29.925465"],["-90.042158","29.925359"],["-90.042165","29.925253"],["-90.042173","29.925146"],["-90.042180","29.925040"],["-90.042260","29.925040"],["-90.042258","29.925096"],["-90.042220","29.924971"],["-90.042181","29.924846"],["-90.042190","29.924726"],["-90.042199","29.924606"],["-90.042208","29.924486"],["-90.042217","29.924366"],["-90.042227","29.924246"],["-90.042236","29.924126"],["-90.042245","29.924006"],["-90.042254","29.923886"],["-90.042263","29.923766"],["-90.042272","29.923646"],["-90.042281","29.923526"],["-90.042290","29.923406"],["-90.042299","29.923286"],["-90.042308","29.923166"],["-90.042317","29.923046"],["-90.042326","29.922926"],["-90.042385","29.922765"],["-90.042444","29.922605"],["-90.042553","29.922444"],["-90.042661","29.922284"],["-90.042770","29.922124"],["-90.042879","29.921963"],["-90.042936","29.921874"],["-90.042994","29.921784"],["-90.043052","29.921695"],["-90.043109","29.921605"],["-90.043167","29.921516"],["-90.043225","29.921426"],["-90.043282","29.921337"],["-90.043340","29.921247"],["-90.043310","29.921138"],["-90.043281","29.921029"],["-90.043163","29.920940"],["-90.043013","29.920926"],["-90.043082","29.920825"],["-90.043152","29.920723"],["-90.043222","29.920621"],["-90.043292","29.920520"],["-90.043361","29.920418"],["-90.043431","29.920316"],["-90.043501","29.920214"],["-90.043571","29.920113"],["-90.043646","29.920006"],["-90.043721","29.919899"],["-90.043836","29.919938"],["-90.043952","29.919978"],["-90.043886","29.920087"]]},{"type":"MultiPoint","coordinates":[["-90.037386","29.930382"],["-90.025227","29.941503"],["-90.022692","29.940487"],["-90.020384","29.939442"],["-90.017983","29.938353"],["-90.016476","29.937674"],["-90.014689","29.936898"],["-90.027399","29.933256"],["-90.027634","29.936355"],["-90.027458","29.938150"],["-90.027387","29.940187"],["-90.014817","29.920931"],["-90.022433","29.918820"],["-89.991813","29.904860"],["-90.013519","29.933487"],["-90.013788","29.929799"],["-90.027262","29.941999"],["-90.039894","29.930389"],["-90.041925","29.924963"],["-90.017808","29.907276"],["-90.043886","29.920087"],["-90.018269","29.913791"],["-90.008374","29.901096"],["-89.997294","29.900763"],["-89.995351","29.901799"],["-89.993741","29.902986"],["-90.018250","29.908599"],["-90.018082","29.911727"],["-90.014264","29.922163"],["-90.000807","29.900740"],["-90.041626","29.930489"],["-90.020380","29.918523"]]},{"type":"LineString","coordinates":[["-90.043886","29.920087"],["-90.043870","29.920090"],["-90.043990","29.920030"],["-90.044000","29.920020"],["-90.044110","29.919870"],["-90.044140","29.919830"],["-90.044170","29.919790"],["-90.044210","29.919740"],["-90.044290","29.919650"],["-90.044290","29.919640"],["-90.044320","29.919610"],["-90.044385","29.919520"],["-90.044450","29.919430"],["-90.044460","29.919420"],["-90.044510","29.919340"],["-90.044560","29.919280"],["-90.044590","29.919230"],["-90.044610","29.919200"],["-90.044660","29.919120"],["-90.044700","29.919060"],["-90.044730","29.919030"],["-90.044750","29.918990"],["-90.044760","29.918970"],["-90.044820","29.918880"],["-90.044870","29.918810"],["-90.044930","29.918720"],["-90.044930","29.918710"],["-90.045030","29.918560"],["-90.045070","29.918490"],["-90.045130","29.918400"],["-90.045170","29.918340"],["-90.045240","29.918230"],["-90.045305","29.918130"],["-90.045370","29.918030"],["-90.045400","29.917990"],["-90.045450","29.917920"],["-90.045550","29.917760"],["-90.045650","29.917600"],["-90.045670","29.917570"],["-90.045740","29.917460"],["-90.045830","29.917340"],["-90.045890","29.917260"],["-90.045910","29.917230"],["-90.045990","29.917130"],["-90.046040","29.917080"],["-90.046060","29.917060"],["-90.046130","29.917030"],["-90.046210","29.916910"],["-90.046270","29.916810"],["-90.046370","29.916685"],["-90.046470","29.916560"],["-90.046570","29.916435"],["-90.046670","29.916310"],["-90.046720","29.916250"],["-90.046823","29.916150"],["-90.046925","29.916050"],["-90.047028","29.915950"],["-90.047130","29.915850"],["-90.047180","29.915710"],["-90.047200","29.915640"],["-90.047200","29.915590"],["-90.047190","29.915540"],["-90.047160","29.915480"],["-90.047140","29.915440"],["-90.047100","29.915400"],["-90.047050","29.915370"],["-90.047000","29.915350"],["-90.046940","29.915330"],["-90.046920","29.915330"],["-90.046850","29.915330"],["-90.046790","29.915330"],["-90.046680","29.915350"],["-90.046610","29.915390"],["-90.046540","29.915460"],["-90.046400","29.915590"],["-90.046260","29.915730"],["-90.046200","29.915800"],["-90.046105","29.915900"],["-90.046010","29.916000"],["-90.045930","29.916100"],["-90.045850","29.916200"],["-90.045760","29.916325"],["-90.045670","29.916450"],["-90.045570","29.916595"],["-90.045470","29.916740"],["-90.045400","29.916850"],["-90.045330","29.916965"],["-90.045260","29.917080"],["-90.045193","29.917190"],["-90.045125","29.917300"],["-90.045058","29.917410"],["-90.044990","29.917520"],["-90.044905","29.917665"],["-90.044820","29.917810"],["-90.044740","29.917900"],["-90.044670","29.918020"],["-90.044610","29.918118"],["-90.044550","29.918215"],["-90.044490","29.918313"],["-90.044430","29.918410"],["-90.044343","29.918540"],["-90.044255","29.918670"],["-90.044168","29.918800"],["-90.044080","29.918930"],["-90.044023","29.919020"],["-90.043965","29.919110"],["-90.043908","29.919200"],["-90.043850","29.919290"],["-90.043810","29.919340"],["-90.043725","29.919458"],["-90.043640","29.919575"],["-90.043555","29.919693"],["-90.043470","29.919810"],["-90.043390","29.919940"],["-90.043295","29.920085"],["-90.043200","29.920230"],["-90.043125","29.920345"],["-90.043050","29.920460"],["-90.042970","29.920580"],["-90.042950","29.920620"],["-90.042920","29.920660"],["-90.042830","29.920795"],["-90.042740","29.920930"],["-90.042690","29.921020"],["-90.042585","29.921185"],["-90.042480","29.921350"],["-90.042415","29.921455"],["-90.042350","29.921560"],["-90.042310","29.921610"],["-90.042210","29.921750"],["-90.042150","29.921840"],["-90.042055","29.921990"],["-90.041960","29.922140"],["-90.041900","29.922230"],["-90.041810","29.922360"],["-90.041705","29.922525"],["-90.041600","29.922690"],["-90.041550","29.922730"],["-90.041580","29.922780"],["-90.041590","29.922790"],["-90.041590","29.922800"],["-90.041600","29.922950"],["-90.041600","29.922970"],["-90.041610","29.922980"],["-90.041620","29.923010"],["-90.041630","29.923020"],["-90.041660","29.923060"],["-90.041730","29.923130"],["-90.041790","29.923180"],["-90.041820","29.923210"],["-90.041840","29.923220"],["-90.041870","29.923250"],["-90.041900","29.923280"],["-90.041930","29.923300"],["-90.041980","29.923350"],["-90.042040","29.923430"],["-90.042070","29.923470"],["-90.042080","29.923530"],["-90.042090","29.923640"],["-90.042100","29.923680"],["-90.042100","29.923810"],["-90.042100","29.923990"],["-90.042093","29.924120"],["-90.042085","29.924250"],["-90.042078","29.924380"],["-90.042070","29.924510"],["-90.042055","29.924695"],["-90.042040","29.924880"],["-90.041925","29.924963"],["-90.041948","29.925088"],["-90.041970","29.925214"],["-90.041993","29.925339"],["-90.042016","29.925465"],["-90.042007","29.925618"],["-90.041998","29.925771"],["-90.041988","29.925924"],["-90.041979","29.926077"],["-90.041970","29.926230"],["-90.041961","29.926383"],["-90.041952","29.926537"],["-90.041943","29.926690"],["-90.041934","29.926843"],["-90.041925","29.926996"],["-90.041916","29.927149"],["-90.041907","29.927302"],["-90.041898","29.927455"],["-90.041889","29.927608"],["-90.041880","29.927762"],["-90.041871","29.927915"],["-90.041862","29.928068"],["-90.041853","29.928221"],["-90.041844","29.928374"],["-90.041835","29.928527"],["-90.041826","29.928680"],["-90.041816","29.928833"],["-90.041807","29.928987"],["-90.041798","29.929140"],["-90.041789","29.929293"],["-90.041780","29.929446"],["-90.041771","29.929599"],["-90.041762","29.929752"],["-90.041753","29.929905"],["-90.041744","29.930059"],["-90.041735","29.930212"],["-90.041726","29.930365"],["-90.041626","29.930489"],["-90.041690","29.930500"],["-90.041680","29.930560"],["-90.041470","29.930570"],["-90.041260","29.930580"],["-90.041130","29.930578"],["-90.041000","29.930575"],["-90.040870","29.930573"],["-90.040740","29.930570"],["-90.040600","29.930565"],["-90.040460","29.930560"],["-90.040320","29.930555"],["-90.040180","29.930550"],["-90.039975","29.930540"],["-90.039770","29.930530"],["-90.039790","29.930380"],["-90.039894","29.930389"],["-90.039790","29.930380"],["-90.039770","29.930530"],["-90.039602","29.930518"],["-90.039435","29.930505"],["-90.039267","29.930493"],["-90.039100","29.930480"],["-90.038910","29.930470"],["-90.038870","29.930470"],["-90.038810","29.930470"],["-90.038750","29.930470"],["-90.038740","29.930470"],["-90.038720","29.930470"],["-90.038660","29.930460"],["-90.038650","29.930460"],["-90.038640","29.930460"],["-90.038600","29.930460"],["-90.038500","29.930450"],["-90.038420","29.930450"],["-90.038390","29.930450"],["-90.038190","29.930440"],["-90.038000","29.930440"],["-90.037920","29.930440"],["-90.037890","29.930430"],["-90.037780","29.930420"],["-90.037660","29.930415"],["-90.037540","29.930410"],["-90.037380","29.930400"],["-90.037386","29.930382"],["-90.037380","29.930400"],["-90.037270","29.930400"],["-90.037095","29.930390"],["-90.036920","29.930380"],["-90.036772","29.930370"],["-90.036625","29.930360"],["-90.036477","29.930350"],["-90.036330","29.930340"],["-90.036250","29.930340"],["-90.036050","29.930330"],["-90.035867","29.930320"],["-90.035685","29.930310"],["-90.035502","29.930300"],["-90.035320","29.930290"],["-90.035190","29.930285"],["-90.035060","29.930280"],["-90.034945","29.930270"],["-90.034830","29.930260"],["-90.034730","29.930250"],["-90.034515","29.930220"],["-90.034300","29.930190"],["-90.034160","29.930170"],["-90.033950","29.930120"],["-90.033856","29.930039"],["-90.033675","29.929983"],["-90.033494","29.929928"],["-90.033386","29.929876"],["-90.033278","29.929824"],["-90.033170","29.929773"],["-90.033062","29.929721"],["-90.032971","29.929659"],["-90.032880","29.929596"],["-90.032788","29.929534"],["-90.032697","29.929472"],["-90.032559","29.929358"],["-90.032421","29.929244"],["-90.032330","29.929330"],["-90.032239","29.929416"],["-90.032180","29.929553"],["-90.032188","29.929655"],["-90.032197","29.929756"],["-90.032206","29.929857"],["-90.032214","29.929958"],["-90.032217","29.930128"],["-90.032220","29.930297"],["-90.032210","29.930452"],["-90.032201","29.930608"],["-90.032192","29.930763"],["-90.032182","29.930918"],["-90.032173","29.931073"],["-90.032163","29.931228"],["-90.032154","29.931383"],["-90.032145","29.931539"],["-90.032130","29.931701"],["-90.032115","29.931864"],["-90.032100","29.932027"],["-90.032086","29.932189"],["-90.031961","29.932183"],["-90.031836","29.932177"],["-90.031710","29.932171"],["-90.031585","29.932165"],["-90.031460","29.932159"],["-90.031335","29.932153"],["-90.031210","29.932147"],["-90.031085","29.932141"],["-90.030957","29.932132"],["-90.030828","29.932124"],["-90.030699","29.932116"],["-90.030571","29.932108"],["-90.030442","29.932100"],["-90.030314","29.932092"],["-90.030185","29.932083"],["-90.030057","29.932075"],["-90.029888","29.932026"],["-90.029719","29.931978"],["-90.029617","29.931936"],["-90.029515","29.931894"],["-90.029413","29.931852"],["-90.029311","29.931810"],["-90.029168","29.931751"],["-90.029026","29.931691"],["-90.028884","29.931631"],["-90.028741","29.931572"],["-90.028605","29.931513"],["-90.028468","29.931454"],["-90.028331","29.931396"],["-90.028194","29.931337"],["-90.028062","29.931285"],["-90.027930","29.931232"],["-90.027798","29.931180"],["-90.027666","29.931128"],["-90.027542","29.931081"],["-90.027535","29.931217"],["-90.027528","29.931352"],["-90.027520","29.931488"],["-90.027513","29.931623"],["-90.027502","29.931806"],["-90.027491","29.931990"],["-90.027481","29.932173"],["-90.027470","29.932356"],["-90.027459","29.932540"],["-90.027449","29.932723"],["-90.027438","29.932906"],["-90.027427","29.933090"],["-90.027451","29.933229"],["-90.027399","29.933256"],["-90.027455","29.933333"],["-90.027466","29.933402"],["-90.027522","29.933489"],["-90.027578","29.933576"],["-90.027634","29.933663"],["-90.027690","29.933750"],["-90.027730","29.933830"],["-90.027750","29.933860"],["-90.027770","29.933910"],["-90.027790","29.933990"],["-90.027800","29.934050"],["-90.027810","29.934120"],["-90.027810","29.934280"],["-90.027810","29.934290"],["-90.027800","29.934360"],["-90.027800","29.934480"],["-90.027790","29.934560"],["-90.027783","29.934713"],["-90.027775","29.934865"],["-90.027768","29.935018"],["-90.027760","29.935170"],["-90.027753","29.935285"],["-90.027745","29.935400"],["-90.027738","29.935515"],["-90.027730","29.935630"],["-90.027723","29.935745"],["-90.027715","29.935860"],["-90.027708","29.935975"],["-90.027700","29.936090"],["-90.027690","29.936210"],["-90.027634","29.936355"],["-90.027680","29.936360"],["-90.027673","29.936479"],["-90.027665","29.936598"],["-90.027658","29.936716"],["-90.027650","29.936835"],["-90.027643","29.936954"],["-90.027635","29.937073"],["-90.027628","29.937191"],["-90.027620","29.937310"],["-90.027614","29.937425"],["-90.027608","29.937540"],["-90.027601","29.937655"],["-90.027595","29.937770"],["-90.027589","29.937885"],["-90.027583","29.938000"],["-90.027576","29.938115"],["-90.027570","29.938230"],["-90.027450","29.938230"],["-90.027458","29.938150"],["-90.027450","29.938230"],["-90.027570","29.938230"],["-90.027561","29.938358"],["-90.027553","29.938485"],["-90.027544","29.938613"],["-90.027535","29.938740"],["-90.027526","29.938868"],["-90.027518","29.938995"],["-90.027509","29.939123"],["-90.027500","29.939250"],["-90.027493","29.939368"],["-90.027485","29.939485"],["-90.027478","29.939603"],["-90.027470","29.939720"],["-90.027463","29.939838"],["-90.027455","29.939955"],["-90.027448","29.940073"],["-90.027440","29.940190"],["-90.027387","29.940187"],["-90.027440","29.940190"],["-90.027430","29.940270"],["-90.027423","29.940398"],["-90.027415","29.940525"],["-90.027408","29.940653"],["-90.027400","29.940780"],["-90.027393","29.940908"],["-90.027385","29.941035"],["-90.027378","29.941163"],["-90.027370","29.941290"],["-90.027358","29.941468"],["-90.027345","29.941645"],["-90.027333","29.941823"],["-90.027320","29.942000"],["-90.027262","29.941999"],["-90.027320","29.942000"],["-90.027313","29.942108"],["-90.027305","29.942215"],["-90.027298","29.942323"],["-90.027290","29.942430"],["-90.027170","29.942385"],["-90.027050","29.942340"],["-90.026930","29.942295"],["-90.026810","29.942250"],["-90.026690","29.942205"],["-90.026570","29.942160"],["-90.026450","29.942115"],["-90.026330","29.942070"],["-90.026167","29.942003"],["-90.026005","29.941935"],["-90.025842","29.941868"],["-90.025680","29.941800"],["-90.025567","29.941753"],["-90.025455","29.941705"],["-90.025342","29.941658"],["-90.025180","29.941590"],["-90.025227","29.941503"],["-90.025180","29.941590"],["-90.025070","29.941550"],["-90.024990","29.941530"],["-90.024910","29.941530"],["-90.024850","29.941500"],["-90.024737","29.941455"],["-90.024625","29.941410"],["-90.024512","29.941365"],["-90.024400","29.941320"],["-90.024260","29.941260"],["-90.024130","29.941203"],["-90.024000","29.941145"],["-90.023870","29.941088"],["-90.023740","29.941030"],["-90.023635","29.940985"],["-90.023530","29.940940"],["-90.023420","29.940891"],["-90.023310","29.940843"],["-90.023200","29.940794"],["-90.023090","29.940745"],["-90.022980","29.940696"],["-90.022870","29.940648"],["-90.022760","29.940599"],["-90.022650","29.940550"],["-90.022692","29.940487"],["-90.022650","29.940550"],["-90.022520","29.940490"],["-90.022379","29.940429"],["-90.022237","29.940368"],["-90.022096","29.940306"],["-90.021955","29.940245"],["-90.021814","29.940184"],["-90.021672","29.940123"],["-90.021531","29.940061"],["-90.021390","29.940000"],["-90.021257","29.939941"],["-90.021125","29.939883"],["-90.020992","29.939824"],["-90.020860","29.939765"],["-90.020727","29.939706"],["-90.020595","29.939648"],["-90.020462","29.939589"],["-90.020330","29.939530"],["-90.020384","29.939442"],["-90.020330","29.939530"],["-90.020260","29.939500"],["-90.020070","29.939418"],["-90.019880","29.939335"],["-90.019690","29.939253"],["-90.019500","29.939170"],["-90.019305","29.939080"],["-90.019110","29.938990"],["-90.018990","29.938939"],["-90.018870","29.938888"],["-90.018750","29.938836"],["-90.018630","29.938785"],["-90.018510","29.938734"],["-90.018390","29.938683"],["-90.018270","29.938631"],["-90.018150","29.938580"],["-90.018025","29.938520"],["-90.017900","29.938460"],["-90.017900","29.938350"],["-90.017983","29.938353"],["-90.017900","29.938350"],["-90.017900","29.938460"],["-90.017709","29.938376"],["-90.017517","29.938293"],["-90.017326","29.938209"],["-90.017135","29.938125"],["-90.016944","29.938041"],["-90.016752","29.937958"],["-90.016561","29.937874"],["-90.016370","29.937790"],["-90.016380","29.937670"],["-90.016476","29.937674"],["-90.016380","29.937670"],["-90.016370","29.937790"],["-90.016259","29.937741"],["-90.016149","29.937691"],["-90.016038","29.937642"],["-90.015927","29.937593"],["-90.015817","29.937543"],["-90.015706","29.937494"],["-90.015596","29.937444"],["-90.015485","29.937395"],["-90.015374","29.937346"],["-90.015264","29.937296"],["-90.015153","29.937247"],["-90.015042","29.937198"],["-90.014932","29.937148"],["-90.014821","29.937099"],["-90.014711","29.937049"],["-90.014600","29.937000"],["-90.014600","29.936890"],["-90.014689","29.936898"],["-90.014600","29.936890"],["-90.014600","29.937000"],["-90.014462","29.936940"],["-90.014325","29.936880"],["-90.014187","29.936820"],["-90.014050","29.936760"],["-90.013912","29.936700"],["-90.013775","29.936640"],["-90.013637","29.936580"],["-90.013500","29.936520"],["-90.013430","29.936500"],["-90.013310","29.936445"],["-90.013190","29.936390"],["-90.013070","29.936335"],["-90.012950","29.936280"],["-90.013050","29.936120"],["-90.013130","29.935960"],["-90.013190","29.935810"],["-90.013230","29.935700"],["-90.013250","29.935620"],["-90.013260","29.935590"],["-90.013285","29.935470"],["-90.013310","29.935350"],["-90.013335","29.935175"],["-90.013360","29.935000"],["-90.013365","29.934890"],["-90.013370","29.934780"],["-90.013379","29.934645"],["-90.013388","29.934510"],["-90.013396","29.934375"],["-90.013405","29.934240"],["-90.013414","29.934105"],["-90.013423","29.933970"],["-90.013431","29.933835"],["-90.013440","29.933700"],["-90.013440","29.933595"],["-90.013440","29.933490"],["-90.013519","29.933487"],["-90.013440","29.933490"],["-90.013440","29.933410"],["-90.013440","29.933270"],["-90.013450","29.933153"],["-90.013460","29.933035"],["-90.013470","29.932918"],["-90.013480","29.932800"],["-90.013490","29.932683"],["-90.013500","29.932565"],["-90.013510","29.932448"],["-90.013520","29.932330"],["-90.013530","29.932230"],["-90.013539","29.932078"],["-90.013549","29.931925"],["-90.013558","29.931773"],["-90.013568","29.931620"],["-90.013577","29.931468"],["-90.013586","29.931315"],["-90.013598","29.931183"],["-90.013611","29.931050"],["-90.013623","29.930918"],["-90.013635","29.930786"],["-90.013647","29.930654"],["-90.013661","29.930548"],["-90.013675","29.930441"],["-90.013689","29.930335"],["-90.013702","29.930229"],["-90.013724","29.930121"],["-90.013745","29.930014"],["-90.013767","29.929906"],["-90.013788","29.929799"],["-90.013781","29.929696"],["-90.013774","29.929594"],["-90.013767","29.929491"],["-90.013760","29.929388"],["-90.013753","29.929285"],["-90.013746","29.929183"],["-90.013739","29.929080"],["-90.013732","29.928977"],["-90.013739","29.928873"],["-90.013746","29.928770"],["-90.013753","29.928666"],["-90.013761","29.928562"],["-90.013768","29.928458"],["-90.013775","29.928355"],["-90.013782","29.928251"],["-90.013789","29.928147"],["-90.013796","29.928044"],["-90.013803","29.927940"],["-90.013810","29.927836"],["-90.013817","29.927732"],["-90.013824","29.927629"],["-90.013831","29.927525"],["-90.013839","29.927421"],["-90.013846","29.927317"],["-90.013853","29.927214"],["-90.013860","29.927110"],["-90.013867","29.927006"],["-90.013874","29.926903"],["-90.013881","29.926799"],["-90.013888","29.926695"],["-90.013895","29.926591"],["-90.013902","29.926488"],["-90.013909","29.926384"],["-90.013916","29.926280"],["-90.013924","29.926176"],["-90.013931","29.926073"],["-90.013938","29.925969"],["-90.013945","29.925865"],["-90.013952","29.925762"],["-90.013959","29.925658"],["-90.013966","29.925554"],["-90.013973","29.925450"],["-90.013980","29.925347"],["-90.013987","29.925243"],["-90.013994","29.925139"],["-90.014001","29.925035"],["-90.014009","29.924932"],["-90.014016","29.924828"],["-90.014023","29.924724"],["-90.014030","29.924621"],["-90.014037","29.924517"],["-90.014044","29.924413"],["-90.014051","29.924309"],["-90.014058","29.924206"],["-90.014065","29.924102"],["-90.014072","29.923998"],["-90.014079","29.923894"],["-90.014086","29.923791"],["-90.014094","29.923687"],["-90.014101","29.923583"],["-90.014108","29.923480"],["-90.014115","29.923376"],["-90.014122","29.923272"],["-90.014129","29.923168"],["-90.014136","29.923065"],["-90.014143","29.922961"],["-90.014150","29.922857"],["-90.014157","29.922753"],["-90.014164","29.922650"],["-90.014172","29.922546"],["-90.014195","29.922450"],["-90.014218","29.922354"],["-90.014241","29.922259"],["-90.014264","29.922163"],["-90.014220","29.922150"],["-90.014240","29.921960"],["-90.014250","29.921870"],["-90.014250","29.921800"],["-90.014300","29.921635"],["-90.014350","29.921470"],["-90.014420","29.921340"],["-90.014500","29.921210"],["-90.014565","29.921115"],["-90.014630","29.921020"],["-90.014700","29.920940"],["-90.014760","29.920890"],["-90.014817","29.920931"],["-90.014760","29.920890"],["-90.014770","29.920870"],["-90.014800","29.920850"],["-90.014870","29.920780"],["-90.014880","29.920770"],["-90.014980","29.920690"],["-90.015065","29.920625"],["-90.015150","29.920560"],["-90.015270","29.920480"],["-90.015435","29.920395"],["-90.015600","29.920310"],["-90.015680","29.920260"],["-90.015830","29.920200"],["-90.015840","29.920190"],["-90.015975","29.920120"],["-90.016110","29.920050"],["-90.016230","29.919990"],["-90.016370","29.919910"],["-90.016440","29.919870"],["-90.016510","29.919830"],["-90.016570","29.919780"],["-90.016640","29.919740"],["-90.016700","29.919690"],["-90.016840","29.919560"],["-90.016910","29.919490"],["-90.016990","29.919520"],["-90.017060","29.919500"],["-90.017180","29.919470"],["-90.017250","29.919450"],["-90.017330","29.919420"],["-90.017410","29.919370"],["-90.017470","29.919310"],["-90.017500","29.919290"],["-90.017520","29.919250"],["-90.017580","29.919210"],["-90.017585","29.919030"],["-90.017590","29.918850"],["-90.017598","29.918725"],["-90.017605","29.918600"],["-90.017613","29.918475"],["-90.017620","29.918350"],["-90.017735","29.918355"],["-90.017850","29.918360"],["-90.018060","29.918370"],["-90.018235","29.918380"],["-90.018410","29.918390"],["-90.018440","29.918390"],["-90.018520","29.918390"],["-90.018702","29.918400"],["-90.018885","29.918410"],["-90.019067","29.918420"],["-90.019250","29.918430"],["-90.019470","29.918440"],["-90.019540","29.918440"],["-90.019590","29.918430"],["-90.019787","29.918440"],["-90.019985","29.918450"],["-90.020182","29.918460"],["-90.020380","29.918523"],["-90.020544","29.918477"],["-90.020711","29.918484"],["-90.020877","29.918492"],["-90.021043","29.918499"],["-90.021209","29.918507"],["-90.021376","29.918515"],["-90.021542","29.918522"],["-90.021708","29.918530"],["-90.021875","29.918537"],["-90.022007","29.918558"],["-90.022140","29.918579"],["-90.022273","29.918600"],["-90.022406","29.918621"],["-90.022419","29.918720"],["-90.022433","29.918820"],["-90.022516","29.918737"],["-90.022599","29.918653"],["-90.022632","29.918560"],["-90.022665","29.918467"],["-90.022698","29.918374"],["-90.022731","29.918281"],["-90.022818","29.918132"],["-90.022905","29.917983"],["-90.022987","29.917917"],["-90.023070","29.917851"],["-90.023152","29.917785"],["-90.023235","29.917718"],["-90.023107","29.917618"],["-90.022979","29.917518"],["-90.022852","29.917418"],["-90.022724","29.917318"],["-90.022596","29.917218"],["-90.022469","29.917118"],["-90.022341","29.917017"],["-90.022213","29.916917"],["-90.022122","29.916820"],["-90.022031","29.916722"],["-90.021940","29.916649"],["-90.021850","29.916575"],["-90.021760","29.916501"],["-90.021669","29.916428"],["-90.021579","29.916354"],["-90.021489","29.916281"],["-90.021398","29.916207"],["-90.021308","29.916134"],["-90.021218","29.916060"],["-90.021127","29.915987"],["-90.021037","29.915913"],["-90.020947","29.915840"],["-90.020856","29.915766"],["-90.020766","29.915693"],["-90.020675","29.915619"],["-90.020585","29.915546"],["-90.020495","29.915472"],["-90.020404","29.915399"],["-90.020314","29.915325"],["-90.020224","29.915252"],["-90.020133","29.915178"],["-90.020043","29.915105"],["-90.019953","29.915031"],["-90.019862","29.914958"],["-90.019772","29.914884"],["-90.019682","29.914810"],["-90.019591","29.914737"],["-90.019501","29.914663"],["-90.019410","29.914590"],["-90.019320","29.914516"],["-90.019230","29.914443"],["-90.019139","29.914369"],["-90.019008","29.914269"],["-90.018877","29.914169"],["-90.018745","29.914069"],["-90.018614","29.913969"],["-90.018441","29.913880"],["-90.018269","29.913791"],["-90.018067","29.913723"],["-90.017954","29.913623"],["-90.017841","29.913523"],["-90.017851","29.913405"],["-90.017860","29.913287"],["-90.017870","29.913169"],["-90.017880","29.913052"],["-90.017889","29.912934"],["-90.017899","29.912816"],["-90.017908","29.912698"],["-90.017918","29.912580"],["-90.017925","29.912470"],["-90.017933","29.912360"],["-90.017940","29.912250"],["-90.017950","29.912150"],["-90.017970","29.912090"],["-90.017970","29.912000"],["-90.017975","29.911865"],["-90.017980","29.911730"],["-90.018080","29.911740"],["-90.018082","29.911727"],["-90.018080","29.911740"],["-90.017980","29.911730"],["-90.017990","29.911615"],["-90.018000","29.911500"],["-90.018010","29.911365"],["-90.018020","29.911230"],["-90.018033","29.911095"],["-90.018045","29.910960"],["-90.018058","29.910825"],["-90.018070","29.910690"],["-90.018080","29.910580"],["-90.018090","29.910470"],["-90.018090","29.910370"],["-90.018100","29.910280"],["-90.018110","29.910100"],["-90.018120","29.909920"],["-90.018130","29.909760"],["-90.018080","29.909710"],["-90.018080","29.909610"],["-90.018100","29.909470"],["-90.018110","29.909290"],["-90.018120","29.909150"],["-90.018130","29.909010"],["-90.018130","29.908840"],["-90.018140","29.908700"],["-90.018180","29.908680"],["-90.018190","29.908660"],["-90.018200","29.908650"],["-90.018210","29.908630"],["-90.018210","29.908600"],["-90.018250","29.908599"],["-90.018210","29.908600"],["-90.018215","29.908480"],["-90.018220","29.908360"],["-90.018225","29.908240"],["-90.018230","29.908120"],["-90.018238","29.908020"],["-90.018245","29.907920"],["-90.018253","29.907820"],["-90.018260","29.907720"],["-90.018270","29.907530"],["-90.018160","29.907480"],["-90.018030","29.907450"],["-90.017930","29.907390"],["-90.017780","29.907310"],["-90.017808","29.907276"],["-90.017780","29.907310"],["-90.017700","29.907260"],["-90.017690","29.907260"],["-90.017582","29.907190"],["-90.017475","29.907120"],["-90.017367","29.907050"],["-90.017260","29.906980"],["-90.017105","29.906880"],["-90.016950","29.906780"],["-90.016855","29.906710"],["-90.016760","29.906640"],["-90.016635","29.906535"],["-90.016510","29.906430"],["-90.016390","29.906310"],["-90.016240","29.906170"],["-90.016155","29.906095"],["-90.016070","29.906020"],["-90.015950","29.905930"],["-90.015940","29.905920"],["-90.015845","29.905845"],["-90.015750","29.905770"],["-90.015644","29.905703"],["-90.015537","29.905635"],["-90.015431","29.905568"],["-90.015325","29.905500"],["-90.015219","29.905433"],["-90.015112","29.905365"],["-90.015006","29.905298"],["-90.014900","29.905230"],["-90.014787","29.905158"],["-90.014675","29.905085"],["-90.014562","29.905013"],["-90.014450","29.904940"],["-90.014330","29.904860"],["-90.014210","29.904780"],["-90.014090","29.904700"],["-90.013930","29.904580"],["-90.013900","29.904560"],["-90.013805","29.904490"],["-90.013710","29.904420"],["-90.013580","29.904300"],["-90.013480","29.904210"],["-90.013380","29.904120"],["-90.013300","29.904043"],["-90.013220","29.903965"],["-90.013140","29.903888"],["-90.013060","29.903810"],["-90.012920","29.903675"],["-90.012780","29.903540"],["-90.012670","29.903435"],["-90.012560","29.903330"],["-90.012490","29.903260"],["-90.012414","29.903188"],["-90.012337","29.903115"],["-90.012261","29.903043"],["-90.012185","29.902970"],["-90.012109","29.902898"],["-90.012032","29.902825"],["-90.011956","29.902753"],["-90.011880","29.902680"],["-90.011800","29.902610"],["-90.011720","29.902540"],["-90.011575","29.902410"],["-90.011430","29.902280"],["-90.011340","29.902190"],["-90.011240","29.902110"],["-90.011130","29.902020"],["-90.010990","29.901920"],["-90.010900","29.901860"],["-90.010780","29.901790"],["-90.010770","29.901790"],["-90.010670","29.901730"],["-90.010570","29.901680"],["-90.010430","29.901610"],["-90.010290","29.901540"],["-90.010110","29.901470"],["-90.010050","29.901450"],["-90.009980","29.901420"],["-90.009820","29.901380"],["-90.009680","29.901340"],["-90.009520","29.901305"],["-90.009360","29.901270"],["-90.009220","29.901250"],["-90.009031","29.901237"],["-90.008841","29.901225"],["-90.008652","29.901212"],["-90.008463","29.901199"],["-90.008374","29.901096"],["-90.008290","29.901199"],["-90.008085","29.901189"],["-90.007881","29.901179"],["-90.007676","29.901169"],["-90.007472","29.901159"],["-90.007267","29.901149"],["-90.007063","29.901139"],["-90.006858","29.901130"],["-90.006654","29.901120"],["-90.006536","29.901116"],["-90.006419","29.901112"],["-90.006302","29.901107"],["-90.006184","29.901103"],["-90.006067","29.901099"],["-90.005950","29.901095"],["-90.005832","29.901091"],["-90.005715","29.901087"],["-90.005598","29.901083"],["-90.005480","29.901079"],["-90.005363","29.901075"],["-90.005246","29.901071"],["-90.005128","29.901067"],["-90.005011","29.901063"],["-90.004893","29.901059"],["-90.004776","29.901055"],["-90.004664","29.901049"],["-90.004552","29.901043"],["-90.004440","29.901038"],["-90.004328","29.901032"],["-90.004216","29.901027"],["-90.004104","29.901021"],["-90.003992","29.901016"],["-90.003880","29.901010"],["-90.003768","29.901005"],["-90.003656","29.900999"],["-90.003544","29.900994"],["-90.003432","29.900988"],["-90.003320","29.900983"],["-90.003208","29.900977"],["-90.003096","29.900972"],["-90.002984","29.900966"],["-90.002837","29.900957"],["-90.002689","29.900948"],["-90.002542","29.900938"],["-90.002394","29.900929"],["-90.002244","29.900899"],["-90.002094","29.900869"],["-90.001933","29.900852"],["-90.001772","29.900836"],["-90.001611","29.900820"],["-90.001450","29.900804"],["-90.001290","29.900788"],["-90.001129","29.900772"],["-90.000968","29.900756"],["-90.000807","29.900740"],["-90.000650","29.900776"],["-90.000493","29.900813"],["-90.000366","29.900807"],["-90.000238","29.900801"],["-90.000111","29.900795"],["-89.999984","29.900789"],["-89.999857","29.900784"],["-89.999730","29.900778"],["-89.999603","29.900772"],["-89.999476","29.900766"],["-89.999349","29.900760"],["-89.999222","29.900754"],["-89.999094","29.900749"],["-89.998967","29.900743"],["-89.998840","29.900737"],["-89.998713","29.900731"],["-89.998586","29.900725"],["-89.998459","29.900719"],["-89.998329","29.900719"],["-89.998199","29.900719"],["-89.998069","29.900719"],["-89.997939","29.900719"],["-89.997743","29.900747"],["-89.997547","29.900775"],["-89.997420","29.900769"],["-89.997294","29.900763"],["-89.997112","29.900842"],["-89.996930","29.900920"],["-89.996830","29.900950"],["-89.996710","29.901010"],["-89.996530","29.901090"],["-89.996390","29.901170"],["-89.996250","29.901250"],["-89.996080","29.901360"],["-89.995960","29.901440"],["-89.995920","29.901470"],["-89.995750","29.901590"],["-89.995663","29.901655"],["-89.995575","29.901720"],["-89.995488","29.901785"],["-89.995400","29.901850"],["-89.995351","29.901799"],["-89.995400","29.901850"],["-89.995250","29.901961"],["-89.995100","29.902073"],["-89.994950","29.902184"],["-89.994800","29.902295"],["-89.994650","29.902406"],["-89.994500","29.902518"],["-89.994350","29.902629"],["-89.994200","29.902740"],["-89.994100","29.902815"],["-89.994000","29.902890"],["-89.993900","29.902965"],["-89.993741","29.902986"],["-89.993800","29.903050"],["-89.993686","29.903133"],["-89.993573","29.903215"],["-89.993459","29.903298"],["-89.993345","29.903380"],["-89.993231","29.903463"],["-89.993118","29.903545"],["-89.993004","29.903628"],["-89.992890","29.903710"],["-89.992770","29.903805"],["-89.992650","29.903900"],["-89.992550","29.903980"],["-89.992450","29.904060"],["-89.992350","29.904140"],["-89.992250","29.904220"],["-89.992153","29.904293"],["-89.992055","29.904365"],["-89.991958","29.904438"],["-89.991860","29.904510"],["-89.991690","29.904620"],["-89.991800","29.904730"],["-89.991813","29.904860"]]}]}},{"type":"Feature","properties":{"route_id":"11","agency_id":"1","route_short_name":"11","route_long_name":"Magazine","route_type":"3","route_color":"#9b5aa5","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.112860","29.920448"],["-90.110135","29.920300"],["-90.108137","29.920233"],["-90.106221","29.920370"],["-90.103947","29.920540"],["-90.099229","29.920913"],["-90.096921","29.921096"],["-90.095046","29.921232"],["-90.092624","29.921767"],["-90.090792","29.922276"],["-90.089011","29.922881"],["-90.084712","29.924895"],["-90.082509","29.926115"],["-90.080893","29.927043"],["-90.079257","29.927944"],["-90.076948","29.929351"],["-90.074681","29.930880"],["-90.074131","29.933051"],["-90.073664","29.934604"],["-90.073082","29.936457"],["-90.072502","29.938413"],["-90.071981","29.940240"],["-90.071479","29.941599"],["-90.070872","29.943982"],["-90.070436","29.945525"],["-90.069999","29.946987"],["-90.069674","29.948061"],["-90.067354","29.951803"],["-90.075384","29.950864"],["-90.074706","29.954333"],["-90.071649","29.949982"],["-90.072919","29.950269"],["-90.123476","29.917490"],["-90.120426","29.916765"],["-90.118538","29.916365"],["-90.101676","29.920694"],["-90.086500","29.923888"],["-90.070211","29.953721"],["-90.073384","29.955849"],["-90.127478","29.916532"],["-90.115623","29.918397"]]},{"type":"LineString","coordinates":[["-90.127478","29.916532"],["-90.127490","29.916510"],["-90.127560","29.916530"],["-90.127480","29.916690"],["-90.127440","29.916760"],["-90.127360","29.916930"],["-90.127280","29.917100"],["-90.127200","29.917270"],["-90.127120","29.917440"],["-90.127090","29.917510"],["-90.127030","29.917636"],["-90.126970","29.917763"],["-90.126910","29.917889"],["-90.126850","29.918015"],["-90.126790","29.918141"],["-90.126730","29.918268"],["-90.126670","29.918394"],["-90.126610","29.918520"],["-90.126540","29.918650"],["-90.126392","29.918593"],["-90.126245","29.918535"],["-90.126097","29.918478"],["-90.125950","29.918420"],["-90.125802","29.918363"],["-90.125655","29.918305"],["-90.125507","29.918248"],["-90.125360","29.918190"],["-90.125220","29.918135"],["-90.125080","29.918080"],["-90.124937","29.918028"],["-90.124795","29.917975"],["-90.124652","29.917923"],["-90.124510","29.917870"],["-90.124340","29.917818"],["-90.124170","29.917765"],["-90.124000","29.917713"],["-90.123830","29.917660"],["-90.123640","29.917600"],["-90.123450","29.917540"],["-90.123476","29.917490"],["-90.123450","29.917540"],["-90.123320","29.917510"],["-90.123159","29.917464"],["-90.122997","29.917418"],["-90.122836","29.917371"],["-90.122675","29.917325"],["-90.122514","29.917279"],["-90.122352","29.917233"],["-90.122191","29.917186"],["-90.122030","29.917140"],["-90.121920","29.917119"],["-90.121810","29.917098"],["-90.121700","29.917076"],["-90.121590","29.917055"],["-90.121480","29.917034"],["-90.121370","29.917013"],["-90.121260","29.916991"],["-90.121150","29.916970"],["-90.120965","29.916928"],["-90.120780","29.916885"],["-90.120595","29.916843"],["-90.120410","29.916800"],["-90.120426","29.916765"],["-90.120410","29.916800"],["-90.120220","29.916760"],["-90.120099","29.916736"],["-90.119977","29.916713"],["-90.119856","29.916689"],["-90.119735","29.916665"],["-90.119614","29.916641"],["-90.119492","29.916618"],["-90.119371","29.916594"],["-90.119250","29.916570"],["-90.119067","29.916538"],["-90.118885","29.916505"],["-90.118719","29.916478"],["-90.118554","29.916452"],["-90.118538","29.916365"],["-90.118520","29.916440"],["-90.118360","29.916410"],["-90.118238","29.916413"],["-90.118115","29.916415"],["-90.117993","29.916418"],["-90.117870","29.916420"],["-90.117655","29.916425"],["-90.117440","29.916430"],["-90.117310","29.916430"],["-90.117175","29.916435"],["-90.117040","29.916440"],["-90.116900","29.916443"],["-90.116760","29.916445"],["-90.116620","29.916448"],["-90.116480","29.916450"],["-90.116345","29.916450"],["-90.116210","29.916450"],["-90.116160","29.916590"],["-90.116110","29.916730"],["-90.116075","29.916895"],["-90.116040","29.917060"],["-90.115987","29.917239"],["-90.115934","29.917419"],["-90.115881","29.917598"],["-90.115828","29.917777"],["-90.115797","29.917932"],["-90.115766","29.918086"],["-90.115735","29.918241"],["-90.115705","29.918395"],["-90.115623","29.918397"],["-90.115651","29.918514"],["-90.115618","29.918645"],["-90.115584","29.918777"],["-90.115550","29.918908"],["-90.115517","29.919039"],["-90.115483","29.919170"],["-90.115449","29.919301"],["-90.115415","29.919433"],["-90.115382","29.919564"],["-90.115348","29.919695"],["-90.115314","29.919826"],["-90.115281","29.919958"],["-90.115247","29.920089"],["-90.115213","29.920220"],["-90.115179","29.920351"],["-90.115146","29.920482"],["-90.115112","29.920614"],["-90.115032","29.920737"],["-90.114951","29.920860"],["-90.114825","29.920839"],["-90.114700","29.920818"],["-90.114574","29.920798"],["-90.114448","29.920777"],["-90.114322","29.920756"],["-90.114196","29.920735"],["-90.114071","29.920714"],["-90.113945","29.920693"],["-90.113819","29.920673"],["-90.113693","29.920652"],["-90.113567","29.920631"],["-90.113442","29.920610"],["-90.113316","29.920589"],["-90.113190","29.920569"],["-90.113064","29.920548"],["-90.112939","29.920527"],["-90.112860","29.920448"],["-90.112748","29.920504"],["-90.112633","29.920495"],["-90.112518","29.920487"],["-90.112403","29.920479"],["-90.112288","29.920471"],["-90.112172","29.920463"],["-90.112057","29.920454"],["-90.111942","29.920446"],["-90.111827","29.920438"],["-90.111691","29.920431"],["-90.111555","29.920425"],["-90.111419","29.920419"],["-90.111282","29.920413"],["-90.111146","29.920406"],["-90.111010","29.920400"],["-90.110790","29.920393"],["-90.110570","29.920385"],["-90.110350","29.920378"],["-90.110130","29.920370"],["-90.110135","29.920300"],["-90.110130","29.920370"],["-90.110050","29.920370"],["-90.109930","29.920366"],["-90.109810","29.920363"],["-90.109690","29.920359"],["-90.109570","29.920355"],["-90.109450","29.920351"],["-90.109330","29.920348"],["-90.109210","29.920344"],["-90.109090","29.920340"],["-90.108970","29.920335"],["-90.108850","29.920330"],["-90.108730","29.920325"],["-90.108610","29.920320"],["-90.108490","29.920315"],["-90.108370","29.920310"],["-90.108250","29.920305"],["-90.108130","29.920300"],["-90.108137","29.920233"],["-90.108130","29.920300"],["-90.107990","29.920290"],["-90.107795","29.920305"],["-90.107600","29.920320"],["-90.107405","29.920335"],["-90.107210","29.920350"],["-90.107088","29.920361"],["-90.106965","29.920373"],["-90.106843","29.920384"],["-90.106720","29.920395"],["-90.106598","29.920406"],["-90.106475","29.920418"],["-90.106353","29.920429"],["-90.106230","29.920440"],["-90.106221","29.920370"],["-90.106230","29.920440"],["-90.106110","29.920450"],["-90.105968","29.920460"],["-90.105825","29.920470"],["-90.105683","29.920480"],["-90.105540","29.920490"],["-90.105398","29.920500"],["-90.105255","29.920510"],["-90.105113","29.920520"],["-90.104970","29.920530"],["-90.104855","29.920539"],["-90.104740","29.920548"],["-90.104625","29.920556"],["-90.104510","29.920565"],["-90.104395","29.920574"],["-90.104280","29.920583"],["-90.104165","29.920591"],["-90.104050","29.920600"],["-90.103950","29.920610"],["-90.103947","29.920540"],["-90.103950","29.920610"],["-90.103840","29.920620"],["-90.103701","29.920631"],["-90.103563","29.920643"],["-90.103424","29.920654"],["-90.103285","29.920665"],["-90.103146","29.920676"],["-90.103008","29.920688"],["-90.102869","29.920699"],["-90.102730","29.920710"],["-90.102600","29.920720"],["-90.102470","29.920730"],["-90.102340","29.920740"],["-90.102210","29.920750"],["-90.102080","29.920760"],["-90.101950","29.920770"],["-90.101820","29.920780"],["-90.101690","29.920790"],["-90.101676","29.920694"],["-90.101690","29.920790"],["-90.101600","29.920790"],["-90.101480","29.920800"],["-90.101360","29.920810"],["-90.101280","29.920810"],["-90.101230","29.920810"],["-90.101103","29.920820"],["-90.100975","29.920830"],["-90.100848","29.920840"],["-90.100720","29.920850"],["-90.100593","29.920860"],["-90.100465","29.920870"],["-90.100338","29.920880"],["-90.100210","29.920890"],["-90.100020","29.920908"],["-90.099830","29.920925"],["-90.099640","29.920943"],["-90.099450","29.920960"],["-90.099240","29.920970"],["-90.099229","29.920913"],["-90.099240","29.920970"],["-90.099210","29.920970"],["-90.099120","29.920990"],["-90.098993","29.920999"],["-90.098865","29.921008"],["-90.098738","29.921016"],["-90.098610","29.921025"],["-90.098483","29.921034"],["-90.098355","29.921043"],["-90.098228","29.921051"],["-90.098100","29.921060"],["-90.097970","29.921070"],["-90.097840","29.921080"],["-90.097710","29.921090"],["-90.097580","29.921100"],["-90.097450","29.921110"],["-90.097320","29.921120"],["-90.097190","29.921130"],["-90.097060","29.921140"],["-90.096930","29.921150"],["-90.096921","29.921096"],["-90.096930","29.921150"],["-90.096850","29.921160"],["-90.096714","29.921170"],["-90.096578","29.921180"],["-90.096441","29.921190"],["-90.096305","29.921200"],["-90.096169","29.921210"],["-90.096033","29.921220"],["-90.095896","29.921230"],["-90.095760","29.921240"],["-90.095583","29.921253"],["-90.095405","29.921265"],["-90.095228","29.921278"],["-90.095050","29.921290"],["-90.095046","29.921232"],["-90.095050","29.921290"],["-90.094980","29.921300"],["-90.094765","29.921343"],["-90.094550","29.921385"],["-90.094335","29.921428"],["-90.094120","29.921470"],["-90.093905","29.921515"],["-90.093690","29.921560"],["-90.093475","29.921605"],["-90.093260","29.921650"],["-90.093105","29.921693"],["-90.092950","29.921735"],["-90.092795","29.921778"],["-90.092640","29.921820"],["-90.092624","29.921767"],["-90.092640","29.921820"],["-90.092580","29.921840"],["-90.092464","29.921875"],["-90.092348","29.921910"],["-90.092231","29.921945"],["-90.092115","29.921980"],["-90.091999","29.922015"],["-90.091883","29.922050"],["-90.091766","29.922085"],["-90.091650","29.922120"],["-90.091443","29.922178"],["-90.091235","29.922235"],["-90.091028","29.922293"],["-90.090820","29.922350"],["-90.090792","29.922276"],["-90.090820","29.922350"],["-90.090710","29.922380"],["-90.090550","29.922428"],["-90.090390","29.922475"],["-90.090230","29.922523"],["-90.090070","29.922570"],["-90.089941","29.922616"],["-90.089813","29.922663"],["-90.089684","29.922709"],["-90.089555","29.922755"],["-90.089426","29.922801"],["-90.089298","29.922848"],["-90.089169","29.922894"],["-90.089040","29.922940"],["-90.089011","29.922881"],["-90.089040","29.922940"],["-90.088960","29.922970"],["-90.088830","29.923020"],["-90.088695","29.923071"],["-90.088560","29.923123"],["-90.088425","29.923174"],["-90.088290","29.923225"],["-90.088155","29.923276"],["-90.088020","29.923328"],["-90.087885","29.923379"],["-90.087750","29.923430"],["-90.087550","29.923510"],["-90.087350","29.923590"],["-90.087250","29.923620"],["-90.087150","29.923668"],["-90.087050","29.923715"],["-90.086950","29.923763"],["-90.086850","29.923810"],["-90.086790","29.923840"],["-90.086665","29.923895"],["-90.086540","29.923950"],["-90.086500","29.923888"],["-90.086540","29.923950"],["-90.086470","29.923980"],["-90.086360","29.924035"],["-90.086250","29.924090"],["-90.086151","29.924146"],["-90.086053","29.924203"],["-90.085954","29.924259"],["-90.085855","29.924315"],["-90.085756","29.924371"],["-90.085658","29.924428"],["-90.085559","29.924484"],["-90.085460","29.924540"],["-90.085283","29.924640"],["-90.085105","29.924740"],["-90.084928","29.924840"],["-90.084750","29.924940"],["-90.084712","29.924895"],["-90.084750","29.924940"],["-90.084660","29.925000"],["-90.084559","29.925056"],["-90.084458","29.925113"],["-90.084356","29.925169"],["-90.084255","29.925225"],["-90.084154","29.925281"],["-90.084053","29.925338"],["-90.083951","29.925394"],["-90.083850","29.925450"],["-90.083728","29.925518"],["-90.083605","29.925585"],["-90.083483","29.925653"],["-90.083360","29.925720"],["-90.083260","29.925780"],["-90.083160","29.925840"],["-90.083020","29.925910"],["-90.082903","29.925975"],["-90.082785","29.926040"],["-90.082668","29.926105"],["-90.082550","29.926170"],["-90.082509","29.926115"],["-90.082550","29.926170"],["-90.082480","29.926210"],["-90.082376","29.926270"],["-90.082273","29.926330"],["-90.082169","29.926390"],["-90.082065","29.926450"],["-90.081961","29.926510"],["-90.081858","29.926570"],["-90.081754","29.926630"],["-90.081650","29.926690"],["-90.081468","29.926788"],["-90.081285","29.926885"],["-90.081103","29.926983"],["-90.080920","29.927080"],["-90.080893","29.927043"],["-90.080920","29.927080"],["-90.080830","29.927140"],["-90.080730","29.927196"],["-90.080630","29.927253"],["-90.080530","29.927309"],["-90.080430","29.927365"],["-90.080330","29.927421"],["-90.080230","29.927478"],["-90.080130","29.927534"],["-90.080030","29.927590"],["-90.079848","29.927695"],["-90.079665","29.927800"],["-90.079483","29.927905"],["-90.079300","29.928010"],["-90.079257","29.927944"],["-90.079300","29.928010"],["-90.079240","29.928040"],["-90.079143","29.928095"],["-90.079045","29.928150"],["-90.078948","29.928205"],["-90.078850","29.928260"],["-90.078735","29.928330"],["-90.078620","29.928400"],["-90.078480","29.928490"],["-90.078340","29.928580"],["-90.078190","29.928675"],["-90.078040","29.928770"],["-90.077890","29.928865"],["-90.077740","29.928960"],["-90.077650","29.929020"],["-90.077560","29.929080"],["-90.077470","29.929140"],["-90.077380","29.929200"],["-90.077290","29.929260"],["-90.077200","29.929320"],["-90.077110","29.929380"],["-90.077020","29.929440"],["-90.076948","29.929351"],["-90.077020","29.929440"],["-90.076905","29.929515"],["-90.076790","29.929590"],["-90.076710","29.929640"],["-90.076590","29.929720"],["-90.076470","29.929800"],["-90.076325","29.929895"],["-90.076180","29.929990"],["-90.076078","29.930055"],["-90.075975","29.930120"],["-90.075873","29.930185"],["-90.075770","29.930250"],["-90.075655","29.930325"],["-90.075540","29.930400"],["-90.075425","29.930475"],["-90.075310","29.930550"],["-90.075195","29.930625"],["-90.075080","29.930700"],["-90.074965","29.930775"],["-90.074850","29.930850"],["-90.074730","29.930930"],["-90.074681","29.930880"],["-90.074730","29.930930"],["-90.074660","29.930980"],["-90.074635","29.931120"],["-90.074610","29.931260"],["-90.074600","29.931350"],["-90.074560","29.931490"],["-90.074540","29.931590"],["-90.074510","29.931703"],["-90.074480","29.931815"],["-90.074450","29.931928"],["-90.074420","29.932040"],["-90.074400","29.932130"],["-90.074365","29.932275"],["-90.074330","29.932420"],["-90.074290","29.932570"],["-90.074250","29.932720"],["-90.074205","29.932890"],["-90.074160","29.933060"],["-90.074131","29.933051"],["-90.074160","29.933060"],["-90.074140","29.933160"],["-90.074130","29.933190"],["-90.074080","29.933350"],["-90.074080","29.933360"],["-90.074030","29.933530"],["-90.073980","29.933700"],["-90.073946","29.933814"],["-90.073913","29.933928"],["-90.073879","29.934041"],["-90.073845","29.934155"],["-90.073811","29.934269"],["-90.073778","29.934383"],["-90.073744","29.934496"],["-90.073710","29.934610"],["-90.073664","29.934604"],["-90.073710","29.934610"],["-90.073680","29.934700"],["-90.073640","29.934850"],["-90.073603","29.934973"],["-90.073565","29.935095"],["-90.073528","29.935218"],["-90.073490","29.935340"],["-90.073430","29.935510"],["-90.073400","29.935640"],["-90.073380","29.935690"],["-90.073360","29.935720"],["-90.073350","29.935760"],["-90.073300","29.935930"],["-90.073250","29.936100"],["-90.073200","29.936270"],["-90.073170","29.936370"],["-90.073140","29.936470"],["-90.073082","29.936457"],["-90.073140","29.936470"],["-90.073120","29.936540"],["-90.073110","29.936580"],["-90.073070","29.936680"],["-90.073040","29.936820"],["-90.073010","29.936915"],["-90.072980","29.937010"],["-90.072970","29.937040"],["-90.072933","29.937163"],["-90.072895","29.937285"],["-90.072858","29.937408"],["-90.072820","29.937530"],["-90.072810","29.937580"],["-90.072779","29.937686"],["-90.072748","29.937793"],["-90.072716","29.937899"],["-90.072685","29.938005"],["-90.072654","29.938111"],["-90.072623","29.938218"],["-90.072591","29.938324"],["-90.072560","29.938430"],["-90.072502","29.938413"],["-90.072560","29.938430"],["-90.072530","29.938520"],["-90.072501","29.938625"],["-90.072473","29.938730"],["-90.072444","29.938835"],["-90.072415","29.938940"],["-90.072386","29.939045"],["-90.072358","29.939150"],["-90.072329","29.939255"],["-90.072300","29.939360"],["-90.072265","29.939475"],["-90.072230","29.939590"],["-90.072185","29.939745"],["-90.072140","29.939900"],["-90.072095","29.940055"],["-90.072050","29.940210"],["-90.071981","29.940240"],["-90.072024","29.940328"],["-90.071982","29.940487"],["-90.071939","29.940646"],["-90.071896","29.940804"],["-90.071854","29.940963"],["-90.071811","29.941121"],["-90.071769","29.941280"],["-90.071726","29.941439"],["-90.071683","29.941597"],["-90.071479","29.941599"],["-90.071661","29.941667"],["-90.071594","29.941797"],["-90.071554","29.941944"],["-90.071515","29.942090"],["-90.071488","29.942190"],["-90.071460","29.942290"],["-90.071450","29.942330"],["-90.071415","29.942445"],["-90.071380","29.942560"],["-90.071345","29.942683"],["-90.071310","29.942805"],["-90.071275","29.942928"],["-90.071240","29.943050"],["-90.071180","29.943160"],["-90.071140","29.943295"],["-90.071100","29.943430"],["-90.071070","29.943530"],["-90.071040","29.943630"],["-90.071030","29.943690"],["-90.070990","29.943820"],["-90.070960","29.943900"],["-90.070940","29.944000"],["-90.070872","29.943982"],["-90.070940","29.944000"],["-90.070910","29.944110"],["-90.070880","29.944200"],["-90.070835","29.944350"],["-90.070790","29.944500"],["-90.070759","29.944601"],["-90.070728","29.944703"],["-90.070696","29.944804"],["-90.070665","29.944905"],["-90.070634","29.945006"],["-90.070603","29.945108"],["-90.070571","29.945209"],["-90.070540","29.945310"],["-90.070510","29.945420"],["-90.070470","29.945560"],["-90.070436","29.945525"],["-90.070470","29.945560"],["-90.070440","29.945640"],["-90.070420","29.945740"],["-90.070383","29.945865"],["-90.070345","29.945990"],["-90.070308","29.946115"],["-90.070270","29.946240"],["-90.070240","29.946340"],["-90.070210","29.946440"],["-90.070178","29.946558"],["-90.070145","29.946675"],["-90.070113","29.946793"],["-90.070080","29.946910"],["-90.070050","29.947000"],["-90.069999","29.946987"],["-90.070050","29.947000"],["-90.070030","29.947080"],["-90.070000","29.947190"],["-90.069955","29.947340"],["-90.069910","29.947490"],["-90.069880","29.947600"],["-90.069870","29.947650"],["-90.069840","29.947753"],["-90.069810","29.947855"],["-90.069780","29.947958"],["-90.069750","29.948060"],["-90.069674","29.948061"],["-90.069750","29.948060"],["-90.069730","29.948140"],["-90.069710","29.948200"],["-90.069680","29.948295"],["-90.069650","29.948390"],["-90.069600","29.948560"],["-90.069560","29.948660"],["-90.069520","29.948800"],["-90.069480","29.948940"],["-90.069420","29.949110"],["-90.069400","29.949210"],["-90.069340","29.949390"],["-90.069502","29.949425"],["-90.069665","29.949460"],["-90.069827","29.949495"],["-90.069990","29.949530"],["-90.070100","29.949550"],["-90.070210","29.949570"],["-90.070395","29.949615"],["-90.070580","29.949660"],["-90.070710","29.949680"],["-90.070835","29.949708"],["-90.070960","29.949735"],["-90.071085","29.949763"],["-90.071210","29.949790"],["-90.071380","29.949825"],["-90.071550","29.949860"],["-90.071740","29.949910"],["-90.071649","29.949982"],["-90.071740","29.949910"],["-90.071790","29.949920"],["-90.071820","29.949930"],["-90.072020","29.949970"],["-90.072120","29.949990"],["-90.072288","29.950028"],["-90.072427","29.950060"],["-90.072567","29.950092"],["-90.072706","29.950124"],["-90.072845","29.950156"],["-90.072919","29.950269"],["-90.072910","29.950330"],["-90.073020","29.950340"],["-90.073060","29.950220"],["-90.073250","29.950260"],["-90.073440","29.950300"],["-90.073642","29.950340"],["-90.073845","29.950380"],["-90.074047","29.950420"],["-90.074250","29.950460"],["-90.074362","29.950485"],["-90.074475","29.950510"],["-90.074587","29.950535"],["-90.074700","29.950560"],["-90.074720","29.950560"],["-90.074840","29.950585"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075260","29.951030"],["-90.075420","29.951060"],["-90.075400","29.951160"],["-90.075400","29.951190"],["-90.075400","29.951210"],["-90.075410","29.951240"],["-90.075430","29.951260"],["-90.075460","29.951270"],["-90.075550","29.951280"],["-90.075550","29.951320"],["-90.075560","29.951420"],["-90.075570","29.951560"],["-90.075580","29.951620"],["-90.075580","29.951710"],["-90.075580","29.951780"],["-90.075570","29.951830"],["-90.075570","29.951870"],["-90.075570","29.951910"],["-90.075560","29.951970"],["-90.075540","29.952110"],["-90.075500","29.952260"],["-90.075470","29.952370"],["-90.075450","29.952480"],["-90.075415","29.952595"],["-90.075380","29.952710"],["-90.075340","29.952820"],["-90.075310","29.952930"],["-90.075265","29.953080"],["-90.075220","29.953230"],["-90.075180","29.953350"],["-90.075160","29.953430"],["-90.075140","29.953480"],["-90.075100","29.953625"],["-90.075060","29.953770"],["-90.075020","29.953920"],["-90.074980","29.954040"],["-90.074950","29.954130"],["-90.074900","29.954220"],["-90.074890","29.954250"],["-90.074850","29.954300"],["-90.074706","29.954333"],["-90.074681","29.954481"],["-90.074552","29.954622"],["-90.074423","29.954763"],["-90.074295","29.954905"],["-90.074166","29.955046"],["-90.074096","29.955124"],["-90.074026","29.955202"],["-90.073956","29.955280"],["-90.073886","29.955358"],["-90.073816","29.955436"],["-90.073746","29.955514"],["-90.073675","29.955592"],["-90.073605","29.955670"],["-90.073530","29.955750"],["-90.073460","29.955830"],["-90.073420","29.955880"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073240","29.955850"],["-90.073070","29.955730"],["-90.072900","29.955610"],["-90.072730","29.955510"],["-90.072637","29.955448"],["-90.072545","29.955385"],["-90.072452","29.955323"],["-90.072360","29.955260"],["-90.072270","29.955203"],["-90.072180","29.955145"],["-90.072090","29.955088"],["-90.072000","29.955030"],["-90.071880","29.954940"],["-90.071795","29.954875"],["-90.071710","29.954810"],["-90.071640","29.954770"],["-90.071560","29.954710"],["-90.071412","29.954610"],["-90.071265","29.954510"],["-90.071117","29.954410"],["-90.070970","29.954310"],["-90.070890","29.954260"],["-90.070799","29.954200"],["-90.070707","29.954140"],["-90.070616","29.954080"],["-90.070525","29.954020"],["-90.070434","29.953960"],["-90.070342","29.953900"],["-90.070251","29.953840"],["-90.070160","29.953780"],["-90.070211","29.953721"],["-90.070160","29.953780"],["-90.070060","29.953710"],["-90.069970","29.953640"],["-90.069797","29.953520"],["-90.069625","29.953400"],["-90.069452","29.953280"],["-90.069280","29.953160"],["-90.069180","29.953100"],["-90.069050","29.953010"],["-90.068900","29.952910"],["-90.068750","29.952810"],["-90.068610","29.952715"],["-90.068470","29.952620"],["-90.068310","29.952520"],["-90.068215","29.952455"],["-90.068120","29.952390"],["-90.068090","29.952370"],["-90.067960","29.952280"],["-90.067930","29.952250"],["-90.067830","29.952190"],["-90.067710","29.952110"],["-90.067590","29.952030"],["-90.067440","29.951930"],["-90.067370","29.951890"],["-90.067354","29.951803"]]},{"type":"MultiPoint","coordinates":[["-90.118213","29.916486"],["-90.120045","29.916796"],["-90.123159","29.917509"],["-90.069703","29.943929"],["-90.070279","29.942074"],["-90.071374","29.938319"],["-90.071930","29.936398"],["-90.072485","29.934538"],["-90.074476","29.931216"],["-90.076683","29.929729"],["-90.079177","29.928137"],["-90.080977","29.927160"],["-90.082427","29.926317"],["-90.084612","29.925094"],["-90.086230","29.924183"],["-90.088775","29.923115"],["-90.090597","29.922466"],["-90.092666","29.921893"],["-90.095078","29.921349"],["-90.096933","29.921232"],["-90.099015","29.921044"],["-90.103733","29.920682"],["-90.105962","29.920508"],["-90.107863","29.920360"],["-90.109911","29.920414"],["-90.112647","29.920517"],["-90.113659","29.920705"],["-90.067354","29.951803"],["-90.067772","29.950648"],["-90.068130","29.949254"],["-90.068700","29.947305"],["-90.069251","29.945475"],["-90.101046","29.921040"],["-90.127478","29.916532"],["-90.115727","29.918540"]]},{"type":"LineString","coordinates":[["-90.067354","29.951803"],["-90.067300","29.951770"],["-90.067320","29.951750"],["-90.067330","29.951710"],["-90.067373","29.951573"],["-90.067415","29.951435"],["-90.067458","29.951298"],["-90.067493","29.951176"],["-90.067529","29.951055"],["-90.067564","29.950933"],["-90.067599","29.950812"],["-90.067686","29.950730"],["-90.067772","29.950648"],["-90.067651","29.950613"],["-90.067700","29.950457"],["-90.067749","29.950300"],["-90.067798","29.950144"],["-90.067847","29.949988"],["-90.067896","29.949832"],["-90.067945","29.949676"],["-90.067994","29.949519"],["-90.068043","29.949363"],["-90.068130","29.949254"],["-90.068067","29.949196"],["-90.068112","29.949042"],["-90.068157","29.948887"],["-90.068202","29.948733"],["-90.068247","29.948579"],["-90.068281","29.948464"],["-90.068314","29.948348"],["-90.068348","29.948233"],["-90.068381","29.948118"],["-90.068414","29.948003"],["-90.068448","29.947888"],["-90.068481","29.947773"],["-90.068515","29.947658"],["-90.068548","29.947543"],["-90.068581","29.947427"],["-90.068615","29.947312"],["-90.068700","29.947305"],["-90.068639","29.947222"],["-90.068676","29.947114"],["-90.068713","29.947006"],["-90.068767","29.946832"],["-90.068780","29.946790"],["-90.068830","29.946615"],["-90.068880","29.946441"],["-90.068931","29.946266"],["-90.068981","29.946092"],["-90.069055","29.945924"],["-90.069128","29.945756"],["-90.069202","29.945587"],["-90.069251","29.945475"],["-90.069262","29.945295"],["-90.069270","29.945178"],["-90.069330","29.945006"],["-90.069389","29.944833"],["-90.069449","29.944661"],["-90.069509","29.944489"],["-90.069569","29.944317"],["-90.069629","29.944145"],["-90.069688","29.943972"],["-90.069703","29.943929"],["-90.069725","29.943750"],["-90.069746","29.943571"],["-90.069755","29.943497"],["-90.069811","29.943324"],["-90.069866","29.943150"],["-90.069921","29.942977"],["-90.069976","29.942803"],["-90.069990","29.942760"],["-90.070061","29.942591"],["-90.070132","29.942422"],["-90.070204","29.942253"],["-90.070275","29.942084"],["-90.070279","29.942074"],["-90.070299","29.941895"],["-90.070318","29.941716"],["-90.070327","29.941635"],["-90.070385","29.941462"],["-90.070443","29.941290"],["-90.070460","29.941240"],["-90.070510","29.941080"],["-90.070530","29.940990"],["-90.070570","29.940820"],["-90.070600","29.940710"],["-90.070630","29.940580"],["-90.070681","29.940406"],["-90.070710","29.940280"],["-90.070740","29.940190"],["-90.070793","29.940016"],["-90.070846","29.939842"],["-90.070898","29.939668"],["-90.070951","29.939494"],["-90.071004","29.939320"],["-90.071067","29.939149"],["-90.071131","29.938978"],["-90.071194","29.938806"],["-90.071257","29.938635"],["-90.071320","29.938464"],["-90.071374","29.938319"],["-90.071390","29.938270"],["-90.071310","29.938250"],["-90.071346","29.938129"],["-90.071383","29.938008"],["-90.071419","29.937886"],["-90.071455","29.937765"],["-90.071491","29.937644"],["-90.071528","29.937523"],["-90.071564","29.937401"],["-90.071600","29.937280"],["-90.071645","29.937123"],["-90.071690","29.936965"],["-90.071735","29.936808"],["-90.071780","29.936650"],["-90.071820","29.936515"],["-90.071860","29.936380"],["-90.071930","29.936398"],["-90.071860","29.936380"],["-90.071890","29.936310"],["-90.071921","29.936199"],["-90.071953","29.936088"],["-90.071981","29.935990"],["-90.072010","29.935892"],["-90.072038","29.935794"],["-90.072067","29.935696"],["-90.072095","29.935598"],["-90.072124","29.935499"],["-90.072152","29.935401"],["-90.072180","29.935303"],["-90.072209","29.935205"],["-90.072237","29.935107"],["-90.072266","29.935009"],["-90.072294","29.934911"],["-90.072322","29.934813"],["-90.072351","29.934715"],["-90.072379","29.934617"],["-90.072408","29.934518"],["-90.072485","29.934538"],["-90.072461","29.934379"],["-90.072500","29.934243"],["-90.072539","29.934107"],["-90.072578","29.933972"],["-90.072617","29.933836"],["-90.072656","29.933700"],["-90.072695","29.933564"],["-90.072734","29.933428"],["-90.072773","29.933293"],["-90.072812","29.933157"],["-90.072851","29.933021"],["-90.072890","29.932885"],["-90.072929","29.932750"],["-90.072968","29.932614"],["-90.073007","29.932478"],["-90.073046","29.932342"],["-90.073085","29.932206"],["-90.073247","29.932080"],["-90.073408","29.931953"],["-90.073570","29.931826"],["-90.073732","29.931700"],["-90.073893","29.931573"],["-90.074055","29.931446"],["-90.074216","29.931320"],["-90.074378","29.931193"],["-90.074476","29.931216"],["-90.074534","29.931091"],["-90.074660","29.931006"],["-90.074786","29.930921"],["-90.074913","29.930836"],["-90.075039","29.930751"],["-90.075166","29.930667"],["-90.075292","29.930582"],["-90.075418","29.930497"],["-90.075545","29.930412"],["-90.075671","29.930327"],["-90.075798","29.930243"],["-90.075924","29.930158"],["-90.076050","29.930073"],["-90.076177","29.929988"],["-90.076303","29.929904"],["-90.076430","29.929819"],["-90.076556","29.929734"],["-90.076683","29.929729"],["-90.076683","29.929729"],["-90.076756","29.929645"],["-90.076830","29.929562"],["-90.076968","29.929470"],["-90.077107","29.929379"],["-90.077245","29.929287"],["-90.077384","29.929196"],["-90.077503","29.929118"],["-90.077621","29.929039"],["-90.077740","29.928960"],["-90.077890","29.928865"],["-90.078040","29.928770"],["-90.078190","29.928675"],["-90.078340","29.928580"],["-90.078480","29.928490"],["-90.078620","29.928400"],["-90.078735","29.928330"],["-90.078850","29.928260"],["-90.079000","29.928175"],["-90.079150","29.928090"],["-90.079177","29.928137"],["-90.079150","29.928090"],["-90.079240","29.928040"],["-90.079339","29.927984"],["-90.079438","29.927928"],["-90.079536","29.927871"],["-90.079635","29.927815"],["-90.079734","29.927759"],["-90.079833","29.927703"],["-90.079931","29.927646"],["-90.080030","29.927590"],["-90.080130","29.927534"],["-90.080230","29.927478"],["-90.080330","29.927421"],["-90.080430","29.927365"],["-90.080530","29.927309"],["-90.080630","29.927253"],["-90.080730","29.927196"],["-90.080830","29.927140"],["-90.080920","29.927080"],["-90.080977","29.927160"],["-90.080920","29.927080"],["-90.081103","29.926983"],["-90.081285","29.926885"],["-90.081468","29.926788"],["-90.081650","29.926690"],["-90.081835","29.926585"],["-90.082020","29.926480"],["-90.082205","29.926375"],["-90.082390","29.926270"],["-90.082427","29.926317"],["-90.082390","29.926270"],["-90.082480","29.926210"],["-90.082615","29.926135"],["-90.082750","29.926060"],["-90.082885","29.925985"],["-90.083020","29.925910"],["-90.083160","29.925840"],["-90.083260","29.925780"],["-90.083360","29.925720"],["-90.083483","29.925653"],["-90.083605","29.925585"],["-90.083728","29.925518"],["-90.083850","29.925450"],["-90.084030","29.925348"],["-90.084210","29.925245"],["-90.084390","29.925143"],["-90.084570","29.925040"],["-90.084612","29.925094"],["-90.084570","29.925040"],["-90.084660","29.925000"],["-90.084760","29.924943"],["-90.084860","29.924885"],["-90.084960","29.924828"],["-90.085060","29.924770"],["-90.085160","29.924713"],["-90.085260","29.924655"],["-90.085360","29.924598"],["-90.085460","29.924540"],["-90.085643","29.924438"],["-90.085825","29.924335"],["-90.086008","29.924233"],["-90.086190","29.924130"],["-90.086230","29.924183"],["-90.086190","29.924130"],["-90.086250","29.924090"],["-90.086360","29.924035"],["-90.086470","29.923980"],["-90.086630","29.923910"],["-90.086790","29.923840"],["-90.086850","29.923810"],["-90.086950","29.923763"],["-90.087050","29.923715"],["-90.087150","29.923668"],["-90.087250","29.923620"],["-90.087350","29.923590"],["-90.087550","29.923510"],["-90.087750","29.923430"],["-90.087875","29.923384"],["-90.088000","29.923338"],["-90.088125","29.923291"],["-90.088250","29.923245"],["-90.088375","29.923199"],["-90.088500","29.923153"],["-90.088625","29.923106"],["-90.088750","29.923060"],["-90.088775","29.923115"],["-90.088750","29.923060"],["-90.088830","29.923020"],["-90.088960","29.922970"],["-90.089099","29.922920"],["-90.089238","29.922870"],["-90.089376","29.922820"],["-90.089515","29.922770"],["-90.089654","29.922720"],["-90.089793","29.922670"],["-90.089931","29.922620"],["-90.090070","29.922570"],["-90.090198","29.922533"],["-90.090325","29.922495"],["-90.090453","29.922458"],["-90.090580","29.922420"],["-90.090597","29.922466"],["-90.090580","29.922420"],["-90.090710","29.922380"],["-90.090828","29.922348"],["-90.090945","29.922315"],["-90.091063","29.922283"],["-90.091180","29.922250"],["-90.091298","29.922218"],["-90.091415","29.922185"],["-90.091533","29.922153"],["-90.091650","29.922120"],["-90.091766","29.922085"],["-90.091883","29.922050"],["-90.091999","29.922015"],["-90.092115","29.921980"],["-90.092231","29.921945"],["-90.092348","29.921910"],["-90.092464","29.921875"],["-90.092580","29.921840"],["-90.092640","29.921830"],["-90.092666","29.921893"],["-90.092640","29.921830"],["-90.092795","29.921785"],["-90.092950","29.921740"],["-90.093105","29.921695"],["-90.093260","29.921650"],["-90.093475","29.921605"],["-90.093690","29.921560"],["-90.093905","29.921515"],["-90.094120","29.921470"],["-90.094335","29.921428"],["-90.094550","29.921385"],["-90.094765","29.921343"],["-90.094980","29.921300"],["-90.095070","29.921290"],["-90.095078","29.921349"],["-90.095070","29.921290"],["-90.095243","29.921278"],["-90.095415","29.921265"],["-90.095588","29.921253"],["-90.095760","29.921240"],["-90.095896","29.921230"],["-90.096033","29.921220"],["-90.096169","29.921210"],["-90.096305","29.921200"],["-90.096441","29.921190"],["-90.096578","29.921180"],["-90.096714","29.921170"],["-90.096850","29.921160"],["-90.096920","29.921150"],["-90.096933","29.921232"],["-90.096920","29.921150"],["-90.097051","29.921140"],["-90.097183","29.921130"],["-90.097314","29.921120"],["-90.097445","29.921110"],["-90.097576","29.921100"],["-90.097708","29.921090"],["-90.097839","29.921080"],["-90.097970","29.921070"],["-90.098100","29.921060"],["-90.098214","29.921053"],["-90.098328","29.921045"],["-90.098441","29.921038"],["-90.098555","29.921030"],["-90.098669","29.921023"],["-90.098783","29.921015"],["-90.098896","29.921008"],["-90.099010","29.921000"],["-90.099015","29.921044"],["-90.099010","29.921000"],["-90.099120","29.920990"],["-90.099210","29.920970"],["-90.099240","29.920970"],["-90.099450","29.920960"],["-90.099640","29.920943"],["-90.099830","29.920925"],["-90.100020","29.920908"],["-90.100210","29.920890"],["-90.100413","29.920875"],["-90.100615","29.920860"],["-90.100818","29.920845"],["-90.101020","29.920830"],["-90.101033","29.920935"],["-90.101046","29.921040"],["-90.101033","29.920935"],["-90.101020","29.920830"],["-90.101230","29.920810"],["-90.101280","29.920810"],["-90.101360","29.920810"],["-90.101480","29.920800"],["-90.101600","29.920790"],["-90.101741","29.920780"],["-90.101883","29.920770"],["-90.102024","29.920760"],["-90.102165","29.920750"],["-90.102306","29.920740"],["-90.102448","29.920730"],["-90.102589","29.920720"],["-90.102730","29.920710"],["-90.102855","29.920700"],["-90.102980","29.920690"],["-90.103105","29.920680"],["-90.103230","29.920670"],["-90.103355","29.920660"],["-90.103480","29.920650"],["-90.103605","29.920640"],["-90.103730","29.920630"],["-90.103733","29.920682"],["-90.103730","29.920630"],["-90.103840","29.920620"],["-90.104050","29.920600"],["-90.104165","29.920591"],["-90.104280","29.920583"],["-90.104395","29.920574"],["-90.104510","29.920565"],["-90.104625","29.920556"],["-90.104740","29.920548"],["-90.104855","29.920539"],["-90.104970","29.920530"],["-90.105094","29.920521"],["-90.105218","29.920513"],["-90.105341","29.920504"],["-90.105465","29.920495"],["-90.105589","29.920486"],["-90.105713","29.920478"],["-90.105836","29.920469"],["-90.105960","29.920460"],["-90.105962","29.920508"],["-90.105960","29.920460"],["-90.106110","29.920450"],["-90.106248","29.920438"],["-90.106385","29.920425"],["-90.106523","29.920413"],["-90.106660","29.920400"],["-90.106798","29.920388"],["-90.106935","29.920375"],["-90.107073","29.920363"],["-90.107210","29.920350"],["-90.107373","29.920338"],["-90.107535","29.920325"],["-90.107698","29.920313"],["-90.107860","29.920300"],["-90.107863","29.920360"],["-90.107860","29.920300"],["-90.107990","29.920290"],["-90.108127","29.920296"],["-90.108265","29.920303"],["-90.108402","29.920309"],["-90.108540","29.920315"],["-90.108677","29.920321"],["-90.108815","29.920328"],["-90.108952","29.920334"],["-90.109090","29.920340"],["-90.109295","29.920345"],["-90.109500","29.920350"],["-90.109705","29.920355"],["-90.109910","29.920360"],["-90.109911","29.920414"],["-90.109910","29.920360"],["-90.110050","29.920370"],["-90.110170","29.920374"],["-90.110290","29.920378"],["-90.110410","29.920381"],["-90.110530","29.920385"],["-90.110650","29.920389"],["-90.110770","29.920393"],["-90.110890","29.920396"],["-90.111010","29.920400"],["-90.111146","29.920406"],["-90.111282","29.920413"],["-90.111419","29.920419"],["-90.111555","29.920425"],["-90.111691","29.920431"],["-90.111827","29.920438"],["-90.111964","29.920444"],["-90.112100","29.920450"],["-90.112213","29.920456"],["-90.112325","29.920461"],["-90.112438","29.920467"],["-90.112551","29.920472"],["-90.112647","29.920517"],["-90.112752","29.920482"],["-90.112861","29.920501"],["-90.112971","29.920520"],["-90.113081","29.920539"],["-90.113190","29.920559"],["-90.113300","29.920578"],["-90.113410","29.920597"],["-90.113519","29.920616"],["-90.113629","29.920635"],["-90.113659","29.920705"],["-90.113744","29.920656"],["-90.113910","29.920683"],["-90.114075","29.920709"],["-90.114241","29.920735"],["-90.114407","29.920762"],["-90.114572","29.920788"],["-90.114738","29.920815"],["-90.114904","29.920841"],["-90.115069","29.920868"],["-90.115097","29.920770"],["-90.115126","29.920672"],["-90.115158","29.920542"],["-90.115190","29.920411"],["-90.115222","29.920281"],["-90.115254","29.920150"],["-90.115286","29.920020"],["-90.115318","29.919889"],["-90.115350","29.919759"],["-90.115382","29.919628"],["-90.115414","29.919498"],["-90.115446","29.919367"],["-90.115478","29.919236"],["-90.115510","29.919106"],["-90.115542","29.918975"],["-90.115574","29.918845"],["-90.115606","29.918714"],["-90.115638","29.918584"],["-90.115727","29.918540"],["-90.115713","29.918388"],["-90.115737","29.918282"],["-90.115760","29.918177"],["-90.115784","29.918071"],["-90.115807","29.917965"],["-90.115836","29.917854"],["-90.115866","29.917743"],["-90.115895","29.917632"],["-90.115925","29.917521"],["-90.115954","29.917409"],["-90.115983","29.917298"],["-90.116013","29.917187"],["-90.116042","29.917076"],["-90.116075","29.916953"],["-90.116108","29.916829"],["-90.116141","29.916706"],["-90.116174","29.916582"],["-90.116207","29.916459"],["-90.116322","29.916456"],["-90.116437","29.916453"],["-90.116553","29.916450"],["-90.116668","29.916447"],["-90.116783","29.916444"],["-90.116899","29.916441"],["-90.117014","29.916438"],["-90.117129","29.916436"],["-90.117245","29.916433"],["-90.117360","29.916430"],["-90.117475","29.916427"],["-90.117591","29.916424"],["-90.117706","29.916421"],["-90.117821","29.916418"],["-90.117937","29.916415"],["-90.118052","29.916412"],["-90.118213","29.916486"],["-90.118260","29.916415"],["-90.118421","29.916432"],["-90.118582","29.916450"],["-90.118694","29.916470"],["-90.118805","29.916490"],["-90.118916","29.916510"],["-90.119027","29.916530"],["-90.119139","29.916550"],["-90.119250","29.916570"],["-90.119452","29.916610"],["-90.119655","29.916650"],["-90.119857","29.916690"],["-90.120060","29.916730"],["-90.120045","29.916796"],["-90.120060","29.916730"],["-90.120220","29.916760"],["-90.120336","29.916786"],["-90.120452","29.916813"],["-90.120569","29.916839"],["-90.120685","29.916865"],["-90.120801","29.916891"],["-90.120917","29.916918"],["-90.121034","29.916944"],["-90.121150","29.916970"],["-90.121260","29.916991"],["-90.121370","29.917013"],["-90.121480","29.917034"],["-90.121590","29.917055"],["-90.121700","29.917076"],["-90.121810","29.917098"],["-90.121920","29.917119"],["-90.122030","29.917140"],["-90.122174","29.917180"],["-90.122317","29.917220"],["-90.122461","29.917260"],["-90.122605","29.917300"],["-90.122749","29.917340"],["-90.122892","29.917380"],["-90.123015","29.917418"],["-90.123137","29.917457"],["-90.123159","29.917509"],["-90.123247","29.917486"],["-90.123320","29.917507"],["-90.123365","29.917386"],["-90.123411","29.917265"],["-90.123457","29.917143"],["-90.123503","29.917022"],["-90.123548","29.916901"],["-90.123594","29.916780"],["-90.123640","29.916659"],["-90.123686","29.916538"],["-90.123731","29.916416"],["-90.123777","29.916295"],["-90.123823","29.916174"],["-90.123869","29.916053"],["-90.123915","29.915932"],["-90.123960","29.915810"],["-90.124006","29.915689"],["-90.124052","29.915568"],["-90.124161","29.915598"],["-90.124271","29.915628"],["-90.124381","29.915658"],["-90.124490","29.915688"],["-90.124600","29.915718"],["-90.124710","29.915748"],["-90.124819","29.915779"],["-90.124929","29.915809"],["-90.125038","29.915839"],["-90.125148","29.915869"],["-90.125258","29.915899"],["-90.125367","29.915929"],["-90.125477","29.915959"],["-90.125587","29.915989"],["-90.125696","29.916019"],["-90.125806","29.916049"],["-90.125916","29.916079"],["-90.126025","29.916109"],["-90.126135","29.916139"],["-90.126244","29.916169"],["-90.126354","29.916199"],["-90.126464","29.916229"],["-90.126573","29.916259"],["-90.126683","29.916290"],["-90.126793","29.916320"],["-90.126902","29.916350"],["-90.127012","29.916380"],["-90.127121","29.916410"],["-90.127231","29.916440"],["-90.127341","29.916470"],["-90.127450","29.916500"],["-90.127560","29.916530"],["-90.127478","29.916532"]]}]}},{"type":"Feature","properties":{"route_id":"114A","agency_id":"1","route_short_name":"114A","route_long_name":"Garden Oaks - Sullen","route_type":"3","route_color":"#a6caf0","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-89.982893","29.923220"],["-89.985229","29.923823"],["-90.028750","29.928473"],["-90.027718","29.929325"],["-90.027500","29.931047"],["-89.995155","29.909614"],["-90.000925","29.912917"],["-90.002558","29.914001"],["-90.004908","29.915361"],["-90.008111","29.917394"],["-90.010846","29.918951"],["-90.014817","29.920931"],["-90.017832","29.915316"],["-90.020410","29.918369"],["-90.022433","29.918820"],["-90.022412","29.920470"],["-90.022454","29.922398"],["-90.021565","29.924638"],["-90.020026","29.927384"],["-90.019907","29.930197"],["-90.021837","29.930630"],["-90.025332","29.930786"],["-89.986128","29.915555"],["-89.986380","29.914057"],["-89.986579","29.912542"],["-89.986817","29.910486"],["-89.989202","29.906781"],["-89.991813","29.904860"],["-90.075299","29.946626"],["-89.993181","29.906756"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.993148","29.908361"],["-90.018239","29.913926"],["-90.037190","29.930590"],["-90.020897","29.925605"],["-90.020690","29.916673"],["-89.985303","29.922255"],["-89.985860","29.917719"],["-90.035199","29.930500"],["-89.989615","29.906473"],["-90.042369","29.922906"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-89.982893","29.923220"],["-89.982940","29.923140"],["-89.983040","29.923180"],["-89.983150","29.923230"],["-89.983260","29.923280"],["-89.983370","29.923330"],["-89.983480","29.923380"],["-89.983602","29.923433"],["-89.983725","29.923485"],["-89.983847","29.923538"],["-89.983970","29.923590"],["-89.984107","29.923645"],["-89.984245","29.923700"],["-89.984382","29.923755"],["-89.984520","29.923810"],["-89.984662","29.923873"],["-89.984805","29.923935"],["-89.984947","29.923998"],["-89.985090","29.924060"],["-89.985110","29.923880"],["-89.985120","29.923810"],["-89.985229","29.923823"],["-89.985130","29.923810"],["-89.985143","29.923703"],["-89.985155","29.923595"],["-89.985168","29.923488"],["-89.985180","29.923380"],["-89.985195","29.923260"],["-89.985210","29.923140"],["-89.985224","29.923030"],["-89.985238","29.922920"],["-89.985251","29.922810"],["-89.985265","29.922700"],["-89.985279","29.922590"],["-89.985293","29.922480"],["-89.985306","29.922370"],["-89.985303","29.922255"],["-89.985330","29.922230"],["-89.985343","29.922118"],["-89.985355","29.922005"],["-89.985368","29.921893"],["-89.985380","29.921780"],["-89.985393","29.921668"],["-89.985405","29.921555"],["-89.985418","29.921443"],["-89.985430","29.921330"],["-89.985444","29.921229"],["-89.985458","29.921128"],["-89.985471","29.921026"],["-89.985485","29.920925"],["-89.985499","29.920824"],["-89.985513","29.920723"],["-89.985526","29.920621"],["-89.985540","29.920520"],["-89.985550","29.920420"],["-89.985565","29.920275"],["-89.985580","29.920130"],["-89.985600","29.919990"],["-89.985620","29.919850"],["-89.985640","29.919685"],["-89.985660","29.919520"],["-89.985673","29.919410"],["-89.985685","29.919300"],["-89.985698","29.919190"],["-89.985710","29.919080"],["-89.985725","29.918963"],["-89.985740","29.918845"],["-89.985755","29.918728"],["-89.985770","29.918610"],["-89.985788","29.918478"],["-89.985805","29.918345"],["-89.985823","29.918213"],["-89.985840","29.918080"],["-89.985860","29.917900"],["-89.985875","29.917795"],["-89.985890","29.917690"],["-89.985860","29.917719"],["-89.985890","29.917690"],["-89.985903","29.917586"],["-89.985915","29.917483"],["-89.985928","29.917379"],["-89.985940","29.917275"],["-89.985953","29.917171"],["-89.985965","29.917068"],["-89.985978","29.916964"],["-89.985990","29.916860"],["-89.986008","29.916700"],["-89.986025","29.916540"],["-89.986043","29.916380"],["-89.986060","29.916220"],["-89.986060","29.916170"],["-89.986080","29.916018"],["-89.986100","29.915865"],["-89.986120","29.915713"],["-89.986140","29.915560"],["-89.986128","29.915555"],["-89.986140","29.915560"],["-89.986150","29.915480"],["-89.986170","29.915310"],["-89.986190","29.915140"],["-89.986210","29.914970"],["-89.986230","29.914800"],["-89.986255","29.914613"],["-89.986280","29.914425"],["-89.986305","29.914238"],["-89.986380","29.914057"],["-89.986330","29.914050"],["-89.986340","29.913950"],["-89.986363","29.913778"],["-89.986385","29.913605"],["-89.986408","29.913433"],["-89.986430","29.913260"],["-89.986448","29.913098"],["-89.986465","29.912935"],["-89.986483","29.912773"],["-89.986500","29.912610"],["-89.986510","29.912510"],["-89.986580","29.912520"],["-89.986579","29.912542"],["-89.986580","29.912520"],["-89.986510","29.912510"],["-89.986530","29.912348"],["-89.986550","29.912185"],["-89.986570","29.912023"],["-89.986590","29.911860"],["-89.986613","29.911675"],["-89.986635","29.911490"],["-89.986658","29.911305"],["-89.986680","29.911120"],["-89.986693","29.911008"],["-89.986705","29.910895"],["-89.986718","29.910783"],["-89.986730","29.910670"],["-89.986760","29.910480"],["-89.986817","29.910486"],["-89.986760","29.910480"],["-89.986770","29.910370"],["-89.986788","29.910218"],["-89.986805","29.910065"],["-89.986823","29.909913"],["-89.986840","29.909760"],["-89.986860","29.909616"],["-89.986880","29.909473"],["-89.986900","29.909329"],["-89.986920","29.909185"],["-89.986940","29.909041"],["-89.986960","29.908898"],["-89.986980","29.908754"],["-89.987000","29.908610"],["-89.987015","29.908473"],["-89.987030","29.908335"],["-89.987045","29.908198"],["-89.987060","29.908060"],["-89.987070","29.907948"],["-89.987080","29.907835"],["-89.987090","29.907723"],["-89.987100","29.907610"],["-89.987110","29.907550"],["-89.987130","29.907500"],["-89.987150","29.907450"],["-89.987210","29.907400"],["-89.987295","29.907478"],["-89.987380","29.907555"],["-89.987465","29.907633"],["-89.987550","29.907710"],["-89.987670","29.907820"],["-89.987800","29.907690"],["-89.987840","29.907650"],["-89.987910","29.907600"],["-89.987920","29.907600"],["-89.987960","29.907570"],["-89.988010","29.907530"],["-89.988150","29.907420"],["-89.988300","29.907315"],["-89.988450","29.907210"],["-89.988600","29.907105"],["-89.988708","29.907028"],["-89.988816","29.906951"],["-89.988924","29.906874"],["-89.989032","29.906796"],["-89.989202","29.906781"],["-89.989246","29.906629"],["-89.989386","29.906552"],["-89.989525","29.906476"],["-89.989615","29.906473"],["-89.989550","29.906400"],["-89.989696","29.906290"],["-89.989843","29.906180"],["-89.989989","29.906070"],["-89.990135","29.905960"],["-89.990281","29.905850"],["-89.990428","29.905740"],["-89.990574","29.905630"],["-89.990720","29.905520"],["-89.990850","29.905445"],["-89.990980","29.905370"],["-89.991095","29.905285"],["-89.991210","29.905200"],["-89.991325","29.905115"],["-89.991440","29.905030"],["-89.991530","29.904955"],["-89.991620","29.904880"],["-89.991710","29.904805"],["-89.991800","29.904730"],["-89.991880","29.904810"],["-89.991813","29.904860"],["-89.991880","29.904810"],["-89.992000","29.904920"],["-89.992100","29.905030"],["-89.992220","29.905150"],["-89.992302","29.905235"],["-89.992385","29.905320"],["-89.992467","29.905405"],["-89.992550","29.905490"],["-89.992645","29.905590"],["-89.992740","29.905690"],["-89.992750","29.905700"],["-89.992870","29.905820"],["-89.992880","29.905840"],["-89.992960","29.905940"],["-89.993040","29.906080"],["-89.993110","29.906200"],["-89.993155","29.906305"],["-89.993200","29.906410"],["-89.993240","29.906570"],["-89.993260","29.906670"],["-89.993181","29.906756"],["-89.993270","29.906750"],["-89.993270","29.906800"],["-89.993265","29.906928"],["-89.993260","29.907055"],["-89.993255","29.907183"],["-89.993250","29.907310"],["-89.993250","29.907330"],["-89.993243","29.907488"],["-89.993235","29.907645"],["-89.993228","29.907803"],["-89.993220","29.907960"],["-89.993220","29.908065"],["-89.993220","29.908170"],["-89.993220","29.908310"],["-89.993220","29.908360"],["-89.993148","29.908361"],["-89.993220","29.908360"],["-89.993210","29.908440"],["-89.993210","29.908540"],["-89.993210","29.908640"],["-89.993215","29.908790"],["-89.993220","29.908940"],["-89.993215","29.909100"],["-89.993210","29.909260"],["-89.993360","29.909270"],["-89.993505","29.909290"],["-89.993650","29.909310"],["-89.993800","29.909335"],["-89.993950","29.909360"],["-89.994147","29.909395"],["-89.994345","29.909430"],["-89.994542","29.909465"],["-89.994740","29.909500"],["-89.994950","29.909540"],["-89.995160","29.909580"],["-89.995155","29.909614"],["-89.995160","29.909580"],["-89.995350","29.909620"],["-89.995530","29.909670"],["-89.995710","29.909720"],["-89.995880","29.909780"],["-89.996070","29.909850"],["-89.996255","29.909925"],["-89.996440","29.910000"],["-89.996565","29.910065"],["-89.996690","29.910130"],["-89.996805","29.910190"],["-89.996920","29.910250"],["-89.997035","29.910320"],["-89.997150","29.910390"],["-89.997320","29.910500"],["-89.997360","29.910530"],["-89.997527","29.910640"],["-89.997695","29.910750"],["-89.997862","29.910860"],["-89.998030","29.910970"],["-89.998205","29.911085"],["-89.998380","29.911200"],["-89.998555","29.911315"],["-89.998730","29.911430"],["-89.998905","29.911545"],["-89.999080","29.911660"],["-89.999247","29.911770"],["-89.999415","29.911880"],["-89.999582","29.911990"],["-89.999750","29.912100"],["-89.999890","29.912193"],["-90.000030","29.912285"],["-90.000170","29.912378"],["-90.000310","29.912470"],["-90.000440","29.912555"],["-90.000570","29.912640"],["-90.000665","29.912703"],["-90.000760","29.912765"],["-90.000855","29.912828"],["-90.000950","29.912890"],["-90.000925","29.912917"],["-90.000950","29.912890"],["-90.001020","29.912940"],["-90.001110","29.913000"],["-90.001200","29.913060"],["-90.001352","29.913158"],["-90.001505","29.913255"],["-90.001657","29.913353"],["-90.001810","29.913450"],["-90.001909","29.913513"],["-90.002007","29.913575"],["-90.002106","29.913638"],["-90.002205","29.913700"],["-90.002304","29.913763"],["-90.002402","29.913825"],["-90.002501","29.913888"],["-90.002558","29.914001"],["-90.002600","29.913950"],["-90.002680","29.914000"],["-90.002782","29.914060"],["-90.002885","29.914120"],["-90.002987","29.914180"],["-90.003090","29.914240"],["-90.003192","29.914300"],["-90.003295","29.914360"],["-90.003397","29.914420"],["-90.003500","29.914480"],["-90.003596","29.914534"],["-90.003692","29.914588"],["-90.003789","29.914641"],["-90.003885","29.914695"],["-90.003981","29.914749"],["-90.004077","29.914803"],["-90.004174","29.914856"],["-90.004270","29.914910"],["-90.004445","29.915003"],["-90.004620","29.915095"],["-90.004795","29.915188"],["-90.004970","29.915280"],["-90.004908","29.915361"],["-90.004970","29.915280"],["-90.005060","29.915320"],["-90.005190","29.915390"],["-90.005320","29.915460"],["-90.005500","29.915558"],["-90.005680","29.915655"],["-90.005860","29.915753"],["-90.006040","29.915850"],["-90.006215","29.915945"],["-90.006390","29.916040"],["-90.006575","29.916145"],["-90.006760","29.916250"],["-90.006810","29.916290"],["-90.006950","29.916390"],["-90.007060","29.916480"],["-90.007160","29.916580"],["-90.007270","29.916690"],["-90.007350","29.916775"],["-90.007430","29.916860"],["-90.007530","29.916940"],["-90.007640","29.917025"],["-90.007750","29.917110"],["-90.007847","29.917170"],["-90.007945","29.917230"],["-90.008042","29.917290"],["-90.008140","29.917350"],["-90.008150","29.917350"],["-90.008111","29.917394"],["-90.008150","29.917350"],["-90.008220","29.917390"],["-90.008340","29.917470"],["-90.008440","29.917540"],["-90.008560","29.917610"],["-90.008680","29.917680"],["-90.008780","29.917745"],["-90.008880","29.917810"],["-90.009010","29.917890"],["-90.009120","29.917960"],["-90.009260","29.918030"],["-90.009330","29.918060"],["-90.009410","29.918090"],["-90.009420","29.918090"],["-90.009560","29.918140"],["-90.009720","29.918190"],["-90.009790","29.918220"],["-90.009890","29.918265"],["-90.009990","29.918310"],["-90.010130","29.918385"],["-90.010270","29.918460"],["-90.010390","29.918540"],["-90.010540","29.918630"],["-90.010640","29.918700"],["-90.010760","29.918790"],["-90.010846","29.918951"],["-90.010900","29.918900"],["-90.010970","29.918960"],["-90.011060","29.919025"],["-90.011150","29.919090"],["-90.011240","29.919150"],["-90.011390","29.919290"],["-90.011490","29.919390"],["-90.011530","29.919420"],["-90.011630","29.919520"],["-90.011660","29.919560"],["-90.011780","29.919680"],["-90.011865","29.919765"],["-90.011950","29.919850"],["-90.012050","29.919940"],["-90.012110","29.920000"],["-90.012220","29.920110"],["-90.012355","29.920220"],["-90.012490","29.920330"],["-90.012570","29.920390"],["-90.012650","29.920450"],["-90.012830","29.920560"],["-90.012910","29.920620"],["-90.013000","29.920670"],["-90.013070","29.920710"],["-90.013205","29.920790"],["-90.013340","29.920870"],["-90.013440","29.920935"],["-90.013540","29.921000"],["-90.013590","29.921030"],["-90.013640","29.921060"],["-90.013800","29.921160"],["-90.013930","29.921230"],["-90.014060","29.921310"],["-90.014190","29.921390"],["-90.014350","29.921470"],["-90.014420","29.921340"],["-90.014500","29.921210"],["-90.014565","29.921115"],["-90.014630","29.921020"],["-90.014700","29.920940"],["-90.014760","29.920890"],["-90.014817","29.920931"],["-90.014760","29.920890"],["-90.014770","29.920870"],["-90.014800","29.920850"],["-90.014870","29.920780"],["-90.014880","29.920770"],["-90.014980","29.920690"],["-90.015065","29.920625"],["-90.015150","29.920560"],["-90.015270","29.920480"],["-90.015435","29.920395"],["-90.015600","29.920310"],["-90.015680","29.920260"],["-90.015830","29.920200"],["-90.015840","29.920190"],["-90.015975","29.920120"],["-90.016110","29.920050"],["-90.016230","29.919990"],["-90.016370","29.919910"],["-90.016440","29.919870"],["-90.016510","29.919830"],["-90.016570","29.919780"],["-90.016640","29.919740"],["-90.016700","29.919690"],["-90.016840","29.919560"],["-90.016910","29.919490"],["-90.017025","29.919360"],["-90.017140","29.919230"],["-90.017180","29.919170"],["-90.017230","29.919100"],["-90.017285","29.919005"],["-90.017340","29.918910"],["-90.017380","29.918830"],["-90.017430","29.918700"],["-90.017490","29.918520"],["-90.017530","29.918340"],["-90.017543","29.918200"],["-90.017555","29.918060"],["-90.017568","29.917920"],["-90.017580","29.917780"],["-90.017610","29.917670"],["-90.017620","29.917535"],["-90.017630","29.917400"],["-90.017620","29.917300"],["-90.017623","29.917180"],["-90.017625","29.917060"],["-90.017628","29.916940"],["-90.017630","29.916820"],["-90.017630","29.916770"],["-90.017640","29.916660"],["-90.017650","29.916550"],["-90.017660","29.916440"],["-90.017680","29.916380"],["-90.017693","29.916215"],["-90.017705","29.916050"],["-90.017718","29.915885"],["-90.017730","29.915720"],["-90.017735","29.915618"],["-90.017740","29.915515"],["-90.017745","29.915413"],["-90.017832","29.915316"],["-90.017730","29.915310"],["-90.017736","29.915213"],["-90.017743","29.915116"],["-90.017749","29.915019"],["-90.017755","29.914923"],["-90.017761","29.914826"],["-90.017768","29.914729"],["-90.017774","29.914632"],["-90.017780","29.914535"],["-90.017786","29.914438"],["-90.017793","29.914341"],["-90.017799","29.914244"],["-90.017805","29.914148"],["-90.017811","29.914051"],["-90.017818","29.913954"],["-90.017824","29.913857"],["-90.017830","29.913760"],["-90.017950","29.913770"],["-90.018110","29.913810"],["-90.018200","29.913830"],["-90.018270","29.913850"],["-90.018280","29.913850"],["-90.018239","29.913926"],["-90.018280","29.913850"],["-90.018420","29.913910"],["-90.018560","29.913970"],["-90.018650","29.914020"],["-90.018710","29.914080"],["-90.018810","29.914155"],["-90.018910","29.914230"],["-90.019010","29.914305"],["-90.019110","29.914380"],["-90.019160","29.914420"],["-90.019275","29.914513"],["-90.019390","29.914605"],["-90.019505","29.914698"],["-90.019620","29.914790"],["-90.019732","29.914880"],["-90.019845","29.914970"],["-90.019957","29.915060"],["-90.020070","29.915150"],["-90.020230","29.915280"],["-90.020364","29.915388"],["-90.020497","29.915495"],["-90.020631","29.915603"],["-90.020765","29.915710"],["-90.020899","29.915818"],["-90.021032","29.915925"],["-90.021166","29.916033"],["-90.021300","29.916140"],["-90.021240","29.916210"],["-90.021130","29.916315"],["-90.021020","29.916420"],["-90.020945","29.916500"],["-90.020870","29.916580"],["-90.020760","29.916710"],["-90.020690","29.916673"],["-90.020760","29.916710"],["-90.020700","29.916830"],["-90.020650","29.916930"],["-90.020610","29.917070"],["-90.020585","29.917165"],["-90.020560","29.917260"],["-90.020555","29.917360"],["-90.020550","29.917460"],["-90.020540","29.917590"],["-90.020540","29.917670"],["-90.020530","29.917845"],["-90.020520","29.918020"],["-90.020510","29.918195"],["-90.020500","29.918370"],["-90.020410","29.918369"],["-90.020500","29.918370"],["-90.020490","29.918470"],["-90.020604","29.918476"],["-90.020717","29.918483"],["-90.020831","29.918489"],["-90.020945","29.918495"],["-90.021059","29.918501"],["-90.021172","29.918508"],["-90.021286","29.918514"],["-90.021400","29.918520"],["-90.021510","29.918530"],["-90.021685","29.918535"],["-90.021860","29.918540"],["-90.022020","29.918550"],["-90.022230","29.918580"],["-90.022410","29.918620"],["-90.022590","29.918660"],["-90.022520","29.918840"],["-90.022433","29.918820"],["-90.022520","29.918840"],["-90.022460","29.919020"],["-90.022430","29.919140"],["-90.022400","29.919270"],["-90.022380","29.919410"],["-90.022370","29.919510"],["-90.022380","29.919690"],["-90.022390","29.919850"],["-90.022410","29.919965"],["-90.022430","29.920080"],["-90.022470","29.920200"],["-90.022510","29.920320"],["-90.022540","29.920450"],["-90.022412","29.920470"],["-90.022540","29.920450"],["-90.022565","29.920570"],["-90.022590","29.920690"],["-90.022610","29.920770"],["-90.022635","29.920945"],["-90.022660","29.921120"],["-90.022670","29.921250"],["-90.022680","29.921355"],["-90.022690","29.921460"],["-90.022700","29.921530"],["-90.022700","29.921660"],["-90.022700","29.921790"],["-90.022695","29.921930"],["-90.022690","29.922070"],["-90.022680","29.922160"],["-90.022650","29.922250"],["-90.022610","29.922345"],["-90.022570","29.922440"],["-90.022454","29.922398"],["-90.022570","29.922440"],["-90.022510","29.922550"],["-90.022453","29.922650"],["-90.022395","29.922750"],["-90.022338","29.922850"],["-90.022280","29.922950"],["-90.022240","29.923020"],["-90.022200","29.923110"],["-90.022175","29.923205"],["-90.022150","29.923300"],["-90.022133","29.923400"],["-90.022115","29.923500"],["-90.022098","29.923600"],["-90.022080","29.923700"],["-90.022040","29.923850"],["-90.021990","29.923985"],["-90.021940","29.924120"],["-90.021900","29.924200"],["-90.021848","29.924288"],["-90.021795","29.924375"],["-90.021743","29.924463"],["-90.021690","29.924550"],["-90.021620","29.924710"],["-90.021565","29.924638"],["-90.021620","29.924710"],["-90.021510","29.924790"],["-90.021500","29.924800"],["-90.021440","29.924910"],["-90.021380","29.924990"],["-90.021290","29.925130"],["-90.021230","29.925220"],["-90.021145","29.925360"],["-90.021060","29.925500"],["-90.020990","29.925640"],["-90.020897","29.925605"],["-90.020990","29.925640"],["-90.020903","29.925800"],["-90.020815","29.925960"],["-90.020728","29.926120"],["-90.020640","29.926280"],["-90.020590","29.926370"],["-90.020540","29.926460"],["-90.020460","29.926620"],["-90.020405","29.926725"],["-90.020350","29.926830"],["-90.020295","29.926935"],["-90.020240","29.927040"],["-90.020200","29.927135"],["-90.020160","29.927230"],["-90.020090","29.927400"],["-90.020026","29.927384"],["-90.020090","29.927400"],["-90.020060","29.927500"],["-90.020020","29.927660"],["-90.019995","29.927770"],["-90.019970","29.927880"],["-90.019960","29.928000"],["-90.019940","29.928190"],["-90.019930","29.928380"],["-90.019930","29.928450"],["-90.019940","29.928570"],["-90.019940","29.928650"],["-90.019965","29.928840"],["-90.019990","29.929030"],["-90.020010","29.929210"],["-90.020010","29.929300"],["-90.020020","29.929470"],["-90.020020","29.929550"],["-90.020030","29.929710"],["-90.020010","29.929860"],["-90.020000","29.930000"],["-90.019985","29.930100"],["-90.019970","29.930200"],["-90.019907","29.930197"],["-90.019970","29.930200"],["-90.019970","29.930240"],["-90.019950","29.930340"],["-90.019930","29.930440"],["-90.020070","29.930480"],["-90.020265","29.930495"],["-90.020460","29.930510"],["-90.020660","29.930520"],["-90.020720","29.930530"],["-90.020870","29.930540"],["-90.021000","29.930550"],["-90.021210","29.930558"],["-90.021420","29.930565"],["-90.021588","29.930568"],["-90.021757","29.930571"],["-90.021837","29.930630"],["-90.022005","29.930629"],["-90.022172","29.930629"],["-90.022340","29.930628"],["-90.022508","29.930627"],["-90.022670","29.930635"],["-90.022832","29.930643"],["-90.022994","29.930652"],["-90.023157","29.930660"],["-90.023319","29.930668"],["-90.023481","29.930676"],["-90.023644","29.930684"],["-90.023806","29.930692"],["-90.023968","29.930700"],["-90.024130","29.930708"],["-90.024293","29.930717"],["-90.024455","29.930725"],["-90.024617","29.930733"],["-90.024779","29.930741"],["-90.024942","29.930749"],["-90.025104","29.930757"],["-90.025218","29.930772"],["-90.025332","29.930786"],["-90.025340","29.930720"],["-90.025490","29.930730"],["-90.025642","29.930738"],["-90.025795","29.930745"],["-90.025947","29.930753"],["-90.026100","29.930760"],["-90.026300","29.930770"],["-90.026500","29.930770"],["-90.026620","29.930780"],["-90.026690","29.930790"],["-90.026770","29.930800"],["-90.026890","29.930830"],["-90.027025","29.930880"],["-90.027160","29.930930"],["-90.027295","29.930980"],["-90.027430","29.931030"],["-90.027500","29.931047"],["-90.027500","29.931050"],["-90.027550","29.931070"],["-90.027559","29.930928"],["-90.027568","29.930785"],["-90.027576","29.930643"],["-90.027585","29.930500"],["-90.027594","29.930358"],["-90.027603","29.930215"],["-90.027611","29.930073"],["-90.027620","29.929930"],["-90.027630","29.929770"],["-90.027638","29.929658"],["-90.027645","29.929545"],["-90.027653","29.929433"],["-90.027662","29.929315"],["-90.027718","29.929325"],["-90.027720","29.929260"],["-90.027660","29.929250"],["-90.027620","29.929250"],["-90.027560","29.929240"],["-90.027510","29.929230"],["-90.027430","29.929210"],["-90.027360","29.929180"],["-90.027240","29.929130"],["-90.027190","29.929110"],["-90.027130","29.929070"],["-90.027070","29.929040"],["-90.027040","29.929020"],["-90.027010","29.929000"],["-90.026910","29.928960"],["-90.026820","29.928940"],["-90.026700","29.928920"],["-90.026670","29.928910"],["-90.026620","29.928910"],["-90.026530","29.928900"],["-90.026410","29.928910"],["-90.026300","29.928890"],["-90.026230","29.928880"],["-90.026170","29.928870"],["-90.026100","29.928850"],["-90.026040","29.928830"],["-90.026030","29.928830"],["-90.025960","29.928820"],["-90.025842","29.928768"],["-90.025725","29.928715"],["-90.025607","29.928663"],["-90.025490","29.928610"],["-90.025375","29.928570"],["-90.025260","29.928530"],["-90.025090","29.928460"],["-90.024985","29.928415"],["-90.024880","29.928370"],["-90.024820","29.928340"],["-90.024680","29.928290"],["-90.024580","29.928240"],["-90.024445","29.928185"],["-90.024310","29.928130"],["-90.024240","29.928090"],["-90.024200","29.928070"],["-90.024170","29.928060"],["-90.024140","29.928030"],["-90.024120","29.928020"],["-90.024100","29.928000"],["-90.024080","29.927970"],["-90.024080","29.927940"],["-90.024080","29.927870"],["-90.024090","29.927780"],["-90.024098","29.927650"],["-90.024105","29.927520"],["-90.024113","29.927390"],["-90.024120","29.927260"],["-90.024140","29.927100"],["-90.024150","29.926940"],["-90.024155","29.926840"],["-90.024160","29.926740"],["-90.024160","29.926620"],["-90.024160","29.926460"],["-90.024360","29.926540"],["-90.024460","29.926585"],["-90.024560","29.926630"],["-90.024760","29.926710"],["-90.024900","29.926770"],["-90.025050","29.926850"],["-90.025200","29.926890"],["-90.025330","29.926950"],["-90.025475","29.927013"],["-90.025620","29.927075"],["-90.025765","29.927138"],["-90.025910","29.927200"],["-90.026090","29.927275"],["-90.026270","29.927350"],["-90.026376","29.927395"],["-90.026482","29.927440"],["-90.026589","29.927485"],["-90.026695","29.927530"],["-90.026801","29.927575"],["-90.026907","29.927620"],["-90.027014","29.927665"],["-90.027120","29.927710"],["-90.027221","29.927753"],["-90.027321","29.927795"],["-90.027422","29.927838"],["-90.027522","29.927880"],["-90.027623","29.927923"],["-90.027724","29.927965"],["-90.027824","29.928008"],["-90.027925","29.928050"],["-90.028026","29.928093"],["-90.028126","29.928135"],["-90.028227","29.928178"],["-90.028327","29.928220"],["-90.028428","29.928263"],["-90.028529","29.928305"],["-90.028629","29.928348"],["-90.028730","29.928390"],["-90.028780","29.928420"],["-90.028750","29.928473"],["-90.028780","29.928420"],["-90.028910","29.928470"],["-90.029010","29.928510"],["-90.029060","29.928540"],["-90.029210","29.928600"],["-90.029280","29.928640"],["-90.029360","29.928680"],["-90.029490","29.928760"],["-90.029620","29.928840"],["-90.029720","29.928900"],["-90.029810","29.928950"],["-90.029900","29.929000"],["-90.030030","29.929070"],["-90.030160","29.929140"],["-90.030300","29.929200"],["-90.030440","29.929260"],["-90.030580","29.929320"],["-90.030720","29.929380"],["-90.030850","29.929435"],["-90.030980","29.929490"],["-90.031150","29.929555"],["-90.031320","29.929620"],["-90.031420","29.929670"],["-90.031540","29.929700"],["-90.031750","29.929750"],["-90.031860","29.929760"],["-90.031950","29.929770"],["-90.031970","29.929770"],["-90.032149","29.929802"],["-90.032328","29.929834"],["-90.032507","29.929866"],["-90.032686","29.929898"],["-90.032849","29.929946"],["-90.033011","29.929994"],["-90.033173","29.930041"],["-90.033336","29.930089"],["-90.033498","29.930137"],["-90.033660","29.930184"],["-90.033822","29.930232"],["-90.033985","29.930280"],["-90.034099","29.930297"],["-90.034213","29.930314"],["-90.034327","29.930332"],["-90.034441","29.930349"],["-90.034555","29.930367"],["-90.034669","29.930384"],["-90.034783","29.930402"],["-90.034897","29.930419"],["-90.035048","29.930460"],["-90.035199","29.930500"],["-90.035354","29.930480"],["-90.035508","29.930461"],["-90.035693","29.930469"],["-90.035878","29.930477"],["-90.036063","29.930485"],["-90.036248","29.930493"],["-90.036424","29.930499"],["-90.036600","29.930505"],["-90.036775","29.930511"],["-90.036951","29.930517"],["-90.037071","29.930553"],["-90.037190","29.930590"],["-90.037343","29.930512"],["-90.037472","29.930520"],["-90.037601","29.930527"],["-90.037731","29.930535"],["-90.037860","29.930543"],["-90.037989","29.930550"],["-90.038119","29.930558"],["-90.038248","29.930566"],["-90.038377","29.930574"],["-90.038507","29.930581"],["-90.038636","29.930589"],["-90.038765","29.930597"],["-90.038895","29.930604"],["-90.039024","29.930612"],["-90.039153","29.930620"],["-90.039283","29.930627"],["-90.039412","29.930635"],["-90.039550","29.930640"],["-90.039750","29.930650"],["-90.039870","29.930655"],["-90.039990","29.930660"],["-90.040110","29.930665"],["-90.040230","29.930665"],["-90.040350","29.930669"],["-90.040470","29.930673"],["-90.040590","29.930676"],["-90.040710","29.930680"],["-90.040822","29.930685"],["-90.040935","29.930690"],["-90.041047","29.930695"],["-90.041160","29.930700"],["-90.041285","29.930698"],["-90.041410","29.930695"],["-90.041535","29.930693"],["-90.041660","29.930690"],["-90.041730","29.930690"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041835","29.930460"],["-90.041840","29.930360"],["-90.041845","29.930260"],["-90.041850","29.930160"],["-90.041956","29.930163"],["-90.041850","29.930160"],["-90.041860","29.930000"],["-90.041870","29.929840"],["-90.041880","29.929710"],["-90.041895","29.929525"],["-90.041910","29.929340"],["-90.041915","29.929200"],["-90.041920","29.929060"],["-90.041930","29.928880"],["-90.041940","29.928730"],["-90.041948","29.928618"],["-90.041955","29.928505"],["-90.041963","29.928393"],["-90.041970","29.928280"],["-90.041978","29.928168"],["-90.041985","29.928055"],["-90.041993","29.927943"],["-90.042002","29.927810"],["-90.042011","29.927676"],["-90.042020","29.927543"],["-90.042029","29.927410"],["-90.042038","29.927276"],["-90.042047","29.927143"],["-90.042056","29.927009"],["-90.042065","29.926876"],["-90.042124","29.926730"],["-90.042184","29.926584"],["-90.042070","29.926548"],["-90.042082","29.926381"],["-90.042095","29.926214"],["-90.042107","29.926046"],["-90.042119","29.925879"],["-90.042132","29.925711"],["-90.042144","29.925544"],["-90.042157","29.925377"],["-90.042169","29.925209"],["-90.042258","29.925096"],["-90.042188","29.924949"],["-90.042196","29.924812"],["-90.042204","29.924674"],["-90.042212","29.924537"],["-90.042220","29.924400"],["-90.042230","29.924300"],["-90.042240","29.924150"],["-90.042250","29.924000"],["-90.042260","29.923840"],["-90.042270","29.923730"],["-90.042280","29.923580"],["-90.042290","29.923480"],["-90.042300","29.923330"],["-90.042310","29.923180"],["-90.042320","29.923030"],["-90.042320","29.922960"],["-90.042320","29.922930"],["-90.042310","29.922920"],["-90.042369","29.922906"],["-90.042376","29.922722"],["-90.042437","29.922631"],["-90.042498","29.922539"],["-90.042559","29.922448"],["-90.042620","29.922356"],["-90.042681","29.922265"],["-90.042742","29.922173"],["-90.042803","29.922082"],["-90.042864","29.921990"],["-90.042925","29.921898"],["-90.042986","29.921807"],["-90.043047","29.921715"],["-90.043126","29.921594"],["-90.043205","29.921474"],["-90.043284","29.921353"],["-90.043363","29.921233"],["-90.043322","29.921135"],["-90.043282","29.921037"],["-90.043177","29.920984"],["-90.043073","29.920930"],["-90.043126","29.920845"],["-90.043179","29.920759"],["-90.043232","29.920673"],["-90.043285","29.920587"],["-90.043338","29.920502"],["-90.043391","29.920416"],["-90.043444","29.920330"],["-90.043497","29.920244"],["-90.043550","29.920158"],["-90.043603","29.920073"],["-90.043656","29.919987"],["-90.043709","29.919901"],["-90.043762","29.919815"],["-90.043815","29.919730"],["-90.043868","29.919644"],["-90.043921","29.919558"],["-90.044033","29.919630"],["-90.044146","29.919702"],["-90.044081","29.919798"],["-90.044016","29.919895"],["-90.043951","29.919991"],["-90.043886","29.920087"],["-90.043811","29.920204"],["-90.043735","29.920321"],["-90.043660","29.920438"],["-90.043584","29.920555"],["-90.043509","29.920672"],["-90.043433","29.920789"],["-90.043358","29.920906"],["-90.043282","29.921023"],["-90.043164","29.920981"],["-90.043046","29.920939"],["-90.042883","29.920939"],["-90.042719","29.920939"],["-90.042655","29.921040"],["-90.042592","29.921142"],["-90.042528","29.921243"],["-90.042465","29.921345"],["-90.042401","29.921446"],["-90.042337","29.921547"],["-90.042283","29.921634"],["-90.042228","29.921720"],["-90.042174","29.921807"],["-90.042120","29.921894"],["-90.042065","29.921980"],["-90.042011","29.922067"],["-90.041957","29.922153"],["-90.041902","29.922240"],["-90.041848","29.922327"],["-90.041793","29.922413"],["-90.041739","29.922500"],["-90.041685","29.922587"],["-90.041630","29.922673"],["-90.041576","29.922760"],["-90.041522","29.922846"],["-90.041467","29.922933"],["-90.041413","29.923020"],["-90.041359","29.923106"],["-90.041304","29.923193"],["-90.041250","29.923280"],["-90.041195","29.923366"],["-90.041141","29.923453"],["-90.041087","29.923539"],["-90.041032","29.923626"],["-90.040978","29.923713"],["-90.040924","29.923799"],["-90.040869","29.923886"],["-90.040815","29.923973"],["-90.040761","29.924059"],["-90.040706","29.924146"],["-90.040652","29.924232"],["-90.040598","29.924319"],["-90.040543","29.924406"],["-90.040489","29.924492"],["-90.040434","29.924579"],["-90.040380","29.924666"],["-90.040326","29.924752"],["-90.040271","29.924839"],["-90.040217","29.924925"],["-90.040163","29.925012"],["-90.040108","29.925099"],["-90.040054","29.925185"],["-90.040000","29.925272"],["-90.039945","29.925359"],["-90.039891","29.925445"],["-90.039837","29.925532"],["-90.039782","29.925618"],["-90.039728","29.925705"],["-90.039673","29.925792"],["-90.039619","29.925878"],["-90.039565","29.925965"],["-90.039510","29.926052"],["-90.039456","29.926138"],["-90.039402","29.926225"],["-90.039347","29.926311"],["-90.039293","29.926398"],["-90.039239","29.926485"],["-90.039184","29.926571"],["-90.039130","29.926658"],["-90.039075","29.926745"],["-90.039021","29.926831"],["-90.038967","29.926918"],["-90.038912","29.927004"],["-90.038858","29.927091"],["-90.038780","29.927250"],["-90.038702","29.927409"],["-90.038643","29.927536"],["-90.038584","29.927664"],["-90.038525","29.927791"],["-90.038466","29.927918"],["-90.038356","29.928055"],["-90.038246","29.928193"],["-90.038187","29.928306"],["-90.038114","29.928408"],["-90.038040","29.928509"],["-90.037959","29.928632"],["-90.037879","29.928755"],["-90.037852","29.928853"],["-90.037825","29.928950"],["-90.037799","29.929048"],["-90.037772","29.929146"],["-90.037749","29.929251"],["-90.037726","29.929357"],["-90.037703","29.929463"],["-90.037681","29.929569"],["-90.037652","29.929703"],["-90.037624","29.929838"],["-90.037596","29.929973"],["-90.037568","29.930108"],["-90.037529","29.930241"],["-90.037491","29.930375"],["-90.037452","29.930508"],["-90.037414","29.930642"],["-90.037399","29.930764"],["-90.037384","29.930886"],["-90.037369","29.931008"],["-90.037355","29.931130"],["-90.037330","29.931283"],["-90.037306","29.931437"],["-90.037282","29.931590"],["-90.037258","29.931743"],["-90.037246","29.931853"],["-90.037234","29.931962"],["-90.037222","29.932071"],["-90.037210","29.932180"],["-90.037306","29.932320"],["-90.037300","29.932453"],["-90.037293","29.932587"],["-90.037286","29.932721"],["-90.037279","29.932854"],["-90.037273","29.932988"],["-90.037266","29.933122"],["-90.037259","29.933255"],["-90.037253","29.933389"],["-90.037253","29.933532"],["-90.037253","29.933675"],["-90.037253","29.933818"],["-90.037253","29.933961"],["-90.037259","29.934086"],["-90.037266","29.934212"],["-90.037273","29.934337"],["-90.037279","29.934463"],["-90.037317","29.934630"],["-90.037355","29.934798"],["-90.037393","29.934965"],["-90.037431","29.935133"],["-90.037480","29.935237"],["-90.037529","29.935341"],["-90.037577","29.935445"],["-90.037626","29.935549"],["-90.037675","29.935653"],["-90.037724","29.935757"],["-90.037773","29.935861"],["-90.037822","29.935965"],["-90.037930","29.936100"],["-90.038037","29.936235"],["-90.038144","29.936370"],["-90.038251","29.936504"],["-90.038331","29.936588"],["-90.038410","29.936671"],["-90.038490","29.936754"],["-90.038569","29.936837"],["-90.038690","29.936937"],["-90.038812","29.937037"],["-90.038933","29.937137"],["-90.039055","29.937237"],["-90.039196","29.937322"],["-90.039337","29.937408"],["-90.039478","29.937493"],["-90.039619","29.937578"],["-90.039760","29.937664"],["-90.039902","29.937749"],["-90.040043","29.937835"],["-90.040184","29.937920"],["-90.040320","29.937976"],["-90.040456","29.938032"],["-90.040592","29.938087"],["-90.040728","29.938143"],["-90.040923","29.938195"],["-90.041119","29.938247"],["-90.041314","29.938299"],["-90.041509","29.938351"],["-90.041685","29.938378"],["-90.041862","29.938404"],["-90.042038","29.938431"],["-90.042214","29.938458"],["-90.042347","29.938465"],["-90.042480","29.938472"],["-90.042613","29.938479"],["-90.042745","29.938486"],["-90.042950","29.938497"],["-90.043155","29.938509"],["-90.043359","29.938520"],["-90.043564","29.938532"],["-90.043773","29.938545"],["-90.043982","29.938558"],["-90.044191","29.938572"],["-90.044401","29.938585"],["-90.044530","29.938588"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052548","29.938928"],["-90.052755","29.938925"],["-90.052963","29.938923"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053385","29.938918"],["-90.053590","29.938915"],["-90.053795","29.938913"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060145","29.938860"],["-90.060270","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060760","29.938858"],["-90.060980","29.938855"],["-90.061200","29.938853"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062350","29.938840"],["-90.062560","29.938840"],["-90.062780","29.938840"],["-90.062910","29.938840"],["-90.063040","29.938840"],["-90.063170","29.938840"],["-90.063300","29.938840"],["-90.063380","29.938830"],["-90.063560","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067575","29.939513"],["-90.067680","29.939545"],["-90.067785","29.939578"],["-90.067890","29.939610"],["-90.068080","29.939660"],["-90.068200","29.939700"],["-90.068320","29.939740"],["-90.068430","29.939780"],["-90.068530","29.939810"],["-90.068670","29.939860"],["-90.068780","29.939900"],["-90.068920","29.939960"],["-90.069000","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940190"],["-90.069470","29.940230"],["-90.069620","29.940320"],["-90.069795","29.940415"],["-90.069970","29.940510"],["-90.070077","29.940570"],["-90.070185","29.940630"],["-90.070292","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070905","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071685","29.941416"],["-90.071811","29.941481"],["-90.071936","29.941547"],["-90.072062","29.941612"],["-90.072187","29.941678"],["-90.072312","29.941744"],["-90.072438","29.941809"],["-90.072563","29.941875"],["-90.072726","29.941979"],["-90.072888","29.942084"],["-90.073051","29.942188"],["-90.073213","29.942293"],["-90.073313","29.942358"],["-90.073413","29.942422"],["-90.073513","29.942487"],["-90.073613","29.942552"],["-90.073713","29.942617"],["-90.073813","29.942682"],["-90.073913","29.942746"],["-90.074013","29.942811"],["-90.074148","29.942903"],["-90.074266","29.942974"],["-90.074383","29.943046"],["-90.074501","29.943117"],["-90.074619","29.943188"],["-90.074751","29.943292"],["-90.074834","29.943362"],["-90.074917","29.943432"],["-90.075001","29.943502"],["-90.075084","29.943572"],["-90.075176","29.943633"],["-90.075267","29.943693"],["-90.075359","29.943754"],["-90.075451","29.943814"],["-90.075560","29.943881"],["-90.075668","29.943948"],["-90.075777","29.944014"],["-90.075886","29.944081"],["-90.076040","29.944182"],["-90.076093","29.944268"],["-90.076146","29.944353"],["-90.076193","29.944463"],["-90.076241","29.944573"],["-90.076259","29.944761"],["-90.076214","29.944917"],["-90.076143","29.945071"],["-90.076035","29.945204"],["-90.075928","29.945338"],["-90.075888","29.945475"],["-90.075848","29.945612"],["-90.075749","29.945731"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945980"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075473","29.946350"],["-90.075445","29.946450"],["-90.075418","29.946550"],["-90.075390","29.946650"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-89.982893","29.923220"],["-89.985229","29.923823"],["-90.027718","29.929325"],["-90.027500","29.931047"],["-89.995155","29.909614"],["-90.000925","29.912917"],["-90.002558","29.914001"],["-90.004908","29.915361"],["-90.008111","29.917394"],["-90.010846","29.918951"],["-90.014817","29.920931"],["-90.017832","29.915316"],["-90.020410","29.918369"],["-90.022433","29.918820"],["-90.022412","29.920470"],["-90.022454","29.922398"],["-90.021565","29.924638"],["-90.020026","29.927384"],["-90.019907","29.930197"],["-90.021837","29.930630"],["-90.025332","29.930786"],["-89.986128","29.915555"],["-89.986380","29.914057"],["-89.986579","29.912542"],["-89.986817","29.910486"],["-89.989202","29.906781"],["-89.991813","29.904860"],["-90.075299","29.946626"],["-89.993181","29.906756"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.993148","29.908361"],["-90.018239","29.913926"],["-90.037190","29.930590"],["-90.020897","29.925605"],["-90.020690","29.916673"],["-89.985303","29.922255"],["-89.985860","29.917719"],["-90.035199","29.930500"],["-89.989615","29.906473"],["-90.042369","29.922906"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-89.982893","29.923220"],["-89.982940","29.923140"],["-89.983040","29.923180"],["-89.983150","29.923230"],["-89.983260","29.923280"],["-89.983370","29.923330"],["-89.983480","29.923380"],["-89.983602","29.923433"],["-89.983725","29.923485"],["-89.983847","29.923538"],["-89.983970","29.923590"],["-89.984107","29.923645"],["-89.984245","29.923700"],["-89.984382","29.923755"],["-89.984520","29.923810"],["-89.984662","29.923873"],["-89.984805","29.923935"],["-89.984947","29.923998"],["-89.985090","29.924060"],["-89.985110","29.923880"],["-89.985120","29.923810"],["-89.985229","29.923823"],["-89.985130","29.923810"],["-89.985143","29.923703"],["-89.985155","29.923595"],["-89.985168","29.923488"],["-89.985180","29.923380"],["-89.985195","29.923260"],["-89.985210","29.923140"],["-89.985224","29.923030"],["-89.985238","29.922920"],["-89.985251","29.922810"],["-89.985265","29.922700"],["-89.985279","29.922590"],["-89.985293","29.922480"],["-89.985306","29.922370"],["-89.985330","29.922230"],["-89.985303","29.922255"],["-89.985330","29.922230"],["-89.985343","29.922118"],["-89.985355","29.922005"],["-89.985368","29.921893"],["-89.985380","29.921780"],["-89.985393","29.921668"],["-89.985405","29.921555"],["-89.985418","29.921443"],["-89.985430","29.921330"],["-89.985444","29.921229"],["-89.985458","29.921128"],["-89.985471","29.921026"],["-89.985485","29.920925"],["-89.985499","29.920824"],["-89.985513","29.920723"],["-89.985526","29.920621"],["-89.985540","29.920520"],["-89.985550","29.920420"],["-89.985565","29.920275"],["-89.985580","29.920130"],["-89.985600","29.919990"],["-89.985620","29.919850"],["-89.985640","29.919685"],["-89.985660","29.919520"],["-89.985673","29.919410"],["-89.985685","29.919300"],["-89.985698","29.919190"],["-89.985710","29.919080"],["-89.985725","29.918963"],["-89.985740","29.918845"],["-89.985755","29.918728"],["-89.985770","29.918610"],["-89.985788","29.918478"],["-89.985805","29.918345"],["-89.985823","29.918213"],["-89.985840","29.918080"],["-89.985860","29.917900"],["-89.985875","29.917795"],["-89.985890","29.917690"],["-89.985860","29.917719"],["-89.985890","29.917690"],["-89.985903","29.917586"],["-89.985915","29.917483"],["-89.985928","29.917379"],["-89.985940","29.917275"],["-89.985953","29.917171"],["-89.985965","29.917068"],["-89.985978","29.916964"],["-89.985990","29.916860"],["-89.986008","29.916700"],["-89.986025","29.916540"],["-89.986043","29.916380"],["-89.986060","29.916220"],["-89.986060","29.916170"],["-89.986080","29.916018"],["-89.986100","29.915865"],["-89.986120","29.915713"],["-89.986140","29.915560"],["-89.986128","29.915555"],["-89.986140","29.915560"],["-89.986150","29.915480"],["-89.986170","29.915310"],["-89.986190","29.915140"],["-89.986210","29.914970"],["-89.986230","29.914800"],["-89.986255","29.914613"],["-89.986280","29.914425"],["-89.986305","29.914238"],["-89.986380","29.914057"],["-89.986330","29.914050"],["-89.986340","29.913950"],["-89.986363","29.913778"],["-89.986385","29.913605"],["-89.986408","29.913433"],["-89.986430","29.913260"],["-89.986448","29.913098"],["-89.986465","29.912935"],["-89.986483","29.912773"],["-89.986500","29.912610"],["-89.986510","29.912510"],["-89.986580","29.912520"],["-89.986579","29.912542"],["-89.986580","29.912520"],["-89.986510","29.912510"],["-89.986530","29.912348"],["-89.986550","29.912185"],["-89.986570","29.912023"],["-89.986590","29.911860"],["-89.986613","29.911675"],["-89.986635","29.911490"],["-89.986658","29.911305"],["-89.986680","29.911120"],["-89.986693","29.911008"],["-89.986705","29.910895"],["-89.986718","29.910783"],["-89.986730","29.910670"],["-89.986760","29.910480"],["-89.986817","29.910486"],["-89.986760","29.910480"],["-89.986770","29.910370"],["-89.986788","29.910218"],["-89.986805","29.910065"],["-89.986823","29.909913"],["-89.986840","29.909760"],["-89.986860","29.909616"],["-89.986880","29.909473"],["-89.986900","29.909329"],["-89.986920","29.909185"],["-89.986940","29.909041"],["-89.986960","29.908898"],["-89.986980","29.908754"],["-89.987000","29.908610"],["-89.987015","29.908473"],["-89.987030","29.908335"],["-89.987045","29.908198"],["-89.987060","29.908060"],["-89.987070","29.907948"],["-89.987080","29.907835"],["-89.987090","29.907723"],["-89.987100","29.907610"],["-89.987110","29.907550"],["-89.987130","29.907500"],["-89.987150","29.907450"],["-89.987210","29.907400"],["-89.987295","29.907478"],["-89.987380","29.907555"],["-89.987465","29.907633"],["-89.987550","29.907710"],["-89.987670","29.907820"],["-89.987800","29.907690"],["-89.987840","29.907650"],["-89.987910","29.907600"],["-89.987920","29.907600"],["-89.987960","29.907570"],["-89.988010","29.907530"],["-89.988122","29.907447"],["-89.988235","29.907364"],["-89.988347","29.907281"],["-89.988459","29.907198"],["-89.988572","29.907115"],["-89.988684","29.907032"],["-89.988796","29.906949"],["-89.988909","29.906866"],["-89.989055","29.906824"],["-89.989202","29.906781"],["-89.989268","29.906629"],["-89.989442","29.906551"],["-89.989615","29.906473"],["-89.989550","29.906400"],["-89.989696","29.906290"],["-89.989843","29.906180"],["-89.989989","29.906070"],["-89.990135","29.905960"],["-89.990281","29.905850"],["-89.990428","29.905740"],["-89.990574","29.905630"],["-89.990720","29.905520"],["-89.990850","29.905445"],["-89.990980","29.905370"],["-89.991095","29.905285"],["-89.991210","29.905200"],["-89.991325","29.905115"],["-89.991440","29.905030"],["-89.991530","29.904955"],["-89.991620","29.904880"],["-89.991710","29.904805"],["-89.991800","29.904730"],["-89.991880","29.904810"],["-89.991813","29.904860"],["-89.991880","29.904810"],["-89.992000","29.904920"],["-89.992100","29.905030"],["-89.992220","29.905150"],["-89.992302","29.905235"],["-89.992385","29.905320"],["-89.992467","29.905405"],["-89.992550","29.905490"],["-89.992645","29.905590"],["-89.992740","29.905690"],["-89.992750","29.905700"],["-89.992870","29.905820"],["-89.992880","29.905840"],["-89.992960","29.905940"],["-89.993040","29.906080"],["-89.993110","29.906200"],["-89.993155","29.906305"],["-89.993200","29.906410"],["-89.993240","29.906570"],["-89.993260","29.906670"],["-89.993181","29.906756"],["-89.993270","29.906750"],["-89.993270","29.906800"],["-89.993265","29.906928"],["-89.993260","29.907055"],["-89.993255","29.907183"],["-89.993250","29.907310"],["-89.993250","29.907330"],["-89.993243","29.907488"],["-89.993235","29.907645"],["-89.993228","29.907803"],["-89.993220","29.907960"],["-89.993220","29.908065"],["-89.993220","29.908170"],["-89.993220","29.908310"],["-89.993220","29.908360"],["-89.993148","29.908361"],["-89.993220","29.908360"],["-89.993210","29.908440"],["-89.993210","29.908540"],["-89.993210","29.908640"],["-89.993215","29.908790"],["-89.993220","29.908940"],["-89.993215","29.909100"],["-89.993210","29.909260"],["-89.993360","29.909270"],["-89.993505","29.909290"],["-89.993650","29.909310"],["-89.993800","29.909335"],["-89.993950","29.909360"],["-89.994147","29.909395"],["-89.994345","29.909430"],["-89.994542","29.909465"],["-89.994740","29.909500"],["-89.994950","29.909540"],["-89.995160","29.909580"],["-89.995155","29.909614"],["-89.995160","29.909580"],["-89.995350","29.909620"],["-89.995530","29.909670"],["-89.995710","29.909720"],["-89.995880","29.909780"],["-89.996070","29.909850"],["-89.996255","29.909925"],["-89.996440","29.910000"],["-89.996565","29.910065"],["-89.996690","29.910130"],["-89.996805","29.910190"],["-89.996920","29.910250"],["-89.997035","29.910320"],["-89.997150","29.910390"],["-89.997320","29.910500"],["-89.997360","29.910530"],["-89.997527","29.910640"],["-89.997695","29.910750"],["-89.997862","29.910860"],["-89.998030","29.910970"],["-89.998205","29.911085"],["-89.998380","29.911200"],["-89.998555","29.911315"],["-89.998730","29.911430"],["-89.998905","29.911545"],["-89.999080","29.911660"],["-89.999247","29.911770"],["-89.999415","29.911880"],["-89.999582","29.911990"],["-89.999750","29.912100"],["-89.999890","29.912193"],["-90.000030","29.912285"],["-90.000170","29.912378"],["-90.000310","29.912470"],["-90.000440","29.912555"],["-90.000570","29.912640"],["-90.000665","29.912703"],["-90.000760","29.912765"],["-90.000855","29.912828"],["-90.000950","29.912890"],["-90.000925","29.912917"],["-90.000950","29.912890"],["-90.001020","29.912940"],["-90.001110","29.913000"],["-90.001200","29.913060"],["-90.001352","29.913158"],["-90.001505","29.913255"],["-90.001657","29.913353"],["-90.001810","29.913450"],["-90.001909","29.913513"],["-90.002007","29.913575"],["-90.002106","29.913638"],["-90.002205","29.913700"],["-90.002304","29.913763"],["-90.002402","29.913825"],["-90.002501","29.913888"],["-90.002558","29.914001"],["-90.002600","29.913950"],["-90.002680","29.914000"],["-90.002782","29.914060"],["-90.002885","29.914120"],["-90.002987","29.914180"],["-90.003090","29.914240"],["-90.003192","29.914300"],["-90.003295","29.914360"],["-90.003397","29.914420"],["-90.003500","29.914480"],["-90.003596","29.914534"],["-90.003692","29.914588"],["-90.003789","29.914641"],["-90.003885","29.914695"],["-90.003981","29.914749"],["-90.004077","29.914803"],["-90.004174","29.914856"],["-90.004270","29.914910"],["-90.004445","29.915003"],["-90.004620","29.915095"],["-90.004795","29.915188"],["-90.004970","29.915280"],["-90.004908","29.915361"],["-90.004970","29.915280"],["-90.005060","29.915320"],["-90.005190","29.915390"],["-90.005320","29.915460"],["-90.005500","29.915558"],["-90.005680","29.915655"],["-90.005860","29.915753"],["-90.006040","29.915850"],["-90.006215","29.915945"],["-90.006390","29.916040"],["-90.006575","29.916145"],["-90.006760","29.916250"],["-90.006810","29.916290"],["-90.006950","29.916390"],["-90.007060","29.916480"],["-90.007160","29.916580"],["-90.007270","29.916690"],["-90.007350","29.916775"],["-90.007430","29.916860"],["-90.007530","29.916940"],["-90.007640","29.917025"],["-90.007750","29.917110"],["-90.007847","29.917170"],["-90.007945","29.917230"],["-90.008042","29.917290"],["-90.008140","29.917350"],["-90.008150","29.917350"],["-90.008111","29.917394"],["-90.008150","29.917350"],["-90.008220","29.917390"],["-90.008340","29.917470"],["-90.008440","29.917540"],["-90.008560","29.917610"],["-90.008680","29.917680"],["-90.008780","29.917745"],["-90.008880","29.917810"],["-90.009010","29.917890"],["-90.009120","29.917960"],["-90.009260","29.918030"],["-90.009330","29.918060"],["-90.009410","29.918090"],["-90.009420","29.918090"],["-90.009560","29.918140"],["-90.009720","29.918190"],["-90.009790","29.918220"],["-90.009890","29.918265"],["-90.009990","29.918310"],["-90.010130","29.918385"],["-90.010270","29.918460"],["-90.010390","29.918540"],["-90.010540","29.918630"],["-90.010640","29.918700"],["-90.010760","29.918790"],["-90.010846","29.918951"],["-90.010900","29.918900"],["-90.010970","29.918960"],["-90.011060","29.919025"],["-90.011150","29.919090"],["-90.011240","29.919150"],["-90.011390","29.919290"],["-90.011490","29.919390"],["-90.011530","29.919420"],["-90.011630","29.919520"],["-90.011660","29.919560"],["-90.011780","29.919680"],["-90.011865","29.919765"],["-90.011950","29.919850"],["-90.012050","29.919940"],["-90.012110","29.920000"],["-90.012220","29.920110"],["-90.012355","29.920220"],["-90.012490","29.920330"],["-90.012570","29.920390"],["-90.012650","29.920450"],["-90.012830","29.920560"],["-90.012910","29.920620"],["-90.013000","29.920670"],["-90.013070","29.920710"],["-90.013205","29.920790"],["-90.013340","29.920870"],["-90.013440","29.920935"],["-90.013540","29.921000"],["-90.013590","29.921030"],["-90.013640","29.921060"],["-90.013800","29.921160"],["-90.013930","29.921230"],["-90.014060","29.921310"],["-90.014190","29.921390"],["-90.014350","29.921470"],["-90.014420","29.921340"],["-90.014500","29.921210"],["-90.014565","29.921115"],["-90.014630","29.921020"],["-90.014700","29.920940"],["-90.014760","29.920890"],["-90.014817","29.920931"],["-90.014760","29.920890"],["-90.014770","29.920870"],["-90.014800","29.920850"],["-90.014870","29.920780"],["-90.014880","29.920770"],["-90.014980","29.920690"],["-90.015065","29.920625"],["-90.015150","29.920560"],["-90.015270","29.920480"],["-90.015435","29.920395"],["-90.015600","29.920310"],["-90.015680","29.920260"],["-90.015830","29.920200"],["-90.015840","29.920190"],["-90.015975","29.920120"],["-90.016110","29.920050"],["-90.016230","29.919990"],["-90.016370","29.919910"],["-90.016440","29.919870"],["-90.016510","29.919830"],["-90.016570","29.919780"],["-90.016640","29.919740"],["-90.016700","29.919690"],["-90.016840","29.919560"],["-90.016910","29.919490"],["-90.017025","29.919360"],["-90.017140","29.919230"],["-90.017180","29.919170"],["-90.017230","29.919100"],["-90.017285","29.919005"],["-90.017340","29.918910"],["-90.017380","29.918830"],["-90.017430","29.918700"],["-90.017490","29.918520"],["-90.017530","29.918340"],["-90.017543","29.918200"],["-90.017555","29.918060"],["-90.017568","29.917920"],["-90.017580","29.917780"],["-90.017610","29.917670"],["-90.017620","29.917535"],["-90.017630","29.917400"],["-90.017620","29.917300"],["-90.017623","29.917180"],["-90.017625","29.917060"],["-90.017628","29.916940"],["-90.017630","29.916820"],["-90.017630","29.916770"],["-90.017640","29.916660"],["-90.017650","29.916550"],["-90.017660","29.916440"],["-90.017680","29.916380"],["-90.017693","29.916215"],["-90.017705","29.916050"],["-90.017718","29.915885"],["-90.017730","29.915720"],["-90.017735","29.915618"],["-90.017740","29.915515"],["-90.017745","29.915413"],["-90.017832","29.915316"],["-90.017730","29.915310"],["-90.017736","29.915213"],["-90.017743","29.915116"],["-90.017749","29.915019"],["-90.017755","29.914923"],["-90.017761","29.914826"],["-90.017768","29.914729"],["-90.017774","29.914632"],["-90.017780","29.914535"],["-90.017786","29.914438"],["-90.017793","29.914341"],["-90.017799","29.914244"],["-90.017805","29.914148"],["-90.017811","29.914051"],["-90.017818","29.913954"],["-90.017824","29.913857"],["-90.017830","29.913760"],["-90.017950","29.913770"],["-90.018110","29.913810"],["-90.018200","29.913830"],["-90.018270","29.913850"],["-90.018280","29.913850"],["-90.018239","29.913926"],["-90.018280","29.913850"],["-90.018420","29.913910"],["-90.018560","29.913970"],["-90.018650","29.914020"],["-90.018710","29.914080"],["-90.018810","29.914155"],["-90.018910","29.914230"],["-90.019010","29.914305"],["-90.019110","29.914380"],["-90.019160","29.914420"],["-90.019275","29.914513"],["-90.019390","29.914605"],["-90.019505","29.914698"],["-90.019620","29.914790"],["-90.019732","29.914880"],["-90.019845","29.914970"],["-90.019957","29.915060"],["-90.020070","29.915150"],["-90.020230","29.915280"],["-90.020364","29.915388"],["-90.020497","29.915495"],["-90.020631","29.915603"],["-90.020765","29.915710"],["-90.020899","29.915818"],["-90.021032","29.915925"],["-90.021166","29.916033"],["-90.021300","29.916140"],["-90.021240","29.916210"],["-90.021130","29.916315"],["-90.021020","29.916420"],["-90.020945","29.916500"],["-90.020870","29.916580"],["-90.020760","29.916710"],["-90.020690","29.916673"],["-90.020760","29.916710"],["-90.020700","29.916830"],["-90.020650","29.916930"],["-90.020610","29.917070"],["-90.020585","29.917165"],["-90.020560","29.917260"],["-90.020555","29.917360"],["-90.020550","29.917460"],["-90.020540","29.917590"],["-90.020540","29.917670"],["-90.020530","29.917845"],["-90.020520","29.918020"],["-90.020510","29.918195"],["-90.020500","29.918370"],["-90.020410","29.918369"],["-90.020500","29.918370"],["-90.020490","29.918470"],["-90.020604","29.918476"],["-90.020717","29.918483"],["-90.020831","29.918489"],["-90.020945","29.918495"],["-90.021059","29.918501"],["-90.021172","29.918508"],["-90.021286","29.918514"],["-90.021400","29.918520"],["-90.021510","29.918530"],["-90.021685","29.918535"],["-90.021860","29.918540"],["-90.022020","29.918550"],["-90.022230","29.918580"],["-90.022410","29.918620"],["-90.022590","29.918660"],["-90.022520","29.918840"],["-90.022433","29.918820"],["-90.022520","29.918840"],["-90.022460","29.919020"],["-90.022430","29.919140"],["-90.022400","29.919270"],["-90.022380","29.919410"],["-90.022370","29.919510"],["-90.022380","29.919690"],["-90.022390","29.919850"],["-90.022410","29.919965"],["-90.022430","29.920080"],["-90.022470","29.920200"],["-90.022510","29.920320"],["-90.022540","29.920450"],["-90.022412","29.920470"],["-90.022540","29.920450"],["-90.022565","29.920570"],["-90.022590","29.920690"],["-90.022610","29.920770"],["-90.022635","29.920945"],["-90.022660","29.921120"],["-90.022670","29.921250"],["-90.022680","29.921355"],["-90.022690","29.921460"],["-90.022700","29.921530"],["-90.022700","29.921660"],["-90.022700","29.921790"],["-90.022695","29.921930"],["-90.022690","29.922070"],["-90.022680","29.922160"],["-90.022650","29.922250"],["-90.022610","29.922345"],["-90.022570","29.922440"],["-90.022454","29.922398"],["-90.022570","29.922440"],["-90.022510","29.922550"],["-90.022453","29.922650"],["-90.022395","29.922750"],["-90.022338","29.922850"],["-90.022280","29.922950"],["-90.022240","29.923020"],["-90.022200","29.923110"],["-90.022175","29.923205"],["-90.022150","29.923300"],["-90.022133","29.923400"],["-90.022115","29.923500"],["-90.022098","29.923600"],["-90.022080","29.923700"],["-90.022040","29.923850"],["-90.021990","29.923985"],["-90.021940","29.924120"],["-90.021900","29.924200"],["-90.021848","29.924288"],["-90.021795","29.924375"],["-90.021743","29.924463"],["-90.021690","29.924550"],["-90.021620","29.924710"],["-90.021565","29.924638"],["-90.021620","29.924710"],["-90.021510","29.924790"],["-90.021500","29.924800"],["-90.021440","29.924910"],["-90.021380","29.924990"],["-90.021290","29.925130"],["-90.021230","29.925220"],["-90.021145","29.925360"],["-90.021060","29.925500"],["-90.020990","29.925640"],["-90.020897","29.925605"],["-90.020990","29.925640"],["-90.020903","29.925800"],["-90.020815","29.925960"],["-90.020728","29.926120"],["-90.020640","29.926280"],["-90.020590","29.926370"],["-90.020540","29.926460"],["-90.020460","29.926620"],["-90.020405","29.926725"],["-90.020350","29.926830"],["-90.020295","29.926935"],["-90.020240","29.927040"],["-90.020200","29.927135"],["-90.020160","29.927230"],["-90.020090","29.927400"],["-90.020026","29.927384"],["-90.020090","29.927400"],["-90.020060","29.927500"],["-90.020020","29.927660"],["-90.019995","29.927770"],["-90.019970","29.927880"],["-90.019960","29.928000"],["-90.019940","29.928190"],["-90.019930","29.928380"],["-90.019930","29.928450"],["-90.019940","29.928570"],["-90.019940","29.928650"],["-90.019965","29.928840"],["-90.019990","29.929030"],["-90.020010","29.929210"],["-90.020010","29.929300"],["-90.020020","29.929470"],["-90.020020","29.929550"],["-90.020030","29.929710"],["-90.020010","29.929860"],["-90.020000","29.930000"],["-90.019985","29.930100"],["-90.019970","29.930200"],["-90.019907","29.930197"],["-90.019970","29.930200"],["-90.019970","29.930240"],["-90.019950","29.930340"],["-90.019930","29.930440"],["-90.020070","29.930480"],["-90.020265","29.930495"],["-90.020460","29.930510"],["-90.020660","29.930520"],["-90.020720","29.930530"],["-90.020870","29.930540"],["-90.021075","29.930537"],["-90.021281","29.930535"],["-90.021665","29.930579"],["-90.021486","29.930532"],["-90.021591","29.930586"],["-90.021696","29.930639"],["-90.021801","29.930693"],["-90.021906","29.930746"],["-90.021837","29.930630"],["-90.021955","29.930611"],["-90.022073","29.930592"],["-90.022264","29.930599"],["-90.022454","29.930607"],["-90.022645","29.930614"],["-90.022836","29.930622"],["-90.023027","29.930630"],["-90.023217","29.930637"],["-90.023408","29.930645"],["-90.023599","29.930652"],["-90.023790","29.930660"],["-90.023980","29.930667"],["-90.024171","29.930675"],["-90.024362","29.930682"],["-90.024553","29.930690"],["-90.024744","29.930697"],["-90.024934","29.930705"],["-90.025125","29.930713"],["-90.025229","29.930749"],["-90.025332","29.930786"],["-90.025340","29.930720"],["-90.025490","29.930730"],["-90.025642","29.930738"],["-90.025795","29.930745"],["-90.025947","29.930753"],["-90.026100","29.930760"],["-90.026300","29.930770"],["-90.026500","29.930770"],["-90.026620","29.930780"],["-90.026690","29.930790"],["-90.026770","29.930800"],["-90.026890","29.930830"],["-90.027025","29.930880"],["-90.027160","29.930930"],["-90.027295","29.930980"],["-90.027430","29.931030"],["-90.027500","29.931047"],["-90.027500","29.931050"],["-90.027550","29.931070"],["-90.027559","29.930928"],["-90.027568","29.930785"],["-90.027576","29.930643"],["-90.027585","29.930500"],["-90.027594","29.930358"],["-90.027603","29.930215"],["-90.027611","29.930073"],["-90.027620","29.929930"],["-90.027630","29.929770"],["-90.027638","29.929658"],["-90.027645","29.929545"],["-90.027653","29.929433"],["-90.027662","29.929315"],["-90.027718","29.929325"],["-90.027720","29.929260"],["-90.027870","29.929270"],["-90.027980","29.929270"],["-90.028010","29.929270"],["-90.028150","29.929280"],["-90.028180","29.929280"],["-90.028200","29.929280"],["-90.028220","29.929270"],["-90.028240","29.929270"],["-90.028250","29.929270"],["-90.028300","29.929260"],["-90.028340","29.929250"],["-90.028400","29.929220"],["-90.028520","29.929140"],["-90.028550","29.929100"],["-90.028560","29.929080"],["-90.028600","29.929010"],["-90.028640","29.928940"],["-90.028670","29.928900"],["-90.028710","29.928820"],["-90.028760","29.928740"],["-90.028800","29.928670"],["-90.028870","29.928550"],["-90.028910","29.928470"],["-90.029010","29.928510"],["-90.029060","29.928540"],["-90.029210","29.928610"],["-90.029280","29.928640"],["-90.029360","29.928680"],["-90.029490","29.928760"],["-90.029605","29.928825"],["-90.029720","29.928890"],["-90.029810","29.928950"],["-90.029900","29.929000"],["-90.030030","29.929070"],["-90.030160","29.929130"],["-90.030300","29.929193"],["-90.030440","29.929255"],["-90.030580","29.929318"],["-90.030720","29.929380"],["-90.030850","29.929435"],["-90.030980","29.929490"],["-90.031150","29.929555"],["-90.031320","29.929620"],["-90.031420","29.929670"],["-90.031540","29.929700"],["-90.031750","29.929750"],["-90.031860","29.929760"],["-90.031950","29.929770"],["-90.031970","29.929770"],["-90.032170","29.929790"],["-90.032210","29.929790"],["-90.032390","29.929830"],["-90.032490","29.929850"],["-90.032530","29.929860"],["-90.032580","29.929870"],["-90.032680","29.929890"],["-90.032800","29.929930"],["-90.032970","29.929990"],["-90.033100","29.930040"],["-90.033230","29.930090"],["-90.033380","29.930140"],["-90.033560","29.930200"],["-90.033740","29.930240"],["-90.033890","29.930280"],["-90.034070","29.930320"],["-90.034250","29.930350"],["-90.034450","29.930380"],["-90.034460","29.930380"],["-90.034640","29.930410"],["-90.034770","29.930430"],["-90.034890","29.930420"],["-90.034970","29.930480"],["-90.034980","29.930480"],["-90.035030","29.930500"],["-90.035080","29.930510"],["-90.035199","29.930500"],["-90.035312","29.930488"],["-90.035426","29.930475"],["-90.035539","29.930463"],["-90.035652","29.930451"],["-90.035819","29.930461"],["-90.035985","29.930472"],["-90.036151","29.930482"],["-90.036318","29.930493"],["-90.036484","29.930503"],["-90.036650","29.930514"],["-90.036849","29.930515"],["-90.037047","29.930515"],["-90.037190","29.930590"],["-90.037200","29.930520"],["-90.037280","29.930530"],["-90.037430","29.930540"],["-90.037470","29.930540"],["-90.037620","29.930550"],["-90.037640","29.930550"],["-90.037770","29.930560"],["-90.037870","29.930570"],["-90.037880","29.930570"],["-90.037970","29.930570"],["-90.037980","29.930570"],["-90.038040","29.930570"],["-90.038180","29.930580"],["-90.038390","29.930590"],["-90.038410","29.930590"],["-90.038500","29.930600"],["-90.038600","29.930600"],["-90.038630","29.930600"],["-90.038640","29.930600"],["-90.038730","29.930610"],["-90.038740","29.930610"],["-90.038800","29.930610"],["-90.038810","29.930610"],["-90.038830","29.930610"],["-90.038850","29.930610"],["-90.038880","29.930610"],["-90.038890","29.930610"],["-90.038910","29.930610"],["-90.038970","29.930620"],["-90.039000","29.930620"],["-90.039137","29.930625"],["-90.039275","29.930630"],["-90.039412","29.930635"],["-90.039550","29.930640"],["-90.039750","29.930650"],["-90.039870","29.930654"],["-90.039990","29.930658"],["-90.040110","29.930661"],["-90.040230","29.930665"],["-90.040350","29.930669"],["-90.040470","29.930673"],["-90.040590","29.930676"],["-90.040710","29.930680"],["-90.040822","29.930685"],["-90.040935","29.930690"],["-90.041047","29.930695"],["-90.041160","29.930700"],["-90.041285","29.930698"],["-90.041410","29.930695"],["-90.041535","29.930693"],["-90.041660","29.930690"],["-90.041730","29.930690"],["-90.041820","29.930690"],["-90.041830","29.930560"],["-90.041835","29.930460"],["-90.041840","29.930360"],["-90.041845","29.930260"],["-90.041850","29.930160"],["-90.041956","29.930163"],["-90.041850","29.930160"],["-90.041860","29.930000"],["-90.041870","29.929840"],["-90.041880","29.929710"],["-90.041895","29.929525"],["-90.041910","29.929340"],["-90.041915","29.929200"],["-90.041920","29.929060"],["-90.041930","29.928880"],["-90.041940","29.928730"],["-90.041948","29.928618"],["-90.041955","29.928505"],["-90.041963","29.928393"],["-90.041970","29.928280"],["-90.041978","29.928168"],["-90.041985","29.928055"],["-90.041993","29.927943"],["-90.042002","29.927810"],["-90.042011","29.927676"],["-90.042020","29.927543"],["-90.042029","29.927410"],["-90.042038","29.927276"],["-90.042047","29.927143"],["-90.042056","29.927009"],["-90.042065","29.926876"],["-90.042124","29.926730"],["-90.042184","29.926584"],["-90.042070","29.926548"],["-90.042082","29.926381"],["-90.042095","29.926214"],["-90.042107","29.926046"],["-90.042119","29.925879"],["-90.042132","29.925711"],["-90.042144","29.925544"],["-90.042157","29.925377"],["-90.042169","29.925209"],["-90.042258","29.925096"],["-90.042188","29.924949"],["-90.042196","29.924812"],["-90.042204","29.924674"],["-90.042212","29.924537"],["-90.042220","29.924400"],["-90.042230","29.924300"],["-90.042240","29.924150"],["-90.042250","29.924000"],["-90.042260","29.923840"],["-90.042270","29.923730"],["-90.042280","29.923580"],["-90.042290","29.923480"],["-90.042300","29.923330"],["-90.042310","29.923180"],["-90.042320","29.923030"],["-90.042320","29.922960"],["-90.042320","29.922930"],["-90.042310","29.922920"],["-90.042369","29.922906"],["-90.042376","29.922722"],["-90.042437","29.922631"],["-90.042498","29.922539"],["-90.042559","29.922448"],["-90.042620","29.922356"],["-90.042681","29.922265"],["-90.042742","29.922173"],["-90.042803","29.922082"],["-90.042864","29.921990"],["-90.042925","29.921898"],["-90.042986","29.921807"],["-90.043047","29.921715"],["-90.043126","29.921594"],["-90.043205","29.921474"],["-90.043284","29.921353"],["-90.043363","29.921233"],["-90.043322","29.921135"],["-90.043282","29.921037"],["-90.043177","29.920984"],["-90.043073","29.920930"],["-90.043126","29.920845"],["-90.043179","29.920759"],["-90.043232","29.920673"],["-90.043285","29.920587"],["-90.043338","29.920502"],["-90.043391","29.920416"],["-90.043444","29.920330"],["-90.043497","29.920244"],["-90.043550","29.920158"],["-90.043603","29.920073"],["-90.043656","29.919987"],["-90.043709","29.919901"],["-90.043762","29.919815"],["-90.043815","29.919730"],["-90.043868","29.919644"],["-90.043921","29.919558"],["-90.044033","29.919630"],["-90.044146","29.919702"],["-90.044081","29.919798"],["-90.044016","29.919895"],["-90.043951","29.919991"],["-90.043886","29.920087"],["-90.043811","29.920204"],["-90.043735","29.920321"],["-90.043660","29.920438"],["-90.043584","29.920555"],["-90.043509","29.920672"],["-90.043433","29.920789"],["-90.043358","29.920906"],["-90.043282","29.921023"],["-90.043164","29.920981"],["-90.043046","29.920939"],["-90.042883","29.920939"],["-90.042719","29.920939"],["-90.042655","29.921040"],["-90.042592","29.921142"],["-90.042528","29.921243"],["-90.042465","29.921345"],["-90.042401","29.921446"],["-90.042337","29.921547"],["-90.042283","29.921634"],["-90.042228","29.921720"],["-90.042174","29.921807"],["-90.042120","29.921894"],["-90.042065","29.921980"],["-90.042011","29.922067"],["-90.041957","29.922153"],["-90.041902","29.922240"],["-90.041848","29.922327"],["-90.041793","29.922413"],["-90.041739","29.922500"],["-90.041685","29.922587"],["-90.041630","29.922673"],["-90.041576","29.922760"],["-90.041522","29.922846"],["-90.041467","29.922933"],["-90.041413","29.923020"],["-90.041359","29.923106"],["-90.041304","29.923193"],["-90.041250","29.923280"],["-90.041195","29.923366"],["-90.041141","29.923453"],["-90.041087","29.923539"],["-90.041032","29.923626"],["-90.040978","29.923713"],["-90.040924","29.923799"],["-90.040869","29.923886"],["-90.040815","29.923973"],["-90.040761","29.924059"],["-90.040706","29.924146"],["-90.040652","29.924232"],["-90.040598","29.924319"],["-90.040543","29.924406"],["-90.040489","29.924492"],["-90.040434","29.924579"],["-90.040380","29.924666"],["-90.040326","29.924752"],["-90.040271","29.924839"],["-90.040217","29.924925"],["-90.040163","29.925012"],["-90.040108","29.925099"],["-90.040054","29.925185"],["-90.040000","29.925272"],["-90.039945","29.925359"],["-90.039891","29.925445"],["-90.039837","29.925532"],["-90.039782","29.925618"],["-90.039728","29.925705"],["-90.039673","29.925792"],["-90.039619","29.925878"],["-90.039565","29.925965"],["-90.039510","29.926052"],["-90.039456","29.926138"],["-90.039402","29.926225"],["-90.039347","29.926311"],["-90.039293","29.926398"],["-90.039239","29.926485"],["-90.039184","29.926571"],["-90.039130","29.926658"],["-90.039075","29.926745"],["-90.039021","29.926831"],["-90.038967","29.926918"],["-90.038912","29.927004"],["-90.038858","29.927091"],["-90.038780","29.927250"],["-90.038702","29.927409"],["-90.038643","29.927536"],["-90.038584","29.927664"],["-90.038525","29.927791"],["-90.038466","29.927918"],["-90.038356","29.928055"],["-90.038246","29.928193"],["-90.038187","29.928306"],["-90.038114","29.928408"],["-90.038040","29.928509"],["-90.037959","29.928632"],["-90.037879","29.928755"],["-90.037852","29.928853"],["-90.037825","29.928950"],["-90.037799","29.929048"],["-90.037772","29.929146"],["-90.037749","29.929251"],["-90.037726","29.929357"],["-90.037703","29.929463"],["-90.037681","29.929569"],["-90.037652","29.929703"],["-90.037624","29.929838"],["-90.037596","29.929973"],["-90.037568","29.930108"],["-90.037529","29.930241"],["-90.037491","29.930375"],["-90.037452","29.930508"],["-90.037414","29.930642"],["-90.037399","29.930764"],["-90.037384","29.930886"],["-90.037369","29.931008"],["-90.037355","29.931130"],["-90.037330","29.931283"],["-90.037306","29.931437"],["-90.037282","29.931590"],["-90.037258","29.931743"],["-90.037246","29.931853"],["-90.037234","29.931962"],["-90.037222","29.932071"],["-90.037210","29.932180"],["-90.037306","29.932320"],["-90.037300","29.932453"],["-90.037293","29.932587"],["-90.037286","29.932721"],["-90.037279","29.932854"],["-90.037273","29.932988"],["-90.037266","29.933122"],["-90.037259","29.933255"],["-90.037253","29.933389"],["-90.037253","29.933532"],["-90.037253","29.933675"],["-90.037253","29.933818"],["-90.037253","29.933961"],["-90.037259","29.934086"],["-90.037266","29.934212"],["-90.037273","29.934337"],["-90.037279","29.934463"],["-90.037317","29.934630"],["-90.037355","29.934798"],["-90.037393","29.934965"],["-90.037431","29.935133"],["-90.037480","29.935237"],["-90.037529","29.935341"],["-90.037577","29.935445"],["-90.037626","29.935549"],["-90.037675","29.935653"],["-90.037724","29.935757"],["-90.037773","29.935861"],["-90.037822","29.935965"],["-90.037930","29.936100"],["-90.038037","29.936235"],["-90.038144","29.936370"],["-90.038251","29.936504"],["-90.038331","29.936588"],["-90.038410","29.936671"],["-90.038490","29.936754"],["-90.038569","29.936837"],["-90.038690","29.936937"],["-90.038812","29.937037"],["-90.038933","29.937137"],["-90.039055","29.937237"],["-90.039196","29.937322"],["-90.039337","29.937408"],["-90.039478","29.937493"],["-90.039619","29.937578"],["-90.039760","29.937664"],["-90.039902","29.937749"],["-90.040043","29.937835"],["-90.040184","29.937920"],["-90.040320","29.937976"],["-90.040456","29.938032"],["-90.040592","29.938087"],["-90.040728","29.938143"],["-90.040923","29.938195"],["-90.041119","29.938247"],["-90.041314","29.938299"],["-90.041509","29.938351"],["-90.041685","29.938378"],["-90.041862","29.938404"],["-90.042038","29.938431"],["-90.042214","29.938458"],["-90.042347","29.938465"],["-90.042480","29.938472"],["-90.042613","29.938479"],["-90.042745","29.938486"],["-90.042950","29.938497"],["-90.043155","29.938509"],["-90.043359","29.938520"],["-90.043564","29.938532"],["-90.043773","29.938545"],["-90.043982","29.938558"],["-90.044191","29.938572"],["-90.044401","29.938585"],["-90.044530","29.938588"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052548","29.938928"],["-90.052755","29.938925"],["-90.052963","29.938923"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053385","29.938918"],["-90.053590","29.938915"],["-90.053795","29.938913"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060145","29.938860"],["-90.060270","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060760","29.938858"],["-90.060980","29.938855"],["-90.061200","29.938853"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062350","29.938840"],["-90.062560","29.938840"],["-90.062780","29.938840"],["-90.062910","29.938840"],["-90.063040","29.938840"],["-90.063170","29.938840"],["-90.063300","29.938840"],["-90.063380","29.938830"],["-90.063560","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067575","29.939513"],["-90.067680","29.939545"],["-90.067785","29.939578"],["-90.067890","29.939610"],["-90.068080","29.939660"],["-90.068200","29.939700"],["-90.068320","29.939740"],["-90.068430","29.939780"],["-90.068530","29.939810"],["-90.068670","29.939860"],["-90.068780","29.939900"],["-90.068920","29.939960"],["-90.069000","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940190"],["-90.069470","29.940230"],["-90.069620","29.940320"],["-90.069795","29.940415"],["-90.069970","29.940510"],["-90.070077","29.940570"],["-90.070185","29.940630"],["-90.070292","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070905","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071685","29.941416"],["-90.071811","29.941481"],["-90.071936","29.941547"],["-90.072062","29.941612"],["-90.072187","29.941678"],["-90.072312","29.941744"],["-90.072438","29.941809"],["-90.072563","29.941875"],["-90.072726","29.941979"],["-90.072888","29.942084"],["-90.073051","29.942188"],["-90.073213","29.942293"],["-90.073313","29.942358"],["-90.073413","29.942422"],["-90.073513","29.942487"],["-90.073613","29.942552"],["-90.073713","29.942617"],["-90.073813","29.942682"],["-90.073913","29.942746"],["-90.074013","29.942811"],["-90.074148","29.942903"],["-90.074266","29.942974"],["-90.074383","29.943046"],["-90.074501","29.943117"],["-90.074619","29.943188"],["-90.074751","29.943292"],["-90.074834","29.943362"],["-90.074917","29.943432"],["-90.075001","29.943502"],["-90.075084","29.943572"],["-90.075176","29.943633"],["-90.075267","29.943693"],["-90.075359","29.943754"],["-90.075451","29.943814"],["-90.075560","29.943881"],["-90.075668","29.943948"],["-90.075777","29.944014"],["-90.075886","29.944081"],["-90.076040","29.944182"],["-90.076093","29.944268"],["-90.076146","29.944353"],["-90.076193","29.944463"],["-90.076241","29.944573"],["-90.076259","29.944761"],["-90.076214","29.944917"],["-90.076143","29.945071"],["-90.076035","29.945204"],["-90.075928","29.945338"],["-90.075888","29.945475"],["-90.075848","29.945612"],["-90.075749","29.945731"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945980"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075473","29.946350"],["-90.075445","29.946450"],["-90.075418","29.946550"],["-90.075390","29.946650"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.076106","29.947003"],["-89.977042","29.920232"],["-89.979912","29.921925"],["-89.980857","29.922317"],["-89.982893","29.923220"],["-89.983078","29.922904"],["-89.981062","29.921974"],["-89.979400","29.921278"],["-90.027562","29.931038"],["-89.994643","29.908751"],["-90.014817","29.920931"],["-90.022002","29.930485"],["-90.021393","29.925386"],["-90.022695","29.921027"],["-90.022620","29.918774"],["-90.020586","29.918395"],["-90.012289","29.919251"],["-90.008614","29.916445"],["-90.005392","29.914809"],["-90.003167","29.913557"],["-89.996553","29.909329"],["-89.989457","29.906122"],["-89.986990","29.908007"],["-89.986392","29.912462"],["-89.986202","29.913869"],["-89.985993","29.915402"],["-89.985745","29.917629"],["-89.985527","29.919406"],["-89.985199","29.922201"],["-89.985073","29.923752"],["-89.992102","29.904651"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.074290","29.953176"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.993544","29.906710"],["-89.993538","29.907656"],["-90.020144","29.928078"],["-90.077705","29.945589"],["-90.001046","29.912213"],["-90.020240","29.930403"],["-90.020294","29.919902"],["-90.019472","29.923060"],["-90.025642","29.930686"],["-90.042369","29.922906"],["-90.041956","29.930163"],["-90.038206","29.930649"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075180","29.954650"],["-90.075190","29.954702"],["-90.075065","29.954646"],["-90.074941","29.954590"],["-90.074816","29.954534"],["-90.074691","29.954479"],["-90.074577","29.954428"],["-90.074463","29.954377"],["-90.074349","29.954327"],["-90.074235","29.954276"],["-90.074123","29.954193"],["-90.074010","29.954109"],["-90.073967","29.953984"],["-90.074021","29.953798"],["-90.074074","29.953612"],["-90.074117","29.953452"],["-90.074160","29.953293"],["-90.074290","29.953176"],["-90.074206","29.953124"],["-90.074259","29.952940"],["-90.074313","29.952757"],["-90.074366","29.952573"],["-90.074420","29.952390"],["-90.074460","29.952280"],["-90.074495","29.952165"],["-90.074530","29.952050"],["-90.074575","29.951905"],["-90.074620","29.951760"],["-90.074670","29.951593"],["-90.074720","29.951425"],["-90.074770","29.951258"],["-90.074820","29.951090"],["-90.074870","29.950915"],["-90.074920","29.950740"],["-90.075000","29.950758"],["-90.074920","29.950740"],["-90.074960","29.950610"],["-90.075010","29.950480"],["-90.075053","29.950323"],["-90.075095","29.950165"],["-90.075138","29.950008"],["-90.075180","29.949850"],["-90.075220","29.949710"],["-90.075270","29.949550"],["-90.075290","29.949460"],["-90.075320","29.949350"],["-90.075330","29.949310"],["-90.075363","29.949203"],["-90.075395","29.949095"],["-90.075428","29.948988"],["-90.075460","29.948880"],["-90.075493","29.948773"],["-90.075525","29.948665"],["-90.075558","29.948558"],["-90.075590","29.948450"],["-90.075680","29.948474"],["-90.075590","29.948450"],["-90.075620","29.948350"],["-90.075630","29.948260"],["-90.075630","29.948230"],["-90.075678","29.948065"],["-90.075725","29.947900"],["-90.075773","29.947735"],["-90.075820","29.947570"],["-90.075868","29.947405"],["-90.075915","29.947240"],["-90.076011","29.947122"],["-90.076106","29.947003"],["-90.076130","29.946940"],["-90.076240","29.946970"],["-90.076350","29.947000"],["-90.076530","29.947050"],["-90.076650","29.947050"],["-90.076700","29.947050"],["-90.076740","29.947040"],["-90.076790","29.947030"],["-90.076820","29.947020"],["-90.076880","29.946990"],["-90.076980","29.946950"],["-90.077025","29.946810"],["-90.077070","29.946670"],["-90.077100","29.946575"],["-90.077130","29.946480"],["-90.077160","29.946385"],["-90.077190","29.946290"],["-90.077200","29.946270"],["-90.077220","29.946190"],["-90.077250","29.946090"],["-90.077280","29.945990"],["-90.077320","29.945880"],["-90.077350","29.945770"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077630","29.945550"],["-90.077640","29.945550"],["-90.077650","29.945560"],["-90.077660","29.945560"],["-90.077690","29.945550"],["-90.077700","29.945550"],["-90.077705","29.945589"],["-90.077700","29.945550"],["-90.077835","29.945545"],["-90.077970","29.945540"],["-90.078040","29.945530"],["-90.078150","29.945545"],["-90.078260","29.945560"],["-90.078430","29.945630"],["-90.078535","29.945680"],["-90.078640","29.945730"],["-90.078800","29.945750"],["-90.078840","29.945730"],["-90.078850","29.945730"],["-90.078870","29.945720"],["-90.078880","29.945720"],["-90.078940","29.945690"],["-90.078980","29.945660"],["-90.079040","29.945690"],["-90.079205","29.945775"],["-90.079370","29.945860"],["-90.079380","29.945910"],["-90.079390","29.945930"],["-90.079400","29.945940"],["-90.079470","29.945980"],["-90.079560","29.946040"],["-90.079610","29.946080"],["-90.079680","29.946120"],["-90.079700","29.946140"],["-90.079730","29.946160"],["-90.079800","29.946200"],["-90.079967","29.946298"],["-90.080135","29.946395"],["-90.080302","29.946493"],["-90.080470","29.946590"],["-90.080565","29.946645"],["-90.080660","29.946700"],["-90.080832","29.946800"],["-90.081005","29.946900"],["-90.081177","29.947000"],["-90.081350","29.947100"],["-90.081455","29.947160"],["-90.081560","29.947220"],["-90.081665","29.947280"],["-90.081770","29.947340"],["-90.081840","29.947380"],["-90.081880","29.947400"],["-90.082040","29.947500"],["-90.082190","29.947590"],["-90.082290","29.947655"],["-90.082390","29.947720"],["-90.082450","29.947760"],["-90.082570","29.947840"],["-90.082690","29.947940"],["-90.082750","29.947990"],["-90.082800","29.948020"],["-90.082850","29.948050"],["-90.082860","29.948060"],["-90.082920","29.948100"],["-90.082990","29.948130"],["-90.083120","29.948190"],["-90.083250","29.948230"],["-90.083363","29.948260"],["-90.083475","29.948290"],["-90.083382","29.948374"],["-90.083239","29.948434"],["-90.083119","29.948444"],["-90.083033","29.948413"],["-90.082931","29.948323"],["-90.082802","29.948208"],["-90.082673","29.948093"],["-90.082566","29.948005"],["-90.082459","29.947918"],["-90.082293","29.947813"],["-90.082126","29.947707"],["-90.081945","29.947596"],["-90.081764","29.947486"],["-90.081641","29.947415"],["-90.081517","29.947344"],["-90.081419","29.947293"],["-90.081320","29.947241"],["-90.081222","29.947189"],["-90.081123","29.947137"],["-90.081015","29.947076"],["-90.080907","29.947014"],["-90.080799","29.946953"],["-90.080691","29.946891"],["-90.080607","29.946827"],["-90.080524","29.946763"],["-90.080440","29.946699"],["-90.080356","29.946635"],["-90.080204","29.946535"],["-90.080053","29.946435"],["-90.079909","29.946341"],["-90.079766","29.946247"],["-90.079667","29.946190"],["-90.079567","29.946132"],["-90.079468","29.946075"],["-90.079369","29.946017"],["-90.079262","29.945951"],["-90.079154","29.945885"],["-90.079034","29.945822"],["-90.078913","29.945759"],["-90.078775","29.945685"],["-90.078636","29.945610"],["-90.078513","29.945501"],["-90.078432","29.945428"],["-90.078352","29.945355"],["-90.078274","29.945232"],["-90.078197","29.945109"],["-90.078130","29.945007"],["-90.078064","29.944905"],["-90.077937","29.944766"],["-90.077817","29.944701"],["-90.077698","29.944635"],["-90.077567","29.944563"],["-90.077436","29.944491"],["-90.077305","29.944419"],["-90.077174","29.944347"],["-90.077043","29.944275"],["-90.076912","29.944203"],["-90.076781","29.944131"],["-90.076650","29.944059"],["-90.076541","29.943999"],["-90.076432","29.943938"],["-90.076324","29.943877"],["-90.076215","29.943817"],["-90.076107","29.943756"],["-90.075998","29.943695"],["-90.075889","29.943634"],["-90.075781","29.943574"],["-90.075638","29.943494"],["-90.075496","29.943415"],["-90.075354","29.943336"],["-90.075212","29.943256"],["-90.075070","29.943177"],["-90.074928","29.943098"],["-90.074786","29.943019"],["-90.074643","29.942939"],["-90.074461","29.942836"],["-90.074279","29.942733"],["-90.074096","29.942631"],["-90.073914","29.942528"],["-90.073778","29.942452"],["-90.073643","29.942376"],["-90.073507","29.942300"],["-90.073371","29.942224"],["-90.073236","29.942148"],["-90.073100","29.942072"],["-90.072964","29.941997"],["-90.072829","29.941921"],["-90.072693","29.941845"],["-90.072558","29.941769"],["-90.072422","29.941693"],["-90.072286","29.941617"],["-90.072151","29.941541"],["-90.072015","29.941465"],["-90.071879","29.941389"],["-90.071744","29.941313"],["-90.071560","29.941219"],["-90.071420","29.941148"],["-90.071281","29.941077"],["-90.071141","29.941006"],["-90.071001","29.940935"],["-90.070825","29.940837"],["-90.070649","29.940740"],["-90.070473","29.940642"],["-90.070297","29.940545"],["-90.070133","29.940451"],["-90.069968","29.940358"],["-90.069804","29.940264"],["-90.069640","29.940170"],["-90.069538","29.940115"],["-90.069435","29.940059"],["-90.069333","29.940003"],["-90.069231","29.939947"],["-90.069091","29.939865"],["-90.068951","29.939783"],["-90.068810","29.939702"],["-90.068670","29.939620"],["-90.068530","29.939538"],["-90.068390","29.939456"],["-90.068250","29.939374"],["-90.068110","29.939292"],["-90.067973","29.939220"],["-90.067836","29.939148"],["-90.067699","29.939076"],["-90.067563","29.939004"],["-90.067365","29.938929"],["-90.067168","29.938855"],["-90.066971","29.938781"],["-90.066774","29.938706"],["-90.066596","29.938668"],["-90.066417","29.938629"],["-90.066239","29.938591"],["-90.066060","29.938553"],["-90.065946","29.938550"],["-90.065831","29.938547"],["-90.065716","29.938544"],["-90.065602","29.938541"],["-90.065487","29.938538"],["-90.065372","29.938535"],["-90.065258","29.938532"],["-90.065143","29.938529"],["-90.064950","29.938543"],["-90.064757","29.938557"],["-90.064564","29.938571"],["-90.064371","29.938585"],["-90.064175","29.938600"],["-90.063979","29.938615"],["-90.063783","29.938631"],["-90.063587","29.938646"],["-90.063368","29.938662"],["-90.063148","29.938678"],["-90.062928","29.938695"],["-90.062708","29.938711"],["-90.062573","29.938714"],["-90.062438","29.938718"],["-90.062304","29.938721"],["-90.062169","29.938725"],["-90.062034","29.938728"],["-90.061899","29.938732"],["-90.061765","29.938735"],["-90.061630","29.938739"],["-90.061492","29.938738"],["-90.061354","29.938738"],["-90.061216","29.938737"],["-90.061077","29.938736"],["-90.060939","29.938736"],["-90.060801","29.938735"],["-90.060663","29.938735"],["-90.060525","29.938734"],["-90.060398","29.938736"],["-90.060271","29.938738"],["-90.060145","29.938739"],["-90.060018","29.938741"],["-90.059891","29.938743"],["-90.059764","29.938744"],["-90.059638","29.938746"],["-90.059511","29.938748"],["-90.059362","29.938749"],["-90.059212","29.938750"],["-90.059063","29.938751"],["-90.058913","29.938751"],["-90.058764","29.938752"],["-90.058615","29.938753"],["-90.058465","29.938754"],["-90.058316","29.938755"],["-90.058167","29.938756"],["-90.058017","29.938757"],["-90.057868","29.938758"],["-90.057718","29.938758"],["-90.057569","29.938759"],["-90.057420","29.938760"],["-90.057270","29.938761"],["-90.057121","29.938762"],["-90.056994","29.938763"],["-90.056867","29.938764"],["-90.056740","29.938765"],["-90.056613","29.938767"],["-90.056486","29.938768"],["-90.056359","29.938769"],["-90.056231","29.938770"],["-90.056104","29.938771"],["-90.055977","29.938772"],["-90.055850","29.938774"],["-90.055723","29.938775"],["-90.055596","29.938776"],["-90.055469","29.938777"],["-90.055342","29.938778"],["-90.055215","29.938779"],["-90.055088","29.938781"],["-90.054969","29.938782"],["-90.054850","29.938784"],["-90.054732","29.938786"],["-90.054613","29.938787"],["-90.054494","29.938789"],["-90.054376","29.938791"],["-90.054257","29.938793"],["-90.054138","29.938794"],["-90.054020","29.938796"],["-90.053901","29.938798"],["-90.053782","29.938800"],["-90.053664","29.938801"],["-90.053545","29.938803"],["-90.053426","29.938805"],["-90.053308","29.938807"],["-90.053189","29.938808"],["-90.052997","29.938808"],["-90.052805","29.938807"],["-90.052613","29.938807"],["-90.052422","29.938806"],["-90.052230","29.938806"],["-90.052038","29.938805"],["-90.051846","29.938804"],["-90.051655","29.938804"],["-90.051470","29.938803"],["-90.051284","29.938801"],["-90.051099","29.938800"],["-90.050914","29.938799"],["-90.050729","29.938798"],["-90.050544","29.938797"],["-90.050359","29.938796"],["-90.050174","29.938794"],["-90.050005","29.938784"],["-90.049836","29.938774"],["-90.049667","29.938763"],["-90.049498","29.938753"],["-90.049329","29.938742"],["-90.049160","29.938732"],["-90.048991","29.938721"],["-90.048822","29.938711"],["-90.048667","29.938704"],["-90.048512","29.938697"],["-90.048357","29.938690"],["-90.048203","29.938683"],["-90.048048","29.938676"],["-90.047893","29.938669"],["-90.047738","29.938662"],["-90.047583","29.938655"],["-90.047372","29.938640"],["-90.047161","29.938626"],["-90.046950","29.938611"],["-90.046739","29.938597"],["-90.046528","29.938582"],["-90.046317","29.938568"],["-90.046106","29.938553"],["-90.045894","29.938539"],["-90.045754","29.938532"],["-90.045613","29.938525"],["-90.045473","29.938518"],["-90.045333","29.938511"],["-90.045192","29.938504"],["-90.045052","29.938497"],["-90.044911","29.938490"],["-90.044771","29.938483"],["-90.044630","29.938476"],["-90.044490","29.938469"],["-90.044349","29.938462"],["-90.044209","29.938455"],["-90.044068","29.938448"],["-90.043928","29.938441"],["-90.043787","29.938434"],["-90.043647","29.938427"],["-90.043533","29.938419"],["-90.043419","29.938410"],["-90.043305","29.938401"],["-90.043191","29.938392"],["-90.043077","29.938384"],["-90.042963","29.938375"],["-90.042849","29.938366"],["-90.042735","29.938357"],["-90.042605","29.938337"],["-90.042476","29.938316"],["-90.042347","29.938295"],["-90.042218","29.938274"],["-90.042092","29.938234"],["-90.041967","29.938194"],["-90.041841","29.938154"],["-90.041716","29.938113"],["-90.041591","29.938073"],["-90.041465","29.938033"],["-90.041340","29.937993"],["-90.041214","29.937953"],["-90.041094","29.937899"],["-90.040973","29.937845"],["-90.040852","29.937791"],["-90.040732","29.937737"],["-90.040611","29.937683"],["-90.040490","29.937629"],["-90.040369","29.937575"],["-90.040249","29.937521"],["-90.040148","29.937453"],["-90.040048","29.937385"],["-90.039947","29.937317"],["-90.039846","29.937249"],["-90.039746","29.937181"],["-90.039645","29.937113"],["-90.039545","29.937045"],["-90.039444","29.936977"],["-90.039335","29.936876"],["-90.039227","29.936775"],["-90.039118","29.936674"],["-90.039010","29.936572"],["-90.038944","29.936485"],["-90.038878","29.936398"],["-90.038812","29.936311"],["-90.038747","29.936224"],["-90.038681","29.936137"],["-90.038615","29.936049"],["-90.038550","29.935962"],["-90.038484","29.935875"],["-90.038414","29.935729"],["-90.038344","29.935582"],["-90.038295","29.935423"],["-90.038246","29.935263"],["-90.038197","29.935103"],["-90.038148","29.934943"],["-90.038099","29.934784"],["-90.038050","29.934624"],["-90.038000","29.934464"],["-90.037951","29.934305"],["-90.037949","29.934176"],["-90.037946","29.934046"],["-90.037943","29.933917"],["-90.037941","29.933788"],["-90.037938","29.933659"],["-90.037935","29.933530"],["-90.037933","29.933401"],["-90.037930","29.933272"],["-90.037931","29.933150"],["-90.037933","29.933028"],["-90.037934","29.932906"],["-90.037935","29.932784"],["-90.037984","29.932629"],["-90.038032","29.932473"],["-90.038043","29.932374"],["-90.038053","29.932275"],["-90.038064","29.932176"],["-90.038075","29.932078"],["-90.038083","29.931958"],["-90.038091","29.931838"],["-90.038099","29.931719"],["-90.038107","29.931599"],["-90.038120","29.931425"],["-90.038134","29.931250"],["-90.038134","29.931153"],["-90.038134","29.931055"],["-90.038134","29.930957"],["-90.038134","29.930860"],["-90.038170","29.930754"],["-90.038206","29.930649"],["-90.038153","29.930614"],["-90.038164","29.930575"],["-90.038277","29.930581"],["-90.038390","29.930586"],["-90.038504","29.930592"],["-90.038617","29.930598"],["-90.038733","29.930602"],["-90.038848","29.930607"],["-90.038963","29.930612"],["-90.039079","29.930616"],["-90.039194","29.930621"],["-90.039309","29.930626"],["-90.039425","29.930630"],["-90.039540","29.930635"],["-90.039655","29.930640"],["-90.039771","29.930644"],["-90.039886","29.930649"],["-90.040001","29.930653"],["-90.040117","29.930658"],["-90.040232","29.930663"],["-90.040348","29.930667"],["-90.040463","29.930672"],["-90.040578","29.930677"],["-90.040694","29.930681"],["-90.040809","29.930686"],["-90.040924","29.930691"],["-90.041040","29.930695"],["-90.041155","29.930700"],["-90.041270","29.930705"],["-90.041399","29.930702"],["-90.041528","29.930700"],["-90.041657","29.930697"],["-90.041787","29.930694"],["-90.041829","29.930562"],["-90.041871","29.930429"],["-90.041914","29.930296"],["-90.041956","29.930163"],["-90.041860","29.930160"],["-90.041875","29.930000"],["-90.041888","29.929816"],["-90.041901","29.929633"],["-90.041914","29.929449"],["-90.041927","29.929265"],["-90.041941","29.929081"],["-90.041954","29.928898"],["-90.041967","29.928714"],["-90.041980","29.928530"],["-90.041993","29.928346"],["-90.042006","29.928163"],["-90.042019","29.927979"],["-90.042032","29.927795"],["-90.042045","29.927611"],["-90.042059","29.927428"],["-90.042072","29.927244"],["-90.042085","29.927060"],["-90.042110","29.926941"],["-90.042134","29.926822"],["-90.042159","29.926703"],["-90.042184","29.926584"],["-90.042173","29.926464"],["-90.042161","29.926343"],["-90.042150","29.926223"],["-90.042138","29.926103"],["-90.042160","29.925961"],["-90.042181","29.925819"],["-90.042203","29.925677"],["-90.042224","29.925535"],["-90.042233","29.925426"],["-90.042241","29.925316"],["-90.042250","29.925206"],["-90.042258","29.925096"],["-90.042255","29.924973"],["-90.042252","29.924851"],["-90.042249","29.924728"],["-90.042246","29.924606"],["-90.042253","29.924499"],["-90.042261","29.924393"],["-90.042269","29.924287"],["-90.042277","29.924181"],["-90.042284","29.924074"],["-90.042292","29.923968"],["-90.042300","29.923862"],["-90.042307","29.923756"],["-90.042315","29.923650"],["-90.042323","29.923543"],["-90.042330","29.923437"],["-90.042338","29.923331"],["-90.042346","29.923225"],["-90.042354","29.923118"],["-90.042361","29.923012"],["-90.042369","29.922906"],["-90.042376","29.922722"],["-90.042437","29.922631"],["-90.042498","29.922539"],["-90.042559","29.922448"],["-90.042620","29.922356"],["-90.042681","29.922265"],["-90.042742","29.922173"],["-90.042803","29.922082"],["-90.042864","29.921990"],["-90.042925","29.921898"],["-90.042986","29.921807"],["-90.043047","29.921715"],["-90.043126","29.921594"],["-90.043205","29.921474"],["-90.043284","29.921353"],["-90.043363","29.921233"],["-90.043322","29.921135"],["-90.043282","29.921037"],["-90.043177","29.920984"],["-90.043073","29.920930"],["-90.043126","29.920845"],["-90.043179","29.920759"],["-90.043232","29.920673"],["-90.043285","29.920587"],["-90.043338","29.920502"],["-90.043391","29.920416"],["-90.043444","29.920330"],["-90.043497","29.920244"],["-90.043550","29.920158"],["-90.043603","29.920073"],["-90.043656","29.919987"],["-90.043709","29.919901"],["-90.043762","29.919815"],["-90.043815","29.919730"],["-90.043868","29.919644"],["-90.043921","29.919558"],["-90.044033","29.919630"],["-90.044146","29.919702"],["-90.044081","29.919798"],["-90.044016","29.919895"],["-90.043951","29.919991"],["-90.043886","29.920087"],["-90.043809","29.920202"],["-90.043732","29.920318"],["-90.043655","29.920433"],["-90.043578","29.920549"],["-90.043501","29.920664"],["-90.043424","29.920780"],["-90.043347","29.920895"],["-90.043270","29.921011"],["-90.043082","29.920913"],["-90.042905","29.920921"],["-90.042728","29.920930"],["-90.042672","29.921021"],["-90.042616","29.921113"],["-90.042559","29.921204"],["-90.042503","29.921296"],["-90.042447","29.921387"],["-90.042390","29.921479"],["-90.042334","29.921570"],["-90.042278","29.921662"],["-90.042202","29.921770"],["-90.042127","29.921879"],["-90.042052","29.921988"],["-90.041977","29.922097"],["-90.041921","29.922182"],["-90.041866","29.922267"],["-90.041810","29.922352"],["-90.041755","29.922437"],["-90.041699","29.922522"],["-90.041643","29.922607"],["-90.041588","29.922693"],["-90.041532","29.922778"],["-90.041586","29.922922"],["-90.041639","29.923066"],["-90.041771","29.923196"],["-90.041902","29.923326"],["-90.042031","29.923466"],["-90.042071","29.923619"],["-90.042112","29.923773"],["-90.042101","29.923940"],["-90.042090","29.924107"],["-90.042080","29.924275"],["-90.042071","29.924413"],["-90.042061","29.924550"],["-90.042052","29.924688"],["-90.042042","29.924825"],["-90.041925","29.924963"],["-90.042029","29.925104"],["-90.042019","29.925263"],["-90.042009","29.925421"],["-90.041999","29.925580"],["-90.041990","29.925738"],["-90.041980","29.925896"],["-90.041970","29.926055"],["-90.041961","29.926213"],["-90.041951","29.926372"],["-90.041778","29.926423"],["-90.041943","29.926535"],["-90.041936","29.926632"],["-90.041928","29.926730"],["-90.041921","29.926828"],["-90.041914","29.926925"],["-90.041907","29.927023"],["-90.041899","29.927121"],["-90.041892","29.927218"],["-90.041885","29.927316"],["-90.041873","29.927508"],["-90.041861","29.927700"],["-90.041849","29.927891"],["-90.041836","29.928083"],["-90.041824","29.928275"],["-90.041812","29.928466"],["-90.041800","29.928658"],["-90.041787","29.928850"],["-90.041775","29.929041"],["-90.041763","29.929233"],["-90.041751","29.929424"],["-90.041738","29.929616"],["-90.041726","29.929808"],["-90.041714","29.929999"],["-90.041702","29.930191"],["-90.041689","29.930383"],["-90.041677","29.930574"],["-90.041565","29.930579"],["-90.041452","29.930583"],["-90.041339","29.930588"],["-90.041227","29.930593"],["-90.041109","29.930587"],["-90.040992","29.930581"],["-90.040875","29.930575"],["-90.040757","29.930570"],["-90.040640","29.930564"],["-90.040522","29.930558"],["-90.040405","29.930552"],["-90.040288","29.930546"],["-90.040152","29.930536"],["-90.040017","29.930525"],["-90.039881","29.930515"],["-90.039746","29.930504"],["-90.039611","29.930494"],["-90.039475","29.930484"],["-90.039340","29.930473"],["-90.039204","29.930463"],["-90.038996","29.930454"],["-90.038787","29.930445"],["-90.038578","29.930436"],["-90.038370","29.930427"],["-90.038161","29.930418"],["-90.037953","29.930409"],["-90.037744","29.930400"],["-90.037536","29.930391"],["-90.037327","29.930382"],["-90.037118","29.930373"],["-90.036910","29.930365"],["-90.036701","29.930356"],["-90.036493","29.930347"],["-90.036284","29.930338"],["-90.036076","29.930329"],["-90.035867","29.930320"],["-90.035685","29.930310"],["-90.035502","29.930300"],["-90.035320","29.930290"],["-90.035190","29.930285"],["-90.035060","29.930280"],["-90.034945","29.930270"],["-90.034830","29.930260"],["-90.034730","29.930250"],["-90.034515","29.930220"],["-90.034300","29.930190"],["-90.034160","29.930170"],["-90.033950","29.930120"],["-90.033920","29.930100"],["-90.033860","29.930050"],["-90.033755","29.930015"],["-90.033650","29.929980"],["-90.033530","29.929940"],["-90.033420","29.929890"],["-90.033330","29.929850"],["-90.033210","29.929790"],["-90.033140","29.929750"],["-90.033070","29.929720"],["-90.032930","29.929640"],["-90.032805","29.929547"],["-90.032681","29.929453"],["-90.032556","29.929360"],["-90.032432","29.929266"],["-90.032338","29.929343"],["-90.032244","29.929420"],["-90.032180","29.929494"],["-90.032196","29.929685"],["-90.032222","29.929829"],["-90.032215","29.929994"],["-90.032208","29.930160"],["-90.032200","29.930326"],["-90.032193","29.930491"],["-90.032186","29.930657"],["-90.032178","29.930822"],["-90.032171","29.930988"],["-90.032163","29.931154"],["-90.032153","29.931286"],["-90.032142","29.931418"],["-90.032131","29.931549"],["-90.032121","29.931681"],["-90.032110","29.931813"],["-90.032099","29.931945"],["-90.032088","29.932077"],["-90.032078","29.932209"],["-90.031905","29.932197"],["-90.031733","29.932185"],["-90.031561","29.932172"],["-90.031388","29.932160"],["-90.031216","29.932148"],["-90.031044","29.932136"],["-90.030871","29.932124"],["-90.030699","29.932111"],["-90.030561","29.932106"],["-90.030423","29.932100"],["-90.030285","29.932094"],["-90.030146","29.932088"],["-90.029969","29.932056"],["-90.029792","29.932023"],["-90.029663","29.931969"],["-90.029534","29.931915"],["-90.029404","29.931862"],["-90.029275","29.931808"],["-90.029146","29.931754"],["-90.029016","29.931700"],["-90.028887","29.931646"],["-90.028757","29.931593"],["-90.028628","29.931539"],["-90.028499","29.931485"],["-90.028369","29.931431"],["-90.028240","29.931377"],["-90.028110","29.931324"],["-90.027981","29.931270"],["-90.027852","29.931216"],["-90.027722","29.931162"],["-90.027562","29.931038"],["-90.027429","29.931013"],["-90.027296","29.930988"],["-90.027160","29.930934"],["-90.027025","29.930880"],["-90.026890","29.930830"],["-90.026770","29.930800"],["-90.026690","29.930790"],["-90.026620","29.930780"],["-90.026500","29.930770"],["-90.026300","29.930770"],["-90.026100","29.930760"],["-90.025985","29.930753"],["-90.025870","29.930745"],["-90.025755","29.930738"],["-90.025642","29.930686"],["-90.025494","29.930732"],["-90.025325","29.930722"],["-90.025157","29.930711"],["-90.024988","29.930701"],["-90.024820","29.930690"],["-90.024672","29.930683"],["-90.024525","29.930675"],["-90.024377","29.930668"],["-90.024230","29.930660"],["-90.024025","29.930655"],["-90.023820","29.930650"],["-90.023760","29.930650"],["-90.023585","29.930643"],["-90.023410","29.930635"],["-90.023235","29.930628"],["-90.023060","29.930620"],["-90.022919","29.930615"],["-90.022777","29.930610"],["-90.022636","29.930605"],["-90.022495","29.930600"],["-90.022354","29.930595"],["-90.022212","29.930590"],["-90.022071","29.930585"],["-90.021930","29.930580"],["-90.021930","29.930480"],["-90.022002","29.930485"],["-90.021820","29.930534"],["-90.021639","29.930583"],["-90.021494","29.930572"],["-90.021349","29.930561"],["-90.021232","29.930558"],["-90.021116","29.930554"],["-90.021000","29.930550"],["-90.020870","29.930540"],["-90.020720","29.930530"],["-90.020660","29.930520"],["-90.020460","29.930510"],["-90.020345","29.930500"],["-90.020230","29.930490"],["-90.020240","29.930403"],["-90.020230","29.930490"],["-90.020070","29.930480"],["-90.020090","29.930355"],["-90.020110","29.930230"],["-90.020130","29.930090"],["-90.020140","29.929960"],["-90.020150","29.929830"],["-90.020160","29.929760"],["-90.020160","29.929670"],["-90.020160","29.929510"],["-90.020150","29.929350"],["-90.020140","29.929190"],["-90.020125","29.929030"],["-90.020110","29.928870"],["-90.020090","29.928740"],["-90.020080","29.928690"],["-90.020070","29.928510"],["-90.020060","29.928440"],["-90.020070","29.928260"],["-90.020080","29.928080"],["-90.020144","29.928078"],["-90.020080","29.928080"],["-90.020080","29.928010"],["-90.020110","29.927820"],["-90.020160","29.927640"],["-90.020190","29.927540"],["-90.020220","29.927440"],["-90.020265","29.927320"],["-90.020310","29.927200"],["-90.020360","29.927080"],["-90.020410","29.926960"],["-90.020495","29.926820"],["-90.020580","29.926680"],["-90.020633","29.926595"],["-90.020685","29.926510"],["-90.020738","29.926425"],["-90.020790","29.926340"],["-90.020843","29.926243"],["-90.020895","29.926145"],["-90.020987","29.925978"],["-90.021078","29.925810"],["-90.021170","29.925643"],["-90.021261","29.925475"],["-90.021393","29.925386"],["-90.021372","29.925290"],["-90.021435","29.925148"],["-90.021498","29.925006"],["-90.021561","29.924865"],["-90.021624","29.924723"],["-90.021707","29.924559"],["-90.021790","29.924395"],["-90.021845","29.924291"],["-90.021900","29.924186"],["-90.021955","29.924082"],["-90.022010","29.923977"],["-90.022035","29.923872"],["-90.022060","29.923767"],["-90.022085","29.923662"],["-90.022110","29.923556"],["-90.022130","29.923453"],["-90.022151","29.923351"],["-90.022172","29.923248"],["-90.022193","29.923145"],["-90.022273","29.922987"],["-90.022354","29.922829"],["-90.022426","29.922695"],["-90.022499","29.922561"],["-90.022571","29.922428"],["-90.022643","29.922294"],["-90.022676","29.922124"],["-90.022708","29.921955"],["-90.022706","29.921841"],["-90.022705","29.921727"],["-90.022704","29.921613"],["-90.022702","29.921499"],["-90.022680","29.921320"],["-90.022657","29.921141"],["-90.022695","29.921027"],["-90.022642","29.920859"],["-90.022590","29.920690"],["-90.022550","29.920505"],["-90.022510","29.920320"],["-90.022470","29.920200"],["-90.022430","29.920080"],["-90.022410","29.919965"],["-90.022390","29.919850"],["-90.022380","29.919690"],["-90.022370","29.919510"],["-90.022380","29.919410"],["-90.022400","29.919270"],["-90.022430","29.919140"],["-90.022460","29.919020"],["-90.022510","29.918890"],["-90.022560","29.918760"],["-90.022620","29.918774"],["-90.022568","29.918661"],["-90.022416","29.918622"],["-90.022265","29.918583"],["-90.022142","29.918567"],["-90.022020","29.918550"],["-90.021860","29.918540"],["-90.021685","29.918535"],["-90.021510","29.918530"],["-90.021400","29.918520"],["-90.021195","29.918510"],["-90.020990","29.918500"],["-90.020785","29.918490"],["-90.020637","29.918440"],["-90.020490","29.918390"],["-90.020586","29.918395"],["-90.020490","29.918390"],["-90.020490","29.918470"],["-90.020490","29.918570"],["-90.020478","29.918715"],["-90.020465","29.918860"],["-90.020453","29.919005"],["-90.020440","29.919150"],["-90.020420","29.919330"],["-90.020420","29.919430"],["-90.020413","29.919550"],["-90.020405","29.919670"],["-90.020398","29.919790"],["-90.020390","29.919910"],["-90.020294","29.919902"],["-90.020390","29.919910"],["-90.020380","29.920055"],["-90.020370","29.920200"],["-90.020360","29.920345"],["-90.020350","29.920490"],["-90.020350","29.920520"],["-90.020340","29.920665"],["-90.020330","29.920810"],["-90.020320","29.920955"],["-90.020310","29.921100"],["-90.020280","29.921275"],["-90.020250","29.921450"],["-90.020210","29.921595"],["-90.020170","29.921740"],["-90.020150","29.921870"],["-90.020115","29.921970"],["-90.020080","29.922070"],["-90.020050","29.922165"],["-90.020020","29.922260"],["-90.019970","29.922400"],["-90.019910","29.922550"],["-90.019855","29.922645"],["-90.019800","29.922740"],["-90.019755","29.922830"],["-90.019710","29.922920"],["-90.019645","29.923015"],["-90.019580","29.923110"],["-90.019472","29.923060"],["-90.019580","29.923110"],["-90.019570","29.923130"],["-90.019500","29.923225"],["-90.019430","29.923320"],["-90.019410","29.923340"],["-90.019330","29.923450"],["-90.019230","29.923600"],["-90.019050","29.923495"],["-90.018870","29.923390"],["-90.018820","29.923350"],["-90.018700","29.923260"],["-90.018610","29.923180"],["-90.018525","29.923103"],["-90.018440","29.923025"],["-90.018355","29.922948"],["-90.018270","29.922870"],["-90.018165","29.922785"],["-90.018060","29.922700"],["-90.017930","29.922610"],["-90.017840","29.922560"],["-90.017760","29.922530"],["-90.017640","29.922480"],["-90.017525","29.922445"],["-90.017410","29.922410"],["-90.017250","29.922370"],["-90.017150","29.922340"],["-90.017030","29.922300"],["-90.016980","29.922280"],["-90.016950","29.922280"],["-90.016890","29.922250"],["-90.016830","29.922230"],["-90.016780","29.922210"],["-90.016700","29.922180"],["-90.016630","29.922150"],["-90.016580","29.922110"],["-90.016500","29.922070"],["-90.016362","29.921983"],["-90.016225","29.921895"],["-90.016087","29.921808"],["-90.015950","29.921720"],["-90.015880","29.921680"],["-90.015755","29.921600"],["-90.015630","29.921520"],["-90.015530","29.921458"],["-90.015430","29.921395"],["-90.015330","29.921333"],["-90.015230","29.921270"],["-90.015115","29.921198"],["-90.015000","29.921125"],["-90.014885","29.921053"],["-90.014770","29.920980"],["-90.014817","29.920931"],["-90.014770","29.920980"],["-90.014710","29.920940"],["-90.014550","29.920840"],["-90.014450","29.920780"],["-90.014340","29.920713"],["-90.014230","29.920645"],["-90.014120","29.920578"],["-90.014010","29.920510"],["-90.013860","29.920420"],["-90.013755","29.920350"],["-90.013650","29.920280"],["-90.013470","29.920170"],["-90.013290","29.920060"],["-90.013160","29.919980"],["-90.012980","29.919870"],["-90.012880","29.919800"],["-90.012740","29.919710"],["-90.012590","29.919600"],["-90.012490","29.919530"],["-90.012390","29.919460"],["-90.012280","29.919370"],["-90.012150","29.919290"],["-90.012210","29.919210"],["-90.012289","29.919251"],["-90.012220","29.919310"],["-90.012170","29.919270"],["-90.012085","29.919195"],["-90.012000","29.919120"],["-90.011915","29.919045"],["-90.011830","29.918970"],["-90.011730","29.918885"],["-90.011630","29.918800"],["-90.011510","29.918690"],["-90.011390","29.918580"],["-90.011270","29.918480"],["-90.011105","29.918365"],["-90.010940","29.918250"],["-90.010825","29.918170"],["-90.010710","29.918090"],["-90.010587","29.918015"],["-90.010465","29.917940"],["-90.010342","29.917865"],["-90.010220","29.917790"],["-90.010110","29.917720"],["-90.010000","29.917650"],["-90.009900","29.917580"],["-90.009800","29.917510"],["-90.009730","29.917460"],["-90.009630","29.917370"],["-90.009560","29.917300"],["-90.009460","29.917200"],["-90.009380","29.917110"],["-90.009330","29.917060"],["-90.009270","29.917000"],["-90.009190","29.916940"],["-90.009060","29.916840"],["-90.008960","29.916770"],["-90.008845","29.916700"],["-90.008730","29.916630"],["-90.008560","29.916510"],["-90.008614","29.916445"],["-90.008560","29.916510"],["-90.008500","29.916480"],["-90.008385","29.916410"],["-90.008270","29.916340"],["-90.008107","29.916240"],["-90.007945","29.916140"],["-90.007782","29.916040"],["-90.007620","29.915940"],["-90.007525","29.915890"],["-90.007430","29.915840"],["-90.007330","29.915800"],["-90.007130","29.915730"],["-90.006990","29.915680"],["-90.006850","29.915630"],["-90.006725","29.915580"],["-90.006600","29.915530"],["-90.006475","29.915480"],["-90.006350","29.915430"],["-90.006256","29.915378"],["-90.006162","29.915325"],["-90.006069","29.915273"],["-90.005975","29.915220"],["-90.005881","29.915168"],["-90.005787","29.915115"],["-90.005694","29.915063"],["-90.005600","29.915010"],["-90.005470","29.914945"],["-90.005340","29.914880"],["-90.005392","29.914809"],["-90.005340","29.914880"],["-90.005280","29.914840"],["-90.005140","29.914765"],["-90.005000","29.914690"],["-90.004860","29.914615"],["-90.004720","29.914540"],["-90.004580","29.914465"],["-90.004440","29.914390"],["-90.004300","29.914315"],["-90.004160","29.914240"],["-90.004010","29.914155"],["-90.003860","29.914070"],["-90.003710","29.913985"],["-90.003560","29.913900"],["-90.003447","29.913833"],["-90.003335","29.913765"],["-90.003222","29.913698"],["-90.003110","29.913630"],["-90.003167","29.913557"],["-90.003110","29.913630"],["-90.003010","29.913580"],["-90.002860","29.913490"],["-90.002760","29.913426"],["-90.002660","29.913363"],["-90.002560","29.913299"],["-90.002460","29.913235"],["-90.002360","29.913171"],["-90.002260","29.913108"],["-90.002160","29.913044"],["-90.002060","29.912980"],["-90.001964","29.912916"],["-90.001867","29.912853"],["-90.001771","29.912789"],["-90.001675","29.912725"],["-90.001579","29.912661"],["-90.001482","29.912598"],["-90.001386","29.912534"],["-90.001290","29.912470"],["-90.001140","29.912370"],["-90.000990","29.912270"],["-90.001046","29.912213"],["-90.000990","29.912270"],["-90.000920","29.912230"],["-90.000805","29.912155"],["-90.000690","29.912080"],["-90.000575","29.912005"],["-90.000460","29.911930"],["-90.000330","29.911840"],["-90.000200","29.911755"],["-90.000070","29.911670"],["-89.999940","29.911585"],["-89.999810","29.911500"],["-89.999720","29.911440"],["-89.999630","29.911380"],["-89.999537","29.911320"],["-89.999445","29.911260"],["-89.999352","29.911200"],["-89.999260","29.911140"],["-89.999167","29.911080"],["-89.999075","29.911020"],["-89.998982","29.910960"],["-89.998890","29.910900"],["-89.998735","29.910795"],["-89.998580","29.910690"],["-89.998425","29.910585"],["-89.998270","29.910480"],["-89.998160","29.910410"],["-89.998020","29.910320"],["-89.997880","29.910230"],["-89.997740","29.910140"],["-89.997600","29.910050"],["-89.997460","29.909960"],["-89.997320","29.909870"],["-89.997180","29.909780"],["-89.997040","29.909690"],["-89.996907","29.909613"],["-89.996775","29.909535"],["-89.996642","29.909458"],["-89.996510","29.909380"],["-89.996553","29.909329"],["-89.996510","29.909380"],["-89.996420","29.909320"],["-89.996235","29.909250"],["-89.996050","29.909180"],["-89.995960","29.909150"],["-89.995860","29.909110"],["-89.995660","29.909040"],["-89.995470","29.908980"],["-89.995340","29.908950"],["-89.995200","29.908915"],["-89.995060","29.908880"],["-89.994905","29.908855"],["-89.994750","29.908830"],["-89.994600","29.908830"],["-89.994643","29.908751"],["-89.994600","29.908830"],["-89.994590","29.908830"],["-89.994480","29.908820"],["-89.994360","29.908825"],["-89.994240","29.908830"],["-89.994110","29.908740"],["-89.994000","29.908715"],["-89.993890","29.908690"],["-89.993765","29.908680"],["-89.993640","29.908670"],["-89.993515","29.908660"],["-89.993390","29.908650"],["-89.993393","29.908480"],["-89.993395","29.908310"],["-89.993398","29.908140"],["-89.993400","29.907970"],["-89.993415","29.907810"],["-89.993430","29.907650"],["-89.993538","29.907656"],["-89.993430","29.907650"],["-89.993440","29.907550"],["-89.993450","29.907450"],["-89.993450","29.907420"],["-89.993460","29.907295"],["-89.993470","29.907170"],["-89.993470","29.907070"],["-89.993470","29.906970"],["-89.993460","29.906890"],["-89.993450","29.906720"],["-89.993544","29.906710"],["-89.993450","29.906720"],["-89.993450","29.906640"],["-89.993425","29.906530"],["-89.993400","29.906420"],["-89.993350","29.906270"],["-89.993310","29.906180"],["-89.993270","29.906090"],["-89.993180","29.905920"],["-89.993110","29.905825"],["-89.993040","29.905730"],["-89.992930","29.905600"],["-89.992800","29.905470"],["-89.992695","29.905363"],["-89.992590","29.905255"],["-89.992485","29.905148"],["-89.992380","29.905040"],["-89.992260","29.904920"],["-89.992155","29.904805"],["-89.992050","29.904690"],["-89.992102","29.904651"],["-89.992050","29.904690"],["-89.991970","29.904610"],["-89.991860","29.904500"],["-89.991690","29.904620"],["-89.991588","29.904690"],["-89.991485","29.904760"],["-89.991383","29.904830"],["-89.991280","29.904900"],["-89.991145","29.905000"],["-89.991010","29.905100"],["-89.990875","29.905200"],["-89.990740","29.905300"],["-89.990600","29.905400"],["-89.990478","29.905490"],["-89.990355","29.905580"],["-89.990233","29.905670"],["-89.990110","29.905760"],["-89.989963","29.905868"],["-89.989815","29.905975"],["-89.989668","29.906083"],["-89.989520","29.906190"],["-89.989457","29.906122"],["-89.989520","29.906190"],["-89.989410","29.906275"],["-89.989300","29.906360"],["-89.989168","29.906460"],["-89.989035","29.906560"],["-89.988903","29.906660"],["-89.988770","29.906760"],["-89.988665","29.906830"],["-89.988560","29.906900"],["-89.988470","29.906970"],["-89.988380","29.907040"],["-89.988290","29.907110"],["-89.988200","29.907180"],["-89.988050","29.907300"],["-89.987900","29.907420"],["-89.987890","29.907430"],["-89.987820","29.907490"],["-89.987680","29.907600"],["-89.987550","29.907710"],["-89.987465","29.907633"],["-89.987380","29.907555"],["-89.987295","29.907478"],["-89.987210","29.907400"],["-89.987150","29.907450"],["-89.987130","29.907500"],["-89.987110","29.907550"],["-89.987100","29.907610"],["-89.987090","29.907723"],["-89.987080","29.907835"],["-89.987070","29.907948"],["-89.987060","29.908060"],["-89.986990","29.908050"],["-89.986990","29.908007"],["-89.986990","29.908050"],["-89.987060","29.908060"],["-89.987045","29.908198"],["-89.987030","29.908335"],["-89.987015","29.908473"],["-89.987000","29.908610"],["-89.986983","29.908755"],["-89.986965","29.908900"],["-89.986948","29.909045"],["-89.986930","29.909190"],["-89.986913","29.909335"],["-89.986895","29.909480"],["-89.986878","29.909625"],["-89.986860","29.909770"],["-89.986838","29.909920"],["-89.986815","29.910070"],["-89.986793","29.910220"],["-89.986770","29.910370"],["-89.986750","29.910520"],["-89.986730","29.910670"],["-89.986718","29.910783"],["-89.986705","29.910895"],["-89.986693","29.911008"],["-89.986680","29.911120"],["-89.986658","29.911305"],["-89.986635","29.911490"],["-89.986613","29.911675"],["-89.986590","29.911860"],["-89.986573","29.912013"],["-89.986555","29.912165"],["-89.986538","29.912318"],["-89.986524","29.912414"],["-89.986510","29.912510"],["-89.986392","29.912462"],["-89.986510","29.912510"],["-89.986500","29.912610"],["-89.986483","29.912773"],["-89.986465","29.912935"],["-89.986448","29.913098"],["-89.986430","29.913260"],["-89.986408","29.913433"],["-89.986385","29.913605"],["-89.986363","29.913778"],["-89.986340","29.913950"],["-89.986200","29.913940"],["-89.986202","29.913869"],["-89.986200","29.913940"],["-89.986340","29.913950"],["-89.986326","29.914056"],["-89.986313","29.914163"],["-89.986299","29.914269"],["-89.986285","29.914375"],["-89.986271","29.914481"],["-89.986258","29.914588"],["-89.986244","29.914694"],["-89.986230","29.914800"],["-89.986210","29.914970"],["-89.986190","29.915140"],["-89.986170","29.915310"],["-89.986150","29.915480"],["-89.985990","29.915470"],["-89.985993","29.915402"],["-89.985990","29.915470"],["-89.986150","29.915480"],["-89.986128","29.915653"],["-89.986105","29.915825"],["-89.986083","29.915998"],["-89.986060","29.916170"],["-89.986060","29.916220"],["-89.986043","29.916380"],["-89.986025","29.916540"],["-89.986008","29.916700"],["-89.985990","29.916860"],["-89.985978","29.916964"],["-89.985965","29.917068"],["-89.985953","29.917171"],["-89.985940","29.917275"],["-89.985928","29.917379"],["-89.985915","29.917483"],["-89.985903","29.917586"],["-89.985890","29.917690"],["-89.985740","29.917680"],["-89.985745","29.917629"],["-89.985740","29.917680"],["-89.985890","29.917690"],["-89.985878","29.917788"],["-89.985865","29.917885"],["-89.985853","29.917983"],["-89.985840","29.918080"],["-89.985823","29.918213"],["-89.985805","29.918345"],["-89.985788","29.918478"],["-89.985770","29.918610"],["-89.985755","29.918728"],["-89.985740","29.918845"],["-89.985725","29.918963"],["-89.985710","29.919080"],["-89.985690","29.919250"],["-89.985670","29.919420"],["-89.985527","29.919406"],["-89.985670","29.919420"],["-89.985660","29.919510"],["-89.985640","29.919680"],["-89.985620","29.919850"],["-89.985600","29.919985"],["-89.985580","29.920120"],["-89.985565","29.920270"],["-89.985550","29.920420"],["-89.985540","29.920520"],["-89.985528","29.920620"],["-89.985515","29.920720"],["-89.985503","29.920820"],["-89.985490","29.920920"],["-89.985478","29.921020"],["-89.985465","29.921120"],["-89.985453","29.921220"],["-89.985440","29.921320"],["-89.985426","29.921434"],["-89.985413","29.921548"],["-89.985399","29.921661"],["-89.985385","29.921775"],["-89.985371","29.921889"],["-89.985358","29.922003"],["-89.985344","29.922116"],["-89.985330","29.922230"],["-89.985199","29.922201"],["-89.985330","29.922230"],["-89.985315","29.922344"],["-89.985300","29.922458"],["-89.985285","29.922571"],["-89.985270","29.922685"],["-89.985255","29.922799"],["-89.985240","29.922913"],["-89.985225","29.923026"],["-89.985210","29.923140"],["-89.985195","29.923260"],["-89.985180","29.923380"],["-89.985160","29.923570"],["-89.985140","29.923760"],["-89.985073","29.923752"],["-89.985140","29.923760"],["-89.985120","29.923890"],["-89.985002","29.923838"],["-89.984885","29.923785"],["-89.984767","29.923733"],["-89.984650","29.923680"],["-89.984502","29.923620"],["-89.984355","29.923560"],["-89.984207","29.923500"],["-89.984060","29.923440"],["-89.983935","29.923380"],["-89.983810","29.923320"],["-89.983645","29.923245"],["-89.983480","29.923170"],["-89.983315","29.923095"],["-89.983150","29.923020"],["-89.983040","29.922980"],["-89.983078","29.922904"],["-89.983040","29.922980"],["-89.982970","29.922950"],["-89.982775","29.922863"],["-89.982580","29.922775"],["-89.982385","29.922688"],["-89.982190","29.922600"],["-89.982077","29.922553"],["-89.981965","29.922505"],["-89.981852","29.922458"],["-89.981740","29.922410"],["-89.981552","29.922328"],["-89.981365","29.922245"],["-89.981177","29.922163"],["-89.980990","29.922080"],["-89.981000","29.921970"],["-89.981062","29.921974"],["-89.981000","29.921970"],["-89.980990","29.922080"],["-89.980871","29.922026"],["-89.980752","29.921973"],["-89.980634","29.921919"],["-89.980515","29.921865"],["-89.980396","29.921811"],["-89.980277","29.921758"],["-89.980159","29.921704"],["-89.980040","29.921650"],["-89.979870","29.921575"],["-89.979700","29.921500"],["-89.979530","29.921425"],["-89.979360","29.921350"],["-89.979400","29.921278"],["-89.979360","29.921350"],["-89.979270","29.921320"],["-89.979077","29.921235"],["-89.978885","29.921150"],["-89.978692","29.921065"],["-89.978500","29.920980"],["-89.978401","29.920935"],["-89.978302","29.920890"],["-89.978204","29.920845"],["-89.978105","29.920800"],["-89.978006","29.920755"],["-89.977907","29.920710"],["-89.977809","29.920665"],["-89.977710","29.920620"],["-89.977532","29.920543"],["-89.977355","29.920465"],["-89.977177","29.920388"],["-89.977000","29.920310"],["-89.977042","29.920232"],["-89.977000","29.920310"],["-89.976910","29.920270"],["-89.976900","29.920370"],["-89.976890","29.920470"],["-89.977065","29.920547"],["-89.977241","29.920623"],["-89.977416","29.920700"],["-89.977592","29.920777"],["-89.977767","29.920853"],["-89.977942","29.920930"],["-89.978118","29.921006"],["-89.978293","29.921083"],["-89.978469","29.921160"],["-89.978644","29.921236"],["-89.978820","29.921313"],["-89.978995","29.921389"],["-89.979170","29.921466"],["-89.979346","29.921543"],["-89.979521","29.921619"],["-89.979697","29.921696"],["-89.979804","29.921810"],["-89.979912","29.921925"],["-89.979955","29.921821"],["-89.980069","29.921873"],["-89.980182","29.921925"],["-89.980355","29.922000"],["-89.980527","29.922075"],["-89.980700","29.922150"],["-89.980800","29.922195"],["-89.980900","29.922240"],["-89.980857","29.922317"],["-89.980900","29.922240"],["-89.981006","29.922286"],["-89.981112","29.922333"],["-89.981219","29.922379"],["-89.981325","29.922425"],["-89.981431","29.922471"],["-89.981537","29.922518"],["-89.981644","29.922564"],["-89.981750","29.922610"],["-89.981770","29.922620"],["-89.981910","29.922680"],["-89.982040","29.922740"],["-89.982170","29.922800"],["-89.982342","29.922878"],["-89.982515","29.922955"],["-89.982687","29.923033"],["-89.982860","29.923110"],["-89.982893","29.923220"]]},{"type":"MultiPoint","coordinates":[["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.076106","29.947003"],["-89.977042","29.920232"],["-89.979912","29.921925"],["-89.980857","29.922317"],["-89.982893","29.923220"],["-89.983078","29.922904"],["-89.981062","29.921974"],["-89.979400","29.921278"],["-90.027562","29.931038"],["-89.994643","29.908751"],["-90.014817","29.920931"],["-90.022002","29.930485"],["-90.021393","29.925386"],["-90.022695","29.921027"],["-90.022620","29.918774"],["-90.020586","29.918395"],["-90.012289","29.919251"],["-90.008614","29.916445"],["-90.005392","29.914809"],["-90.003167","29.913557"],["-89.996553","29.909329"],["-89.989457","29.906122"],["-89.986990","29.908007"],["-89.986392","29.912462"],["-89.986202","29.913869"],["-89.985993","29.915402"],["-89.985745","29.917629"],["-89.985527","29.919406"],["-89.985199","29.922201"],["-89.985073","29.923752"],["-89.992102","29.904651"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.074290","29.953176"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.993544","29.906710"],["-89.993538","29.907656"],["-90.020144","29.928078"],["-90.001046","29.912213"],["-90.020240","29.930403"],["-90.020294","29.919902"],["-90.019472","29.923060"],["-90.025642","29.930686"],["-90.042369","29.922906"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075180","29.954650"],["-90.075190","29.954702"],["-90.075065","29.954646"],["-90.074941","29.954590"],["-90.074816","29.954534"],["-90.074691","29.954479"],["-90.074577","29.954428"],["-90.074463","29.954377"],["-90.074349","29.954327"],["-90.074235","29.954276"],["-90.074123","29.954193"],["-90.074010","29.954109"],["-90.073967","29.953984"],["-90.074021","29.953798"],["-90.074074","29.953612"],["-90.074117","29.953452"],["-90.074160","29.953293"],["-90.074290","29.953176"],["-90.074206","29.953124"],["-90.074259","29.952940"],["-90.074313","29.952757"],["-90.074366","29.952573"],["-90.074420","29.952390"],["-90.074460","29.952280"],["-90.074495","29.952165"],["-90.074530","29.952050"],["-90.074575","29.951905"],["-90.074620","29.951760"],["-90.074670","29.951593"],["-90.074720","29.951425"],["-90.074770","29.951258"],["-90.074820","29.951090"],["-90.074870","29.950915"],["-90.074920","29.950740"],["-90.075000","29.950758"],["-90.074920","29.950740"],["-90.074960","29.950610"],["-90.075010","29.950480"],["-90.075053","29.950323"],["-90.075095","29.950165"],["-90.075138","29.950008"],["-90.075180","29.949850"],["-90.075220","29.949710"],["-90.075270","29.949550"],["-90.075290","29.949460"],["-90.075320","29.949350"],["-90.075330","29.949310"],["-90.075363","29.949203"],["-90.075395","29.949095"],["-90.075428","29.948988"],["-90.075460","29.948880"],["-90.075493","29.948773"],["-90.075525","29.948665"],["-90.075558","29.948558"],["-90.075590","29.948450"],["-90.075680","29.948474"],["-90.075590","29.948450"],["-90.075620","29.948350"],["-90.075630","29.948260"],["-90.075630","29.948230"],["-90.075678","29.948065"],["-90.075725","29.947900"],["-90.075773","29.947735"],["-90.075820","29.947570"],["-90.075868","29.947405"],["-90.075915","29.947240"],["-90.076011","29.947122"],["-90.076106","29.947003"],["-90.076040","29.946910"],["-90.076040","29.946730"],["-90.076040","29.946550"],["-90.076012","29.946372"],["-90.075983","29.946194"],["-90.075970","29.946110"],["-90.075970","29.946020"],["-90.076005","29.945843"],["-90.076039","29.945670"],["-90.076089","29.945539"],["-90.076149","29.945367"],["-90.076210","29.945195"],["-90.076320","29.945042"],["-90.076430","29.944890"],["-90.076540","29.944737"],["-90.076650","29.944585"],["-90.076740","29.944459"],["-90.076790","29.944380"],["-90.076870","29.944280"],["-90.076930","29.944200"],["-90.076980","29.944140"],["-90.076805","29.944043"],["-90.076631","29.943946"],["-90.076456","29.943848"],["-90.076281","29.943751"],["-90.076107","29.943654"],["-90.075932","29.943557"],["-90.075757","29.943460"],["-90.075583","29.943362"],["-90.075409","29.943264"],["-90.075235","29.943166"],["-90.075061","29.943068"],["-90.074887","29.942970"],["-90.074713","29.942872"],["-90.074550","29.942780"],["-90.074375","29.942683"],["-90.074201","29.942586"],["-90.074100","29.942530"],["-90.073925","29.942433"],["-90.073750","29.942336"],["-90.073575","29.942239"],["-90.073400","29.942142"],["-90.073360","29.942120"],["-90.073200","29.942030"],["-90.073026","29.941932"],["-90.072852","29.941833"],["-90.072679","29.941735"],["-90.072505","29.941637"],["-90.072331","29.941538"],["-90.072210","29.941470"],["-90.072035","29.941373"],["-90.071940","29.941320"],["-90.071763","29.941226"],["-90.071586","29.941132"],["-90.071449","29.941059"],["-90.071277","29.940958"],["-90.071105","29.940858"],["-90.070933","29.940757"],["-90.070761","29.940657"],["-90.070630","29.940580"],["-90.070455","29.940484"],["-90.070280","29.940387"],["-90.070104","29.940291"],["-90.069929","29.940194"],["-90.069754","29.940098"],["-90.069579","29.940002"],["-90.069403","29.939905"],["-90.069228","29.939809"],["-90.069053","29.939713"],["-90.068880","29.939613"],["-90.068706","29.939514"],["-90.068533","29.939415"],["-90.068360","29.939316"],["-90.068184","29.939220"],["-90.068110","29.939180"],["-90.067938","29.939080"],["-90.067765","29.938980"],["-90.067680","29.938930"],["-90.067505","29.938833"],["-90.067330","29.938737"],["-90.067150","29.938646"],["-90.066971","29.938556"],["-90.066800","29.938470"],["-90.066618","29.938383"],["-90.066437","29.938296"],["-90.066380","29.938269"],["-90.066191","29.938195"],["-90.066001","29.938123"],["-90.065940","29.938100"],["-90.065742","29.938046"],["-90.065609","29.938010"],["-90.065411","29.937957"],["-90.065310","29.937930"],["-90.065107","29.937892"],["-90.064904","29.937854"],["-90.064829","29.937840"],["-90.064770","29.937830"],["-90.064565","29.937803"],["-90.064359","29.937777"],["-90.064230","29.937760"],["-90.064130","29.937750"],["-90.063923","29.937740"],["-90.063716","29.937730"],["-90.063508","29.937720"],["-90.063301","29.937720"],["-90.063093","29.937720"],["-90.062886","29.937720"],["-90.062678","29.937720"],["-90.062470","29.937720"],["-90.062263","29.937714"],["-90.062140","29.937710"],["-90.062060","29.937709"],["-90.061959","29.937709"],["-90.061840","29.937710"],["-90.061680","29.937710"],["-90.061472","29.937710"],["-90.061265","29.937709"],["-90.061057","29.937709"],["-90.060919","29.937709"],["-90.060711","29.937711"],["-90.060504","29.937712"],["-90.060296","29.937714"],["-90.060089","29.937715"],["-90.059881","29.937717"],["-90.059674","29.937718"],["-90.059569","29.937719"],["-90.059361","29.937722"],["-90.059154","29.937724"],["-90.058946","29.937727"],["-90.058739","29.937730"],["-90.058531","29.937733"],["-90.058324","29.937735"],["-90.058116","29.937738"],["-90.057980","29.937740"],["-90.057772","29.937742"],["-90.057565","29.937743"],["-90.057357","29.937745"],["-90.057150","29.937747"],["-90.056942","29.937749"],["-90.056735","29.937750"],["-90.056527","29.937752"],["-90.056320","29.937754"],["-90.056112","29.937756"],["-90.055905","29.937757"],["-90.055697","29.937759"],["-90.055489","29.937761"],["-90.055282","29.937762"],["-90.055074","29.937764"],["-90.054867","29.937766"],["-90.054659","29.937768"],["-90.054452","29.937769"],["-90.054370","29.937770"],["-90.054162","29.937772"],["-90.053955","29.937774"],["-90.053747","29.937776"],["-90.053540","29.937778"],["-90.053470","29.937779"],["-90.053262","29.937779"],["-90.053079","29.937779"],["-90.052920","29.937779"],["-90.052712","29.937781"],["-90.052505","29.937782"],["-90.052297","29.937784"],["-90.052090","29.937786"],["-90.051882","29.937787"],["-90.051699","29.937789"],["-90.051491","29.937789"],["-90.051390","29.937789"],["-90.051183","29.937794"],["-90.050975","29.937798"],["-90.050768","29.937803"],["-90.050560","29.937808"],["-90.050500","29.937809"],["-90.050299","29.937809"],["-90.050091","29.937809"],["-90.049884","29.937809"],["-90.049676","29.937809"],["-90.049469","29.937809"],["-90.049261","29.937809"],["-90.049054","29.937809"],["-90.048846","29.937811"],["-90.048639","29.937814"],["-90.048431","29.937816"],["-90.048223","29.937819"],["-90.048016","29.937821"],["-90.047808","29.937823"],["-90.047601","29.937826"],["-90.047393","29.937828"],["-90.047229","29.937830"],["-90.047021","29.937832"],["-90.046814","29.937835"],["-90.046606","29.937837"],["-90.046399","29.937839"],["-90.046320","29.937840"],["-90.046112","29.937840"],["-90.045905","29.937840"],["-90.045697","29.937840"],["-90.045490","29.937840"],["-90.045389","29.937840"],["-90.045181","29.937841"],["-90.044974","29.937842"],["-90.044766","29.937844"],["-90.044559","29.937845"],["-90.044351","29.937846"],["-90.044144","29.937847"],["-90.043936","29.937849"],["-90.043729","29.937850"],["-90.043521","29.937850"],["-90.043390","29.937850"],["-90.043182","29.937850"],["-90.042975","29.937850"],["-90.042767","29.937850"],["-90.042670","29.937850"],["-90.042463","29.937834"],["-90.042256","29.937819"],["-90.042050","29.937803"],["-90.041845","29.937775"],["-90.041730","29.937760"],["-90.041528","29.937717"],["-90.041400","29.937690"],["-90.041250","29.937640"],["-90.041056","29.937575"],["-90.040863","29.937511"],["-90.040770","29.937480"],["-90.040587","29.937395"],["-90.040490","29.937350"],["-90.040317","29.937251"],["-90.040144","29.937151"],["-90.040020","29.937080"],["-90.039855","29.936970"],["-90.039750","29.936900"],["-90.039602","29.936774"],["-90.039454","29.936648"],["-90.039409","29.936610"],["-90.039350","29.936549"],["-90.039217","29.936411"],["-90.039130","29.936320"],["-90.039010","29.936173"],["-90.038900","29.936040"],["-90.038790","29.935888"],["-90.038690","29.935750"],["-90.038594","29.935590"],["-90.038570","29.935550"],["-90.038493","29.935383"],["-90.038450","29.935290"],["-90.038394","29.935117"],["-90.038360","29.935009"],["-90.038324","29.934832"],["-90.038288","29.934655"],["-90.038260","29.934520"],["-90.038241","29.934341"],["-90.038222","29.934162"],["-90.038201","29.933983"],["-90.038180","29.933804"],["-90.038184","29.933624"],["-90.038188","29.933444"],["-90.038202","29.933265"],["-90.038216","29.933085"],["-90.038230","29.932906"],["-90.038244","29.932726"],["-90.038258","29.932547"],["-90.038272","29.932367"],["-90.038279","29.932280"],["-90.038294","29.932101"],["-90.038310","29.931921"],["-90.038319","29.931810"],["-90.038335","29.931631"],["-90.038343","29.931502"],["-90.038351","29.931374"],["-90.038359","29.931245"],["-90.038368","29.931116"],["-90.038376","29.930988"],["-90.038384","29.930859"],["-90.038392","29.930730"],["-90.038400","29.930601"],["-90.038609","29.930608"],["-90.038819","29.930614"],["-90.039028","29.930621"],["-90.039237","29.930627"],["-90.039446","29.930633"],["-90.039655","29.930640"],["-90.039865","29.930646"],["-90.040074","29.930653"],["-90.040283","29.930659"],["-90.040492","29.930665"],["-90.040701","29.930672"],["-90.040911","29.930678"],["-90.041120","29.930685"],["-90.041329","29.930691"],["-90.041538","29.930697"],["-90.041748","29.930704"],["-90.041789","29.930558"],["-90.041831","29.930413"],["-90.041894","29.930288"],["-90.041956","29.930163"],["-90.041860","29.930160"],["-90.041875","29.930000"],["-90.041881","29.929895"],["-90.041888","29.929791"],["-90.041894","29.929686"],["-90.041901","29.929581"],["-90.041907","29.929477"],["-90.041914","29.929372"],["-90.041920","29.929267"],["-90.041927","29.929163"],["-90.041933","29.929058"],["-90.041940","29.928953"],["-90.041946","29.928849"],["-90.041953","29.928744"],["-90.041959","29.928639"],["-90.041966","29.928535"],["-90.041972","29.928430"],["-90.041978","29.928325"],["-90.041985","29.928221"],["-90.041991","29.928116"],["-90.041998","29.928011"],["-90.042004","29.927906"],["-90.042011","29.927802"],["-90.042017","29.927697"],["-90.042024","29.927592"],["-90.042030","29.927488"],["-90.042037","29.927383"],["-90.042043","29.927278"],["-90.042050","29.927174"],["-90.042056","29.927069"],["-90.042063","29.926964"],["-90.042069","29.926860"],["-90.042076","29.926755"],["-90.042082","29.926650"],["-90.042184","29.926584"],["-90.042085","29.926453"],["-90.042093","29.926301"],["-90.042102","29.926148"],["-90.042110","29.925996"],["-90.042118","29.925844"],["-90.042127","29.925692"],["-90.042135","29.925540"],["-90.042144","29.925387"],["-90.042152","29.925235"],["-90.042258","29.925096"],["-90.042190","29.925054"],["-90.042197","29.924933"],["-90.042205","29.924811"],["-90.042213","29.924690"],["-90.042220","29.924569"],["-90.042228","29.924448"],["-90.042236","29.924327"],["-90.042244","29.924206"],["-90.042251","29.924084"],["-90.042259","29.923963"],["-90.042267","29.923842"],["-90.042274","29.923721"],["-90.042282","29.923600"],["-90.042290","29.923478"],["-90.042298","29.923357"],["-90.042305","29.923236"],["-90.042313","29.923115"],["-90.042341","29.923010"],["-90.042369","29.922906"],["-90.042318","29.922845"],["-90.042382","29.922744"],["-90.042446","29.922643"],["-90.042510","29.922543"],["-90.042575","29.922442"],["-90.042639","29.922341"],["-90.042703","29.922240"],["-90.042767","29.922139"],["-90.042831","29.922038"],["-90.042895","29.921938"],["-90.042959","29.921837"],["-90.043023","29.921736"],["-90.043087","29.921635"],["-90.043151","29.921534"],["-90.043215","29.921433"],["-90.043279","29.921333"],["-90.043343","29.921232"],["-90.043284","29.921055"],["-90.043171","29.920948"],["-90.043048","29.920916"],["-90.042849","29.920897"],["-90.042960","29.920738"],["-90.043071","29.920579"],["-90.043181","29.920419"],["-90.043292","29.920260"],["-90.043403","29.920101"],["-90.043513","29.919942"],["-90.043624","29.919782"],["-90.043735","29.919623"],["-90.043909","29.919702"],["-90.044083","29.919781"],["-90.043985","29.919934"],["-90.043886","29.920087"],["-90.043809","29.920202"],["-90.043732","29.920318"],["-90.043655","29.920433"],["-90.043578","29.920549"],["-90.043501","29.920664"],["-90.043424","29.920780"],["-90.043347","29.920895"],["-90.043270","29.921011"],["-90.043082","29.920913"],["-90.042905","29.920921"],["-90.042728","29.920930"],["-90.042672","29.921021"],["-90.042616","29.921113"],["-90.042559","29.921204"],["-90.042503","29.921296"],["-90.042447","29.921387"],["-90.042390","29.921479"],["-90.042334","29.921570"],["-90.042278","29.921662"],["-90.042202","29.921770"],["-90.042127","29.921879"],["-90.042052","29.921988"],["-90.041977","29.922097"],["-90.041921","29.922182"],["-90.041866","29.922267"],["-90.041810","29.922352"],["-90.041755","29.922437"],["-90.041699","29.922522"],["-90.041643","29.922607"],["-90.041588","29.922693"],["-90.041532","29.922778"],["-90.041586","29.922922"],["-90.041639","29.923066"],["-90.041771","29.923196"],["-90.041902","29.923326"],["-90.042031","29.923466"],["-90.042071","29.923619"],["-90.042112","29.923773"],["-90.042101","29.923940"],["-90.042090","29.924107"],["-90.042080","29.924275"],["-90.042071","29.924413"],["-90.042061","29.924550"],["-90.042052","29.924688"],["-90.042042","29.924825"],["-90.041925","29.924963"],["-90.042029","29.925104"],["-90.042019","29.925263"],["-90.042009","29.925421"],["-90.041999","29.925580"],["-90.041990","29.925738"],["-90.041980","29.925896"],["-90.041970","29.926055"],["-90.041961","29.926213"],["-90.041951","29.926372"],["-90.041778","29.926423"],["-90.041943","29.926535"],["-90.041936","29.926632"],["-90.041928","29.926730"],["-90.041921","29.926828"],["-90.041914","29.926925"],["-90.041907","29.927023"],["-90.041899","29.927121"],["-90.041892","29.927218"],["-90.041885","29.927316"],["-90.041873","29.927508"],["-90.041861","29.927700"],["-90.041849","29.927891"],["-90.041836","29.928083"],["-90.041824","29.928275"],["-90.041812","29.928466"],["-90.041800","29.928658"],["-90.041787","29.928850"],["-90.041775","29.929041"],["-90.041763","29.929233"],["-90.041751","29.929424"],["-90.041738","29.929616"],["-90.041726","29.929808"],["-90.041714","29.929999"],["-90.041702","29.930191"],["-90.041689","29.930383"],["-90.041677","29.930574"],["-90.041565","29.930579"],["-90.041452","29.930583"],["-90.041339","29.930588"],["-90.041227","29.930593"],["-90.041109","29.930587"],["-90.040992","29.930581"],["-90.040875","29.930575"],["-90.040757","29.930570"],["-90.040640","29.930564"],["-90.040522","29.930558"],["-90.040405","29.930552"],["-90.040288","29.930546"],["-90.040152","29.930536"],["-90.040017","29.930525"],["-90.039881","29.930515"],["-90.039746","29.930504"],["-90.039611","29.930494"],["-90.039475","29.930484"],["-90.039340","29.930473"],["-90.039204","29.930463"],["-90.038996","29.930454"],["-90.038787","29.930445"],["-90.038578","29.930436"],["-90.038370","29.930427"],["-90.038161","29.930418"],["-90.037953","29.930409"],["-90.037744","29.930400"],["-90.037536","29.930391"],["-90.037327","29.930382"],["-90.037118","29.930373"],["-90.036910","29.930365"],["-90.036701","29.930356"],["-90.036493","29.930347"],["-90.036284","29.930338"],["-90.036076","29.930329"],["-90.035867","29.930320"],["-90.035685","29.930310"],["-90.035502","29.930300"],["-90.035320","29.930290"],["-90.035190","29.930285"],["-90.035060","29.930280"],["-90.034945","29.930270"],["-90.034830","29.930260"],["-90.034730","29.930250"],["-90.034515","29.930220"],["-90.034300","29.930190"],["-90.034160","29.930170"],["-90.033950","29.930120"],["-90.033920","29.930100"],["-90.033860","29.930050"],["-90.033755","29.930015"],["-90.033650","29.929980"],["-90.033530","29.929940"],["-90.033420","29.929890"],["-90.033330","29.929850"],["-90.033210","29.929790"],["-90.033140","29.929750"],["-90.033070","29.929720"],["-90.032930","29.929640"],["-90.032805","29.929547"],["-90.032681","29.929453"],["-90.032556","29.929360"],["-90.032432","29.929266"],["-90.032338","29.929343"],["-90.032244","29.929420"],["-90.032180","29.929494"],["-90.032196","29.929685"],["-90.032222","29.929829"],["-90.032215","29.929994"],["-90.032208","29.930160"],["-90.032200","29.930326"],["-90.032193","29.930491"],["-90.032186","29.930657"],["-90.032178","29.930822"],["-90.032171","29.930988"],["-90.032163","29.931154"],["-90.032153","29.931286"],["-90.032142","29.931418"],["-90.032131","29.931549"],["-90.032121","29.931681"],["-90.032110","29.931813"],["-90.032099","29.931945"],["-90.032088","29.932077"],["-90.032078","29.932209"],["-90.031905","29.932197"],["-90.031733","29.932185"],["-90.031561","29.932172"],["-90.031388","29.932160"],["-90.031216","29.932148"],["-90.031044","29.932136"],["-90.030871","29.932124"],["-90.030699","29.932111"],["-90.030561","29.932106"],["-90.030423","29.932100"],["-90.030285","29.932094"],["-90.030146","29.932088"],["-90.029969","29.932056"],["-90.029792","29.932023"],["-90.029663","29.931969"],["-90.029534","29.931915"],["-90.029404","29.931862"],["-90.029275","29.931808"],["-90.029146","29.931754"],["-90.029016","29.931700"],["-90.028887","29.931646"],["-90.028757","29.931593"],["-90.028628","29.931539"],["-90.028499","29.931485"],["-90.028369","29.931431"],["-90.028240","29.931377"],["-90.028110","29.931324"],["-90.027981","29.931270"],["-90.027852","29.931216"],["-90.027722","29.931162"],["-90.027562","29.931038"],["-90.027429","29.931013"],["-90.027296","29.930988"],["-90.027160","29.930934"],["-90.027025","29.930880"],["-90.026890","29.930830"],["-90.026770","29.930800"],["-90.026690","29.930790"],["-90.026620","29.930780"],["-90.026500","29.930770"],["-90.026300","29.930770"],["-90.026100","29.930760"],["-90.025985","29.930753"],["-90.025870","29.930745"],["-90.025755","29.930738"],["-90.025642","29.930686"],["-90.025640","29.930730"],["-90.025490","29.930730"],["-90.025365","29.930723"],["-90.025240","29.930715"],["-90.025115","29.930708"],["-90.024987","29.930700"],["-90.024820","29.930690"],["-90.024672","29.930683"],["-90.024525","29.930675"],["-90.024377","29.930668"],["-90.024230","29.930660"],["-90.024025","29.930655"],["-90.023820","29.930650"],["-90.023760","29.930650"],["-90.023585","29.930643"],["-90.023410","29.930635"],["-90.023235","29.930628"],["-90.023060","29.930620"],["-90.022919","29.930615"],["-90.022777","29.930610"],["-90.022636","29.930605"],["-90.022495","29.930600"],["-90.022354","29.930595"],["-90.022212","29.930590"],["-90.022071","29.930585"],["-90.021930","29.930580"],["-90.021930","29.930480"],["-90.022002","29.930485"],["-90.021820","29.930534"],["-90.021639","29.930583"],["-90.021494","29.930572"],["-90.021349","29.930561"],["-90.021232","29.930558"],["-90.021116","29.930554"],["-90.021000","29.930550"],["-90.020870","29.930540"],["-90.020720","29.930530"],["-90.020660","29.930520"],["-90.020460","29.930510"],["-90.020345","29.930500"],["-90.020230","29.930490"],["-90.020240","29.930403"],["-90.020230","29.930490"],["-90.020070","29.930480"],["-90.020090","29.930355"],["-90.020110","29.930230"],["-90.020130","29.930090"],["-90.020140","29.929960"],["-90.020150","29.929830"],["-90.020160","29.929760"],["-90.020160","29.929670"],["-90.020160","29.929510"],["-90.020150","29.929350"],["-90.020140","29.929190"],["-90.020125","29.929030"],["-90.020110","29.928870"],["-90.020090","29.928740"],["-90.020080","29.928690"],["-90.020070","29.928510"],["-90.020060","29.928440"],["-90.020070","29.928260"],["-90.020080","29.928080"],["-90.020144","29.928078"],["-90.020080","29.928080"],["-90.020080","29.928010"],["-90.020110","29.927820"],["-90.020160","29.927640"],["-90.020190","29.927540"],["-90.020220","29.927440"],["-90.020265","29.927320"],["-90.020310","29.927200"],["-90.020360","29.927080"],["-90.020410","29.926960"],["-90.020495","29.926820"],["-90.020580","29.926680"],["-90.020633","29.926595"],["-90.020685","29.926510"],["-90.020738","29.926425"],["-90.020790","29.926340"],["-90.020843","29.926243"],["-90.020895","29.926145"],["-90.020987","29.925978"],["-90.021078","29.925810"],["-90.021170","29.925643"],["-90.021261","29.925475"],["-90.021393","29.925386"],["-90.021344","29.925334"],["-90.021407","29.925203"],["-90.021471","29.925073"],["-90.021534","29.924942"],["-90.021598","29.924811"],["-90.021600","29.924726"],["-90.021683","29.924560"],["-90.021765","29.924394"],["-90.021848","29.924228"],["-90.021930","29.924061"],["-90.022011","29.923894"],["-90.022091","29.923727"],["-90.022110","29.923564"],["-90.022129","29.923401"],["-90.022148","29.923238"],["-90.022166","29.923076"],["-90.022257","29.922939"],["-90.022349","29.922801"],["-90.022440","29.922664"],["-90.022531","29.922527"],["-90.022571","29.922426"],["-90.022612","29.922325"],["-90.022652","29.922224"],["-90.022692","29.922123"],["-90.022693","29.921989"],["-90.022695","29.921855"],["-90.022696","29.921722"],["-90.022697","29.921588"],["-90.022690","29.921475"],["-90.022683","29.921362"],["-90.022675","29.921250"],["-90.022668","29.921137"],["-90.022695","29.921027"],["-90.022658","29.921017"],["-90.022638","29.920921"],["-90.022618","29.920825"],["-90.022597","29.920729"],["-90.022577","29.920634"],["-90.022556","29.920538"],["-90.022536","29.920442"],["-90.022516","29.920346"],["-90.022495","29.920250"],["-90.022459","29.920153"],["-90.022422","29.920056"],["-90.022399","29.919876"],["-90.022375","29.919696"],["-90.022381","29.919582"],["-90.022386","29.919469"],["-90.022392","29.919355"],["-90.022397","29.919241"],["-90.022428","29.919148"],["-90.022459","29.919055"],["-90.022489","29.918962"],["-90.022520","29.918869"],["-90.022620","29.918774"],["-90.022568","29.918661"],["-90.022416","29.918622"],["-90.022265","29.918583"],["-90.022142","29.918567"],["-90.022020","29.918550"],["-90.021860","29.918540"],["-90.021685","29.918535"],["-90.021510","29.918530"],["-90.021400","29.918520"],["-90.021195","29.918510"],["-90.020990","29.918500"],["-90.020785","29.918490"],["-90.020637","29.918440"],["-90.020490","29.918390"],["-90.020586","29.918395"],["-90.020490","29.918390"],["-90.020490","29.918470"],["-90.020490","29.918570"],["-90.020478","29.918715"],["-90.020465","29.918860"],["-90.020453","29.919005"],["-90.020440","29.919150"],["-90.020420","29.919330"],["-90.020420","29.919430"],["-90.020413","29.919550"],["-90.020405","29.919670"],["-90.020398","29.919790"],["-90.020390","29.919910"],["-90.020294","29.919902"],["-90.020390","29.919910"],["-90.020380","29.920055"],["-90.020370","29.920200"],["-90.020360","29.920345"],["-90.020350","29.920490"],["-90.020350","29.920520"],["-90.020340","29.920665"],["-90.020330","29.920810"],["-90.020320","29.920955"],["-90.020310","29.921100"],["-90.020280","29.921275"],["-90.020250","29.921450"],["-90.020210","29.921595"],["-90.020170","29.921740"],["-90.020150","29.921870"],["-90.020115","29.921970"],["-90.020080","29.922070"],["-90.020050","29.922165"],["-90.020020","29.922260"],["-90.019970","29.922400"],["-90.019910","29.922550"],["-90.019855","29.922645"],["-90.019800","29.922740"],["-90.019755","29.922830"],["-90.019710","29.922920"],["-90.019645","29.923015"],["-90.019580","29.923110"],["-90.019472","29.923060"],["-90.019580","29.923110"],["-90.019570","29.923130"],["-90.019500","29.923225"],["-90.019430","29.923320"],["-90.019410","29.923340"],["-90.019330","29.923450"],["-90.019230","29.923600"],["-90.019050","29.923495"],["-90.018870","29.923390"],["-90.018820","29.923350"],["-90.018700","29.923260"],["-90.018610","29.923180"],["-90.018525","29.923103"],["-90.018440","29.923025"],["-90.018355","29.922948"],["-90.018270","29.922870"],["-90.018165","29.922785"],["-90.018060","29.922700"],["-90.017930","29.922610"],["-90.017840","29.922560"],["-90.017760","29.922530"],["-90.017640","29.922480"],["-90.017525","29.922445"],["-90.017410","29.922410"],["-90.017250","29.922370"],["-90.017150","29.922340"],["-90.017030","29.922300"],["-90.016980","29.922280"],["-90.016950","29.922280"],["-90.016890","29.922250"],["-90.016830","29.922230"],["-90.016780","29.922210"],["-90.016700","29.922180"],["-90.016630","29.922150"],["-90.016580","29.922110"],["-90.016500","29.922070"],["-90.016362","29.921983"],["-90.016225","29.921895"],["-90.016087","29.921808"],["-90.015950","29.921720"],["-90.015880","29.921680"],["-90.015755","29.921600"],["-90.015630","29.921520"],["-90.015530","29.921458"],["-90.015430","29.921395"],["-90.015330","29.921333"],["-90.015230","29.921270"],["-90.015115","29.921198"],["-90.015000","29.921125"],["-90.014885","29.921053"],["-90.014770","29.920980"],["-90.014817","29.920931"],["-90.014770","29.920980"],["-90.014710","29.920940"],["-90.014550","29.920840"],["-90.014450","29.920780"],["-90.014340","29.920713"],["-90.014230","29.920645"],["-90.014120","29.920578"],["-90.014010","29.920510"],["-90.013860","29.920420"],["-90.013755","29.920350"],["-90.013650","29.920280"],["-90.013470","29.920170"],["-90.013290","29.920060"],["-90.013160","29.919980"],["-90.012980","29.919870"],["-90.012880","29.919800"],["-90.012740","29.919710"],["-90.012590","29.919600"],["-90.012490","29.919530"],["-90.012390","29.919460"],["-90.012280","29.919370"],["-90.012150","29.919290"],["-90.012210","29.919210"],["-90.012289","29.919251"],["-90.012220","29.919310"],["-90.012170","29.919270"],["-90.012085","29.919195"],["-90.012000","29.919120"],["-90.011915","29.919045"],["-90.011830","29.918970"],["-90.011730","29.918885"],["-90.011630","29.918800"],["-90.011510","29.918690"],["-90.011390","29.918580"],["-90.011270","29.918480"],["-90.011105","29.918365"],["-90.010940","29.918250"],["-90.010825","29.918170"],["-90.010710","29.918090"],["-90.010587","29.918015"],["-90.010465","29.917940"],["-90.010342","29.917865"],["-90.010220","29.917790"],["-90.010110","29.917720"],["-90.010000","29.917650"],["-90.009900","29.917580"],["-90.009800","29.917510"],["-90.009730","29.917460"],["-90.009630","29.917370"],["-90.009560","29.917300"],["-90.009460","29.917200"],["-90.009380","29.917110"],["-90.009330","29.917060"],["-90.009270","29.917000"],["-90.009190","29.916940"],["-90.009060","29.916840"],["-90.008960","29.916770"],["-90.008845","29.916700"],["-90.008730","29.916630"],["-90.008560","29.916510"],["-90.008614","29.916445"],["-90.008560","29.916510"],["-90.008500","29.916480"],["-90.008385","29.916410"],["-90.008270","29.916340"],["-90.008107","29.916240"],["-90.007945","29.916140"],["-90.007782","29.916040"],["-90.007620","29.915940"],["-90.007525","29.915890"],["-90.007430","29.915840"],["-90.007330","29.915800"],["-90.007130","29.915730"],["-90.006990","29.915680"],["-90.006850","29.915630"],["-90.006725","29.915580"],["-90.006600","29.915530"],["-90.006475","29.915480"],["-90.006350","29.915430"],["-90.006256","29.915378"],["-90.006162","29.915325"],["-90.006069","29.915273"],["-90.005975","29.915220"],["-90.005881","29.915168"],["-90.005787","29.915115"],["-90.005694","29.915063"],["-90.005600","29.915010"],["-90.005470","29.914945"],["-90.005340","29.914880"],["-90.005392","29.914809"],["-90.005340","29.914880"],["-90.005280","29.914840"],["-90.005140","29.914765"],["-90.005000","29.914690"],["-90.004860","29.914615"],["-90.004720","29.914540"],["-90.004580","29.914465"],["-90.004440","29.914390"],["-90.004300","29.914315"],["-90.004160","29.914240"],["-90.004010","29.914155"],["-90.003860","29.914070"],["-90.003710","29.913985"],["-90.003560","29.913900"],["-90.003447","29.913833"],["-90.003335","29.913765"],["-90.003222","29.913698"],["-90.003110","29.913630"],["-90.003167","29.913557"],["-90.003110","29.913630"],["-90.003010","29.913580"],["-90.002860","29.913490"],["-90.002760","29.913426"],["-90.002660","29.913363"],["-90.002560","29.913299"],["-90.002460","29.913235"],["-90.002360","29.913171"],["-90.002260","29.913108"],["-90.002160","29.913044"],["-90.002060","29.912980"],["-90.001964","29.912916"],["-90.001867","29.912853"],["-90.001771","29.912789"],["-90.001675","29.912725"],["-90.001579","29.912661"],["-90.001482","29.912598"],["-90.001386","29.912534"],["-90.001290","29.912470"],["-90.001140","29.912370"],["-90.000990","29.912270"],["-90.001046","29.912213"],["-90.000990","29.912270"],["-90.000920","29.912230"],["-90.000805","29.912155"],["-90.000690","29.912080"],["-90.000575","29.912005"],["-90.000460","29.911930"],["-90.000330","29.911840"],["-90.000200","29.911755"],["-90.000070","29.911670"],["-89.999940","29.911585"],["-89.999810","29.911500"],["-89.999720","29.911440"],["-89.999630","29.911380"],["-89.999537","29.911320"],["-89.999445","29.911260"],["-89.999352","29.911200"],["-89.999260","29.911140"],["-89.999167","29.911080"],["-89.999075","29.911020"],["-89.998982","29.910960"],["-89.998890","29.910900"],["-89.998735","29.910795"],["-89.998580","29.910690"],["-89.998425","29.910585"],["-89.998270","29.910480"],["-89.998160","29.910410"],["-89.998020","29.910320"],["-89.997880","29.910230"],["-89.997740","29.910140"],["-89.997600","29.910050"],["-89.997460","29.909960"],["-89.997320","29.909870"],["-89.997180","29.909780"],["-89.997040","29.909690"],["-89.996907","29.909613"],["-89.996775","29.909535"],["-89.996642","29.909458"],["-89.996510","29.909380"],["-89.996553","29.909329"],["-89.996510","29.909380"],["-89.996420","29.909320"],["-89.996235","29.909250"],["-89.996050","29.909180"],["-89.995960","29.909150"],["-89.995860","29.909110"],["-89.995660","29.909040"],["-89.995470","29.908980"],["-89.995340","29.908950"],["-89.995200","29.908915"],["-89.995060","29.908880"],["-89.994905","29.908855"],["-89.994750","29.908830"],["-89.994600","29.908830"],["-89.994643","29.908751"],["-89.994600","29.908830"],["-89.994590","29.908830"],["-89.994480","29.908820"],["-89.994360","29.908825"],["-89.994240","29.908830"],["-89.994110","29.908740"],["-89.994000","29.908715"],["-89.993890","29.908690"],["-89.993765","29.908680"],["-89.993640","29.908670"],["-89.993515","29.908660"],["-89.993390","29.908650"],["-89.993393","29.908480"],["-89.993395","29.908310"],["-89.993398","29.908140"],["-89.993400","29.907970"],["-89.993415","29.907810"],["-89.993430","29.907650"],["-89.993538","29.907656"],["-89.993430","29.907650"],["-89.993440","29.907550"],["-89.993450","29.907450"],["-89.993450","29.907420"],["-89.993460","29.907295"],["-89.993470","29.907170"],["-89.993470","29.907070"],["-89.993470","29.906970"],["-89.993460","29.906890"],["-89.993450","29.906720"],["-89.993544","29.906710"],["-89.993450","29.906720"],["-89.993450","29.906640"],["-89.993425","29.906530"],["-89.993400","29.906420"],["-89.993350","29.906270"],["-89.993310","29.906180"],["-89.993270","29.906090"],["-89.993180","29.905920"],["-89.993110","29.905825"],["-89.993040","29.905730"],["-89.992930","29.905600"],["-89.992800","29.905470"],["-89.992695","29.905363"],["-89.992590","29.905255"],["-89.992485","29.905148"],["-89.992380","29.905040"],["-89.992260","29.904920"],["-89.992155","29.904805"],["-89.992050","29.904690"],["-89.992102","29.904651"],["-89.992050","29.904690"],["-89.991970","29.904610"],["-89.991860","29.904500"],["-89.991690","29.904620"],["-89.991588","29.904690"],["-89.991485","29.904760"],["-89.991383","29.904830"],["-89.991280","29.904900"],["-89.991145","29.905000"],["-89.991010","29.905100"],["-89.990875","29.905200"],["-89.990740","29.905300"],["-89.990600","29.905400"],["-89.990478","29.905490"],["-89.990355","29.905580"],["-89.990233","29.905670"],["-89.990110","29.905760"],["-89.989963","29.905868"],["-89.989815","29.905975"],["-89.989668","29.906083"],["-89.989520","29.906190"],["-89.989457","29.906122"],["-89.989520","29.906190"],["-89.989410","29.906275"],["-89.989300","29.906360"],["-89.989168","29.906460"],["-89.989035","29.906560"],["-89.988903","29.906660"],["-89.988770","29.906760"],["-89.988665","29.906830"],["-89.988560","29.906900"],["-89.988470","29.906970"],["-89.988380","29.907040"],["-89.988290","29.907110"],["-89.988200","29.907180"],["-89.988050","29.907300"],["-89.987900","29.907420"],["-89.987890","29.907430"],["-89.987820","29.907490"],["-89.987680","29.907600"],["-89.987550","29.907710"],["-89.987465","29.907633"],["-89.987380","29.907555"],["-89.987295","29.907478"],["-89.987210","29.907400"],["-89.987150","29.907450"],["-89.987130","29.907500"],["-89.987110","29.907550"],["-89.987100","29.907610"],["-89.987090","29.907723"],["-89.987080","29.907835"],["-89.987070","29.907948"],["-89.987060","29.908060"],["-89.986990","29.908050"],["-89.986990","29.908007"],["-89.986990","29.908050"],["-89.987060","29.908060"],["-89.987045","29.908198"],["-89.987030","29.908335"],["-89.987015","29.908473"],["-89.987000","29.908610"],["-89.986983","29.908755"],["-89.986965","29.908900"],["-89.986948","29.909045"],["-89.986930","29.909190"],["-89.986913","29.909335"],["-89.986895","29.909480"],["-89.986878","29.909625"],["-89.986860","29.909770"],["-89.986838","29.909920"],["-89.986815","29.910070"],["-89.986793","29.910220"],["-89.986770","29.910370"],["-89.986750","29.910520"],["-89.986730","29.910670"],["-89.986718","29.910783"],["-89.986705","29.910895"],["-89.986693","29.911008"],["-89.986680","29.911120"],["-89.986658","29.911305"],["-89.986635","29.911490"],["-89.986613","29.911675"],["-89.986590","29.911860"],["-89.986573","29.912013"],["-89.986555","29.912165"],["-89.986538","29.912318"],["-89.986524","29.912414"],["-89.986510","29.912510"],["-89.986392","29.912462"],["-89.986510","29.912510"],["-89.986500","29.912610"],["-89.986483","29.912773"],["-89.986465","29.912935"],["-89.986448","29.913098"],["-89.986430","29.913260"],["-89.986408","29.913433"],["-89.986385","29.913605"],["-89.986363","29.913778"],["-89.986340","29.913950"],["-89.986200","29.913940"],["-89.986202","29.913869"],["-89.986200","29.913940"],["-89.986340","29.913950"],["-89.986326","29.914056"],["-89.986313","29.914163"],["-89.986299","29.914269"],["-89.986285","29.914375"],["-89.986271","29.914481"],["-89.986258","29.914588"],["-89.986244","29.914694"],["-89.986230","29.914800"],["-89.986210","29.914970"],["-89.986190","29.915140"],["-89.986170","29.915310"],["-89.986150","29.915480"],["-89.985990","29.915470"],["-89.985993","29.915402"],["-89.985990","29.915470"],["-89.986150","29.915480"],["-89.986128","29.915653"],["-89.986105","29.915825"],["-89.986083","29.915998"],["-89.986060","29.916170"],["-89.986060","29.916220"],["-89.986043","29.916380"],["-89.986025","29.916540"],["-89.986008","29.916700"],["-89.985990","29.916860"],["-89.985978","29.916964"],["-89.985965","29.917068"],["-89.985953","29.917171"],["-89.985940","29.917275"],["-89.985928","29.917379"],["-89.985915","29.917483"],["-89.985903","29.917586"],["-89.985890","29.917690"],["-89.985740","29.917680"],["-89.985745","29.917629"],["-89.985740","29.917680"],["-89.985890","29.917690"],["-89.985878","29.917788"],["-89.985865","29.917885"],["-89.985853","29.917983"],["-89.985840","29.918080"],["-89.985823","29.918213"],["-89.985805","29.918345"],["-89.985788","29.918478"],["-89.985770","29.918610"],["-89.985755","29.918728"],["-89.985740","29.918845"],["-89.985725","29.918963"],["-89.985710","29.919080"],["-89.985690","29.919250"],["-89.985670","29.919420"],["-89.985527","29.919406"],["-89.985670","29.919420"],["-89.985660","29.919510"],["-89.985640","29.919680"],["-89.985620","29.919850"],["-89.985600","29.919985"],["-89.985580","29.920120"],["-89.985565","29.920270"],["-89.985550","29.920420"],["-89.985540","29.920520"],["-89.985528","29.920620"],["-89.985515","29.920720"],["-89.985503","29.920820"],["-89.985490","29.920920"],["-89.985478","29.921020"],["-89.985465","29.921120"],["-89.985453","29.921220"],["-89.985440","29.921320"],["-89.985426","29.921434"],["-89.985413","29.921548"],["-89.985399","29.921661"],["-89.985385","29.921775"],["-89.985371","29.921889"],["-89.985358","29.922003"],["-89.985344","29.922116"],["-89.985330","29.922230"],["-89.985199","29.922201"],["-89.985330","29.922230"],["-89.985315","29.922344"],["-89.985300","29.922458"],["-89.985285","29.922571"],["-89.985270","29.922685"],["-89.985255","29.922799"],["-89.985240","29.922913"],["-89.985225","29.923026"],["-89.985210","29.923140"],["-89.985195","29.923260"],["-89.985180","29.923380"],["-89.985160","29.923570"],["-89.985140","29.923760"],["-89.985073","29.923752"],["-89.985140","29.923760"],["-89.985120","29.923890"],["-89.985002","29.923838"],["-89.984885","29.923785"],["-89.984767","29.923733"],["-89.984650","29.923680"],["-89.984502","29.923620"],["-89.984355","29.923560"],["-89.984207","29.923500"],["-89.984060","29.923440"],["-89.983935","29.923380"],["-89.983810","29.923320"],["-89.983645","29.923245"],["-89.983480","29.923170"],["-89.983315","29.923095"],["-89.983150","29.923020"],["-89.983040","29.922980"],["-89.983078","29.922904"],["-89.983040","29.922980"],["-89.982970","29.922950"],["-89.982775","29.922863"],["-89.982580","29.922775"],["-89.982385","29.922688"],["-89.982190","29.922600"],["-89.982077","29.922553"],["-89.981965","29.922505"],["-89.981852","29.922458"],["-89.981740","29.922410"],["-89.981552","29.922328"],["-89.981365","29.922245"],["-89.981177","29.922163"],["-89.980990","29.922080"],["-89.981000","29.921970"],["-89.981062","29.921974"],["-89.981000","29.921970"],["-89.980990","29.922080"],["-89.980871","29.922026"],["-89.980752","29.921973"],["-89.980634","29.921919"],["-89.980515","29.921865"],["-89.980396","29.921811"],["-89.980277","29.921758"],["-89.980159","29.921704"],["-89.980040","29.921650"],["-89.979870","29.921575"],["-89.979700","29.921500"],["-89.979530","29.921425"],["-89.979360","29.921350"],["-89.979400","29.921278"],["-89.979360","29.921350"],["-89.979270","29.921320"],["-89.979077","29.921235"],["-89.978885","29.921150"],["-89.978692","29.921065"],["-89.978500","29.920980"],["-89.978401","29.920935"],["-89.978302","29.920890"],["-89.978204","29.920845"],["-89.978105","29.920800"],["-89.978006","29.920755"],["-89.977907","29.920710"],["-89.977809","29.920665"],["-89.977710","29.920620"],["-89.977532","29.920543"],["-89.977355","29.920465"],["-89.977177","29.920388"],["-89.977000","29.920310"],["-89.977042","29.920232"],["-89.977000","29.920310"],["-89.976910","29.920270"],["-89.976900","29.920370"],["-89.976890","29.920470"],["-89.977065","29.920547"],["-89.977241","29.920623"],["-89.977416","29.920700"],["-89.977592","29.920777"],["-89.977767","29.920853"],["-89.977942","29.920930"],["-89.978118","29.921006"],["-89.978293","29.921083"],["-89.978469","29.921160"],["-89.978644","29.921236"],["-89.978820","29.921313"],["-89.978995","29.921389"],["-89.979170","29.921466"],["-89.979346","29.921543"],["-89.979521","29.921619"],["-89.979697","29.921696"],["-89.979804","29.921810"],["-89.979912","29.921925"],["-89.979955","29.921821"],["-89.980069","29.921873"],["-89.980182","29.921925"],["-89.980355","29.922000"],["-89.980527","29.922075"],["-89.980700","29.922150"],["-89.980800","29.922195"],["-89.980900","29.922240"],["-89.980857","29.922317"],["-89.980900","29.922240"],["-89.981004","29.922285"],["-89.981107","29.922330"],["-89.981211","29.922375"],["-89.981315","29.922420"],["-89.981419","29.922465"],["-89.981522","29.922510"],["-89.981626","29.922555"],["-89.981730","29.922600"],["-89.981750","29.922610"],["-89.981910","29.922690"],["-89.982040","29.922745"],["-89.982170","29.922800"],["-89.982342","29.922878"],["-89.982515","29.922955"],["-89.982687","29.923033"],["-89.982860","29.923110"],["-89.982893","29.923220"]]}]}},{"type":"Feature","properties":{"route_id":"114B","agency_id":"1","route_short_name":"114B","route_long_name":"Garden Oaks - Woodland","route_type":"3","route_color":"#c0dcc0","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.028750","29.928473"],["-90.027718","29.929325"],["-89.993147","29.910082"],["-89.992963","29.912499"],["-89.992982","29.914139"],["-89.992894","29.915068"],["-89.992712","29.917944"],["-90.009601","29.924247"],["-90.027500","29.931047"],["-90.017832","29.915316"],["-90.020410","29.918369"],["-90.022433","29.918820"],["-90.022412","29.920470"],["-90.022454","29.922398"],["-90.021565","29.924638"],["-90.020026","29.927384"],["-90.019907","29.930197"],["-90.021837","29.930630"],["-90.025332","29.930786"],["-89.991813","29.904860"],["-89.992623","29.920594"],["-89.995561","29.921447"],["-89.997607","29.922232"],["-90.001429","29.923569"],["-90.004301","29.923818"],["-90.075299","29.946626"],["-90.013200","29.924610"],["-89.993181","29.906756"],["-90.007754","29.924047"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.015353","29.920536"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.993148","29.908361"],["-90.018239","29.913926"],["-90.037190","29.930590"],["-90.014264","29.922163"],["-90.020897","29.925605"],["-90.020690","29.916673"],["-90.042369","29.922906"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-89.991813","29.904860"],["-89.991880","29.904810"],["-89.992000","29.904920"],["-89.992100","29.905030"],["-89.992220","29.905150"],["-89.992302","29.905235"],["-89.992385","29.905320"],["-89.992467","29.905405"],["-89.992550","29.905490"],["-89.992645","29.905590"],["-89.992740","29.905690"],["-89.992750","29.905700"],["-89.992870","29.905820"],["-89.992880","29.905840"],["-89.992960","29.905940"],["-89.993040","29.906080"],["-89.993110","29.906200"],["-89.993155","29.906305"],["-89.993200","29.906410"],["-89.993240","29.906570"],["-89.993260","29.906670"],["-89.993181","29.906756"],["-89.993270","29.906750"],["-89.993270","29.906800"],["-89.993265","29.906928"],["-89.993260","29.907055"],["-89.993255","29.907183"],["-89.993250","29.907310"],["-89.993250","29.907330"],["-89.993243","29.907488"],["-89.993235","29.907645"],["-89.993228","29.907803"],["-89.993220","29.907960"],["-89.993220","29.908065"],["-89.993220","29.908170"],["-89.993220","29.908310"],["-89.993220","29.908360"],["-89.993148","29.908361"],["-89.993220","29.908360"],["-89.993210","29.908440"],["-89.993210","29.908540"],["-89.993210","29.908640"],["-89.993215","29.908790"],["-89.993220","29.908940"],["-89.993215","29.909100"],["-89.993210","29.909260"],["-89.993200","29.909420"],["-89.993190","29.909580"],["-89.993183","29.909705"],["-89.993175","29.909830"],["-89.993168","29.909955"],["-89.993160","29.910080"],["-89.993147","29.910082"],["-89.993160","29.910080"],["-89.993160","29.910170"],["-89.993158","29.910315"],["-89.993155","29.910460"],["-89.993153","29.910605"],["-89.993150","29.910750"],["-89.993140","29.910820"],["-89.993150","29.910880"],["-89.993190","29.911010"],["-89.993190","29.911180"],["-89.993180","29.911310"],["-89.993175","29.911415"],["-89.993170","29.911520"],["-89.993165","29.911625"],["-89.993160","29.911730"],["-89.993153","29.911850"],["-89.993145","29.911970"],["-89.993138","29.912090"],["-89.993130","29.912210"],["-89.993125","29.912308"],["-89.993120","29.912405"],["-89.993115","29.912503"],["-89.993110","29.912600"],["-89.992963","29.912499"],["-89.993029","29.912670"],["-89.993083","29.912810"],["-89.993075","29.912990"],["-89.993069","29.913149"],["-89.993060","29.913329"],["-89.993053","29.913508"],["-89.993049","29.913589"],["-89.993027","29.913768"],["-89.993005","29.913947"],["-89.992984","29.914126"],["-89.992982","29.914139"],["-89.992973","29.914319"],["-89.992965","29.914498"],["-89.992944","29.914677"],["-89.992921","29.914856"],["-89.992898","29.915035"],["-89.992894","29.915068"],["-89.992934","29.915244"],["-89.992956","29.915340"],["-89.992943","29.915520"],["-89.992929","29.915699"],["-89.992916","29.915878"],["-89.992903","29.916058"],["-89.992900","29.916099"],["-89.992900","29.916160"],["-89.992891","29.916340"],["-89.992882","29.916519"],["-89.992873","29.916699"],["-89.992864","29.916879"],["-89.992860","29.916960"],["-89.992848","29.917140"],["-89.992836","29.917319"],["-89.992823","29.917499"],["-89.992820","29.917549"],["-89.992772","29.917724"],["-89.992724","29.917899"],["-89.992712","29.917944"],["-89.992758","29.918119"],["-89.992789","29.918240"],["-89.992778","29.918420"],["-89.992768","29.918599"],["-89.992760","29.918729"],["-89.992748","29.918909"],["-89.992736","29.919088"],["-89.992724","29.919268"],["-89.992720","29.919320"],["-89.992711","29.919500"],["-89.992702","29.919679"],["-89.992699","29.919729"],["-89.992683","29.919908"],["-89.992667","29.920088"],["-89.992652","29.920267"],["-89.992636","29.920446"],["-89.992623","29.920594"],["-89.992815","29.920662"],["-89.993007","29.920730"],["-89.993057","29.920748"],["-89.993120","29.920750"],["-89.993327","29.920756"],["-89.993450","29.920760"],["-89.993656","29.920779"],["-89.993780","29.920790"],["-89.993981","29.920834"],["-89.994173","29.920902"],["-89.994365","29.920970"],["-89.994558","29.921038"],["-89.994749","29.921107"],["-89.994900","29.921160"],["-89.995086","29.921241"],["-89.995271","29.921321"],["-89.995457","29.921402"],["-89.995561","29.921447"],["-89.995764","29.921486"],["-89.995872","29.921507"],["-89.996064","29.921575"],["-89.996257","29.921642"],["-89.996449","29.921709"],["-89.996642","29.921777"],["-89.996834","29.921844"],["-89.997027","29.921911"],["-89.997080","29.921930"],["-89.997253","29.922029"],["-89.997426","29.922128"],["-89.997607","29.922232"],["-89.997812","29.922258"],["-89.998018","29.922284"],["-89.998095","29.922294"],["-89.998229","29.922339"],["-89.998421","29.922408"],["-89.998612","29.922477"],["-89.998804","29.922546"],["-89.998995","29.922616"],["-89.999187","29.922685"],["-89.999379","29.922754"],["-89.999570","29.922823"],["-89.999762","29.922892"],["-89.999953","29.922961"],["-90.000146","29.923028"],["-90.000338","29.923095"],["-90.000531","29.923163"],["-90.000723","29.923230"],["-90.000810","29.923260"],["-90.000990","29.923350"],["-90.001170","29.923440"],["-90.001349","29.923529"],["-90.001429","29.923569"],["-90.001637","29.923570"],["-90.001759","29.923571"],["-90.001962","29.923608"],["-90.002080","29.923630"],["-90.002286","29.923650"],["-90.002390","29.923660"],["-90.002597","29.923670"],["-90.002804","29.923679"],["-90.003012","29.923687"],["-90.003219","29.923695"],["-90.003426","29.923703"],["-90.003599","29.923710"],["-90.003806","29.923717"],["-90.003880","29.923720"],["-90.004080","29.923767"],["-90.004281","29.923813"],["-90.004301","29.923818"],["-90.004310","29.923750"],["-90.004420","29.923760"],["-90.004532","29.923763"],["-90.004645","29.923765"],["-90.004757","29.923768"],["-90.004870","29.923770"],["-90.004940","29.923780"],["-90.005055","29.923785"],["-90.005170","29.923790"],["-90.005285","29.923795"],["-90.005400","29.923800"],["-90.005575","29.923808"],["-90.005750","29.923815"],["-90.005925","29.923823"],["-90.006100","29.923830"],["-90.006320","29.923840"],["-90.006490","29.923860"],["-90.006690","29.923890"],["-90.006880","29.923920"],["-90.007062","29.923922"],["-90.007244","29.923925"],["-90.007426","29.923927"],["-90.007608","29.923929"],["-90.007754","29.924047"],["-90.007922","29.924014"],["-90.008091","29.923980"],["-90.008224","29.923986"],["-90.008358","29.923992"],["-90.008491","29.923998"],["-90.008625","29.924004"],["-90.008777","29.924012"],["-90.008930","29.924020"],["-90.009082","29.924029"],["-90.009234","29.924037"],["-90.009411","29.924083"],["-90.009588","29.924130"],["-90.009601","29.924247"],["-90.009731","29.924238"],["-90.009861","29.924228"],["-90.009988","29.924252"],["-90.010116","29.924276"],["-90.010243","29.924300"],["-90.010371","29.924324"],["-90.010498","29.924348"],["-90.010625","29.924372"],["-90.010753","29.924396"],["-90.010880","29.924420"],["-90.011000","29.924430"],["-90.011120","29.924440"],["-90.011236","29.924445"],["-90.011352","29.924450"],["-90.011469","29.924455"],["-90.011585","29.924460"],["-90.011701","29.924465"],["-90.011817","29.924470"],["-90.011934","29.924475"],["-90.012050","29.924480"],["-90.012240","29.924490"],["-90.012430","29.924500"],["-90.012622","29.924510"],["-90.012825","29.924518"],["-90.013028","29.924525"],["-90.013200","29.924610"],["-90.013393","29.924553"],["-90.013551","29.924560"],["-90.013709","29.924567"],["-90.013867","29.924574"],["-90.014026","29.924581"],["-90.014037","29.924440"],["-90.014049","29.924298"],["-90.014061","29.924157"],["-90.014073","29.924016"],["-90.014084","29.923875"],["-90.014096","29.923734"],["-90.014108","29.923592"],["-90.014119","29.923451"],["-90.014131","29.923310"],["-90.014143","29.923169"],["-90.014155","29.923027"],["-90.014166","29.922886"],["-90.014178","29.922745"],["-90.014190","29.922604"],["-90.014202","29.922463"],["-90.014213","29.922321"],["-90.014264","29.922163"],["-90.014227","29.922053"],["-90.014259","29.921896"],["-90.014290","29.921739"],["-90.014322","29.921583"],["-90.014354","29.921426"],["-90.014412","29.921336"],["-90.014470","29.921246"],["-90.014527","29.921156"],["-90.014585","29.921066"],["-90.014677","29.920961"],["-90.014770","29.920857"],["-90.014851","29.920786"],["-90.014932","29.920715"],["-90.015013","29.920644"],["-90.015094","29.920573"],["-90.015224","29.920554"],["-90.015353","29.920536"],["-90.015355","29.920443"],["-90.015482","29.920371"],["-90.015609","29.920300"],["-90.015787","29.920207"],["-90.015860","29.920169"],["-90.016041","29.920081"],["-90.016221","29.919992"],["-90.016390","29.919910"],["-90.016540","29.919810"],["-90.016701","29.919696"],["-90.016838","29.919561"],["-90.016930","29.919470"],["-90.017055","29.919326"],["-90.017168","29.919176"],["-90.017240","29.919080"],["-90.017325","29.918916"],["-90.017390","29.918790"],["-90.017440","29.918640"],["-90.017484","29.918464"],["-90.017520","29.918320"],["-90.017544","29.918141"],["-90.017550","29.918100"],["-90.017572","29.917921"],["-90.017594","29.917742"],["-90.017600","29.917690"],["-90.017615","29.917511"],["-90.017619","29.917469"],["-90.017619","29.917379"],["-90.017627","29.917199"],["-90.017634","29.917020"],["-90.017642","29.916840"],["-90.017649","29.916660"],["-90.017658","29.916480"],["-90.017685","29.916302"],["-90.017711","29.916124"],["-90.017738","29.915945"],["-90.017765","29.915767"],["-90.017791","29.915588"],["-90.017818","29.915410"],["-90.017832","29.915316"],["-90.017730","29.915310"],["-90.017736","29.915213"],["-90.017743","29.915116"],["-90.017749","29.915019"],["-90.017755","29.914923"],["-90.017761","29.914826"],["-90.017768","29.914729"],["-90.017774","29.914632"],["-90.017780","29.914535"],["-90.017786","29.914438"],["-90.017793","29.914341"],["-90.017799","29.914244"],["-90.017805","29.914148"],["-90.017811","29.914051"],["-90.017818","29.913954"],["-90.017824","29.913857"],["-90.017830","29.913760"],["-90.017950","29.913770"],["-90.018110","29.913810"],["-90.018200","29.913830"],["-90.018270","29.913850"],["-90.018280","29.913850"],["-90.018239","29.913926"],["-90.018280","29.913850"],["-90.018420","29.913910"],["-90.018560","29.913970"],["-90.018650","29.914020"],["-90.018710","29.914080"],["-90.018810","29.914155"],["-90.018910","29.914230"],["-90.019010","29.914305"],["-90.019110","29.914380"],["-90.019160","29.914420"],["-90.019275","29.914513"],["-90.019390","29.914605"],["-90.019505","29.914698"],["-90.019620","29.914790"],["-90.019732","29.914880"],["-90.019845","29.914970"],["-90.019957","29.915060"],["-90.020070","29.915150"],["-90.020230","29.915280"],["-90.020364","29.915388"],["-90.020497","29.915495"],["-90.020631","29.915603"],["-90.020765","29.915710"],["-90.020899","29.915818"],["-90.021032","29.915925"],["-90.021166","29.916033"],["-90.021300","29.916140"],["-90.021240","29.916210"],["-90.021130","29.916315"],["-90.021020","29.916420"],["-90.020945","29.916500"],["-90.020870","29.916580"],["-90.020760","29.916710"],["-90.020690","29.916673"],["-90.020760","29.916710"],["-90.020700","29.916830"],["-90.020650","29.916930"],["-90.020610","29.917070"],["-90.020585","29.917165"],["-90.020560","29.917260"],["-90.020555","29.917360"],["-90.020550","29.917460"],["-90.020540","29.917590"],["-90.020540","29.917670"],["-90.020530","29.917845"],["-90.020520","29.918020"],["-90.020510","29.918195"],["-90.020500","29.918370"],["-90.020410","29.918369"],["-90.020500","29.918370"],["-90.020490","29.918470"],["-90.020604","29.918476"],["-90.020717","29.918483"],["-90.020831","29.918489"],["-90.020945","29.918495"],["-90.021059","29.918501"],["-90.021172","29.918508"],["-90.021286","29.918514"],["-90.021400","29.918520"],["-90.021510","29.918530"],["-90.021685","29.918535"],["-90.021860","29.918540"],["-90.022020","29.918550"],["-90.022230","29.918580"],["-90.022410","29.918620"],["-90.022590","29.918660"],["-90.022520","29.918840"],["-90.022433","29.918820"],["-90.022520","29.918840"],["-90.022460","29.919020"],["-90.022430","29.919140"],["-90.022400","29.919270"],["-90.022380","29.919410"],["-90.022370","29.919510"],["-90.022380","29.919690"],["-90.022390","29.919850"],["-90.022410","29.919965"],["-90.022430","29.920080"],["-90.022470","29.920200"],["-90.022510","29.920320"],["-90.022540","29.920450"],["-90.022412","29.920470"],["-90.022540","29.920450"],["-90.022565","29.920570"],["-90.022590","29.920690"],["-90.022610","29.920770"],["-90.022635","29.920945"],["-90.022660","29.921120"],["-90.022670","29.921250"],["-90.022680","29.921355"],["-90.022690","29.921460"],["-90.022700","29.921530"],["-90.022700","29.921660"],["-90.022700","29.921790"],["-90.022695","29.921930"],["-90.022690","29.922070"],["-90.022680","29.922160"],["-90.022650","29.922250"],["-90.022610","29.922345"],["-90.022570","29.922440"],["-90.022454","29.922398"],["-90.022570","29.922440"],["-90.022510","29.922550"],["-90.022453","29.922650"],["-90.022395","29.922750"],["-90.022338","29.922850"],["-90.022280","29.922950"],["-90.022240","29.923020"],["-90.022200","29.923110"],["-90.022175","29.923205"],["-90.022150","29.923300"],["-90.022133","29.923400"],["-90.022115","29.923500"],["-90.022098","29.923600"],["-90.022080","29.923700"],["-90.022040","29.923850"],["-90.021990","29.923985"],["-90.021940","29.924120"],["-90.021900","29.924200"],["-90.021848","29.924288"],["-90.021795","29.924375"],["-90.021743","29.924463"],["-90.021690","29.924550"],["-90.021620","29.924710"],["-90.021565","29.924638"],["-90.021620","29.924710"],["-90.021510","29.924790"],["-90.021500","29.924800"],["-90.021440","29.924910"],["-90.021380","29.924990"],["-90.021290","29.925130"],["-90.021230","29.925220"],["-90.021145","29.925360"],["-90.021060","29.925500"],["-90.020990","29.925640"],["-90.020897","29.925605"],["-90.020990","29.925640"],["-90.020903","29.925800"],["-90.020815","29.925960"],["-90.020728","29.926120"],["-90.020640","29.926280"],["-90.020590","29.926370"],["-90.020540","29.926460"],["-90.020460","29.926620"],["-90.020405","29.926725"],["-90.020350","29.926830"],["-90.020295","29.926935"],["-90.020240","29.927040"],["-90.020200","29.927135"],["-90.020160","29.927230"],["-90.020090","29.927400"],["-90.020026","29.927384"],["-90.020090","29.927400"],["-90.020060","29.927500"],["-90.020020","29.927660"],["-90.019995","29.927770"],["-90.019970","29.927880"],["-90.019960","29.928000"],["-90.019940","29.928190"],["-90.019930","29.928380"],["-90.019930","29.928450"],["-90.019940","29.928570"],["-90.019940","29.928650"],["-90.019965","29.928840"],["-90.019990","29.929030"],["-90.020010","29.929210"],["-90.020010","29.929300"],["-90.020020","29.929470"],["-90.020020","29.929550"],["-90.020030","29.929710"],["-90.020010","29.929860"],["-90.020000","29.930000"],["-90.019985","29.930100"],["-90.019970","29.930200"],["-90.019907","29.930197"],["-90.019970","29.930200"],["-90.019970","29.930240"],["-90.019950","29.930340"],["-90.019930","29.930440"],["-90.020070","29.930480"],["-90.020265","29.930495"],["-90.020460","29.930510"],["-90.020660","29.930520"],["-90.020720","29.930530"],["-90.020870","29.930540"],["-90.021075","29.930537"],["-90.021281","29.930535"],["-90.021665","29.930579"],["-90.021486","29.930532"],["-90.021591","29.930586"],["-90.021696","29.930639"],["-90.021801","29.930693"],["-90.021906","29.930746"],["-90.021837","29.930630"],["-90.022046","29.930636"],["-90.022256","29.930641"],["-90.022465","29.930647"],["-90.022675","29.930652"],["-90.022884","29.930658"],["-90.023094","29.930663"],["-90.023303","29.930669"],["-90.023513","29.930674"],["-90.023722","29.930680"],["-90.023932","29.930685"],["-90.024141","29.930691"],["-90.024351","29.930696"],["-90.024560","29.930702"],["-90.024726","29.930704"],["-90.024892","29.930706"],["-90.025058","29.930707"],["-90.025224","29.930709"],["-90.025332","29.930786"],["-90.025340","29.930720"],["-90.025490","29.930730"],["-90.025642","29.930738"],["-90.025795","29.930745"],["-90.025947","29.930753"],["-90.026100","29.930760"],["-90.026300","29.930770"],["-90.026500","29.930770"],["-90.026620","29.930780"],["-90.026690","29.930790"],["-90.026770","29.930800"],["-90.026890","29.930830"],["-90.027025","29.930880"],["-90.027160","29.930930"],["-90.027295","29.930980"],["-90.027430","29.931030"],["-90.027500","29.931047"],["-90.027500","29.931050"],["-90.027550","29.931070"],["-90.027559","29.930928"],["-90.027568","29.930785"],["-90.027576","29.930643"],["-90.027585","29.930500"],["-90.027594","29.930358"],["-90.027603","29.930215"],["-90.027611","29.930073"],["-90.027620","29.929930"],["-90.027630","29.929770"],["-90.027638","29.929658"],["-90.027645","29.929545"],["-90.027653","29.929433"],["-90.027662","29.929315"],["-90.027718","29.929325"],["-90.027645","29.929254"],["-90.027523","29.929225"],["-90.027401","29.929196"],["-90.027279","29.929140"],["-90.027157","29.929084"],["-90.027047","29.929024"],["-90.026937","29.928963"],["-90.026811","29.928935"],["-90.026685","29.928907"],["-90.026569","29.928903"],["-90.026453","29.928899"],["-90.026337","29.928895"],["-90.026221","29.928891"],["-90.026065","29.928849"],["-90.025909","29.928807"],["-90.025792","29.928745"],["-90.025676","29.928683"],["-90.025509","29.928624"],["-90.025343","29.928565"],["-90.025188","29.928501"],["-90.025034","29.928437"],["-90.024879","29.928373"],["-90.024724","29.928310"],["-90.024607","29.928260"],["-90.024490","29.928211"],["-90.024373","29.928162"],["-90.024256","29.928113"],["-90.024131","29.928036"],["-90.024076","29.927950"],["-90.024085","29.927820"],["-90.024094","29.927690"],["-90.024106","29.927558"],["-90.024117","29.927425"],["-90.024129","29.927293"],["-90.024140","29.927160"],["-90.024142","29.927062"],["-90.024144","29.926963"],["-90.024145","29.926864"],["-90.024147","29.926765"],["-90.024152","29.926603"],["-90.024158","29.926442"],["-90.024271","29.926491"],["-90.024384","29.926540"],["-90.024498","29.926589"],["-90.024611","29.926638"],["-90.024724","29.926687"],["-90.024837","29.926735"],["-90.024951","29.926784"],["-90.025064","29.926833"],["-90.025177","29.926882"],["-90.025290","29.926931"],["-90.025404","29.926980"],["-90.025517","29.927029"],["-90.025630","29.927078"],["-90.025743","29.927127"],["-90.025856","29.927176"],["-90.025970","29.927225"],["-90.026153","29.927303"],["-90.026337","29.927381"],["-90.026521","29.927459"],["-90.026705","29.927536"],["-90.026889","29.927614"],["-90.027072","29.927692"],["-90.027256","29.927770"],["-90.027440","29.927848"],["-90.027624","29.927925"],["-90.027807","29.928003"],["-90.027991","29.928081"],["-90.028175","29.928159"],["-90.028359","29.928237"],["-90.028457","29.928296"],["-90.028554","29.928355"],["-90.028652","29.928414"],["-90.028750","29.928473"],["-90.028905","29.928507"],["-90.029060","29.928540"],["-90.029210","29.928600"],["-90.029280","29.928640"],["-90.029360","29.928680"],["-90.029490","29.928760"],["-90.029605","29.928830"],["-90.029720","29.928900"],["-90.029810","29.928950"],["-90.029900","29.929000"],["-90.030030","29.929070"],["-90.030160","29.929140"],["-90.030300","29.929200"],["-90.030440","29.929260"],["-90.030580","29.929320"],["-90.030720","29.929380"],["-90.030850","29.929435"],["-90.030980","29.929490"],["-90.031150","29.929555"],["-90.031320","29.929620"],["-90.031420","29.929670"],["-90.031540","29.929700"],["-90.031750","29.929750"],["-90.031860","29.929760"],["-90.031950","29.929770"],["-90.031970","29.929770"],["-90.032170","29.929790"],["-90.032210","29.929790"],["-90.032390","29.929830"],["-90.032490","29.929850"],["-90.032530","29.929860"],["-90.032580","29.929870"],["-90.032680","29.929890"],["-90.032800","29.929930"],["-90.032970","29.929990"],["-90.033100","29.930040"],["-90.033230","29.930090"],["-90.033380","29.930140"],["-90.033560","29.930200"],["-90.033740","29.930240"],["-90.033890","29.930280"],["-90.034070","29.930320"],["-90.034250","29.930350"],["-90.034450","29.930380"],["-90.034460","29.930380"],["-90.034640","29.930410"],["-90.034770","29.930430"],["-90.034890","29.930420"],["-90.034970","29.930420"],["-90.035050","29.930420"],["-90.035090","29.930420"],["-90.035290","29.930433"],["-90.035490","29.930445"],["-90.035690","29.930458"],["-90.035890","29.930470"],["-90.036020","29.930475"],["-90.036150","29.930480"],["-90.036240","29.930480"],["-90.036320","29.930500"],["-90.036467","29.930505"],["-90.036615","29.930510"],["-90.036762","29.930515"],["-90.036910","29.930520"],["-90.037030","29.930520"],["-90.037150","29.930520"],["-90.037190","29.930590"],["-90.037199","29.930531"],["-90.037344","29.930536"],["-90.037488","29.930541"],["-90.037633","29.930546"],["-90.037777","29.930551"],["-90.037922","29.930556"],["-90.038067","29.930561"],["-90.038211","29.930566"],["-90.038356","29.930571"],["-90.038500","29.930576"],["-90.038645","29.930581"],["-90.038790","29.930586"],["-90.038934","29.930591"],["-90.039079","29.930596"],["-90.039223","29.930600"],["-90.039368","29.930605"],["-90.039513","29.930610"],["-90.039657","29.930615"],["-90.039802","29.930620"],["-90.039946","29.930625"],["-90.040091","29.930630"],["-90.040236","29.930635"],["-90.040380","29.930640"],["-90.040525","29.930645"],["-90.040669","29.930650"],["-90.040814","29.930655"],["-90.040959","29.930660"],["-90.041103","29.930665"],["-90.041248","29.930670"],["-90.041392","29.930675"],["-90.041537","29.930679"],["-90.041682","29.930684"],["-90.041826","29.930689"],["-90.041832","29.930571"],["-90.041837","29.930452"],["-90.041842","29.930334"],["-90.041848","29.930215"],["-90.041956","29.930163"],["-90.041860","29.930160"],["-90.041875","29.930000"],["-90.041888","29.929816"],["-90.041901","29.929633"],["-90.041914","29.929449"],["-90.041927","29.929265"],["-90.041941","29.929081"],["-90.041954","29.928898"],["-90.041967","29.928714"],["-90.041980","29.928530"],["-90.041993","29.928346"],["-90.042006","29.928163"],["-90.042019","29.927979"],["-90.042032","29.927795"],["-90.042045","29.927611"],["-90.042059","29.927428"],["-90.042072","29.927244"],["-90.042085","29.927060"],["-90.042110","29.926941"],["-90.042134","29.926822"],["-90.042159","29.926703"],["-90.042184","29.926584"],["-90.042173","29.926464"],["-90.042161","29.926343"],["-90.042150","29.926223"],["-90.042138","29.926103"],["-90.042160","29.925961"],["-90.042181","29.925819"],["-90.042203","29.925677"],["-90.042224","29.925535"],["-90.042233","29.925426"],["-90.042241","29.925316"],["-90.042250","29.925206"],["-90.042258","29.925096"],["-90.042255","29.924973"],["-90.042252","29.924851"],["-90.042249","29.924728"],["-90.042246","29.924606"],["-90.042253","29.924499"],["-90.042261","29.924393"],["-90.042269","29.924287"],["-90.042277","29.924181"],["-90.042284","29.924074"],["-90.042292","29.923968"],["-90.042300","29.923862"],["-90.042307","29.923756"],["-90.042315","29.923650"],["-90.042323","29.923543"],["-90.042330","29.923437"],["-90.042338","29.923331"],["-90.042346","29.923225"],["-90.042354","29.923118"],["-90.042361","29.923012"],["-90.042369","29.922906"],["-90.042376","29.922722"],["-90.042437","29.922631"],["-90.042498","29.922539"],["-90.042559","29.922448"],["-90.042620","29.922356"],["-90.042681","29.922265"],["-90.042742","29.922173"],["-90.042803","29.922082"],["-90.042864","29.921990"],["-90.042925","29.921898"],["-90.042986","29.921807"],["-90.043047","29.921715"],["-90.043126","29.921594"],["-90.043205","29.921474"],["-90.043284","29.921353"],["-90.043363","29.921233"],["-90.043322","29.921135"],["-90.043282","29.921037"],["-90.043177","29.920984"],["-90.043073","29.920930"],["-90.043126","29.920845"],["-90.043179","29.920759"],["-90.043232","29.920673"],["-90.043285","29.920587"],["-90.043338","29.920502"],["-90.043391","29.920416"],["-90.043444","29.920330"],["-90.043497","29.920244"],["-90.043550","29.920158"],["-90.043603","29.920073"],["-90.043656","29.919987"],["-90.043709","29.919901"],["-90.043762","29.919815"],["-90.043815","29.919730"],["-90.043868","29.919644"],["-90.043921","29.919558"],["-90.044033","29.919630"],["-90.044146","29.919702"],["-90.044081","29.919798"],["-90.044016","29.919895"],["-90.043951","29.919991"],["-90.043886","29.920087"],["-90.043811","29.920204"],["-90.043735","29.920321"],["-90.043660","29.920438"],["-90.043584","29.920555"],["-90.043509","29.920672"],["-90.043433","29.920789"],["-90.043358","29.920906"],["-90.043282","29.921023"],["-90.043164","29.920981"],["-90.043046","29.920939"],["-90.042883","29.920939"],["-90.042719","29.920939"],["-90.042655","29.921040"],["-90.042592","29.921142"],["-90.042528","29.921243"],["-90.042465","29.921345"],["-90.042401","29.921446"],["-90.042337","29.921547"],["-90.042283","29.921634"],["-90.042228","29.921720"],["-90.042174","29.921807"],["-90.042120","29.921894"],["-90.042065","29.921980"],["-90.042011","29.922067"],["-90.041957","29.922153"],["-90.041902","29.922240"],["-90.041848","29.922327"],["-90.041793","29.922413"],["-90.041739","29.922500"],["-90.041685","29.922587"],["-90.041630","29.922673"],["-90.041576","29.922760"],["-90.041522","29.922846"],["-90.041467","29.922933"],["-90.041413","29.923020"],["-90.041359","29.923106"],["-90.041304","29.923193"],["-90.041250","29.923280"],["-90.041195","29.923366"],["-90.041141","29.923453"],["-90.041087","29.923539"],["-90.041032","29.923626"],["-90.040978","29.923713"],["-90.040924","29.923799"],["-90.040869","29.923886"],["-90.040815","29.923973"],["-90.040761","29.924059"],["-90.040706","29.924146"],["-90.040652","29.924232"],["-90.040598","29.924319"],["-90.040543","29.924406"],["-90.040489","29.924492"],["-90.040434","29.924579"],["-90.040380","29.924666"],["-90.040326","29.924752"],["-90.040271","29.924839"],["-90.040217","29.924925"],["-90.040163","29.925012"],["-90.040108","29.925099"],["-90.040054","29.925185"],["-90.040000","29.925272"],["-90.039945","29.925359"],["-90.039891","29.925445"],["-90.039837","29.925532"],["-90.039782","29.925618"],["-90.039728","29.925705"],["-90.039673","29.925792"],["-90.039619","29.925878"],["-90.039565","29.925965"],["-90.039510","29.926052"],["-90.039456","29.926138"],["-90.039402","29.926225"],["-90.039347","29.926311"],["-90.039293","29.926398"],["-90.039239","29.926485"],["-90.039184","29.926571"],["-90.039130","29.926658"],["-90.039075","29.926745"],["-90.039021","29.926831"],["-90.038967","29.926918"],["-90.038912","29.927004"],["-90.038858","29.927091"],["-90.038780","29.927250"],["-90.038702","29.927409"],["-90.038643","29.927536"],["-90.038584","29.927664"],["-90.038525","29.927791"],["-90.038466","29.927918"],["-90.038356","29.928055"],["-90.038246","29.928193"],["-90.038187","29.928306"],["-90.038114","29.928408"],["-90.038040","29.928509"],["-90.037959","29.928632"],["-90.037879","29.928755"],["-90.037852","29.928853"],["-90.037825","29.928950"],["-90.037799","29.929048"],["-90.037772","29.929146"],["-90.037749","29.929251"],["-90.037726","29.929357"],["-90.037703","29.929463"],["-90.037681","29.929569"],["-90.037652","29.929703"],["-90.037624","29.929838"],["-90.037596","29.929973"],["-90.037568","29.930108"],["-90.037529","29.930241"],["-90.037491","29.930375"],["-90.037452","29.930508"],["-90.037414","29.930642"],["-90.037399","29.930764"],["-90.037384","29.930886"],["-90.037369","29.931008"],["-90.037355","29.931130"],["-90.037330","29.931283"],["-90.037306","29.931437"],["-90.037282","29.931590"],["-90.037258","29.931743"],["-90.037246","29.931853"],["-90.037234","29.931962"],["-90.037222","29.932071"],["-90.037210","29.932180"],["-90.037306","29.932320"],["-90.037300","29.932453"],["-90.037293","29.932587"],["-90.037286","29.932721"],["-90.037279","29.932854"],["-90.037273","29.932988"],["-90.037266","29.933122"],["-90.037259","29.933255"],["-90.037253","29.933389"],["-90.037253","29.933532"],["-90.037253","29.933675"],["-90.037253","29.933818"],["-90.037253","29.933961"],["-90.037259","29.934086"],["-90.037266","29.934212"],["-90.037273","29.934337"],["-90.037279","29.934463"],["-90.037317","29.934630"],["-90.037355","29.934798"],["-90.037393","29.934965"],["-90.037431","29.935133"],["-90.037480","29.935237"],["-90.037529","29.935341"],["-90.037577","29.935445"],["-90.037626","29.935549"],["-90.037675","29.935653"],["-90.037724","29.935757"],["-90.037773","29.935861"],["-90.037822","29.935965"],["-90.037930","29.936100"],["-90.038037","29.936235"],["-90.038144","29.936370"],["-90.038251","29.936504"],["-90.038331","29.936588"],["-90.038410","29.936671"],["-90.038490","29.936754"],["-90.038569","29.936837"],["-90.038690","29.936937"],["-90.038812","29.937037"],["-90.038933","29.937137"],["-90.039055","29.937237"],["-90.039196","29.937322"],["-90.039337","29.937408"],["-90.039478","29.937493"],["-90.039619","29.937578"],["-90.039760","29.937664"],["-90.039902","29.937749"],["-90.040043","29.937835"],["-90.040184","29.937920"],["-90.040320","29.937976"],["-90.040456","29.938032"],["-90.040592","29.938087"],["-90.040728","29.938143"],["-90.040923","29.938195"],["-90.041119","29.938247"],["-90.041314","29.938299"],["-90.041509","29.938351"],["-90.041685","29.938378"],["-90.041862","29.938404"],["-90.042038","29.938431"],["-90.042214","29.938458"],["-90.042347","29.938465"],["-90.042480","29.938472"],["-90.042613","29.938479"],["-90.042745","29.938486"],["-90.042950","29.938497"],["-90.043155","29.938509"],["-90.043359","29.938520"],["-90.043564","29.938532"],["-90.043773","29.938545"],["-90.043982","29.938558"],["-90.044191","29.938572"],["-90.044401","29.938585"],["-90.044530","29.938588"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052548","29.938928"],["-90.052755","29.938925"],["-90.052963","29.938923"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053385","29.938918"],["-90.053590","29.938915"],["-90.053795","29.938913"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060145","29.938860"],["-90.060270","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060760","29.938858"],["-90.060980","29.938855"],["-90.061200","29.938853"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062350","29.938840"],["-90.062560","29.938840"],["-90.062780","29.938840"],["-90.062910","29.938840"],["-90.063040","29.938840"],["-90.063170","29.938840"],["-90.063300","29.938840"],["-90.063380","29.938830"],["-90.063560","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067575","29.939513"],["-90.067680","29.939545"],["-90.067785","29.939578"],["-90.067890","29.939610"],["-90.068080","29.939660"],["-90.068200","29.939700"],["-90.068320","29.939740"],["-90.068430","29.939780"],["-90.068530","29.939810"],["-90.068670","29.939860"],["-90.068780","29.939900"],["-90.068920","29.939960"],["-90.069000","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940190"],["-90.069470","29.940230"],["-90.069620","29.940320"],["-90.069795","29.940415"],["-90.069970","29.940510"],["-90.070077","29.940570"],["-90.070185","29.940630"],["-90.070292","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070905","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071685","29.941416"],["-90.071811","29.941481"],["-90.071936","29.941547"],["-90.072062","29.941612"],["-90.072187","29.941678"],["-90.072312","29.941744"],["-90.072438","29.941809"],["-90.072563","29.941875"],["-90.072726","29.941979"],["-90.072888","29.942084"],["-90.073051","29.942188"],["-90.073213","29.942293"],["-90.073313","29.942358"],["-90.073413","29.942422"],["-90.073513","29.942487"],["-90.073613","29.942552"],["-90.073713","29.942617"],["-90.073813","29.942682"],["-90.073913","29.942746"],["-90.074013","29.942811"],["-90.074148","29.942903"],["-90.074266","29.942974"],["-90.074383","29.943046"],["-90.074501","29.943117"],["-90.074619","29.943188"],["-90.074751","29.943292"],["-90.074834","29.943362"],["-90.074917","29.943432"],["-90.075001","29.943502"],["-90.075084","29.943572"],["-90.075176","29.943633"],["-90.075267","29.943693"],["-90.075359","29.943754"],["-90.075451","29.943814"],["-90.075560","29.943881"],["-90.075668","29.943948"],["-90.075777","29.944014"],["-90.075886","29.944081"],["-90.076040","29.944182"],["-90.076093","29.944268"],["-90.076146","29.944353"],["-90.076193","29.944463"],["-90.076241","29.944573"],["-90.076259","29.944761"],["-90.076214","29.944917"],["-90.076143","29.945071"],["-90.076035","29.945204"],["-90.075928","29.945338"],["-90.075888","29.945475"],["-90.075848","29.945612"],["-90.075749","29.945731"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945980"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075473","29.946350"],["-90.075445","29.946450"],["-90.075418","29.946550"],["-90.075390","29.946650"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.028750","29.928473"],["-90.027718","29.929325"],["-89.993147","29.910082"],["-89.992963","29.912499"],["-89.992982","29.914139"],["-89.992894","29.915068"],["-89.992712","29.917944"],["-90.009601","29.924247"],["-90.027500","29.931047"],["-90.017832","29.915316"],["-90.020410","29.918369"],["-90.022433","29.918820"],["-90.022412","29.920470"],["-90.022454","29.922398"],["-90.021565","29.924638"],["-90.020026","29.927384"],["-90.019907","29.930197"],["-90.021837","29.930630"],["-90.025332","29.930786"],["-89.991813","29.904860"],["-89.992623","29.920594"],["-89.995561","29.921447"],["-89.997607","29.922232"],["-90.001429","29.923569"],["-90.004301","29.923818"],["-90.075299","29.946626"],["-90.013200","29.924610"],["-89.993181","29.906756"],["-90.007754","29.924047"],["-90.075384","29.950864"],["-90.074879","29.948054"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.015353","29.920536"],["-90.077310","29.951484"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.993148","29.908361"],["-90.018239","29.913926"],["-90.037190","29.930590"],["-90.014264","29.922163"],["-90.020897","29.925605"],["-90.020690","29.916673"],["-90.042369","29.922906"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-89.991813","29.904860"],["-89.991880","29.904810"],["-89.992000","29.904920"],["-89.992100","29.905030"],["-89.992220","29.905150"],["-89.992302","29.905235"],["-89.992385","29.905320"],["-89.992467","29.905405"],["-89.992550","29.905490"],["-89.992645","29.905590"],["-89.992740","29.905690"],["-89.992750","29.905700"],["-89.992870","29.905820"],["-89.992880","29.905840"],["-89.992960","29.905940"],["-89.993040","29.906080"],["-89.993110","29.906200"],["-89.993155","29.906305"],["-89.993200","29.906410"],["-89.993240","29.906570"],["-89.993260","29.906670"],["-89.993181","29.906756"],["-89.993270","29.906750"],["-89.993270","29.906800"],["-89.993265","29.906928"],["-89.993260","29.907055"],["-89.993255","29.907183"],["-89.993250","29.907310"],["-89.993250","29.907330"],["-89.993243","29.907488"],["-89.993235","29.907645"],["-89.993228","29.907803"],["-89.993220","29.907960"],["-89.993220","29.908065"],["-89.993220","29.908170"],["-89.993220","29.908310"],["-89.993220","29.908360"],["-89.993148","29.908361"],["-89.993220","29.908360"],["-89.993210","29.908440"],["-89.993210","29.908540"],["-89.993210","29.908640"],["-89.993215","29.908790"],["-89.993220","29.908940"],["-89.993215","29.909100"],["-89.993210","29.909260"],["-89.993200","29.909420"],["-89.993190","29.909580"],["-89.993183","29.909705"],["-89.993175","29.909830"],["-89.993168","29.909955"],["-89.993160","29.910080"],["-89.993147","29.910082"],["-89.993160","29.910080"],["-89.993160","29.910170"],["-89.993158","29.910315"],["-89.993155","29.910460"],["-89.993153","29.910605"],["-89.993150","29.910750"],["-89.993140","29.910820"],["-89.993150","29.910880"],["-89.993190","29.911010"],["-89.993190","29.911180"],["-89.993180","29.911310"],["-89.993175","29.911415"],["-89.993170","29.911520"],["-89.993165","29.911625"],["-89.993160","29.911730"],["-89.993153","29.911850"],["-89.993145","29.911970"],["-89.993138","29.912090"],["-89.993130","29.912210"],["-89.993125","29.912308"],["-89.993120","29.912405"],["-89.993115","29.912503"],["-89.993110","29.912600"],["-89.992963","29.912499"],["-89.993029","29.912670"],["-89.993083","29.912810"],["-89.993075","29.912990"],["-89.993069","29.913149"],["-89.993060","29.913329"],["-89.993053","29.913508"],["-89.993049","29.913589"],["-89.993027","29.913768"],["-89.993005","29.913947"],["-89.992984","29.914126"],["-89.992982","29.914139"],["-89.992973","29.914319"],["-89.992965","29.914498"],["-89.992944","29.914677"],["-89.992921","29.914856"],["-89.992898","29.915035"],["-89.992894","29.915068"],["-89.992934","29.915244"],["-89.992956","29.915340"],["-89.992943","29.915520"],["-89.992929","29.915699"],["-89.992916","29.915878"],["-89.992903","29.916058"],["-89.992900","29.916099"],["-89.992900","29.916160"],["-89.992891","29.916340"],["-89.992882","29.916519"],["-89.992873","29.916699"],["-89.992864","29.916879"],["-89.992860","29.916960"],["-89.992848","29.917140"],["-89.992836","29.917319"],["-89.992823","29.917499"],["-89.992820","29.917549"],["-89.992772","29.917724"],["-89.992724","29.917899"],["-89.992712","29.917944"],["-89.992758","29.918119"],["-89.992789","29.918240"],["-89.992778","29.918420"],["-89.992768","29.918599"],["-89.992760","29.918729"],["-89.992748","29.918909"],["-89.992736","29.919088"],["-89.992724","29.919268"],["-89.992720","29.919320"],["-89.992711","29.919500"],["-89.992702","29.919679"],["-89.992699","29.919729"],["-89.992683","29.919908"],["-89.992667","29.920088"],["-89.992652","29.920267"],["-89.992636","29.920446"],["-89.992623","29.920594"],["-89.992815","29.920662"],["-89.993007","29.920730"],["-89.993057","29.920748"],["-89.993120","29.920750"],["-89.993327","29.920756"],["-89.993450","29.920760"],["-89.993656","29.920779"],["-89.993780","29.920790"],["-89.993981","29.920834"],["-89.994173","29.920902"],["-89.994365","29.920970"],["-89.994558","29.921038"],["-89.994749","29.921107"],["-89.994900","29.921160"],["-89.995086","29.921241"],["-89.995271","29.921321"],["-89.995457","29.921402"],["-89.995561","29.921447"],["-89.995764","29.921486"],["-89.995872","29.921507"],["-89.996064","29.921575"],["-89.996257","29.921642"],["-89.996449","29.921709"],["-89.996642","29.921777"],["-89.996834","29.921844"],["-89.997027","29.921911"],["-89.997080","29.921930"],["-89.997253","29.922029"],["-89.997426","29.922128"],["-89.997607","29.922232"],["-89.997812","29.922258"],["-89.998018","29.922284"],["-89.998095","29.922294"],["-89.998229","29.922339"],["-89.998421","29.922408"],["-89.998612","29.922477"],["-89.998804","29.922546"],["-89.998995","29.922616"],["-89.999187","29.922685"],["-89.999379","29.922754"],["-89.999570","29.922823"],["-89.999762","29.922892"],["-89.999953","29.922961"],["-90.000146","29.923028"],["-90.000338","29.923095"],["-90.000531","29.923163"],["-90.000723","29.923230"],["-90.000810","29.923260"],["-90.000990","29.923350"],["-90.001170","29.923440"],["-90.001349","29.923529"],["-90.001429","29.923569"],["-90.001637","29.923570"],["-90.001759","29.923571"],["-90.001962","29.923608"],["-90.002080","29.923630"],["-90.002286","29.923650"],["-90.002390","29.923660"],["-90.002597","29.923670"],["-90.002804","29.923679"],["-90.003012","29.923687"],["-90.003219","29.923695"],["-90.003426","29.923703"],["-90.003599","29.923710"],["-90.003806","29.923717"],["-90.003880","29.923720"],["-90.004080","29.923767"],["-90.004281","29.923813"],["-90.004301","29.923818"],["-90.004310","29.923750"],["-90.004420","29.923760"],["-90.004532","29.923763"],["-90.004645","29.923765"],["-90.004757","29.923768"],["-90.004870","29.923770"],["-90.004940","29.923780"],["-90.005055","29.923785"],["-90.005170","29.923790"],["-90.005285","29.923795"],["-90.005400","29.923800"],["-90.005575","29.923808"],["-90.005750","29.923815"],["-90.005925","29.923823"],["-90.006100","29.923830"],["-90.006320","29.923840"],["-90.006490","29.923860"],["-90.006690","29.923890"],["-90.006790","29.923900"],["-90.006880","29.923920"],["-90.006980","29.923910"],["-90.007123","29.923917"],["-90.007266","29.923924"],["-90.007409","29.923931"],["-90.007552","29.923938"],["-90.007653","29.923993"],["-90.007754","29.924047"],["-90.007879","29.924007"],["-90.008003","29.923966"],["-90.008132","29.923975"],["-90.008261","29.923983"],["-90.008390","29.923991"],["-90.008519","29.924000"],["-90.008648","29.924008"],["-90.008777","29.924016"],["-90.008906","29.924025"],["-90.009035","29.924033"],["-90.009153","29.924057"],["-90.009271","29.924082"],["-90.009389","29.924106"],["-90.009507","29.924131"],["-90.009601","29.924247"],["-90.009731","29.924238"],["-90.009861","29.924228"],["-90.009988","29.924252"],["-90.010116","29.924276"],["-90.010243","29.924300"],["-90.010371","29.924324"],["-90.010498","29.924348"],["-90.010625","29.924372"],["-90.010753","29.924396"],["-90.010880","29.924420"],["-90.011000","29.924430"],["-90.011120","29.924440"],["-90.011236","29.924445"],["-90.011352","29.924450"],["-90.011469","29.924455"],["-90.011585","29.924460"],["-90.011701","29.924465"],["-90.011817","29.924470"],["-90.011934","29.924475"],["-90.012050","29.924480"],["-90.012240","29.924490"],["-90.012430","29.924500"],["-90.012622","29.924510"],["-90.012825","29.924518"],["-90.013028","29.924525"],["-90.013200","29.924610"],["-90.013393","29.924553"],["-90.013551","29.924560"],["-90.013709","29.924567"],["-90.013867","29.924574"],["-90.014026","29.924581"],["-90.014037","29.924440"],["-90.014049","29.924298"],["-90.014061","29.924157"],["-90.014073","29.924016"],["-90.014084","29.923875"],["-90.014096","29.923734"],["-90.014108","29.923592"],["-90.014119","29.923451"],["-90.014131","29.923310"],["-90.014143","29.923169"],["-90.014155","29.923027"],["-90.014166","29.922886"],["-90.014178","29.922745"],["-90.014190","29.922604"],["-90.014202","29.922463"],["-90.014213","29.922321"],["-90.014264","29.922163"],["-90.014227","29.922053"],["-90.014259","29.921896"],["-90.014290","29.921739"],["-90.014322","29.921583"],["-90.014354","29.921426"],["-90.014412","29.921336"],["-90.014470","29.921246"],["-90.014527","29.921156"],["-90.014585","29.921066"],["-90.014677","29.920961"],["-90.014770","29.920857"],["-90.014851","29.920786"],["-90.014932","29.920715"],["-90.015013","29.920644"],["-90.015094","29.920573"],["-90.015224","29.920554"],["-90.015353","29.920536"],["-90.015355","29.920443"],["-90.015482","29.920371"],["-90.015609","29.920300"],["-90.015787","29.920207"],["-90.015860","29.920169"],["-90.016041","29.920081"],["-90.016221","29.919992"],["-90.016390","29.919910"],["-90.016540","29.919810"],["-90.016701","29.919696"],["-90.016838","29.919561"],["-90.016930","29.919470"],["-90.017055","29.919326"],["-90.017168","29.919176"],["-90.017240","29.919080"],["-90.017325","29.918916"],["-90.017390","29.918790"],["-90.017440","29.918640"],["-90.017484","29.918464"],["-90.017520","29.918320"],["-90.017544","29.918141"],["-90.017550","29.918100"],["-90.017572","29.917921"],["-90.017594","29.917742"],["-90.017600","29.917690"],["-90.017615","29.917511"],["-90.017619","29.917469"],["-90.017619","29.917379"],["-90.017627","29.917199"],["-90.017634","29.917020"],["-90.017642","29.916840"],["-90.017649","29.916660"],["-90.017658","29.916480"],["-90.017685","29.916302"],["-90.017711","29.916124"],["-90.017738","29.915945"],["-90.017765","29.915767"],["-90.017791","29.915588"],["-90.017818","29.915410"],["-90.017832","29.915316"],["-90.017730","29.915310"],["-90.017736","29.915213"],["-90.017743","29.915116"],["-90.017749","29.915019"],["-90.017755","29.914923"],["-90.017761","29.914826"],["-90.017768","29.914729"],["-90.017774","29.914632"],["-90.017780","29.914535"],["-90.017786","29.914438"],["-90.017793","29.914341"],["-90.017799","29.914244"],["-90.017805","29.914148"],["-90.017811","29.914051"],["-90.017818","29.913954"],["-90.017824","29.913857"],["-90.017830","29.913760"],["-90.017950","29.913770"],["-90.018110","29.913810"],["-90.018200","29.913830"],["-90.018270","29.913850"],["-90.018280","29.913850"],["-90.018239","29.913926"],["-90.018280","29.913850"],["-90.018420","29.913910"],["-90.018560","29.913970"],["-90.018650","29.914020"],["-90.018710","29.914080"],["-90.018810","29.914155"],["-90.018910","29.914230"],["-90.019010","29.914305"],["-90.019110","29.914380"],["-90.019160","29.914420"],["-90.019275","29.914513"],["-90.019390","29.914605"],["-90.019505","29.914698"],["-90.019620","29.914790"],["-90.019732","29.914880"],["-90.019845","29.914970"],["-90.019957","29.915060"],["-90.020070","29.915150"],["-90.020230","29.915280"],["-90.020364","29.915388"],["-90.020497","29.915495"],["-90.020631","29.915603"],["-90.020765","29.915710"],["-90.020899","29.915818"],["-90.021032","29.915925"],["-90.021166","29.916033"],["-90.021300","29.916140"],["-90.021240","29.916210"],["-90.021130","29.916315"],["-90.021020","29.916420"],["-90.020945","29.916500"],["-90.020870","29.916580"],["-90.020760","29.916710"],["-90.020690","29.916673"],["-90.020760","29.916710"],["-90.020700","29.916830"],["-90.020650","29.916930"],["-90.020610","29.917070"],["-90.020585","29.917165"],["-90.020560","29.917260"],["-90.020555","29.917360"],["-90.020550","29.917460"],["-90.020540","29.917590"],["-90.020540","29.917670"],["-90.020530","29.917845"],["-90.020520","29.918020"],["-90.020510","29.918195"],["-90.020500","29.918370"],["-90.020410","29.918369"],["-90.020500","29.918370"],["-90.020490","29.918470"],["-90.020604","29.918476"],["-90.020717","29.918483"],["-90.020831","29.918489"],["-90.020945","29.918495"],["-90.021059","29.918501"],["-90.021172","29.918508"],["-90.021286","29.918514"],["-90.021400","29.918520"],["-90.021510","29.918530"],["-90.021685","29.918535"],["-90.021860","29.918540"],["-90.022020","29.918550"],["-90.022230","29.918580"],["-90.022410","29.918620"],["-90.022590","29.918660"],["-90.022520","29.918840"],["-90.022433","29.918820"],["-90.022520","29.918840"],["-90.022460","29.919020"],["-90.022430","29.919140"],["-90.022400","29.919270"],["-90.022380","29.919410"],["-90.022370","29.919510"],["-90.022380","29.919690"],["-90.022390","29.919850"],["-90.022410","29.919965"],["-90.022430","29.920080"],["-90.022470","29.920200"],["-90.022510","29.920320"],["-90.022540","29.920450"],["-90.022412","29.920470"],["-90.022540","29.920450"],["-90.022565","29.920570"],["-90.022590","29.920690"],["-90.022610","29.920770"],["-90.022635","29.920945"],["-90.022660","29.921120"],["-90.022670","29.921250"],["-90.022680","29.921355"],["-90.022690","29.921460"],["-90.022700","29.921530"],["-90.022700","29.921660"],["-90.022700","29.921790"],["-90.022695","29.921930"],["-90.022690","29.922070"],["-90.022680","29.922160"],["-90.022650","29.922250"],["-90.022610","29.922345"],["-90.022570","29.922440"],["-90.022454","29.922398"],["-90.022570","29.922440"],["-90.022510","29.922550"],["-90.022453","29.922650"],["-90.022395","29.922750"],["-90.022338","29.922850"],["-90.022280","29.922950"],["-90.022240","29.923020"],["-90.022200","29.923110"],["-90.022175","29.923205"],["-90.022150","29.923300"],["-90.022133","29.923400"],["-90.022115","29.923500"],["-90.022098","29.923600"],["-90.022080","29.923700"],["-90.022040","29.923850"],["-90.021990","29.923985"],["-90.021940","29.924120"],["-90.021900","29.924200"],["-90.021848","29.924288"],["-90.021795","29.924375"],["-90.021743","29.924463"],["-90.021690","29.924550"],["-90.021620","29.924710"],["-90.021565","29.924638"],["-90.021620","29.924710"],["-90.021510","29.924790"],["-90.021500","29.924800"],["-90.021440","29.924910"],["-90.021380","29.924990"],["-90.021290","29.925130"],["-90.021230","29.925220"],["-90.021145","29.925360"],["-90.021060","29.925500"],["-90.020990","29.925640"],["-90.020897","29.925605"],["-90.020990","29.925640"],["-90.020903","29.925800"],["-90.020815","29.925960"],["-90.020728","29.926120"],["-90.020640","29.926280"],["-90.020590","29.926370"],["-90.020540","29.926460"],["-90.020460","29.926620"],["-90.020405","29.926725"],["-90.020350","29.926830"],["-90.020295","29.926935"],["-90.020240","29.927040"],["-90.020200","29.927135"],["-90.020160","29.927230"],["-90.020090","29.927400"],["-90.020026","29.927384"],["-90.020090","29.927400"],["-90.020060","29.927500"],["-90.020020","29.927660"],["-90.019995","29.927770"],["-90.019970","29.927880"],["-90.019960","29.928000"],["-90.019940","29.928190"],["-90.019930","29.928380"],["-90.019930","29.928450"],["-90.019940","29.928570"],["-90.019940","29.928650"],["-90.019965","29.928840"],["-90.019990","29.929030"],["-90.020010","29.929210"],["-90.020010","29.929300"],["-90.020020","29.929470"],["-90.020020","29.929550"],["-90.020030","29.929710"],["-90.020010","29.929860"],["-90.020000","29.930000"],["-90.019985","29.930100"],["-90.019970","29.930200"],["-90.019907","29.930197"],["-90.019970","29.930200"],["-90.019970","29.930240"],["-90.019950","29.930340"],["-90.019930","29.930440"],["-90.020070","29.930480"],["-90.020265","29.930495"],["-90.020460","29.930510"],["-90.020660","29.930520"],["-90.020720","29.930530"],["-90.020870","29.930540"],["-90.021075","29.930537"],["-90.021281","29.930535"],["-90.021665","29.930579"],["-90.021486","29.930532"],["-90.021591","29.930586"],["-90.021696","29.930639"],["-90.021801","29.930693"],["-90.021906","29.930746"],["-90.021837","29.930630"],["-90.021952","29.930605"],["-90.022067","29.930581"],["-90.022265","29.930588"],["-90.022463","29.930595"],["-90.022661","29.930602"],["-90.022859","29.930609"],["-90.023057","29.930616"],["-90.023255","29.930623"],["-90.023454","29.930630"],["-90.023652","29.930637"],["-90.023850","29.930643"],["-90.024048","29.930650"],["-90.024246","29.930657"],["-90.024444","29.930664"],["-90.024643","29.930671"],["-90.024841","29.930678"],["-90.025039","29.930685"],["-90.025237","29.930692"],["-90.025332","29.930786"],["-90.025340","29.930720"],["-90.025490","29.930730"],["-90.025642","29.930738"],["-90.025795","29.930745"],["-90.025947","29.930753"],["-90.026100","29.930760"],["-90.026300","29.930770"],["-90.026500","29.930770"],["-90.026620","29.930780"],["-90.026690","29.930790"],["-90.026770","29.930800"],["-90.026890","29.930830"],["-90.027025","29.930880"],["-90.027160","29.930930"],["-90.027295","29.930980"],["-90.027430","29.931030"],["-90.027500","29.931050"],["-90.027500","29.931047"],["-90.027500","29.931050"],["-90.027550","29.931070"],["-90.027559","29.930928"],["-90.027568","29.930785"],["-90.027576","29.930643"],["-90.027585","29.930500"],["-90.027594","29.930358"],["-90.027603","29.930215"],["-90.027611","29.930073"],["-90.027620","29.929930"],["-90.027630","29.929770"],["-90.027638","29.929658"],["-90.027645","29.929545"],["-90.027653","29.929433"],["-90.027662","29.929315"],["-90.027718","29.929325"],["-90.027645","29.929254"],["-90.027523","29.929225"],["-90.027401","29.929196"],["-90.027279","29.929140"],["-90.027157","29.929084"],["-90.027047","29.929024"],["-90.026937","29.928963"],["-90.026811","29.928935"],["-90.026685","29.928907"],["-90.026569","29.928903"],["-90.026453","29.928899"],["-90.026337","29.928895"],["-90.026221","29.928891"],["-90.026065","29.928849"],["-90.025909","29.928807"],["-90.025792","29.928745"],["-90.025676","29.928683"],["-90.025509","29.928624"],["-90.025343","29.928565"],["-90.025188","29.928501"],["-90.025034","29.928437"],["-90.024879","29.928373"],["-90.024724","29.928310"],["-90.024607","29.928260"],["-90.024490","29.928211"],["-90.024373","29.928162"],["-90.024256","29.928113"],["-90.024131","29.928036"],["-90.024076","29.927950"],["-90.024085","29.927820"],["-90.024094","29.927690"],["-90.024106","29.927558"],["-90.024117","29.927425"],["-90.024129","29.927293"],["-90.024140","29.927160"],["-90.024142","29.927062"],["-90.024144","29.926963"],["-90.024145","29.926864"],["-90.024147","29.926765"],["-90.024152","29.926603"],["-90.024158","29.926442"],["-90.024271","29.926491"],["-90.024384","29.926540"],["-90.024498","29.926589"],["-90.024611","29.926638"],["-90.024724","29.926687"],["-90.024837","29.926735"],["-90.024951","29.926784"],["-90.025064","29.926833"],["-90.025177","29.926882"],["-90.025290","29.926931"],["-90.025404","29.926980"],["-90.025517","29.927029"],["-90.025630","29.927078"],["-90.025743","29.927127"],["-90.025856","29.927176"],["-90.025970","29.927225"],["-90.026153","29.927303"],["-90.026337","29.927381"],["-90.026521","29.927459"],["-90.026705","29.927536"],["-90.026889","29.927614"],["-90.027072","29.927692"],["-90.027256","29.927770"],["-90.027440","29.927848"],["-90.027624","29.927925"],["-90.027807","29.928003"],["-90.027991","29.928081"],["-90.028175","29.928159"],["-90.028359","29.928237"],["-90.028457","29.928296"],["-90.028554","29.928355"],["-90.028652","29.928414"],["-90.028750","29.928473"],["-90.028905","29.928507"],["-90.029060","29.928540"],["-90.029210","29.928600"],["-90.029280","29.928640"],["-90.029360","29.928680"],["-90.029490","29.928760"],["-90.029605","29.928830"],["-90.029720","29.928900"],["-90.029810","29.928950"],["-90.029900","29.929000"],["-90.030030","29.929070"],["-90.030160","29.929140"],["-90.030300","29.929200"],["-90.030440","29.929260"],["-90.030580","29.929320"],["-90.030720","29.929380"],["-90.030850","29.929435"],["-90.030980","29.929490"],["-90.031150","29.929555"],["-90.031320","29.929620"],["-90.031420","29.929670"],["-90.031540","29.929700"],["-90.031750","29.929750"],["-90.031860","29.929760"],["-90.031950","29.929770"],["-90.031970","29.929770"],["-90.032170","29.929790"],["-90.032210","29.929790"],["-90.032390","29.929830"],["-90.032490","29.929850"],["-90.032530","29.929860"],["-90.032580","29.929870"],["-90.032680","29.929890"],["-90.032800","29.929930"],["-90.032970","29.929990"],["-90.033100","29.930040"],["-90.033230","29.930090"],["-90.033380","29.930140"],["-90.033560","29.930200"],["-90.033740","29.930240"],["-90.033890","29.930280"],["-90.034070","29.930320"],["-90.034250","29.930350"],["-90.034450","29.930380"],["-90.034460","29.930380"],["-90.034640","29.930410"],["-90.034770","29.930430"],["-90.034890","29.930420"],["-90.034970","29.930420"],["-90.035050","29.930420"],["-90.035090","29.930420"],["-90.035290","29.930433"],["-90.035490","29.930445"],["-90.035690","29.930458"],["-90.035890","29.930470"],["-90.036020","29.930475"],["-90.036150","29.930480"],["-90.036240","29.930480"],["-90.036320","29.930500"],["-90.036467","29.930505"],["-90.036615","29.930510"],["-90.036762","29.930515"],["-90.036910","29.930520"],["-90.037030","29.930520"],["-90.037150","29.930520"],["-90.037190","29.930590"],["-90.037199","29.930531"],["-90.037344","29.930536"],["-90.037488","29.930541"],["-90.037633","29.930546"],["-90.037777","29.930551"],["-90.037922","29.930556"],["-90.038067","29.930561"],["-90.038211","29.930566"],["-90.038356","29.930571"],["-90.038500","29.930576"],["-90.038645","29.930581"],["-90.038790","29.930586"],["-90.038934","29.930591"],["-90.039079","29.930596"],["-90.039223","29.930600"],["-90.039368","29.930605"],["-90.039513","29.930610"],["-90.039657","29.930615"],["-90.039802","29.930620"],["-90.039946","29.930625"],["-90.040091","29.930630"],["-90.040236","29.930635"],["-90.040380","29.930640"],["-90.040525","29.930645"],["-90.040669","29.930650"],["-90.040814","29.930655"],["-90.040959","29.930660"],["-90.041103","29.930665"],["-90.041248","29.930670"],["-90.041392","29.930675"],["-90.041537","29.930679"],["-90.041682","29.930684"],["-90.041826","29.930689"],["-90.041832","29.930571"],["-90.041837","29.930452"],["-90.041842","29.930334"],["-90.041848","29.930215"],["-90.041956","29.930163"],["-90.041860","29.930160"],["-90.041875","29.930000"],["-90.041888","29.929816"],["-90.041901","29.929633"],["-90.041914","29.929449"],["-90.041927","29.929265"],["-90.041941","29.929081"],["-90.041954","29.928898"],["-90.041967","29.928714"],["-90.041980","29.928530"],["-90.041993","29.928346"],["-90.042006","29.928163"],["-90.042019","29.927979"],["-90.042032","29.927795"],["-90.042045","29.927611"],["-90.042059","29.927428"],["-90.042072","29.927244"],["-90.042085","29.927060"],["-90.042110","29.926941"],["-90.042134","29.926822"],["-90.042159","29.926703"],["-90.042184","29.926584"],["-90.042173","29.926464"],["-90.042161","29.926343"],["-90.042150","29.926223"],["-90.042138","29.926103"],["-90.042160","29.925961"],["-90.042181","29.925819"],["-90.042203","29.925677"],["-90.042224","29.925535"],["-90.042233","29.925426"],["-90.042241","29.925316"],["-90.042250","29.925206"],["-90.042258","29.925096"],["-90.042255","29.924973"],["-90.042252","29.924851"],["-90.042249","29.924728"],["-90.042246","29.924606"],["-90.042253","29.924499"],["-90.042261","29.924393"],["-90.042269","29.924287"],["-90.042277","29.924181"],["-90.042284","29.924074"],["-90.042292","29.923968"],["-90.042300","29.923862"],["-90.042307","29.923756"],["-90.042315","29.923650"],["-90.042323","29.923543"],["-90.042330","29.923437"],["-90.042338","29.923331"],["-90.042346","29.923225"],["-90.042354","29.923118"],["-90.042361","29.923012"],["-90.042369","29.922906"],["-90.042376","29.922722"],["-90.042437","29.922631"],["-90.042498","29.922539"],["-90.042559","29.922448"],["-90.042620","29.922356"],["-90.042681","29.922265"],["-90.042742","29.922173"],["-90.042803","29.922082"],["-90.042864","29.921990"],["-90.042925","29.921898"],["-90.042986","29.921807"],["-90.043047","29.921715"],["-90.043126","29.921594"],["-90.043205","29.921474"],["-90.043284","29.921353"],["-90.043363","29.921233"],["-90.043322","29.921135"],["-90.043282","29.921037"],["-90.043177","29.920984"],["-90.043073","29.920930"],["-90.043126","29.920845"],["-90.043179","29.920759"],["-90.043232","29.920673"],["-90.043285","29.920587"],["-90.043338","29.920502"],["-90.043391","29.920416"],["-90.043444","29.920330"],["-90.043497","29.920244"],["-90.043550","29.920158"],["-90.043603","29.920073"],["-90.043656","29.919987"],["-90.043709","29.919901"],["-90.043762","29.919815"],["-90.043815","29.919730"],["-90.043868","29.919644"],["-90.043921","29.919558"],["-90.044033","29.919630"],["-90.044146","29.919702"],["-90.044081","29.919798"],["-90.044016","29.919895"],["-90.043951","29.919991"],["-90.043886","29.920087"],["-90.043811","29.920204"],["-90.043735","29.920321"],["-90.043660","29.920438"],["-90.043584","29.920555"],["-90.043509","29.920672"],["-90.043433","29.920789"],["-90.043358","29.920906"],["-90.043282","29.921023"],["-90.043164","29.920981"],["-90.043046","29.920939"],["-90.042883","29.920939"],["-90.042719","29.920939"],["-90.042655","29.921040"],["-90.042592","29.921142"],["-90.042528","29.921243"],["-90.042465","29.921345"],["-90.042401","29.921446"],["-90.042337","29.921547"],["-90.042283","29.921634"],["-90.042228","29.921720"],["-90.042174","29.921807"],["-90.042120","29.921894"],["-90.042065","29.921980"],["-90.042011","29.922067"],["-90.041957","29.922153"],["-90.041902","29.922240"],["-90.041848","29.922327"],["-90.041793","29.922413"],["-90.041739","29.922500"],["-90.041685","29.922587"],["-90.041630","29.922673"],["-90.041576","29.922760"],["-90.041522","29.922846"],["-90.041467","29.922933"],["-90.041413","29.923020"],["-90.041359","29.923106"],["-90.041304","29.923193"],["-90.041250","29.923280"],["-90.041195","29.923366"],["-90.041141","29.923453"],["-90.041087","29.923539"],["-90.041032","29.923626"],["-90.040978","29.923713"],["-90.040924","29.923799"],["-90.040869","29.923886"],["-90.040815","29.923973"],["-90.040761","29.924059"],["-90.040706","29.924146"],["-90.040652","29.924232"],["-90.040598","29.924319"],["-90.040543","29.924406"],["-90.040489","29.924492"],["-90.040434","29.924579"],["-90.040380","29.924666"],["-90.040326","29.924752"],["-90.040271","29.924839"],["-90.040217","29.924925"],["-90.040163","29.925012"],["-90.040108","29.925099"],["-90.040054","29.925185"],["-90.040000","29.925272"],["-90.039945","29.925359"],["-90.039891","29.925445"],["-90.039837","29.925532"],["-90.039782","29.925618"],["-90.039728","29.925705"],["-90.039673","29.925792"],["-90.039619","29.925878"],["-90.039565","29.925965"],["-90.039510","29.926052"],["-90.039456","29.926138"],["-90.039402","29.926225"],["-90.039347","29.926311"],["-90.039293","29.926398"],["-90.039239","29.926485"],["-90.039184","29.926571"],["-90.039130","29.926658"],["-90.039075","29.926745"],["-90.039021","29.926831"],["-90.038967","29.926918"],["-90.038912","29.927004"],["-90.038858","29.927091"],["-90.038780","29.927250"],["-90.038702","29.927409"],["-90.038643","29.927536"],["-90.038584","29.927664"],["-90.038525","29.927791"],["-90.038466","29.927918"],["-90.038356","29.928055"],["-90.038246","29.928193"],["-90.038187","29.928306"],["-90.038114","29.928408"],["-90.038040","29.928509"],["-90.037959","29.928632"],["-90.037879","29.928755"],["-90.037852","29.928853"],["-90.037825","29.928950"],["-90.037799","29.929048"],["-90.037772","29.929146"],["-90.037749","29.929251"],["-90.037726","29.929357"],["-90.037703","29.929463"],["-90.037681","29.929569"],["-90.037652","29.929703"],["-90.037624","29.929838"],["-90.037596","29.929973"],["-90.037568","29.930108"],["-90.037529","29.930241"],["-90.037491","29.930375"],["-90.037452","29.930508"],["-90.037414","29.930642"],["-90.037399","29.930764"],["-90.037384","29.930886"],["-90.037369","29.931008"],["-90.037355","29.931130"],["-90.037330","29.931283"],["-90.037306","29.931437"],["-90.037282","29.931590"],["-90.037258","29.931743"],["-90.037246","29.931853"],["-90.037234","29.931962"],["-90.037222","29.932071"],["-90.037210","29.932180"],["-90.037306","29.932320"],["-90.037300","29.932453"],["-90.037293","29.932587"],["-90.037286","29.932721"],["-90.037279","29.932854"],["-90.037273","29.932988"],["-90.037266","29.933122"],["-90.037259","29.933255"],["-90.037253","29.933389"],["-90.037253","29.933532"],["-90.037253","29.933675"],["-90.037253","29.933818"],["-90.037253","29.933961"],["-90.037259","29.934086"],["-90.037266","29.934212"],["-90.037273","29.934337"],["-90.037279","29.934463"],["-90.037317","29.934630"],["-90.037355","29.934798"],["-90.037393","29.934965"],["-90.037431","29.935133"],["-90.037480","29.935237"],["-90.037529","29.935341"],["-90.037577","29.935445"],["-90.037626","29.935549"],["-90.037675","29.935653"],["-90.037724","29.935757"],["-90.037773","29.935861"],["-90.037822","29.935965"],["-90.037930","29.936100"],["-90.038037","29.936235"],["-90.038144","29.936370"],["-90.038251","29.936504"],["-90.038331","29.936588"],["-90.038410","29.936671"],["-90.038490","29.936754"],["-90.038569","29.936837"],["-90.038690","29.936937"],["-90.038812","29.937037"],["-90.038933","29.937137"],["-90.039055","29.937237"],["-90.039196","29.937322"],["-90.039337","29.937408"],["-90.039478","29.937493"],["-90.039619","29.937578"],["-90.039760","29.937664"],["-90.039902","29.937749"],["-90.040043","29.937835"],["-90.040184","29.937920"],["-90.040320","29.937976"],["-90.040456","29.938032"],["-90.040592","29.938087"],["-90.040728","29.938143"],["-90.040923","29.938195"],["-90.041119","29.938247"],["-90.041314","29.938299"],["-90.041509","29.938351"],["-90.041685","29.938378"],["-90.041862","29.938404"],["-90.042038","29.938431"],["-90.042214","29.938458"],["-90.042347","29.938465"],["-90.042480","29.938472"],["-90.042613","29.938479"],["-90.042745","29.938486"],["-90.042950","29.938497"],["-90.043155","29.938509"],["-90.043359","29.938520"],["-90.043564","29.938532"],["-90.043773","29.938545"],["-90.043982","29.938558"],["-90.044191","29.938572"],["-90.044401","29.938585"],["-90.044530","29.938588"],["-90.044660","29.938590"],["-90.044790","29.938600"],["-90.044920","29.938610"],["-90.045040","29.938615"],["-90.045160","29.938620"],["-90.045290","29.938630"],["-90.045420","29.938640"],["-90.045540","29.938645"],["-90.045660","29.938650"],["-90.045790","29.938660"],["-90.045920","29.938670"],["-90.046070","29.938680"],["-90.046170","29.938680"],["-90.046290","29.938690"],["-90.046410","29.938700"],["-90.046420","29.938700"],["-90.046550","29.938705"],["-90.046680","29.938710"],["-90.046800","29.938720"],["-90.046920","29.938730"],["-90.047045","29.938735"],["-90.047170","29.938740"],["-90.047290","29.938750"],["-90.047420","29.938760"],["-90.047560","29.938760"],["-90.047680","29.938770"],["-90.047800","29.938780"],["-90.047935","29.938785"],["-90.048070","29.938790"],["-90.048190","29.938800"],["-90.048310","29.938810"],["-90.048435","29.938815"],["-90.048560","29.938820"],["-90.048680","29.938830"],["-90.048800","29.938840"],["-90.048970","29.938850"],["-90.049060","29.938850"],["-90.049190","29.938860"],["-90.049310","29.938870"],["-90.049435","29.938875"],["-90.049560","29.938880"],["-90.049690","29.938885"],["-90.049820","29.938890"],["-90.049945","29.938895"],["-90.050070","29.938900"],["-90.050200","29.938900"],["-90.050330","29.938910"],["-90.050455","29.938910"],["-90.050580","29.938910"],["-90.050660","29.938920"],["-90.050830","29.938920"],["-90.050955","29.938920"],["-90.051080","29.938920"],["-90.051300","29.938930"],["-90.051320","29.938930"],["-90.051450","29.938930"],["-90.051580","29.938930"],["-90.051770","29.938930"],["-90.051960","29.938930"],["-90.052160","29.938930"],["-90.052340","29.938930"],["-90.052548","29.938928"],["-90.052755","29.938925"],["-90.052963","29.938923"],["-90.053170","29.938920"],["-90.053180","29.938920"],["-90.053385","29.938918"],["-90.053590","29.938915"],["-90.053795","29.938913"],["-90.054000","29.938910"],["-90.054010","29.938910"],["-90.054133","29.938909"],["-90.054255","29.938909"],["-90.054378","29.938908"],["-90.054500","29.938908"],["-90.054623","29.938907"],["-90.054745","29.938906"],["-90.054868","29.938906"],["-90.054990","29.938905"],["-90.055113","29.938904"],["-90.055235","29.938904"],["-90.055358","29.938903"],["-90.055480","29.938903"],["-90.055603","29.938902"],["-90.055725","29.938901"],["-90.055848","29.938901"],["-90.055970","29.938900"],["-90.056101","29.938899"],["-90.056233","29.938898"],["-90.056364","29.938896"],["-90.056495","29.938895"],["-90.056626","29.938894"],["-90.056758","29.938893"],["-90.056889","29.938891"],["-90.057020","29.938890"],["-90.057168","29.938888"],["-90.057315","29.938885"],["-90.057463","29.938883"],["-90.057610","29.938880"],["-90.057773","29.938880"],["-90.057935","29.938880"],["-90.058098","29.938880"],["-90.058260","29.938880"],["-90.058480","29.938875"],["-90.058700","29.938870"],["-90.058843","29.938870"],["-90.058985","29.938870"],["-90.059128","29.938870"],["-90.059270","29.938870"],["-90.059300","29.938870"],["-90.059520","29.938870"],["-90.059645","29.938868"],["-90.059770","29.938865"],["-90.059895","29.938863"],["-90.060020","29.938860"],["-90.060145","29.938860"],["-90.060270","29.938860"],["-90.060410","29.938860"],["-90.060540","29.938860"],["-90.060760","29.938858"],["-90.060980","29.938855"],["-90.061200","29.938853"],["-90.061420","29.938850"],["-90.061610","29.938850"],["-90.061800","29.938850"],["-90.061970","29.938850"],["-90.062160","29.938850"],["-90.062350","29.938840"],["-90.062560","29.938840"],["-90.062780","29.938840"],["-90.062910","29.938840"],["-90.063040","29.938840"],["-90.063170","29.938840"],["-90.063300","29.938840"],["-90.063380","29.938830"],["-90.063560","29.938830"],["-90.063670","29.938830"],["-90.063875","29.938820"],["-90.064080","29.938810"],["-90.064260","29.938815"],["-90.064440","29.938820"],["-90.064630","29.938820"],["-90.064670","29.938820"],["-90.064820","29.938830"],["-90.064920","29.938840"],["-90.065060","29.938860"],["-90.065200","29.938880"],["-90.065240","29.938880"],["-90.065360","29.938900"],["-90.065480","29.938920"],["-90.065590","29.938940"],["-90.065680","29.938960"],["-90.065850","29.938990"],["-90.065930","29.939020"],["-90.066050","29.939050"],["-90.066170","29.939080"],["-90.066290","29.939110"],["-90.066435","29.939155"],["-90.066580","29.939200"],["-90.066770","29.939260"],["-90.066915","29.939305"],["-90.067060","29.939350"],["-90.067265","29.939415"],["-90.067470","29.939480"],["-90.067575","29.939513"],["-90.067680","29.939545"],["-90.067785","29.939578"],["-90.067890","29.939610"],["-90.068080","29.939660"],["-90.068200","29.939700"],["-90.068320","29.939740"],["-90.068430","29.939780"],["-90.068530","29.939810"],["-90.068670","29.939860"],["-90.068780","29.939900"],["-90.068920","29.939960"],["-90.069000","29.939990"],["-90.069130","29.940050"],["-90.069220","29.940100"],["-90.069390","29.940190"],["-90.069470","29.940230"],["-90.069620","29.940320"],["-90.069795","29.940415"],["-90.069970","29.940510"],["-90.070077","29.940570"],["-90.070185","29.940630"],["-90.070292","29.940690"],["-90.070400","29.940750"],["-90.070500","29.940800"],["-90.070615","29.940860"],["-90.070730","29.940920"],["-90.070790","29.940950"],["-90.070905","29.941010"],["-90.071020","29.941070"],["-90.071155","29.941140"],["-90.071290","29.941210"],["-90.071380","29.941260"],["-90.071560","29.941350"],["-90.071685","29.941416"],["-90.071811","29.941481"],["-90.071936","29.941547"],["-90.072062","29.941612"],["-90.072187","29.941678"],["-90.072312","29.941744"],["-90.072438","29.941809"],["-90.072563","29.941875"],["-90.072726","29.941979"],["-90.072888","29.942084"],["-90.073051","29.942188"],["-90.073213","29.942293"],["-90.073313","29.942358"],["-90.073413","29.942422"],["-90.073513","29.942487"],["-90.073613","29.942552"],["-90.073713","29.942617"],["-90.073813","29.942682"],["-90.073913","29.942746"],["-90.074013","29.942811"],["-90.074148","29.942903"],["-90.074266","29.942974"],["-90.074383","29.943046"],["-90.074501","29.943117"],["-90.074619","29.943188"],["-90.074751","29.943292"],["-90.074834","29.943362"],["-90.074917","29.943432"],["-90.075001","29.943502"],["-90.075084","29.943572"],["-90.075176","29.943633"],["-90.075267","29.943693"],["-90.075359","29.943754"],["-90.075451","29.943814"],["-90.075560","29.943881"],["-90.075668","29.943948"],["-90.075777","29.944014"],["-90.075886","29.944081"],["-90.076040","29.944182"],["-90.076093","29.944268"],["-90.076146","29.944353"],["-90.076193","29.944463"],["-90.076241","29.944573"],["-90.076259","29.944761"],["-90.076214","29.944917"],["-90.076143","29.945071"],["-90.076035","29.945204"],["-90.075928","29.945338"],["-90.075888","29.945475"],["-90.075848","29.945612"],["-90.075749","29.945731"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075610","29.945940"],["-90.075590","29.945980"],["-90.075530","29.946160"],["-90.075500","29.946250"],["-90.075473","29.946350"],["-90.075445","29.946450"],["-90.075418","29.946550"],["-90.075390","29.946650"],["-90.075299","29.946626"],["-90.075380","29.946640"],["-90.075370","29.946700"],["-90.075350","29.946760"],["-90.075320","29.946863"],["-90.075290","29.946965"],["-90.075260","29.947068"],["-90.075230","29.947170"],["-90.075175","29.947340"],["-90.075120","29.947510"],["-90.075082","29.947635"],["-90.075045","29.947759"],["-90.075007","29.947884"],["-90.074969","29.948009"],["-90.074879","29.948054"],["-90.074933","29.948157"],["-90.074896","29.948282"],["-90.074860","29.948406"],["-90.074823","29.948530"],["-90.074786","29.948655"],["-90.074749","29.948779"],["-90.074713","29.948903"],["-90.074676","29.949028"],["-90.074639","29.949152"],["-90.074590","29.949317"],["-90.074541","29.949482"],["-90.074491","29.949646"],["-90.074442","29.949811"],["-90.074393","29.949976"],["-90.074344","29.950141"],["-90.074294","29.950305"],["-90.074245","29.950470"],["-90.074424","29.950505"],["-90.074603","29.950540"],["-90.074781","29.950575"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075330","29.950850"],["-90.075384","29.950864"],["-90.075330","29.950850"],["-90.075360","29.950750"],["-90.075475","29.950790"],["-90.075590","29.950830"],["-90.075800","29.950880"],["-90.075840","29.950890"],["-90.075951","29.950929"],["-90.076062","29.950968"],["-90.076174","29.951006"],["-90.076285","29.951045"],["-90.076396","29.951084"],["-90.076507","29.951123"],["-90.076619","29.951161"],["-90.076730","29.951200"],["-90.076875","29.951255"],["-90.077020","29.951310"],["-90.077180","29.951365"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077898","29.953203"],["-90.077846","29.953377"],["-90.077794","29.953551"],["-90.077742","29.953726"],["-90.077690","29.953900"],["-90.077638","29.954074"],["-90.077586","29.954248"],["-90.077550","29.954369"],["-90.077495","29.954542"],["-90.077441","29.954716"],["-90.077386","29.954890"],["-90.077331","29.955063"],["-90.077289","29.955189"],["-90.077227","29.955361"],["-90.077142","29.955525"],["-90.077109","29.955590"],["-90.076924","29.955509"],["-90.076738","29.955428"],["-90.076553","29.955347"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075949","29.955069"],["-90.075767","29.954983"],["-90.075629","29.954919"],["-90.075539","29.954880"],["-90.075388","29.954756"],["-90.075249","29.954642"]]},{"type":"MultiPoint","coordinates":[["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.076106","29.947003"],["-90.027562","29.931038"],["-90.009848","29.923930"],["-90.004507","29.923511"],["-90.001707","29.923342"],["-90.000129","29.922781"],["-89.998041","29.922077"],["-89.995061","29.921035"],["-89.992944","29.920521"],["-89.992858","29.918123"],["-89.993030","29.915247"],["-89.993182","29.912705"],["-89.993397","29.910262"],["-89.999221","29.900683"],["-90.022002","29.930485"],["-90.021393","29.925386"],["-90.022580","29.922641"],["-90.022695","29.921027"],["-90.022620","29.918774"],["-90.020586","29.918395"],["-89.991813","29.904860"],["-89.992102","29.904651"],["-90.012876","29.924242"],["-90.008198","29.923685"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.994342","29.902975"],["-89.996262","29.901543"],["-89.997368","29.901069"],["-90.000664","29.901056"],["-89.997294","29.900763"],["-89.995351","29.901799"],["-89.993741","29.902986"],["-89.993544","29.906710"],["-89.993538","29.907656"],["-89.991935","29.904327"],["-90.020144","29.928078"],["-90.077705","29.945589"],["-90.013951","29.921876"],["-90.020240","29.930403"],["-90.020294","29.919902"],["-90.019472","29.923060"],["-90.042369","29.922906"],["-90.041956","29.930163"],["-90.038206","29.930649"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075052","29.954585"],["-90.074855","29.954529"],["-90.074790","29.954510"],["-90.074670","29.954510"],["-90.074482","29.954434"],["-90.074294","29.954358"],["-90.074249","29.954340"],["-90.074073","29.954244"],["-90.073990","29.954199"],["-90.074000","29.954079"],["-90.073990","29.953950"],["-90.074000","29.953860"],["-90.074019","29.953770"],["-90.074069","29.953595"],["-90.074119","29.953421"],["-90.074169","29.953246"],["-90.074199","29.953140"],["-90.074252","29.952966"],["-90.074301","29.952791"],["-90.074351","29.952617"],["-90.074397","29.952441"],["-90.074419","29.952360"],["-90.074471","29.952186"],["-90.074509","29.952060"],["-90.074561","29.951886"],["-90.074599","29.951759"],["-90.074667","29.951589"],["-90.074735","29.951419"],["-90.074803","29.951249"],["-90.074871","29.951079"],["-90.074939","29.950909"],["-90.075000","29.950758"],["-90.074920","29.950740"],["-90.074960","29.950610"],["-90.075010","29.950480"],["-90.075053","29.950323"],["-90.075095","29.950165"],["-90.075138","29.950008"],["-90.075180","29.949850"],["-90.075220","29.949710"],["-90.075270","29.949550"],["-90.075290","29.949460"],["-90.075320","29.949350"],["-90.075330","29.949310"],["-90.075363","29.949203"],["-90.075395","29.949095"],["-90.075428","29.948988"],["-90.075460","29.948880"],["-90.075493","29.948773"],["-90.075525","29.948665"],["-90.075558","29.948558"],["-90.075590","29.948450"],["-90.075680","29.948474"],["-90.075590","29.948450"],["-90.075620","29.948350"],["-90.075630","29.948260"],["-90.075630","29.948230"],["-90.075678","29.948065"],["-90.075725","29.947900"],["-90.075773","29.947735"],["-90.075820","29.947570"],["-90.075868","29.947405"],["-90.075915","29.947240"],["-90.076011","29.947122"],["-90.076106","29.947003"],["-90.076130","29.946940"],["-90.076240","29.946970"],["-90.076350","29.947000"],["-90.076530","29.947050"],["-90.076650","29.947050"],["-90.076700","29.947050"],["-90.076740","29.947040"],["-90.076790","29.947030"],["-90.076820","29.947020"],["-90.076880","29.946990"],["-90.076980","29.946950"],["-90.077025","29.946810"],["-90.077070","29.946670"],["-90.077100","29.946575"],["-90.077130","29.946480"],["-90.077160","29.946385"],["-90.077190","29.946290"],["-90.077200","29.946270"],["-90.077220","29.946190"],["-90.077250","29.946090"],["-90.077280","29.945990"],["-90.077320","29.945880"],["-90.077350","29.945770"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077630","29.945550"],["-90.077640","29.945550"],["-90.077650","29.945560"],["-90.077660","29.945560"],["-90.077690","29.945550"],["-90.077700","29.945550"],["-90.077705","29.945589"],["-90.077700","29.945550"],["-90.077835","29.945545"],["-90.077970","29.945540"],["-90.078040","29.945530"],["-90.078150","29.945545"],["-90.078260","29.945560"],["-90.078430","29.945630"],["-90.078535","29.945680"],["-90.078640","29.945730"],["-90.078800","29.945750"],["-90.078840","29.945730"],["-90.078850","29.945730"],["-90.078870","29.945720"],["-90.078880","29.945720"],["-90.078940","29.945690"],["-90.078980","29.945660"],["-90.079040","29.945690"],["-90.079205","29.945775"],["-90.079370","29.945860"],["-90.079380","29.945910"],["-90.079390","29.945930"],["-90.079400","29.945940"],["-90.079470","29.945980"],["-90.079560","29.946040"],["-90.079610","29.946080"],["-90.079680","29.946120"],["-90.079700","29.946140"],["-90.079730","29.946160"],["-90.079800","29.946200"],["-90.079967","29.946298"],["-90.080135","29.946395"],["-90.080302","29.946493"],["-90.080470","29.946590"],["-90.080565","29.946645"],["-90.080660","29.946700"],["-90.080832","29.946800"],["-90.081005","29.946900"],["-90.081177","29.947000"],["-90.081350","29.947100"],["-90.081455","29.947160"],["-90.081560","29.947220"],["-90.081665","29.947280"],["-90.081770","29.947340"],["-90.081840","29.947380"],["-90.081880","29.947400"],["-90.082040","29.947500"],["-90.082190","29.947590"],["-90.082290","29.947655"],["-90.082390","29.947720"],["-90.082450","29.947760"],["-90.082570","29.947840"],["-90.082690","29.947940"],["-90.082750","29.947990"],["-90.082800","29.948020"],["-90.082850","29.948050"],["-90.082860","29.948060"],["-90.082920","29.948100"],["-90.082990","29.948130"],["-90.083120","29.948190"],["-90.083250","29.948230"],["-90.083363","29.948260"],["-90.083475","29.948290"],["-90.083382","29.948374"],["-90.083239","29.948434"],["-90.083119","29.948444"],["-90.083033","29.948413"],["-90.082931","29.948323"],["-90.082802","29.948208"],["-90.082673","29.948093"],["-90.082566","29.948005"],["-90.082459","29.947918"],["-90.082293","29.947813"],["-90.082126","29.947707"],["-90.081945","29.947596"],["-90.081764","29.947486"],["-90.081641","29.947415"],["-90.081517","29.947344"],["-90.081419","29.947293"],["-90.081320","29.947241"],["-90.081222","29.947189"],["-90.081123","29.947137"],["-90.081015","29.947076"],["-90.080907","29.947014"],["-90.080799","29.946953"],["-90.080691","29.946891"],["-90.080607","29.946827"],["-90.080524","29.946763"],["-90.080440","29.946699"],["-90.080356","29.946635"],["-90.080204","29.946535"],["-90.080053","29.946435"],["-90.079909","29.946341"],["-90.079766","29.946247"],["-90.079667","29.946190"],["-90.079567","29.946132"],["-90.079468","29.946075"],["-90.079369","29.946017"],["-90.079262","29.945951"],["-90.079154","29.945885"],["-90.079034","29.945822"],["-90.078913","29.945759"],["-90.078775","29.945685"],["-90.078636","29.945610"],["-90.078513","29.945501"],["-90.078432","29.945428"],["-90.078352","29.945355"],["-90.078274","29.945232"],["-90.078197","29.945109"],["-90.078130","29.945007"],["-90.078064","29.944905"],["-90.077937","29.944766"],["-90.077817","29.944701"],["-90.077698","29.944635"],["-90.077567","29.944563"],["-90.077436","29.944491"],["-90.077305","29.944419"],["-90.077174","29.944347"],["-90.077043","29.944275"],["-90.076912","29.944203"],["-90.076781","29.944131"],["-90.076650","29.944059"],["-90.076541","29.943999"],["-90.076432","29.943938"],["-90.076324","29.943877"],["-90.076215","29.943817"],["-90.076107","29.943756"],["-90.075998","29.943695"],["-90.075889","29.943634"],["-90.075781","29.943574"],["-90.075638","29.943494"],["-90.075496","29.943415"],["-90.075354","29.943336"],["-90.075212","29.943256"],["-90.075070","29.943177"],["-90.074928","29.943098"],["-90.074786","29.943019"],["-90.074643","29.942939"],["-90.074461","29.942836"],["-90.074279","29.942733"],["-90.074096","29.942631"],["-90.073914","29.942528"],["-90.073778","29.942452"],["-90.073643","29.942376"],["-90.073507","29.942300"],["-90.073371","29.942224"],["-90.073236","29.942148"],["-90.073100","29.942072"],["-90.072964","29.941997"],["-90.072829","29.941921"],["-90.072693","29.941845"],["-90.072558","29.941769"],["-90.072422","29.941693"],["-90.072286","29.941617"],["-90.072151","29.941541"],["-90.072015","29.941465"],["-90.071879","29.941389"],["-90.071744","29.941313"],["-90.071560","29.941219"],["-90.071420","29.941148"],["-90.071281","29.941077"],["-90.071141","29.941006"],["-90.071001","29.940935"],["-90.070825","29.940837"],["-90.070649","29.940740"],["-90.070473","29.940642"],["-90.070297","29.940545"],["-90.070133","29.940451"],["-90.069968","29.940358"],["-90.069804","29.940264"],["-90.069640","29.940170"],["-90.069538","29.940115"],["-90.069435","29.940059"],["-90.069333","29.940003"],["-90.069231","29.939947"],["-90.069091","29.939865"],["-90.068951","29.939783"],["-90.068810","29.939702"],["-90.068670","29.939620"],["-90.068530","29.939538"],["-90.068390","29.939456"],["-90.068250","29.939374"],["-90.068110","29.939292"],["-90.067973","29.939220"],["-90.067836","29.939148"],["-90.067699","29.939076"],["-90.067563","29.939004"],["-90.067365","29.938929"],["-90.067168","29.938855"],["-90.066971","29.938781"],["-90.066774","29.938706"],["-90.066596","29.938668"],["-90.066417","29.938629"],["-90.066239","29.938591"],["-90.066060","29.938553"],["-90.065946","29.938550"],["-90.065831","29.938547"],["-90.065716","29.938544"],["-90.065602","29.938541"],["-90.065487","29.938538"],["-90.065372","29.938535"],["-90.065258","29.938532"],["-90.065143","29.938529"],["-90.064950","29.938543"],["-90.064757","29.938557"],["-90.064564","29.938571"],["-90.064371","29.938585"],["-90.064175","29.938600"],["-90.063979","29.938615"],["-90.063783","29.938631"],["-90.063587","29.938646"],["-90.063368","29.938662"],["-90.063148","29.938678"],["-90.062928","29.938695"],["-90.062708","29.938711"],["-90.062573","29.938714"],["-90.062438","29.938718"],["-90.062304","29.938721"],["-90.062169","29.938725"],["-90.062034","29.938728"],["-90.061899","29.938732"],["-90.061765","29.938735"],["-90.061630","29.938739"],["-90.061492","29.938738"],["-90.061354","29.938738"],["-90.061216","29.938737"],["-90.061077","29.938736"],["-90.060939","29.938736"],["-90.060801","29.938735"],["-90.060663","29.938735"],["-90.060525","29.938734"],["-90.060398","29.938736"],["-90.060271","29.938738"],["-90.060145","29.938739"],["-90.060018","29.938741"],["-90.059891","29.938743"],["-90.059764","29.938744"],["-90.059638","29.938746"],["-90.059511","29.938748"],["-90.059362","29.938749"],["-90.059212","29.938750"],["-90.059063","29.938751"],["-90.058913","29.938751"],["-90.058764","29.938752"],["-90.058615","29.938753"],["-90.058465","29.938754"],["-90.058316","29.938755"],["-90.058167","29.938756"],["-90.058017","29.938757"],["-90.057868","29.938758"],["-90.057718","29.938758"],["-90.057569","29.938759"],["-90.057420","29.938760"],["-90.057270","29.938761"],["-90.057121","29.938762"],["-90.056994","29.938763"],["-90.056867","29.938764"],["-90.056740","29.938765"],["-90.056613","29.938767"],["-90.056486","29.938768"],["-90.056359","29.938769"],["-90.056231","29.938770"],["-90.056104","29.938771"],["-90.055977","29.938772"],["-90.055850","29.938774"],["-90.055723","29.938775"],["-90.055596","29.938776"],["-90.055469","29.938777"],["-90.055342","29.938778"],["-90.055215","29.938779"],["-90.055088","29.938781"],["-90.054969","29.938782"],["-90.054850","29.938784"],["-90.054732","29.938786"],["-90.054613","29.938787"],["-90.054494","29.938789"],["-90.054376","29.938791"],["-90.054257","29.938793"],["-90.054138","29.938794"],["-90.054020","29.938796"],["-90.053901","29.938798"],["-90.053782","29.938800"],["-90.053664","29.938801"],["-90.053545","29.938803"],["-90.053426","29.938805"],["-90.053308","29.938807"],["-90.053189","29.938808"],["-90.052997","29.938808"],["-90.052805","29.938807"],["-90.052613","29.938807"],["-90.052422","29.938806"],["-90.052230","29.938806"],["-90.052038","29.938805"],["-90.051846","29.938804"],["-90.051655","29.938804"],["-90.051470","29.938803"],["-90.051284","29.938801"],["-90.051099","29.938800"],["-90.050914","29.938799"],["-90.050729","29.938798"],["-90.050544","29.938797"],["-90.050359","29.938796"],["-90.050174","29.938794"],["-90.050005","29.938784"],["-90.049836","29.938774"],["-90.049667","29.938763"],["-90.049498","29.938753"],["-90.049329","29.938742"],["-90.049160","29.938732"],["-90.048991","29.938721"],["-90.048822","29.938711"],["-90.048667","29.938704"],["-90.048512","29.938697"],["-90.048357","29.938690"],["-90.048203","29.938683"],["-90.048048","29.938676"],["-90.047893","29.938669"],["-90.047738","29.938662"],["-90.047583","29.938655"],["-90.047372","29.938640"],["-90.047161","29.938626"],["-90.046950","29.938611"],["-90.046739","29.938597"],["-90.046528","29.938582"],["-90.046317","29.938568"],["-90.046106","29.938553"],["-90.045894","29.938539"],["-90.045754","29.938532"],["-90.045613","29.938525"],["-90.045473","29.938518"],["-90.045333","29.938511"],["-90.045192","29.938504"],["-90.045052","29.938497"],["-90.044911","29.938490"],["-90.044771","29.938483"],["-90.044630","29.938476"],["-90.044490","29.938469"],["-90.044349","29.938462"],["-90.044209","29.938455"],["-90.044068","29.938448"],["-90.043928","29.938441"],["-90.043787","29.938434"],["-90.043647","29.938427"],["-90.043533","29.938419"],["-90.043419","29.938410"],["-90.043305","29.938401"],["-90.043191","29.938392"],["-90.043077","29.938384"],["-90.042963","29.938375"],["-90.042849","29.938366"],["-90.042735","29.938357"],["-90.042605","29.938337"],["-90.042476","29.938316"],["-90.042347","29.938295"],["-90.042218","29.938274"],["-90.042092","29.938234"],["-90.041967","29.938194"],["-90.041841","29.938154"],["-90.041716","29.938113"],["-90.041591","29.938073"],["-90.041465","29.938033"],["-90.041340","29.937993"],["-90.041214","29.937953"],["-90.041094","29.937899"],["-90.040973","29.937845"],["-90.040852","29.937791"],["-90.040732","29.937737"],["-90.040611","29.937683"],["-90.040490","29.937629"],["-90.040369","29.937575"],["-90.040249","29.937521"],["-90.040148","29.937453"],["-90.040048","29.937385"],["-90.039947","29.937317"],["-90.039846","29.937249"],["-90.039746","29.937181"],["-90.039645","29.937113"],["-90.039545","29.937045"],["-90.039444","29.936977"],["-90.039335","29.936876"],["-90.039227","29.936775"],["-90.039118","29.936674"],["-90.039010","29.936572"],["-90.038944","29.936485"],["-90.038878","29.936398"],["-90.038812","29.936311"],["-90.038747","29.936224"],["-90.038681","29.936137"],["-90.038615","29.936049"],["-90.038550","29.935962"],["-90.038484","29.935875"],["-90.038414","29.935729"],["-90.038344","29.935582"],["-90.038295","29.935423"],["-90.038246","29.935263"],["-90.038197","29.935103"],["-90.038148","29.934943"],["-90.038099","29.934784"],["-90.038050","29.934624"],["-90.038000","29.934464"],["-90.037951","29.934305"],["-90.037949","29.934176"],["-90.037946","29.934046"],["-90.037943","29.933917"],["-90.037941","29.933788"],["-90.037938","29.933659"],["-90.037935","29.933530"],["-90.037933","29.933401"],["-90.037930","29.933272"],["-90.037931","29.933150"],["-90.037933","29.933028"],["-90.037934","29.932906"],["-90.037935","29.932784"],["-90.037984","29.932629"],["-90.038032","29.932473"],["-90.038043","29.932374"],["-90.038053","29.932275"],["-90.038064","29.932176"],["-90.038075","29.932078"],["-90.038083","29.931958"],["-90.038091","29.931838"],["-90.038099","29.931719"],["-90.038107","29.931599"],["-90.038120","29.931425"],["-90.038134","29.931250"],["-90.038134","29.931153"],["-90.038134","29.931055"],["-90.038134","29.930957"],["-90.038134","29.930860"],["-90.038170","29.930754"],["-90.038206","29.930649"],["-90.038176","29.930577"],["-90.038377","29.930586"],["-90.038577","29.930595"],["-90.038778","29.930603"],["-90.038978","29.930612"],["-90.039179","29.930621"],["-90.039346","29.930628"],["-90.039513","29.930634"],["-90.039680","29.930641"],["-90.039847","29.930647"],["-90.040013","29.930654"],["-90.040180","29.930660"],["-90.040347","29.930667"],["-90.040514","29.930673"],["-90.040681","29.930680"],["-90.040848","29.930686"],["-90.041015","29.930693"],["-90.041182","29.930699"],["-90.041349","29.930706"],["-90.041515","29.930712"],["-90.041682","29.930719"],["-90.041849","29.930725"],["-90.041876","29.930585"],["-90.041903","29.930444"],["-90.041929","29.930304"],["-90.041956","29.930163"],["-90.041941","29.930050"],["-90.041927","29.929937"],["-90.041912","29.929825"],["-90.041898","29.929712"],["-90.041908","29.929529"],["-90.041918","29.929345"],["-90.041928","29.929162"],["-90.041938","29.928979"],["-90.041948","29.928795"],["-90.041958","29.928612"],["-90.041968","29.928428"],["-90.041978","29.928245"],["-90.041988","29.928062"],["-90.041998","29.927878"],["-90.042008","29.927695"],["-90.042018","29.927512"],["-90.042028","29.927328"],["-90.042038","29.927145"],["-90.042048","29.926962"],["-90.042058","29.926778"],["-90.042121","29.926681"],["-90.042184","29.926584"],["-90.042091","29.926432"],["-90.042098","29.926300"],["-90.042104","29.926168"],["-90.042110","29.926036"],["-90.042116","29.925904"],["-90.042122","29.925772"],["-90.042128","29.925640"],["-90.042134","29.925509"],["-90.042140","29.925377"],["-90.042199","29.925236"],["-90.042258","29.925096"],["-90.042225","29.924957"],["-90.042193","29.924819"],["-90.042201","29.924714"],["-90.042208","29.924610"],["-90.042216","29.924506"],["-90.042224","29.924401"],["-90.042231","29.924297"],["-90.042239","29.924193"],["-90.042247","29.924089"],["-90.042254","29.923984"],["-90.042262","29.923880"],["-90.042270","29.923776"],["-90.042278","29.923671"],["-90.042285","29.923567"],["-90.042293","29.923463"],["-90.042301","29.923358"],["-90.042308","29.923254"],["-90.042316","29.923150"],["-90.042343","29.923028"],["-90.042369","29.922906"],["-90.042279","29.922866"],["-90.042390","29.922703"],["-90.042502","29.922539"],["-90.042568","29.922435"],["-90.042635","29.922331"],["-90.042701","29.922228"],["-90.042768","29.922124"],["-90.042834","29.922021"],["-90.042901","29.921917"],["-90.042968","29.921813"],["-90.043034","29.921710"],["-90.043101","29.921606"],["-90.043167","29.921503"],["-90.043234","29.921399"],["-90.043300","29.921295"],["-90.043367","29.921192"],["-90.043312","29.921107"],["-90.043257","29.921022"],["-90.043149","29.920969"],["-90.043042","29.920917"],["-90.042924","29.920898"],["-90.042979","29.920813"],["-90.043035","29.920727"],["-90.043090","29.920642"],["-90.043145","29.920557"],["-90.043201","29.920472"],["-90.043256","29.920386"],["-90.043311","29.920301"],["-90.043367","29.920216"],["-90.043422","29.920130"],["-90.043477","29.920045"],["-90.043533","29.919960"],["-90.043588","29.919875"],["-90.043643","29.919789"],["-90.043699","29.919704"],["-90.043754","29.919619"],["-90.043809","29.919533"],["-90.043966","29.919616"],["-90.044123","29.919699"],["-90.044064","29.919796"],["-90.044004","29.919893"],["-90.043945","29.919990"],["-90.043886","29.920087"],["-90.043809","29.920202"],["-90.043732","29.920318"],["-90.043655","29.920433"],["-90.043578","29.920549"],["-90.043501","29.920664"],["-90.043424","29.920780"],["-90.043347","29.920895"],["-90.043270","29.921011"],["-90.043082","29.920913"],["-90.042905","29.920921"],["-90.042728","29.920930"],["-90.042672","29.921021"],["-90.042616","29.921113"],["-90.042559","29.921204"],["-90.042503","29.921296"],["-90.042447","29.921387"],["-90.042390","29.921479"],["-90.042334","29.921570"],["-90.042278","29.921662"],["-90.042202","29.921770"],["-90.042127","29.921879"],["-90.042052","29.921988"],["-90.041977","29.922097"],["-90.041921","29.922182"],["-90.041866","29.922267"],["-90.041810","29.922352"],["-90.041755","29.922437"],["-90.041699","29.922522"],["-90.041643","29.922607"],["-90.041588","29.922693"],["-90.041532","29.922778"],["-90.041586","29.922922"],["-90.041639","29.923066"],["-90.041771","29.923196"],["-90.041902","29.923326"],["-90.042031","29.923466"],["-90.042071","29.923619"],["-90.042112","29.923773"],["-90.042101","29.923940"],["-90.042090","29.924107"],["-90.042080","29.924275"],["-90.042071","29.924413"],["-90.042061","29.924550"],["-90.042052","29.924688"],["-90.042042","29.924825"],["-90.041925","29.924963"],["-90.042029","29.925104"],["-90.042019","29.925263"],["-90.042009","29.925421"],["-90.041999","29.925580"],["-90.041990","29.925738"],["-90.041980","29.925896"],["-90.041970","29.926055"],["-90.041961","29.926213"],["-90.041951","29.926372"],["-90.041778","29.926423"],["-90.041943","29.926535"],["-90.041936","29.926632"],["-90.041928","29.926730"],["-90.041921","29.926828"],["-90.041914","29.926925"],["-90.041907","29.927023"],["-90.041899","29.927121"],["-90.041892","29.927218"],["-90.041885","29.927316"],["-90.041873","29.927508"],["-90.041861","29.927700"],["-90.041849","29.927891"],["-90.041836","29.928083"],["-90.041824","29.928275"],["-90.041812","29.928466"],["-90.041800","29.928658"],["-90.041787","29.928850"],["-90.041775","29.929041"],["-90.041763","29.929233"],["-90.041751","29.929424"],["-90.041738","29.929616"],["-90.041726","29.929808"],["-90.041714","29.929999"],["-90.041702","29.930191"],["-90.041689","29.930383"],["-90.041677","29.930574"],["-90.041565","29.930579"],["-90.041452","29.930583"],["-90.041339","29.930588"],["-90.041227","29.930593"],["-90.041109","29.930587"],["-90.040992","29.930581"],["-90.040875","29.930575"],["-90.040757","29.930570"],["-90.040640","29.930564"],["-90.040522","29.930558"],["-90.040405","29.930552"],["-90.040288","29.930546"],["-90.040152","29.930536"],["-90.040017","29.930525"],["-90.039881","29.930515"],["-90.039746","29.930504"],["-90.039611","29.930494"],["-90.039475","29.930484"],["-90.039340","29.930473"],["-90.039204","29.930463"],["-90.038996","29.930454"],["-90.038787","29.930445"],["-90.038578","29.930436"],["-90.038370","29.930427"],["-90.038161","29.930418"],["-90.037953","29.930409"],["-90.037744","29.930400"],["-90.037536","29.930391"],["-90.037327","29.930382"],["-90.037118","29.930373"],["-90.036910","29.930365"],["-90.036701","29.930356"],["-90.036493","29.930347"],["-90.036284","29.930338"],["-90.036076","29.930329"],["-90.035867","29.930320"],["-90.035685","29.930310"],["-90.035502","29.930300"],["-90.035320","29.930290"],["-90.035190","29.930285"],["-90.035060","29.930280"],["-90.034945","29.930270"],["-90.034830","29.930260"],["-90.034730","29.930250"],["-90.034515","29.930220"],["-90.034300","29.930190"],["-90.034160","29.930170"],["-90.033950","29.930120"],["-90.033920","29.930100"],["-90.033860","29.930050"],["-90.033755","29.930015"],["-90.033650","29.929980"],["-90.033530","29.929940"],["-90.033420","29.929890"],["-90.033330","29.929850"],["-90.033210","29.929790"],["-90.033140","29.929750"],["-90.033070","29.929720"],["-90.032930","29.929640"],["-90.032805","29.929547"],["-90.032681","29.929453"],["-90.032556","29.929360"],["-90.032432","29.929266"],["-90.032338","29.929343"],["-90.032244","29.929420"],["-90.032180","29.929494"],["-90.032196","29.929685"],["-90.032222","29.929829"],["-90.032215","29.929994"],["-90.032208","29.930160"],["-90.032200","29.930326"],["-90.032193","29.930491"],["-90.032186","29.930657"],["-90.032178","29.930822"],["-90.032171","29.930988"],["-90.032163","29.931154"],["-90.032153","29.931286"],["-90.032142","29.931418"],["-90.032131","29.931549"],["-90.032121","29.931681"],["-90.032110","29.931813"],["-90.032099","29.931945"],["-90.032088","29.932077"],["-90.032078","29.932209"],["-90.031905","29.932197"],["-90.031733","29.932185"],["-90.031561","29.932172"],["-90.031388","29.932160"],["-90.031216","29.932148"],["-90.031044","29.932136"],["-90.030871","29.932124"],["-90.030699","29.932111"],["-90.030561","29.932106"],["-90.030423","29.932100"],["-90.030285","29.932094"],["-90.030146","29.932088"],["-90.029969","29.932056"],["-90.029792","29.932023"],["-90.029663","29.931969"],["-90.029534","29.931915"],["-90.029404","29.931862"],["-90.029275","29.931808"],["-90.029146","29.931754"],["-90.029016","29.931700"],["-90.028887","29.931646"],["-90.028757","29.931593"],["-90.028628","29.931539"],["-90.028499","29.931485"],["-90.028369","29.931431"],["-90.028240","29.931377"],["-90.028110","29.931324"],["-90.027981","29.931270"],["-90.027852","29.931216"],["-90.027722","29.931162"],["-90.027562","29.931038"],["-90.027361","29.930984"],["-90.027160","29.930930"],["-90.027025","29.930880"],["-90.026890","29.930830"],["-90.026770","29.930800"],["-90.026690","29.930790"],["-90.026620","29.930780"],["-90.026500","29.930770"],["-90.026300","29.930770"],["-90.026100","29.930760"],["-90.025947","29.930753"],["-90.025795","29.930745"],["-90.025642","29.930738"],["-90.025490","29.930730"],["-90.025322","29.930720"],["-90.025155","29.930710"],["-90.024987","29.930700"],["-90.024820","29.930690"],["-90.024672","29.930683"],["-90.024525","29.930675"],["-90.024377","29.930668"],["-90.024230","29.930660"],["-90.024025","29.930655"],["-90.023820","29.930650"],["-90.023760","29.930650"],["-90.023585","29.930643"],["-90.023410","29.930635"],["-90.023235","29.930628"],["-90.023060","29.930620"],["-90.022921","29.930615"],["-90.022782","29.930610"],["-90.022644","29.930605"],["-90.022505","29.930600"],["-90.022366","29.930595"],["-90.022227","29.930590"],["-90.022089","29.930585"],["-90.021950","29.930580"],["-90.022002","29.930485"],["-90.021820","29.930534"],["-90.021639","29.930583"],["-90.021494","29.930572"],["-90.021349","29.930561"],["-90.021232","29.930558"],["-90.021116","29.930554"],["-90.021000","29.930550"],["-90.020870","29.930540"],["-90.020720","29.930530"],["-90.020660","29.930520"],["-90.020460","29.930510"],["-90.020345","29.930500"],["-90.020230","29.930490"],["-90.020240","29.930403"],["-90.020230","29.930490"],["-90.020070","29.930480"],["-90.020090","29.930355"],["-90.020110","29.930230"],["-90.020130","29.930090"],["-90.020140","29.929960"],["-90.020150","29.929830"],["-90.020160","29.929760"],["-90.020160","29.929670"],["-90.020160","29.929510"],["-90.020150","29.929350"],["-90.020140","29.929190"],["-90.020125","29.929030"],["-90.020110","29.928870"],["-90.020090","29.928740"],["-90.020080","29.928690"],["-90.020070","29.928510"],["-90.020060","29.928440"],["-90.020070","29.928260"],["-90.020080","29.928080"],["-90.020144","29.928078"],["-90.020080","29.928080"],["-90.020080","29.928010"],["-90.020110","29.927820"],["-90.020160","29.927640"],["-90.020190","29.927540"],["-90.020220","29.927440"],["-90.020265","29.927320"],["-90.020310","29.927200"],["-90.020360","29.927080"],["-90.020410","29.926960"],["-90.020495","29.926820"],["-90.020580","29.926680"],["-90.020633","29.926595"],["-90.020685","29.926510"],["-90.020738","29.926425"],["-90.020790","29.926340"],["-90.020843","29.926243"],["-90.020895","29.926145"],["-90.020987","29.925978"],["-90.021078","29.925810"],["-90.021170","29.925643"],["-90.021261","29.925475"],["-90.021393","29.925386"],["-90.021320","29.925360"],["-90.021370","29.925270"],["-90.021445","29.925125"],["-90.021520","29.924980"],["-90.021600","29.924820"],["-90.021620","29.924710"],["-90.021630","29.924690"],["-90.021690","29.924550"],["-90.021743","29.924463"],["-90.021795","29.924375"],["-90.021848","29.924288"],["-90.021900","29.924200"],["-90.021940","29.924120"],["-90.021990","29.923985"],["-90.022040","29.923850"],["-90.022080","29.923700"],["-90.022098","29.923600"],["-90.022115","29.923500"],["-90.022133","29.923400"],["-90.022150","29.923300"],["-90.022180","29.923205"],["-90.022210","29.923110"],["-90.022240","29.923020"],["-90.022280","29.922950"],["-90.022338","29.922850"],["-90.022395","29.922750"],["-90.022453","29.922650"],["-90.022510","29.922550"],["-90.022610","29.922590"],["-90.022580","29.922641"],["-90.022585","29.922461"],["-90.022588","29.922353"],["-90.022650","29.922220"],["-90.022680","29.922042"],["-90.022689","29.921862"],["-90.022690","29.921682"],["-90.022692","29.921503"],["-90.022693","29.921323"],["-90.022694","29.921143"],["-90.022695","29.921027"],["-90.022642","29.920859"],["-90.022590","29.920690"],["-90.022550","29.920505"],["-90.022510","29.920320"],["-90.022470","29.920200"],["-90.022430","29.920080"],["-90.022410","29.919965"],["-90.022390","29.919850"],["-90.022380","29.919690"],["-90.022370","29.919510"],["-90.022380","29.919410"],["-90.022400","29.919270"],["-90.022430","29.919140"],["-90.022460","29.919020"],["-90.022510","29.918890"],["-90.022560","29.918760"],["-90.022620","29.918774"],["-90.022568","29.918661"],["-90.022416","29.918622"],["-90.022265","29.918583"],["-90.022142","29.918567"],["-90.022020","29.918550"],["-90.021860","29.918540"],["-90.021685","29.918535"],["-90.021510","29.918530"],["-90.021400","29.918520"],["-90.021195","29.918510"],["-90.020990","29.918500"],["-90.020785","29.918490"],["-90.020637","29.918440"],["-90.020490","29.918390"],["-90.020586","29.918395"],["-90.020490","29.918390"],["-90.020490","29.918470"],["-90.020490","29.918570"],["-90.020478","29.918715"],["-90.020465","29.918860"],["-90.020453","29.919005"],["-90.020440","29.919150"],["-90.020420","29.919330"],["-90.020420","29.919430"],["-90.020413","29.919550"],["-90.020405","29.919670"],["-90.020398","29.919790"],["-90.020390","29.919910"],["-90.020294","29.919902"],["-90.020390","29.919910"],["-90.020380","29.920055"],["-90.020370","29.920200"],["-90.020360","29.920345"],["-90.020350","29.920490"],["-90.020350","29.920520"],["-90.020340","29.920665"],["-90.020330","29.920810"],["-90.020320","29.920955"],["-90.020310","29.921100"],["-90.020280","29.921275"],["-90.020250","29.921450"],["-90.020210","29.921595"],["-90.020170","29.921740"],["-90.020150","29.921870"],["-90.020115","29.921970"],["-90.020080","29.922070"],["-90.020050","29.922165"],["-90.020020","29.922260"],["-90.019970","29.922400"],["-90.019910","29.922550"],["-90.019855","29.922645"],["-90.019800","29.922740"],["-90.019755","29.922830"],["-90.019710","29.922920"],["-90.019645","29.923015"],["-90.019580","29.923110"],["-90.019472","29.923060"],["-90.019580","29.923110"],["-90.019570","29.923130"],["-90.019500","29.923225"],["-90.019430","29.923320"],["-90.019410","29.923350"],["-90.019325","29.923475"],["-90.019240","29.923600"],["-90.019090","29.923520"],["-90.018940","29.923440"],["-90.018870","29.923390"],["-90.018820","29.923360"],["-90.018700","29.923270"],["-90.018610","29.923190"],["-90.018525","29.923110"],["-90.018440","29.923030"],["-90.018355","29.922950"],["-90.018270","29.922870"],["-90.018170","29.922780"],["-90.018060","29.922700"],["-90.017910","29.922610"],["-90.017830","29.922570"],["-90.017760","29.922530"],["-90.017630","29.922480"],["-90.017510","29.922440"],["-90.017390","29.922400"],["-90.017250","29.922360"],["-90.017150","29.922340"],["-90.017030","29.922300"],["-90.016950","29.922280"],["-90.016890","29.922260"],["-90.016830","29.922230"],["-90.016750","29.922200"],["-90.016730","29.922190"],["-90.016700","29.922180"],["-90.016630","29.922150"],["-90.016580","29.922110"],["-90.016470","29.922040"],["-90.016340","29.921958"],["-90.016210","29.921875"],["-90.016080","29.921793"],["-90.015950","29.921710"],["-90.015890","29.921670"],["-90.015760","29.921590"],["-90.015630","29.921510"],["-90.015530","29.921448"],["-90.015430","29.921385"],["-90.015330","29.921323"],["-90.015230","29.921260"],["-90.015105","29.921185"],["-90.014980","29.921110"],["-90.014845","29.921020"],["-90.014710","29.920930"],["-90.014550","29.920830"],["-90.014445","29.920960"],["-90.014340","29.921090"],["-90.014320","29.921110"],["-90.014290","29.921160"],["-90.014220","29.921270"],["-90.014180","29.921380"],["-90.014135","29.921495"],["-90.014090","29.921610"],["-90.014065","29.921710"],["-90.014040","29.921810"],["-90.014020","29.921890"],["-90.013951","29.921876"],["-90.014020","29.921890"],["-90.014000","29.921980"],["-90.013970","29.922120"],["-90.013960","29.922280"],["-90.013950","29.922340"],["-90.013940","29.922510"],["-90.013935","29.922675"],["-90.013930","29.922840"],["-90.013920","29.922988"],["-90.013910","29.923135"],["-90.013900","29.923283"],["-90.013890","29.923430"],["-90.013883","29.923568"],["-90.013875","29.923705"],["-90.013868","29.923843"],["-90.013860","29.923980"],["-90.013850","29.924080"],["-90.013710","29.924210"],["-90.013670","29.924240"],["-90.013620","29.924270"],["-90.013570","29.924290"],["-90.013500","29.924310"],["-90.013470","29.924320"],["-90.013400","29.924350"],["-90.013235","29.924340"],["-90.013070","29.924330"],["-90.012870","29.924320"],["-90.012876","29.924242"],["-90.012669","29.924254"],["-90.012462","29.924265"],["-90.012255","29.924277"],["-90.012048","29.924288"],["-90.011840","29.924278"],["-90.011633","29.924266"],["-90.011426","29.924255"],["-90.011219","29.924243"],["-90.011012","29.924231"],["-90.010805","29.924223"],["-90.010740","29.924220"],["-90.010534","29.924197"],["-90.010470","29.924190"],["-90.010267","29.924151"],["-90.010090","29.924058"],["-90.009913","29.923964"],["-90.009848","29.923930"],["-90.009641","29.923916"],["-90.009434","29.923901"],["-90.009290","29.923870"],["-90.009120","29.923840"],["-90.008939","29.923820"],["-90.008736","29.923783"],["-90.008533","29.923746"],["-90.008330","29.923709"],["-90.008198","29.923685"],["-90.007996","29.923727"],["-90.007872","29.923752"],["-90.007665","29.923745"],["-90.007457","29.923739"],["-90.007250","29.923732"],["-90.007042","29.923725"],["-90.006880","29.923720"],["-90.006673","29.923709"],["-90.006466","29.923699"],["-90.006259","29.923688"],["-90.006100","29.923680"],["-90.005893","29.923674"],["-90.005685","29.923668"],["-90.005478","29.923662"],["-90.005410","29.923660"],["-90.005206","29.923626"],["-90.005002","29.923593"],["-90.004798","29.923559"],["-90.004595","29.923525"],["-90.004507","29.923511"],["-90.004313","29.923575"],["-90.004203","29.923611"],["-90.003996","29.923602"],["-90.003930","29.923599"],["-90.003723","29.923586"],["-90.003620","29.923580"],["-90.003413","29.923572"],["-90.003205","29.923564"],["-90.002998","29.923556"],["-90.002840","29.923550"],["-90.002633","29.923545"],["-90.002459","29.923540"],["-90.002329","29.923530"],["-90.002122","29.923513"],["-90.001935","29.923436"],["-90.001747","29.923359"],["-90.001707","29.923342"],["-90.001503","29.923311"],["-90.001298","29.923279"],["-90.001218","29.923267"],["-90.001026","29.923198"],["-90.000889","29.923149"],["-90.000708","29.923061"],["-90.000527","29.922974"],["-90.000345","29.922886"],["-90.000164","29.922798"],["-90.000129","29.922781"],["-89.999925","29.922750"],["-89.999720","29.922718"],["-89.999626","29.922704"],["-89.999434","29.922636"],["-89.999242","29.922568"],["-89.999050","29.922499"],["-89.998858","29.922431"],["-89.998666","29.922363"],["-89.998474","29.922295"],["-89.998294","29.922205"],["-89.998115","29.922114"],["-89.998041","29.922077"],["-89.997839","29.922035"],["-89.997637","29.921993"],["-89.997555","29.921976"],["-89.997362","29.921909"],["-89.997280","29.921880"],["-89.997088","29.921811"],["-89.996897","29.921742"],["-89.996705","29.921672"],["-89.996514","29.921603"],["-89.996322","29.921534"],["-89.996131","29.921465"],["-89.995939","29.921396"],["-89.995748","29.921326"],["-89.995561","29.921247"],["-89.995375","29.921168"],["-89.995188","29.921089"],["-89.995061","29.921035"],["-89.994862","29.920984"],["-89.994663","29.920934"],["-89.994577","29.920912"],["-89.994385","29.920843"],["-89.994194","29.920774"],["-89.994100","29.920740"],["-89.993902","29.920685"],["-89.993810","29.920660"],["-89.993630","29.920629"],["-89.993423","29.920620"],["-89.993221","29.920578"],["-89.993019","29.920537"],["-89.992944","29.920521"],["-89.992773","29.920623"],["-89.992671","29.920684"],["-89.992677","29.920504"],["-89.992682","29.920324"],["-89.992687","29.920145"],["-89.992692","29.919965"],["-89.992697","29.919785"],["-89.992699","29.919729"],["-89.992708","29.919549"],["-89.992717","29.919370"],["-89.992720","29.919320"],["-89.992732","29.919140"],["-89.992744","29.918961"],["-89.992756","29.918781"],["-89.992760","29.918729"],["-89.992789","29.918551"],["-89.992818","29.918373"],["-89.992846","29.918195"],["-89.992858","29.918123"],["-89.992839","29.917944"],["-89.992821","29.917765"],["-89.992815","29.917709"],["-89.992820","29.917549"],["-89.992832","29.917369"],["-89.992844","29.917190"],["-89.992857","29.917010"],["-89.992860","29.916960"],["-89.992869","29.916780"],["-89.992878","29.916601"],["-89.992887","29.916421"],["-89.992896","29.916241"],["-89.992900","29.916160"],["-89.992900","29.916099"],["-89.992927","29.915921"],["-89.992954","29.915742"],["-89.992982","29.915564"],["-89.993009","29.915386"],["-89.993030","29.915247"],["-89.992994","29.915070"],["-89.992976","29.914980"],["-89.992984","29.914800"],["-89.992991","29.914621"],["-89.992998","29.914441"],["-89.993006","29.914261"],["-89.993009","29.914180"],["-89.993021","29.914000"],["-89.993033","29.913821"],["-89.993045","29.913641"],["-89.993049","29.913589"],["-89.993057","29.913409"],["-89.993059","29.913360"],["-89.993068","29.913180"],["-89.993110","29.913004"],["-89.993152","29.912828"],["-89.993182","29.912705"],["-89.993153","29.912527"],["-89.993123","29.912349"],["-89.993112","29.912280"],["-89.993124","29.912100"],["-89.993137","29.911921"],["-89.993150","29.911741"],["-89.993159","29.911562"],["-89.993168","29.911382"],["-89.993170","29.911340"],["-89.993182","29.911160"],["-89.993190","29.911050"],["-89.993201","29.910870"],["-89.993213","29.910691"],["-89.993220","29.910580"],["-89.993310","29.910418"],["-89.993397","29.910262"],["-89.993381","29.910083"],["-89.993365","29.909903"],["-89.993359","29.909841"],["-89.993369","29.909750"],["-89.993379","29.909590"],["-89.993385","29.909410"],["-89.993390","29.909249"],["-89.993395","29.909069"],["-89.993400","29.908899"],["-89.993407","29.908719"],["-89.993409","29.908670"],["-89.993415","29.908490"],["-89.993419","29.908350"],["-89.993426","29.908170"],["-89.993429","29.908099"],["-89.993472","29.907923"],["-89.993516","29.907747"],["-89.993538","29.907656"],["-89.993430","29.907650"],["-89.993440","29.907550"],["-89.993450","29.907450"],["-89.993450","29.907420"],["-89.993460","29.907295"],["-89.993470","29.907170"],["-89.993470","29.907070"],["-89.993470","29.906970"],["-89.993460","29.906890"],["-89.993450","29.906720"],["-89.993544","29.906710"],["-89.993450","29.906720"],["-89.993450","29.906640"],["-89.993425","29.906530"],["-89.993400","29.906420"],["-89.993350","29.906270"],["-89.993310","29.906180"],["-89.993270","29.906090"],["-89.993180","29.905920"],["-89.993110","29.905825"],["-89.993040","29.905730"],["-89.992930","29.905600"],["-89.992800","29.905470"],["-89.992695","29.905363"],["-89.992590","29.905255"],["-89.992485","29.905148"],["-89.992380","29.905040"],["-89.992260","29.904920"],["-89.992155","29.904805"],["-89.992050","29.904690"],["-89.992102","29.904651"],["-89.992050","29.904690"],["-89.991980","29.904610"],["-89.992075","29.904543"],["-89.992170","29.904475"],["-89.992265","29.904408"],["-89.992360","29.904340"],["-89.992481","29.904251"],["-89.992603","29.904163"],["-89.992724","29.904074"],["-89.992845","29.903985"],["-89.992966","29.903896"],["-89.993088","29.903808"],["-89.993209","29.903719"],["-89.993330","29.903630"],["-89.993451","29.903541"],["-89.993573","29.903453"],["-89.993694","29.903364"],["-89.993815","29.903275"],["-89.993936","29.903186"],["-89.994058","29.903098"],["-89.994179","29.903009"],["-89.994300","29.902920"],["-89.994350","29.902970"],["-89.994342","29.902975"],["-89.994350","29.902970"],["-89.994300","29.902920"],["-89.994400","29.902846"],["-89.994500","29.902773"],["-89.994600","29.902699"],["-89.994700","29.902625"],["-89.994800","29.902551"],["-89.994900","29.902478"],["-89.995000","29.902404"],["-89.995100","29.902330"],["-89.995198","29.902258"],["-89.995295","29.902185"],["-89.995393","29.902113"],["-89.995490","29.902040"],["-89.995588","29.901968"],["-89.995685","29.901895"],["-89.995783","29.901823"],["-89.995880","29.901750"],["-89.996040","29.901630"],["-89.996160","29.901540"],["-89.996262","29.901543"],["-89.996220","29.901490"],["-89.996360","29.901400"],["-89.996370","29.901390"],["-89.996465","29.901340"],["-89.996560","29.901290"],["-89.996665","29.901240"],["-89.996770","29.901190"],["-89.996960","29.901110"],["-89.997120","29.901060"],["-89.997330","29.901000"],["-89.997368","29.901069"],["-89.997330","29.901000"],["-89.997530","29.900950"],["-89.997710","29.900920"],["-89.997860","29.900900"],["-89.998040","29.900890"],["-89.998220","29.900890"],["-89.998430","29.900900"],["-89.998549","29.900905"],["-89.998667","29.900910"],["-89.998786","29.900915"],["-89.998905","29.900920"],["-89.999024","29.900925"],["-89.999142","29.900930"],["-89.999261","29.900935"],["-89.999380","29.900940"],["-89.999550","29.900940"],["-89.999690","29.900946"],["-89.999830","29.900953"],["-89.999970","29.900959"],["-90.000110","29.900965"],["-90.000250","29.900971"],["-90.000390","29.900978"],["-90.000530","29.900984"],["-90.000670","29.900990"],["-90.000664","29.901056"],["-90.000766","29.900992"],["-90.000835","29.900973"],["-90.000846","29.900817"],["-90.000686","29.900812"],["-90.000526","29.900808"],["-90.000366","29.900803"],["-90.000207","29.900798"],["-90.000047","29.900793"],["-89.999887","29.900788"],["-89.999727","29.900783"],["-89.999567","29.900778"],["-89.999369","29.900724"],["-89.999221","29.900683"],["-89.999220","29.900750"],["-89.999030","29.900743"],["-89.998840","29.900735"],["-89.998650","29.900728"],["-89.998460","29.900720"],["-89.998270","29.900715"],["-89.998080","29.900710"],["-89.997910","29.900710"],["-89.997780","29.900730"],["-89.997650","29.900750"],["-89.997480","29.900780"],["-89.997370","29.900800"],["-89.997260","29.900820"],["-89.997294","29.900763"],["-89.997112","29.900842"],["-89.996930","29.900920"],["-89.996830","29.900950"],["-89.996710","29.901010"],["-89.996530","29.901090"],["-89.996390","29.901170"],["-89.996250","29.901250"],["-89.996080","29.901360"],["-89.995960","29.901440"],["-89.995920","29.901470"],["-89.995750","29.901590"],["-89.995663","29.901655"],["-89.995575","29.901720"],["-89.995488","29.901785"],["-89.995400","29.901850"],["-89.995351","29.901799"],["-89.995400","29.901850"],["-89.995250","29.901961"],["-89.995100","29.902073"],["-89.994950","29.902184"],["-89.994800","29.902295"],["-89.994650","29.902406"],["-89.994500","29.902518"],["-89.994350","29.902629"],["-89.994200","29.902740"],["-89.994100","29.902815"],["-89.994000","29.902890"],["-89.993900","29.902965"],["-89.993741","29.902986"],["-89.993674","29.903134"],["-89.993583","29.903200"],["-89.993493","29.903267"],["-89.993403","29.903333"],["-89.993313","29.903399"],["-89.993223","29.903465"],["-89.993132","29.903532"],["-89.993042","29.903598"],["-89.992952","29.903664"],["-89.992840","29.903750"],["-89.992727","29.903836"],["-89.992615","29.903921"],["-89.992503","29.904007"],["-89.992390","29.904093"],["-89.992278","29.904179"],["-89.992166","29.904264"],["-89.992053","29.904350"],["-89.991935","29.904327"],["-89.992010","29.904400"],["-89.991860","29.904510"],["-89.991690","29.904620"],["-89.991800","29.904730"],["-89.991813","29.904860"]]},{"type":"MultiPoint","coordinates":[["-90.075000","29.950758"],["-90.075680","29.948474"],["-90.076106","29.947003"],["-90.027562","29.931038"],["-90.009848","29.923930"],["-90.004507","29.923511"],["-90.001707","29.923342"],["-90.000129","29.922781"],["-89.998041","29.922077"],["-89.995061","29.921035"],["-89.992944","29.920521"],["-89.992858","29.918123"],["-89.993030","29.915247"],["-89.993182","29.912705"],["-89.993397","29.910262"],["-89.999221","29.900683"],["-90.022002","29.930485"],["-90.021393","29.925386"],["-90.022580","29.922641"],["-90.022695","29.921027"],["-90.022620","29.918774"],["-90.020586","29.918395"],["-89.991813","29.904860"],["-89.992102","29.904651"],["-90.012876","29.924242"],["-90.008198","29.923685"],["-90.042184","29.926584"],["-90.042258","29.925096"],["-90.041925","29.924963"],["-90.041778","29.926423"],["-90.075249","29.954642"],["-90.043886","29.920087"],["-89.994342","29.902975"],["-89.996262","29.901543"],["-89.997368","29.901069"],["-90.000664","29.901056"],["-89.997294","29.900763"],["-89.995351","29.901799"],["-89.993741","29.902986"],["-89.993544","29.906710"],["-89.993538","29.907656"],["-89.991935","29.904327"],["-90.020144","29.928078"],["-90.013951","29.921876"],["-90.020240","29.930403"],["-90.020294","29.919902"],["-90.019472","29.923060"],["-90.042369","29.922906"],["-90.041956","29.930163"]]},{"type":"LineString","coordinates":[["-90.075249","29.954642"],["-90.075052","29.954585"],["-90.074855","29.954529"],["-90.074790","29.954510"],["-90.074670","29.954510"],["-90.074482","29.954434"],["-90.074294","29.954358"],["-90.074249","29.954340"],["-90.074073","29.954244"],["-90.073990","29.954199"],["-90.074000","29.954079"],["-90.073990","29.953950"],["-90.074000","29.953860"],["-90.074019","29.953770"],["-90.074069","29.953595"],["-90.074119","29.953421"],["-90.074169","29.953246"],["-90.074199","29.953140"],["-90.074252","29.952966"],["-90.074301","29.952791"],["-90.074351","29.952617"],["-90.074397","29.952441"],["-90.074419","29.952360"],["-90.074471","29.952186"],["-90.074509","29.952060"],["-90.074561","29.951886"],["-90.074599","29.951759"],["-90.074667","29.951589"],["-90.074735","29.951419"],["-90.074803","29.951249"],["-90.074871","29.951079"],["-90.074939","29.950909"],["-90.075000","29.950758"],["-90.074920","29.950740"],["-90.074960","29.950610"],["-90.075010","29.950480"],["-90.075053","29.950323"],["-90.075095","29.950165"],["-90.075138","29.950008"],["-90.075180","29.949850"],["-90.075220","29.949710"],["-90.075270","29.949550"],["-90.075290","29.949460"],["-90.075320","29.949350"],["-90.075330","29.949310"],["-90.075363","29.949203"],["-90.075395","29.949095"],["-90.075428","29.948988"],["-90.075460","29.948880"],["-90.075493","29.948773"],["-90.075525","29.948665"],["-90.075558","29.948558"],["-90.075590","29.948450"],["-90.075680","29.948474"],["-90.075590","29.948450"],["-90.075620","29.948350"],["-90.075630","29.948260"],["-90.075630","29.948230"],["-90.075678","29.948065"],["-90.075725","29.947900"],["-90.075773","29.947735"],["-90.075820","29.947570"],["-90.075868","29.947405"],["-90.075915","29.947240"],["-90.076011","29.947122"],["-90.076106","29.947003"],["-90.076032","29.946900"],["-90.076045","29.946769"],["-90.076058","29.946638"],["-90.076033","29.946488"],["-90.076007","29.946338"],["-90.075985","29.946174"],["-90.075962","29.946010"],["-90.075993","29.945870"],["-90.076024","29.945729"],["-90.076048","29.945610"],["-90.076072","29.945492"],["-90.076135","29.945404"],["-90.076199","29.945316"],["-90.076263","29.945228"],["-90.076326","29.945140"],["-90.076390","29.945051"],["-90.076454","29.944963"],["-90.076517","29.944875"],["-90.076581","29.944787"],["-90.076645","29.944699"],["-90.076708","29.944611"],["-90.076772","29.944523"],["-90.076836","29.944435"],["-90.076899","29.944347"],["-90.076963","29.944259"],["-90.077027","29.944171"],["-90.077090","29.944083"],["-90.077005","29.944013"],["-90.076921","29.943943"],["-90.076836","29.943873"],["-90.076751","29.943804"],["-90.076607","29.943733"],["-90.076464","29.943662"],["-90.076303","29.943579"],["-90.076142","29.943496"],["-90.075981","29.943413"],["-90.075820","29.943330"],["-90.075723","29.943275"],["-90.075626","29.943221"],["-90.075529","29.943167"],["-90.075432","29.943112"],["-90.075335","29.943058"],["-90.075237","29.943004"],["-90.075140","29.942949"],["-90.075043","29.942895"],["-90.074946","29.942841"],["-90.074849","29.942786"],["-90.074752","29.942732"],["-90.074655","29.942678"],["-90.074558","29.942623"],["-90.074461","29.942569"],["-90.074364","29.942515"],["-90.074267","29.942460"],["-90.074134","29.942395"],["-90.074001","29.942330"],["-90.073869","29.942265"],["-90.073736","29.942200"],["-90.073603","29.942135"],["-90.073470","29.942070"],["-90.073337","29.942005"],["-90.073205","29.941940"],["-90.073097","29.941912"],["-90.072990","29.941884"],["-90.072865","29.941818"],["-90.072741","29.941751"],["-90.072616","29.941685"],["-90.072491","29.941619"],["-90.072367","29.941553"],["-90.072242","29.941487"],["-90.072117","29.941420"],["-90.071992","29.941354"],["-90.071836","29.941265"],["-90.071680","29.941176"],["-90.071524","29.941087"],["-90.071367","29.940998"],["-90.071211","29.940910"],["-90.071055","29.940821"],["-90.070899","29.940732"],["-90.070742","29.940643"],["-90.070625","29.940577"],["-90.070508","29.940512"],["-90.070391","29.940447"],["-90.070274","29.940381"],["-90.070157","29.940316"],["-90.070040","29.940251"],["-90.069923","29.940185"],["-90.069806","29.940120"],["-90.069689","29.940054"],["-90.069572","29.939989"],["-90.069455","29.939924"],["-90.069338","29.939858"],["-90.069221","29.939793"],["-90.069104","29.939728"],["-90.068987","29.939662"],["-90.068870","29.939597"],["-90.068769","29.939540"],["-90.068667","29.939482"],["-90.068565","29.939425"],["-90.068464","29.939368"],["-90.068362","29.939311"],["-90.068261","29.939253"],["-90.068159","29.939196"],["-90.068058","29.939139"],["-90.067956","29.939082"],["-90.067854","29.939025"],["-90.067753","29.938967"],["-90.067651","29.938910"],["-90.067550","29.938853"],["-90.067448","29.938796"],["-90.067346","29.938738"],["-90.067245","29.938681"],["-90.067108","29.938622"],["-90.066971","29.938564"],["-90.066834","29.938505"],["-90.066698","29.938446"],["-90.066561","29.938388"],["-90.066424","29.938329"],["-90.066287","29.938270"],["-90.066151","29.938212"],["-90.065956","29.938143"],["-90.065762","29.938074"],["-90.065567","29.938006"],["-90.065373","29.937937"],["-90.065249","29.937915"],["-90.065125","29.937892"],["-90.065001","29.937869"],["-90.064877","29.937846"],["-90.064753","29.937823"],["-90.064629","29.937800"],["-90.064505","29.937778"],["-90.064381","29.937755"],["-90.064257","29.937753"],["-90.064133","29.937752"],["-90.064009","29.937750"],["-90.063885","29.937749"],["-90.063761","29.937747"],["-90.063637","29.937746"],["-90.063513","29.937745"],["-90.063389","29.937743"],["-90.063265","29.937742"],["-90.063140","29.937740"],["-90.063016","29.937739"],["-90.062892","29.937737"],["-90.062768","29.937736"],["-90.062644","29.937734"],["-90.062520","29.937733"],["-90.062396","29.937731"],["-90.062247","29.937736"],["-90.062098","29.937741"],["-90.061950","29.937745"],["-90.061801","29.937750"],["-90.061658","29.937748"],["-90.061516","29.937745"],["-90.061374","29.937743"],["-90.061231","29.937741"],["-90.061089","29.937738"],["-90.060947","29.937736"],["-90.060805","29.937734"],["-90.060662","29.937731"],["-90.060465","29.937733"],["-90.060267","29.937734"],["-90.060070","29.937735"],["-90.059872","29.937736"],["-90.059675","29.937737"],["-90.059477","29.937738"],["-90.059280","29.937740"],["-90.059082","29.937741"],["-90.058885","29.937742"],["-90.058687","29.937743"],["-90.058490","29.937744"],["-90.058293","29.937745"],["-90.058095","29.937747"],["-90.057898","29.937748"],["-90.057700","29.937749"],["-90.057503","29.937750"],["-90.057312","29.937751"],["-90.057121","29.937751"],["-90.056931","29.937751"],["-90.056740","29.937752"],["-90.056549","29.937752"],["-90.056359","29.937753"],["-90.056168","29.937753"],["-90.055977","29.937754"],["-90.055787","29.937754"],["-90.055596","29.937755"],["-90.055405","29.937755"],["-90.055215","29.937756"],["-90.055024","29.937756"],["-90.054833","29.937757"],["-90.054643","29.937757"],["-90.054452","29.937758"],["-90.054325","29.937760"],["-90.054199","29.937763"],["-90.054072","29.937765"],["-90.053945","29.937768"],["-90.053819","29.937770"],["-90.053692","29.937772"],["-90.053565","29.937775"],["-90.053439","29.937777"],["-90.053312","29.937780"],["-90.053185","29.937782"],["-90.053058","29.937785"],["-90.052932","29.937787"],["-90.052805","29.937790"],["-90.052678","29.937792"],["-90.052552","29.937795"],["-90.052425","29.937797"],["-90.052298","29.937800"],["-90.052172","29.937802"],["-90.052045","29.937805"],["-90.051918","29.937807"],["-90.051791","29.937810"],["-90.051665","29.937812"],["-90.051538","29.937814"],["-90.051411","29.937817"],["-90.051285","29.937819"],["-90.051158","29.937822"],["-90.051031","29.937824"],["-90.050905","29.937827"],["-90.050778","29.937829"],["-90.050651","29.937832"],["-90.050525","29.937834"],["-90.050398","29.937837"],["-90.050235","29.937835"],["-90.050072","29.937833"],["-90.049909","29.937831"],["-90.049746","29.937830"],["-90.049583","29.937828"],["-90.049420","29.937826"],["-90.049257","29.937824"],["-90.049094","29.937823"],["-90.048877","29.937825"],["-90.048660","29.937827"],["-90.048443","29.937830"],["-90.048225","29.937832"],["-90.048107","29.937833"],["-90.047989","29.937833"],["-90.047871","29.937834"],["-90.047753","29.937834"],["-90.047635","29.937835"],["-90.047517","29.937836"],["-90.047399","29.937836"],["-90.047281","29.937837"],["-90.047163","29.937837"],["-90.047045","29.937838"],["-90.046927","29.937838"],["-90.046809","29.937839"],["-90.046691","29.937840"],["-90.046573","29.937840"],["-90.046455","29.937841"],["-90.046337","29.937841"],["-90.046116","29.937845"],["-90.045894","29.937848"],["-90.045673","29.937852"],["-90.045452","29.937855"],["-90.045231","29.937859"],["-90.045009","29.937862"],["-90.044788","29.937866"],["-90.044567","29.937869"],["-90.044450","29.937868"],["-90.044334","29.937866"],["-90.044218","29.937865"],["-90.044101","29.937863"],["-90.043985","29.937862"],["-90.043869","29.937860"],["-90.043752","29.937859"],["-90.043636","29.937858"],["-90.043520","29.937856"],["-90.043403","29.937855"],["-90.043287","29.937853"],["-90.043171","29.937852"],["-90.043054","29.937850"],["-90.042938","29.937849"],["-90.042822","29.937847"],["-90.042705","29.937846"],["-90.042504","29.937837"],["-90.042303","29.937827"],["-90.042102","29.937818"],["-90.041901","29.937809"],["-90.041717","29.937761"],["-90.041533","29.937713"],["-90.041349","29.937666"],["-90.041166","29.937618"],["-90.040986","29.937545"],["-90.040806","29.937472"],["-90.040627","29.937399"],["-90.040447","29.937325"],["-90.040356","29.937268"],["-90.040264","29.937210"],["-90.040173","29.937153"],["-90.040082","29.937095"],["-90.039991","29.937038"],["-90.039900","29.936980"],["-90.039808","29.936923"],["-90.039717","29.936865"],["-90.039623","29.936774"],["-90.039530","29.936684"],["-90.039436","29.936593"],["-90.039342","29.936502"],["-90.039248","29.936412"],["-90.039154","29.936321"],["-90.039060","29.936231"],["-90.038966","29.936140"],["-90.038925","29.936015"],["-90.038883","29.935891"],["-90.038842","29.935766"],["-90.038800","29.935641"],["-90.038759","29.935517"],["-90.038717","29.935392"],["-90.038676","29.935268"],["-90.038635","29.935143"],["-90.038577","29.934986"],["-90.038520","29.934830"],["-90.038462","29.934673"],["-90.038405","29.934516"],["-90.038348","29.934359"],["-90.038290","29.934202"],["-90.038233","29.934046"],["-90.038175","29.933889"],["-90.038186","29.933731"],["-90.038196","29.933573"],["-90.038207","29.933415"],["-90.038217","29.933257"],["-90.038227","29.933099"],["-90.038238","29.932941"],["-90.038248","29.932783"],["-90.038258","29.932625"],["-90.038269","29.932467"],["-90.038279","29.932309"],["-90.038290","29.932152"],["-90.038300","29.931994"],["-90.038310","29.931836"],["-90.038321","29.931678"],["-90.038331","29.931520"],["-90.038342","29.931362"],["-90.038347","29.931264"],["-90.038353","29.931166"],["-90.038359","29.931068"],["-90.038364","29.930970"],["-90.038370","29.930872"],["-90.038376","29.930774"],["-90.038381","29.930676"],["-90.038387","29.930579"],["-90.038603","29.930586"],["-90.038818","29.930594"],["-90.039034","29.930602"],["-90.039250","29.930610"],["-90.039465","29.930618"],["-90.039681","29.930626"],["-90.039896","29.930633"],["-90.040112","29.930641"],["-90.040327","29.930649"],["-90.040543","29.930657"],["-90.040759","29.930665"],["-90.040974","29.930673"],["-90.041190","29.930681"],["-90.041405","29.930688"],["-90.041621","29.930696"],["-90.041837","29.930704"],["-90.041844","29.930583"],["-90.041851","29.930462"],["-90.041859","29.930341"],["-90.041866","29.930221"],["-90.041956","29.930163"],["-90.041866","29.930065"],["-90.041872","29.929968"],["-90.041878","29.929871"],["-90.041884","29.929774"],["-90.041890","29.929677"],["-90.041896","29.929580"],["-90.041902","29.929483"],["-90.041909","29.929387"],["-90.041915","29.929290"],["-90.041921","29.929193"],["-90.041927","29.929096"],["-90.041933","29.928999"],["-90.041939","29.928902"],["-90.041945","29.928805"],["-90.041951","29.928708"],["-90.041957","29.928611"],["-90.041963","29.928514"],["-90.041969","29.928417"],["-90.041975","29.928321"],["-90.041981","29.928224"],["-90.041987","29.928127"],["-90.041993","29.928030"],["-90.042000","29.927933"],["-90.042006","29.927836"],["-90.042012","29.927739"],["-90.042018","29.927642"],["-90.042024","29.927545"],["-90.042030","29.927448"],["-90.042036","29.927352"],["-90.042042","29.927255"],["-90.042048","29.927158"],["-90.042054","29.927061"],["-90.042060","29.926964"],["-90.042091","29.926869"],["-90.042122","29.926774"],["-90.042153","29.926679"],["-90.042184","29.926584"],["-90.042174","29.926469"],["-90.042165","29.926353"],["-90.042155","29.926238"],["-90.042146","29.926122"],["-90.042150","29.926012"],["-90.042154","29.925902"],["-90.042158","29.925791"],["-90.042162","29.925681"],["-90.042166","29.925570"],["-90.042170","29.925460"],["-90.042174","29.925350"],["-90.042178","29.925239"],["-90.042258","29.925096"],["-90.042223","29.924975"],["-90.042189","29.924853"],["-90.042197","29.924747"],["-90.042205","29.924640"],["-90.042214","29.924533"],["-90.042222","29.924427"],["-90.042230","29.924320"],["-90.042238","29.924213"],["-90.042247","29.924107"],["-90.042255","29.924000"],["-90.042263","29.923894"],["-90.042271","29.923787"],["-90.042280","29.923680"],["-90.042288","29.923574"],["-90.042296","29.923467"],["-90.042304","29.923360"],["-90.042313","29.923254"],["-90.042321","29.923147"],["-90.042345","29.923027"],["-90.042369","29.922906"],["-90.042283","29.922924"],["-90.042351","29.922818"],["-90.042419","29.922712"],["-90.042487","29.922607"],["-90.042555","29.922501"],["-90.042624","29.922395"],["-90.042692","29.922289"],["-90.042760","29.922184"],["-90.042828","29.922078"],["-90.042896","29.921972"],["-90.042964","29.921866"],["-90.043032","29.921760"],["-90.043100","29.921655"],["-90.043168","29.921549"],["-90.043236","29.921443"],["-90.043304","29.921337"],["-90.043372","29.921232"],["-90.043324","29.921078"],["-90.043227","29.920953"],["-90.043069","29.920934"],["-90.042911","29.920915"],["-90.043024","29.920752"],["-90.043136","29.920589"],["-90.043249","29.920425"],["-90.043361","29.920262"],["-90.043474","29.920099"],["-90.043587","29.919936"],["-90.043699","29.919772"],["-90.043812","29.919609"],["-90.043970","29.919672"],["-90.044129","29.919734"],["-90.044068","29.919823"],["-90.044007","29.919911"],["-90.043947","29.919999"],["-90.043886","29.920087"],["-90.043808","29.920203"],["-90.043731","29.920320"],["-90.043653","29.920436"],["-90.043575","29.920552"],["-90.043498","29.920669"],["-90.043420","29.920785"],["-90.043343","29.920901"],["-90.043265","29.921018"],["-90.043112","29.920967"],["-90.042959","29.920915"],["-90.042844","29.920920"],["-90.042728","29.920925"],["-90.042643","29.921062"],["-90.042558","29.921199"],["-90.042473","29.921336"],["-90.042388","29.921473"],["-90.042303","29.921610"],["-90.042218","29.921748"],["-90.042132","29.921885"],["-90.042047","29.922022"],["-90.041987","29.922111"],["-90.041927","29.922201"],["-90.041866","29.922290"],["-90.041806","29.922380"],["-90.041745","29.922469"],["-90.041685","29.922559"],["-90.041625","29.922648"],["-90.041564","29.922738"],["-90.041575","29.922859"],["-90.041586","29.922980"],["-90.041666","29.923063"],["-90.041747","29.923147"],["-90.041833","29.923219"],["-90.041918","29.923291"],["-90.042017","29.923459"],["-90.042117","29.923626"],["-90.042108","29.923773"],["-90.042098","29.923920"],["-90.042089","29.924067"],["-90.042079","29.924214"],["-90.042070","29.924361"],["-90.042061","29.924508"],["-90.042051","29.924655"],["-90.042042","29.924802"],["-90.041925","29.924963"],["-90.041978","29.925078"],["-90.042031","29.925193"],["-90.042019","29.925337"],["-90.042007","29.925482"],["-90.041995","29.925627"],["-90.041983","29.925772"],["-90.041971","29.925916"],["-90.041959","29.926061"],["-90.041947","29.926206"],["-90.041935","29.926350"],["-90.041778","29.926423"],["-90.041854","29.926569"],["-90.041929","29.926716"],["-90.041922","29.926822"],["-90.041915","29.926928"],["-90.041908","29.927035"],["-90.041901","29.927141"],["-90.041894","29.927247"],["-90.041887","29.927354"],["-90.041880","29.927460"],["-90.041873","29.927566"],["-90.041866","29.927673"],["-90.041859","29.927779"],["-90.041852","29.927885"],["-90.041845","29.927992"],["-90.041838","29.928098"],["-90.041831","29.928205"],["-90.041824","29.928311"],["-90.041817","29.928417"],["-90.041809","29.928552"],["-90.041801","29.928687"],["-90.041793","29.928821"],["-90.041786","29.928956"],["-90.041778","29.929091"],["-90.041770","29.929225"],["-90.041763","29.929360"],["-90.041755","29.929495"],["-90.041747","29.929629"],["-90.041739","29.929764"],["-90.041732","29.929899"],["-90.041724","29.930033"],["-90.041716","29.930168"],["-90.041709","29.930303"],["-90.041701","29.930437"],["-90.041693","29.930572"],["-90.041538","29.930579"],["-90.041382","29.930586"],["-90.041255","29.930584"],["-90.041129","29.930582"],["-90.041002","29.930581"],["-90.040875","29.930579"],["-90.040748","29.930577"],["-90.040622","29.930575"],["-90.040495","29.930574"],["-90.040368","29.930572"],["-90.040256","29.930565"],["-90.040145","29.930557"],["-90.040033","29.930550"],["-90.039922","29.930543"],["-90.039810","29.930536"],["-90.039698","29.930528"],["-90.039587","29.930521"],["-90.039475","29.930514"],["-90.039363","29.930507"],["-90.039252","29.930499"],["-90.039140","29.930492"],["-90.039028","29.930485"],["-90.038917","29.930478"],["-90.038805","29.930470"],["-90.038693","29.930463"],["-90.038582","29.930456"],["-90.038450","29.930450"],["-90.038318","29.930444"],["-90.038186","29.930438"],["-90.038055","29.930432"],["-90.037923","29.930426"],["-90.037791","29.930420"],["-90.037659","29.930414"],["-90.037527","29.930409"],["-90.037396","29.930403"],["-90.037264","29.930397"],["-90.037132","29.930391"],["-90.037000","29.930385"],["-90.036868","29.930379"],["-90.036737","29.930373"],["-90.036605","29.930367"],["-90.036473","29.930361"],["-90.036329","29.930352"],["-90.036185","29.930344"],["-90.036041","29.930335"],["-90.035897","29.930326"],["-90.035752","29.930317"],["-90.035608","29.930308"],["-90.035464","29.930299"],["-90.035320","29.930290"],["-90.035190","29.930285"],["-90.035060","29.930280"],["-90.034945","29.930270"],["-90.034830","29.930260"],["-90.034730","29.930250"],["-90.034515","29.930220"],["-90.034300","29.930190"],["-90.034160","29.930170"],["-90.033950","29.930120"],["-90.033920","29.930100"],["-90.033860","29.930050"],["-90.033755","29.930015"],["-90.033650","29.929980"],["-90.033530","29.929940"],["-90.033420","29.929890"],["-90.033330","29.929850"],["-90.033210","29.929790"],["-90.033140","29.929750"],["-90.033070","29.929720"],["-90.032930","29.929640"],["-90.032820","29.929560"],["-90.032710","29.929480"],["-90.032571","29.929369"],["-90.032415","29.929258"],["-90.032332","29.929337"],["-90.032249","29.929416"],["-90.032220","29.929569"],["-90.032190","29.929723"],["-90.032198","29.929887"],["-90.032206","29.930051"],["-90.032214","29.930214"],["-90.032222","29.930378"],["-90.032212","29.930492"],["-90.032202","29.930606"],["-90.032192","29.930720"],["-90.032182","29.930834"],["-90.032172","29.930948"],["-90.032162","29.931062"],["-90.032152","29.931176"],["-90.032142","29.931290"],["-90.032132","29.931403"],["-90.032122","29.931517"],["-90.032112","29.931631"],["-90.032102","29.931745"],["-90.032092","29.931859"],["-90.032082","29.931973"],["-90.032071","29.932087"],["-90.032061","29.932201"],["-90.031940","29.932193"],["-90.031819","29.932186"],["-90.031697","29.932178"],["-90.031576","29.932170"],["-90.031455","29.932163"],["-90.031333","29.932155"],["-90.031212","29.932148"],["-90.031090","29.932140"],["-90.030969","29.932133"],["-90.030848","29.932125"],["-90.030726","29.932118"],["-90.030605","29.932110"],["-90.030484","29.932102"],["-90.030362","29.932095"],["-90.030241","29.932087"],["-90.030120","29.932080"],["-90.030007","29.932053"],["-90.029894","29.932026"],["-90.029782","29.932000"],["-90.029669","29.931973"],["-90.029527","29.931915"],["-90.029385","29.931857"],["-90.029242","29.931799"],["-90.029100","29.931740"],["-90.028934","29.931668"],["-90.028768","29.931596"],["-90.028601","29.931524"],["-90.028435","29.931452"],["-90.028269","29.931380"],["-90.028102","29.931308"],["-90.027936","29.931236"],["-90.027770","29.931164"],["-90.027666","29.931101"],["-90.027562","29.931038"],["-90.027361","29.930984"],["-90.027160","29.930930"],["-90.027025","29.930880"],["-90.026890","29.930830"],["-90.026770","29.930800"],["-90.026690","29.930790"],["-90.026620","29.930780"],["-90.026500","29.930770"],["-90.026300","29.930770"],["-90.026100","29.930760"],["-90.025947","29.930753"],["-90.025795","29.930745"],["-90.025642","29.930738"],["-90.025490","29.930730"],["-90.025322","29.930720"],["-90.025155","29.930710"],["-90.024987","29.930700"],["-90.024820","29.930690"],["-90.024672","29.930683"],["-90.024525","29.930675"],["-90.024377","29.930668"],["-90.024230","29.930660"],["-90.024025","29.930655"],["-90.023820","29.930650"],["-90.023760","29.930650"],["-90.023585","29.930643"],["-90.023410","29.930635"],["-90.023235","29.930628"],["-90.023060","29.930620"],["-90.022921","29.930615"],["-90.022782","29.930610"],["-90.022644","29.930605"],["-90.022505","29.930600"],["-90.022366","29.930595"],["-90.022227","29.930590"],["-90.022089","29.930585"],["-90.021950","29.930580"],["-90.022002","29.930485"],["-90.021820","29.930534"],["-90.021639","29.930583"],["-90.021494","29.930572"],["-90.021349","29.930561"],["-90.021232","29.930558"],["-90.021116","29.930554"],["-90.021000","29.930550"],["-90.020870","29.930540"],["-90.020720","29.930530"],["-90.020660","29.930520"],["-90.020460","29.930510"],["-90.020345","29.930500"],["-90.020230","29.930490"],["-90.020240","29.930403"],["-90.020230","29.930490"],["-90.020070","29.930480"],["-90.020090","29.930355"],["-90.020110","29.930230"],["-90.020130","29.930090"],["-90.020140","29.929960"],["-90.020150","29.929830"],["-90.020160","29.929760"],["-90.020160","29.929670"],["-90.020160","29.929510"],["-90.020150","29.929350"],["-90.020140","29.929190"],["-90.020125","29.929030"],["-90.020110","29.928870"],["-90.020090","29.928740"],["-90.020080","29.928690"],["-90.020070","29.928510"],["-90.020060","29.928440"],["-90.020070","29.928260"],["-90.020080","29.928080"],["-90.020144","29.928078"],["-90.020080","29.928080"],["-90.020080","29.928010"],["-90.020110","29.927820"],["-90.020160","29.927640"],["-90.020190","29.927540"],["-90.020220","29.927440"],["-90.020265","29.927320"],["-90.020310","29.927200"],["-90.020360","29.927080"],["-90.020410","29.926960"],["-90.020495","29.926820"],["-90.020580","29.926680"],["-90.020633","29.926595"],["-90.020685","29.926510"],["-90.020738","29.926425"],["-90.020790","29.926340"],["-90.020843","29.926243"],["-90.020895","29.926145"],["-90.020987","29.925978"],["-90.021078","29.925810"],["-90.021170","29.925643"],["-90.021261","29.925475"],["-90.021393","29.925386"],["-90.021417","29.925210"],["-90.021500","29.925036"],["-90.021583","29.924862"],["-90.021666","29.924687"],["-90.021749","29.924513"],["-90.021832","29.924339"],["-90.021915","29.924164"],["-90.021999","29.923990"],["-90.022082","29.923815"],["-90.022107","29.923654"],["-90.022133","29.923492"],["-90.022158","29.923331"],["-90.022184","29.923169"],["-90.022231","29.923056"],["-90.022278","29.922943"],["-90.022330","29.922857"],["-90.022381","29.922771"],["-90.022433","29.922685"],["-90.022485","29.922599"],["-90.022580","29.922641"],["-90.022530","29.922530"],["-90.022583","29.922422"],["-90.022635","29.922313"],["-90.022667","29.922221"],["-90.022678","29.922107"],["-90.022688","29.921993"],["-90.022688","29.921883"],["-90.022688","29.921774"],["-90.022688","29.921665"],["-90.022688","29.921556"],["-90.022677","29.921432"],["-90.022666","29.921309"],["-90.022654","29.921186"],["-90.022643","29.921063"],["-90.022695","29.921027"],["-90.022640","29.920942"],["-90.022615","29.920811"],["-90.022589","29.920679"],["-90.022564","29.920548"],["-90.022538","29.920417"],["-90.022509","29.920310"],["-90.022479","29.920204"],["-90.022450","29.920097"],["-90.022420","29.919991"],["-90.022392","29.919805"],["-90.022364","29.919619"],["-90.022371","29.919523"],["-90.022379","29.919426"],["-90.022386","29.919330"],["-90.022393","29.919233"],["-90.022425","29.919137"],["-90.022456","29.919040"],["-90.022488","29.918944"],["-90.022520","29.918847"],["-90.022620","29.918774"],["-90.022568","29.918661"],["-90.022416","29.918622"],["-90.022265","29.918583"],["-90.022142","29.918567"],["-90.022020","29.918550"],["-90.021860","29.918540"],["-90.021685","29.918535"],["-90.021510","29.918530"],["-90.021400","29.918520"],["-90.021195","29.918510"],["-90.020990","29.918500"],["-90.020785","29.918490"],["-90.020637","29.918440"],["-90.020490","29.918390"],["-90.020586","29.918395"],["-90.020490","29.918390"],["-90.020490","29.918470"],["-90.020490","29.918570"],["-90.020478","29.918715"],["-90.020465","29.918860"],["-90.020453","29.919005"],["-90.020440","29.919150"],["-90.020420","29.919330"],["-90.020420","29.919430"],["-90.020413","29.919550"],["-90.020405","29.919670"],["-90.020398","29.919790"],["-90.020390","29.919910"],["-90.020294","29.919902"],["-90.020390","29.919910"],["-90.020380","29.920055"],["-90.020370","29.920200"],["-90.020360","29.920345"],["-90.020350","29.920490"],["-90.020350","29.920520"],["-90.020340","29.920665"],["-90.020330","29.920810"],["-90.020320","29.920955"],["-90.020310","29.921100"],["-90.020280","29.921275"],["-90.020250","29.921450"],["-90.020210","29.921595"],["-90.020170","29.921740"],["-90.020150","29.921870"],["-90.020115","29.921970"],["-90.020080","29.922070"],["-90.020050","29.922165"],["-90.020020","29.922260"],["-90.019970","29.922400"],["-90.019910","29.922550"],["-90.019855","29.922645"],["-90.019800","29.922740"],["-90.019755","29.922830"],["-90.019710","29.922920"],["-90.019645","29.923015"],["-90.019580","29.923110"],["-90.019472","29.923060"],["-90.019580","29.923110"],["-90.019570","29.923130"],["-90.019500","29.923225"],["-90.019430","29.923320"],["-90.019410","29.923350"],["-90.019325","29.923475"],["-90.019240","29.923600"],["-90.019090","29.923520"],["-90.018940","29.923440"],["-90.018870","29.923390"],["-90.018820","29.923360"],["-90.018700","29.923270"],["-90.018610","29.923190"],["-90.018525","29.923110"],["-90.018440","29.923030"],["-90.018355","29.922950"],["-90.018270","29.922870"],["-90.018170","29.922780"],["-90.018060","29.922700"],["-90.017910","29.922610"],["-90.017830","29.922570"],["-90.017760","29.922530"],["-90.017630","29.922480"],["-90.017510","29.922440"],["-90.017390","29.922400"],["-90.017250","29.922360"],["-90.017150","29.922340"],["-90.017030","29.922300"],["-90.016950","29.922280"],["-90.016890","29.922260"],["-90.016830","29.922230"],["-90.016750","29.922200"],["-90.016730","29.922190"],["-90.016700","29.922180"],["-90.016630","29.922150"],["-90.016580","29.922110"],["-90.016470","29.922040"],["-90.016340","29.921958"],["-90.016210","29.921875"],["-90.016080","29.921793"],["-90.015950","29.921710"],["-90.015890","29.921670"],["-90.015760","29.921590"],["-90.015630","29.921510"],["-90.015530","29.921448"],["-90.015430","29.921385"],["-90.015330","29.921323"],["-90.015230","29.921260"],["-90.015105","29.921185"],["-90.014980","29.921110"],["-90.014845","29.921020"],["-90.014710","29.920930"],["-90.014550","29.920830"],["-90.014445","29.920960"],["-90.014340","29.921090"],["-90.014320","29.921110"],["-90.014290","29.921160"],["-90.014220","29.921270"],["-90.014180","29.921380"],["-90.014135","29.921495"],["-90.014090","29.921610"],["-90.014065","29.921710"],["-90.014040","29.921810"],["-90.014020","29.921890"],["-90.013951","29.921876"],["-90.014020","29.921890"],["-90.014000","29.921980"],["-90.013970","29.922120"],["-90.013960","29.922280"],["-90.013950","29.922340"],["-90.013940","29.922510"],["-90.013935","29.922675"],["-90.013930","29.922840"],["-90.013920","29.922988"],["-90.013910","29.923135"],["-90.013900","29.923283"],["-90.013890","29.923430"],["-90.013883","29.923568"],["-90.013875","29.923705"],["-90.013868","29.923843"],["-90.013860","29.923980"],["-90.013850","29.924080"],["-90.013710","29.924210"],["-90.013670","29.924240"],["-90.013620","29.924270"],["-90.013570","29.924290"],["-90.013500","29.924310"],["-90.013470","29.924320"],["-90.013400","29.924350"],["-90.013235","29.924340"],["-90.013070","29.924330"],["-90.012870","29.924320"],["-90.012876","29.924242"],["-90.012669","29.924254"],["-90.012462","29.924265"],["-90.012255","29.924277"],["-90.012048","29.924288"],["-90.011840","29.924278"],["-90.011633","29.924266"],["-90.011426","29.924255"],["-90.011219","29.924243"],["-90.011012","29.924231"],["-90.010805","29.924223"],["-90.010740","29.924220"],["-90.010534","29.924197"],["-90.010470","29.924190"],["-90.010267","29.924151"],["-90.010090","29.924058"],["-90.009913","29.923964"],["-90.009848","29.923930"],["-90.009641","29.923916"],["-90.009434","29.923901"],["-90.009290","29.923870"],["-90.009120","29.923840"],["-90.008939","29.923820"],["-90.008736","29.923783"],["-90.008533","29.923746"],["-90.008330","29.923709"],["-90.008198","29.923685"],["-90.007996","29.923727"],["-90.007872","29.923752"],["-90.007665","29.923745"],["-90.007457","29.923739"],["-90.007250","29.923732"],["-90.007042","29.923725"],["-90.006880","29.923720"],["-90.006673","29.923709"],["-90.006466","29.923699"],["-90.006259","29.923688"],["-90.006100","29.923680"],["-90.005893","29.923674"],["-90.005685","29.923668"],["-90.005478","29.923662"],["-90.005410","29.923660"],["-90.005206","29.923626"],["-90.005002","29.923593"],["-90.004798","29.923559"],["-90.004595","29.923525"],["-90.004507","29.923511"],["-90.004313","29.923575"],["-90.004203","29.923611"],["-90.003996","29.923602"],["-90.003930","29.923599"],["-90.003723","29.923586"],["-90.003620","29.923580"],["-90.003413","29.923572"],["-90.003205","29.923564"],["-90.002998","29.923556"],["-90.002840","29.923550"],["-90.002633","29.923545"],["-90.002459","29.923540"],["-90.002329","29.923530"],["-90.002122","29.923513"],["-90.001935","29.923436"],["-90.001747","29.923359"],["-90.001707","29.923342"],["-90.001503","29.923311"],["-90.001298","29.923279"],["-90.001218","29.923267"],["-90.001026","29.923198"],["-90.000889","29.923149"],["-90.000708","29.923061"],["-90.000527","29.922974"],["-90.000345","29.922886"],["-90.000164","29.922798"],["-90.000129","29.922781"],["-89.999925","29.922750"],["-89.999720","29.922718"],["-89.999626","29.922704"],["-89.999434","29.922636"],["-89.999242","29.922568"],["-89.999050","29.922499"],["-89.998858","29.922431"],["-89.998666","29.922363"],["-89.998474","29.922295"],["-89.998294","29.922205"],["-89.998115","29.922114"],["-89.998041","29.922077"],["-89.997839","29.922035"],["-89.997637","29.921993"],["-89.997555","29.921976"],["-89.997362","29.921909"],["-89.997280","29.921880"],["-89.997088","29.921811"],["-89.996897","29.921742"],["-89.996705","29.921672"],["-89.996514","29.921603"],["-89.996322","29.921534"],["-89.996131","29.921465"],["-89.995939","29.921396"],["-89.995748","29.921326"],["-89.995561","29.921247"],["-89.995375","29.921168"],["-89.995188","29.921089"],["-89.995061","29.921035"],["-89.994862","29.920984"],["-89.994663","29.920934"],["-89.994577","29.920912"],["-89.994385","29.920843"],["-89.994194","29.920774"],["-89.994100","29.920740"],["-89.993902","29.920685"],["-89.993810","29.920660"],["-89.993630","29.920629"],["-89.993423","29.920620"],["-89.993221","29.920578"],["-89.993019","29.920537"],["-89.992944","29.920521"],["-89.992773","29.920623"],["-89.992671","29.920684"],["-89.992677","29.920504"],["-89.992682","29.920324"],["-89.992687","29.920145"],["-89.992692","29.919965"],["-89.992697","29.919785"],["-89.992699","29.919729"],["-89.992708","29.919549"],["-89.992717","29.919370"],["-89.992720","29.919320"],["-89.992732","29.919140"],["-89.992744","29.918961"],["-89.992756","29.918781"],["-89.992760","29.918729"],["-89.992789","29.918551"],["-89.992818","29.918373"],["-89.992846","29.918195"],["-89.992858","29.918123"],["-89.992839","29.917944"],["-89.992821","29.917765"],["-89.992815","29.917709"],["-89.992820","29.917549"],["-89.992832","29.917369"],["-89.992844","29.917190"],["-89.992857","29.917010"],["-89.992860","29.916960"],["-89.992869","29.916780"],["-89.992878","29.916601"],["-89.992887","29.916421"],["-89.992896","29.916241"],["-89.992900","29.916160"],["-89.992900","29.916099"],["-89.992927","29.915921"],["-89.992954","29.915742"],["-89.992982","29.915564"],["-89.993009","29.915386"],["-89.993030","29.915247"],["-89.992994","29.915070"],["-89.992976","29.914980"],["-89.992984","29.914800"],["-89.992991","29.914621"],["-89.992998","29.914441"],["-89.993006","29.914261"],["-89.993009","29.914180"],["-89.993021","29.914000"],["-89.993033","29.913821"],["-89.993045","29.913641"],["-89.993049","29.913589"],["-89.993057","29.913409"],["-89.993059","29.913360"],["-89.993068","29.913180"],["-89.993110","29.913004"],["-89.993152","29.912828"],["-89.993182","29.912705"],["-89.993153","29.912527"],["-89.993123","29.912349"],["-89.993112","29.912280"],["-89.993124","29.912100"],["-89.993137","29.911921"],["-89.993150","29.911741"],["-89.993159","29.911562"],["-89.993168","29.911382"],["-89.993170","29.911340"],["-89.993182","29.911160"],["-89.993190","29.911050"],["-89.993201","29.910870"],["-89.993213","29.910691"],["-89.993220","29.910580"],["-89.993310","29.910418"],["-89.993397","29.910262"],["-89.993381","29.910083"],["-89.993365","29.909903"],["-89.993359","29.909841"],["-89.993369","29.909750"],["-89.993379","29.909590"],["-89.993385","29.909410"],["-89.993390","29.909249"],["-89.993395","29.909069"],["-89.993400","29.908899"],["-89.993407","29.908719"],["-89.993409","29.908670"],["-89.993415","29.908490"],["-89.993419","29.908350"],["-89.993426","29.908170"],["-89.993429","29.908099"],["-89.993472","29.907923"],["-89.993516","29.907747"],["-89.993538","29.907656"],["-89.993430","29.907650"],["-89.993440","29.907550"],["-89.993450","29.907450"],["-89.993450","29.907420"],["-89.993460","29.907295"],["-89.993470","29.907170"],["-89.993470","29.907070"],["-89.993470","29.906970"],["-89.993460","29.906890"],["-89.993450","29.906720"],["-89.993544","29.906710"],["-89.993450","29.906720"],["-89.993450","29.906640"],["-89.993425","29.906530"],["-89.993400","29.906420"],["-89.993350","29.906270"],["-89.993310","29.906180"],["-89.993270","29.906090"],["-89.993180","29.905920"],["-89.993110","29.905825"],["-89.993040","29.905730"],["-89.992930","29.905600"],["-89.992800","29.905470"],["-89.992695","29.905363"],["-89.992590","29.905255"],["-89.992485","29.905148"],["-89.992380","29.905040"],["-89.992260","29.904920"],["-89.992155","29.904805"],["-89.992050","29.904690"],["-89.992102","29.904651"],["-89.992050","29.904690"],["-89.991980","29.904610"],["-89.992075","29.904543"],["-89.992170","29.904475"],["-89.992265","29.904408"],["-89.992360","29.904340"],["-89.992481","29.904251"],["-89.992603","29.904163"],["-89.992724","29.904074"],["-89.992845","29.903985"],["-89.992966","29.903896"],["-89.993088","29.903808"],["-89.993209","29.903719"],["-89.993330","29.903630"],["-89.993451","29.903541"],["-89.993573","29.903453"],["-89.993694","29.903364"],["-89.993815","29.903275"],["-89.993936","29.903186"],["-89.994058","29.903098"],["-89.994179","29.903009"],["-89.994300","29.902920"],["-89.994350","29.902970"],["-89.994342","29.902975"],["-89.994350","29.902970"],["-89.994300","29.902920"],["-89.994400","29.902846"],["-89.994500","29.902773"],["-89.994600","29.902699"],["-89.994700","29.902625"],["-89.994800","29.902551"],["-89.994900","29.902478"],["-89.995000","29.902404"],["-89.995100","29.902330"],["-89.995198","29.902258"],["-89.995295","29.902185"],["-89.995393","29.902113"],["-89.995490","29.902040"],["-89.995588","29.901968"],["-89.995685","29.901895"],["-89.995783","29.901823"],["-89.995880","29.901750"],["-89.996040","29.901630"],["-89.996160","29.901540"],["-89.996262","29.901543"],["-89.996220","29.901490"],["-89.996360","29.901400"],["-89.996370","29.901390"],["-89.996465","29.901340"],["-89.996560","29.901290"],["-89.996665","29.901240"],["-89.996770","29.901190"],["-89.996960","29.901110"],["-89.997120","29.901060"],["-89.997330","29.901000"],["-89.997368","29.901069"],["-89.997330","29.901000"],["-89.997530","29.900950"],["-89.997710","29.900920"],["-89.997860","29.900900"],["-89.998040","29.900890"],["-89.998220","29.900890"],["-89.998430","29.900900"],["-89.998549","29.900905"],["-89.998667","29.900910"],["-89.998786","29.900915"],["-89.998905","29.900920"],["-89.999024","29.900925"],["-89.999142","29.900930"],["-89.999261","29.900935"],["-89.999380","29.900940"],["-89.999550","29.900940"],["-89.999690","29.900946"],["-89.999830","29.900953"],["-89.999970","29.900959"],["-90.000110","29.900965"],["-90.000250","29.900971"],["-90.000390","29.900978"],["-90.000530","29.900984"],["-90.000670","29.900990"],["-90.000664","29.901056"],["-90.000766","29.900992"],["-90.000835","29.900973"],["-90.000846","29.900817"],["-90.000686","29.900812"],["-90.000526","29.900808"],["-90.000366","29.900803"],["-90.000207","29.900798"],["-90.000047","29.900793"],["-89.999887","29.900788"],["-89.999727","29.900783"],["-89.999567","29.900778"],["-89.999369","29.900724"],["-89.999221","29.900683"],["-89.999220","29.900750"],["-89.999030","29.900743"],["-89.998840","29.900735"],["-89.998650","29.900728"],["-89.998460","29.900720"],["-89.998270","29.900715"],["-89.998080","29.900710"],["-89.997910","29.900710"],["-89.997780","29.900730"],["-89.997650","29.900750"],["-89.997480","29.900780"],["-89.997370","29.900800"],["-89.997260","29.900820"],["-89.997294","29.900763"],["-89.997112","29.900842"],["-89.996930","29.900920"],["-89.996830","29.900950"],["-89.996710","29.901010"],["-89.996530","29.901090"],["-89.996390","29.901170"],["-89.996250","29.901250"],["-89.996080","29.901360"],["-89.995960","29.901440"],["-89.995920","29.901470"],["-89.995750","29.901590"],["-89.995663","29.901655"],["-89.995575","29.901720"],["-89.995488","29.901785"],["-89.995400","29.901850"],["-89.995351","29.901799"],["-89.995400","29.901850"],["-89.995250","29.901961"],["-89.995100","29.902073"],["-89.994950","29.902184"],["-89.994800","29.902295"],["-89.994650","29.902406"],["-89.994500","29.902518"],["-89.994350","29.902629"],["-89.994200","29.902740"],["-89.994100","29.902815"],["-89.994000","29.902890"],["-89.993900","29.902965"],["-89.993741","29.902986"],["-89.993800","29.903040"],["-89.993686","29.903124"],["-89.993573","29.903208"],["-89.993459","29.903291"],["-89.993345","29.903375"],["-89.993231","29.903459"],["-89.993118","29.903543"],["-89.993004","29.903626"],["-89.992890","29.903710"],["-89.992770","29.903805"],["-89.992650","29.903900"],["-89.992548","29.903980"],["-89.992445","29.904060"],["-89.992343","29.904140"],["-89.992240","29.904220"],["-89.992120","29.904305"],["-89.992000","29.904390"],["-89.991935","29.904327"],["-89.992010","29.904390"],["-89.991860","29.904510"],["-89.991690","29.904630"],["-89.991800","29.904730"],["-89.991813","29.904860"]]}]}},{"type":"Feature","properties":{"route_id":"12","agency_id":"1","route_short_name":"12","route_long_name":"St. Charles Streetcar","route_type":"0","route_color":"#006737","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.128221","29.948750"],["-90.129670","29.947374"],["-90.131184","29.945951"],["-90.132671","29.944548"],["-90.134078","29.943235"],["-90.130222","29.939907"],["-90.128189","29.938250"],["-90.126960","29.937320"],["-90.125495","29.936279"],["-90.123938","29.935180"],["-90.122503","29.934175"],["-90.121700","29.933583"],["-90.120801","29.932956"],["-90.119382","29.931951"],["-90.118213","29.931132"],["-90.116741","29.930256"],["-90.111572","29.927836"],["-90.110750","29.927453"],["-90.108925","29.926565"],["-90.106796","29.926077"],["-90.104522","29.926254"],["-90.102274","29.926442"],["-90.099764","29.926621"],["-90.097516","29.926792"],["-90.095675","29.926947"],["-90.093787","29.927342"],["-90.091588","29.928207"],["-90.087402","29.930105"],["-90.086039","29.930939"],["-90.084417","29.931839"],["-90.082796","29.932757"],["-90.080689","29.934020"],["-90.078831","29.935282"],["-90.077665","29.936198"],["-90.076555","29.937595"],["-90.075541","29.938941"],["-90.074456","29.940408"],["-90.072751","29.942725"],["-90.072901","29.946037"],["-90.072509","29.947436"],["-90.071843","29.949621"],["-90.071139","29.951849"],["-90.070061","29.953530"],["-90.079719","29.934683"],["-90.131765","29.941116"],["-90.113101","29.928550"],["-90.089039","29.929178"],["-90.073204","29.943796"],["-90.114973","29.929450"]]},{"type":"LineString","coordinates":[["-90.128221","29.948750"],["-90.128240","29.948740"],["-90.128280","29.948770"],["-90.128363","29.948693"],["-90.128445","29.948615"],["-90.128528","29.948538"],["-90.128610","29.948460"],["-90.128715","29.948360"],["-90.128820","29.948260"],["-90.128925","29.948160"],["-90.129030","29.948060"],["-90.129110","29.947985"],["-90.129190","29.947910"],["-90.129323","29.947788"],["-90.129455","29.947665"],["-90.129588","29.947543"],["-90.129720","29.947420"],["-90.129670","29.947374"],["-90.129720","29.947420"],["-90.129790","29.947360"],["-90.129886","29.947273"],["-90.129983","29.947185"],["-90.130079","29.947098"],["-90.130175","29.947010"],["-90.130271","29.946923"],["-90.130368","29.946835"],["-90.130464","29.946748"],["-90.130560","29.946660"],["-90.130646","29.946578"],["-90.130733","29.946495"],["-90.130819","29.946413"],["-90.130905","29.946330"],["-90.130991","29.946248"],["-90.131078","29.946165"],["-90.131164","29.946083"],["-90.131250","29.946000"],["-90.131184","29.945951"],["-90.131250","29.946000"],["-90.131310","29.945940"],["-90.131405","29.945854"],["-90.131500","29.945768"],["-90.131595","29.945681"],["-90.131690","29.945595"],["-90.131785","29.945509"],["-90.131880","29.945423"],["-90.131975","29.945336"],["-90.132070","29.945250"],["-90.132154","29.945169"],["-90.132238","29.945088"],["-90.132321","29.945006"],["-90.132405","29.944925"],["-90.132489","29.944844"],["-90.132573","29.944763"],["-90.132656","29.944681"],["-90.132740","29.944600"],["-90.132671","29.944548"],["-90.132740","29.944600"],["-90.132810","29.944530"],["-90.132935","29.944410"],["-90.133060","29.944290"],["-90.133150","29.944205"],["-90.133240","29.944120"],["-90.133330","29.944035"],["-90.133420","29.943950"],["-90.133500","29.943870"],["-90.133600","29.943775"],["-90.133700","29.943680"],["-90.133810","29.943583"],["-90.133920","29.943485"],["-90.134030","29.943388"],["-90.134140","29.943290"],["-90.134078","29.943235"],["-90.134140","29.943290"],["-90.134210","29.943220"],["-90.134340","29.943100"],["-90.134235","29.943025"],["-90.134130","29.942950"],["-90.134041","29.942880"],["-90.133952","29.942810"],["-90.133864","29.942740"],["-90.133775","29.942670"],["-90.133686","29.942600"],["-90.133597","29.942530"],["-90.133509","29.942460"],["-90.133420","29.942390"],["-90.133370","29.942340"],["-90.133272","29.942263"],["-90.133175","29.942185"],["-90.133077","29.942108"],["-90.132980","29.942030"],["-90.132887","29.941955"],["-90.132795","29.941880"],["-90.132702","29.941805"],["-90.132588","29.941714"],["-90.132474","29.941623"],["-90.132360","29.941531"],["-90.132246","29.941440"],["-90.132132","29.941349"],["-90.132018","29.941258"],["-90.131904","29.941167"],["-90.131790","29.941075"],["-90.131765","29.941116"],["-90.131684","29.940984"],["-90.131525","29.940854"],["-90.131366","29.940725"],["-90.131207","29.940596"],["-90.131047","29.940467"],["-90.130888","29.940338"],["-90.130729","29.940208"],["-90.130570","29.940079"],["-90.130411","29.939950"],["-90.130222","29.939907"],["-90.130217","29.939780"],["-90.130075","29.939665"],["-90.129933","29.939550"],["-90.129791","29.939435"],["-90.129649","29.939320"],["-90.129507","29.939205"],["-90.129364","29.939090"],["-90.129222","29.938975"],["-90.129080","29.938860"],["-90.128980","29.938780"],["-90.128880","29.938700"],["-90.128780","29.938620"],["-90.128680","29.938540"],["-90.128520","29.938420"],["-90.128360","29.938300"],["-90.128310","29.938260"],["-90.128240","29.938200"],["-90.128189","29.938250"],["-90.128240","29.938200"],["-90.128130","29.938123"],["-90.128020","29.938045"],["-90.127910","29.937968"],["-90.127800","29.937890"],["-90.127710","29.937825"],["-90.127620","29.937760"],["-90.127535","29.937693"],["-90.127450","29.937625"],["-90.127365","29.937558"],["-90.127280","29.937490"],["-90.127210","29.937440"],["-90.127105","29.937360"],["-90.127000","29.937280"],["-90.126960","29.937320"],["-90.127000","29.937280"],["-90.126950","29.937250"],["-90.126860","29.937190"],["-90.126772","29.937126"],["-90.126685","29.937063"],["-90.126597","29.936999"],["-90.126510","29.936935"],["-90.126422","29.936871"],["-90.126335","29.936808"],["-90.126247","29.936744"],["-90.126160","29.936680"],["-90.126002","29.936570"],["-90.125845","29.936460"],["-90.125687","29.936350"],["-90.125530","29.936240"],["-90.125495","29.936279"],["-90.125530","29.936240"],["-90.125460","29.936190"],["-90.125365","29.936125"],["-90.125270","29.936060"],["-90.125175","29.935995"],["-90.125080","29.935930"],["-90.124985","29.935865"],["-90.124890","29.935800"],["-90.124795","29.935735"],["-90.124700","29.935670"],["-90.124530","29.935548"],["-90.124360","29.935425"],["-90.124190","29.935303"],["-90.124020","29.935180"],["-90.123970","29.935140"],["-90.123938","29.935180"],["-90.123970","29.935140"],["-90.123890","29.935080"],["-90.123745","29.934980"],["-90.123600","29.934880"],["-90.123500","29.934808"],["-90.123400","29.934735"],["-90.123300","29.934663"],["-90.123153","29.934558"],["-90.123005","29.934453"],["-90.122858","29.934347"],["-90.122711","29.934242"],["-90.122503","29.934175"],["-90.122448","29.934067"],["-90.122337","29.933989"],["-90.122227","29.933911"],["-90.122116","29.933833"],["-90.122005","29.933755"],["-90.121840","29.933640"],["-90.121730","29.933560"],["-90.121700","29.933583"],["-90.121730","29.933560"],["-90.121650","29.933500"],["-90.121535","29.933415"],["-90.121420","29.933330"],["-90.121275","29.933228"],["-90.121130","29.933125"],["-90.120985","29.933023"],["-90.120840","29.932920"],["-90.120801","29.932956"],["-90.120840","29.932920"],["-90.120780","29.932880"],["-90.120687","29.932815"],["-90.120595","29.932750"],["-90.120502","29.932685"],["-90.120410","29.932620"],["-90.120245","29.932505"],["-90.120080","29.932390"],["-90.119990","29.932328"],["-90.119900","29.932265"],["-90.119810","29.932203"],["-90.119720","29.932140"],["-90.119625","29.932070"],["-90.119530","29.932000"],["-90.119420","29.931910"],["-90.119382","29.931951"],["-90.119420","29.931910"],["-90.119340","29.931850"],["-90.119237","29.931780"],["-90.119135","29.931710"],["-90.119032","29.931640"],["-90.118930","29.931570"],["-90.118797","29.931480"],["-90.118665","29.931390"],["-90.118532","29.931300"],["-90.118400","29.931210"],["-90.118240","29.931100"],["-90.118213","29.931132"],["-90.118240","29.931100"],["-90.118110","29.931010"],["-90.117952","29.930913"],["-90.117795","29.930815"],["-90.117637","29.930718"],["-90.117480","29.930620"],["-90.117355","29.930550"],["-90.117230","29.930480"],["-90.117075","29.930400"],["-90.116920","29.930320"],["-90.116760","29.930230"],["-90.116741","29.930256"],["-90.116760","29.930230"],["-90.116670","29.930190"],["-90.116600","29.930150"],["-90.116492","29.930098"],["-90.116385","29.930045"],["-90.116277","29.929993"],["-90.116170","29.929940"],["-90.116062","29.929888"],["-90.115955","29.929835"],["-90.115847","29.929783"],["-90.115740","29.929730"],["-90.115557","29.929645"],["-90.115375","29.929560"],["-90.115192","29.929475"],["-90.115010","29.929390"],["-90.114973","29.929450"],["-90.115010","29.929390"],["-90.114900","29.929340"],["-90.114785","29.929285"],["-90.114670","29.929230"],["-90.114555","29.929175"],["-90.114440","29.929120"],["-90.114325","29.929065"],["-90.114210","29.929010"],["-90.114095","29.928955"],["-90.113980","29.928900"],["-90.113874","29.928851"],["-90.113767","29.928803"],["-90.113661","29.928754"],["-90.113555","29.928705"],["-90.113449","29.928656"],["-90.113342","29.928608"],["-90.113236","29.928559"],["-90.113130","29.928510"],["-90.113101","29.928550"],["-90.113130","29.928510"],["-90.113060","29.928470"],["-90.112960","29.928420"],["-90.112810","29.928345"],["-90.112660","29.928270"],["-90.112510","29.928195"],["-90.112360","29.928120"],["-90.112170","29.928035"],["-90.111980","29.927950"],["-90.111790","29.927865"],["-90.111600","29.927780"],["-90.111572","29.927836"],["-90.111600","29.927780"],["-90.111530","29.927750"],["-90.111345","29.927660"],["-90.111160","29.927570"],["-90.110975","29.927480"],["-90.110790","29.927390"],["-90.110750","29.927453"],["-90.110790","29.927390"],["-90.110670","29.927330"],["-90.110555","29.927278"],["-90.110440","29.927225"],["-90.110325","29.927173"],["-90.110210","29.927120"],["-90.110095","29.927068"],["-90.109980","29.927015"],["-90.109865","29.926963"],["-90.109750","29.926910"],["-90.109625","29.926850"],["-90.109500","29.926790"],["-90.109375","29.926730"],["-90.109250","29.926670"],["-90.109100","29.926600"],["-90.108950","29.926530"],["-90.108925","29.926565"],["-90.108950","29.926530"],["-90.108810","29.926460"],["-90.108692","29.926413"],["-90.108575","29.926365"],["-90.108457","29.926318"],["-90.108340","29.926270"],["-90.108290","29.926250"],["-90.108160","29.926210"],["-90.108047","29.926175"],["-90.107935","29.926140"],["-90.107822","29.926105"],["-90.107710","29.926070"],["-90.107490","29.926055"],["-90.107270","29.926040"],["-90.107155","29.926035"],["-90.107040","29.926030"],["-90.106920","29.926035"],["-90.106800","29.926040"],["-90.106796","29.926077"],["-90.106800","29.926040"],["-90.106700","29.926040"],["-90.106558","29.926053"],["-90.106415","29.926065"],["-90.106273","29.926078"],["-90.106130","29.926090"],["-90.105988","29.926103"],["-90.105845","29.926115"],["-90.105703","29.926128"],["-90.105560","29.926140"],["-90.105430","29.926149"],["-90.105300","29.926158"],["-90.105170","29.926166"],["-90.105040","29.926175"],["-90.104910","29.926184"],["-90.104780","29.926193"],["-90.104650","29.926201"],["-90.104520","29.926210"],["-90.104522","29.926254"],["-90.104520","29.926210"],["-90.104410","29.926220"],["-90.104270","29.926230"],["-90.104130","29.926240"],["-90.103930","29.926260"],["-90.103775","29.926275"],["-90.103620","29.926290"],["-90.103465","29.926305"],["-90.103310","29.926320"],["-90.103180","29.926329"],["-90.103050","29.926338"],["-90.102920","29.926346"],["-90.102790","29.926355"],["-90.102660","29.926364"],["-90.102530","29.926373"],["-90.102400","29.926381"],["-90.102270","29.926390"],["-90.102274","29.926442"],["-90.102270","29.926390"],["-90.102170","29.926400"],["-90.102030","29.926400"],["-90.101930","29.926410"],["-90.101735","29.926425"],["-90.101540","29.926440"],["-90.101345","29.926455"],["-90.101150","29.926470"],["-90.100970","29.926480"],["-90.100790","29.926490"],["-90.100661","29.926501"],["-90.100533","29.926513"],["-90.100404","29.926524"],["-90.100275","29.926535"],["-90.100146","29.926546"],["-90.100018","29.926558"],["-90.099889","29.926569"],["-90.099760","29.926580"],["-90.099764","29.926621"],["-90.099760","29.926580"],["-90.099690","29.926580"],["-90.099540","29.926595"],["-90.099390","29.926610"],["-90.099273","29.926618"],["-90.099155","29.926625"],["-90.099038","29.926633"],["-90.098920","29.926640"],["-90.098745","29.926655"],["-90.098570","29.926670"],["-90.098438","29.926680"],["-90.098305","29.926690"],["-90.098173","29.926700"],["-90.098040","29.926710"],["-90.097908","29.926720"],["-90.097775","29.926730"],["-90.097643","29.926740"],["-90.097510","29.926750"],["-90.097516","29.926792"],["-90.097510","29.926750"],["-90.097430","29.926760"],["-90.097303","29.926770"],["-90.097175","29.926780"],["-90.097048","29.926790"],["-90.096920","29.926800"],["-90.096793","29.926810"],["-90.096665","29.926820"],["-90.096538","29.926830"],["-90.096410","29.926840"],["-90.096225","29.926860"],["-90.096040","29.926880"],["-90.095855","29.926900"],["-90.095670","29.926920"],["-90.095675","29.926947"],["-90.095670","29.926920"],["-90.095560","29.926930"],["-90.095480","29.926940"],["-90.095300","29.926968"],["-90.095120","29.926995"],["-90.094940","29.927023"],["-90.094760","29.927050"],["-90.094580","29.927090"],["-90.094380","29.927148"],["-90.094256","29.927183"],["-90.094132","29.927218"],["-90.094008","29.927253"],["-90.093884","29.927288"],["-90.093787","29.927342"],["-90.093651","29.927360"],["-90.093526","29.927406"],["-90.093401","29.927452"],["-90.093276","29.927498"],["-90.093151","29.927543"],["-90.093026","29.927589"],["-90.092901","29.927635"],["-90.092776","29.927681"],["-90.092651","29.927727"],["-90.092526","29.927772"],["-90.092401","29.927818"],["-90.092276","29.927864"],["-90.092151","29.927910"],["-90.092026","29.927955"],["-90.091901","29.928001"],["-90.091776","29.928047"],["-90.091651","29.928093"],["-90.091588","29.928207"],["-90.091466","29.928158"],["-90.091342","29.928204"],["-90.091217","29.928250"],["-90.091093","29.928296"],["-90.090968","29.928341"],["-90.090844","29.928387"],["-90.090719","29.928433"],["-90.090595","29.928479"],["-90.090470","29.928525"],["-90.090360","29.928568"],["-90.090250","29.928610"],["-90.090100","29.928660"],["-90.089908","29.928745"],["-90.089715","29.928830"],["-90.089523","29.928915"],["-90.089330","29.929000"],["-90.089175","29.929075"],["-90.089020","29.929150"],["-90.089039","29.929178"],["-90.089020","29.929150"],["-90.088920","29.929200"],["-90.088818","29.929259"],["-90.088715","29.929318"],["-90.088613","29.929376"],["-90.088510","29.929435"],["-90.088408","29.929494"],["-90.088305","29.929553"],["-90.088203","29.929611"],["-90.088100","29.929670"],["-90.088010","29.929730"],["-90.087853","29.929818"],["-90.087695","29.929905"],["-90.087538","29.929993"],["-90.087380","29.930080"],["-90.087402","29.930105"],["-90.087380","29.930080"],["-90.087310","29.930120"],["-90.087143","29.930215"],["-90.086975","29.930310"],["-90.086808","29.930405"],["-90.086640","29.930500"],["-90.086465","29.930595"],["-90.086290","29.930690"],["-90.086155","29.930763"],["-90.086021","29.930836"],["-90.086039","29.930939"],["-90.085943","29.930879"],["-90.085850","29.930932"],["-90.085757","29.930985"],["-90.085664","29.931038"],["-90.085571","29.931091"],["-90.085478","29.931144"],["-90.085384","29.931198"],["-90.085291","29.931251"],["-90.085198","29.931304"],["-90.085105","29.931357"],["-90.085012","29.931410"],["-90.084919","29.931463"],["-90.084826","29.931516"],["-90.084733","29.931569"],["-90.084640","29.931622"],["-90.084546","29.931675"],["-90.084453","29.931728"],["-90.084417","29.931839"],["-90.084282","29.931888"],["-90.084146","29.931937"],["-90.084011","29.931986"],["-90.083875","29.932035"],["-90.083748","29.932107"],["-90.083622","29.932180"],["-90.083495","29.932252"],["-90.083368","29.932324"],["-90.083241","29.932397"],["-90.083115","29.932469"],["-90.082988","29.932541"],["-90.082861","29.932613"],["-90.082796","29.932757"],["-90.082681","29.932764"],["-90.082566","29.932772"],["-90.082453","29.932843"],["-90.082341","29.932914"],["-90.082228","29.932985"],["-90.082116","29.933056"],["-90.082003","29.933127"],["-90.081890","29.933198"],["-90.081778","29.933269"],["-90.081665","29.933340"],["-90.081552","29.933411"],["-90.081440","29.933482"],["-90.081327","29.933553"],["-90.081214","29.933624"],["-90.081102","29.933695"],["-90.080989","29.933766"],["-90.080876","29.933837"],["-90.080764","29.933908"],["-90.080689","29.934020"],["-90.080689","29.934020"],["-90.080557","29.934079"],["-90.080426","29.934138"],["-90.080299","29.934219"],["-90.080173","29.934299"],["-90.080046","29.934380"],["-90.079920","29.934460"],["-90.079795","29.934540"],["-90.079670","29.934620"],["-90.079719","29.934683"],["-90.079670","29.934620"],["-90.079590","29.934670"],["-90.079501","29.934730"],["-90.079413","29.934790"],["-90.079324","29.934850"],["-90.079235","29.934910"],["-90.079146","29.934970"],["-90.079058","29.935030"],["-90.078969","29.935090"],["-90.078880","29.935150"],["-90.078770","29.935220"],["-90.078831","29.935282"],["-90.078770","29.935220"],["-90.078710","29.935260"],["-90.078560","29.935378"],["-90.078410","29.935495"],["-90.078260","29.935613"],["-90.078110","29.935730"],["-90.078015","29.935810"],["-90.077920","29.935890"],["-90.077825","29.935970"],["-90.077730","29.936050"],["-90.077610","29.936150"],["-90.077665","29.936198"],["-90.077610","29.936150"],["-90.077540","29.936210"],["-90.077490","29.936250"],["-90.077450","29.936300"],["-90.077410","29.936340"],["-90.077400","29.936360"],["-90.077295","29.936503"],["-90.077190","29.936645"],["-90.077085","29.936788"],["-90.076980","29.936930"],["-90.076880","29.937065"],["-90.076780","29.937200"],["-90.076680","29.937335"],["-90.076580","29.937470"],["-90.076500","29.937570"],["-90.076555","29.937595"],["-90.076500","29.937570"],["-90.076460","29.937620"],["-90.076396","29.937708"],["-90.076333","29.937795"],["-90.076269","29.937883"],["-90.076205","29.937970"],["-90.076141","29.938058"],["-90.076078","29.938145"],["-90.076014","29.938233"],["-90.075950","29.938320"],["-90.075858","29.938448"],["-90.075765","29.938575"],["-90.075673","29.938703"],["-90.075580","29.938830"],["-90.075510","29.938920"],["-90.075541","29.938941"],["-90.075510","29.938920"],["-90.075430","29.939020"],["-90.075390","29.939080"],["-90.075295","29.939205"],["-90.075200","29.939330"],["-90.075105","29.939455"],["-90.075010","29.939580"],["-90.074940","29.939660"],["-90.074870","29.939740"],["-90.074758","29.939903"],["-90.074645","29.940065"],["-90.074533","29.940228"],["-90.074420","29.940390"],["-90.074456","29.940408"],["-90.074420","29.940390"],["-90.074370","29.940440"],["-90.074300","29.940545"],["-90.074230","29.940650"],["-90.074170","29.940731"],["-90.074110","29.940813"],["-90.074050","29.940894"],["-90.073990","29.940975"],["-90.073930","29.941056"],["-90.073870","29.941138"],["-90.073810","29.941219"],["-90.073750","29.941300"],["-90.073673","29.941403"],["-90.073595","29.941505"],["-90.073518","29.941608"],["-90.073440","29.941710"],["-90.073370","29.941800"],["-90.073290","29.941900"],["-90.073210","29.942000"],["-90.073130","29.942100"],["-90.073050","29.942200"],["-90.072990","29.942280"],["-90.072940","29.942340"],["-90.072860","29.942450"],["-90.072795","29.942560"],["-90.072751","29.942725"],["-90.072724","29.942811"],["-90.072641","29.942903"],["-90.072484","29.942934"],["-90.072359","29.942951"],["-90.072235","29.942967"],["-90.072095","29.943079"],["-90.072047","29.943175"],["-90.071999","29.943271"],["-90.072028","29.943396"],["-90.072058","29.943520"],["-90.072200","29.943657"],["-90.072311","29.943715"],["-90.072495","29.943730"],["-90.072641","29.943707"],["-90.072742","29.943661"],["-90.072849","29.943640"],["-90.072936","29.943655"],["-90.073046","29.943719"],["-90.073165","29.943786"],["-90.073204","29.943796"],["-90.073265","29.943860"],["-90.073364","29.943923"],["-90.073462","29.943985"],["-90.073509","29.944068"],["-90.073540","29.944143"],["-90.073506","29.944242"],["-90.073473","29.944342"],["-90.073444","29.944445"],["-90.073386","29.944615"],["-90.073341","29.944766"],["-90.073290","29.944940"],["-90.073240","29.945113"],["-90.073189","29.945286"],["-90.073138","29.945459"],["-90.073095","29.945598"],["-90.073053","29.945736"],["-90.073010","29.945874"],["-90.072968","29.946013"],["-90.072901","29.946037"],["-90.072942","29.946129"],["-90.072911","29.946249"],["-90.072880","29.946370"],["-90.072849","29.946490"],["-90.072818","29.946610"],["-90.072776","29.946750"],["-90.072735","29.946890"],["-90.072694","29.947030"],["-90.072653","29.947170"],["-90.072611","29.947310"],["-90.072570","29.947450"],["-90.072509","29.947436"],["-90.072570","29.947450"],["-90.072540","29.947550"],["-90.072510","29.947630"],["-90.072460","29.947790"],["-90.072413","29.947948"],["-90.072365","29.948105"],["-90.072318","29.948263"],["-90.072270","29.948420"],["-90.072240","29.948520"],["-90.072210","29.948600"],["-90.072180","29.948710"],["-90.072140","29.948845"],["-90.072100","29.948980"],["-90.072050","29.949140"],["-90.072025","29.949235"],["-90.072000","29.949330"],["-90.071955","29.949485"],["-90.071910","29.949640"],["-90.071843","29.949621"],["-90.071910","29.949640"],["-90.071870","29.949780"],["-90.071820","29.949930"],["-90.071780","29.950090"],["-90.071740","29.950225"],["-90.071700","29.950360"],["-90.071660","29.950495"],["-90.071613","29.950651"],["-90.071567","29.950806"],["-90.071520","29.950962"],["-90.071474","29.951117"],["-90.071427","29.951273"],["-90.071381","29.951428"],["-90.071334","29.951584"],["-90.071307","29.951707"],["-90.071281","29.951831"],["-90.071139","29.951849"],["-90.071230","29.951937"],["-90.071183","29.952050"],["-90.071135","29.952163"],["-90.071088","29.952276"],["-90.071041","29.952388"],["-90.070986","29.952555"],["-90.070931","29.952722"],["-90.070846","29.952807"],["-90.070762","29.952893"],["-90.070677","29.952978"],["-90.070593","29.953063"],["-90.070460","29.953180"],["-90.070327","29.953297"],["-90.070194","29.953413"],["-90.070061","29.953530"]]},{"type":"MultiPoint","coordinates":[["-90.120719","29.955611"],["-90.122111","29.954448"],["-90.123623","29.953030"],["-90.125124","29.951624"],["-90.127397","29.949505"],["-90.128221","29.948750"],["-90.129670","29.947374"],["-90.131184","29.945951"],["-90.132671","29.944548"],["-90.134078","29.943235"],["-90.130222","29.939907"],["-90.128189","29.938250"],["-90.126960","29.937320"],["-90.125495","29.936279"],["-90.123938","29.935180"],["-90.122503","29.934175"],["-90.121700","29.933583"],["-90.120801","29.932956"],["-90.119382","29.931951"],["-90.118213","29.931132"],["-90.116741","29.930256"],["-90.111572","29.927836"],["-90.110750","29.927453"],["-90.108925","29.926565"],["-90.106796","29.926077"],["-90.104522","29.926254"],["-90.102274","29.926442"],["-90.099764","29.926621"],["-90.097516","29.926792"],["-90.095675","29.926947"],["-90.093787","29.927342"],["-90.091588","29.928207"],["-90.087402","29.930105"],["-90.086039","29.930939"],["-90.084417","29.931839"],["-90.082796","29.932757"],["-90.080689","29.934020"],["-90.078831","29.935282"],["-90.077665","29.936198"],["-90.076555","29.937595"],["-90.075541","29.938941"],["-90.074456","29.940408"],["-90.072751","29.942725"],["-90.072901","29.946037"],["-90.072509","29.947436"],["-90.071843","29.949621"],["-90.071139","29.951849"],["-90.070061","29.953530"],["-90.079719","29.934683"],["-90.131765","29.941116"],["-90.113101","29.928550"],["-90.089039","29.929178"],["-90.073204","29.943796"],["-90.114973","29.929450"]]},{"type":"LineString","coordinates":[["-90.120719","29.955611"],["-90.120670","29.955580"],["-90.120825","29.955714"],["-90.120938","29.955611"],["-90.121052","29.955508"],["-90.121165","29.955405"],["-90.121279","29.955302"],["-90.121392","29.955199"],["-90.121506","29.955096"],["-90.121619","29.954993"],["-90.121733","29.954890"],["-90.121820","29.954810"],["-90.121908","29.954730"],["-90.121995","29.954650"],["-90.122083","29.954570"],["-90.122170","29.954490"],["-90.122111","29.954448"],["-90.122170","29.954490"],["-90.122230","29.954430"],["-90.122325","29.954341"],["-90.122420","29.954253"],["-90.122515","29.954164"],["-90.122610","29.954075"],["-90.122705","29.953986"],["-90.122800","29.953898"],["-90.122895","29.953809"],["-90.122990","29.953720"],["-90.123076","29.953640"],["-90.123163","29.953560"],["-90.123249","29.953480"],["-90.123335","29.953400"],["-90.123421","29.953320"],["-90.123508","29.953240"],["-90.123594","29.953160"],["-90.123680","29.953080"],["-90.123623","29.953030"],["-90.123680","29.953080"],["-90.123740","29.953020"],["-90.123835","29.952931"],["-90.123930","29.952843"],["-90.124025","29.952754"],["-90.124120","29.952665"],["-90.124215","29.952576"],["-90.124310","29.952488"],["-90.124405","29.952399"],["-90.124500","29.952310"],["-90.124584","29.952229"],["-90.124668","29.952148"],["-90.124751","29.952066"],["-90.124835","29.951985"],["-90.124919","29.951904"],["-90.125003","29.951823"],["-90.125086","29.951741"],["-90.125170","29.951660"],["-90.125124","29.951624"],["-90.125170","29.951660"],["-90.125250","29.951590"],["-90.125330","29.951515"],["-90.125410","29.951440"],["-90.125490","29.951365"],["-90.125570","29.951290"],["-90.125675","29.951193"],["-90.125780","29.951095"],["-90.125885","29.950998"],["-90.125990","29.950900"],["-90.126086","29.950814"],["-90.126183","29.950728"],["-90.126279","29.950641"],["-90.126375","29.950555"],["-90.126471","29.950469"],["-90.126568","29.950383"],["-90.126670","29.950287"],["-90.126771","29.950192"],["-90.126873","29.950096"],["-90.126974","29.950000"],["-90.127076","29.949905"],["-90.127178","29.949809"],["-90.127279","29.949713"],["-90.127381","29.949617"],["-90.127397","29.949505"],["-90.127488","29.949511"],["-90.127581","29.949425"],["-90.127673","29.949339"],["-90.127766","29.949253"],["-90.127859","29.949167"],["-90.127951","29.949081"],["-90.128044","29.948995"],["-90.128137","29.948909"],["-90.128229","29.948823"],["-90.128221","29.948750"],["-90.128295","29.948758"],["-90.128362","29.948688"],["-90.128482","29.948576"],["-90.128602","29.948463"],["-90.128722","29.948351"],["-90.128843","29.948238"],["-90.128963","29.948126"],["-90.129083","29.948013"],["-90.129203","29.947901"],["-90.129323","29.947788"],["-90.129455","29.947665"],["-90.129588","29.947543"],["-90.129720","29.947420"],["-90.129670","29.947374"],["-90.129720","29.947420"],["-90.129790","29.947360"],["-90.129886","29.947273"],["-90.129983","29.947185"],["-90.130079","29.947098"],["-90.130175","29.947010"],["-90.130271","29.946923"],["-90.130368","29.946835"],["-90.130464","29.946748"],["-90.130560","29.946660"],["-90.130646","29.946578"],["-90.130733","29.946495"],["-90.130819","29.946413"],["-90.130905","29.946330"],["-90.130991","29.946248"],["-90.131078","29.946165"],["-90.131164","29.946083"],["-90.131250","29.946000"],["-90.131184","29.945951"],["-90.131250","29.946000"],["-90.131310","29.945940"],["-90.131405","29.945854"],["-90.131500","29.945768"],["-90.131595","29.945681"],["-90.131690","29.945595"],["-90.131785","29.945509"],["-90.131880","29.945423"],["-90.131975","29.945336"],["-90.132070","29.945250"],["-90.132154","29.945169"],["-90.132238","29.945088"],["-90.132321","29.945006"],["-90.132405","29.944925"],["-90.132489","29.944844"],["-90.132573","29.944763"],["-90.132656","29.944681"],["-90.132740","29.944600"],["-90.132671","29.944548"],["-90.132740","29.944600"],["-90.132810","29.944530"],["-90.132935","29.944410"],["-90.133060","29.944290"],["-90.133150","29.944205"],["-90.133240","29.944120"],["-90.133330","29.944035"],["-90.133420","29.943950"],["-90.133500","29.943870"],["-90.133600","29.943775"],["-90.133700","29.943680"],["-90.133810","29.943583"],["-90.133920","29.943485"],["-90.134030","29.943388"],["-90.134140","29.943290"],["-90.134078","29.943235"],["-90.134140","29.943290"],["-90.134210","29.943220"],["-90.134340","29.943100"],["-90.134235","29.943025"],["-90.134130","29.942950"],["-90.134041","29.942880"],["-90.133952","29.942810"],["-90.133864","29.942740"],["-90.133775","29.942670"],["-90.133686","29.942600"],["-90.133597","29.942530"],["-90.133509","29.942460"],["-90.133420","29.942390"],["-90.133370","29.942340"],["-90.133272","29.942263"],["-90.133181","29.942190"],["-90.133091","29.942117"],["-90.133000","29.942044"],["-90.132909","29.941971"],["-90.132819","29.941898"],["-90.132728","29.941825"],["-90.132638","29.941752"],["-90.132547","29.941679"],["-90.132456","29.941606"],["-90.132366","29.941533"],["-90.132275","29.941460"],["-90.132184","29.941387"],["-90.132094","29.941314"],["-90.132003","29.941241"],["-90.131912","29.941168"],["-90.131822","29.941095"],["-90.131765","29.941116"],["-90.131669","29.940967"],["-90.131583","29.940899"],["-90.131498","29.940832"],["-90.131412","29.940765"],["-90.131327","29.940698"],["-90.131241","29.940630"],["-90.131155","29.940563"],["-90.131070","29.940496"],["-90.130984","29.940428"],["-90.130899","29.940361"],["-90.130813","29.940294"],["-90.130728","29.940226"],["-90.130642","29.940159"],["-90.130557","29.940092"],["-90.130471","29.940025"],["-90.130385","29.939957"],["-90.130300","29.939890"],["-90.130246","29.939946"],["-90.130222","29.939907"],["-90.130096","29.939771"],["-90.129970","29.939634"],["-90.129870","29.939553"],["-90.129770","29.939472"],["-90.129670","29.939391"],["-90.129570","29.939310"],["-90.129470","29.939229"],["-90.129369","29.939148"],["-90.129269","29.939067"],["-90.129169","29.938986"],["-90.129069","29.938905"],["-90.128969","29.938824"],["-90.128869","29.938743"],["-90.128769","29.938661"],["-90.128669","29.938580"],["-90.128569","29.938499"],["-90.128469","29.938418"],["-90.128369","29.938337"],["-90.128189","29.938250"],["-90.128045","29.938137"],["-90.127901","29.938025"],["-90.127756","29.937912"],["-90.127612","29.937800"],["-90.127468","29.937687"],["-90.127324","29.937575"],["-90.127180","29.937462"],["-90.127035","29.937349"],["-90.126960","29.937320"],["-90.126851","29.937232"],["-90.126742","29.937144"],["-90.126634","29.937056"],["-90.126525","29.936968"],["-90.126416","29.936881"],["-90.126307","29.936793"],["-90.126198","29.936705"],["-90.126090","29.936617"],["-90.125967","29.936536"],["-90.125844","29.936455"],["-90.125721","29.936374"],["-90.125598","29.936293"],["-90.125495","29.936279"],["-90.125461","29.936200"],["-90.125293","29.936080"],["-90.125125","29.935960"],["-90.124957","29.935841"],["-90.124790","29.935721"],["-90.124622","29.935601"],["-90.124454","29.935481"],["-90.124286","29.935361"],["-90.124118","29.935241"],["-90.124010","29.935172"],["-90.123938","29.935180"],["-90.123892","29.935074"],["-90.123727","29.934960"],["-90.123562","29.934845"],["-90.123397","29.934731"],["-90.123231","29.934617"],["-90.123066","29.934503"],["-90.122901","29.934388"],["-90.122736","29.934274"],["-90.122571","29.934160"],["-90.122503","29.934175"],["-90.122474","29.934081"],["-90.122304","29.933962"],["-90.122134","29.933844"],["-90.121964","29.933725"],["-90.121793","29.933607"],["-90.121700","29.933583"],["-90.121651","29.933495"],["-90.121556","29.933427"],["-90.121460","29.933358"],["-90.121364","29.933289"],["-90.121269","29.933220"],["-90.121173","29.933151"],["-90.121078","29.933082"],["-90.120982","29.933013"],["-90.120887","29.932944"],["-90.120801","29.932956"],["-90.120783","29.932886"],["-90.120669","29.932806"],["-90.120554","29.932725"],["-90.120439","29.932644"],["-90.120324","29.932563"],["-90.120210","29.932482"],["-90.120095","29.932402"],["-90.119980","29.932321"],["-90.119866","29.932240"],["-90.119763","29.932166"],["-90.119660","29.932091"],["-90.119557","29.932017"],["-90.119455","29.931942"],["-90.119382","29.931951"],["-90.119384","29.931878"],["-90.119294","29.931817"],["-90.119204","29.931756"],["-90.119114","29.931695"],["-90.119024","29.931634"],["-90.118934","29.931573"],["-90.118845","29.931512"],["-90.118755","29.931451"],["-90.118665","29.931390"],["-90.118532","29.931300"],["-90.118400","29.931210"],["-90.118240","29.931100"],["-90.118213","29.931132"],["-90.118240","29.931100"],["-90.118110","29.931010"],["-90.117952","29.930913"],["-90.117795","29.930815"],["-90.117637","29.930718"],["-90.117480","29.930620"],["-90.117355","29.930550"],["-90.117230","29.930480"],["-90.117075","29.930400"],["-90.116920","29.930320"],["-90.116760","29.930230"],["-90.116741","29.930256"],["-90.116760","29.930230"],["-90.116670","29.930190"],["-90.116600","29.930150"],["-90.116492","29.930098"],["-90.116385","29.930045"],["-90.116277","29.929993"],["-90.116170","29.929940"],["-90.116062","29.929888"],["-90.115955","29.929835"],["-90.115847","29.929783"],["-90.115740","29.929730"],["-90.115557","29.929645"],["-90.115375","29.929560"],["-90.115192","29.929475"],["-90.115010","29.929390"],["-90.114973","29.929450"],["-90.115010","29.929390"],["-90.114900","29.929340"],["-90.114785","29.929285"],["-90.114670","29.929230"],["-90.114555","29.929175"],["-90.114440","29.929120"],["-90.114325","29.929065"],["-90.114210","29.929010"],["-90.114095","29.928955"],["-90.113980","29.928900"],["-90.113874","29.928851"],["-90.113767","29.928803"],["-90.113661","29.928754"],["-90.113555","29.928705"],["-90.113449","29.928656"],["-90.113342","29.928608"],["-90.113236","29.928559"],["-90.113130","29.928510"],["-90.113101","29.928550"],["-90.113130","29.928510"],["-90.113060","29.928470"],["-90.112960","29.928420"],["-90.112810","29.928345"],["-90.112660","29.928270"],["-90.112510","29.928195"],["-90.112360","29.928120"],["-90.112170","29.928035"],["-90.111980","29.927950"],["-90.111790","29.927865"],["-90.111600","29.927780"],["-90.111572","29.927836"],["-90.111600","29.927780"],["-90.111530","29.927750"],["-90.111345","29.927660"],["-90.111160","29.927570"],["-90.110975","29.927480"],["-90.110790","29.927390"],["-90.110750","29.927453"],["-90.110790","29.927390"],["-90.110670","29.927330"],["-90.110555","29.927278"],["-90.110440","29.927225"],["-90.110325","29.927173"],["-90.110210","29.927120"],["-90.110095","29.927068"],["-90.109980","29.927015"],["-90.109865","29.926963"],["-90.109750","29.926910"],["-90.109625","29.926850"],["-90.109500","29.926790"],["-90.109375","29.926730"],["-90.109250","29.926670"],["-90.109100","29.926600"],["-90.108950","29.926530"],["-90.108925","29.926565"],["-90.108950","29.926530"],["-90.108810","29.926460"],["-90.108692","29.926413"],["-90.108575","29.926365"],["-90.108457","29.926318"],["-90.108340","29.926270"],["-90.108290","29.926250"],["-90.108160","29.926210"],["-90.108047","29.926175"],["-90.107935","29.926140"],["-90.107822","29.926105"],["-90.107710","29.926070"],["-90.107490","29.926055"],["-90.107270","29.926040"],["-90.107155","29.926035"],["-90.107040","29.926030"],["-90.106920","29.926035"],["-90.106800","29.926040"],["-90.106796","29.926077"],["-90.106800","29.926040"],["-90.106700","29.926040"],["-90.106558","29.926053"],["-90.106415","29.926065"],["-90.106273","29.926078"],["-90.106130","29.926090"],["-90.105988","29.926103"],["-90.105845","29.926115"],["-90.105703","29.926128"],["-90.105560","29.926140"],["-90.105430","29.926149"],["-90.105300","29.926158"],["-90.105170","29.926166"],["-90.105040","29.926175"],["-90.104910","29.926184"],["-90.104780","29.926193"],["-90.104650","29.926201"],["-90.104520","29.926210"],["-90.104522","29.926254"],["-90.104520","29.926210"],["-90.104410","29.926220"],["-90.104270","29.926230"],["-90.104130","29.926240"],["-90.103930","29.926260"],["-90.103775","29.926275"],["-90.103620","29.926290"],["-90.103465","29.926305"],["-90.103310","29.926320"],["-90.103180","29.926329"],["-90.103050","29.926338"],["-90.102920","29.926346"],["-90.102790","29.926355"],["-90.102660","29.926364"],["-90.102530","29.926373"],["-90.102400","29.926381"],["-90.102270","29.926390"],["-90.102274","29.926442"],["-90.102270","29.926390"],["-90.102170","29.926400"],["-90.102030","29.926400"],["-90.101930","29.926410"],["-90.101735","29.926425"],["-90.101540","29.926440"],["-90.101345","29.926455"],["-90.101150","29.926470"],["-90.100970","29.926480"],["-90.100790","29.926490"],["-90.100661","29.926501"],["-90.100533","29.926513"],["-90.100404","29.926524"],["-90.100275","29.926535"],["-90.100146","29.926546"],["-90.100018","29.926558"],["-90.099889","29.926569"],["-90.099760","29.926580"],["-90.099764","29.926621"],["-90.099760","29.926580"],["-90.099690","29.926580"],["-90.099540","29.926595"],["-90.099390","29.926610"],["-90.099273","29.926618"],["-90.099155","29.926625"],["-90.099038","29.926633"],["-90.098920","29.926640"],["-90.098745","29.926655"],["-90.098570","29.926670"],["-90.098438","29.926680"],["-90.098305","29.926690"],["-90.098173","29.926700"],["-90.098040","29.926710"],["-90.097908","29.926720"],["-90.097775","29.926730"],["-90.097643","29.926740"],["-90.097510","29.926750"],["-90.097516","29.926792"],["-90.097510","29.926750"],["-90.097430","29.926760"],["-90.097303","29.926770"],["-90.097175","29.926780"],["-90.097048","29.926790"],["-90.096920","29.926800"],["-90.096793","29.926810"],["-90.096665","29.926820"],["-90.096538","29.926830"],["-90.096410","29.926840"],["-90.096225","29.926860"],["-90.096040","29.926880"],["-90.095855","29.926900"],["-90.095670","29.926920"],["-90.095675","29.926947"],["-90.095670","29.926920"],["-90.095560","29.926930"],["-90.095480","29.926940"],["-90.095300","29.926968"],["-90.095120","29.926995"],["-90.094940","29.927023"],["-90.094760","29.927050"],["-90.094642","29.927083"],["-90.094524","29.927115"],["-90.094406","29.927147"],["-90.094288","29.927180"],["-90.094170","29.927212"],["-90.094052","29.927245"],["-90.093934","29.927277"],["-90.093816","29.927310"],["-90.093787","29.927342"],["-90.093670","29.927356"],["-90.093538","29.927404"],["-90.093406","29.927451"],["-90.093275","29.927499"],["-90.093143","29.927546"],["-90.093012","29.927594"],["-90.092880","29.927641"],["-90.092749","29.927689"],["-90.092617","29.927736"],["-90.092486","29.927784"],["-90.092354","29.927831"],["-90.092222","29.927879"],["-90.092091","29.927926"],["-90.091959","29.927973"],["-90.091828","29.928021"],["-90.091696","29.928068"],["-90.091565","29.928116"],["-90.091588","29.928207"],["-90.091469","29.928144"],["-90.091315","29.928204"],["-90.091161","29.928264"],["-90.091006","29.928324"],["-90.090852","29.928384"],["-90.090698","29.928444"],["-90.090543","29.928504"],["-90.090389","29.928565"],["-90.090235","29.928625"],["-90.090094","29.928683"],["-90.089953","29.928742"],["-90.089812","29.928801"],["-90.089671","29.928859"],["-90.089531","29.928918"],["-90.089390","29.928977"],["-90.089249","29.929035"],["-90.089108","29.929094"],["-90.089039","29.929178"],["-90.088925","29.929197"],["-90.088743","29.929298"],["-90.088561","29.929400"],["-90.088379","29.929501"],["-90.088197","29.929603"],["-90.088015","29.929704"],["-90.087833","29.929806"],["-90.087651","29.929908"],["-90.087469","29.930009"],["-90.087402","29.930105"],["-90.087209","29.930169"],["-90.087068","29.930251"],["-90.086927","29.930332"],["-90.086786","29.930413"],["-90.086645","29.930494"],["-90.086504","29.930576"],["-90.086363","29.930657"],["-90.086222","29.930738"],["-90.086081","29.930819"],["-90.086039","29.930939"],["-90.085853","29.930919"],["-90.085671","29.931022"],["-90.085490","29.931125"],["-90.085309","29.931228"],["-90.085128","29.931331"],["-90.084946","29.931434"],["-90.084765","29.931537"],["-90.084584","29.931640"],["-90.084402","29.931743"],["-90.084417","29.931839"],["-90.084231","29.931832"],["-90.084053","29.931932"],["-90.083876","29.932033"],["-90.083699","29.932134"],["-90.083521","29.932235"],["-90.083344","29.932336"],["-90.083166","29.932437"],["-90.082989","29.932538"],["-90.082811","29.932638"],["-90.082796","29.932757"],["-90.082608","29.932778"],["-90.082483","29.932848"],["-90.082357","29.932919"],["-90.082232","29.932989"],["-90.082107","29.933060"],["-90.081982","29.933130"],["-90.081857","29.933201"],["-90.081732","29.933271"],["-90.081607","29.933342"],["-90.081501","29.933414"],["-90.081395","29.933486"],["-90.081289","29.933558"],["-90.081183","29.933630"],["-90.081077","29.933702"],["-90.080971","29.933774"],["-90.080865","29.933846"],["-90.080759","29.933918"],["-90.080689","29.934020"],["-90.080689","29.934020"],["-90.080562","29.934037"],["-90.080402","29.934143"],["-90.080241","29.934248"],["-90.080081","29.934354"],["-90.079920","29.934460"],["-90.079795","29.934540"],["-90.079670","29.934620"],["-90.079719","29.934683"],["-90.079670","29.934620"],["-90.079590","29.934670"],["-90.079501","29.934730"],["-90.079413","29.934790"],["-90.079324","29.934850"],["-90.079235","29.934910"],["-90.079146","29.934970"],["-90.079058","29.935030"],["-90.078969","29.935090"],["-90.078880","29.935150"],["-90.078770","29.935220"],["-90.078831","29.935282"],["-90.078770","29.935220"],["-90.078710","29.935260"],["-90.078560","29.935378"],["-90.078410","29.935495"],["-90.078260","29.935613"],["-90.078110","29.935730"],["-90.078015","29.935810"],["-90.077920","29.935890"],["-90.077825","29.935970"],["-90.077730","29.936050"],["-90.077610","29.936150"],["-90.077665","29.936198"],["-90.077610","29.936150"],["-90.077540","29.936210"],["-90.077490","29.936250"],["-90.077450","29.936300"],["-90.077410","29.936340"],["-90.077400","29.936360"],["-90.077295","29.936503"],["-90.077190","29.936645"],["-90.077085","29.936788"],["-90.076980","29.936930"],["-90.076880","29.937065"],["-90.076780","29.937200"],["-90.076680","29.937335"],["-90.076580","29.937470"],["-90.076500","29.937570"],["-90.076555","29.937595"],["-90.076500","29.937570"],["-90.076460","29.937620"],["-90.076396","29.937708"],["-90.076333","29.937795"],["-90.076269","29.937883"],["-90.076205","29.937970"],["-90.076141","29.938058"],["-90.076078","29.938145"],["-90.076014","29.938233"],["-90.075950","29.938320"],["-90.075858","29.938448"],["-90.075765","29.938575"],["-90.075673","29.938703"],["-90.075580","29.938830"],["-90.075510","29.938920"],["-90.075541","29.938941"],["-90.075510","29.938920"],["-90.075430","29.939020"],["-90.075390","29.939080"],["-90.075295","29.939205"],["-90.075200","29.939330"],["-90.075105","29.939455"],["-90.075010","29.939580"],["-90.074940","29.939660"],["-90.074870","29.939740"],["-90.074758","29.939903"],["-90.074645","29.940065"],["-90.074533","29.940228"],["-90.074420","29.940390"],["-90.074456","29.940408"],["-90.074420","29.940390"],["-90.074370","29.940440"],["-90.074300","29.940545"],["-90.074230","29.940650"],["-90.074170","29.940731"],["-90.074110","29.940813"],["-90.074050","29.940894"],["-90.073990","29.940975"],["-90.073930","29.941056"],["-90.073870","29.941138"],["-90.073810","29.941219"],["-90.073750","29.941300"],["-90.073673","29.941403"],["-90.073595","29.941505"],["-90.073518","29.941608"],["-90.073440","29.941710"],["-90.073370","29.941800"],["-90.073290","29.941900"],["-90.073210","29.942000"],["-90.073130","29.942100"],["-90.073050","29.942200"],["-90.072990","29.942280"],["-90.072940","29.942340"],["-90.072860","29.942450"],["-90.072795","29.942560"],["-90.072751","29.942725"],["-90.072724","29.942811"],["-90.072641","29.942903"],["-90.072484","29.942934"],["-90.072359","29.942951"],["-90.072235","29.942967"],["-90.072095","29.943079"],["-90.072047","29.943175"],["-90.071999","29.943271"],["-90.072028","29.943396"],["-90.072058","29.943520"],["-90.072200","29.943657"],["-90.072311","29.943715"],["-90.072495","29.943730"],["-90.072641","29.943707"],["-90.072742","29.943661"],["-90.072849","29.943640"],["-90.072936","29.943655"],["-90.073046","29.943719"],["-90.073165","29.943786"],["-90.073204","29.943796"],["-90.073265","29.943860"],["-90.073364","29.943923"],["-90.073462","29.943985"],["-90.073509","29.944068"],["-90.073540","29.944143"],["-90.073506","29.944242"],["-90.073473","29.944342"],["-90.073444","29.944445"],["-90.073386","29.944615"],["-90.073341","29.944766"],["-90.073290","29.944940"],["-90.073240","29.945113"],["-90.073189","29.945286"],["-90.073138","29.945459"],["-90.073095","29.945598"],["-90.073053","29.945736"],["-90.073010","29.945874"],["-90.072968","29.946013"],["-90.072901","29.946037"],["-90.072942","29.946129"],["-90.072911","29.946249"],["-90.072880","29.946370"],["-90.072849","29.946490"],["-90.072818","29.946610"],["-90.072776","29.946750"],["-90.072735","29.946890"],["-90.072694","29.947030"],["-90.072653","29.947170"],["-90.072611","29.947310"],["-90.072570","29.947450"],["-90.072509","29.947436"],["-90.072570","29.947450"],["-90.072540","29.947550"],["-90.072510","29.947630"],["-90.072460","29.947790"],["-90.072413","29.947948"],["-90.072365","29.948105"],["-90.072318","29.948263"],["-90.072270","29.948420"],["-90.072240","29.948520"],["-90.072210","29.948600"],["-90.072180","29.948710"],["-90.072140","29.948845"],["-90.072100","29.948980"],["-90.072050","29.949140"],["-90.072025","29.949235"],["-90.072000","29.949330"],["-90.071955","29.949485"],["-90.071910","29.949640"],["-90.071843","29.949621"],["-90.071910","29.949640"],["-90.071870","29.949780"],["-90.071820","29.949930"],["-90.071780","29.950090"],["-90.071740","29.950225"],["-90.071700","29.950360"],["-90.071660","29.950495"],["-90.071614","29.950652"],["-90.071569","29.950808"],["-90.071523","29.950965"],["-90.071477","29.951122"],["-90.071429","29.951293"],["-90.071380","29.951464"],["-90.071332","29.951635"],["-90.071284","29.951806"],["-90.071139","29.951849"],["-90.071195","29.952025"],["-90.071143","29.952170"],["-90.071091","29.952316"],["-90.071038","29.952462"],["-90.070986","29.952608"],["-90.070916","29.952733"],["-90.070837","29.952824"],["-90.070757","29.952915"],["-90.070677","29.953006"],["-90.070597","29.953097"],["-90.070517","29.953188"],["-90.070438","29.953279"],["-90.070358","29.953370"],["-90.070278","29.953461"],["-90.070170","29.953495"],["-90.070061","29.953530"]]},{"type":"MultiPoint","coordinates":[["-90.120719","29.955611"],["-90.122111","29.954448"],["-90.123623","29.953030"],["-90.125124","29.951624"],["-90.127397","29.949505"],["-90.128221","29.948750"]]},{"type":"LineString","coordinates":[["-90.120719","29.955611"],["-90.120800","29.955543"],["-90.120882","29.955475"],["-90.120963","29.955406"],["-90.121045","29.955338"],["-90.121126","29.955270"],["-90.121207","29.955202"],["-90.121289","29.955133"],["-90.121370","29.955065"],["-90.121451","29.954997"],["-90.121533","29.954929"],["-90.121614","29.954860"],["-90.121696","29.954792"],["-90.121777","29.954724"],["-90.121858","29.954656"],["-90.121940","29.954587"],["-90.122021","29.954519"],["-90.122111","29.954448"],["-90.122206","29.954359"],["-90.122300","29.954271"],["-90.122395","29.954182"],["-90.122489","29.954094"],["-90.122584","29.954005"],["-90.122678","29.953916"],["-90.122773","29.953828"],["-90.122867","29.953739"],["-90.122962","29.953650"],["-90.123056","29.953562"],["-90.123151","29.953473"],["-90.123245","29.953385"],["-90.123340","29.953296"],["-90.123434","29.953207"],["-90.123529","29.953119"],["-90.123623","29.953030"],["-90.123717","29.952942"],["-90.123811","29.952854"],["-90.123904","29.952766"],["-90.123998","29.952679"],["-90.124092","29.952591"],["-90.124186","29.952503"],["-90.124280","29.952415"],["-90.124374","29.952327"],["-90.124467","29.952239"],["-90.124561","29.952151"],["-90.124655","29.952063"],["-90.124749","29.951976"],["-90.124843","29.951888"],["-90.124936","29.951800"],["-90.125030","29.951712"],["-90.125124","29.951624"],["-90.125266","29.951492"],["-90.125408","29.951359"],["-90.125550","29.951227"],["-90.125692","29.951094"],["-90.125834","29.950962"],["-90.125976","29.950829"],["-90.126118","29.950697"],["-90.126261","29.950565"],["-90.126403","29.950432"],["-90.126545","29.950300"],["-90.126687","29.950167"],["-90.126829","29.950035"],["-90.126971","29.949902"],["-90.127113","29.949770"],["-90.127255","29.949637"],["-90.127397","29.949505"],["-90.127500","29.949411"],["-90.127603","29.949316"],["-90.127706","29.949222"],["-90.127809","29.949128"],["-90.127912","29.949033"],["-90.128015","29.948939"],["-90.128118","29.948844"],["-90.128221","29.948750"],["-90.128221","29.948750"]]},{"type":"MultiPoint","coordinates":[["-90.120719","29.955611"],["-90.126674","29.950020"],["-90.125179","29.951429"],["-90.123669","29.952840"],["-90.122151","29.954248"],["-90.128127","29.948607"]]},{"type":"LineString","coordinates":[["-90.128127","29.948607"],["-90.127982","29.948748"],["-90.127836","29.948890"],["-90.127691","29.949031"],["-90.127546","29.949172"],["-90.127401","29.949314"],["-90.127255","29.949455"],["-90.127110","29.949596"],["-90.126965","29.949737"],["-90.126819","29.949879"],["-90.126674","29.950020"],["-90.126525","29.950161"],["-90.126375","29.950302"],["-90.126226","29.950443"],["-90.126076","29.950584"],["-90.125927","29.950725"],["-90.125777","29.950865"],["-90.125628","29.951006"],["-90.125478","29.951147"],["-90.125329","29.951288"],["-90.125179","29.951429"],["-90.125042","29.951557"],["-90.124904","29.951686"],["-90.124767","29.951814"],["-90.124630","29.951942"],["-90.124493","29.952070"],["-90.124355","29.952199"],["-90.124218","29.952327"],["-90.124081","29.952455"],["-90.123944","29.952583"],["-90.123806","29.952712"],["-90.123669","29.952840"],["-90.123531","29.952968"],["-90.123393","29.953096"],["-90.123255","29.953224"],["-90.123117","29.953352"],["-90.122979","29.953480"],["-90.122841","29.953608"],["-90.122703","29.953736"],["-90.122565","29.953864"],["-90.122427","29.953992"],["-90.122289","29.954120"],["-90.122151","29.954248"],["-90.122008","29.954384"],["-90.121865","29.954521"],["-90.121721","29.954657"],["-90.121578","29.954793"],["-90.121435","29.954930"],["-90.121292","29.955066"],["-90.121149","29.955202"],["-90.121005","29.955338"],["-90.120862","29.955475"],["-90.120719","29.955611"]]},{"type":"MultiPoint","coordinates":[["-90.120719","29.955611"],["-90.088920","29.929344"],["-90.070061","29.953530"],["-90.069807","29.952300"],["-90.070638","29.949697"],["-90.071035","29.948406"],["-90.072171","29.944505"],["-90.072815","29.942753"],["-90.075443","29.939206"],["-90.076498","29.937784"],["-90.077550","29.936358"],["-90.078702","29.935412"],["-90.082645","29.932859"],["-90.084266","29.931945"],["-90.085858","29.931058"],["-90.087271","29.930260"],["-90.093592","29.927509"],["-90.095514","29.927047"],["-90.097339","29.926879"],["-90.099601","29.926715"],["-90.104335","29.926339"],["-90.106600","29.926171"],["-90.108904","29.926639"],["-90.111417","29.927817"],["-90.114768","29.929404"],["-90.116451","29.930198"],["-90.117973","29.931059"],["-90.119139","29.931874"],["-90.120581","29.932891"],["-90.121501","29.933539"],["-90.122360","29.934161"],["-90.123740","29.935065"],["-90.125307","29.936238"],["-90.128362","29.938343"],["-90.130202","29.939898"],["-90.133947","29.943177"],["-90.132721","29.944292"],["-90.131196","29.945742"],["-90.129693","29.947165"],["-90.126674","29.950020"],["-90.125179","29.951429"],["-90.123669","29.952840"],["-90.122151","29.954248"],["-90.071714","29.946023"],["-90.126793","29.937284"],["-90.080700","29.934065"],["-90.070222","29.951141"],["-90.079579","29.934816"],["-90.074438","29.940531"],["-90.071277","29.947405"],["-90.132620","29.941796"],["-90.091588","29.928244"],["-90.128127","29.948607"],["-90.112893","29.928515"],["-90.101860","29.926480"]]},{"type":"LineString","coordinates":[["-90.070061","29.953530"],["-90.070044","29.953640"],["-90.069878","29.953642"],["-90.069758","29.953570"],["-90.069639","29.953498"],["-90.069540","29.953426"],["-90.069441","29.953353"],["-90.069341","29.953281"],["-90.069242","29.953208"],["-90.069218","29.953108"],["-90.069292","29.953007"],["-90.069365","29.952906"],["-90.069439","29.952805"],["-90.069512","29.952704"],["-90.069586","29.952603"],["-90.069660","29.952502"],["-90.069733","29.952401"],["-90.069807","29.952300"],["-90.069813","29.952248"],["-90.069864","29.952110"],["-90.069916","29.951971"],["-90.069967","29.951833"],["-90.070018","29.951695"],["-90.070069","29.951556"],["-90.070120","29.951418"],["-90.070171","29.951279"],["-90.070222","29.951141"],["-90.070161","29.951127"],["-90.070176","29.951028"],["-90.070190","29.950930"],["-90.070230","29.950805"],["-90.070270","29.950680"],["-90.070290","29.950600"],["-90.070330","29.950470"],["-90.070370","29.950370"],["-90.070390","29.950300"],["-90.070428","29.950169"],["-90.070465","29.950039"],["-90.070503","29.949908"],["-90.070540","29.949777"],["-90.070638","29.949697"],["-90.070593","29.949649"],["-90.070642","29.949471"],["-90.070692","29.949294"],["-90.070741","29.949117"],["-90.070790","29.948940"],["-90.070820","29.948850"],["-90.070853","29.948743"],["-90.070885","29.948635"],["-90.070918","29.948528"],["-90.070950","29.948390"],["-90.071035","29.948406"],["-90.070950","29.948390"],["-90.070970","29.948320"],["-90.071010","29.948185"],["-90.071050","29.948050"],["-90.071110","29.947870"],["-90.071150","29.947740"],["-90.071185","29.947615"],["-90.071220","29.947490"],["-90.071250","29.947400"],["-90.071277","29.947405"],["-90.071250","29.947400"],["-90.071270","29.947360"],["-90.071310","29.947190"],["-90.071360","29.947030"],["-90.071410","29.946870"],["-90.071430","29.946790"],["-90.071475","29.946650"],["-90.071520","29.946510"],["-90.071555","29.946390"],["-90.071590","29.946270"],["-90.071625","29.946140"],["-90.071660","29.946010"],["-90.071714","29.946023"],["-90.071660","29.946010"],["-90.071690","29.945920"],["-90.071730","29.945788"],["-90.071770","29.945655"],["-90.071810","29.945523"],["-90.071850","29.945390"],["-90.071890","29.945253"],["-90.071930","29.945115"],["-90.071970","29.944978"],["-90.072010","29.944840"],["-90.072060","29.944665"],["-90.072110","29.944490"],["-90.072171","29.944505"],["-90.072110","29.944490"],["-90.072140","29.944390"],["-90.072170","29.944285"],["-90.072200","29.944180"],["-90.072240","29.944070"],["-90.072300","29.943890"],["-90.072330","29.943760"],["-90.072370","29.943770"],["-90.072410","29.943770"],["-90.072440","29.943770"],["-90.072470","29.943770"],["-90.072510","29.943770"],["-90.072540","29.943770"],["-90.072580","29.943760"],["-90.072610","29.943750"],["-90.072650","29.943740"],["-90.072690","29.943730"],["-90.072730","29.943720"],["-90.072760","29.943700"],["-90.072810","29.943670"],["-90.072850","29.943630"],["-90.072920","29.943540"],["-90.072940","29.943500"],["-90.072950","29.943480"],["-90.072960","29.943450"],["-90.072960","29.943430"],["-90.072960","29.943420"],["-90.072970","29.943380"],["-90.072970","29.943370"],["-90.072970","29.943340"],["-90.072970","29.943320"],["-90.072970","29.943300"],["-90.072970","29.943250"],["-90.072950","29.943200"],["-90.072940","29.943160"],["-90.072940","29.943150"],["-90.072910","29.943110"],["-90.072890","29.943080"],["-90.072860","29.943040"],["-90.072830","29.943010"],["-90.072800","29.942990"],["-90.072770","29.942960"],["-90.072825","29.942875"],["-90.072910","29.942760"],["-90.072815","29.942753"],["-90.072910","29.942760"],["-90.072990","29.942640"],["-90.073055","29.942558"],["-90.073120","29.942475"],["-90.073185","29.942393"],["-90.073250","29.942310"],["-90.073320","29.942205"],["-90.073390","29.942100"],["-90.073460","29.941995"],["-90.073530","29.941890"],["-90.073578","29.941745"],["-90.073626","29.941600"],["-90.073727","29.941466"],["-90.073829","29.941333"],["-90.073930","29.941199"],["-90.074032","29.941065"],["-90.074133","29.940932"],["-90.074235","29.940798"],["-90.074336","29.940665"],["-90.074438","29.940531"],["-90.074539","29.940412"],["-90.074640","29.940293"],["-90.074741","29.940174"],["-90.074842","29.940055"],["-90.074942","29.939935"],["-90.075043","29.939816"],["-90.075144","29.939697"],["-90.075245","29.939578"],["-90.075310","29.939490"],["-90.075420","29.939350"],["-90.075500","29.939240"],["-90.075443","29.939206"],["-90.075500","29.939240"],["-90.075550","29.939170"],["-90.075590","29.939110"],["-90.075655","29.939023"],["-90.075720","29.938935"],["-90.075785","29.938848"],["-90.075850","29.938760"],["-90.075915","29.938673"],["-90.075980","29.938585"],["-90.076045","29.938498"],["-90.076110","29.938410"],["-90.076205","29.938285"],["-90.076300","29.938160"],["-90.076395","29.938035"],["-90.076490","29.937910"],["-90.076550","29.937820"],["-90.076498","29.937784"],["-90.076550","29.937820"],["-90.076630","29.937720"],["-90.076694","29.937633"],["-90.076758","29.937545"],["-90.076821","29.937458"],["-90.076885","29.937370"],["-90.076949","29.937283"],["-90.077013","29.937195"],["-90.077076","29.937108"],["-90.077140","29.937020"],["-90.077240","29.936888"],["-90.077340","29.936755"],["-90.077440","29.936623"],["-90.077540","29.936490"],["-90.077610","29.936390"],["-90.077550","29.936358"],["-90.077610","29.936390"],["-90.077670","29.936320"],["-90.077813","29.936203"],["-90.077955","29.936085"],["-90.078098","29.935968"],["-90.078240","29.935850"],["-90.078335","29.935778"],["-90.078430","29.935705"],["-90.078525","29.935633"],["-90.078620","29.935560"],["-90.078750","29.935450"],["-90.078702","29.935412"],["-90.078750","29.935450"],["-90.078830","29.935390"],["-90.078928","29.935323"],["-90.079025","29.935255"],["-90.079123","29.935188"],["-90.079220","29.935120"],["-90.079318","29.935053"],["-90.079415","29.934985"],["-90.079513","29.934918"],["-90.079610","29.934850"],["-90.079579","29.934816"],["-90.079610","29.934850"],["-90.079700","29.934800"],["-90.079860","29.934695"],["-90.080020","29.934590"],["-90.080184","29.934482"],["-90.080348","29.934373"],["-90.080512","29.934265"],["-90.080677","29.934156"],["-90.080700","29.934065"],["-90.080843","29.934056"],["-90.080951","29.933987"],["-90.081059","29.933918"],["-90.081168","29.933850"],["-90.081276","29.933781"],["-90.081384","29.933712"],["-90.081493","29.933643"],["-90.081601","29.933574"],["-90.081709","29.933505"],["-90.081817","29.933437"],["-90.081926","29.933368"],["-90.082034","29.933299"],["-90.082142","29.933230"],["-90.082250","29.933161"],["-90.082359","29.933092"],["-90.082467","29.933024"],["-90.082575","29.932955"],["-90.082645","29.932859"],["-90.082801","29.932818"],["-90.082915","29.932754"],["-90.083030","29.932690"],["-90.083145","29.932627"],["-90.083260","29.932563"],["-90.083360","29.932505"],["-90.083460","29.932448"],["-90.083560","29.932390"],["-90.083745","29.932288"],["-90.083930","29.932185"],["-90.084115","29.932083"],["-90.084300","29.931980"],["-90.084266","29.931945"],["-90.084300","29.931980"],["-90.084380","29.931940"],["-90.084480","29.931883"],["-90.084580","29.931825"],["-90.084680","29.931768"],["-90.084780","29.931710"],["-90.084880","29.931653"],["-90.084980","29.931595"],["-90.085080","29.931538"],["-90.085180","29.931480"],["-90.085355","29.931383"],["-90.085530","29.931285"],["-90.085705","29.931188"],["-90.085880","29.931090"],["-90.085858","29.931058"],["-90.085880","29.931090"],["-90.086020","29.931010"],["-90.086195","29.930910"],["-90.086370","29.930810"],["-90.086545","29.930710"],["-90.086720","29.930610"],["-90.086863","29.930530"],["-90.087005","29.930450"],["-90.087148","29.930370"],["-90.087290","29.930290"],["-90.087271","29.930260"],["-90.087290","29.930290"],["-90.087400","29.930230"],["-90.087499","29.930174"],["-90.087598","29.930118"],["-90.087696","29.930061"],["-90.087795","29.930005"],["-90.087894","29.929949"],["-90.087993","29.929893"],["-90.088091","29.929836"],["-90.088190","29.929780"],["-90.088378","29.929680"],["-90.088565","29.929580"],["-90.088753","29.929480"],["-90.088940","29.929380"],["-90.088920","29.929344"],["-90.088940","29.929380"],["-90.089020","29.929340"],["-90.089118","29.929288"],["-90.089215","29.929235"],["-90.089313","29.929183"],["-90.089410","29.929130"],["-90.089518","29.929080"],["-90.089625","29.929030"],["-90.089733","29.928980"],["-90.089840","29.928930"],["-90.090010","29.928855"],["-90.090180","29.928780"],["-90.090310","29.928730"],["-90.090465","29.928675"],["-90.090620","29.928620"],["-90.090765","29.928570"],["-90.090910","29.928520"],["-90.090990","29.928500"],["-90.091093","29.928463"],["-90.091195","29.928425"],["-90.091298","29.928388"],["-90.091400","29.928350"],["-90.091530","29.928300"],["-90.091600","29.928280"],["-90.091588","29.928244"],["-90.091600","29.928280"],["-90.091729","29.928233"],["-90.091858","29.928185"],["-90.091986","29.928138"],["-90.092115","29.928090"],["-90.092244","29.928043"],["-90.092373","29.927995"],["-90.092501","29.927948"],["-90.092630","29.927900"],["-90.092800","29.927840"],["-90.092950","29.927785"],["-90.093100","29.927730"],["-90.093250","29.927675"],["-90.093400","29.927620"],["-90.093505","29.927585"],["-90.093610","29.927550"],["-90.093592","29.927509"],["-90.093610","29.927550"],["-90.093710","29.927520"],["-90.093853","29.927478"],["-90.093995","29.927435"],["-90.094138","29.927393"],["-90.094280","29.927350"],["-90.094460","29.927300"],["-90.094640","29.927250"],["-90.094800","29.927200"],["-90.094880","29.927190"],["-90.095070","29.927150"],["-90.095230","29.927130"],["-90.095375","29.927105"],["-90.095520","29.927080"],["-90.095514","29.927047"],["-90.095520","29.927080"],["-90.095600","29.927070"],["-90.095813","29.927050"],["-90.096025","29.927030"],["-90.096238","29.927010"],["-90.096450","29.926990"],["-90.096561","29.926983"],["-90.096673","29.926975"],["-90.096784","29.926968"],["-90.096895","29.926960"],["-90.097006","29.926953"],["-90.097118","29.926945"],["-90.097229","29.926938"],["-90.097340","29.926930"],["-90.097339","29.926879"],["-90.097340","29.926930"],["-90.097440","29.926920"],["-90.097583","29.926910"],["-90.097725","29.926900"],["-90.097868","29.926890"],["-90.098010","29.926880"],["-90.098153","29.926870"],["-90.098295","29.926860"],["-90.098438","29.926850"],["-90.098580","29.926840"],["-90.098745","29.926825"],["-90.098939","29.926810"],["-90.099132","29.926795"],["-90.099326","29.926780"],["-90.099519","29.926765"],["-90.099601","29.926715"],["-90.099712","29.926737"],["-90.099823","29.926758"],["-90.099948","29.926746"],["-90.100073","29.926734"],["-90.100198","29.926722"],["-90.100323","29.926710"],["-90.100448","29.926697"],["-90.100573","29.926685"],["-90.100698","29.926673"],["-90.100823","29.926661"],["-90.100950","29.926651"],["-90.101076","29.926641"],["-90.101203","29.926631"],["-90.101329","29.926621"],["-90.101456","29.926611"],["-90.101583","29.926601"],["-90.101709","29.926591"],["-90.101836","29.926581"],["-90.101860","29.926480"],["-90.101860","29.926480"],["-90.101983","29.926578"],["-90.102112","29.926569"],["-90.102240","29.926559"],["-90.102368","29.926549"],["-90.102497","29.926539"],["-90.102625","29.926529"],["-90.102753","29.926520"],["-90.102882","29.926510"],["-90.103010","29.926500"],["-90.103170","29.926485"],["-90.103330","29.926470"],["-90.103450","29.926460"],["-90.103570","29.926450"],["-90.103690","29.926440"],["-90.103810","29.926430"],["-90.104020","29.926420"],["-90.104180","29.926405"],["-90.104340","29.926390"],["-90.104335","29.926339"],["-90.104340","29.926390"],["-90.104430","29.926380"],["-90.104588","29.926368"],["-90.104745","29.926355"],["-90.104903","29.926343"],["-90.105060","29.926330"],["-90.105188","29.926320"],["-90.105315","29.926310"],["-90.105443","29.926300"],["-90.105570","29.926290"],["-90.105699","29.926281"],["-90.105828","29.926273"],["-90.105956","29.926264"],["-90.106085","29.926255"],["-90.106214","29.926246"],["-90.106343","29.926238"],["-90.106471","29.926229"],["-90.106600","29.926220"],["-90.106600","29.926171"],["-90.106600","29.926220"],["-90.106720","29.926210"],["-90.106915","29.926210"],["-90.107110","29.926210"],["-90.107250","29.926215"],["-90.107390","29.926220"],["-90.107510","29.926235"],["-90.107630","29.926250"],["-90.107710","29.926260"],["-90.107850","29.926295"],["-90.107990","29.926330"],["-90.108110","29.926365"],["-90.108230","29.926400"],["-90.108410","29.926480"],["-90.108600","29.926565"],["-90.108790","29.926650"],["-90.108870","29.926690"],["-90.108904","29.926639"],["-90.108870","29.926690"],["-90.109015","29.926760"],["-90.109160","29.926830"],["-90.109285","29.926888"],["-90.109410","29.926945"],["-90.109535","29.927003"],["-90.109660","29.927060"],["-90.109720","29.927100"],["-90.109879","29.927173"],["-90.110039","29.927246"],["-90.110198","29.927319"],["-90.110358","29.927393"],["-90.110517","29.927466"],["-90.110676","29.927539"],["-90.110836","29.927612"],["-90.110995","29.927685"],["-90.111101","29.927718"],["-90.111206","29.927751"],["-90.111312","29.927784"],["-90.111417","29.927817"],["-90.111550","29.927896"],["-90.111684","29.927974"],["-90.111817","29.928053"],["-90.111950","29.928132"],["-90.112068","29.928180"],["-90.112186","29.928227"],["-90.112304","29.928275"],["-90.112422","29.928323"],["-90.112539","29.928371"],["-90.112657","29.928419"],["-90.112775","29.928467"],["-90.112893","29.928515"],["-90.112998","29.928577"],["-90.113103","29.928639"],["-90.113208","29.928702"],["-90.113313","29.928764"],["-90.113498","29.928849"],["-90.113682","29.928933"],["-90.113867","29.929018"],["-90.114052","29.929103"],["-90.114155","29.929155"],["-90.114257","29.929208"],["-90.114360","29.929260"],["-90.114550","29.929355"],["-90.114740","29.929450"],["-90.114768","29.929404"],["-90.114740","29.929450"],["-90.114860","29.929510"],["-90.114962","29.929560"],["-90.115065","29.929610"],["-90.115167","29.929660"],["-90.115270","29.929710"],["-90.115372","29.929760"],["-90.115475","29.929810"],["-90.115577","29.929860"],["-90.115680","29.929910"],["-90.115865","29.929993"],["-90.116050","29.930075"],["-90.116235","29.930158"],["-90.116420","29.930240"],["-90.116451","29.930198"],["-90.116420","29.930240"],["-90.116550","29.930300"],["-90.116697","29.930380"],["-90.116845","29.930460"],["-90.116992","29.930540"],["-90.117140","29.930620"],["-90.117255","29.930685"],["-90.117370","29.930750"],["-90.117390","29.930760"],["-90.117530","29.930843"],["-90.117670","29.930925"],["-90.117810","29.931008"],["-90.117950","29.931090"],["-90.117973","29.931059"],["-90.117950","29.931090"],["-90.118050","29.931150"],["-90.118182","29.931245"],["-90.118315","29.931340"],["-90.118447","29.931435"],["-90.118580","29.931530"],["-90.118712","29.931625"],["-90.118845","29.931720"],["-90.118977","29.931815"],["-90.119110","29.931910"],["-90.119139","29.931874"],["-90.119110","29.931910"],["-90.119240","29.932000"],["-90.119335","29.932070"],["-90.119430","29.932140"],["-90.119525","29.932210"],["-90.119620","29.932280"],["-90.119715","29.932348"],["-90.119810","29.932415"],["-90.119905","29.932483"],["-90.120000","29.932550"],["-90.120145","29.932650"],["-90.120290","29.932750"],["-90.120420","29.932840"],["-90.120550","29.932930"],["-90.120581","29.932891"],["-90.120550","29.932930"],["-90.120620","29.932970"],["-90.120715","29.933040"],["-90.120810","29.933110"],["-90.120905","29.933180"],["-90.121000","29.933250"],["-90.121090","29.933320"],["-90.121250","29.933440"],["-90.121330","29.933500"],["-90.121460","29.933580"],["-90.121501","29.933539"],["-90.121460","29.933580"],["-90.121530","29.933630"],["-90.121620","29.933695"],["-90.121710","29.933760"],["-90.121797","29.933820"],["-90.121885","29.933880"],["-90.121972","29.933940"],["-90.122060","29.934000"],["-90.122195","29.934100"],["-90.122330","29.934200"],["-90.122360","29.934161"],["-90.122330","29.934200"],["-90.122390","29.934240"],["-90.122430","29.934270"],["-90.122530","29.934340"],["-90.122540","29.934350"],["-90.122675","29.934445"],["-90.122810","29.934540"],["-90.122945","29.934635"],["-90.123080","29.934730"],["-90.123211","29.934823"],["-90.123342","29.934916"],["-90.123473","29.935009"],["-90.123604","29.935102"],["-90.123739","29.935062"],["-90.123740","29.935065"],["-90.123766","29.935220"],["-90.123896","29.935311"],["-90.124025","29.935402"],["-90.124154","29.935493"],["-90.124284","29.935584"],["-90.124413","29.935675"],["-90.124543","29.935765"],["-90.124672","29.935856"],["-90.124801","29.935947"],["-90.124901","29.936016"],["-90.125001","29.936085"],["-90.125100","29.936153"],["-90.125200","29.936222"],["-90.125307","29.936238"],["-90.125371","29.936318"],["-90.125434","29.936397"],["-90.125552","29.936479"],["-90.125670","29.936560"],["-90.125787","29.936641"],["-90.125905","29.936722"],["-90.126068","29.936838"],["-90.126232","29.936954"],["-90.126395","29.937070"],["-90.126558","29.937185"],["-90.126704","29.937288"],["-90.126793","29.937284"],["-90.126883","29.937413"],["-90.127034","29.937525"],["-90.127186","29.937636"],["-90.127337","29.937748"],["-90.127489","29.937859"],["-90.127627","29.937959"],["-90.127765","29.938058"],["-90.127903","29.938158"],["-90.128041","29.938257"],["-90.128197","29.938369"],["-90.128362","29.938343"],["-90.128379","29.938515"],["-90.128514","29.938621"],["-90.128648","29.938728"],["-90.128782","29.938834"],["-90.128916","29.938940"],["-90.129050","29.939047"],["-90.129184","29.939153"],["-90.129318","29.939259"],["-90.129452","29.939366"],["-90.129604","29.939490"],["-90.129755","29.939614"],["-90.129907","29.939739"],["-90.130058","29.939863"],["-90.130202","29.939898"],["-90.130215","29.939985"],["-90.130333","29.940080"],["-90.130451","29.940174"],["-90.130570","29.940269"],["-90.130688","29.940364"],["-90.130806","29.940459"],["-90.130924","29.940553"],["-90.131042","29.940648"],["-90.131160","29.940743"],["-90.131278","29.940837"],["-90.131396","29.940932"],["-90.131514","29.941027"],["-90.131632","29.941121"],["-90.131750","29.941216"],["-90.131868","29.941311"],["-90.131986","29.941405"],["-90.132104","29.941500"],["-90.132193","29.941575"],["-90.132281","29.941649"],["-90.132370","29.941723"],["-90.132458","29.941798"],["-90.132620","29.941796"],["-90.132665","29.941979"],["-90.132785","29.942076"],["-90.132905","29.942173"],["-90.133025","29.942270"],["-90.133145","29.942367"],["-90.133265","29.942464"],["-90.133385","29.942561"],["-90.133505","29.942658"],["-90.133625","29.942755"],["-90.133719","29.942834"],["-90.133812","29.942913"],["-90.133906","29.942991"],["-90.134000","29.943070"],["-90.133910","29.943150"],["-90.133947","29.943177"],["-90.133910","29.943150"],["-90.133830","29.943230"],["-90.133750","29.943310"],["-90.133670","29.943390"],["-90.133590","29.943470"],["-90.133455","29.943600"],["-90.133320","29.943730"],["-90.133173","29.943873"],["-90.133025","29.944015"],["-90.132878","29.944158"],["-90.132730","29.944300"],["-90.132721","29.944292"],["-90.132730","29.944300"],["-90.132630","29.944390"],["-90.132536","29.944479"],["-90.132443","29.944568"],["-90.132349","29.944656"],["-90.132255","29.944745"],["-90.132161","29.944834"],["-90.132068","29.944923"],["-90.131974","29.945011"],["-90.131880","29.945100"],["-90.131791","29.945178"],["-90.131703","29.945255"],["-90.131614","29.945333"],["-90.131525","29.945410"],["-90.131436","29.945488"],["-90.131348","29.945565"],["-90.131259","29.945643"],["-90.131170","29.945720"],["-90.131196","29.945742"],["-90.131170","29.945720"],["-90.131100","29.945780"],["-90.130960","29.945910"],["-90.130820","29.946040"],["-90.130725","29.946125"],["-90.130630","29.946210"],["-90.130485","29.946345"],["-90.130340","29.946480"],["-90.130223","29.946595"],["-90.130105","29.946710"],["-90.129988","29.946825"],["-90.129870","29.946940"],["-90.129765","29.947040"],["-90.129660","29.947140"],["-90.129693","29.947165"],["-90.129660","29.947140"],["-90.129590","29.947210"],["-90.129445","29.947348"],["-90.129300","29.947485"],["-90.129155","29.947623"],["-90.129010","29.947760"],["-90.128930","29.947835"],["-90.128850","29.947910"],["-90.128758","29.947996"],["-90.128665","29.948083"],["-90.128573","29.948169"],["-90.128480","29.948255"],["-90.128388","29.948341"],["-90.128295","29.948428"],["-90.128203","29.948514"],["-90.128100","29.948610"],["-90.128127","29.948607"],["-90.128100","29.948610"],["-90.128004","29.948700"],["-90.127908","29.948790"],["-90.127811","29.948880"],["-90.127715","29.948970"],["-90.127619","29.949060"],["-90.127523","29.949150"],["-90.127426","29.949240"],["-90.127330","29.949330"],["-90.127243","29.949411"],["-90.127155","29.949493"],["-90.127068","29.949574"],["-90.126980","29.949655"],["-90.126893","29.949736"],["-90.126805","29.949818"],["-90.126718","29.949899"],["-90.126630","29.949980"],["-90.126674","29.950020"],["-90.126630","29.949980"],["-90.126560","29.950050"],["-90.126435","29.950168"],["-90.126310","29.950285"],["-90.126185","29.950403"],["-90.126060","29.950520"],["-90.125940","29.950630"],["-90.125820","29.950740"],["-90.125734","29.950821"],["-90.125648","29.950903"],["-90.125561","29.950984"],["-90.125475","29.951065"],["-90.125389","29.951146"],["-90.125303","29.951228"],["-90.125216","29.951309"],["-90.125130","29.951390"],["-90.125179","29.951429"],["-90.125130","29.951390"],["-90.125070","29.951440"],["-90.124975","29.951530"],["-90.124880","29.951620"],["-90.124785","29.951710"],["-90.124690","29.951800"],["-90.124595","29.951890"],["-90.124500","29.951980"],["-90.124405","29.952070"],["-90.124310","29.952160"],["-90.124225","29.952241"],["-90.124140","29.952323"],["-90.124055","29.952404"],["-90.123970","29.952485"],["-90.123885","29.952566"],["-90.123800","29.952648"],["-90.123715","29.952729"],["-90.123630","29.952810"],["-90.123669","29.952840"],["-90.123630","29.952810"],["-90.123560","29.952870"],["-90.123423","29.952998"],["-90.123285","29.953125"],["-90.123148","29.953253"],["-90.123010","29.953380"],["-90.122920","29.953460"],["-90.122800","29.953570"],["-90.122715","29.953651"],["-90.122630","29.953733"],["-90.122545","29.953814"],["-90.122460","29.953895"],["-90.122375","29.953976"],["-90.122290","29.954058"],["-90.122205","29.954139"],["-90.122120","29.954220"],["-90.122151","29.954248"],["-90.122120","29.954220"],["-90.122050","29.954290"],["-90.121958","29.954378"],["-90.121865","29.954465"],["-90.121773","29.954553"],["-90.121680","29.954640"],["-90.121588","29.954728"],["-90.121495","29.954815"],["-90.121403","29.954903"],["-90.121310","29.954990"],["-90.121170","29.955100"],["-90.121095","29.955173"],["-90.121020","29.955245"],["-90.120945","29.955318"],["-90.120870","29.955390"],["-90.120795","29.955465"],["-90.120720","29.955540"],["-90.120719","29.955611"]]}]}},{"type":"Feature","properties":{"route_id":"202","agency_id":"1","route_short_name":"202","route_long_name":"Airport Express","route_type":"3","route_color":"#ff00ff","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.075474","29.951945"],["-90.076903","29.945829"],["-90.076215","29.948286"],["-90.075579","29.950548"],["-90.255743","29.996841"],["-90.075280","29.954073"]]},{"type":"LineString","coordinates":[["-90.255743","29.996841"],["-90.255760","29.996840"],["-90.255770","29.996990"],["-90.255820","29.997040"],["-90.255890","29.997090"],["-90.255970","29.997130"],["-90.256020","29.997150"],["-90.256090","29.997170"],["-90.256170","29.997190"],["-90.256240","29.997200"],["-90.256310","29.997200"],["-90.256400","29.997210"],["-90.256480","29.997210"],["-90.256690","29.997220"],["-90.256900","29.997230"],["-90.257105","29.997243"],["-90.257310","29.997255"],["-90.257515","29.997268"],["-90.257720","29.997280"],["-90.257820","29.997280"],["-90.257930","29.997290"],["-90.258140","29.997310"],["-90.258350","29.997320"],["-90.258555","29.997335"],["-90.258760","29.997350"],["-90.258800","29.997350"],["-90.258880","29.997350"],["-90.258910","29.997350"],["-90.259020","29.997360"],["-90.259080","29.997370"],["-90.259130","29.997390"],["-90.259190","29.997410"],["-90.259240","29.997430"],["-90.259320","29.997490"],["-90.259390","29.997570"],["-90.259410","29.997600"],["-90.259430","29.997630"],["-90.259450","29.997680"],["-90.259460","29.997730"],["-90.259460","29.997770"],["-90.259460","29.997860"],["-90.259460","29.998045"],["-90.259460","29.998230"],["-90.259480","29.998330"],["-90.259490","29.998460"],["-90.259520","29.998580"],["-90.259540","29.998680"],["-90.259580","29.998790"],["-90.259630","29.998920"],["-90.259670","29.999020"],["-90.259730","29.999140"],["-90.259790","29.999240"],["-90.259850","29.999320"],["-90.259860","29.999330"],["-90.259910","29.999400"],["-90.259970","29.999470"],["-90.260040","29.999550"],["-90.260110","29.999620"],["-90.260200","29.999710"],["-90.260280","29.999785"],["-90.260360","29.999860"],["-90.260440","29.999935"],["-90.260520","30.000010"],["-90.260590","30.000080"],["-90.260650","30.000160"],["-90.260670","30.000220"],["-90.260690","30.000280"],["-90.260700","30.000340"],["-90.260690","30.000390"],["-90.260670","30.000440"],["-90.260640","30.000500"],["-90.260610","30.000520"],["-90.260550","30.000560"],["-90.260500","30.000610"],["-90.260460","30.000660"],["-90.260450","30.000680"],["-90.260430","30.000730"],["-90.260410","30.000790"],["-90.260410","30.000850"],["-90.260420","30.000920"],["-90.260460","30.001000"],["-90.260500","30.001060"],["-90.260550","30.001110"],["-90.260610","30.001160"],["-90.260680","30.001190"],["-90.260750","30.001210"],["-90.260830","30.001220"],["-90.260910","30.001220"],["-90.260980","30.001210"],["-90.261060","30.001190"],["-90.261120","30.001150"],["-90.261180","30.001110"],["-90.261230","30.001060"],["-90.261240","30.001040"],["-90.261350","30.000990"],["-90.261480","30.000940"],["-90.261580","30.000920"],["-90.261610","30.000920"],["-90.261690","30.000920"],["-90.261855","30.000920"],["-90.262020","30.000920"],["-90.262230","30.000920"],["-90.262445","30.000925"],["-90.262660","30.000930"],["-90.262790","30.000940"],["-90.262850","30.000950"],["-90.262990","30.000975"],["-90.263130","30.001000"],["-90.263295","30.001035"],["-90.263460","30.001070"],["-90.263595","30.001100"],["-90.263730","30.001130"],["-90.263860","30.001160"],["-90.264060","30.001210"],["-90.264240","30.001250"],["-90.264260","30.001250"],["-90.264430","30.001300"],["-90.264550","30.001340"],["-90.264640","30.001370"],["-90.264650","30.001380"],["-90.264770","30.001420"],["-90.264880","30.001490"],["-90.264990","30.001550"],["-90.265080","30.001625"],["-90.265170","30.001700"],["-90.265300","30.001820"],["-90.265310","30.001820"],["-90.265400","30.001960"],["-90.265410","30.001970"],["-90.265500","30.002120"],["-90.265540","30.002210"],["-90.265580","30.002300"],["-90.265590","30.002310"],["-90.265620","30.002410"],["-90.265640","30.002500"],["-90.265670","30.002650"],["-90.265682","30.002788"],["-90.265695","30.002925"],["-90.265707","30.003063"],["-90.265720","30.003200"],["-90.265720","30.003260"],["-90.265730","30.003330"],["-90.265730","30.003380"],["-90.265730","30.003470"],["-90.265730","30.003550"],["-90.265730","30.003580"],["-90.265720","30.003690"],["-90.265720","30.003730"],["-90.265710","30.003920"],["-90.265700","30.004030"],["-90.265700","30.004110"],["-90.265700","30.004210"],["-90.265710","30.004260"],["-90.265710","30.004270"],["-90.265710","30.004300"],["-90.265750","30.004440"],["-90.265790","30.004580"],["-90.265797","30.004749"],["-90.265804","30.004918"],["-90.265812","30.005087"],["-90.265819","30.005257"],["-90.265733","30.005324"],["-90.265647","30.005391"],["-90.265561","30.005459"],["-90.265476","30.005526"],["-90.265346","30.005536"],["-90.265216","30.005546"],["-90.265087","30.005556"],["-90.264957","30.005566"],["-90.264827","30.005577"],["-90.264698","30.005587"],["-90.264568","30.005597"],["-90.264439","30.005607"],["-90.264309","30.005617"],["-90.264179","30.005627"],["-90.264050","30.005637"],["-90.263920","30.005647"],["-90.263790","30.005657"],["-90.263661","30.005667"],["-90.263531","30.005678"],["-90.263401","30.005688"],["-90.263272","30.005698"],["-90.263142","30.005708"],["-90.263013","30.005718"],["-90.262883","30.005728"],["-90.262753","30.005738"],["-90.262624","30.005748"],["-90.262494","30.005758"],["-90.262364","30.005768"],["-90.262235","30.005778"],["-90.262105","30.005789"],["-90.261975","30.005799"],["-90.261846","30.005809"],["-90.261716","30.005819"],["-90.261587","30.005829"],["-90.261457","30.005839"],["-90.261327","30.005849"],["-90.261198","30.005859"],["-90.261068","30.005869"],["-90.260938","30.005879"],["-90.260809","30.005889"],["-90.260679","30.005900"],["-90.260549","30.005910"],["-90.260420","30.005920"],["-90.260290","30.005930"],["-90.260161","30.005940"],["-90.260031","30.005950"],["-90.259901","30.005960"],["-90.259772","30.005970"],["-90.259642","30.005980"],["-90.259512","30.005990"],["-90.259383","30.006000"],["-90.259253","30.006011"],["-90.259123","30.006021"],["-90.258994","30.006031"],["-90.258864","30.006041"],["-90.258735","30.006051"],["-90.258605","30.006061"],["-90.258475","30.006071"],["-90.258346","30.006081"],["-90.258216","30.006091"],["-90.258086","30.006101"],["-90.257957","30.006111"],["-90.257827","30.006121"],["-90.257697","30.006132"],["-90.257568","30.006142"],["-90.257438","30.006152"],["-90.257308","30.006162"],["-90.257179","30.006172"],["-90.257049","30.006182"],["-90.256920","30.006192"],["-90.256790","30.006202"],["-90.256660","30.006212"],["-90.256531","30.006222"],["-90.256401","30.006232"],["-90.256271","30.006243"],["-90.256142","30.006253"],["-90.256012","30.006263"],["-90.255882","30.006273"],["-90.255753","30.006283"],["-90.255623","30.006293"],["-90.255494","30.006303"],["-90.255364","30.006313"],["-90.255234","30.006323"],["-90.255105","30.006333"],["-90.254975","30.006343"],["-90.254845","30.006353"],["-90.254716","30.006364"],["-90.254586","30.006374"],["-90.254456","30.006384"],["-90.254327","30.006394"],["-90.254197","30.006404"],["-90.254068","30.006414"],["-90.253938","30.006424"],["-90.253808","30.006434"],["-90.253679","30.006444"],["-90.253549","30.006454"],["-90.253419","30.006464"],["-90.253290","30.006474"],["-90.253160","30.006485"],["-90.253030","30.006495"],["-90.252901","30.006505"],["-90.252771","30.006515"],["-90.252642","30.006525"],["-90.252512","30.006535"],["-90.252382","30.006545"],["-90.252253","30.006555"],["-90.252123","30.006565"],["-90.251993","30.006575"],["-90.251864","30.006585"],["-90.251734","30.006595"],["-90.251604","30.006606"],["-90.251475","30.006616"],["-90.251345","30.006626"],["-90.251215","30.006636"],["-90.251086","30.006646"],["-90.250956","30.006656"],["-90.250827","30.006666"],["-90.250697","30.006676"],["-90.250567","30.006686"],["-90.250438","30.006696"],["-90.250308","30.006706"],["-90.250178","30.006716"],["-90.250049","30.006727"],["-90.249919","30.006737"],["-90.249789","30.006747"],["-90.249660","30.006757"],["-90.249530","30.006767"],["-90.249401","30.006777"],["-90.249271","30.006787"],["-90.249141","30.006797"],["-90.249012","30.006807"],["-90.248882","30.006817"],["-90.248751","30.006824"],["-90.248620","30.006830"],["-90.248490","30.006836"],["-90.248359","30.006843"],["-90.248228","30.006849"],["-90.248097","30.006856"],["-90.247967","30.006862"],["-90.247836","30.006868"],["-90.247705","30.006875"],["-90.247574","30.006881"],["-90.247444","30.006887"],["-90.247313","30.006894"],["-90.247182","30.006900"],["-90.247051","30.006907"],["-90.246921","30.006913"],["-90.246790","30.006919"],["-90.246589","30.006906"],["-90.246389","30.006893"],["-90.246188","30.006880"],["-90.245988","30.006867"],["-90.245787","30.006854"],["-90.245587","30.006841"],["-90.245386","30.006828"],["-90.245186","30.006815"],["-90.244985","30.006802"],["-90.244785","30.006789"],["-90.244584","30.006776"],["-90.244384","30.006763"],["-90.244183","30.006750"],["-90.243983","30.006737"],["-90.243782","30.006723"],["-90.243582","30.006710"],["-90.243381","30.006697"],["-90.243181","30.006684"],["-90.242980","30.006671"],["-90.242780","30.006658"],["-90.242579","30.006645"],["-90.242379","30.006632"],["-90.242178","30.006619"],["-90.241978","30.006606"],["-90.241777","30.006593"],["-90.241577","30.006580"],["-90.241377","30.006567"],["-90.241176","30.006554"],["-90.240976","30.006541"],["-90.240775","30.006527"],["-90.240575","30.006514"],["-90.240374","30.006501"],["-90.240365","30.006615"],["-90.240357","30.006728"],["-90.240348","30.006841"],["-90.240339","30.006954"],["-90.240330","30.007067"],["-90.240322","30.007181"],["-90.240313","30.007294"],["-90.240304","30.007407"],["-90.240296","30.007520"],["-90.240287","30.007634"],["-90.240278","30.007747"],["-90.240269","30.007860"],["-90.240261","30.007973"],["-90.240252","30.008087"],["-90.240243","30.008200"],["-90.240235","30.008313"],["-90.240151","30.008476"],["-90.240068","30.008638"],["-90.239985","30.008801"],["-90.239902","30.008963"],["-90.239757","30.008981"],["-90.239613","30.009000"],["-90.239500","30.008998"],["-90.239387","30.008996"],["-90.239273","30.008994"],["-90.239160","30.008993"],["-90.239047","30.008991"],["-90.238934","30.008989"],["-90.238820","30.008987"],["-90.238707","30.008985"],["-90.238594","30.008983"],["-90.238481","30.008981"],["-90.238368","30.008979"],["-90.238254","30.008978"],["-90.238141","30.008976"],["-90.238028","30.008974"],["-90.237915","30.008972"],["-90.237801","30.008970"],["-90.237688","30.008968"],["-90.237575","30.008966"],["-90.237462","30.008964"],["-90.237349","30.008963"],["-90.237235","30.008961"],["-90.237122","30.008959"],["-90.237009","30.008957"],["-90.236896","30.008955"],["-90.236783","30.008953"],["-90.236669","30.008951"],["-90.236556","30.008949"],["-90.236443","30.008948"],["-90.236330","30.008946"],["-90.236216","30.008944"],["-90.236103","30.008942"],["-90.235990","30.008940"],["-90.235841","30.008930"],["-90.235692","30.008920"],["-90.235544","30.008910"],["-90.235395","30.008900"],["-90.235246","30.008890"],["-90.235097","30.008880"],["-90.234949","30.008870"],["-90.234800","30.008860"],["-90.234645","30.008850"],["-90.234490","30.008840"],["-90.234335","30.008830"],["-90.234180","30.008820"],["-90.234025","30.008810"],["-90.233870","30.008800"],["-90.233715","30.008790"],["-90.233560","30.008780"],["-90.233429","30.008771"],["-90.233299","30.008763"],["-90.233168","30.008754"],["-90.233037","30.008745"],["-90.232907","30.008736"],["-90.232776","30.008728"],["-90.232646","30.008719"],["-90.232515","30.008710"],["-90.232384","30.008701"],["-90.232254","30.008693"],["-90.232123","30.008684"],["-90.231992","30.008675"],["-90.231862","30.008666"],["-90.231731","30.008658"],["-90.231601","30.008649"],["-90.231470","30.008640"],["-90.231352","30.008633"],["-90.231234","30.008625"],["-90.231116","30.008618"],["-90.230997","30.008610"],["-90.230879","30.008603"],["-90.230761","30.008595"],["-90.230643","30.008588"],["-90.230525","30.008580"],["-90.230407","30.008573"],["-90.230289","30.008565"],["-90.230171","30.008558"],["-90.230052","30.008550"],["-90.229934","30.008543"],["-90.229816","30.008535"],["-90.229698","30.008528"],["-90.229580","30.008520"],["-90.229389","30.008509"],["-90.229197","30.008498"],["-90.229006","30.008486"],["-90.228815","30.008475"],["-90.228624","30.008464"],["-90.228432","30.008453"],["-90.228241","30.008441"],["-90.228050","30.008430"],["-90.227899","30.008420"],["-90.227749","30.008410"],["-90.227598","30.008400"],["-90.227447","30.008390"],["-90.227297","30.008380"],["-90.227146","30.008370"],["-90.226996","30.008360"],["-90.226845","30.008350"],["-90.226694","30.008340"],["-90.226544","30.008330"],["-90.226393","30.008320"],["-90.226242","30.008310"],["-90.226092","30.008300"],["-90.225941","30.008290"],["-90.225791","30.008280"],["-90.225640","30.008270"],["-90.225437","30.008256"],["-90.225235","30.008243"],["-90.225032","30.008229"],["-90.224830","30.008215"],["-90.224627","30.008201"],["-90.224425","30.008188"],["-90.224222","30.008174"],["-90.224020","30.008160"],["-90.223846","30.008149"],["-90.223672","30.008138"],["-90.223499","30.008126"],["-90.223325","30.008115"],["-90.223151","30.008104"],["-90.222977","30.008093"],["-90.222804","30.008081"],["-90.222630","30.008070"],["-90.222496","30.008063"],["-90.222362","30.008055"],["-90.222229","30.008048"],["-90.222095","30.008040"],["-90.221961","30.008033"],["-90.221827","30.008025"],["-90.221694","30.008018"],["-90.221560","30.008010"],["-90.221445","30.008000"],["-90.221330","30.007990"],["-90.221180","30.007980"],["-90.221000","30.007970"],["-90.220836","30.007959"],["-90.220671","30.007949"],["-90.220507","30.007938"],["-90.220342","30.007928"],["-90.220178","30.007917"],["-90.220014","30.007906"],["-90.219849","30.007896"],["-90.219685","30.007885"],["-90.219521","30.007874"],["-90.219356","30.007864"],["-90.219192","30.007853"],["-90.219027","30.007843"],["-90.218863","30.007832"],["-90.218699","30.007821"],["-90.218534","30.007811"],["-90.218370","30.007800"],["-90.218245","30.007790"],["-90.218120","30.007780"],["-90.217925","30.007768"],["-90.217730","30.007755"],["-90.217535","30.007743"],["-90.217340","30.007730"],["-90.217145","30.007718"],["-90.216950","30.007705"],["-90.216755","30.007693"],["-90.216560","30.007680"],["-90.216439","30.007672"],["-90.216317","30.007664"],["-90.216196","30.007656"],["-90.216075","30.007648"],["-90.215954","30.007639"],["-90.215832","30.007631"],["-90.215711","30.007623"],["-90.215590","30.007615"],["-90.215469","30.007607"],["-90.215347","30.007599"],["-90.215226","30.007591"],["-90.215105","30.007583"],["-90.214984","30.007574"],["-90.214862","30.007566"],["-90.214741","30.007558"],["-90.214620","30.007550"],["-90.214480","30.007550"],["-90.214340","30.007530"],["-90.214200","30.007520"],["-90.214090","30.007510"],["-90.213980","30.007500"],["-90.213800","30.007460"],["-90.213780","30.007460"],["-90.213670","30.007445"],["-90.213560","30.007430"],["-90.213350","30.007390"],["-90.213230","30.007365"],["-90.213110","30.007340"],["-90.212995","30.007315"],["-90.212880","30.007290"],["-90.212670","30.007230"],["-90.212555","30.007200"],["-90.212440","30.007170"],["-90.212260","30.007110"],["-90.212060","30.007050"],["-90.212000","30.007030"],["-90.211900","30.006990"],["-90.211810","30.006960"],["-90.211690","30.006915"],["-90.211570","30.006870"],["-90.211410","30.006800"],["-90.211250","30.006730"],["-90.211125","30.006670"],["-90.211000","30.006610"],["-90.210880","30.006550"],["-90.210760","30.006490"],["-90.210680","30.006450"],["-90.210550","30.006380"],["-90.210510","30.006350"],["-90.210330","30.006250"],["-90.210230","30.006190"],["-90.210110","30.006120"],["-90.209992","30.006048"],["-90.209875","30.005975"],["-90.209757","30.005903"],["-90.209640","30.005830"],["-90.209470","30.005728"],["-90.209300","30.005625"],["-90.209130","30.005523"],["-90.208960","30.005420"],["-90.208830","30.005338"],["-90.208700","30.005256"],["-90.208570","30.005174"],["-90.208440","30.005093"],["-90.208310","30.005011"],["-90.208180","30.004929"],["-90.208050","30.004847"],["-90.207920","30.004765"],["-90.207790","30.004683"],["-90.207660","30.004601"],["-90.207530","30.004519"],["-90.207400","30.004438"],["-90.207270","30.004356"],["-90.207140","30.004274"],["-90.207010","30.004192"],["-90.206880","30.004110"],["-90.206752","30.004033"],["-90.206625","30.003955"],["-90.206497","30.003878"],["-90.206370","30.003800"],["-90.206267","30.003738"],["-90.206165","30.003675"],["-90.206062","30.003613"],["-90.205960","30.003550"],["-90.205787","30.003445"],["-90.205615","30.003340"],["-90.205442","30.003235"],["-90.205270","30.003130"],["-90.205130","30.003040"],["-90.204970","30.002930"],["-90.204825","30.002825"],["-90.204680","30.002720"],["-90.204530","30.002620"],["-90.204425","30.002558"],["-90.204320","30.002495"],["-90.204215","30.002433"],["-90.204110","30.002370"],["-90.204080","30.002350"],["-90.203940","30.002270"],["-90.203800","30.002190"],["-90.203695","30.002130"],["-90.203590","30.002070"],["-90.203492","30.002018"],["-90.203395","30.001965"],["-90.203297","30.001913"],["-90.203200","30.001860"],["-90.203010","30.001765"],["-90.202820","30.001670"],["-90.202650","30.001585"],["-90.202480","30.001500"],["-90.202300","30.001415"],["-90.202120","30.001330"],["-90.201995","30.001275"],["-90.201870","30.001220"],["-90.201740","30.001165"],["-90.201610","30.001110"],["-90.201445","30.001040"],["-90.201280","30.000970"],["-90.201095","30.000900"],["-90.200910","30.000830"],["-90.200740","30.000765"],["-90.200570","30.000700"],["-90.200430","30.000655"],["-90.200290","30.000610"],["-90.200100","30.000550"],["-90.199910","30.000490"],["-90.199795","30.000455"],["-90.199680","30.000420"],["-90.199510","30.000370"],["-90.199310","30.000310"],["-90.199197","30.000280"],["-90.199085","30.000250"],["-90.198972","30.000220"],["-90.198860","30.000190"],["-90.198740","30.000160"],["-90.198620","30.000130"],["-90.198500","30.000100"],["-90.198380","30.000070"],["-90.198185","30.000025"],["-90.197990","29.999980"],["-90.197780","29.999940"],["-90.197590","29.999900"],["-90.197390","29.999870"],["-90.197230","29.999840"],["-90.197055","29.999810"],["-90.196880","29.999780"],["-90.196700","29.999750"],["-90.196520","29.999720"],["-90.196340","29.999700"],["-90.196160","29.999680"],["-90.196025","29.999665"],["-90.195890","29.999650"],["-90.195685","29.999630"],["-90.195480","29.999610"],["-90.195290","29.999600"],["-90.195100","29.999590"],["-90.194910","29.999580"],["-90.194720","29.999570"],["-90.194512","29.999558"],["-90.194305","29.999545"],["-90.194097","29.999533"],["-90.193890","29.999520"],["-90.193700","29.999510"],["-90.193510","29.999500"],["-90.193320","29.999490"],["-90.193130","29.999480"],["-90.193060","29.999470"],["-90.192931","29.999463"],["-90.192802","29.999455"],["-90.192674","29.999448"],["-90.192545","29.999440"],["-90.192416","29.999433"],["-90.192287","29.999425"],["-90.192159","29.999418"],["-90.192030","29.999410"],["-90.192020","29.999410"],["-90.191865","29.999400"],["-90.191710","29.999390"],["-90.191555","29.999380"],["-90.191400","29.999370"],["-90.191245","29.999360"],["-90.191090","29.999350"],["-90.190935","29.999340"],["-90.190780","29.999330"],["-90.190572","29.999318"],["-90.190365","29.999305"],["-90.190157","29.999293"],["-90.189950","29.999280"],["-90.189795","29.999270"],["-90.189640","29.999260"],["-90.189485","29.999250"],["-90.189330","29.999240"],["-90.189175","29.999230"],["-90.189020","29.999220"],["-90.188865","29.999210"],["-90.188710","29.999200"],["-90.188595","29.999193"],["-90.188480","29.999186"],["-90.188365","29.999179"],["-90.188250","29.999173"],["-90.188135","29.999166"],["-90.188020","29.999159"],["-90.187905","29.999152"],["-90.187790","29.999145"],["-90.187675","29.999138"],["-90.187560","29.999131"],["-90.187445","29.999124"],["-90.187330","29.999118"],["-90.187215","29.999111"],["-90.187100","29.999104"],["-90.186985","29.999097"],["-90.186870","29.999090"],["-90.186732","29.999080"],["-90.186595","29.999070"],["-90.186457","29.999060"],["-90.186320","29.999050"],["-90.186151","29.999039"],["-90.185982","29.999029"],["-90.185814","29.999018"],["-90.185645","29.999008"],["-90.185476","29.998997"],["-90.185307","29.998986"],["-90.185139","29.998976"],["-90.184970","29.998965"],["-90.184801","29.998954"],["-90.184632","29.998944"],["-90.184464","29.998933"],["-90.184295","29.998923"],["-90.184126","29.998912"],["-90.183957","29.998901"],["-90.183789","29.998891"],["-90.183620","29.998880"],["-90.183498","29.998873"],["-90.183376","29.998865"],["-90.183254","29.998858"],["-90.183132","29.998850"],["-90.183011","29.998843"],["-90.182889","29.998835"],["-90.182767","29.998828"],["-90.182645","29.998820"],["-90.182523","29.998813"],["-90.182401","29.998805"],["-90.182279","29.998798"],["-90.182157","29.998790"],["-90.182036","29.998783"],["-90.181914","29.998775"],["-90.181792","29.998768"],["-90.181670","29.998760"],["-90.181548","29.998753"],["-90.181426","29.998745"],["-90.181304","29.998738"],["-90.181182","29.998730"],["-90.181061","29.998723"],["-90.180939","29.998715"],["-90.180817","29.998708"],["-90.180695","29.998700"],["-90.180573","29.998693"],["-90.180451","29.998685"],["-90.180329","29.998678"],["-90.180207","29.998670"],["-90.180086","29.998663"],["-90.179964","29.998655"],["-90.179842","29.998648"],["-90.179720","29.998640"],["-90.179499","29.998626"],["-90.179277","29.998613"],["-90.179056","29.998599"],["-90.178835","29.998585"],["-90.178614","29.998571"],["-90.178392","29.998558"],["-90.178171","29.998544"],["-90.177950","29.998530"],["-90.177795","29.998523"],["-90.177640","29.998515"],["-90.177485","29.998508"],["-90.177330","29.998500"],["-90.177120","29.998480"],["-90.177100","29.998480"],["-90.176895","29.998470"],["-90.176690","29.998460"],["-90.176525","29.998445"],["-90.176360","29.998430"],["-90.176145","29.998415"],["-90.175930","29.998400"],["-90.175860","29.998400"],["-90.175720","29.998390"],["-90.175526","29.998378"],["-90.175332","29.998366"],["-90.175139","29.998354"],["-90.174945","29.998343"],["-90.174751","29.998331"],["-90.174557","29.998319"],["-90.174364","29.998307"],["-90.174170","29.998295"],["-90.173976","29.998283"],["-90.173782","29.998271"],["-90.173589","29.998259"],["-90.173395","29.998248"],["-90.173201","29.998236"],["-90.173007","29.998224"],["-90.172814","29.998212"],["-90.172620","29.998200"],["-90.172499","29.998193"],["-90.172377","29.998185"],["-90.172256","29.998178"],["-90.172135","29.998170"],["-90.172014","29.998163"],["-90.171892","29.998155"],["-90.171771","29.998148"],["-90.171650","29.998140"],["-90.171535","29.998133"],["-90.171420","29.998126"],["-90.171305","29.998119"],["-90.171190","29.998113"],["-90.171075","29.998106"],["-90.170960","29.998099"],["-90.170845","29.998092"],["-90.170730","29.998085"],["-90.170615","29.998078"],["-90.170500","29.998071"],["-90.170385","29.998064"],["-90.170270","29.998058"],["-90.170155","29.998051"],["-90.170040","29.998044"],["-90.169925","29.998037"],["-90.169810","29.998030"],["-90.169640","29.998020"],["-90.169470","29.998010"],["-90.169300","29.998000"],["-90.169130","29.997990"],["-90.168957","29.997978"],["-90.168785","29.997965"],["-90.168612","29.997953"],["-90.168440","29.997940"],["-90.168320","29.997940"],["-90.168112","29.997928"],["-90.167905","29.997915"],["-90.167697","29.997903"],["-90.167490","29.997890"],["-90.167270","29.997878"],["-90.167050","29.997865"],["-90.166830","29.997853"],["-90.166610","29.997840"],["-90.166390","29.997828"],["-90.166170","29.997815"],["-90.165950","29.997803"],["-90.165730","29.997790"],["-90.165521","29.997780"],["-90.165312","29.997770"],["-90.165104","29.997760"],["-90.164895","29.997750"],["-90.164686","29.997740"],["-90.164477","29.997730"],["-90.164269","29.997720"],["-90.164060","29.997710"],["-90.163851","29.997700"],["-90.163642","29.997690"],["-90.163434","29.997680"],["-90.163225","29.997670"],["-90.163016","29.997660"],["-90.162807","29.997650"],["-90.162599","29.997640"],["-90.162390","29.997630"],["-90.162227","29.997628"],["-90.162065","29.997625"],["-90.161902","29.997623"],["-90.161740","29.997620"],["-90.161547","29.997610"],["-90.161355","29.997600"],["-90.161162","29.997590"],["-90.160970","29.997580"],["-90.160822","29.997574"],["-90.160675","29.997569"],["-90.160527","29.997563"],["-90.160380","29.997558"],["-90.160232","29.997552"],["-90.160085","29.997546"],["-90.159937","29.997541"],["-90.159790","29.997535"],["-90.159642","29.997529"],["-90.159495","29.997524"],["-90.159347","29.997518"],["-90.159200","29.997513"],["-90.159052","29.997507"],["-90.158905","29.997501"],["-90.158757","29.997496"],["-90.158610","29.997490"],["-90.158447","29.997483"],["-90.158285","29.997476"],["-90.158122","29.997469"],["-90.157960","29.997463"],["-90.157797","29.997456"],["-90.157635","29.997449"],["-90.157472","29.997442"],["-90.157310","29.997435"],["-90.157147","29.997428"],["-90.156985","29.997421"],["-90.156822","29.997414"],["-90.156660","29.997408"],["-90.156497","29.997401"],["-90.156335","29.997394"],["-90.156172","29.997387"],["-90.156010","29.997380"],["-90.155791","29.997369"],["-90.155572","29.997358"],["-90.155354","29.997346"],["-90.155135","29.997335"],["-90.154916","29.997324"],["-90.154697","29.997313"],["-90.154479","29.997301"],["-90.154260","29.997290"],["-90.154145","29.997285"],["-90.154030","29.997280"],["-90.153911","29.997275"],["-90.153792","29.997270"],["-90.153674","29.997265"],["-90.153555","29.997260"],["-90.153436","29.997255"],["-90.153317","29.997250"],["-90.153199","29.997245"],["-90.153080","29.997240"],["-90.152961","29.997235"],["-90.152842","29.997230"],["-90.152724","29.997225"],["-90.152605","29.997220"],["-90.152486","29.997215"],["-90.152367","29.997210"],["-90.152249","29.997205"],["-90.152130","29.997200"],["-90.151989","29.997194"],["-90.151849","29.997189"],["-90.151708","29.997183"],["-90.151567","29.997178"],["-90.151427","29.997172"],["-90.151286","29.997166"],["-90.151146","29.997161"],["-90.151005","29.997155"],["-90.150864","29.997149"],["-90.150724","29.997144"],["-90.150583","29.997138"],["-90.150442","29.997133"],["-90.150302","29.997127"],["-90.150161","29.997121"],["-90.150021","29.997116"],["-90.149880","29.997110"],["-90.149725","29.997104"],["-90.149570","29.997098"],["-90.149415","29.997091"],["-90.149260","29.997085"],["-90.149105","29.997079"],["-90.148950","29.997073"],["-90.148795","29.997066"],["-90.148640","29.997060"],["-90.148460","29.997060"],["-90.148300","29.997050"],["-90.148095","29.997043"],["-90.147890","29.997035"],["-90.147685","29.997028"],["-90.147480","29.997020"],["-90.147305","29.997015"],["-90.147130","29.997010"],["-90.146910","29.997030"],["-90.146770","29.997025"],["-90.146630","29.997020"],["-90.146490","29.997015"],["-90.146350","29.997010"],["-90.146170","29.997000"],["-90.145949","29.996991"],["-90.145727","29.996983"],["-90.145506","29.996974"],["-90.145285","29.996965"],["-90.145064","29.996956"],["-90.144842","29.996948"],["-90.144621","29.996939"],["-90.144400","29.996930"],["-90.144250","29.996920"],["-90.144095","29.996915"],["-90.143940","29.996910"],["-90.143785","29.996905"],["-90.143630","29.996900"],["-90.143500","29.996900"],["-90.143385","29.996895"],["-90.143270","29.996890"],["-90.143080","29.996880"],["-90.143070","29.996880"],["-90.142930","29.996870"],["-90.142860","29.996870"],["-90.142850","29.996870"],["-90.142680","29.996860"],["-90.142660","29.996860"],["-90.142640","29.996860"],["-90.142490","29.996850"],["-90.142430","29.996850"],["-90.142267","29.996843"],["-90.142105","29.996835"],["-90.141942","29.996828"],["-90.141780","29.996820"],["-90.141650","29.996815"],["-90.141520","29.996810"],["-90.141390","29.996805"],["-90.141260","29.996800"],["-90.141130","29.996795"],["-90.141000","29.996790"],["-90.140870","29.996785"],["-90.140740","29.996780"],["-90.140540","29.996770"],["-90.140335","29.996760"],["-90.140130","29.996750"],["-90.139930","29.996740"],["-90.139775","29.996735"],["-90.139620","29.996730"],["-90.139409","29.996720"],["-90.139197","29.996710"],["-90.138986","29.996700"],["-90.138775","29.996690"],["-90.138564","29.996680"],["-90.138352","29.996670"],["-90.138141","29.996660"],["-90.137930","29.996650"],["-90.137810","29.996645"],["-90.137690","29.996640"],["-90.137570","29.996635"],["-90.137450","29.996630"],["-90.137329","29.996624"],["-90.137207","29.996618"],["-90.137086","29.996611"],["-90.136965","29.996605"],["-90.136844","29.996599"],["-90.136722","29.996593"],["-90.136601","29.996586"],["-90.136480","29.996580"],["-90.136359","29.996576"],["-90.136237","29.996573"],["-90.136116","29.996569"],["-90.135995","29.996565"],["-90.135874","29.996561"],["-90.135752","29.996558"],["-90.135631","29.996554"],["-90.135510","29.996550"],["-90.135430","29.996540"],["-90.135240","29.996530"],["-90.135210","29.996530"],["-90.135070","29.996530"],["-90.134935","29.996523"],["-90.134800","29.996515"],["-90.134665","29.996508"],["-90.134530","29.996500"],["-90.134395","29.996493"],["-90.134260","29.996485"],["-90.134125","29.996478"],["-90.133990","29.996470"],["-90.133950","29.996470"],["-90.133740","29.996460"],["-90.133600","29.996450"],["-90.133460","29.996440"],["-90.133280","29.996435"],["-90.133100","29.996430"],["-90.133060","29.996420"],["-90.132960","29.996420"],["-90.132890","29.996420"],["-90.132780","29.996410"],["-90.132770","29.996410"],["-90.132680","29.996410"],["-90.132555","29.996405"],["-90.132430","29.996400"],["-90.132280","29.996390"],["-90.132130","29.996380"],["-90.132040","29.996380"],["-90.131940","29.996370"],["-90.131840","29.996370"],["-90.131670","29.996360"],["-90.131630","29.996360"],["-90.131416","29.996348"],["-90.131202","29.996335"],["-90.130989","29.996323"],["-90.130775","29.996310"],["-90.130561","29.996298"],["-90.130347","29.996285"],["-90.130134","29.996273"],["-90.129920","29.996260"],["-90.129725","29.996253"],["-90.129530","29.996245"],["-90.129335","29.996238"],["-90.129140","29.996230"],["-90.128979","29.996224"],["-90.128817","29.996218"],["-90.128656","29.996211"],["-90.128495","29.996205"],["-90.128334","29.996199"],["-90.128172","29.996193"],["-90.128011","29.996186"],["-90.127850","29.996180"],["-90.127700","29.996170"],["-90.127537","29.996165"],["-90.127375","29.996160"],["-90.127212","29.996155"],["-90.127050","29.996150"],["-90.126970","29.996150"],["-90.126835","29.996145"],["-90.126700","29.996140"],["-90.126570","29.996140"],["-90.126439","29.996133"],["-90.126307","29.996125"],["-90.126176","29.996118"],["-90.126045","29.996110"],["-90.125914","29.996103"],["-90.125782","29.996095"],["-90.125651","29.996088"],["-90.125520","29.996080"],["-90.125370","29.996000"],["-90.125240","29.995980"],["-90.125080","29.995965"],["-90.124920","29.995950"],["-90.124840","29.995940"],["-90.124720","29.995925"],["-90.124600","29.995910"],["-90.124480","29.995895"],["-90.124360","29.995880"],["-90.124150","29.995850"],["-90.123940","29.995820"],["-90.123775","29.995800"],["-90.123610","29.995780"],["-90.123477","29.995760"],["-90.123345","29.995740"],["-90.123212","29.995720"],["-90.123080","29.995700"],["-90.122950","29.995680"],["-90.122820","29.995660"],["-90.122690","29.995640"],["-90.122560","29.995620"],["-90.122460","29.995610"],["-90.122330","29.995590"],["-90.122200","29.995570"],["-90.122000","29.995535"],["-90.121800","29.995500"],["-90.121770","29.995490"],["-90.121625","29.995455"],["-90.121480","29.995420"],["-90.121335","29.995385"],["-90.121190","29.995350"],["-90.121020","29.995300"],["-90.120850","29.995250"],["-90.120780","29.995230"],["-90.120710","29.995210"],["-90.120570","29.995160"],["-90.120430","29.995110"],["-90.120255","29.995045"],["-90.120080","29.994980"],["-90.120020","29.994950"],["-90.119855","29.994880"],["-90.119690","29.994810"],["-90.119515","29.994725"],["-90.119340","29.994640"],["-90.119280","29.994610"],["-90.119200","29.994570"],["-90.119102","29.994518"],["-90.119005","29.994465"],["-90.118907","29.994413"],["-90.118810","29.994360"],["-90.118640","29.994260"],["-90.118507","29.994170"],["-90.118375","29.994080"],["-90.118242","29.993990"],["-90.118110","29.993900"],["-90.117975","29.993790"],["-90.117840","29.993680"],["-90.117745","29.993595"],["-90.117650","29.993510"],["-90.117560","29.993420"],["-90.117470","29.993325"],["-90.117380","29.993230"],["-90.117360","29.993200"],["-90.117240","29.993055"],["-90.117120","29.992910"],["-90.117045","29.992800"],["-90.116970","29.992690"],["-90.116960","29.992670"],["-90.116910","29.992590"],["-90.116855","29.992500"],["-90.116800","29.992410"],["-90.116750","29.992300"],["-90.116710","29.992230"],["-90.116700","29.992190"],["-90.116630","29.992020"],["-90.116610","29.991990"],["-90.116555","29.991810"],["-90.116500","29.991630"],["-90.116465","29.991505"],["-90.116430","29.991380"],["-90.116410","29.991270"],["-90.116390","29.991160"],["-90.116375","29.991040"],["-90.116360","29.990920"],["-90.116345","29.990795"],["-90.116330","29.990670"],["-90.116330","29.990590"],["-90.116320","29.990480"],["-90.116320","29.990440"],["-90.116320","29.990310"],["-90.116330","29.990170"],["-90.116335","29.990015"],["-90.116340","29.989860"],["-90.116340","29.989810"],["-90.116340","29.989760"],["-90.116340","29.989730"],["-90.116350","29.989620"],["-90.116358","29.989475"],["-90.116365","29.989330"],["-90.116373","29.989185"],["-90.116380","29.989040"],["-90.116390","29.988850"],["-90.116380","29.988720"],["-90.116380","29.988680"],["-90.116380","29.988660"],["-90.116370","29.988540"],["-90.116360","29.988430"],["-90.116350","29.988400"],["-90.116340","29.988285"],["-90.116330","29.988170"],["-90.116310","29.988000"],["-90.116280","29.987815"],["-90.116250","29.987630"],["-90.116225","29.987505"],["-90.116200","29.987380"],["-90.116175","29.987255"],["-90.116150","29.987130"],["-90.116105","29.986955"],["-90.116060","29.986780"],["-90.116030","29.986680"],["-90.115980","29.986548"],["-90.115930","29.986415"],["-90.115880","29.986283"],["-90.115830","29.986150"],["-90.115775","29.986005"],["-90.115720","29.985860"],["-90.115680","29.985755"],["-90.115640","29.985650"],["-90.115600","29.985545"],["-90.115560","29.985440"],["-90.115520","29.985335"],["-90.115480","29.985230"],["-90.115440","29.985125"],["-90.115400","29.985020"],["-90.115360","29.984920"],["-90.115320","29.984820"],["-90.115280","29.984720"],["-90.115240","29.984620"],["-90.115190","29.984490"],["-90.115140","29.984360"],["-90.115130","29.984320"],["-90.115080","29.984210"],["-90.115060","29.984150"],["-90.115017","29.984038"],["-90.114975","29.983925"],["-90.114932","29.983813"],["-90.114890","29.983700"],["-90.114830","29.983540"],["-90.114800","29.983470"],["-90.114742","29.983318"],["-90.114685","29.983165"],["-90.114627","29.983013"],["-90.114570","29.982860"],["-90.114550","29.982820"],["-90.114500","29.982690"],["-90.114425","29.982520"],["-90.114350","29.982350"],["-90.114330","29.982290"],["-90.114330","29.982280"],["-90.114320","29.982260"],["-90.114320","29.982240"],["-90.114282","29.982138"],["-90.114245","29.982035"],["-90.114207","29.981933"],["-90.114170","29.981830"],["-90.114160","29.981810"],["-90.114160","29.981800"],["-90.114120","29.981720"],["-90.114080","29.981620"],["-90.114040","29.981520"],["-90.114000","29.981420"],["-90.113960","29.981320"],["-90.113950","29.981300"],["-90.113910","29.981170"],["-90.113890","29.981130"],["-90.113840","29.981010"],["-90.113810","29.980950"],["-90.113770","29.980860"],["-90.113740","29.980770"],["-90.113690","29.980630"],["-90.113690","29.980620"],["-90.113650","29.980520"],["-90.113610","29.980420"],["-90.113570","29.980320"],["-90.113530","29.980220"],["-90.113490","29.980120"],["-90.113420","29.979940"],["-90.113372","29.979823"],["-90.113325","29.979705"],["-90.113277","29.979588"],["-90.113230","29.979470"],["-90.113220","29.979430"],["-90.113147","29.979258"],["-90.113075","29.979085"],["-90.113002","29.978913"],["-90.112930","29.978740"],["-90.112875","29.978603"],["-90.112820","29.978465"],["-90.112765","29.978328"],["-90.112710","29.978190"],["-90.112650","29.978040"],["-90.112590","29.977890"],["-90.112520","29.977720"],["-90.112460","29.977580"],["-90.112400","29.977440"],["-90.112352","29.977330"],["-90.112305","29.977220"],["-90.112257","29.977110"],["-90.112210","29.977000"],["-90.112145","29.976840"],["-90.112080","29.976680"],["-90.112015","29.976520"],["-90.111950","29.976360"],["-90.111892","29.976218"],["-90.111835","29.976075"],["-90.111777","29.975933"],["-90.111720","29.975790"],["-90.111690","29.975720"],["-90.111651","29.975610"],["-90.111612","29.975500"],["-90.111574","29.975390"],["-90.111535","29.975280"],["-90.111496","29.975170"],["-90.111457","29.975060"],["-90.111419","29.974950"],["-90.111380","29.974840"],["-90.111335","29.974700"],["-90.111290","29.974560"],["-90.111245","29.974423"],["-90.111200","29.974285"],["-90.111155","29.974148"],["-90.111110","29.974010"],["-90.111075","29.973885"],["-90.111040","29.973760"],["-90.111020","29.973700"],["-90.110960","29.973530"],["-90.110927","29.973428"],["-90.110895","29.973325"],["-90.110862","29.973223"],["-90.110830","29.973120"],["-90.110810","29.973060"],["-90.110750","29.972890"],["-90.110690","29.972730"],["-90.110690","29.972720"],["-90.110650","29.972610"],["-90.110590","29.972480"],["-90.110542","29.972378"],["-90.110495","29.972275"],["-90.110447","29.972173"],["-90.110400","29.972070"],["-90.110325","29.971935"],["-90.110250","29.971800"],["-90.110177","29.971660"],["-90.110105","29.971520"],["-90.110032","29.971380"],["-90.109960","29.971240"],["-90.109950","29.971230"],["-90.109920","29.971160"],["-90.109860","29.971060"],["-90.109820","29.970990"],["-90.109810","29.970960"],["-90.109800","29.970950"],["-90.109780","29.970900"],["-90.109720","29.970785"],["-90.109660","29.970670"],["-90.109595","29.970545"],["-90.109530","29.970420"],["-90.109465","29.970295"],["-90.109400","29.970170"],["-90.109340","29.970070"],["-90.109310","29.970010"],["-90.109280","29.969950"],["-90.109270","29.969930"],["-90.109250","29.969890"],["-90.109200","29.969800"],["-90.109115","29.969645"],["-90.109030","29.969490"],["-90.108980","29.969390"],["-90.108940","29.969330"],["-90.108910","29.969280"],["-90.108800","29.969120"],["-90.108700","29.968970"],["-90.108600","29.968840"],["-90.108560","29.968780"],["-90.108450","29.968660"],["-90.108340","29.968540"],["-90.108215","29.968410"],["-90.108090","29.968280"],["-90.108010","29.968190"],["-90.107920","29.968110"],["-90.107830","29.968030"],["-90.107780","29.967990"],["-90.107740","29.967950"],["-90.107730","29.967940"],["-90.107640","29.967850"],["-90.107630","29.967840"],["-90.107620","29.967840"],["-90.107610","29.967820"],["-90.107490","29.967700"],["-90.107370","29.967580"],["-90.107240","29.967460"],["-90.107120","29.967350"],["-90.107000","29.967240"],["-90.106890","29.967130"],["-90.106860","29.967100"],["-90.106850","29.967100"],["-90.106742","29.966998"],["-90.106635","29.966895"],["-90.106527","29.966793"],["-90.106420","29.966690"],["-90.106340","29.966613"],["-90.106260","29.966535"],["-90.106180","29.966458"],["-90.106100","29.966380"],["-90.106050","29.966330"],["-90.106030","29.966310"],["-90.106010","29.966300"],["-90.105970","29.966260"],["-90.105950","29.966240"],["-90.105800","29.966100"],["-90.105710","29.966010"],["-90.105620","29.965920"],["-90.105510","29.965825"],["-90.105400","29.965730"],["-90.105290","29.965635"],["-90.105180","29.965540"],["-90.105170","29.965530"],["-90.105080","29.965458"],["-90.104990","29.965385"],["-90.104900","29.965313"],["-90.104810","29.965240"],["-90.104720","29.965180"],["-90.104600","29.965090"],["-90.104510","29.965025"],["-90.104420","29.964960"],["-90.104325","29.964895"],["-90.104230","29.964830"],["-90.104090","29.964730"],["-90.103930","29.964620"],["-90.103930","29.964610"],["-90.103827","29.964538"],["-90.103725","29.964465"],["-90.103622","29.964393"],["-90.103520","29.964320"],["-90.103410","29.964240"],["-90.103300","29.964160"],["-90.103180","29.964073"],["-90.103060","29.963985"],["-90.102940","29.963898"],["-90.102820","29.963810"],["-90.102740","29.963760"],["-90.102647","29.963695"],["-90.102555","29.963630"],["-90.102462","29.963565"],["-90.102370","29.963500"],["-90.102340","29.963470"],["-90.102180","29.963360"],["-90.102140","29.963330"],["-90.102010","29.963235"],["-90.101880","29.963140"],["-90.101752","29.963045"],["-90.101625","29.962950"],["-90.101497","29.962855"],["-90.101370","29.962760"],["-90.101242","29.962670"],["-90.101115","29.962580"],["-90.100987","29.962490"],["-90.100860","29.962400"],["-90.100710","29.962285"],["-90.100560","29.962170"],["-90.100395","29.962050"],["-90.100230","29.961930"],["-90.100120","29.961850"],["-90.100010","29.961770"],["-90.099899","29.961690"],["-90.099787","29.961610"],["-90.099676","29.961530"],["-90.099565","29.961450"],["-90.099454","29.961370"],["-90.099342","29.961290"],["-90.099231","29.961210"],["-90.099120","29.961130"],["-90.098970","29.961030"],["-90.098920","29.960990"],["-90.098757","29.960878"],["-90.098595","29.960765"],["-90.098432","29.960653"],["-90.098270","29.960540"],["-90.098165","29.960460"],["-90.098060","29.960380"],["-90.097942","29.960295"],["-90.097825","29.960210"],["-90.097707","29.960125"],["-90.097590","29.960040"],["-90.097490","29.959970"],["-90.097390","29.959900"],["-90.097250","29.959800"],["-90.097110","29.959700"],["-90.097014","29.959633"],["-90.096917","29.959565"],["-90.096821","29.959498"],["-90.096725","29.959430"],["-90.096629","29.959363"],["-90.096532","29.959295"],["-90.096436","29.959228"],["-90.096340","29.959160"],["-90.096200","29.959060"],["-90.096060","29.958960"],["-90.095920","29.958860"],["-90.095780","29.958760"],["-90.095666","29.958680"],["-90.095552","29.958600"],["-90.095439","29.958520"],["-90.095325","29.958440"],["-90.095211","29.958360"],["-90.095097","29.958280"],["-90.094984","29.958200"],["-90.094870","29.958120"],["-90.094850","29.958110"],["-90.094740","29.958030"],["-90.094630","29.957950"],["-90.094510","29.957870"],["-90.094490","29.957850"],["-90.094387","29.957778"],["-90.094285","29.957705"],["-90.094182","29.957633"],["-90.094080","29.957560"],["-90.093975","29.957488"],["-90.093870","29.957415"],["-90.093765","29.957343"],["-90.093660","29.957270"],["-90.093520","29.957175"],["-90.093380","29.957080"],["-90.093290","29.957020"],["-90.093130","29.956905"],["-90.092970","29.956790"],["-90.092810","29.956680"],["-90.092700","29.956600"],["-90.092590","29.956525"],["-90.092480","29.956450"],["-90.092325","29.956340"],["-90.092170","29.956230"],["-90.092170","29.956220"],["-90.092160","29.956220"],["-90.092010","29.956100"],["-90.091910","29.956030"],["-90.091800","29.955955"],["-90.091690","29.955880"],["-90.091680","29.955870"],["-90.091640","29.955840"],["-90.091550","29.955780"],["-90.091430","29.955690"],["-90.091400","29.955680"],["-90.091285","29.955595"],["-90.091170","29.955510"],["-90.091022","29.955405"],["-90.090875","29.955300"],["-90.090727","29.955195"],["-90.090580","29.955090"],["-90.090420","29.954980"],["-90.090315","29.954905"],["-90.090210","29.954830"],["-90.090105","29.954755"],["-90.090000","29.954680"],["-90.089890","29.954600"],["-90.089780","29.954520"],["-90.089680","29.954450"],["-90.089580","29.954380"],["-90.089490","29.954310"],["-90.089395","29.954245"],["-90.089300","29.954180"],["-90.089205","29.954115"],["-90.089110","29.954050"],["-90.088970","29.953950"],["-90.088860","29.953880"],["-90.088725","29.953783"],["-90.088590","29.953685"],["-90.088455","29.953588"],["-90.088320","29.953490"],["-90.088165","29.953395"],["-90.088010","29.953300"],["-90.087825","29.953200"],["-90.087640","29.953100"],["-90.087465","29.953010"],["-90.087290","29.952920"],["-90.087180","29.952860"],["-90.087090","29.952820"],["-90.086930","29.952720"],["-90.086750","29.952610"],["-90.086665","29.952548"],["-90.086580","29.952485"],["-90.086495","29.952423"],["-90.086410","29.952360"],["-90.086310","29.952270"],["-90.086250","29.952210"],["-90.086200","29.952140"],["-90.086120","29.952040"],["-90.086040","29.951940"],["-90.086000","29.951880"],["-90.085940","29.951780"],["-90.085880","29.951685"],["-90.085820","29.951590"],["-90.085765","29.951495"],["-90.085710","29.951400"],["-90.085680","29.951350"],["-90.085610","29.951200"],["-90.085530","29.951050"],["-90.085460","29.950930"],["-90.085410","29.950820"],["-90.085330","29.950660"],["-90.085250","29.950500"],["-90.085170","29.950340"],["-90.085090","29.950180"],["-90.085070","29.950075"],["-90.085050","29.949970"],["-90.085010","29.949870"],["-90.084960","29.949715"],["-90.084910","29.949560"],["-90.084850","29.949400"],["-90.084785","29.949225"],["-90.084720","29.949050"],["-90.084650","29.948880"],["-90.084640","29.948860"],["-90.084630","29.948820"],["-90.084590","29.948730"],["-90.084570","29.948670"],["-90.084560","29.948660"],["-90.084540","29.948630"],["-90.084490","29.948550"],["-90.084470","29.948510"],["-90.084460","29.948460"],["-90.084420","29.948410"],["-90.084310","29.948280"],["-90.084260","29.948220"],["-90.084190","29.948150"],["-90.084070","29.948050"],["-90.083990","29.948000"],["-90.083890","29.947950"],["-90.083740","29.947870"],["-90.083730","29.947870"],["-90.083730","29.947860"],["-90.083720","29.947860"],["-90.083640","29.947810"],["-90.083460","29.947710"],["-90.083280","29.947610"],["-90.083100","29.947510"],["-90.082920","29.947410"],["-90.082820","29.947350"],["-90.082770","29.947320"],["-90.082680","29.947260"],["-90.082610","29.947210"],["-90.082540","29.947150"],["-90.082460","29.947090"],["-90.082390","29.947020"],["-90.082340","29.946970"],["-90.082320","29.946950"],["-90.082280","29.946920"],["-90.082200","29.946860"],["-90.082090","29.946790"],["-90.082030","29.946750"],["-90.081925","29.946695"],["-90.081820","29.946640"],["-90.081727","29.946583"],["-90.081635","29.946525"],["-90.081542","29.946468"],["-90.081450","29.946410"],["-90.081332","29.946338"],["-90.081215","29.946265"],["-90.081097","29.946193"],["-90.080980","29.946120"],["-90.080862","29.946048"],["-90.080745","29.945975"],["-90.080627","29.945903"],["-90.080510","29.945830"],["-90.080350","29.945738"],["-90.080190","29.945645"],["-90.080030","29.945553"],["-90.079870","29.945460"],["-90.079700","29.945360"],["-90.079530","29.945260"],["-90.079422","29.945195"],["-90.079315","29.945130"],["-90.079207","29.945065"],["-90.079100","29.945000"],["-90.078920","29.944900"],["-90.078820","29.944850"],["-90.078790","29.944830"],["-90.078740","29.944810"],["-90.078670","29.944790"],["-90.078600","29.944780"],["-90.078510","29.944770"],["-90.078470","29.944770"],["-90.078430","29.944770"],["-90.078390","29.944770"],["-90.078260","29.944770"],["-90.078180","29.944770"],["-90.078120","29.944780"],["-90.078060","29.944800"],["-90.078000","29.944810"],["-90.077980","29.944820"],["-90.077850","29.944910"],["-90.077720","29.945000"],["-90.077630","29.945060"],["-90.077610","29.945080"],["-90.077500","29.945190"],["-90.077430","29.945260"],["-90.077335","29.945385"],["-90.077240","29.945510"],["-90.077130","29.945660"],["-90.077017","29.945745"],["-90.076903","29.945829"],["-90.076903","29.945829"],["-90.076906","29.945942"],["-90.076823","29.946101"],["-90.076740","29.946260"],["-90.076730","29.946420"],["-90.076700","29.946550"],["-90.076675","29.946715"],["-90.076650","29.946880"],["-90.076610","29.947060"],["-90.076595","29.947160"],["-90.076580","29.947260"],["-90.076530","29.947425"],["-90.076480","29.947590"],["-90.076448","29.947708"],["-90.076415","29.947825"],["-90.076383","29.947943"],["-90.076350","29.948060"],["-90.076310","29.948180"],["-90.076270","29.948300"],["-90.076215","29.948286"],["-90.076270","29.948300"],["-90.076240","29.948400"],["-90.076210","29.948490"],["-90.076170","29.948648"],["-90.076130","29.948805"],["-90.076090","29.948963"],["-90.076050","29.949120"],["-90.076005","29.949290"],["-90.075960","29.949460"],["-90.075913","29.949625"],["-90.075865","29.949790"],["-90.075818","29.949955"],["-90.075770","29.950120"],["-90.075738","29.950230"],["-90.075705","29.950340"],["-90.075673","29.950450"],["-90.075640","29.950560"],["-90.075579","29.950548"],["-90.075640","29.950560"],["-90.075600","29.950680"],["-90.075550","29.950810"],["-90.075540","29.951000"],["-90.075530","29.951080"],["-90.075530","29.951150"],["-90.075530","29.951240"],["-90.075530","29.951290"],["-90.075540","29.951330"],["-90.075550","29.951410"],["-90.075570","29.951560"],["-90.075570","29.951620"],["-90.075570","29.951710"],["-90.075570","29.951780"],["-90.075474","29.951945"],["-90.075528","29.952090"],["-90.075489","29.952236"],["-90.075449","29.952383"],["-90.075410","29.952529"],["-90.075370","29.952675"],["-90.075331","29.952822"],["-90.075291","29.952968"],["-90.075252","29.953115"],["-90.075212","29.953261"],["-90.075171","29.953379"],["-90.075130","29.953498"],["-90.075089","29.953616"],["-90.075048","29.953734"],["-90.075007","29.953852"],["-90.074967","29.953970"],["-90.074926","29.954089"],["-90.074885","29.954207"],["-90.074779","29.954325"],["-90.074673","29.954444"],["-90.074567","29.954562"],["-90.074461","29.954681"],["-90.074355","29.954800"],["-90.074249","29.954918"],["-90.074143","29.955037"],["-90.074037","29.955155"],["-90.073975","29.955234"],["-90.074130","29.955317"],["-90.074284","29.955399"],["-90.074354","29.955319"],["-90.074424","29.955238"],["-90.074494","29.955158"],["-90.074564","29.955077"],["-90.074634","29.954997"],["-90.074704","29.954916"],["-90.074774","29.954836"],["-90.074845","29.954755"],["-90.074929","29.954646"],["-90.075013","29.954537"],["-90.075068","29.954439"],["-90.075123","29.954342"],["-90.075202","29.954207"],["-90.075280","29.954073"],["-90.075280","29.954073"]]},{"type":"MultiPoint","coordinates":[["-90.076537","29.948723"],["-90.077250","29.946349"],["-90.075911","29.951058"],["-90.078223","29.945659"],["-90.241519","30.006755"],["-90.255743","29.996841"],["-90.075280","29.954073"]]},{"type":"LineString","coordinates":[["-90.075280","29.954073"],["-90.075326","29.953909"],["-90.075372","29.953745"],["-90.075419","29.953581"],["-90.075465","29.953417"],["-90.075496","29.953305"],["-90.075526","29.953192"],["-90.075557","29.953079"],["-90.075588","29.952967"],["-90.075619","29.952854"],["-90.075650","29.952741"],["-90.075681","29.952628"],["-90.075711","29.952516"],["-90.075742","29.952361"],["-90.075773","29.952207"],["-90.075804","29.952052"],["-90.075835","29.951898"],["-90.075838","29.951734"],["-90.075840","29.951570"],["-90.075843","29.951406"],["-90.075846","29.951242"],["-90.075878","29.951150"],["-90.075911","29.951058"],["-90.075867","29.950908"],["-90.075890","29.950805"],["-90.075913","29.950703"],["-90.075936","29.950601"],["-90.075959","29.950499"],["-90.076000","29.950363"],["-90.076040","29.950226"],["-90.076081","29.950090"],["-90.076121","29.949953"],["-90.076162","29.949817"],["-90.076202","29.949680"],["-90.076244","29.949528"],["-90.076286","29.949375"],["-90.076328","29.949223"],["-90.076371","29.949071"],["-90.076413","29.948919"],["-90.076455","29.948767"],["-90.076537","29.948723"],["-90.076517","29.948537"],["-90.076557","29.948401"],["-90.076597","29.948264"],["-90.076637","29.948128"],["-90.076678","29.947992"],["-90.076718","29.947856"],["-90.076758","29.947720"],["-90.076798","29.947583"],["-90.076838","29.947447"],["-90.076879","29.947311"],["-90.076919","29.947175"],["-90.076959","29.947039"],["-90.076999","29.946902"],["-90.077040","29.946766"],["-90.077080","29.946630"],["-90.077120","29.946494"],["-90.077160","29.946358"],["-90.077250","29.946349"],["-90.077240","29.946010"],["-90.077295","29.945837"],["-90.077310","29.945790"],["-90.077518","29.945790"],["-90.077580","29.945790"],["-90.077720","29.945780"],["-90.077918","29.945727"],["-90.078020","29.945700"],["-90.078100","29.945700"],["-90.078180","29.945740"],["-90.078223","29.945659"],["-90.078027","29.945681"],["-90.077828","29.945741"],["-90.077630","29.945800"],["-90.077590","29.945800"],["-90.077540","29.945770"],["-90.077510","29.945740"],["-90.077490","29.945720"],["-90.077480","29.945700"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077665","29.945440"],["-90.077770","29.945390"],["-90.077840","29.945370"],["-90.077960","29.945320"],["-90.078064","29.945362"],["-90.078168","29.945403"],["-90.078272","29.945445"],["-90.078376","29.945487"],["-90.078480","29.945528"],["-90.078584","29.945570"],["-90.078688","29.945611"],["-90.078792","29.945653"],["-90.078897","29.945695"],["-90.079001","29.945736"],["-90.079105","29.945778"],["-90.079209","29.945820"],["-90.079313","29.945861"],["-90.079417","29.945903"],["-90.079521","29.945944"],["-90.079625","29.945986"],["-90.079733","29.946050"],["-90.079841","29.946113"],["-90.079950","29.946177"],["-90.080058","29.946240"],["-90.080166","29.946304"],["-90.080274","29.946368"],["-90.080383","29.946431"],["-90.080491","29.946495"],["-90.080599","29.946558"],["-90.080707","29.946622"],["-90.080816","29.946686"],["-90.080924","29.946749"],["-90.081032","29.946813"],["-90.081140","29.946876"],["-90.081249","29.946940"],["-90.081357","29.947004"],["-90.081465","29.947067"],["-90.081573","29.947131"],["-90.081682","29.947194"],["-90.081790","29.947258"],["-90.081898","29.947321"],["-90.082006","29.947385"],["-90.082115","29.947449"],["-90.082223","29.947512"],["-90.082331","29.947576"],["-90.082439","29.947639"],["-90.082548","29.947703"],["-90.082656","29.947767"],["-90.082764","29.947830"],["-90.082872","29.947894"],["-90.082981","29.947957"],["-90.083089","29.948021"],["-90.083194","29.948097"],["-90.083300","29.948173"],["-90.083405","29.948249"],["-90.083510","29.948326"],["-90.083616","29.948402"],["-90.083721","29.948478"],["-90.083827","29.948554"],["-90.083932","29.948630"],["-90.083998","29.948732"],["-90.084065","29.948833"],["-90.084131","29.948935"],["-90.084197","29.949037"],["-90.084264","29.949138"],["-90.084330","29.949240"],["-90.084397","29.949342"],["-90.084463","29.949444"],["-90.084529","29.949545"],["-90.084596","29.949647"],["-90.084662","29.949749"],["-90.084728","29.949850"],["-90.084795","29.949952"],["-90.084861","29.950054"],["-90.084928","29.950155"],["-90.084994","29.950257"],["-90.085072","29.950417"],["-90.085149","29.950577"],["-90.085227","29.950736"],["-90.085305","29.950896"],["-90.085383","29.951056"],["-90.085460","29.951216"],["-90.085538","29.951375"],["-90.085616","29.951535"],["-90.085687","29.951637"],["-90.085758","29.951739"],["-90.085829","29.951840"],["-90.085900","29.951942"],["-90.085972","29.952044"],["-90.086043","29.952146"],["-90.086114","29.952247"],["-90.086185","29.952349"],["-90.086347","29.952462"],["-90.086509","29.952576"],["-90.086672","29.952689"],["-90.086834","29.952802"],["-90.086930","29.952863"],["-90.087026","29.952923"],["-90.087122","29.952984"],["-90.087218","29.953045"],["-90.087314","29.953106"],["-90.087409","29.953166"],["-90.087505","29.953227"],["-90.087601","29.953288"],["-90.087697","29.953348"],["-90.087793","29.953409"],["-90.087889","29.953470"],["-90.087985","29.953531"],["-90.088081","29.953591"],["-90.088177","29.953652"],["-90.088273","29.953713"],["-90.088368","29.953774"],["-90.088464","29.953834"],["-90.088560","29.953895"],["-90.088656","29.953956"],["-90.088752","29.954016"],["-90.088848","29.954077"],["-90.088944","29.954138"],["-90.089040","29.954199"],["-90.089136","29.954259"],["-90.089232","29.954320"],["-90.089328","29.954381"],["-90.089423","29.954441"],["-90.089519","29.954502"],["-90.089615","29.954563"],["-90.089711","29.954624"],["-90.089807","29.954684"],["-90.089903","29.954745"],["-90.090031","29.954845"],["-90.090159","29.954946"],["-90.090287","29.955046"],["-90.090415","29.955146"],["-90.090543","29.955247"],["-90.090671","29.955347"],["-90.090799","29.955447"],["-90.090927","29.955548"],["-90.091056","29.955648"],["-90.091184","29.955748"],["-90.091312","29.955848"],["-90.091440","29.955949"],["-90.091568","29.956049"],["-90.091696","29.956149"],["-90.091824","29.956250"],["-90.091952","29.956350"],["-90.092064","29.956436"],["-90.092177","29.956523"],["-90.092289","29.956609"],["-90.092401","29.956695"],["-90.092514","29.956781"],["-90.092626","29.956868"],["-90.092739","29.956954"],["-90.092851","29.957040"],["-90.092963","29.957126"],["-90.093076","29.957213"],["-90.093188","29.957299"],["-90.093300","29.957385"],["-90.093413","29.957471"],["-90.093525","29.957558"],["-90.093638","29.957644"],["-90.093750","29.957730"],["-90.093880","29.957820"],["-90.093995","29.957900"],["-90.094110","29.957980"],["-90.094230","29.958070"],["-90.094322","29.958133"],["-90.094415","29.958195"],["-90.094507","29.958258"],["-90.094600","29.958320"],["-90.094745","29.958415"],["-90.094890","29.958510"],["-90.095060","29.958628"],["-90.095230","29.958745"],["-90.095400","29.958863"],["-90.095570","29.958980"],["-90.095690","29.959063"],["-90.095810","29.959145"],["-90.095930","29.959228"],["-90.096050","29.959310"],["-90.096135","29.959375"],["-90.096220","29.959440"],["-90.096340","29.959520"],["-90.096370","29.959540"],["-90.096400","29.959540"],["-90.096430","29.959550"],["-90.096510","29.959550"],["-90.096655","29.959650"],["-90.096800","29.959750"],["-90.096920","29.959840"],["-90.097040","29.959930"],["-90.097146","29.960005"],["-90.097252","29.960080"],["-90.097359","29.960155"],["-90.097465","29.960230"],["-90.097571","29.960305"],["-90.097677","29.960380"],["-90.097784","29.960455"],["-90.097890","29.960530"],["-90.097996","29.960605"],["-90.098102","29.960680"],["-90.098209","29.960755"],["-90.098315","29.960830"],["-90.098421","29.960905"],["-90.098527","29.960980"],["-90.098634","29.961055"],["-90.098740","29.961130"],["-90.098856","29.961213"],["-90.098971","29.961296"],["-90.099087","29.961379"],["-90.099202","29.961463"],["-90.099318","29.961546"],["-90.099434","29.961629"],["-90.099549","29.961712"],["-90.099665","29.961795"],["-90.099781","29.961878"],["-90.099896","29.961961"],["-90.100012","29.962044"],["-90.100127","29.962128"],["-90.100243","29.962211"],["-90.100359","29.962294"],["-90.100474","29.962377"],["-90.100590","29.962460"],["-90.100760","29.962575"],["-90.100930","29.962690"],["-90.101080","29.962800"],["-90.101240","29.962900"],["-90.101420","29.963010"],["-90.101540","29.963095"],["-90.101660","29.963180"],["-90.101825","29.963290"],["-90.101990","29.963400"],["-90.102080","29.963465"],["-90.102170","29.963530"],["-90.102320","29.963640"],["-90.102470","29.963750"],["-90.102500","29.963770"],["-90.102645","29.963870"],["-90.102790","29.963970"],["-90.102885","29.964040"],["-90.102980","29.964110"],["-90.103120","29.964210"],["-90.103260","29.964310"],["-90.103360","29.964385"],["-90.103460","29.964460"],["-90.103570","29.964540"],["-90.103680","29.964620"],["-90.103820","29.964720"],["-90.103960","29.964820"],["-90.104050","29.964880"],["-90.104155","29.964955"],["-90.104260","29.965030"],["-90.104375","29.965110"],["-90.104490","29.965190"],["-90.104580","29.965260"],["-90.104670","29.965330"],["-90.104690","29.965340"],["-90.104785","29.965410"],["-90.104880","29.965480"],["-90.105040","29.965610"],["-90.105070","29.965640"],["-90.105200","29.965750"],["-90.105290","29.965820"],["-90.105390","29.965920"],["-90.105500","29.966010"],["-90.105580","29.966090"],["-90.105600","29.966110"],["-90.105620","29.966120"],["-90.105650","29.966150"],["-90.105710","29.966220"],["-90.105730","29.966230"],["-90.105760","29.966260"],["-90.105840","29.966340"],["-90.105910","29.966410"],["-90.105940","29.966440"],["-90.105970","29.966460"],["-90.106030","29.966520"],["-90.106105","29.966595"],["-90.106180","29.966670"],["-90.106190","29.966670"],["-90.106330","29.966800"],["-90.106360","29.966840"],["-90.106440","29.966915"],["-90.106520","29.966990"],["-90.106597","29.967060"],["-90.106675","29.967130"],["-90.106752","29.967200"],["-90.106830","29.967270"],["-90.106940","29.967375"],["-90.107050","29.967480"],["-90.107130","29.967550"],["-90.107220","29.967650"],["-90.107297","29.967723"],["-90.107375","29.967795"],["-90.107452","29.967868"],["-90.107530","29.967940"],["-90.107540","29.967950"],["-90.107570","29.967980"],["-90.107630","29.968040"],["-90.107640","29.968050"],["-90.107760","29.968160"],["-90.107870","29.968270"],["-90.107950","29.968350"],["-90.108020","29.968410"],["-90.108110","29.968510"],["-90.108150","29.968550"],["-90.108230","29.968650"],["-90.108330","29.968760"],["-90.108450","29.968910"],["-90.108540","29.969030"],["-90.108600","29.969110"],["-90.108665","29.969200"],["-90.108730","29.969290"],["-90.108740","29.969310"],["-90.108780","29.969370"],["-90.108820","29.969430"],["-90.108890","29.969540"],["-90.108950","29.969650"],["-90.108970","29.969690"],["-90.108990","29.969720"],["-90.109070","29.969880"],["-90.109080","29.969890"],["-90.109120","29.969980"],["-90.109150","29.970040"],["-90.109210","29.970150"],["-90.109210","29.970170"],["-90.109240","29.970210"],["-90.109240","29.970220"],["-90.109305","29.970340"],["-90.109370","29.970460"],["-90.109435","29.970580"],["-90.109500","29.970700"],["-90.109546","29.970789"],["-90.109592","29.970878"],["-90.109639","29.970966"],["-90.109685","29.971055"],["-90.109731","29.971144"],["-90.109777","29.971233"],["-90.109824","29.971321"],["-90.109870","29.971410"],["-90.109915","29.971500"],["-90.109960","29.971590"],["-90.110040","29.971730"],["-90.110060","29.971780"],["-90.110090","29.971840"],["-90.110155","29.971955"],["-90.110220","29.972070"],["-90.110305","29.972245"],["-90.110390","29.972420"],["-90.110460","29.972560"],["-90.110530","29.972730"],["-90.110580","29.972850"],["-90.110610","29.972945"],["-90.110640","29.973040"],["-90.110680","29.973160"],["-90.110720","29.973285"],["-90.110760","29.973410"],["-90.110820","29.973580"],["-90.110865","29.973725"],["-90.110910","29.973870"],["-90.110950","29.974020"],["-90.110992","29.974165"],["-90.111035","29.974310"],["-90.111077","29.974455"],["-90.111120","29.974600"],["-90.111161","29.974720"],["-90.111202","29.974840"],["-90.111244","29.974960"],["-90.111285","29.975080"],["-90.111326","29.975200"],["-90.111367","29.975320"],["-90.111409","29.975440"],["-90.111450","29.975560"],["-90.111500","29.975690"],["-90.111560","29.975870"],["-90.111601","29.975978"],["-90.111642","29.976085"],["-90.111684","29.976193"],["-90.111725","29.976300"],["-90.111766","29.976408"],["-90.111807","29.976515"],["-90.111849","29.976623"],["-90.111890","29.976730"],["-90.111950","29.976880"],["-90.112010","29.977030"],["-90.112040","29.977090"],["-90.112110","29.977240"],["-90.112180","29.977415"],["-90.112250","29.977590"],["-90.112320","29.977765"],["-90.112390","29.977940"],["-90.112420","29.978020"],["-90.112486","29.978185"],["-90.112552","29.978350"],["-90.112619","29.978515"],["-90.112685","29.978680"],["-90.112751","29.978845"],["-90.112817","29.979010"],["-90.112884","29.979175"],["-90.112950","29.979340"],["-90.113000","29.979468"],["-90.113050","29.979595"],["-90.113100","29.979723"],["-90.113150","29.979850"],["-90.113191","29.979956"],["-90.113232","29.980063"],["-90.113274","29.980169"],["-90.113315","29.980275"],["-90.113356","29.980381"],["-90.113397","29.980488"],["-90.113439","29.980594"],["-90.113480","29.980700"],["-90.113510","29.980800"],["-90.113520","29.980800"],["-90.113520","29.980820"],["-90.113550","29.980880"],["-90.113620","29.981060"],["-90.113620","29.981070"],["-90.113620","29.981080"],["-90.113660","29.981170"],["-90.113660","29.981180"],["-90.113720","29.981330"],["-90.113730","29.981350"],["-90.113765","29.981450"],["-90.113800","29.981550"],["-90.113842","29.981658"],["-90.113885","29.981765"],["-90.113927","29.981873"],["-90.113970","29.981980"],["-90.114010","29.982060"],["-90.114050","29.982170"],["-90.114090","29.982280"],["-90.114100","29.982300"],["-90.114150","29.982420"],["-90.114207","29.982569"],["-90.114265","29.982718"],["-90.114322","29.982866"],["-90.114380","29.983015"],["-90.114437","29.983164"],["-90.114495","29.983313"],["-90.114552","29.983461"],["-90.114610","29.983610"],["-90.114680","29.983780"],["-90.114745","29.983950"],["-90.114810","29.984120"],["-90.114880","29.984290"],["-90.114945","29.984463"],["-90.115010","29.984635"],["-90.115075","29.984808"],["-90.115140","29.984980"],["-90.115181","29.985084"],["-90.115222","29.985188"],["-90.115264","29.985291"],["-90.115305","29.985395"],["-90.115346","29.985499"],["-90.115387","29.985603"],["-90.115429","29.985706"],["-90.115470","29.985810"],["-90.115525","29.985955"],["-90.115580","29.986100"],["-90.115635","29.986253"],["-90.115690","29.986405"],["-90.115745","29.986558"],["-90.115800","29.986710"],["-90.115850","29.986840"],["-90.115890","29.987010"],["-90.115920","29.987100"],["-90.115920","29.987110"],["-90.115960","29.987290"],["-90.116000","29.987470"],["-90.116025","29.987603"],["-90.116050","29.987735"],["-90.116075","29.987868"],["-90.116100","29.988000"],["-90.116120","29.988180"],["-90.116130","29.988355"],["-90.116140","29.988530"],["-90.116140","29.988540"],["-90.116138","29.988720"],["-90.116135","29.988900"],["-90.116133","29.989080"],["-90.116130","29.989260"],["-90.116125","29.989440"],["-90.116120","29.989620"],["-90.116110","29.989800"],["-90.116105","29.989925"],["-90.116100","29.990050"],["-90.116100","29.990210"],["-90.116098","29.990318"],["-90.116095","29.990425"],["-90.116093","29.990533"],["-90.116090","29.990640"],["-90.116090","29.990765"],["-90.116090","29.990890"],["-90.116090","29.990980"],["-90.116110","29.991145"],["-90.116130","29.991310"],["-90.116160","29.991440"],["-90.116190","29.991570"],["-90.116200","29.991620"],["-90.116230","29.991715"],["-90.116260","29.991810"],["-90.116300","29.991925"],["-90.116340","29.992040"],["-90.116380","29.992110"],["-90.116390","29.992140"],["-90.116455","29.992285"],["-90.116520","29.992430"],["-90.116530","29.992440"],["-90.116592","29.992543"],["-90.116655","29.992645"],["-90.116717","29.992748"],["-90.116780","29.992850"],["-90.116855","29.992950"],["-90.116930","29.993050"],["-90.117025","29.993170"],["-90.117120","29.993290"],["-90.117250","29.993440"],["-90.117330","29.993520"],["-90.117410","29.993600"],["-90.117430","29.993620"],["-90.117510","29.993695"],["-90.117590","29.993770"],["-90.117640","29.993810"],["-90.117745","29.993895"],["-90.117850","29.993980"],["-90.117975","29.994075"],["-90.118100","29.994170"],["-90.118235","29.994260"],["-90.118370","29.994350"],["-90.118485","29.994415"],["-90.118600","29.994480"],["-90.118700","29.994550"],["-90.118855","29.994643"],["-90.119010","29.994735"],["-90.119165","29.994828"],["-90.119320","29.994920"],["-90.119437","29.994988"],["-90.119555","29.995055"],["-90.119672","29.995123"],["-90.119790","29.995190"],["-90.119900","29.995255"],["-90.120010","29.995320"],["-90.120105","29.995370"],["-90.120200","29.995420"],["-90.120295","29.995470"],["-90.120390","29.995520"],["-90.120500","29.995590"],["-90.120615","29.995640"],["-90.120730","29.995690"],["-90.120860","29.995740"],["-90.120970","29.995780"],["-90.121110","29.995830"],["-90.121210","29.995860"],["-90.121365","29.995905"],["-90.121520","29.995950"],["-90.121660","29.995985"],["-90.121800","29.996020"],["-90.121910","29.996080"],["-90.122100","29.996100"],["-90.122230","29.996120"],["-90.122320","29.996130"],["-90.122380","29.996140"],["-90.122490","29.996150"],["-90.122620","29.996160"],["-90.122730","29.996160"],["-90.122780","29.996170"],["-90.122965","29.996175"],["-90.123150","29.996180"],["-90.123280","29.996190"],["-90.123360","29.996190"],["-90.123565","29.996205"],["-90.123770","29.996220"],["-90.123960","29.996230"],["-90.124150","29.996240"],["-90.124340","29.996250"],["-90.124530","29.996260"],["-90.124685","29.996268"],["-90.124840","29.996275"],["-90.124995","29.996283"],["-90.125150","29.996290"],["-90.125360","29.996290"],["-90.125476","29.996296"],["-90.125591","29.996301"],["-90.125707","29.996307"],["-90.125822","29.996313"],["-90.125938","29.996318"],["-90.126054","29.996324"],["-90.126169","29.996329"],["-90.126285","29.996335"],["-90.126401","29.996341"],["-90.126516","29.996346"],["-90.126632","29.996352"],["-90.126747","29.996358"],["-90.126863","29.996363"],["-90.126979","29.996369"],["-90.127094","29.996374"],["-90.127210","29.996380"],["-90.127326","29.996386"],["-90.127441","29.996391"],["-90.127557","29.996397"],["-90.127672","29.996403"],["-90.127788","29.996408"],["-90.127904","29.996414"],["-90.128019","29.996419"],["-90.128135","29.996425"],["-90.128251","29.996431"],["-90.128366","29.996436"],["-90.128482","29.996442"],["-90.128597","29.996448"],["-90.128713","29.996453"],["-90.128829","29.996459"],["-90.128944","29.996464"],["-90.129060","29.996470"],["-90.129187","29.996475"],["-90.129315","29.996480"],["-90.129442","29.996485"],["-90.129570","29.996490"],["-90.129682","29.996495"],["-90.129795","29.996500"],["-90.129907","29.996505"],["-90.130020","29.996510"],["-90.130237","29.996521"],["-90.130455","29.996533"],["-90.130672","29.996544"],["-90.130890","29.996555"],["-90.131107","29.996566"],["-90.131325","29.996578"],["-90.131542","29.996589"],["-90.131760","29.996600"],["-90.131840","29.996600"],["-90.131920","29.996600"],["-90.132070","29.996610"],["-90.132195","29.996615"],["-90.132320","29.996620"],["-90.132410","29.996630"],["-90.132585","29.996635"],["-90.132760","29.996640"],["-90.132800","29.996640"],["-90.132990","29.996650"],["-90.133160","29.996660"],["-90.133330","29.996670"],["-90.133390","29.996670"],["-90.133450","29.996680"],["-90.133645","29.996690"],["-90.133840","29.996700"],["-90.133965","29.996705"],["-90.134090","29.996710"],["-90.134140","29.996710"],["-90.134330","29.996720"],["-90.134450","29.996725"],["-90.134570","29.996730"],["-90.134690","29.996735"],["-90.134810","29.996740"],["-90.134930","29.996745"],["-90.135050","29.996750"],["-90.135170","29.996755"],["-90.135290","29.996760"],["-90.135500","29.996780"],["-90.135630","29.996780"],["-90.135770","29.996790"],["-90.135910","29.996795"],["-90.136050","29.996800"],["-90.136190","29.996805"],["-90.136330","29.996810"],["-90.136505","29.996820"],["-90.136680","29.996830"],["-90.136892","29.996840"],["-90.137105","29.996850"],["-90.137317","29.996860"],["-90.137530","29.996870"],["-90.137695","29.996880"],["-90.137860","29.996890"],["-90.138025","29.996900"],["-90.138190","29.996910"],["-90.138345","29.996910"],["-90.138500","29.996910"],["-90.138712","29.996918"],["-90.138925","29.996925"],["-90.139137","29.996933"],["-90.139350","29.996940"],["-90.139570","29.996950"],["-90.139790","29.996960"],["-90.140000","29.996970"],["-90.140210","29.996980"],["-90.140420","29.996990"],["-90.140620","29.996990"],["-90.140830","29.997000"],["-90.141037","29.997010"],["-90.141245","29.997020"],["-90.141452","29.997030"],["-90.141660","29.997040"],["-90.141870","29.997040"],["-90.141985","29.997045"],["-90.142100","29.997050"],["-90.142295","29.997060"],["-90.142490","29.997070"],["-90.142630","29.997075"],["-90.142770","29.997080"],["-90.142892","29.997085"],["-90.143015","29.997090"],["-90.143137","29.997095"],["-90.143260","29.997100"],["-90.143435","29.997105"],["-90.143610","29.997110"],["-90.143730","29.997115"],["-90.143850","29.997120"],["-90.143980","29.997125"],["-90.144110","29.997130"],["-90.144225","29.997135"],["-90.144340","29.997140"],["-90.144455","29.997145"],["-90.144570","29.997150"],["-90.144685","29.997155"],["-90.144800","29.997160"],["-90.144915","29.997165"],["-90.145030","29.997170"],["-90.145174","29.997175"],["-90.145317","29.997180"],["-90.145461","29.997185"],["-90.145605","29.997190"],["-90.145749","29.997195"],["-90.145892","29.997200"],["-90.146036","29.997205"],["-90.146180","29.997210"],["-90.146375","29.997220"],["-90.146570","29.997230"],["-90.146765","29.997240"],["-90.146960","29.997250"],["-90.147140","29.997255"],["-90.147320","29.997260"],["-90.147434","29.997265"],["-90.147547","29.997270"],["-90.147661","29.997275"],["-90.147775","29.997280"],["-90.147889","29.997285"],["-90.148002","29.997290"],["-90.148116","29.997295"],["-90.148230","29.997300"],["-90.148432","29.997310"],["-90.148635","29.997320"],["-90.148837","29.997330"],["-90.149040","29.997340"],["-90.149192","29.997348"],["-90.149345","29.997355"],["-90.149497","29.997363"],["-90.149650","29.997370"],["-90.149845","29.997379"],["-90.150040","29.997388"],["-90.150235","29.997396"],["-90.150430","29.997405"],["-90.150625","29.997414"],["-90.150820","29.997423"],["-90.151015","29.997431"],["-90.151210","29.997440"],["-90.151334","29.997444"],["-90.151457","29.997448"],["-90.151581","29.997451"],["-90.151705","29.997455"],["-90.151829","29.997459"],["-90.151952","29.997463"],["-90.152076","29.997466"],["-90.152200","29.997470"],["-90.152375","29.997478"],["-90.152550","29.997485"],["-90.152725","29.997493"],["-90.152900","29.997500"],["-90.153120","29.997510"],["-90.153340","29.997520"],["-90.153450","29.997520"],["-90.153607","29.997525"],["-90.153765","29.997530"],["-90.153922","29.997535"],["-90.154080","29.997540"],["-90.154217","29.997548"],["-90.154355","29.997555"],["-90.154492","29.997563"],["-90.154630","29.997570"],["-90.154850","29.997560"],["-90.154995","29.997565"],["-90.155140","29.997570"],["-90.155285","29.997574"],["-90.155430","29.997578"],["-90.155575","29.997581"],["-90.155720","29.997585"],["-90.155865","29.997589"],["-90.156010","29.997593"],["-90.156155","29.997596"],["-90.156300","29.997600"],["-90.156469","29.997609"],["-90.156637","29.997618"],["-90.156806","29.997626"],["-90.156975","29.997635"],["-90.157144","29.997644"],["-90.157312","29.997653"],["-90.157481","29.997661"],["-90.157650","29.997670"],["-90.157846","29.997675"],["-90.158042","29.997680"],["-90.158239","29.997685"],["-90.158435","29.997690"],["-90.158631","29.997695"],["-90.158827","29.997700"],["-90.159024","29.997705"],["-90.159220","29.997710"],["-90.159397","29.997715"],["-90.159575","29.997720"],["-90.159752","29.997725"],["-90.159930","29.997730"],["-90.160072","29.997736"],["-90.160215","29.997743"],["-90.160357","29.997749"],["-90.160500","29.997755"],["-90.160642","29.997761"],["-90.160785","29.997768"],["-90.160927","29.997774"],["-90.161070","29.997780"],["-90.161230","29.997788"],["-90.161390","29.997795"],["-90.161550","29.997803"],["-90.161710","29.997810"],["-90.161895","29.997820"],["-90.162080","29.997830"],["-90.162235","29.997840"],["-90.162390","29.997850"],["-90.162541","29.997858"],["-90.162692","29.997866"],["-90.162844","29.997874"],["-90.162995","29.997883"],["-90.163146","29.997891"],["-90.163297","29.997899"],["-90.163449","29.997907"],["-90.163600","29.997915"],["-90.163751","29.997923"],["-90.163902","29.997931"],["-90.164054","29.997939"],["-90.164205","29.997948"],["-90.164356","29.997956"],["-90.164507","29.997964"],["-90.164659","29.997972"],["-90.164810","29.997980"],["-90.164990","29.997989"],["-90.165170","29.997998"],["-90.165350","29.998006"],["-90.165530","29.998015"],["-90.165710","29.998024"],["-90.165890","29.998033"],["-90.166070","29.998041"],["-90.166250","29.998050"],["-90.166391","29.998058"],["-90.166532","29.998066"],["-90.166674","29.998074"],["-90.166815","29.998083"],["-90.166956","29.998091"],["-90.167097","29.998099"],["-90.167239","29.998107"],["-90.167380","29.998115"],["-90.167521","29.998123"],["-90.167662","29.998131"],["-90.167804","29.998139"],["-90.167945","29.998148"],["-90.168086","29.998156"],["-90.168227","29.998164"],["-90.168369","29.998172"],["-90.168510","29.998180"],["-90.168710","29.998192"],["-90.168910","29.998204"],["-90.169110","29.998216"],["-90.169310","29.998228"],["-90.169510","29.998239"],["-90.169710","29.998251"],["-90.169910","29.998263"],["-90.170110","29.998275"],["-90.170310","29.998287"],["-90.170510","29.998299"],["-90.170710","29.998311"],["-90.170910","29.998323"],["-90.171110","29.998334"],["-90.171310","29.998346"],["-90.171510","29.998358"],["-90.171710","29.998370"],["-90.171826","29.998378"],["-90.171942","29.998385"],["-90.172059","29.998393"],["-90.172175","29.998400"],["-90.172291","29.998408"],["-90.172407","29.998415"],["-90.172524","29.998423"],["-90.172640","29.998430"],["-90.172765","29.998438"],["-90.172890","29.998446"],["-90.173015","29.998454"],["-90.173140","29.998463"],["-90.173265","29.998471"],["-90.173390","29.998479"],["-90.173515","29.998487"],["-90.173640","29.998495"],["-90.173765","29.998503"],["-90.173890","29.998511"],["-90.174015","29.998519"],["-90.174140","29.998528"],["-90.174265","29.998536"],["-90.174390","29.998544"],["-90.174515","29.998552"],["-90.174640","29.998560"],["-90.174830","29.998570"],["-90.175020","29.998580"],["-90.175237","29.998598"],["-90.175455","29.998615"],["-90.175672","29.998633"],["-90.175890","29.998650"],["-90.176032","29.998659"],["-90.176175","29.998668"],["-90.176317","29.998676"],["-90.176460","29.998685"],["-90.176602","29.998694"],["-90.176745","29.998703"],["-90.176887","29.998711"],["-90.177030","29.998720"],["-90.177120","29.998720"],["-90.177252","29.998728"],["-90.177385","29.998735"],["-90.177517","29.998743"],["-90.177650","29.998750"],["-90.177765","29.998758"],["-90.177880","29.998765"],["-90.177995","29.998773"],["-90.178110","29.998780"],["-90.178225","29.998788"],["-90.178340","29.998795"],["-90.178455","29.998803"],["-90.178570","29.998810"],["-90.178747","29.998818"],["-90.178925","29.998825"],["-90.179102","29.998833"],["-90.179280","29.998840"],["-90.179446","29.998850"],["-90.179612","29.998860"],["-90.179779","29.998870"],["-90.179945","29.998880"],["-90.180111","29.998890"],["-90.180277","29.998900"],["-90.180444","29.998910"],["-90.180610","29.998920"],["-90.180776","29.998930"],["-90.180942","29.998940"],["-90.181109","29.998950"],["-90.181275","29.998960"],["-90.181441","29.998970"],["-90.181607","29.998980"],["-90.181774","29.998990"],["-90.181940","29.999000"],["-90.182097","29.999011"],["-90.182255","29.999023"],["-90.182412","29.999034"],["-90.182570","29.999045"],["-90.182727","29.999056"],["-90.182885","29.999068"],["-90.183042","29.999079"],["-90.183200","29.999090"],["-90.183370","29.999105"],["-90.183540","29.999120"],["-90.183710","29.999135"],["-90.183880","29.999150"],["-90.184002","29.999160"],["-90.184125","29.999170"],["-90.184247","29.999180"],["-90.184370","29.999190"],["-90.184517","29.999200"],["-90.184665","29.999210"],["-90.184812","29.999220"],["-90.184960","29.999230"],["-90.185112","29.999240"],["-90.185265","29.999250"],["-90.185417","29.999260"],["-90.185570","29.999270"],["-90.185722","29.999280"],["-90.185875","29.999290"],["-90.186027","29.999300"],["-90.186180","29.999310"],["-90.186337","29.999319"],["-90.186494","29.999329"],["-90.186651","29.999338"],["-90.186807","29.999348"],["-90.186964","29.999357"],["-90.187121","29.999366"],["-90.187278","29.999376"],["-90.187435","29.999385"],["-90.187592","29.999394"],["-90.187749","29.999404"],["-90.187906","29.999413"],["-90.188062","29.999423"],["-90.188219","29.999432"],["-90.188376","29.999441"],["-90.188533","29.999451"],["-90.188690","29.999460"],["-90.188905","29.999474"],["-90.189120","29.999488"],["-90.189335","29.999501"],["-90.189550","29.999515"],["-90.189765","29.999529"],["-90.189980","29.999543"],["-90.190195","29.999556"],["-90.190410","29.999570"],["-90.190520","29.999570"],["-90.190630","29.999580"],["-90.190755","29.999590"],["-90.190880","29.999600"],["-90.191010","29.999615"],["-90.191140","29.999630"],["-90.191269","29.999638"],["-90.191397","29.999645"],["-90.191526","29.999653"],["-90.191655","29.999660"],["-90.191784","29.999668"],["-90.191912","29.999675"],["-90.192041","29.999683"],["-90.192170","29.999690"],["-90.192347","29.999703"],["-90.192525","29.999715"],["-90.192702","29.999728"],["-90.192880","29.999740"],["-90.193100","29.999750"],["-90.193307","29.999763"],["-90.193515","29.999775"],["-90.193722","29.999788"],["-90.193930","29.999800"],["-90.194115","29.999815"],["-90.194300","29.999830"],["-90.194420","29.999838"],["-90.194540","29.999845"],["-90.194660","29.999853"],["-90.194780","29.999860"],["-90.194957","29.999870"],["-90.195135","29.999880"],["-90.195312","29.999890"],["-90.195490","29.999900"],["-90.195607","29.999910"],["-90.195725","29.999920"],["-90.195842","29.999930"],["-90.195960","29.999940"],["-90.196110","29.999960"],["-90.196250","29.999980"],["-90.196435","30.000005"],["-90.196620","30.000030"],["-90.196790","30.000055"],["-90.196960","30.000080"],["-90.197145","30.000110"],["-90.197330","30.000140"],["-90.197440","30.000160"],["-90.197550","30.000180"],["-90.197660","30.000200"],["-90.197770","30.000220"],["-90.197905","30.000250"],["-90.198040","30.000280"],["-90.198160","30.000310"],["-90.198280","30.000340"],["-90.198465","30.000385"],["-90.198650","30.000430"],["-90.198790","30.000460"],["-90.198950","30.000500"],["-90.199060","30.000530"],["-90.199170","30.000560"],["-90.199295","30.000595"],["-90.199420","30.000630"],["-90.199540","30.000670"],["-90.199660","30.000710"],["-90.199830","30.000760"],["-90.200000","30.000810"],["-90.200115","30.000850"],["-90.200230","30.000890"],["-90.200360","30.000930"],["-90.200490","30.000970"],["-90.200640","30.001025"],["-90.200790","30.001080"],["-90.200940","30.001140"],["-90.201090","30.001200"],["-90.201235","30.001258"],["-90.201380","30.001315"],["-90.201525","30.001373"],["-90.201670","30.001430"],["-90.201860","30.001515"],["-90.202050","30.001600"],["-90.202210","30.001675"],["-90.202370","30.001750"],["-90.202495","30.001810"],["-90.202620","30.001870"],["-90.202760","30.001940"],["-90.202900","30.002010"],["-90.202950","30.002040"],["-90.203110","30.002125"],["-90.203270","30.002210"],["-90.203367","30.002268"],["-90.203465","30.002325"],["-90.203562","30.002383"],["-90.203660","30.002440"],["-90.203757","30.002498"],["-90.203855","30.002555"],["-90.203952","30.002613"],["-90.204050","30.002670"],["-90.204210","30.002769"],["-90.204370","30.002868"],["-90.204530","30.002966"],["-90.204690","30.003065"],["-90.204850","30.003164"],["-90.205010","30.003263"],["-90.205170","30.003361"],["-90.205330","30.003460"],["-90.205450","30.003535"],["-90.205570","30.003610"],["-90.205730","30.003710"],["-90.205890","30.003810"],["-90.206025","30.003898"],["-90.206160","30.003985"],["-90.206295","30.004073"],["-90.206430","30.004160"],["-90.206540","30.004229"],["-90.206650","30.004298"],["-90.206760","30.004366"],["-90.206870","30.004435"],["-90.206980","30.004504"],["-90.207090","30.004573"],["-90.207200","30.004641"],["-90.207310","30.004710"],["-90.207480","30.004820"],["-90.207650","30.004930"],["-90.207775","30.005008"],["-90.207900","30.005085"],["-90.208025","30.005163"],["-90.208150","30.005240"],["-90.208160","30.005240"],["-90.208270","30.005320"],["-90.208320","30.005350"],["-90.208330","30.005350"],["-90.208455","30.005428"],["-90.208580","30.005505"],["-90.208705","30.005583"],["-90.208830","30.005660"],["-90.209000","30.005770"],["-90.209165","30.005875"],["-90.209330","30.005980"],["-90.209440","30.006045"],["-90.209550","30.006110"],["-90.209660","30.006175"],["-90.209770","30.006240"],["-90.209890","30.006315"],["-90.210010","30.006390"],["-90.210110","30.006450"],["-90.210210","30.006510"],["-90.210310","30.006570"],["-90.210410","30.006630"],["-90.210560","30.006710"],["-90.210710","30.006790"],["-90.210820","30.006840"],["-90.210910","30.006890"],["-90.211015","30.006940"],["-90.211120","30.006990"],["-90.211290","30.007060"],["-90.211460","30.007130"],["-90.211575","30.007170"],["-90.211690","30.007210"],["-90.211880","30.007280"],["-90.211950","30.007300"],["-90.212055","30.007335"],["-90.212160","30.007370"],["-90.212285","30.007410"],["-90.212410","30.007450"],["-90.212575","30.007495"],["-90.212740","30.007540"],["-90.212950","30.007590"],["-90.212990","30.007600"],["-90.213120","30.007625"],["-90.213250","30.007650"],["-90.213280","30.007660"],["-90.213490","30.007700"],["-90.213610","30.007715"],["-90.213730","30.007730"],["-90.213830","30.007750"],["-90.213970","30.007770"],["-90.214080","30.007780"],["-90.214195","30.007795"],["-90.214310","30.007810"],["-90.214505","30.007823"],["-90.214700","30.007835"],["-90.214895","30.007848"],["-90.215090","30.007860"],["-90.215297","30.007874"],["-90.215505","30.007888"],["-90.215712","30.007901"],["-90.215920","30.007915"],["-90.216127","30.007929"],["-90.216335","30.007943"],["-90.216542","30.007956"],["-90.216750","30.007970"],["-90.216950","30.007990"],["-90.217089","30.007999"],["-90.217227","30.008008"],["-90.217366","30.008016"],["-90.217505","30.008025"],["-90.217644","30.008034"],["-90.217782","30.008043"],["-90.217921","30.008051"],["-90.218060","30.008060"],["-90.218199","30.008069"],["-90.218337","30.008078"],["-90.218476","30.008086"],["-90.218615","30.008095"],["-90.218754","30.008104"],["-90.218892","30.008113"],["-90.219031","30.008121"],["-90.219170","30.008130"],["-90.219286","30.008137"],["-90.219402","30.008144"],["-90.219519","30.008151"],["-90.219635","30.008158"],["-90.219751","30.008164"],["-90.219867","30.008171"],["-90.219984","30.008178"],["-90.220100","30.008185"],["-90.220216","30.008192"],["-90.220332","30.008199"],["-90.220449","30.008206"],["-90.220565","30.008213"],["-90.220681","30.008219"],["-90.220797","30.008226"],["-90.220914","30.008233"],["-90.221030","30.008240"],["-90.221200","30.008253"],["-90.221370","30.008265"],["-90.221540","30.008278"],["-90.221710","30.008290"],["-90.221890","30.008300"],["-90.222070","30.008310"],["-90.222250","30.008320"],["-90.222430","30.008330"],["-90.222611","30.008343"],["-90.222792","30.008355"],["-90.222974","30.008368"],["-90.223155","30.008380"],["-90.223336","30.008393"],["-90.223517","30.008405"],["-90.223699","30.008418"],["-90.223880","30.008430"],["-90.224007","30.008439"],["-90.224135","30.008448"],["-90.224262","30.008456"],["-90.224390","30.008465"],["-90.224517","30.008474"],["-90.224645","30.008483"],["-90.224772","30.008491"],["-90.224900","30.008500"],["-90.225120","30.008513"],["-90.225340","30.008525"],["-90.225560","30.008538"],["-90.225780","30.008550"],["-90.225912","30.008559"],["-90.226045","30.008568"],["-90.226177","30.008576"],["-90.226310","30.008585"],["-90.226442","30.008594"],["-90.226575","30.008603"],["-90.226707","30.008611"],["-90.226840","30.008620"],["-90.226970","30.008655"],["-90.227100","30.008690"],["-90.227290","30.008705"],["-90.227480","30.008720"],["-90.227600","30.008735"],["-90.227720","30.008750"],["-90.227750","30.008750"],["-90.227870","30.008760"],["-90.227990","30.008770"],["-90.228100","30.008790"],["-90.228310","30.008810"],["-90.228470","30.008830"],["-90.228652","30.008848"],["-90.228835","30.008865"],["-90.229017","30.008883"],["-90.229200","30.008900"],["-90.229355","30.008915"],["-90.229510","30.008930"],["-90.229705","30.008955"],["-90.229900","30.008980"],["-90.230060","30.008995"],["-90.230220","30.009010"],["-90.230365","30.009025"],["-90.230510","30.009040"],["-90.230710","30.009060"],["-90.230910","30.009080"],["-90.231120","30.009100"],["-90.231330","30.009120"],["-90.231477","30.009125"],["-90.231625","30.009130"],["-90.231772","30.009135"],["-90.231920","30.009140"],["-90.232085","30.009150"],["-90.232250","30.009160"],["-90.232384","30.009169"],["-90.232517","30.009178"],["-90.232651","30.009186"],["-90.232785","30.009195"],["-90.232919","30.009204"],["-90.233052","30.009213"],["-90.233186","30.009221"],["-90.233320","30.009230"],["-90.233532","30.009245"],["-90.233745","30.009260"],["-90.233957","30.009275"],["-90.234170","30.009290"],["-90.234320","30.009303"],["-90.234470","30.009315"],["-90.234620","30.009328"],["-90.234770","30.009340"],["-90.234900","30.009350"],["-90.235030","30.009360"],["-90.235175","30.009375"],["-90.235320","30.009390"],["-90.235465","30.009405"],["-90.235610","30.009420"],["-90.235780","30.009440"],["-90.235950","30.009460"],["-90.236070","30.009475"],["-90.236190","30.009490"],["-90.236330","30.009505"],["-90.236470","30.009520"],["-90.236602","30.009543"],["-90.236735","30.009565"],["-90.236867","30.009588"],["-90.237000","30.009610"],["-90.237200","30.009610"],["-90.237220","30.009610"],["-90.237320","30.009630"],["-90.237440","30.009640"],["-90.237590","30.009660"],["-90.237740","30.009680"],["-90.237910","30.009710"],["-90.238030","30.009730"],["-90.238150","30.009750"],["-90.238275","30.009770"],["-90.238400","30.009790"],["-90.238565","30.009815"],["-90.238730","30.009840"],["-90.238862","30.009858"],["-90.238995","30.009875"],["-90.239127","30.009893"],["-90.239260","30.009910"],["-90.239455","30.009945"],["-90.239650","30.009980"],["-90.239780","30.010000"],["-90.239900","30.010020"],["-90.240065","30.010045"],["-90.240230","30.010070"],["-90.240310","30.010090"],["-90.240380","30.010100"],["-90.240560","30.010130"],["-90.240730","30.010180"],["-90.240760","30.010190"],["-90.240880","30.010230"],["-90.240950","30.010260"],["-90.241090","30.010330"],["-90.241140","30.010360"],["-90.241190","30.010390"],["-90.241200","30.010400"],["-90.241250","30.010440"],["-90.241300","30.010500"],["-90.241340","30.010560"],["-90.241350","30.010590"],["-90.241370","30.010640"],["-90.241380","30.010670"],["-90.241380","30.010680"],["-90.241390","30.010720"],["-90.241380","30.010770"],["-90.241380","30.010780"],["-90.241380","30.010840"],["-90.241360","30.010900"],["-90.241340","30.010940"],["-90.241320","30.010970"],["-90.241310","30.010990"],["-90.241290","30.011010"],["-90.241240","30.011060"],["-90.241220","30.011080"],["-90.241190","30.011100"],["-90.241130","30.011130"],["-90.241080","30.011160"],["-90.241040","30.011170"],["-90.241010","30.011180"],["-90.240990","30.011180"],["-90.240960","30.011190"],["-90.240880","30.011200"],["-90.240820","30.011200"],["-90.240770","30.011190"],["-90.240720","30.011180"],["-90.240680","30.011170"],["-90.240650","30.011160"],["-90.240600","30.011130"],["-90.240550","30.011100"],["-90.240480","30.011050"],["-90.240390","30.010976"],["-90.240301","30.010901"],["-90.240288","30.010762"],["-90.240274","30.010623"],["-90.240261","30.010483"],["-90.240248","30.010344"],["-90.240257","30.010240"],["-90.240267","30.010136"],["-90.240276","30.010031"],["-90.240286","30.009927"],["-90.240295","30.009823"],["-90.240305","30.009719"],["-90.240314","30.009615"],["-90.240324","30.009511"],["-90.240333","30.009406"],["-90.240342","30.009302"],["-90.240352","30.009198"],["-90.240361","30.009094"],["-90.240371","30.008990"],["-90.240380","30.008885"],["-90.240390","30.008781"],["-90.240399","30.008677"],["-90.240408","30.008573"],["-90.240418","30.008469"],["-90.240427","30.008364"],["-90.240437","30.008260"],["-90.240446","30.008156"],["-90.240456","30.008052"],["-90.240465","30.007948"],["-90.240475","30.007844"],["-90.240484","30.007739"],["-90.240493","30.007635"],["-90.240503","30.007531"],["-90.240512","30.007427"],["-90.240522","30.007323"],["-90.240531","30.007218"],["-90.240541","30.007114"],["-90.240550","30.007010"],["-90.240560","30.006840"],["-90.240570","30.006670"],["-90.240692","30.006678"],["-90.240815","30.006685"],["-90.240937","30.006693"],["-90.241060","30.006700"],["-90.241205","30.006715"],["-90.241317","30.006723"],["-90.241429","30.006730"],["-90.241519","30.006755"],["-90.241588","30.006740"],["-90.241726","30.006750"],["-90.241865","30.006760"],["-90.241997","30.006770"],["-90.242130","30.006780"],["-90.242261","30.006789"],["-90.242392","30.006798"],["-90.242524","30.006806"],["-90.242655","30.006815"],["-90.242786","30.006824"],["-90.242917","30.006833"],["-90.243049","30.006841"],["-90.243180","30.006850"],["-90.243210","30.006850"],["-90.243250","30.006850"],["-90.243270","30.006850"],["-90.243320","30.006860"],["-90.243380","30.006860"],["-90.243515","30.006870"],["-90.243650","30.006880"],["-90.243785","30.006890"],["-90.243920","30.006900"],["-90.244055","30.006910"],["-90.244190","30.006920"],["-90.244325","30.006930"],["-90.244460","30.006940"],["-90.244582","30.006948"],["-90.244705","30.006955"],["-90.244827","30.006963"],["-90.244950","30.006970"],["-90.245085","30.006980"],["-90.245220","30.006990"],["-90.245355","30.007000"],["-90.245490","30.007010"],["-90.245510","30.007010"],["-90.245700","30.007020"],["-90.245827","30.007023"],["-90.245955","30.007025"],["-90.246082","30.007028"],["-90.246210","30.007030"],["-90.246335","30.007030"],["-90.246460","30.007030"],["-90.246585","30.007030"],["-90.246710","30.007030"],["-90.246865","30.007030"],["-90.247020","30.007030"],["-90.247175","30.007030"],["-90.247330","30.007030"],["-90.247490","30.007020"],["-90.247650","30.007010"],["-90.247810","30.007000"],["-90.247970","30.006990"],["-90.248085","30.006985"],["-90.248200","30.006980"],["-90.248270","30.006970"],["-90.248430","30.006960"],["-90.248590","30.006950"],["-90.248750","30.006940"],["-90.248910","30.006930"],["-90.249050","30.006920"],["-90.249170","30.006910"],["-90.249315","30.006901"],["-90.249460","30.006893"],["-90.249605","30.006884"],["-90.249750","30.006875"],["-90.249895","30.006866"],["-90.250040","30.006858"],["-90.250185","30.006849"],["-90.250330","30.006840"],["-90.250525","30.006825"],["-90.250720","30.006810"],["-90.250915","30.006795"],["-90.251110","30.006780"],["-90.251243","30.006770"],["-90.251375","30.006760"],["-90.251508","30.006750"],["-90.251640","30.006740"],["-90.251783","30.006730"],["-90.251925","30.006720"],["-90.252068","30.006710"],["-90.252210","30.006700"],["-90.252355","30.006685"],["-90.252500","30.006670"],["-90.252645","30.006655"],["-90.252790","30.006640"],["-90.252945","30.006630"],["-90.253100","30.006620"],["-90.253250","30.006610"],["-90.253385","30.006595"],["-90.253520","30.006580"],["-90.253645","30.006573"],["-90.253770","30.006565"],["-90.253895","30.006558"],["-90.254020","30.006550"],["-90.254215","30.006535"],["-90.254410","30.006520"],["-90.254545","30.006510"],["-90.254680","30.006500"],["-90.254815","30.006490"],["-90.254950","30.006480"],["-90.255061","30.006471"],["-90.255173","30.006463"],["-90.255284","30.006454"],["-90.255395","30.006445"],["-90.255506","30.006436"],["-90.255618","30.006428"],["-90.255729","30.006419"],["-90.255840","30.006410"],["-90.256005","30.006398"],["-90.256170","30.006385"],["-90.256335","30.006373"],["-90.256500","30.006360"],["-90.256620","30.006351"],["-90.256740","30.006343"],["-90.256860","30.006334"],["-90.256980","30.006325"],["-90.257100","30.006316"],["-90.257220","30.006308"],["-90.257340","30.006299"],["-90.257460","30.006290"],["-90.257605","30.006278"],["-90.257750","30.006265"],["-90.257895","30.006253"],["-90.258040","30.006240"],["-90.258260","30.006220"],["-90.258380","30.006211"],["-90.258500","30.006203"],["-90.258620","30.006194"],["-90.258740","30.006185"],["-90.258860","30.006176"],["-90.258980","30.006168"],["-90.259100","30.006159"],["-90.259220","30.006150"],["-90.259353","30.006138"],["-90.259485","30.006125"],["-90.259618","30.006113"],["-90.259750","30.006100"],["-90.259863","30.006090"],["-90.259975","30.006080"],["-90.260088","30.006070"],["-90.260200","30.006060"],["-90.260363","30.006048"],["-90.260525","30.006035"],["-90.260688","30.006023"],["-90.260850","30.006010"],["-90.261013","30.005998"],["-90.261175","30.005985"],["-90.261338","30.005973"],["-90.261500","30.005960"],["-90.261625","30.005953"],["-90.261750","30.005945"],["-90.261875","30.005938"],["-90.262000","30.005930"],["-90.262040","30.005920"],["-90.262163","30.005910"],["-90.262285","30.005900"],["-90.262408","30.005890"],["-90.262530","30.005880"],["-90.262670","30.005870"],["-90.262783","30.005861"],["-90.262895","30.005853"],["-90.263008","30.005844"],["-90.263120","30.005835"],["-90.263233","30.005826"],["-90.263345","30.005818"],["-90.263458","30.005809"],["-90.263570","30.005800"],["-90.263630","30.005800"],["-90.263805","30.005785"],["-90.263980","30.005770"],["-90.264190","30.005755"],["-90.264400","30.005740"],["-90.264620","30.005725"],["-90.264840","30.005710"],["-90.265050","30.005700"],["-90.265195","30.005690"],["-90.265340","30.005680"],["-90.265500","30.005665"],["-90.265660","30.005650"],["-90.265710","30.005650"],["-90.265920","30.005630"],["-90.266070","30.005615"],["-90.266220","30.005600"],["-90.266220","30.005460"],["-90.266200","30.005300"],["-90.266180","30.005120"],["-90.266150","30.005020"],["-90.266100","30.004870"],["-90.266060","30.004730"],["-90.266025","30.004620"],["-90.265990","30.004510"],["-90.265970","30.004440"],["-90.265960","30.004360"],["-90.265940","30.004270"],["-90.265930","30.004160"],["-90.265915","30.004025"],["-90.265900","30.003890"],["-90.265885","30.003740"],["-90.265870","30.003590"],["-90.265860","30.003500"],["-90.265840","30.003320"],["-90.265840","30.003260"],["-90.265830","30.003230"],["-90.265830","30.003190"],["-90.265815","30.003050"],["-90.265800","30.002910"],["-90.265785","30.002770"],["-90.265770","30.002630"],["-90.265760","30.002490"],["-90.265730","30.002350"],["-90.265690","30.002240"],["-90.265650","30.002130"],["-90.265600","30.002040"],["-90.265540","30.001930"],["-90.265470","30.001830"],["-90.265390","30.001730"],["-90.265290","30.001630"],["-90.265190","30.001540"],["-90.265070","30.001450"],["-90.264940","30.001360"],["-90.264790","30.001280"],["-90.264710","30.001250"],["-90.264630","30.001220"],["-90.264460","30.001160"],["-90.264310","30.001120"],["-90.264120","30.001080"],["-90.264005","30.001053"],["-90.263890","30.001025"],["-90.263775","30.000998"],["-90.263660","30.000970"],["-90.263545","30.000943"],["-90.263430","30.000915"],["-90.263315","30.000888"],["-90.263200","30.000860"],["-90.263000","30.000830"],["-90.262885","30.000815"],["-90.262770","30.000800"],["-90.262650","30.000798"],["-90.262530","30.000795"],["-90.262410","30.000793"],["-90.262290","30.000790"],["-90.262170","30.000755"],["-90.262050","30.000720"],["-90.261940","30.000695"],["-90.261830","30.000670"],["-90.261670","30.000620"],["-90.261490","30.000540"],["-90.261330","30.000460"],["-90.261150","30.000350"],["-90.261070","30.000290"],["-90.260970","30.000220"],["-90.260920","30.000180"],["-90.260820","30.000090"],["-90.260730","30.000030"],["-90.260600","29.999905"],["-90.260470","29.999780"],["-90.260340","29.999655"],["-90.260210","29.999530"],["-90.260110","29.999420"],["-90.260040","29.999330"],["-90.259970","29.999240"],["-90.259890","29.999120"],["-90.259800","29.998960"],["-90.259760","29.998865"],["-90.259720","29.998770"],["-90.259690","29.998675"],["-90.259660","29.998580"],["-90.259630","29.998440"],["-90.259610","29.998320"],["-90.259613","29.998155"],["-90.259615","29.997990"],["-90.259618","29.997825"],["-90.259620","29.997660"],["-90.259620","29.997510"],["-90.259610","29.997370"],["-90.259580","29.997200"],["-90.259540","29.997100"],["-90.259500","29.997010"],["-90.259460","29.996930"],["-90.259410","29.996860"],["-90.259315","29.996765"],["-90.259220","29.996670"],["-90.259170","29.996630"],["-90.259090","29.996500"],["-90.258990","29.996420"],["-90.258880","29.996350"],["-90.258770","29.996290"],["-90.258660","29.996230"],["-90.258560","29.996190"],["-90.258550","29.996190"],["-90.258440","29.996150"],["-90.258330","29.996120"],["-90.258135","29.996085"],["-90.257940","29.996050"],["-90.257740","29.996010"],["-90.257540","29.995980"],["-90.257330","29.995940"],["-90.257270","29.995930"],["-90.257070","29.995940"],["-90.256860","29.995950"],["-90.256820","29.995950"],["-90.256720","29.995950"],["-90.256650","29.995940"],["-90.256610","29.995930"],["-90.256510","29.995920"],["-90.256450","29.995920"],["-90.256410","29.995920"],["-90.256320","29.995930"],["-90.256230","29.995950"],["-90.256140","29.995980"],["-90.256060","29.996020"],["-90.255980","29.996070"],["-90.255910","29.996120"],["-90.255850","29.996190"],["-90.255800","29.996260"],["-90.255760","29.996330"],["-90.255730","29.996410"],["-90.255700","29.996490"],["-90.255700","29.996570"],["-90.255700","29.996640"],["-90.255710","29.996650"],["-90.255730","29.996770"],["-90.255740","29.996810"],["-90.255743","29.996841"]]}]}},{"type":"Feature","properties":{"route_id":"27","agency_id":"1","route_short_name":"27","route_long_name":"Louisiana","route_type":"3","route_color":"#4fbdff","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.103272","29.984199"],["-90.105686","29.983718"],["-90.108660","29.982873"],["-90.072151","29.924778"],["-90.102785","29.984246"],["-90.108449","29.967410"],["-90.109388","29.964873"],["-90.108683","29.964256"],["-90.107455","29.963154"],["-90.106096","29.961419"],["-90.105489","29.960217"],["-90.104435","29.958095"],["-90.103635","29.956440"],["-90.102775","29.954666"],["-90.101755","29.952587"],["-90.100903","29.950955"],["-90.099757","29.948500"],["-90.093387","29.931999"],["-90.092542","29.930225"],["-90.090956","29.926989"],["-90.089129","29.922992"],["-90.087679","29.920221"],["-90.087060","29.918955"],["-90.080867","29.919714"],["-90.078420","29.920514"],["-90.076541","29.921135"],["-90.074723","29.921710"],["-90.073419","29.922257"],["-90.070189","29.926067"],["-90.091645","29.928382"],["-90.084465","29.918621"],["-90.102530","29.986501"],["-90.110303","29.982343"],["-90.089981","29.924899"],["-90.102235","29.988936"],["-90.098473","29.945731"],["-90.097255","29.943366"],["-90.096477","29.941766"],["-90.096381","29.938125"],["-90.095046","29.935338"],["-90.094194","29.933539"]]},{"type":"LineString","coordinates":[["-90.102235","29.988936"],["-90.102147","29.988892"],["-90.102167","29.988729"],["-90.102187","29.988566"],["-90.102207","29.988403"],["-90.102227","29.988240"],["-90.102248","29.988077"],["-90.102268","29.987915"],["-90.102288","29.987752"],["-90.102308","29.987589"],["-90.102324","29.987459"],["-90.102340","29.987330"],["-90.102356","29.987201"],["-90.102372","29.987071"],["-90.102388","29.986942"],["-90.102404","29.986812"],["-90.102420","29.986683"],["-90.102436","29.986554"],["-90.102530","29.986501"],["-90.102460","29.986426"],["-90.102477","29.986268"],["-90.102494","29.986109"],["-90.102510","29.985951"],["-90.102527","29.985793"],["-90.102544","29.985634"],["-90.102561","29.985476"],["-90.102577","29.985318"],["-90.102594","29.985159"],["-90.102605","29.985056"],["-90.102616","29.984953"],["-90.102627","29.984849"],["-90.102638","29.984746"],["-90.102649","29.984643"],["-90.102661","29.984539"],["-90.102672","29.984436"],["-90.102683","29.984332"],["-90.102785","29.984246"],["-90.102691","29.984170"],["-90.102755","29.984115"],["-90.102868","29.984119"],["-90.102981","29.984123"],["-90.103095","29.984127"],["-90.103208","29.984131"],["-90.103272","29.984199"],["-90.103479","29.984141"],["-90.103699","29.984141"],["-90.103809","29.984113"],["-90.103919","29.984085"],["-90.104029","29.984057"],["-90.104139","29.984029"],["-90.104302","29.983990"],["-90.104466","29.983950"],["-90.104629","29.983911"],["-90.104793","29.983871"],["-90.104957","29.983832"],["-90.105120","29.983792"],["-90.105284","29.983753"],["-90.105447","29.983713"],["-90.105567","29.983716"],["-90.105686","29.983718"],["-90.105861","29.983606"],["-90.106050","29.983559"],["-90.106240","29.983512"],["-90.106430","29.983465"],["-90.106620","29.983418"],["-90.106809","29.983371"],["-90.106999","29.983324"],["-90.107189","29.983277"],["-90.107379","29.983230"],["-90.107509","29.983188"],["-90.107640","29.983146"],["-90.107771","29.983105"],["-90.107902","29.983063"],["-90.108032","29.983021"],["-90.108163","29.982979"],["-90.108294","29.982937"],["-90.108425","29.982896"],["-90.108542","29.982884"],["-90.108660","29.982873"],["-90.108781","29.982810"],["-90.108902","29.982747"],["-90.109062","29.982698"],["-90.109223","29.982649"],["-90.109383","29.982600"],["-90.109543","29.982552"],["-90.109703","29.982503"],["-90.109864","29.982454"],["-90.110024","29.982405"],["-90.110184","29.982357"],["-90.110303","29.982343"],["-90.110458","29.982264"],["-90.110654","29.982196"],["-90.110850","29.982129"],["-90.111045","29.982062"],["-90.111241","29.981994"],["-90.111307","29.981929"],["-90.111327","29.981848"],["-90.111307","29.981684"],["-90.111291","29.981638"],["-90.111126","29.981526"],["-90.110962","29.981415"],["-90.110797","29.981303"],["-90.110633","29.981192"],["-90.110468","29.981080"],["-90.110304","29.980969"],["-90.110139","29.980857"],["-90.109975","29.980745"],["-90.109810","29.980634"],["-90.109645","29.980522"],["-90.109481","29.980411"],["-90.109316","29.980299"],["-90.109152","29.980188"],["-90.108987","29.980076"],["-90.108823","29.979965"],["-90.108658","29.979853"],["-90.108494","29.979742"],["-90.108329","29.979630"],["-90.108165","29.979519"],["-90.108000","29.979407"],["-90.107835","29.979296"],["-90.107671","29.979184"],["-90.107506","29.979073"],["-90.107342","29.978961"],["-90.107177","29.978850"],["-90.107013","29.978738"],["-90.106848","29.978627"],["-90.106684","29.978515"],["-90.106519","29.978404"],["-90.106355","29.978292"],["-90.106190","29.978180"],["-90.106025","29.978069"],["-90.105861","29.977957"],["-90.105696","29.977846"],["-90.105532","29.977734"],["-90.105367","29.977623"],["-90.105203","29.977511"],["-90.105038","29.977400"],["-90.104874","29.977288"],["-90.104709","29.977177"],["-90.104545","29.977065"],["-90.104380","29.976954"],["-90.104216","29.976842"],["-90.104051","29.976731"],["-90.103886","29.976619"],["-90.103722","29.976508"],["-90.103557","29.976396"],["-90.103393","29.976285"],["-90.103228","29.976173"],["-90.103064","29.976061"],["-90.102899","29.975950"],["-90.102735","29.975838"],["-90.102570","29.975727"],["-90.102406","29.975615"],["-90.102241","29.975504"],["-90.102077","29.975392"],["-90.101912","29.975281"],["-90.101747","29.975169"],["-90.101583","29.975058"],["-90.101418","29.974946"],["-90.101254","29.974835"],["-90.101089","29.974723"],["-90.100925","29.974612"],["-90.100760","29.974500"],["-90.100854","29.974412"],["-90.100948","29.974324"],["-90.101041","29.974236"],["-90.101135","29.974148"],["-90.101229","29.974061"],["-90.101323","29.973973"],["-90.101416","29.973885"],["-90.101510","29.973797"],["-90.101604","29.973709"],["-90.101697","29.973621"],["-90.101791","29.973533"],["-90.101885","29.973445"],["-90.101979","29.973357"],["-90.102072","29.973270"],["-90.102166","29.973182"],["-90.102260","29.973094"],["-90.102353","29.973006"],["-90.102447","29.972918"],["-90.102541","29.972830"],["-90.102635","29.972742"],["-90.102728","29.972654"],["-90.102822","29.972566"],["-90.102916","29.972479"],["-90.103010","29.972391"],["-90.103103","29.972303"],["-90.103197","29.972215"],["-90.103291","29.972127"],["-90.103384","29.972039"],["-90.103478","29.971951"],["-90.103572","29.971863"],["-90.103666","29.971775"],["-90.103759","29.971688"],["-90.103853","29.971600"],["-90.103947","29.971512"],["-90.104040","29.971424"],["-90.104134","29.971336"],["-90.104228","29.971248"],["-90.104322","29.971160"],["-90.104415","29.971072"],["-90.104509","29.970984"],["-90.104603","29.970897"],["-90.104696","29.970809"],["-90.104790","29.970721"],["-90.104884","29.970633"],["-90.104978","29.970545"],["-90.105071","29.970457"],["-90.105165","29.970369"],["-90.105259","29.970281"],["-90.105352","29.970193"],["-90.105446","29.970105"],["-90.105540","29.970018"],["-90.105633","29.969930"],["-90.105727","29.969842"],["-90.105821","29.969754"],["-90.105915","29.969666"],["-90.106008","29.969578"],["-90.106102","29.969490"],["-90.106196","29.969402"],["-90.106289","29.969314"],["-90.106383","29.969227"],["-90.106477","29.969139"],["-90.106571","29.969051"],["-90.106664","29.968963"],["-90.106758","29.968875"],["-90.106906","29.968733"],["-90.107053","29.968592"],["-90.107201","29.968450"],["-90.107298","29.968354"],["-90.107395","29.968257"],["-90.107491","29.968161"],["-90.107588","29.968065"],["-90.107672","29.967986"],["-90.107755","29.967908"],["-90.107839","29.967830"],["-90.107922","29.967752"],["-90.108006","29.967674"],["-90.108089","29.967596"],["-90.108173","29.967518"],["-90.108256","29.967439"],["-90.108353","29.967347"],["-90.108449","29.967410"],["-90.108438","29.967285"],["-90.108525","29.967203"],["-90.108611","29.967121"],["-90.108698","29.967038"],["-90.108784","29.966956"],["-90.108871","29.966874"],["-90.108958","29.966792"],["-90.109044","29.966710"],["-90.109131","29.966628"],["-90.109217","29.966546"],["-90.109304","29.966464"],["-90.109390","29.966381"],["-90.109477","29.966299"],["-90.109564","29.966217"],["-90.109650","29.966135"],["-90.109737","29.966053"],["-90.109823","29.965971"],["-90.109909","29.965897"],["-90.109994","29.965823"],["-90.110079","29.965749"],["-90.110164","29.965675"],["-90.110072","29.965587"],["-90.109980","29.965500"],["-90.109887","29.965413"],["-90.109795","29.965326"],["-90.109703","29.965239"],["-90.109611","29.965152"],["-90.109519","29.965065"],["-90.109426","29.964977"],["-90.109388","29.964873"],["-90.109301","29.964879"],["-90.109224","29.964810"],["-90.109146","29.964740"],["-90.109069","29.964671"],["-90.108991","29.964602"],["-90.108913","29.964533"],["-90.108836","29.964463"],["-90.108758","29.964394"],["-90.108680","29.964325"],["-90.108683","29.964256"],["-90.108620","29.964263"],["-90.108481","29.964139"],["-90.108342","29.964014"],["-90.108203","29.963889"],["-90.108064","29.963765"],["-90.107924","29.963640"],["-90.107785","29.963516"],["-90.107646","29.963391"],["-90.107507","29.963266"],["-90.107455","29.963154"],["-90.107325","29.963099"],["-90.107172","29.962962"],["-90.107018","29.962825"],["-90.106865","29.962688"],["-90.106712","29.962551"],["-90.106635","29.962477"],["-90.106558","29.962403"],["-90.106481","29.962328"],["-90.106403","29.962254"],["-90.106319","29.962080"],["-90.106234","29.961905"],["-90.106166","29.961766"],["-90.106098","29.961627"],["-90.106054","29.961506"],["-90.106096","29.961419"],["-90.105995","29.961388"],["-90.105946","29.961293"],["-90.105898","29.961198"],["-90.105849","29.961103"],["-90.105800","29.961008"],["-90.105752","29.960914"],["-90.105703","29.960819"],["-90.105655","29.960724"],["-90.105606","29.960629"],["-90.105531","29.960479"],["-90.105456","29.960329"],["-90.105489","29.960217"],["-90.105393","29.960178"],["-90.105343","29.960077"],["-90.105294","29.959976"],["-90.105245","29.959874"],["-90.105196","29.959773"],["-90.105147","29.959672"],["-90.105098","29.959571"],["-90.105049","29.959470"],["-90.105000","29.959368"],["-90.104950","29.959267"],["-90.104901","29.959166"],["-90.104852","29.959065"],["-90.104803","29.958964"],["-90.104754","29.958862"],["-90.104705","29.958761"],["-90.104656","29.958660"],["-90.104607","29.958559"],["-90.104526","29.958388"],["-90.104446","29.958217"],["-90.104435","29.958095"],["-90.104333","29.958057"],["-90.104285","29.957951"],["-90.104237","29.957846"],["-90.104189","29.957740"],["-90.104141","29.957635"],["-90.104093","29.957529"],["-90.104045","29.957424"],["-90.103997","29.957318"],["-90.103949","29.957213"],["-90.103899","29.957110"],["-90.103849","29.957000"],["-90.103784","29.956829"],["-90.103718","29.956659"],["-90.103653","29.956488"],["-90.103635","29.956440"],["-90.103574","29.956453"],["-90.103501","29.956283"],["-90.103429","29.956113"],["-90.103361","29.956004"],["-90.103295","29.955865"],["-90.103229","29.955726"],["-90.103162","29.955588"],["-90.103096","29.955449"],["-90.103030","29.955310"],["-90.102970","29.955190"],["-90.102910","29.955070"],["-90.102850","29.954950"],["-90.102790","29.954830"],["-90.102730","29.954710"],["-90.102720","29.954690"],["-90.102775","29.954666"],["-90.102720","29.954690"],["-90.102690","29.954630"],["-90.102640","29.954540"],["-90.102565","29.954360"],["-90.102490","29.954180"],["-90.102400","29.954018"],["-90.102310","29.953855"],["-90.102220","29.953693"],["-90.102130","29.953530"],["-90.102055","29.953378"],["-90.101980","29.953225"],["-90.101905","29.953073"],["-90.101830","29.952920"],["-90.101750","29.952765"],["-90.101670","29.952610"],["-90.101755","29.952587"],["-90.101670","29.952610"],["-90.101640","29.952550"],["-90.101560","29.952390"],["-90.101482","29.952233"],["-90.101405","29.952075"],["-90.101327","29.951918"],["-90.101250","29.951760"],["-90.101185","29.951630"],["-90.101120","29.951500"],["-90.101055","29.951350"],["-90.100990","29.951200"],["-90.100950","29.951130"],["-90.100880","29.950960"],["-90.100903","29.950955"],["-90.100880","29.950960"],["-90.100860","29.950910"],["-90.100760","29.950750"],["-90.100715","29.950658"],["-90.100670","29.950566"],["-90.100625","29.950474"],["-90.100580","29.950383"],["-90.100535","29.950291"],["-90.100490","29.950199"],["-90.100445","29.950107"],["-90.100400","29.950015"],["-90.100355","29.949923"],["-90.100310","29.949831"],["-90.100265","29.949739"],["-90.100220","29.949648"],["-90.100175","29.949556"],["-90.100130","29.949464"],["-90.100085","29.949372"],["-90.100040","29.949280"],["-90.099994","29.949186"],["-90.099917","29.949032"],["-90.099841","29.948878"],["-90.099764","29.948724"],["-90.099688","29.948570"],["-90.099757","29.948500"],["-90.099620","29.948365"],["-90.099549","29.948294"],["-90.099470","29.948128"],["-90.099390","29.947962"],["-90.099310","29.947796"],["-90.099230","29.947630"],["-90.099151","29.947463"],["-90.099072","29.947297"],["-90.098993","29.947131"],["-90.098914","29.946964"],["-90.098840","29.946809"],["-90.098762","29.946642"],["-90.098690","29.946490"],["-90.098607","29.946325"],["-90.098525","29.946160"],["-90.098470","29.946050"],["-90.098472","29.945870"],["-90.098473","29.945731"],["-90.098324","29.945606"],["-90.098210","29.945510"],["-90.098125","29.945346"],["-90.098041","29.945182"],["-90.098009","29.945120"],["-90.097931","29.944953"],["-90.097853","29.944787"],["-90.097775","29.944620"],["-90.097696","29.944454"],["-90.097618","29.944287"],["-90.097536","29.944122"],["-90.097454","29.943957"],["-90.097371","29.943792"],["-90.097323","29.943617"],["-90.097276","29.943442"],["-90.097255","29.943366"],["-90.097159","29.943206"],["-90.097064","29.943047"],["-90.096968","29.942887"],["-90.096872","29.942728"],["-90.096789","29.942589"],["-90.096709","29.942423"],["-90.096628","29.942257"],["-90.096548","29.942092"],["-90.096509","29.941915"],["-90.096477","29.941766"],["-90.096370","29.941612"],["-90.096298","29.941507"],["-90.096249","29.941370"],["-90.096236","29.941190"],["-90.096222","29.941011"],["-90.096218","29.940831"],["-90.096213","29.940651"],["-90.096210","29.940550"],["-90.096241","29.940372"],["-90.096260","29.940260"],["-90.096339","29.940094"],["-90.096360","29.940049"],["-90.096443","29.939884"],["-90.096525","29.939719"],["-90.096599","29.939570"],["-90.096625","29.939392"],["-90.096638","29.939212"],["-90.096624","29.939033"],["-90.096620","29.938979"],["-90.096577","29.938803"],["-90.096559","29.938730"],["-90.096478","29.938564"],["-90.096398","29.938399"],["-90.096387","29.938219"],["-90.096381","29.938125"],["-90.096284","29.937966"],["-90.096188","29.937807"],["-90.096091","29.937647"],["-90.095995","29.937488"],["-90.095898","29.937329"],["-90.095850","29.937249"],["-90.095771","29.937083"],["-90.095691","29.936917"],["-90.095640","29.936809"],["-90.095563","29.936642"],["-90.095487","29.936475"],["-90.095429","29.936349"],["-90.095348","29.936183"],["-90.095268","29.936018"],["-90.095230","29.935940"],["-90.095144","29.935776"],["-90.095119","29.935729"],["-90.095086","29.935551"],["-90.095053","29.935374"],["-90.095046","29.935338"],["-90.094923","29.935193"],["-90.094800","29.935048"],["-90.094759","29.934999"],["-90.094677","29.934834"],["-90.094595","29.934669"],["-90.094550","29.934579"],["-90.094473","29.934412"],["-90.094396","29.934245"],["-90.094319","29.934078"],["-90.094242","29.933911"],["-90.094219","29.933732"],["-90.094196","29.933553"],["-90.094194","29.933539"],["-90.094067","29.933397"],["-90.093940","29.933255"],["-90.093900","29.933210"],["-90.093819","29.933044"],["-90.093738","29.932879"],["-90.093700","29.932800"],["-90.093633","29.932630"],["-90.093567","29.932459"],["-90.093500","29.932289"],["-90.093434","29.932119"],["-90.093387","29.931999"],["-90.093275","29.931847"],["-90.093207","29.931755"],["-90.093125","29.931590"],["-90.093090","29.931520"],["-90.093006","29.931356"],["-90.092922","29.931191"],["-90.092850","29.931050"],["-90.092786","29.930879"],["-90.092722","29.930708"],["-90.092668","29.930623"],["-90.092615","29.930538"],["-90.092561","29.930452"],["-90.092507","29.930367"],["-90.092542","29.930225"],["-90.092444","29.930226"],["-90.092361","29.930050"],["-90.092279","29.929875"],["-90.092196","29.929699"],["-90.092114","29.929524"],["-90.092036","29.929365"],["-90.091959","29.929205"],["-90.091882","29.929046"],["-90.091805","29.928887"],["-90.091754","29.928780"],["-90.091703","29.928672"],["-90.091653","29.928565"],["-90.091602","29.928457"],["-90.091645","29.928382"],["-90.091550","29.928360"],["-90.091505","29.928268"],["-90.091461","29.928176"],["-90.091416","29.928084"],["-90.091372","29.927992"],["-90.091327","29.927901"],["-90.091283","29.927809"],["-90.091238","29.927717"],["-90.091194","29.927625"],["-90.091154","29.927481"],["-90.091096","29.927366"],["-90.091038","29.927251"],["-90.090980","29.927136"],["-90.090922","29.927021"],["-90.090956","29.926989"],["-90.090879","29.926952"],["-90.090813","29.926829"],["-90.090748","29.926705"],["-90.090667","29.926539"],["-90.090585","29.926374"],["-90.090529","29.926260"],["-90.090447","29.926095"],["-90.090364","29.925930"],["-90.090282","29.925765"],["-90.090220","29.925640"],["-90.090164","29.925467"],["-90.090108","29.925294"],["-90.090052","29.925120"],["-90.089997","29.924947"],["-90.089981","29.924899"],["-90.089850","29.924760"],["-90.089779","29.924684"],["-90.089698","29.924518"],["-90.089617","29.924353"],["-90.089536","29.924187"],["-90.089455","29.924022"],["-90.089409","29.923929"],["-90.089328","29.923763"],["-90.089247","29.923598"],["-90.089189","29.923479"],["-90.089150","29.923389"],["-90.089140","29.923209"],["-90.089131","29.923030"],["-90.089129","29.922992"],["-90.088966","29.922881"],["-90.088868","29.922814"],["-90.088787","29.922648"],["-90.088719","29.922509"],["-90.088638","29.922343"],["-90.088558","29.922177"],["-90.088480","29.922020"],["-90.088401","29.921854"],["-90.088323","29.921687"],["-90.088240","29.921522"],["-90.088158","29.921357"],["-90.088076","29.921192"],["-90.088030","29.921100"],["-90.087951","29.920934"],["-90.087872","29.920767"],["-90.087830","29.920680"],["-90.087773","29.920507"],["-90.087726","29.920364"],["-90.087679","29.920221"],["-90.087620","29.920240"],["-90.087600","29.920190"],["-90.087529","29.920039"],["-90.087457","29.919888"],["-90.087386","29.919736"],["-90.087315","29.919585"],["-90.087244","29.919434"],["-90.087172","29.919283"],["-90.087101","29.919131"],["-90.087030","29.918980"],["-90.087060","29.918955"],["-90.087030","29.918980"],["-90.086990","29.918890"],["-90.086950","29.918800"],["-90.086895","29.918690"],["-90.086840","29.918580"],["-90.086785","29.918470"],["-90.086730","29.918360"],["-90.086560","29.918380"],["-90.086440","29.918390"],["-90.086380","29.918400"],["-90.086185","29.918425"],["-90.085990","29.918450"],["-90.085960","29.918450"],["-90.085845","29.918465"],["-90.085730","29.918480"],["-90.085550","29.918505"],["-90.085370","29.918530"],["-90.085180","29.918560"],["-90.084990","29.918590"],["-90.084910","29.918600"],["-90.084695","29.918645"],["-90.084580","29.918633"],["-90.084465","29.918621"],["-90.084335","29.918728"],["-90.084204","29.918763"],["-90.084073","29.918799"],["-90.083941","29.918834"],["-90.083810","29.918870"],["-90.083679","29.918905"],["-90.083547","29.918941"],["-90.083416","29.918976"],["-90.083285","29.919011"],["-90.083120","29.919057"],["-90.082955","29.919102"],["-90.082790","29.919147"],["-90.082625","29.919193"],["-90.082460","29.919238"],["-90.082295","29.919283"],["-90.082130","29.919329"],["-90.081965","29.919374"],["-90.081845","29.919415"],["-90.081724","29.919457"],["-90.081603","29.919498"],["-90.081482","29.919539"],["-90.081362","29.919580"],["-90.081241","29.919622"],["-90.081120","29.919663"],["-90.081000","29.919704"],["-90.080867","29.919714"],["-90.080762","29.919770"],["-90.080656","29.919825"],["-90.080523","29.919868"],["-90.080389","29.919912"],["-90.080255","29.919955"],["-90.080121","29.919998"],["-90.079988","29.920042"],["-90.079854","29.920085"],["-90.079720","29.920128"],["-90.079586","29.920172"],["-90.079453","29.920215"],["-90.079319","29.920258"],["-90.079185","29.920301"],["-90.079051","29.920345"],["-90.078918","29.920388"],["-90.078784","29.920431"],["-90.078650","29.920475"],["-90.078516","29.920518"],["-90.078420","29.920514"],["-90.078291","29.920590"],["-90.078162","29.920667"],["-90.077973","29.920728"],["-90.077784","29.920789"],["-90.077595","29.920850"],["-90.077406","29.920911"],["-90.077217","29.920972"],["-90.077028","29.921033"],["-90.076839","29.921094"],["-90.076650","29.921155"],["-90.076541","29.921135"],["-90.076440","29.921194"],["-90.076339","29.921253"],["-90.076178","29.921306"],["-90.076017","29.921359"],["-90.075856","29.921413"],["-90.075695","29.921466"],["-90.075534","29.921520"],["-90.075373","29.921573"],["-90.075212","29.921627"],["-90.075051","29.921680"],["-90.074887","29.921695"],["-90.074723","29.921710"],["-90.074605","29.921770"],["-90.074488","29.921829"],["-90.074374","29.921878"],["-90.074260","29.921927"],["-90.074146","29.921976"],["-90.074032","29.922024"],["-90.073918","29.922073"],["-90.073804","29.922122"],["-90.073690","29.922171"],["-90.073576","29.922220"],["-90.073419","29.922257"],["-90.073285","29.922326"],["-90.073152","29.922395"],["-90.073018","29.922464"],["-90.072884","29.922532"],["-90.072751","29.922601"],["-90.072617","29.922670"],["-90.072483","29.922739"],["-90.072349","29.922808"],["-90.072216","29.922877"],["-90.072082","29.922946"],["-90.071948","29.923014"],["-90.071815","29.923083"],["-90.071681","29.923152"],["-90.071547","29.923221"],["-90.071414","29.923290"],["-90.071280","29.923359"],["-90.071352","29.923441"],["-90.071424","29.923523"],["-90.071496","29.923605"],["-90.071568","29.923688"],["-90.071640","29.923770"],["-90.071712","29.923852"],["-90.071784","29.923934"],["-90.071857","29.924017"],["-90.071929","29.924099"],["-90.072001","29.924181"],["-90.072073","29.924263"],["-90.072145","29.924345"],["-90.072217","29.924428"],["-90.072289","29.924510"],["-90.072361","29.924592"],["-90.072433","29.924674"],["-90.072342","29.924744"],["-90.072251","29.924814"],["-90.072151","29.924778"],["-90.072099","29.924863"],["-90.072047","29.924949"],["-90.071931","29.925019"],["-90.071815","29.925089"],["-90.071699","29.925158"],["-90.071583","29.925228"],["-90.071466","29.925298"],["-90.071350","29.925368"],["-90.071234","29.925438"],["-90.071118","29.925508"],["-90.071002","29.925578"],["-90.070886","29.925648"],["-90.070770","29.925718"],["-90.070654","29.925787"],["-90.070537","29.925857"],["-90.070421","29.925927"],["-90.070305","29.925997"],["-90.070189","29.926067"],["-90.070189","29.926067"]]},{"type":"MultiPoint","coordinates":[["-90.101855","29.986369"],["-90.110126","29.982245"],["-90.108625","29.982730"],["-90.106689","29.983226"],["-90.105021","29.983631"],["-90.073256","29.922459"],["-90.076354","29.921332"],["-90.078191","29.920757"],["-90.080714","29.919906"],["-90.083523","29.918993"],["-90.069093","29.924855"],["-90.087386","29.920172"],["-90.088714","29.922931"],["-90.090593","29.926846"],["-90.091184","29.928182"],["-90.092191","29.930113"],["-90.093039","29.931897"],["-90.093884","29.933676"],["-90.100456","29.950804"],["-90.101226","29.952435"],["-90.102550","29.954814"],["-90.103598","29.956962"],["-90.104068","29.957804"],["-90.105197","29.960325"],["-90.105790","29.961476"],["-90.107166","29.963199"],["-90.108411","29.964349"],["-90.109558","29.965845"],["-90.070189","29.926067"],["-90.074564","29.921914"],["-90.071116","29.923512"],["-90.089566","29.924874"],["-90.102235","29.988936"],["-90.095029","29.936014"],["-90.096165","29.938397"],["-90.096356","29.942253"],["-90.097428","29.944492"],["-90.098229","29.946318"],["-90.098953","29.947711"]]},{"type":"LineString","coordinates":[["-90.070189","29.926067"],["-90.070099","29.926200"],["-90.070009","29.926334"],["-90.069914","29.926432"],["-90.069819","29.926530"],["-90.069724","29.926628"],["-90.069628","29.926727"],["-90.069533","29.926825"],["-90.069438","29.926923"],["-90.069343","29.927021"],["-90.069248","29.927119"],["-90.069129","29.927221"],["-90.069010","29.927322"],["-90.068891","29.927423"],["-90.068773","29.927524"],["-90.068654","29.927625"],["-90.068535","29.927726"],["-90.068417","29.927827"],["-90.068298","29.927928"],["-90.068173","29.927814"],["-90.068049","29.927699"],["-90.067924","29.927585"],["-90.067799","29.927470"],["-90.067674","29.927356"],["-90.067550","29.927241"],["-90.067425","29.927127"],["-90.067300","29.927012"],["-90.067338","29.926879"],["-90.067377","29.926746"],["-90.067415","29.926613"],["-90.067453","29.926480"],["-90.067491","29.926347"],["-90.067530","29.926214"],["-90.067568","29.926081"],["-90.067606","29.925948"],["-90.067762","29.925825"],["-90.067917","29.925701"],["-90.068008","29.925628"],["-90.068100","29.925555"],["-90.068191","29.925482"],["-90.068282","29.925409"],["-90.068369","29.925344"],["-90.068456","29.925279"],["-90.068543","29.925215"],["-90.068631","29.925150"],["-90.068718","29.925086"],["-90.068805","29.925021"],["-90.068892","29.924957"],["-90.068979","29.924892"],["-90.069093","29.924855"],["-90.069159","29.924727"],["-90.069303","29.924629"],["-90.069447","29.924530"],["-90.069536","29.924469"],["-90.069625","29.924408"],["-90.069713","29.924348"],["-90.069802","29.924287"],["-90.069891","29.924226"],["-90.069979","29.924165"],["-90.070068","29.924105"],["-90.070157","29.924044"],["-90.070245","29.923983"],["-90.070334","29.923922"],["-90.070423","29.923862"],["-90.070511","29.923801"],["-90.070600","29.923740"],["-90.070710","29.923670"],["-90.070880","29.923570"],["-90.070920","29.923550"],["-90.071090","29.923470"],["-90.071116","29.923512"],["-90.071090","29.923470"],["-90.071200","29.923410"],["-90.071210","29.923400"],["-90.071300","29.923360"],["-90.071410","29.923310"],["-90.071440","29.923290"],["-90.071470","29.923270"],["-90.071590","29.923211"],["-90.071710","29.923153"],["-90.071830","29.923094"],["-90.071950","29.923035"],["-90.072070","29.922976"],["-90.072190","29.922918"],["-90.072310","29.922859"],["-90.072430","29.922800"],["-90.072500","29.922770"],["-90.072683","29.922680"],["-90.072865","29.922590"],["-90.073048","29.922500"],["-90.073230","29.922410"],["-90.073256","29.922459"],["-90.073230","29.922410"],["-90.073340","29.922360"],["-90.073455","29.922300"],["-90.073570","29.922240"],["-90.073740","29.922160"],["-90.073820","29.922120"],["-90.073950","29.922060"],["-90.074030","29.922030"],["-90.074150","29.921990"],["-90.074320","29.921930"],["-90.074430","29.921895"],["-90.074540","29.921860"],["-90.074564","29.921914"],["-90.074540","29.921860"],["-90.074630","29.921830"],["-90.074744","29.921791"],["-90.074858","29.921753"],["-90.074971","29.921714"],["-90.075085","29.921675"],["-90.075199","29.921636"],["-90.075313","29.921598"],["-90.075426","29.921559"],["-90.075540","29.921520"],["-90.075735","29.921455"],["-90.075930","29.921390"],["-90.076125","29.921325"],["-90.076320","29.921260"],["-90.076354","29.921332"],["-90.076320","29.921260"],["-90.076450","29.921220"],["-90.076590","29.921175"],["-90.076730","29.921130"],["-90.076870","29.921085"],["-90.077010","29.921040"],["-90.077210","29.920980"],["-90.077250","29.920960"],["-90.077290","29.920950"],["-90.077310","29.920940"],["-90.077330","29.920940"],["-90.077360","29.920940"],["-90.077390","29.920940"],["-90.077565","29.920880"],["-90.077740","29.920820"],["-90.077905","29.920765"],["-90.078070","29.920710"],["-90.078160","29.920680"],["-90.078191","29.920757"],["-90.078160","29.920680"],["-90.078240","29.920660"],["-90.078260","29.920650"],["-90.078280","29.920640"],["-90.078350","29.920610"],["-90.078476","29.920570"],["-90.078603","29.920530"],["-90.078729","29.920490"],["-90.078855","29.920450"],["-90.078981","29.920410"],["-90.079108","29.920370"],["-90.079234","29.920330"],["-90.079360","29.920290"],["-90.079493","29.920248"],["-90.079625","29.920205"],["-90.079758","29.920163"],["-90.079890","29.920120"],["-90.080020","29.920075"],["-90.080150","29.920030"],["-90.080285","29.919988"],["-90.080420","29.919945"],["-90.080555","29.919903"],["-90.080690","29.919860"],["-90.080714","29.919906"],["-90.080690","29.919860"],["-90.080820","29.919820"],["-90.081010","29.919755"],["-90.081200","29.919690"],["-90.081340","29.919640"],["-90.081480","29.919590"],["-90.081605","29.919550"],["-90.081730","29.919510"],["-90.081910","29.919455"],["-90.082090","29.919400"],["-90.082285","29.919335"],["-90.082480","29.919270"],["-90.082650","29.919220"],["-90.082756","29.919185"],["-90.082863","29.919150"],["-90.082969","29.919115"],["-90.083075","29.919080"],["-90.083181","29.919045"],["-90.083288","29.919010"],["-90.083394","29.918975"],["-90.083500","29.918940"],["-90.083523","29.918993"],["-90.083500","29.918940"],["-90.083590","29.918910"],["-90.083790","29.918860"],["-90.083905","29.918825"],["-90.084020","29.918790"],["-90.084230","29.918740"],["-90.084440","29.918690"],["-90.084558","29.918668"],["-90.084675","29.918645"],["-90.084793","29.918623"],["-90.084910","29.918600"],["-90.085023","29.918580"],["-90.085135","29.918560"],["-90.085248","29.918540"],["-90.085360","29.918520"],["-90.085545","29.918500"],["-90.085730","29.918480"],["-90.085860","29.918465"],["-90.085990","29.918450"],["-90.086185","29.918425"],["-90.086380","29.918400"],["-90.086440","29.918390"],["-90.086560","29.918370"],["-90.086617","29.918490"],["-90.086675","29.918610"],["-90.086732","29.918730"],["-90.086790","29.918850"],["-90.086835","29.918940"],["-90.086880","29.919030"],["-90.086949","29.919171"],["-90.087017","29.919313"],["-90.087086","29.919454"],["-90.087155","29.919595"],["-90.087224","29.919736"],["-90.087292","29.919878"],["-90.087361","29.920019"],["-90.087430","29.920160"],["-90.087386","29.920172"],["-90.087430","29.920160"],["-90.087460","29.920230"],["-90.087517","29.920345"],["-90.087575","29.920460"],["-90.087632","29.920575"],["-90.087690","29.920690"],["-90.087747","29.920805"],["-90.087805","29.920920"],["-90.087862","29.921035"],["-90.087920","29.921150"],["-90.087976","29.921268"],["-90.088032","29.921385"],["-90.088089","29.921503"],["-90.088145","29.921620"],["-90.088201","29.921738"],["-90.088257","29.921855"],["-90.088314","29.921973"],["-90.088370","29.922090"],["-90.088427","29.922210"],["-90.088485","29.922330"],["-90.088542","29.922450"],["-90.088600","29.922570"],["-90.088685","29.922740"],["-90.088770","29.922910"],["-90.088714","29.922931"],["-90.088770","29.922910"],["-90.088830","29.923020"],["-90.088897","29.923158"],["-90.088965","29.923295"],["-90.089032","29.923433"],["-90.089100","29.923570"],["-90.089147","29.923673"],["-90.089195","29.923775"],["-90.089242","29.923878"],["-90.089290","29.923980"],["-90.089372","29.924148"],["-90.089455","29.924315"],["-90.089537","29.924483"],["-90.089620","29.924650"],["-90.089685","29.924780"],["-90.089750","29.924910"],["-90.089670","29.924950"],["-90.089610","29.924970"],["-90.089566","29.924874"],["-90.089610","29.924970"],["-90.089670","29.924950"],["-90.089750","29.924910"],["-90.089797","29.925005"],["-90.089845","29.925100"],["-90.089892","29.925195"],["-90.089940","29.925290"],["-90.089987","29.925385"],["-90.090035","29.925480"],["-90.090082","29.925575"],["-90.090130","29.925670"],["-90.090212","29.925843"],["-90.090295","29.926015"],["-90.090377","29.926188"],["-90.090460","29.926360"],["-90.090515","29.926475"],["-90.090570","29.926590"],["-90.090625","29.926705"],["-90.090680","29.926820"],["-90.090593","29.926846"],["-90.090660","29.926820"],["-90.090710","29.926930"],["-90.090755","29.927023"],["-90.090800","29.927115"],["-90.090845","29.927208"],["-90.090890","29.927300"],["-90.090935","29.927393"],["-90.090980","29.927485"],["-90.091025","29.927578"],["-90.091070","29.927670"],["-90.091130","29.927800"],["-90.091190","29.927930"],["-90.091260","29.928070"],["-90.091330","29.928210"],["-90.091240","29.928240"],["-90.091220","29.928250"],["-90.091184","29.928182"],["-90.091220","29.928250"],["-90.091088","29.928298"],["-90.090955","29.928345"],["-90.090823","29.928393"],["-90.090690","29.928440"],["-90.090580","29.928480"],["-90.090470","29.928520"],["-90.090360","29.928560"],["-90.090250","29.928600"],["-90.090100","29.928650"],["-90.090190","29.928800"],["-90.090320","29.928750"],["-90.090470","29.928695"],["-90.090620","29.928640"],["-90.090670","29.928620"],["-90.090810","29.928570"],["-90.090910","29.928530"],["-90.090990","29.928500"],["-90.091070","29.928470"],["-90.091235","29.928410"],["-90.091400","29.928350"],["-90.091447","29.928450"],["-90.091495","29.928550"],["-90.091542","29.928650"],["-90.091590","29.928750"],["-90.091660","29.928890"],["-90.091730","29.929030"],["-90.091780","29.929135"],["-90.091830","29.929240"],["-90.091870","29.929320"],["-90.091930","29.929440"],["-90.091975","29.929535"],["-90.092020","29.929630"],["-90.092065","29.929725"],["-90.092110","29.929820"],["-90.092175","29.929955"],["-90.092191","29.930113"],["-90.092240","29.930090"],["-90.092300","29.930200"],["-90.092352","29.930311"],["-90.092405","29.930423"],["-90.092457","29.930534"],["-90.092510","29.930645"],["-90.092562","29.930756"],["-90.092615","29.930868"],["-90.092667","29.930979"],["-90.092720","29.931090"],["-90.092777","29.931210"],["-90.092835","29.931330"],["-90.092892","29.931450"],["-90.092950","29.931570"],["-90.093025","29.931725"],["-90.093100","29.931880"],["-90.093039","29.931897"],["-90.093100","29.931880"],["-90.093150","29.931970"],["-90.093202","29.932081"],["-90.093255","29.932193"],["-90.093307","29.932304"],["-90.093360","29.932415"],["-90.093412","29.932526"],["-90.093465","29.932638"],["-90.093517","29.932749"],["-90.093570","29.932860"],["-90.093655","29.933025"],["-90.093740","29.933190"],["-90.093820","29.933350"],["-90.093895","29.933495"],["-90.093970","29.933640"],["-90.093884","29.933676"],["-90.093970","29.933640"],["-90.094020","29.933750"],["-90.094074","29.933863"],["-90.094127","29.933975"],["-90.094181","29.934088"],["-90.094235","29.934200"],["-90.094289","29.934313"],["-90.094342","29.934425"],["-90.094396","29.934538"],["-90.094450","29.934650"],["-90.094502","29.934753"],["-90.094555","29.934855"],["-90.094607","29.934958"],["-90.094660","29.935060"],["-90.094715","29.935178"],["-90.094770","29.935295"],["-90.094825","29.935413"],["-90.094880","29.935530"],["-90.094930","29.935630"],["-90.094972","29.935720"],["-90.095015","29.935810"],["-90.095057","29.935900"],["-90.095100","29.935990"],["-90.095029","29.936014"],["-90.095146","29.936163"],["-90.095263","29.936311"],["-90.095313","29.936375"],["-90.095389","29.936542"],["-90.095466","29.936709"],["-90.095540","29.936870"],["-90.095617","29.937037"],["-90.095695","29.937204"],["-90.095739","29.937300"],["-90.095823","29.937465"],["-90.095907","29.937629"],["-90.095991","29.937794"],["-90.096075","29.937958"],["-90.096159","29.938122"],["-90.096163","29.938302"],["-90.096165","29.938397"],["-90.096272","29.938551"],["-90.096378","29.938706"],["-90.096410","29.938799"],["-90.096439","29.938977"],["-90.096450","29.939049"],["-90.096443","29.939229"],["-90.096440","29.939300"],["-90.096409","29.939478"],["-90.096400","29.939529"],["-90.096329","29.939698"],["-90.096258","29.939867"],["-90.096186","29.940036"],["-90.096115","29.940205"],["-90.096077","29.940382"],["-90.096050","29.940509"],["-90.096050","29.940689"],["-90.096050","29.940839"],["-90.096064","29.941018"],["-90.096078","29.941198"],["-90.096092","29.941377"],["-90.096099","29.941460"],["-90.096161","29.941632"],["-90.096210","29.941769"],["-90.096262","29.941943"],["-90.096315","29.942117"],["-90.096356","29.942253"],["-90.096463","29.942407"],["-90.096571","29.942561"],["-90.096639","29.942659"],["-90.096720","29.942825"],["-90.096801","29.942990"],["-90.096882","29.943156"],["-90.096963","29.943321"],["-90.097044","29.943487"],["-90.097070","29.943540"],["-90.097151","29.943706"],["-90.097233","29.943871"],["-90.097314","29.944036"],["-90.097396","29.944202"],["-90.097416","29.944381"],["-90.097428","29.944492"],["-90.097526","29.944651"],["-90.097624","29.944809"],["-90.097722","29.944968"],["-90.097820","29.945126"],["-90.097859","29.945189"],["-90.097940","29.945355"],["-90.098021","29.945520"],["-90.098060","29.945600"],["-90.098143","29.945765"],["-90.098190","29.945875"],["-90.098237","29.945986"],["-90.098284","29.946096"],["-90.098331","29.946206"],["-90.098229","29.946318"],["-90.098404","29.946332"],["-90.098479","29.946489"],["-90.098555","29.946647"],["-90.098630","29.946805"],["-90.098706","29.946962"],["-90.098781","29.947120"],["-90.098857","29.947278"],["-90.098932","29.947436"],["-90.099007","29.947593"],["-90.098953","29.947711"],["-90.099109","29.947768"],["-90.099192","29.947944"],["-90.099276","29.948121"],["-90.099359","29.948298"],["-90.099442","29.948474"],["-90.099525","29.948651"],["-90.099608","29.948828"],["-90.099691","29.949004"],["-90.099775","29.949181"],["-90.099866","29.949349"],["-90.099957","29.949518"],["-90.100048","29.949686"],["-90.100139","29.949855"],["-90.100204","29.950006"],["-90.100270","29.950157"],["-90.100335","29.950309"],["-90.100400","29.950460"],["-90.100460","29.950590"],["-90.100505","29.950680"],["-90.100550","29.950770"],["-90.100456","29.950804"],["-90.100550","29.950770"],["-90.100570","29.950820"],["-90.100630","29.950980"],["-90.100715","29.951155"],["-90.100800","29.951330"],["-90.100847","29.951426"],["-90.100895","29.951522"],["-90.100942","29.951618"],["-90.100990","29.951714"],["-90.101058","29.951860"],["-90.101126","29.952007"],["-90.101195","29.952153"],["-90.101263","29.952300"],["-90.101226","29.952435"],["-90.101354","29.952474"],["-90.101407","29.952582"],["-90.101460","29.952690"],["-90.101530","29.952840"],["-90.101590","29.952970"],["-90.101630","29.953070"],["-90.101670","29.953150"],["-90.101680","29.953170"],["-90.101700","29.953220"],["-90.101720","29.953250"],["-90.101730","29.953270"],["-90.101760","29.953320"],["-90.101817","29.953405"],["-90.101875","29.953490"],["-90.101932","29.953575"],["-90.101990","29.953660"],["-90.102080","29.953795"],["-90.102170","29.953930"],["-90.102255","29.954085"],["-90.102340","29.954240"],["-90.102425","29.954405"],["-90.102510","29.954570"],["-90.102510","29.954580"],["-90.102560","29.954685"],["-90.102550","29.954814"],["-90.102676","29.954957"],["-90.102754","29.955045"],["-90.102838","29.955209"],["-90.102909","29.955349"],["-90.102988","29.955515"],["-90.103068","29.955681"],["-90.103147","29.955848"],["-90.103226","29.956014"],["-90.103305","29.956180"],["-90.103385","29.956346"],["-90.103439","29.956460"],["-90.103522","29.956625"],["-90.103562","29.956801"],["-90.103598","29.956962"],["-90.103650","29.956940"],["-90.103690","29.957010"],["-90.103750","29.957140"],["-90.103830","29.957300"],["-90.103910","29.957460"],["-90.103990","29.957630"],["-90.104070","29.957800"],["-90.104068","29.957804"],["-90.104070","29.957800"],["-90.104090","29.957850"],["-90.104170","29.958005"],["-90.104250","29.958160"],["-90.104320","29.958305"],["-90.104390","29.958450"],["-90.104460","29.958600"],["-90.104530","29.958750"],["-90.104587","29.958870"],["-90.104645","29.958990"],["-90.104702","29.959110"],["-90.104760","29.959230"],["-90.104800","29.959300"],["-90.104840","29.959390"],["-90.104895","29.959505"],["-90.104950","29.959620"],["-90.105000","29.959710"],["-90.105030","29.959770"],["-90.105080","29.959880"],["-90.105130","29.959990"],["-90.105200","29.960120"],["-90.105220","29.960160"],["-90.105230","29.960200"],["-90.105197","29.960325"],["-90.105322","29.960469"],["-90.105446","29.960613"],["-90.105530","29.960760"],["-90.105606","29.960927"],["-90.105639","29.961000"],["-90.105694","29.961173"],["-90.105749","29.961347"],["-90.105790","29.961476"],["-90.105906","29.961625"],["-90.105980","29.961720"],["-90.106064","29.961885"],["-90.106148","29.962049"],["-90.106231","29.962214"],["-90.106260","29.962270"],["-90.106350","29.962410"],["-90.106459","29.962510"],["-90.106600","29.962642"],["-90.106746","29.962770"],["-90.106892","29.962898"],["-90.106940","29.962940"],["-90.107065","29.963083"],["-90.107166","29.963199"],["-90.107324","29.963316"],["-90.107482","29.963433"],["-90.107558","29.963489"],["-90.107703","29.963618"],["-90.107847","29.963748"],["-90.107991","29.963877"],["-90.108050","29.963930"],["-90.108196","29.964058"],["-90.108308","29.964209"],["-90.108411","29.964349"],["-90.108470","29.964310"],["-90.108520","29.964360"],["-90.108650","29.964460"],["-90.108770","29.964580"],["-90.108830","29.964640"],["-90.108850","29.964650"],["-90.108860","29.964670"],["-90.108880","29.964700"],["-90.108890","29.964740"],["-90.108900","29.964780"],["-90.108910","29.964830"],["-90.108910","29.964900"],["-90.108910","29.964930"],["-90.108910","29.964990"],["-90.108910","29.965100"],["-90.108920","29.965220"],["-90.109027","29.965308"],["-90.109135","29.965395"],["-90.109242","29.965483"],["-90.109350","29.965570"],["-90.109485","29.965675"],["-90.109562","29.965793"],["-90.109640","29.965910"],["-90.109558","29.965845"],["-90.109640","29.965910"],["-90.109530","29.966010"],["-90.109460","29.966080"],["-90.109370","29.966170"],["-90.109280","29.966260"],["-90.109210","29.966330"],["-90.109080","29.966450"],["-90.108994","29.966531"],["-90.108907","29.966612"],["-90.108821","29.966693"],["-90.108734","29.966774"],["-90.108648","29.966855"],["-90.108561","29.966935"],["-90.108475","29.967016"],["-90.108388","29.967097"],["-90.108302","29.967178"],["-90.108215","29.967259"],["-90.108129","29.967340"],["-90.108042","29.967421"],["-90.107956","29.967502"],["-90.107870","29.967583"],["-90.107783","29.967664"],["-90.107697","29.967745"],["-90.107610","29.967826"],["-90.107524","29.967906"],["-90.107437","29.967987"],["-90.107351","29.968068"],["-90.107264","29.968149"],["-90.107178","29.968230"],["-90.107091","29.968311"],["-90.107005","29.968392"],["-90.106918","29.968473"],["-90.106842","29.968545"],["-90.106767","29.968617"],["-90.106691","29.968689"],["-90.106615","29.968761"],["-90.106540","29.968833"],["-90.106464","29.968905"],["-90.106388","29.968977"],["-90.106313","29.969049"],["-90.106237","29.969121"],["-90.106161","29.969193"],["-90.106086","29.969265"],["-90.106010","29.969337"],["-90.105935","29.969409"],["-90.105859","29.969480"],["-90.105783","29.969552"],["-90.105708","29.969624"],["-90.105632","29.969696"],["-90.105556","29.969768"],["-90.105481","29.969840"],["-90.105405","29.969912"],["-90.105329","29.969984"],["-90.105254","29.970056"],["-90.105178","29.970128"],["-90.105102","29.970200"],["-90.105027","29.970272"],["-90.104951","29.970344"],["-90.104875","29.970416"],["-90.104800","29.970488"],["-90.104724","29.970560"],["-90.104648","29.970632"],["-90.104573","29.970704"],["-90.104497","29.970776"],["-90.104421","29.970848"],["-90.104346","29.970920"],["-90.104270","29.970992"],["-90.104194","29.971064"],["-90.104119","29.971136"],["-90.104043","29.971208"],["-90.103967","29.971280"],["-90.103892","29.971352"],["-90.103816","29.971423"],["-90.103740","29.971495"],["-90.103665","29.971567"],["-90.103589","29.971639"],["-90.103514","29.971711"],["-90.103438","29.971783"],["-90.103362","29.971855"],["-90.103287","29.971927"],["-90.103211","29.971999"],["-90.103135","29.972071"],["-90.103060","29.972143"],["-90.102984","29.972215"],["-90.102908","29.972287"],["-90.102833","29.972359"],["-90.102757","29.972431"],["-90.102681","29.972503"],["-90.102606","29.972575"],["-90.102530","29.972647"],["-90.102454","29.972719"],["-90.102379","29.972791"],["-90.102303","29.972863"],["-90.102227","29.972935"],["-90.102152","29.973007"],["-90.102076","29.973079"],["-90.101972","29.973170"],["-90.101868","29.973262"],["-90.101764","29.973354"],["-90.101660","29.973446"],["-90.101556","29.973538"],["-90.101451","29.973629"],["-90.101347","29.973721"],["-90.101243","29.973813"],["-90.101139","29.973905"],["-90.101035","29.973996"],["-90.100931","29.974088"],["-90.100827","29.974180"],["-90.100723","29.974272"],["-90.100619","29.974364"],["-90.100514","29.974455"],["-90.100410","29.974547"],["-90.100539","29.974634"],["-90.100668","29.974722"],["-90.100798","29.974809"],["-90.100927","29.974896"],["-90.101056","29.974984"],["-90.101185","29.975071"],["-90.101314","29.975158"],["-90.101443","29.975246"],["-90.101572","29.975333"],["-90.101701","29.975420"],["-90.101830","29.975508"],["-90.101959","29.975595"],["-90.102088","29.975682"],["-90.102217","29.975770"],["-90.102346","29.975857"],["-90.102475","29.975944"],["-90.102604","29.976031"],["-90.102733","29.976119"],["-90.102863","29.976206"],["-90.102992","29.976293"],["-90.103121","29.976381"],["-90.103250","29.976468"],["-90.103379","29.976555"],["-90.103508","29.976643"],["-90.103637","29.976730"],["-90.103766","29.976817"],["-90.103895","29.976905"],["-90.104024","29.976992"],["-90.104153","29.977079"],["-90.104282","29.977167"],["-90.104411","29.977254"],["-90.104540","29.977341"],["-90.104669","29.977428"],["-90.104799","29.977515"],["-90.104928","29.977602"],["-90.105057","29.977689"],["-90.105186","29.977775"],["-90.105315","29.977862"],["-90.105444","29.977949"],["-90.105573","29.978036"],["-90.105702","29.978123"],["-90.105831","29.978210"],["-90.105960","29.978297"],["-90.106089","29.978383"],["-90.106218","29.978470"],["-90.106347","29.978557"],["-90.106477","29.978644"],["-90.106606","29.978731"],["-90.106735","29.978818"],["-90.106864","29.978905"],["-90.106993","29.978991"],["-90.107122","29.979078"],["-90.107251","29.979165"],["-90.107380","29.979252"],["-90.107509","29.979339"],["-90.107638","29.979426"],["-90.107767","29.979513"],["-90.107896","29.979599"],["-90.108026","29.979686"],["-90.108155","29.979773"],["-90.108284","29.979860"],["-90.108413","29.979947"],["-90.108542","29.980034"],["-90.108671","29.980121"],["-90.108769","29.980176"],["-90.108867","29.980232"],["-90.108965","29.980288"],["-90.109063","29.980344"],["-90.109158","29.980405"],["-90.109253","29.980467"],["-90.109348","29.980528"],["-90.109443","29.980590"],["-90.109539","29.980651"],["-90.109634","29.980713"],["-90.109729","29.980775"],["-90.109824","29.980836"],["-90.109918","29.980899"],["-90.110012","29.980962"],["-90.110106","29.981024"],["-90.110200","29.981087"],["-90.110294","29.981150"],["-90.110388","29.981212"],["-90.110481","29.981275"],["-90.110575","29.981338"],["-90.110669","29.981401"],["-90.110763","29.981463"],["-90.110857","29.981526"],["-90.110951","29.981589"],["-90.111045","29.981652"],["-90.111139","29.981714"],["-90.111232","29.981777"],["-90.111326","29.981840"],["-90.111184","29.981888"],["-90.111041","29.981935"],["-90.110898","29.981983"],["-90.110755","29.982031"],["-90.110638","29.982074"],["-90.110521","29.982116"],["-90.110404","29.982158"],["-90.110287","29.982200"],["-90.110126","29.982245"],["-90.109955","29.982303"],["-90.109783","29.982361"],["-90.109612","29.982419"],["-90.109440","29.982477"],["-90.109269","29.982535"],["-90.109097","29.982593"],["-90.108926","29.982651"],["-90.108754","29.982709"],["-90.108625","29.982730"],["-90.108620","29.982750"],["-90.108480","29.982800"],["-90.108390","29.982820"],["-90.108253","29.982860"],["-90.108115","29.982900"],["-90.107978","29.982940"],["-90.107840","29.982980"],["-90.107645","29.983045"],["-90.107450","29.983110"],["-90.107340","29.983110"],["-90.107200","29.983160"],["-90.107000","29.983210"],["-90.106800","29.983260"],["-90.106710","29.983280"],["-90.106689","29.983226"],["-90.106672","29.983298"],["-90.106558","29.983324"],["-90.106444","29.983350"],["-90.106330","29.983377"],["-90.106216","29.983403"],["-90.106102","29.983429"],["-90.105988","29.983456"],["-90.105874","29.983482"],["-90.105760","29.983508"],["-90.105642","29.983541"],["-90.105524","29.983573"],["-90.105406","29.983606"],["-90.105288","29.983638"],["-90.105154","29.983635"],["-90.105021","29.983631"],["-90.104899","29.983743"],["-90.104756","29.983778"],["-90.104613","29.983813"],["-90.104470","29.983847"],["-90.104327","29.983882"],["-90.104185","29.983917"],["-90.104042","29.983952"],["-90.103899","29.983987"],["-90.103756","29.984022"],["-90.103603","29.984032"],["-90.103450","29.984043"],["-90.103297","29.984053"],["-90.103145","29.984063"],["-90.103023","29.984051"],["-90.102902","29.984039"],["-90.102781","29.984027"],["-90.102660","29.984015"],["-90.102539","29.984003"],["-90.102418","29.983991"],["-90.102296","29.983978"],["-90.102175","29.983966"],["-90.102159","29.984104"],["-90.102144","29.984242"],["-90.102128","29.984380"],["-90.102112","29.984518"],["-90.102096","29.984655"],["-90.102080","29.984793"],["-90.102064","29.984931"],["-90.102049","29.985069"],["-90.102033","29.985207"],["-90.102017","29.985344"],["-90.102001","29.985482"],["-90.101985","29.985620"],["-90.101969","29.985758"],["-90.101954","29.985896"],["-90.101938","29.986033"],["-90.101922","29.986171"],["-90.101888","29.986270"],["-90.101855","29.986369"],["-90.101887","29.986480"],["-90.101874","29.986583"],["-90.101862","29.986686"],["-90.101849","29.986789"],["-90.101836","29.986893"],["-90.101823","29.986996"],["-90.101811","29.987099"],["-90.101798","29.987202"],["-90.101785","29.987305"],["-90.101772","29.987408"],["-90.101760","29.987511"],["-90.101747","29.987614"],["-90.101734","29.987718"],["-90.101721","29.987821"],["-90.101709","29.987924"],["-90.101696","29.988027"],["-90.101683","29.988130"],["-90.101665","29.988270"],["-90.101648","29.988410"],["-90.101630","29.988550"],["-90.101613","29.988690"],["-90.101595","29.988830"],["-90.101578","29.988970"],["-90.101560","29.989110"],["-90.101702","29.989123"],["-90.101845","29.989135"],["-90.101987","29.989148"],["-90.102130","29.989160"],["-90.102140","29.989045"],["-90.102235","29.988936"]]}]}},{"type":"Feature","properties":{"route_id":"3","agency_id":"1","route_short_name":"3","route_long_name":"Tulane - Elmwood","route_type":"3","route_color":"#f58025","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.111257","29.964300"],["-90.120533","29.955649"],["-90.119575","29.956605"],["-90.118043","29.957964"],["-90.116506","29.959373"],["-90.115006","29.960773"],["-90.113558","29.962168"],["-90.110070","29.965395"],["-90.106479","29.968766"],["-90.104726","29.968060"],["-90.102566","29.967109"],["-90.100705","29.966252"],["-90.099728","29.965799"],["-90.098818","29.965387"],["-90.096118","29.964246"],["-90.094422","29.963452"],["-90.092508","29.962605"],["-90.090969","29.961797"],["-90.089249","29.961029"],["-90.087107","29.960046"],["-90.085232","29.959199"],["-90.083152","29.958253"],["-90.082003","29.957735"],["-90.080265","29.956915"],["-90.077351","29.955562"],["-90.075305","29.954992"],["-90.074113","29.956395"],["-90.074818","29.954823"],["-90.126687","29.960570"],["-90.125035","29.959272"],["-90.123402","29.957970"],["-90.132770","29.964607"],["-90.145316","29.962791"],["-90.129533","29.962875"],["-90.140593","29.962077"],["-90.139514","29.963498"],["-90.137472","29.965167"],["-90.134161","29.964788"],["-90.156588","29.962576"],["-90.154931","29.962909"],["-90.152369","29.962824"],["-90.149136","29.963275"],["-90.147061","29.963052"]]},{"type":"LineString","coordinates":[["-90.156588","29.962576"],["-90.156650","29.962580"],["-90.156640","29.962630"],["-90.156640","29.962745"],["-90.156640","29.962860"],["-90.156640","29.962890"],["-90.156640","29.962940"],["-90.156525","29.962940"],["-90.156410","29.962940"],["-90.156290","29.962935"],["-90.156170","29.962930"],["-90.156005","29.962930"],["-90.155840","29.962930"],["-90.155725","29.962926"],["-90.155610","29.962923"],["-90.155495","29.962919"],["-90.155380","29.962915"],["-90.155265","29.962911"],["-90.155150","29.962908"],["-90.155035","29.962904"],["-90.154931","29.962909"],["-90.154920","29.962890"],["-90.154700","29.962890"],["-90.154490","29.962880"],["-90.154310","29.962880"],["-90.154210","29.962880"],["-90.154140","29.962880"],["-90.154040","29.962870"],["-90.153885","29.962865"],["-90.153730","29.962860"],["-90.153575","29.962855"],["-90.153420","29.962850"],["-90.153330","29.962850"],["-90.153190","29.962845"],["-90.153050","29.962840"],["-90.152910","29.962835"],["-90.152770","29.962830"],["-90.152570","29.962825"],["-90.152370","29.962820"],["-90.152369","29.962824"],["-90.152370","29.962820"],["-90.152340","29.962820"],["-90.152180","29.962820"],["-90.152020","29.962820"],["-90.151920","29.962820"],["-90.151830","29.962820"],["-90.151680","29.962840"],["-90.151555","29.962855"],["-90.151430","29.962870"],["-90.151279","29.962899"],["-90.151128","29.962928"],["-90.150976","29.962956"],["-90.150825","29.962985"],["-90.150674","29.963014"],["-90.150523","29.963043"],["-90.150371","29.963071"],["-90.150220","29.963100"],["-90.150063","29.963130"],["-90.149905","29.963160"],["-90.149748","29.963190"],["-90.149590","29.963220"],["-90.149530","29.963230"],["-90.149460","29.963240"],["-90.149295","29.963260"],["-90.149130","29.963280"],["-90.149136","29.963275"],["-90.149130","29.963280"],["-90.148980","29.963285"],["-90.148830","29.963290"],["-90.148820","29.963290"],["-90.148700","29.963280"],["-90.148540","29.963270"],["-90.148375","29.963248"],["-90.148210","29.963225"],["-90.148045","29.963203"],["-90.147880","29.963180"],["-90.147675","29.963145"],["-90.147470","29.963110"],["-90.147265","29.963075"],["-90.147060","29.963040"],["-90.147061","29.963052"],["-90.147060","29.963040"],["-90.146880","29.963010"],["-90.146700","29.962980"],["-90.146540","29.962960"],["-90.146360","29.962930"],["-90.146235","29.962915"],["-90.146110","29.962900"],["-90.146070","29.962890"],["-90.145895","29.962860"],["-90.145720","29.962830"],["-90.145560","29.962810"],["-90.145380","29.962780"],["-90.145320","29.962770"],["-90.145316","29.962791"],["-90.145320","29.962770"],["-90.145150","29.962750"],["-90.144990","29.962720"],["-90.144872","29.962703"],["-90.144755","29.962685"],["-90.144637","29.962668"],["-90.144520","29.962650"],["-90.144405","29.962630"],["-90.144290","29.962610"],["-90.144210","29.962600"],["-90.144150","29.962590"],["-90.144020","29.962570"],["-90.143890","29.962550"],["-90.143790","29.962540"],["-90.143640","29.962510"],["-90.143520","29.962500"],["-90.143400","29.962480"],["-90.143287","29.962463"],["-90.143175","29.962445"],["-90.143062","29.962428"],["-90.142950","29.962410"],["-90.142757","29.962380"],["-90.142565","29.962350"],["-90.142372","29.962320"],["-90.142180","29.962290"],["-90.141982","29.962258"],["-90.141785","29.962225"],["-90.141587","29.962193"],["-90.141390","29.962160"],["-90.141210","29.962135"],["-90.141030","29.962110"],["-90.140930","29.962100"],["-90.140840","29.962110"],["-90.140760","29.962110"],["-90.140670","29.962110"],["-90.140600","29.962120"],["-90.140593","29.962077"],["-90.140600","29.962120"],["-90.140510","29.962140"],["-90.140390","29.962190"],["-90.140300","29.962230"],["-90.140140","29.962330"],["-90.140090","29.962360"],["-90.140050","29.962400"],["-90.140010","29.962440"],["-90.139970","29.962480"],["-90.139950","29.962500"],["-90.139900","29.962580"],["-90.139870","29.962640"],["-90.139850","29.962660"],["-90.139780","29.962800"],["-90.139710","29.962973"],["-90.139640","29.963145"],["-90.139570","29.963318"],["-90.139500","29.963490"],["-90.139514","29.963498"],["-90.139500","29.963490"],["-90.139448","29.963628"],["-90.139395","29.963765"],["-90.139343","29.963903"],["-90.139290","29.964040"],["-90.139248","29.964146"],["-90.139205","29.964253"],["-90.139163","29.964359"],["-90.139120","29.964465"],["-90.139078","29.964571"],["-90.139035","29.964678"],["-90.138993","29.964784"],["-90.138950","29.964890"],["-90.138900","29.965000"],["-90.138880","29.965040"],["-90.138860","29.965080"],["-90.138830","29.965120"],["-90.138810","29.965140"],["-90.138770","29.965170"],["-90.138740","29.965190"],["-90.138710","29.965210"],["-90.138670","29.965230"],["-90.138630","29.965250"],["-90.138600","29.965270"],["-90.138560","29.965280"],["-90.138520","29.965280"],["-90.138480","29.965290"],["-90.138440","29.965290"],["-90.138390","29.965290"],["-90.138240","29.965280"],["-90.138110","29.965260"],["-90.137980","29.965240"],["-90.137855","29.965220"],["-90.137730","29.965200"],["-90.137560","29.965170"],["-90.137490","29.965160"],["-90.137470","29.965160"],["-90.137472","29.965167"],["-90.137470","29.965160"],["-90.137430","29.965160"],["-90.137300","29.965150"],["-90.137142","29.965130"],["-90.136985","29.965110"],["-90.136827","29.965090"],["-90.136670","29.965070"],["-90.136540","29.965060"],["-90.136382","29.965040"],["-90.136225","29.965020"],["-90.136067","29.965000"],["-90.135910","29.964980"],["-90.135725","29.964960"],["-90.135540","29.964940"],["-90.135406","29.964925"],["-90.135272","29.964910"],["-90.135139","29.964895"],["-90.135005","29.964880"],["-90.134871","29.964865"],["-90.134737","29.964850"],["-90.134604","29.964835"],["-90.134470","29.964820"],["-90.134410","29.964810"],["-90.134210","29.964790"],["-90.134160","29.964780"],["-90.134161","29.964788"],["-90.134160","29.964780"],["-90.134140","29.964780"],["-90.134030","29.964770"],["-90.133850","29.964750"],["-90.133735","29.964740"],["-90.133620","29.964730"],["-90.133475","29.964715"],["-90.133330","29.964700"],["-90.133140","29.964675"],["-90.132950","29.964650"],["-90.132770","29.964620"],["-90.132770","29.964607"],["-90.132770","29.964620"],["-90.132645","29.964595"],["-90.132520","29.964570"],["-90.132490","29.964560"],["-90.132350","29.964525"],["-90.132210","29.964490"],["-90.132070","29.964455"],["-90.131930","29.964420"],["-90.131795","29.964370"],["-90.131660","29.964320"],["-90.131505","29.964265"],["-90.131350","29.964210"],["-90.131250","29.964165"],["-90.131150","29.964120"],["-90.131110","29.964110"],["-90.130930","29.964030"],["-90.130750","29.963950"],["-90.130620","29.963870"],["-90.130510","29.963800"],["-90.130460","29.963770"],["-90.130390","29.963720"],["-90.130245","29.963600"],["-90.130100","29.963480"],["-90.130029","29.963404"],["-90.129958","29.963329"],["-90.129887","29.963253"],["-90.129816","29.963178"],["-90.129746","29.963102"],["-90.129675","29.963026"],["-90.129604","29.962951"],["-90.129533","29.962875"],["-90.129444","29.962803"],["-90.129355","29.962731"],["-90.129266","29.962659"],["-90.129177","29.962587"],["-90.129088","29.962515"],["-90.128999","29.962443"],["-90.128910","29.962371"],["-90.128821","29.962299"],["-90.128733","29.962227"],["-90.128644","29.962155"],["-90.128555","29.962083"],["-90.128466","29.962011"],["-90.128377","29.961939"],["-90.128288","29.961867"],["-90.128199","29.961795"],["-90.128110","29.961723"],["-90.128021","29.961650"],["-90.127932","29.961578"],["-90.127843","29.961506"],["-90.127754","29.961434"],["-90.127665","29.961362"],["-90.127576","29.961290"],["-90.127487","29.961218"],["-90.127398","29.961146"],["-90.127310","29.961074"],["-90.127221","29.961002"],["-90.127132","29.960930"],["-90.127043","29.960858"],["-90.126954","29.960786"],["-90.126865","29.960714"],["-90.126776","29.960642"],["-90.126687","29.960570"],["-90.126584","29.960489"],["-90.126480","29.960408"],["-90.126377","29.960327"],["-90.126274","29.960246"],["-90.126171","29.960164"],["-90.126067","29.960083"],["-90.125964","29.960002"],["-90.125861","29.959921"],["-90.125758","29.959840"],["-90.125654","29.959759"],["-90.125551","29.959678"],["-90.125448","29.959597"],["-90.125345","29.959515"],["-90.125241","29.959434"],["-90.125138","29.959353"],["-90.125035","29.959272"],["-90.124882","29.959176"],["-90.124729","29.959081"],["-90.124576","29.958985"],["-90.124423","29.958889"],["-90.124267","29.958765"],["-90.124111","29.958640"],["-90.123955","29.958515"],["-90.123799","29.958391"],["-90.123643","29.958266"],["-90.123523","29.958118"],["-90.123402","29.957970"],["-90.123295","29.957962"],["-90.123186","29.957878"],["-90.123077","29.957793"],["-90.122969","29.957709"],["-90.122860","29.957625"],["-90.122760","29.957544"],["-90.122660","29.957463"],["-90.122560","29.957381"],["-90.122460","29.957300"],["-90.122351","29.957213"],["-90.122242","29.957125"],["-90.122134","29.957038"],["-90.122025","29.956950"],["-90.121916","29.956863"],["-90.121807","29.956775"],["-90.121699","29.956688"],["-90.121590","29.956600"],["-90.121530","29.956560"],["-90.121430","29.956470"],["-90.121330","29.956380"],["-90.121225","29.956305"],["-90.121120","29.956230"],["-90.121015","29.956140"],["-90.120910","29.956050"],["-90.120840","29.955990"],["-90.120720","29.955900"],["-90.120680","29.955870"],["-90.120795","29.955758"],["-90.120910","29.955645"],["-90.121025","29.955533"],["-90.121140","29.955420"],["-90.121240","29.955330"],["-90.121340","29.955240"],["-90.121270","29.955180"],["-90.121240","29.955150"],["-90.121170","29.955100"],["-90.121095","29.955173"],["-90.121020","29.955245"],["-90.120945","29.955318"],["-90.120870","29.955390"],["-90.120795","29.955465"],["-90.120720","29.955540"],["-90.120570","29.955680"],["-90.120533","29.955649"],["-90.120570","29.955680"],["-90.120520","29.955720"],["-90.120420","29.955825"],["-90.120320","29.955930"],["-90.120240","29.956000"],["-90.120155","29.956083"],["-90.120070","29.956165"],["-90.119985","29.956248"],["-90.119900","29.956330"],["-90.119890","29.956330"],["-90.119810","29.956415"],["-90.119730","29.956500"],["-90.119590","29.956620"],["-90.119575","29.956605"],["-90.119590","29.956620"],["-90.119550","29.956660"],["-90.119468","29.956736"],["-90.119385","29.956813"],["-90.119303","29.956889"],["-90.119220","29.956965"],["-90.119138","29.957041"],["-90.119055","29.957118"],["-90.118973","29.957194"],["-90.118890","29.957270"],["-90.118790","29.957370"],["-90.118704","29.957450"],["-90.118618","29.957530"],["-90.118531","29.957610"],["-90.118445","29.957690"],["-90.118359","29.957770"],["-90.118273","29.957850"],["-90.118186","29.957930"],["-90.118100","29.958010"],["-90.118043","29.957964"],["-90.118100","29.958010"],["-90.118030","29.958080"],["-90.117935","29.958170"],["-90.117840","29.958260"],["-90.117745","29.958350"],["-90.117650","29.958440"],["-90.117555","29.958530"],["-90.117460","29.958620"],["-90.117365","29.958710"],["-90.117270","29.958800"],["-90.117145","29.958918"],["-90.117020","29.959035"],["-90.116895","29.959153"],["-90.116770","29.959270"],["-90.116680","29.959355"],["-90.116590","29.959440"],["-90.116506","29.959373"],["-90.116580","29.959430"],["-90.116510","29.959490"],["-90.116416","29.959579"],["-90.116323","29.959668"],["-90.116229","29.959756"],["-90.116135","29.959845"],["-90.116041","29.959934"],["-90.115948","29.960023"],["-90.115854","29.960111"],["-90.115760","29.960200"],["-90.115655","29.960298"],["-90.115550","29.960395"],["-90.115445","29.960493"],["-90.115340","29.960590"],["-90.115240","29.960685"],["-90.115140","29.960780"],["-90.115120","29.960800"],["-90.115040","29.960740"],["-90.115006","29.960773"],["-90.115040","29.960740"],["-90.115120","29.960800"],["-90.114980","29.960930"],["-90.114905","29.961005"],["-90.114830","29.961080"],["-90.114740","29.961165"],["-90.114650","29.961250"],["-90.114545","29.961345"],["-90.114440","29.961440"],["-90.114390","29.961480"],["-90.114260","29.961610"],["-90.114135","29.961725"],["-90.114010","29.961840"],["-90.113885","29.961955"],["-90.113760","29.962070"],["-90.113639","29.962187"],["-90.113558","29.962168"],["-90.113548","29.962271"],["-90.113409","29.962403"],["-90.113270","29.962535"],["-90.113180","29.962620"],["-90.113040","29.962750"],["-90.112960","29.962830"],["-90.112840","29.962950"],["-90.112750","29.963040"],["-90.112640","29.963143"],["-90.112530","29.963245"],["-90.112420","29.963348"],["-90.112310","29.963450"],["-90.112220","29.963530"],["-90.112130","29.963610"],["-90.112000","29.963740"],["-90.111850","29.963870"],["-90.111790","29.963930"],["-90.111710","29.964010"],["-90.111690","29.964020"],["-90.111570","29.964140"],["-90.111470","29.964230"],["-90.111330","29.964360"],["-90.111257","29.964300"],["-90.111330","29.964360"],["-90.111240","29.964440"],["-90.111100","29.964570"],["-90.110960","29.964700"],["-90.110843","29.964810"],["-90.110725","29.964920"],["-90.110608","29.965030"],["-90.110490","29.965140"],["-90.110365","29.965255"],["-90.110240","29.965370"],["-90.110140","29.965460"],["-90.110070","29.965395"],["-90.110140","29.965460"],["-90.110050","29.965550"],["-90.109950","29.965635"],["-90.109850","29.965720"],["-90.109700","29.965840"],["-90.109615","29.965925"],["-90.109530","29.966010"],["-90.109460","29.966080"],["-90.109370","29.966170"],["-90.109280","29.966260"],["-90.109210","29.966330"],["-90.109080","29.966450"],["-90.108990","29.966530"],["-90.108900","29.966610"],["-90.108800","29.966700"],["-90.108698","29.966800"],["-90.108595","29.966900"],["-90.108493","29.967000"],["-90.108390","29.967100"],["-90.108330","29.967150"],["-90.108330","29.967160"],["-90.108320","29.967160"],["-90.108300","29.967180"],["-90.108290","29.967190"],["-90.108250","29.967240"],["-90.108115","29.967375"],["-90.107980","29.967510"],["-90.107870","29.967610"],["-90.107860","29.967620"],["-90.107810","29.967670"],["-90.107800","29.967680"],["-90.107790","29.967690"],["-90.107740","29.967740"],["-90.107730","29.967740"],["-90.107720","29.967750"],["-90.107700","29.967770"],["-90.107630","29.967840"],["-90.107620","29.967850"],["-90.107610","29.967860"],["-90.107600","29.967870"],["-90.107550","29.967920"],["-90.107520","29.967940"],["-90.107510","29.967950"],["-90.107460","29.968000"],["-90.107380","29.968075"],["-90.107300","29.968150"],["-90.107270","29.968170"],["-90.107170","29.968270"],["-90.107140","29.968300"],["-90.107130","29.968310"],["-90.107010","29.968400"],["-90.106920","29.968480"],["-90.106830","29.968560"],["-90.106700","29.968680"],["-90.106700","29.968690"],["-90.106620","29.968770"],["-90.106550","29.968830"],["-90.106479","29.968766"],["-90.106550","29.968830"],["-90.106430","29.968940"],["-90.106310","29.968885"],["-90.106190","29.968830"],["-90.106000","29.968745"],["-90.105810","29.968660"],["-90.105697","29.968609"],["-90.105585","29.968558"],["-90.105472","29.968506"],["-90.105360","29.968455"],["-90.105247","29.968404"],["-90.105117","29.968318"],["-90.104986","29.968232"],["-90.104856","29.968146"],["-90.104726","29.968060"],["-90.104586","29.968022"],["-90.104446","29.967984"],["-90.104307","29.967946"],["-90.104167","29.967908"],["-90.104040","29.967850"],["-90.103850","29.967770"],["-90.103670","29.967685"],["-90.103490","29.967600"],["-90.103295","29.967513"],["-90.103100","29.967425"],["-90.102905","29.967338"],["-90.102710","29.967250"],["-90.102530","29.967160"],["-90.102566","29.967109"],["-90.102530","29.967160"],["-90.102430","29.967120"],["-90.102314","29.967068"],["-90.102197","29.967015"],["-90.102081","29.966963"],["-90.101965","29.966910"],["-90.101849","29.966858"],["-90.101732","29.966805"],["-90.101616","29.966753"],["-90.101500","29.966700"],["-90.101396","29.966651"],["-90.101292","29.966603"],["-90.101189","29.966554"],["-90.101085","29.966505"],["-90.100981","29.966456"],["-90.100877","29.966408"],["-90.100774","29.966359"],["-90.100670","29.966310"],["-90.100705","29.966252"],["-90.100670","29.966310"],["-90.100550","29.966260"],["-90.100442","29.966211"],["-90.100335","29.966163"],["-90.100227","29.966114"],["-90.100120","29.966065"],["-90.100012","29.966016"],["-90.099905","29.965968"],["-90.099797","29.965919"],["-90.099690","29.965870"],["-90.099728","29.965799"],["-90.099690","29.965870"],["-90.099600","29.965830"],["-90.099440","29.965755"],["-90.099280","29.965680"],["-90.099175","29.965630"],["-90.099070","29.965580"],["-90.098925","29.965515"],["-90.098780","29.965450"],["-90.098818","29.965387"],["-90.098780","29.965450"],["-90.098630","29.965380"],["-90.098550","29.965330"],["-90.098445","29.965285"],["-90.098340","29.965240"],["-90.098230","29.965195"],["-90.098120","29.965150"],["-90.098007","29.965100"],["-90.097895","29.965050"],["-90.097782","29.965000"],["-90.097670","29.964950"],["-90.097507","29.964875"],["-90.097345","29.964800"],["-90.097182","29.964725"],["-90.097020","29.964650"],["-90.096907","29.964599"],["-90.096795","29.964548"],["-90.096682","29.964496"],["-90.096570","29.964445"],["-90.096457","29.964394"],["-90.096345","29.964343"],["-90.096232","29.964291"],["-90.096120","29.964240"],["-90.096118","29.964246"],["-90.096120","29.964240"],["-90.096010","29.964190"],["-90.095845","29.964120"],["-90.095680","29.964050"],["-90.095575","29.964003"],["-90.095470","29.963955"],["-90.095365","29.963908"],["-90.095260","29.963860"],["-90.095147","29.963808"],["-90.095035","29.963755"],["-90.094922","29.963703"],["-90.094810","29.963650"],["-90.094710","29.963605"],["-90.094610","29.963560"],["-90.094510","29.963515"],["-90.094410","29.963470"],["-90.094422","29.963452"],["-90.094410","29.963470"],["-90.094290","29.963410"],["-90.094171","29.963356"],["-90.094052","29.963303"],["-90.093934","29.963249"],["-90.093815","29.963195"],["-90.093696","29.963141"],["-90.093577","29.963088"],["-90.093459","29.963034"],["-90.093340","29.962980"],["-90.093175","29.962905"],["-90.093010","29.962830"],["-90.092970","29.962810"],["-90.092820","29.962740"],["-90.092670","29.962670"],["-90.092510","29.962600"],["-90.092508","29.962605"],["-90.092510","29.962600"],["-90.092480","29.962590"],["-90.092400","29.962540"],["-90.092220","29.962458"],["-90.092040","29.962375"],["-90.091860","29.962293"],["-90.091680","29.962210"],["-90.091530","29.962140"],["-90.091380","29.962070"],["-90.091267","29.962018"],["-90.091155","29.961965"],["-90.091042","29.961913"],["-90.090930","29.961860"],["-90.090969","29.961797"],["-90.090930","29.961860"],["-90.090800","29.961810"],["-90.090610","29.961720"],["-90.090447","29.961650"],["-90.090285","29.961580"],["-90.090122","29.961510"],["-90.089960","29.961440"],["-90.089860","29.961395"],["-90.089760","29.961350"],["-90.089622","29.961288"],["-90.089485","29.961225"],["-90.089347","29.961163"],["-90.089210","29.961100"],["-90.089249","29.961029"],["-90.089210","29.961100"],["-90.089060","29.961030"],["-90.088934","29.960973"],["-90.088807","29.960915"],["-90.088681","29.960858"],["-90.088555","29.960800"],["-90.088429","29.960743"],["-90.088302","29.960685"],["-90.088176","29.960628"],["-90.088050","29.960570"],["-90.087920","29.960510"],["-90.087812","29.960463"],["-90.087705","29.960415"],["-90.087597","29.960368"],["-90.087490","29.960320"],["-90.087382","29.960273"],["-90.087275","29.960225"],["-90.087167","29.960178"],["-90.087060","29.960130"],["-90.087107","29.960046"],["-90.087060","29.960130"],["-90.086890","29.960050"],["-90.086766","29.959993"],["-90.086642","29.959935"],["-90.086519","29.959878"],["-90.086395","29.959820"],["-90.086271","29.959763"],["-90.086147","29.959705"],["-90.086024","29.959648"],["-90.085900","29.959590"],["-90.085760","29.959530"],["-90.085565","29.959440"],["-90.085370","29.959350"],["-90.085190","29.959270"],["-90.085232","29.959199"],["-90.085190","29.959270"],["-90.085000","29.959180"],["-90.084900","29.959135"],["-90.084800","29.959090"],["-90.084625","29.959010"],["-90.084450","29.958930"],["-90.084340","29.958880"],["-90.084190","29.958810"],["-90.084040","29.958740"],["-90.083920","29.958680"],["-90.083780","29.958620"],["-90.083612","29.958545"],["-90.083445","29.958470"],["-90.083277","29.958395"],["-90.083169","29.958348"],["-90.083060","29.958300"],["-90.083152","29.958253"],["-90.083060","29.958300"],["-90.082910","29.958220"],["-90.082805","29.958175"],["-90.082700","29.958130"],["-90.082550","29.958070"],["-90.082417","29.958008"],["-90.082285","29.957945"],["-90.082152","29.957883"],["-90.081960","29.957800"],["-90.082003","29.957735"],["-90.081960","29.957800"],["-90.081870","29.957760"],["-90.081767","29.957713"],["-90.081665","29.957665"],["-90.081562","29.957618"],["-90.081460","29.957570"],["-90.081320","29.957505"],["-90.081180","29.957440"],["-90.081030","29.957370"],["-90.080840","29.957280"],["-90.080737","29.957234"],["-90.080635","29.957188"],["-90.080532","29.957141"],["-90.080429","29.957093"],["-90.080325","29.957045"],["-90.080265","29.956915"],["-90.080131","29.956958"],["-90.080011","29.956904"],["-90.079890","29.956849"],["-90.079770","29.956795"],["-90.079650","29.956740"],["-90.079465","29.956650"],["-90.079280","29.956560"],["-90.079100","29.956480"],["-90.078945","29.956405"],["-90.078790","29.956330"],["-90.078750","29.956320"],["-90.078680","29.956290"],["-90.078562","29.956240"],["-90.078445","29.956190"],["-90.078327","29.956140"],["-90.078210","29.956090"],["-90.078035","29.956010"],["-90.077860","29.955930"],["-90.077830","29.955910"],["-90.077695","29.955850"],["-90.077560","29.955790"],["-90.077425","29.955730"],["-90.077290","29.955670"],["-90.077351","29.955562"],["-90.077290","29.955670"],["-90.077130","29.955600"],["-90.076945","29.955515"],["-90.076760","29.955430"],["-90.076575","29.955345"],["-90.076390","29.955260"],["-90.076287","29.955215"],["-90.076185","29.955170"],["-90.076082","29.955125"],["-90.075980","29.955080"],["-90.075875","29.955035"],["-90.075770","29.954990"],["-90.075660","29.954940"],["-90.075500","29.954870"],["-90.075420","29.954960"],["-90.075360","29.955030"],["-90.075305","29.954992"],["-90.075360","29.955030"],["-90.075240","29.955170"],["-90.075115","29.955310"],["-90.074990","29.955450"],["-90.074860","29.955590"],["-90.074740","29.955715"],["-90.074620","29.955840"],["-90.074495","29.955980"],["-90.074370","29.956120"],["-90.074245","29.956260"],["-90.074120","29.956400"],["-90.074113","29.956395"],["-90.074120","29.956400"],["-90.074090","29.956440"],["-90.074060","29.956420"],["-90.074040","29.956400"],["-90.073930","29.956325"],["-90.073820","29.956250"],["-90.073730","29.956190"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073835","29.955908"],["-90.073950","29.955775"],["-90.074065","29.955643"],["-90.074180","29.955510"],["-90.074270","29.955410"],["-90.074400","29.955270"],["-90.074485","29.955175"],["-90.074570","29.955080"],["-90.074685","29.954945"],["-90.074818","29.954823"]]},{"type":"MultiPoint","coordinates":[["-90.111257","29.964300"],["-90.120533","29.955649"],["-90.119575","29.956605"],["-90.118043","29.957964"],["-90.116506","29.959373"],["-90.115006","29.960773"],["-90.113558","29.962168"],["-90.110070","29.965395"],["-90.106479","29.968766"],["-90.104726","29.968060"],["-90.102566","29.967109"],["-90.100705","29.966252"],["-90.099728","29.965799"],["-90.098818","29.965387"],["-90.096118","29.964246"],["-90.094422","29.963452"],["-90.092508","29.962605"],["-90.090969","29.961797"],["-90.089249","29.961029"],["-90.087107","29.960046"],["-90.085232","29.959199"],["-90.083152","29.958253"],["-90.082003","29.957735"],["-90.080265","29.956915"],["-90.077351","29.955562"],["-90.075305","29.954992"],["-90.074113","29.956395"],["-90.074818","29.954823"],["-90.126687","29.960570"],["-90.125035","29.959272"],["-90.123402","29.957970"],["-90.132770","29.964607"],["-90.145316","29.962791"],["-90.129533","29.962875"],["-90.140593","29.962077"],["-90.139514","29.963498"],["-90.137472","29.965167"],["-90.134161","29.964788"],["-90.154931","29.962909"],["-90.152369","29.962824"],["-90.149136","29.963275"],["-90.147061","29.963052"],["-90.156787","29.962944"],["-90.182632","29.948098"],["-90.171851","29.959534"],["-90.181258","29.950107"]]},{"type":"LineString","coordinates":[["-90.182632","29.948098"],["-90.182670","29.948120"],["-90.182550","29.948280"],["-90.182550","29.948290"],["-90.182445","29.948420"],["-90.182340","29.948550"],["-90.182235","29.948695"],["-90.182130","29.948840"],["-90.182025","29.948980"],["-90.181920","29.949120"],["-90.181835","29.949235"],["-90.181750","29.949350"],["-90.181700","29.949430"],["-90.181690","29.949430"],["-90.181610","29.949545"],["-90.181530","29.949660"],["-90.181460","29.949760"],["-90.181403","29.949843"],["-90.181345","29.949925"],["-90.181288","29.950008"],["-90.181230","29.950090"],["-90.181258","29.950107"],["-90.181230","29.950090"],["-90.181170","29.950170"],["-90.181078","29.950305"],["-90.180985","29.950440"],["-90.180893","29.950575"],["-90.180800","29.950710"],["-90.180780","29.950740"],["-90.180695","29.950865"],["-90.180610","29.950990"],["-90.180525","29.951115"],["-90.180440","29.951240"],["-90.180365","29.951375"],["-90.180290","29.951510"],["-90.180220","29.951650"],["-90.180138","29.951795"],["-90.180055","29.951940"],["-90.179973","29.952085"],["-90.179890","29.952230"],["-90.179820","29.952365"],["-90.179750","29.952500"],["-90.179670","29.952590"],["-90.179590","29.952680"],["-90.179510","29.952770"],["-90.179430","29.952860"],["-90.179323","29.952978"],["-90.179215","29.953095"],["-90.179108","29.953213"],["-90.179000","29.953330"],["-90.178940","29.953390"],["-90.178845","29.953500"],["-90.178750","29.953610"],["-90.178640","29.953775"],["-90.178530","29.953940"],["-90.178455","29.954065"],["-90.178380","29.954190"],["-90.178320","29.954270"],["-90.178250","29.954410"],["-90.178210","29.954500"],["-90.178125","29.954675"],["-90.178040","29.954850"],["-90.177980","29.954950"],["-90.177890","29.955120"],["-90.177820","29.955230"],["-90.177770","29.955310"],["-90.177670","29.955450"],["-90.177575","29.955585"],["-90.177480","29.955720"],["-90.177385","29.955855"],["-90.177290","29.955990"],["-90.177220","29.956090"],["-90.177130","29.956220"],["-90.177070","29.956280"],["-90.177020","29.956340"],["-90.176915","29.956445"],["-90.176810","29.956550"],["-90.176713","29.956620"],["-90.176615","29.956690"],["-90.176518","29.956760"],["-90.176420","29.956830"],["-90.176318","29.956898"],["-90.176215","29.956965"],["-90.176113","29.957033"],["-90.176010","29.957100"],["-90.175890","29.957175"],["-90.175770","29.957250"],["-90.175650","29.957321"],["-90.175530","29.957393"],["-90.175410","29.957464"],["-90.175290","29.957535"],["-90.175170","29.957606"],["-90.175050","29.957678"],["-90.174930","29.957749"],["-90.174810","29.957820"],["-90.174680","29.957900"],["-90.174584","29.957956"],["-90.174488","29.958013"],["-90.174391","29.958069"],["-90.174295","29.958125"],["-90.174199","29.958181"],["-90.174103","29.958238"],["-90.174006","29.958294"],["-90.173910","29.958350"],["-90.173790","29.958420"],["-90.173670","29.958490"],["-90.173518","29.958585"],["-90.173365","29.958680"],["-90.173213","29.958775"],["-90.173060","29.958870"],["-90.173010","29.958890"],["-90.172915","29.958946"],["-90.172820","29.959003"],["-90.172725","29.959059"],["-90.172630","29.959115"],["-90.172535","29.959171"],["-90.172440","29.959228"],["-90.172345","29.959284"],["-90.172250","29.959340"],["-90.172158","29.959398"],["-90.172065","29.959455"],["-90.171973","29.959513"],["-90.171880","29.959570"],["-90.171851","29.959534"],["-90.171880","29.959570"],["-90.171810","29.959610"],["-90.171669","29.959693"],["-90.171528","29.959775"],["-90.171386","29.959858"],["-90.171245","29.959940"],["-90.171104","29.960023"],["-90.170963","29.960105"],["-90.170821","29.960188"],["-90.170680","29.960270"],["-90.170505","29.960380"],["-90.170330","29.960490"],["-90.170220","29.960560"],["-90.170110","29.960630"],["-90.170000","29.960700"],["-90.169890","29.960770"],["-90.169715","29.960865"],["-90.169540","29.960960"],["-90.169410","29.961036"],["-90.169280","29.961113"],["-90.169150","29.961189"],["-90.169020","29.961265"],["-90.168890","29.961341"],["-90.168760","29.961418"],["-90.168630","29.961494"],["-90.168500","29.961570"],["-90.168360","29.961650"],["-90.168220","29.961730"],["-90.168110","29.961795"],["-90.168000","29.961860"],["-90.167890","29.961925"],["-90.167780","29.961990"],["-90.167655","29.962065"],["-90.167530","29.962140"],["-90.167405","29.962215"],["-90.167280","29.962290"],["-90.167165","29.962360"],["-90.167050","29.962430"],["-90.166910","29.962510"],["-90.166770","29.962590"],["-90.166658","29.962655"],["-90.166545","29.962720"],["-90.166433","29.962785"],["-90.166320","29.962850"],["-90.166150","29.962925"],["-90.165980","29.963000"],["-90.165790","29.963045"],["-90.165600","29.963090"],["-90.165470","29.963115"],["-90.165340","29.963140"],["-90.165200","29.963160"],["-90.165080","29.963170"],["-90.164875","29.963170"],["-90.164670","29.963170"],["-90.164530","29.963165"],["-90.164390","29.963160"],["-90.164250","29.963155"],["-90.164110","29.963150"],["-90.163935","29.963145"],["-90.163760","29.963140"],["-90.163612","29.963136"],["-90.163465","29.963133"],["-90.163317","29.963129"],["-90.163170","29.963125"],["-90.163022","29.963121"],["-90.162875","29.963118"],["-90.162727","29.963114"],["-90.162580","29.963110"],["-90.162435","29.963110"],["-90.162290","29.963110"],["-90.162115","29.963105"],["-90.161940","29.963100"],["-90.161765","29.963095"],["-90.161590","29.963090"],["-90.161460","29.963085"],["-90.161330","29.963080"],["-90.161200","29.963075"],["-90.161070","29.963070"],["-90.160951","29.963066"],["-90.160832","29.963063"],["-90.160714","29.963059"],["-90.160595","29.963055"],["-90.160476","29.963051"],["-90.160357","29.963048"],["-90.160239","29.963044"],["-90.160120","29.963040"],["-90.159935","29.963035"],["-90.159750","29.963030"],["-90.159630","29.963030"],["-90.159540","29.963030"],["-90.159385","29.963025"],["-90.159230","29.963020"],["-90.159065","29.963015"],["-90.158900","29.963010"],["-90.158690","29.963000"],["-90.158560","29.962998"],["-90.158430","29.962995"],["-90.158300","29.962993"],["-90.158170","29.962990"],["-90.158026","29.962986"],["-90.157882","29.962983"],["-90.157739","29.962979"],["-90.157595","29.962975"],["-90.157451","29.962971"],["-90.157307","29.962968"],["-90.157164","29.962964"],["-90.157020","29.962960"],["-90.156905","29.962955"],["-90.156790","29.962950"],["-90.156787","29.962944"],["-90.156790","29.962950"],["-90.156640","29.962940"],["-90.156525","29.962935"],["-90.156410","29.962930"],["-90.156290","29.962930"],["-90.156170","29.962930"],["-90.156005","29.962925"],["-90.155840","29.962920"],["-90.155725","29.962916"],["-90.155610","29.962913"],["-90.155495","29.962909"],["-90.155380","29.962905"],["-90.155265","29.962901"],["-90.155150","29.962898"],["-90.155035","29.962894"],["-90.154920","29.962890"],["-90.154931","29.962909"],["-90.154920","29.962890"],["-90.154700","29.962890"],["-90.154490","29.962880"],["-90.154310","29.962880"],["-90.154210","29.962880"],["-90.154140","29.962880"],["-90.154040","29.962870"],["-90.153885","29.962865"],["-90.153730","29.962860"],["-90.153575","29.962855"],["-90.153420","29.962850"],["-90.153330","29.962850"],["-90.153190","29.962845"],["-90.153050","29.962840"],["-90.152910","29.962835"],["-90.152770","29.962830"],["-90.152570","29.962825"],["-90.152370","29.962820"],["-90.152369","29.962824"],["-90.152370","29.962820"],["-90.152340","29.962820"],["-90.152180","29.962820"],["-90.152020","29.962820"],["-90.151920","29.962820"],["-90.151830","29.962820"],["-90.151680","29.962840"],["-90.151555","29.962855"],["-90.151430","29.962870"],["-90.151279","29.962899"],["-90.151128","29.962928"],["-90.150976","29.962956"],["-90.150825","29.962985"],["-90.150674","29.963014"],["-90.150523","29.963043"],["-90.150371","29.963071"],["-90.150220","29.963100"],["-90.150063","29.963130"],["-90.149905","29.963160"],["-90.149748","29.963190"],["-90.149590","29.963220"],["-90.149530","29.963230"],["-90.149460","29.963240"],["-90.149295","29.963260"],["-90.149130","29.963280"],["-90.149136","29.963275"],["-90.149130","29.963280"],["-90.148980","29.963285"],["-90.148830","29.963290"],["-90.148820","29.963290"],["-90.148700","29.963280"],["-90.148540","29.963270"],["-90.148375","29.963248"],["-90.148210","29.963225"],["-90.148045","29.963203"],["-90.147880","29.963180"],["-90.147675","29.963145"],["-90.147470","29.963110"],["-90.147265","29.963075"],["-90.147060","29.963040"],["-90.147061","29.963052"],["-90.147060","29.963040"],["-90.146880","29.963010"],["-90.146700","29.962980"],["-90.146540","29.962960"],["-90.146360","29.962930"],["-90.146235","29.962915"],["-90.146110","29.962900"],["-90.146070","29.962890"],["-90.145895","29.962860"],["-90.145720","29.962830"],["-90.145560","29.962810"],["-90.145380","29.962780"],["-90.145320","29.962770"],["-90.145316","29.962791"],["-90.145320","29.962770"],["-90.145150","29.962750"],["-90.144990","29.962720"],["-90.144872","29.962703"],["-90.144755","29.962685"],["-90.144637","29.962668"],["-90.144520","29.962650"],["-90.144405","29.962630"],["-90.144290","29.962610"],["-90.144210","29.962600"],["-90.144150","29.962590"],["-90.144020","29.962570"],["-90.143890","29.962550"],["-90.143790","29.962540"],["-90.143640","29.962510"],["-90.143520","29.962500"],["-90.143400","29.962480"],["-90.143287","29.962463"],["-90.143175","29.962445"],["-90.143062","29.962428"],["-90.142950","29.962410"],["-90.142757","29.962380"],["-90.142565","29.962350"],["-90.142372","29.962320"],["-90.142180","29.962290"],["-90.141982","29.962258"],["-90.141785","29.962225"],["-90.141587","29.962193"],["-90.141390","29.962160"],["-90.141210","29.962135"],["-90.141030","29.962110"],["-90.140930","29.962100"],["-90.140840","29.962110"],["-90.140760","29.962110"],["-90.140670","29.962110"],["-90.140600","29.962120"],["-90.140593","29.962077"],["-90.140600","29.962120"],["-90.140510","29.962140"],["-90.140390","29.962190"],["-90.140300","29.962230"],["-90.140140","29.962330"],["-90.140090","29.962360"],["-90.140050","29.962400"],["-90.140010","29.962440"],["-90.139970","29.962480"],["-90.139950","29.962500"],["-90.139900","29.962580"],["-90.139870","29.962640"],["-90.139850","29.962660"],["-90.139780","29.962800"],["-90.139710","29.962973"],["-90.139640","29.963145"],["-90.139570","29.963318"],["-90.139500","29.963490"],["-90.139514","29.963498"],["-90.139500","29.963490"],["-90.139448","29.963628"],["-90.139395","29.963765"],["-90.139343","29.963903"],["-90.139290","29.964040"],["-90.139248","29.964146"],["-90.139205","29.964253"],["-90.139163","29.964359"],["-90.139120","29.964465"],["-90.139078","29.964571"],["-90.139035","29.964678"],["-90.138993","29.964784"],["-90.138950","29.964890"],["-90.138900","29.965000"],["-90.138880","29.965040"],["-90.138860","29.965080"],["-90.138830","29.965120"],["-90.138810","29.965140"],["-90.138770","29.965170"],["-90.138740","29.965190"],["-90.138710","29.965210"],["-90.138670","29.965230"],["-90.138630","29.965250"],["-90.138600","29.965270"],["-90.138560","29.965280"],["-90.138520","29.965280"],["-90.138480","29.965290"],["-90.138440","29.965290"],["-90.138390","29.965290"],["-90.138240","29.965280"],["-90.138110","29.965260"],["-90.137980","29.965240"],["-90.137855","29.965220"],["-90.137730","29.965200"],["-90.137560","29.965170"],["-90.137490","29.965160"],["-90.137470","29.965160"],["-90.137472","29.965167"],["-90.137470","29.965160"],["-90.137430","29.965160"],["-90.137300","29.965150"],["-90.137142","29.965130"],["-90.136985","29.965110"],["-90.136827","29.965090"],["-90.136670","29.965070"],["-90.136540","29.965060"],["-90.136382","29.965040"],["-90.136225","29.965020"],["-90.136067","29.965000"],["-90.135910","29.964980"],["-90.135725","29.964960"],["-90.135540","29.964940"],["-90.135406","29.964925"],["-90.135272","29.964910"],["-90.135139","29.964895"],["-90.135005","29.964880"],["-90.134871","29.964865"],["-90.134737","29.964850"],["-90.134604","29.964835"],["-90.134470","29.964820"],["-90.134410","29.964810"],["-90.134210","29.964790"],["-90.134160","29.964780"],["-90.134161","29.964788"],["-90.134160","29.964780"],["-90.134140","29.964780"],["-90.134030","29.964770"],["-90.133850","29.964750"],["-90.133735","29.964740"],["-90.133620","29.964730"],["-90.133475","29.964715"],["-90.133330","29.964700"],["-90.133140","29.964675"],["-90.132950","29.964650"],["-90.132770","29.964620"],["-90.132770","29.964607"],["-90.132770","29.964620"],["-90.132645","29.964595"],["-90.132520","29.964570"],["-90.132490","29.964560"],["-90.132350","29.964525"],["-90.132210","29.964490"],["-90.132070","29.964455"],["-90.131930","29.964420"],["-90.131795","29.964370"],["-90.131660","29.964320"],["-90.131505","29.964265"],["-90.131350","29.964210"],["-90.131250","29.964165"],["-90.131150","29.964120"],["-90.131110","29.964110"],["-90.130930","29.964030"],["-90.130750","29.963950"],["-90.130620","29.963870"],["-90.130510","29.963800"],["-90.130460","29.963770"],["-90.130390","29.963720"],["-90.130245","29.963600"],["-90.130100","29.963480"],["-90.130029","29.963404"],["-90.129958","29.963329"],["-90.129887","29.963253"],["-90.129816","29.963178"],["-90.129746","29.963102"],["-90.129675","29.963026"],["-90.129604","29.962951"],["-90.129533","29.962875"],["-90.129361","29.962880"],["-90.129270","29.962807"],["-90.129180","29.962733"],["-90.129089","29.962659"],["-90.128998","29.962586"],["-90.128907","29.962512"],["-90.128816","29.962439"],["-90.128726","29.962365"],["-90.128635","29.962291"],["-90.128544","29.962218"],["-90.128453","29.962144"],["-90.128363","29.962070"],["-90.128272","29.961997"],["-90.128181","29.961923"],["-90.128090","29.961849"],["-90.127999","29.961776"],["-90.127909","29.961702"],["-90.127824","29.961633"],["-90.127739","29.961563"],["-90.127654","29.961494"],["-90.127569","29.961425"],["-90.127484","29.961356"],["-90.127400","29.961286"],["-90.127315","29.961217"],["-90.127230","29.961148"],["-90.127145","29.961078"],["-90.127060","29.961009"],["-90.126976","29.960940"],["-90.126876","29.960855"],["-90.126776","29.960769"],["-90.126732","29.960670"],["-90.126687","29.960570"],["-90.126582","29.960520"],["-90.126477","29.960470"],["-90.126372","29.960419"],["-90.126267","29.960369"],["-90.126125","29.960256"],["-90.125983","29.960144"],["-90.125841","29.960031"],["-90.125698","29.959919"],["-90.125556","29.959807"],["-90.125414","29.959694"],["-90.125324","29.959618"],["-90.125233","29.959541"],["-90.125143","29.959464"],["-90.125052","29.959387"],["-90.125035","29.959272"],["-90.124882","29.959176"],["-90.124729","29.959081"],["-90.124576","29.958985"],["-90.124423","29.958889"],["-90.124267","29.958765"],["-90.124111","29.958640"],["-90.123955","29.958515"],["-90.123799","29.958391"],["-90.123643","29.958266"],["-90.123523","29.958118"],["-90.123402","29.957970"],["-90.123295","29.957962"],["-90.123186","29.957878"],["-90.123077","29.957793"],["-90.122969","29.957709"],["-90.122860","29.957625"],["-90.122760","29.957544"],["-90.122660","29.957463"],["-90.122560","29.957381"],["-90.122460","29.957300"],["-90.122351","29.957213"],["-90.122242","29.957125"],["-90.122134","29.957038"],["-90.122025","29.956950"],["-90.121916","29.956863"],["-90.121807","29.956775"],["-90.121699","29.956688"],["-90.121590","29.956600"],["-90.121530","29.956560"],["-90.121430","29.956470"],["-90.121330","29.956380"],["-90.121225","29.956305"],["-90.121120","29.956230"],["-90.121015","29.956140"],["-90.120910","29.956050"],["-90.120840","29.955990"],["-90.120720","29.955900"],["-90.120680","29.955870"],["-90.120795","29.955758"],["-90.120910","29.955645"],["-90.121025","29.955533"],["-90.121140","29.955420"],["-90.121240","29.955330"],["-90.121340","29.955240"],["-90.121270","29.955180"],["-90.121240","29.955150"],["-90.121170","29.955100"],["-90.121095","29.955173"],["-90.121020","29.955245"],["-90.120945","29.955318"],["-90.120870","29.955390"],["-90.120795","29.955465"],["-90.120720","29.955540"],["-90.120570","29.955680"],["-90.120533","29.955649"],["-90.120570","29.955680"],["-90.120520","29.955720"],["-90.120420","29.955825"],["-90.120320","29.955930"],["-90.120240","29.956000"],["-90.120155","29.956083"],["-90.120070","29.956165"],["-90.119985","29.956248"],["-90.119900","29.956330"],["-90.119890","29.956330"],["-90.119810","29.956415"],["-90.119730","29.956500"],["-90.119590","29.956620"],["-90.119575","29.956605"],["-90.119590","29.956620"],["-90.119550","29.956660"],["-90.119468","29.956736"],["-90.119385","29.956813"],["-90.119303","29.956889"],["-90.119220","29.956965"],["-90.119138","29.957041"],["-90.119055","29.957118"],["-90.118973","29.957194"],["-90.118890","29.957270"],["-90.118790","29.957370"],["-90.118704","29.957450"],["-90.118618","29.957530"],["-90.118531","29.957610"],["-90.118445","29.957690"],["-90.118359","29.957770"],["-90.118273","29.957850"],["-90.118186","29.957930"],["-90.118100","29.958010"],["-90.118043","29.957964"],["-90.118100","29.958010"],["-90.118030","29.958080"],["-90.117935","29.958170"],["-90.117840","29.958260"],["-90.117745","29.958350"],["-90.117650","29.958440"],["-90.117555","29.958530"],["-90.117460","29.958620"],["-90.117365","29.958710"],["-90.117270","29.958800"],["-90.117145","29.958918"],["-90.117020","29.959035"],["-90.116895","29.959153"],["-90.116770","29.959270"],["-90.116680","29.959355"],["-90.116590","29.959440"],["-90.116506","29.959373"],["-90.116580","29.959430"],["-90.116510","29.959490"],["-90.116416","29.959579"],["-90.116323","29.959668"],["-90.116229","29.959756"],["-90.116135","29.959845"],["-90.116041","29.959934"],["-90.115948","29.960023"],["-90.115854","29.960111"],["-90.115760","29.960200"],["-90.115655","29.960298"],["-90.115550","29.960395"],["-90.115445","29.960493"],["-90.115340","29.960590"],["-90.115240","29.960685"],["-90.115140","29.960780"],["-90.115120","29.960800"],["-90.115040","29.960740"],["-90.115006","29.960773"],["-90.115040","29.960740"],["-90.115120","29.960800"],["-90.114980","29.960930"],["-90.114905","29.961005"],["-90.114830","29.961080"],["-90.114740","29.961165"],["-90.114650","29.961250"],["-90.114545","29.961345"],["-90.114440","29.961440"],["-90.114390","29.961480"],["-90.114260","29.961610"],["-90.114135","29.961725"],["-90.114010","29.961840"],["-90.113885","29.961955"],["-90.113760","29.962070"],["-90.113639","29.962187"],["-90.113558","29.962168"],["-90.113548","29.962271"],["-90.113409","29.962403"],["-90.113270","29.962535"],["-90.113180","29.962620"],["-90.113040","29.962750"],["-90.112960","29.962830"],["-90.112840","29.962950"],["-90.112750","29.963040"],["-90.112640","29.963143"],["-90.112530","29.963245"],["-90.112420","29.963348"],["-90.112310","29.963450"],["-90.112220","29.963530"],["-90.112130","29.963610"],["-90.112000","29.963740"],["-90.111850","29.963870"],["-90.111790","29.963930"],["-90.111710","29.964010"],["-90.111690","29.964020"],["-90.111570","29.964140"],["-90.111470","29.964230"],["-90.111330","29.964360"],["-90.111257","29.964300"],["-90.111330","29.964360"],["-90.111240","29.964440"],["-90.111100","29.964570"],["-90.110960","29.964700"],["-90.110843","29.964810"],["-90.110725","29.964920"],["-90.110608","29.965030"],["-90.110490","29.965140"],["-90.110365","29.965255"],["-90.110240","29.965370"],["-90.110140","29.965460"],["-90.110070","29.965395"],["-90.110140","29.965460"],["-90.110050","29.965550"],["-90.109950","29.965635"],["-90.109850","29.965720"],["-90.109700","29.965840"],["-90.109615","29.965925"],["-90.109530","29.966010"],["-90.109460","29.966080"],["-90.109370","29.966170"],["-90.109280","29.966260"],["-90.109210","29.966330"],["-90.109080","29.966450"],["-90.108990","29.966530"],["-90.108900","29.966610"],["-90.108800","29.966700"],["-90.108698","29.966800"],["-90.108595","29.966900"],["-90.108493","29.967000"],["-90.108390","29.967100"],["-90.108330","29.967150"],["-90.108330","29.967160"],["-90.108320","29.967160"],["-90.108300","29.967180"],["-90.108290","29.967190"],["-90.108250","29.967240"],["-90.108115","29.967375"],["-90.107980","29.967510"],["-90.107870","29.967610"],["-90.107860","29.967620"],["-90.107810","29.967670"],["-90.107800","29.967680"],["-90.107790","29.967690"],["-90.107740","29.967740"],["-90.107730","29.967740"],["-90.107720","29.967750"],["-90.107700","29.967770"],["-90.107630","29.967840"],["-90.107620","29.967850"],["-90.107610","29.967860"],["-90.107600","29.967870"],["-90.107550","29.967920"],["-90.107520","29.967940"],["-90.107510","29.967950"],["-90.107460","29.968000"],["-90.107380","29.968075"],["-90.107300","29.968150"],["-90.107270","29.968170"],["-90.107170","29.968270"],["-90.107140","29.968300"],["-90.107130","29.968310"],["-90.107010","29.968400"],["-90.106920","29.968480"],["-90.106830","29.968560"],["-90.106700","29.968680"],["-90.106700","29.968690"],["-90.106620","29.968770"],["-90.106550","29.968830"],["-90.106479","29.968766"],["-90.106550","29.968830"],["-90.106430","29.968940"],["-90.106310","29.968885"],["-90.106190","29.968830"],["-90.106000","29.968745"],["-90.105810","29.968660"],["-90.105697","29.968609"],["-90.105585","29.968558"],["-90.105472","29.968506"],["-90.105360","29.968455"],["-90.105247","29.968404"],["-90.105117","29.968318"],["-90.104986","29.968232"],["-90.104856","29.968146"],["-90.104726","29.968060"],["-90.104586","29.968022"],["-90.104446","29.967984"],["-90.104307","29.967946"],["-90.104167","29.967908"],["-90.104040","29.967850"],["-90.103850","29.967770"],["-90.103670","29.967685"],["-90.103490","29.967600"],["-90.103295","29.967513"],["-90.103100","29.967425"],["-90.102905","29.967338"],["-90.102710","29.967250"],["-90.102530","29.967160"],["-90.102566","29.967109"],["-90.102530","29.967160"],["-90.102430","29.967120"],["-90.102314","29.967068"],["-90.102197","29.967015"],["-90.102081","29.966963"],["-90.101965","29.966910"],["-90.101849","29.966858"],["-90.101732","29.966805"],["-90.101616","29.966753"],["-90.101500","29.966700"],["-90.101396","29.966651"],["-90.101292","29.966603"],["-90.101189","29.966554"],["-90.101085","29.966505"],["-90.100981","29.966456"],["-90.100877","29.966408"],["-90.100774","29.966359"],["-90.100670","29.966310"],["-90.100705","29.966252"],["-90.100670","29.966310"],["-90.100550","29.966260"],["-90.100442","29.966211"],["-90.100335","29.966163"],["-90.100227","29.966114"],["-90.100120","29.966065"],["-90.100012","29.966016"],["-90.099905","29.965968"],["-90.099797","29.965919"],["-90.099690","29.965870"],["-90.099728","29.965799"],["-90.099690","29.965870"],["-90.099600","29.965830"],["-90.099440","29.965755"],["-90.099280","29.965680"],["-90.099175","29.965630"],["-90.099070","29.965580"],["-90.098925","29.965515"],["-90.098780","29.965450"],["-90.098818","29.965387"],["-90.098780","29.965450"],["-90.098630","29.965380"],["-90.098550","29.965330"],["-90.098445","29.965285"],["-90.098340","29.965240"],["-90.098230","29.965195"],["-90.098120","29.965150"],["-90.098007","29.965100"],["-90.097895","29.965050"],["-90.097782","29.965000"],["-90.097670","29.964950"],["-90.097507","29.964875"],["-90.097345","29.964800"],["-90.097182","29.964725"],["-90.097020","29.964650"],["-90.096907","29.964599"],["-90.096795","29.964548"],["-90.096682","29.964496"],["-90.096570","29.964445"],["-90.096457","29.964394"],["-90.096345","29.964343"],["-90.096232","29.964291"],["-90.096120","29.964240"],["-90.096118","29.964246"],["-90.096120","29.964240"],["-90.096010","29.964190"],["-90.095845","29.964120"],["-90.095680","29.964050"],["-90.095575","29.964003"],["-90.095470","29.963955"],["-90.095365","29.963908"],["-90.095260","29.963860"],["-90.095147","29.963808"],["-90.095035","29.963755"],["-90.094922","29.963703"],["-90.094810","29.963650"],["-90.094710","29.963605"],["-90.094610","29.963560"],["-90.094510","29.963515"],["-90.094410","29.963470"],["-90.094422","29.963452"],["-90.094410","29.963470"],["-90.094290","29.963410"],["-90.094171","29.963356"],["-90.094052","29.963303"],["-90.093934","29.963249"],["-90.093815","29.963195"],["-90.093696","29.963141"],["-90.093577","29.963088"],["-90.093459","29.963034"],["-90.093340","29.962980"],["-90.093175","29.962905"],["-90.093010","29.962830"],["-90.092970","29.962810"],["-90.092820","29.962740"],["-90.092670","29.962670"],["-90.092510","29.962600"],["-90.092508","29.962605"],["-90.092510","29.962600"],["-90.092480","29.962590"],["-90.092400","29.962540"],["-90.092220","29.962458"],["-90.092040","29.962375"],["-90.091860","29.962293"],["-90.091680","29.962210"],["-90.091530","29.962140"],["-90.091380","29.962070"],["-90.091267","29.962018"],["-90.091155","29.961965"],["-90.091042","29.961913"],["-90.090930","29.961860"],["-90.090969","29.961797"],["-90.090930","29.961860"],["-90.090800","29.961810"],["-90.090610","29.961720"],["-90.090447","29.961650"],["-90.090285","29.961580"],["-90.090122","29.961510"],["-90.089960","29.961440"],["-90.089860","29.961395"],["-90.089760","29.961350"],["-90.089622","29.961288"],["-90.089485","29.961225"],["-90.089347","29.961163"],["-90.089210","29.961100"],["-90.089249","29.961029"],["-90.089210","29.961100"],["-90.089060","29.961030"],["-90.088934","29.960973"],["-90.088807","29.960915"],["-90.088681","29.960858"],["-90.088555","29.960800"],["-90.088429","29.960743"],["-90.088302","29.960685"],["-90.088176","29.960628"],["-90.088050","29.960570"],["-90.087920","29.960510"],["-90.087812","29.960463"],["-90.087705","29.960415"],["-90.087597","29.960368"],["-90.087490","29.960320"],["-90.087382","29.960273"],["-90.087275","29.960225"],["-90.087167","29.960178"],["-90.087060","29.960130"],["-90.087107","29.960046"],["-90.087060","29.960130"],["-90.086890","29.960050"],["-90.086766","29.959993"],["-90.086642","29.959935"],["-90.086519","29.959878"],["-90.086395","29.959820"],["-90.086271","29.959763"],["-90.086147","29.959705"],["-90.086024","29.959648"],["-90.085900","29.959590"],["-90.085760","29.959530"],["-90.085565","29.959440"],["-90.085370","29.959350"],["-90.085190","29.959270"],["-90.085232","29.959199"],["-90.085190","29.959270"],["-90.085000","29.959180"],["-90.084900","29.959135"],["-90.084800","29.959090"],["-90.084625","29.959010"],["-90.084450","29.958930"],["-90.084340","29.958880"],["-90.084190","29.958810"],["-90.084040","29.958740"],["-90.083920","29.958680"],["-90.083780","29.958620"],["-90.083612","29.958545"],["-90.083445","29.958470"],["-90.083277","29.958395"],["-90.083169","29.958348"],["-90.083060","29.958300"],["-90.083152","29.958253"],["-90.083060","29.958300"],["-90.082910","29.958220"],["-90.082805","29.958175"],["-90.082700","29.958130"],["-90.082550","29.958070"],["-90.082417","29.958008"],["-90.082285","29.957945"],["-90.082152","29.957883"],["-90.081960","29.957800"],["-90.082003","29.957735"],["-90.081960","29.957800"],["-90.081870","29.957760"],["-90.081767","29.957713"],["-90.081665","29.957665"],["-90.081562","29.957618"],["-90.081460","29.957570"],["-90.081320","29.957505"],["-90.081180","29.957440"],["-90.081030","29.957370"],["-90.080840","29.957280"],["-90.080737","29.957234"],["-90.080635","29.957188"],["-90.080532","29.957141"],["-90.080429","29.957093"],["-90.080325","29.957045"],["-90.080265","29.956915"],["-90.080131","29.956958"],["-90.080011","29.956904"],["-90.079890","29.956849"],["-90.079770","29.956795"],["-90.079650","29.956740"],["-90.079465","29.956650"],["-90.079280","29.956560"],["-90.079100","29.956480"],["-90.078945","29.956405"],["-90.078790","29.956330"],["-90.078750","29.956320"],["-90.078680","29.956290"],["-90.078562","29.956240"],["-90.078445","29.956190"],["-90.078327","29.956140"],["-90.078210","29.956090"],["-90.078035","29.956010"],["-90.077860","29.955930"],["-90.077830","29.955910"],["-90.077695","29.955850"],["-90.077560","29.955790"],["-90.077425","29.955730"],["-90.077290","29.955670"],["-90.077351","29.955562"],["-90.077290","29.955670"],["-90.077130","29.955600"],["-90.076945","29.955515"],["-90.076760","29.955430"],["-90.076575","29.955345"],["-90.076390","29.955260"],["-90.076287","29.955215"],["-90.076185","29.955170"],["-90.076082","29.955125"],["-90.075980","29.955080"],["-90.075875","29.955035"],["-90.075770","29.954990"],["-90.075660","29.954940"],["-90.075500","29.954870"],["-90.075420","29.954960"],["-90.075360","29.955030"],["-90.075305","29.954992"],["-90.075360","29.955030"],["-90.075240","29.955170"],["-90.075115","29.955310"],["-90.074990","29.955450"],["-90.074860","29.955590"],["-90.074740","29.955715"],["-90.074620","29.955840"],["-90.074495","29.955980"],["-90.074370","29.956120"],["-90.074245","29.956260"],["-90.074120","29.956400"],["-90.074113","29.956395"],["-90.074120","29.956400"],["-90.074090","29.956440"],["-90.074060","29.956420"],["-90.074040","29.956400"],["-90.073930","29.956325"],["-90.073820","29.956250"],["-90.073730","29.956190"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073835","29.955908"],["-90.073950","29.955775"],["-90.074065","29.955643"],["-90.074180","29.955510"],["-90.074270","29.955410"],["-90.074400","29.955270"],["-90.074485","29.955175"],["-90.074570","29.955080"],["-90.074685","29.954945"],["-90.074818","29.954823"]]},{"type":"MultiPoint","coordinates":[["-90.120454","29.956163"],["-90.111376","29.964655"],["-90.116649","29.959724"],["-90.118150","29.958302"],["-90.113604","29.962562"],["-90.074818","29.954823"],["-90.077740","29.955981"],["-90.079570","29.956828"],["-90.081744","29.957818"],["-90.082669","29.958228"],["-90.084604","29.959129"],["-90.086673","29.960129"],["-90.088826","29.961112"],["-90.090336","29.961802"],["-90.092139","29.962632"],["-90.094086","29.963520"],["-90.096207","29.964485"],["-90.097861","29.965259"],["-90.099394","29.965927"],["-90.100314","29.966352"],["-90.102077","29.967359"],["-90.103934","29.968634"],["-90.105439","29.969661"],["-90.106300","29.969419"],["-90.110015","29.965861"],["-90.114962","29.961263"],["-90.122928","29.958146"],["-90.124530","29.959460"],["-90.126135","29.960759"],["-90.129360","29.963354"],["-90.127761","29.962100"],["-90.131911","29.964773"],["-90.145359","29.962980"],["-90.134059","29.964978"],["-90.137287","29.965348"],["-90.138138","29.965452"],["-90.139680","29.963587"],["-90.140439","29.962375"],["-90.142836","29.962597"],["-90.146979","29.963214"],["-90.148993","29.963474"],["-90.152339","29.962987"],["-90.154673","29.963064"],["-90.156820","29.963097"],["-90.182632","29.948098"],["-90.161021","29.963281"],["-90.171812","29.959895"],["-90.182091","29.949291"],["-90.185136","29.951481"],["-90.187159","29.957031"],["-90.185533","29.945116"],["-90.166857","29.962843"],["-90.173681","29.958766"],["-90.178154","29.955190"],["-90.190551","29.949161"]]},{"type":"LineString","coordinates":[["-90.074818","29.954823"],["-90.074800","29.954810"],["-90.074900","29.954700"],["-90.075032","29.954763"],["-90.075165","29.954825"],["-90.075297","29.954888"],["-90.075430","29.954950"],["-90.075535","29.955000"],["-90.075640","29.955050"],["-90.075830","29.955140"],["-90.075920","29.955190"],["-90.076080","29.955265"],["-90.076240","29.955340"],["-90.076340","29.955385"],["-90.076440","29.955430"],["-90.076565","29.955485"],["-90.076690","29.955540"],["-90.076855","29.955615"],["-90.077020","29.955690"],["-90.077195","29.955770"],["-90.077370","29.955850"],["-90.077545","29.955930"],["-90.077720","29.956010"],["-90.077740","29.955981"],["-90.077720","29.956010"],["-90.077790","29.956040"],["-90.077940","29.956105"],["-90.078090","29.956170"],["-90.078250","29.956240"],["-90.078430","29.956320"],["-90.078610","29.956400"],["-90.078680","29.956420"],["-90.078820","29.956490"],["-90.078950","29.956550"],["-90.079130","29.956630"],["-90.079255","29.956685"],["-90.079380","29.956740"],["-90.079570","29.956830"],["-90.079570","29.956828"],["-90.079570","29.956830"],["-90.079690","29.956890"],["-90.079710","29.956900"],["-90.079750","29.956920"],["-90.079800","29.956940"],["-90.079950","29.957000"],["-90.080092","29.957065"],["-90.080235","29.957130"],["-90.080377","29.957195"],["-90.080520","29.957260"],["-90.080670","29.957325"],["-90.080820","29.957390"],["-90.080960","29.957460"],["-90.081140","29.957540"],["-90.081260","29.957600"],["-90.081380","29.957660"],["-90.081430","29.957680"],["-90.081585","29.957750"],["-90.081744","29.957818"],["-90.081750","29.957810"],["-90.081840","29.957850"],["-90.081945","29.957898"],["-90.082050","29.957945"],["-90.082155","29.957993"],["-90.082260","29.958040"],["-90.082365","29.958088"],["-90.082470","29.958135"],["-90.082575","29.958183"],["-90.082680","29.958230"],["-90.082669","29.958228"],["-90.082680","29.958230"],["-90.082780","29.958275"],["-90.082880","29.958320"],["-90.082930","29.958340"],["-90.082980","29.958370"],["-90.083110","29.958430"],["-90.083180","29.958460"],["-90.083280","29.958505"],["-90.083380","29.958550"],["-90.083540","29.958625"],["-90.083700","29.958700"],["-90.083850","29.958770"],["-90.083965","29.958825"],["-90.084080","29.958880"],["-90.084190","29.958930"],["-90.084300","29.958980"],["-90.084455","29.959050"],["-90.084610","29.959120"],["-90.084604","29.959129"],["-90.084610","29.959120"],["-90.084730","29.959170"],["-90.084830","29.959215"],["-90.084930","29.959260"],["-90.085042","29.959311"],["-90.085155","29.959363"],["-90.085267","29.959414"],["-90.085380","29.959465"],["-90.085492","29.959516"],["-90.085605","29.959568"],["-90.085717","29.959619"],["-90.085830","29.959670"],["-90.085985","29.959745"],["-90.086140","29.959820"],["-90.086255","29.959873"],["-90.086370","29.959925"],["-90.086485","29.959978"],["-90.086600","29.960030"],["-90.086710","29.960080"],["-90.086673","29.960129"],["-90.086710","29.960080"],["-90.086820","29.960130"],["-90.086947","29.960188"],["-90.087075","29.960245"],["-90.087202","29.960303"],["-90.087330","29.960360"],["-90.087460","29.960418"],["-90.087590","29.960475"],["-90.087720","29.960533"],["-90.087850","29.960590"],["-90.087960","29.960641"],["-90.088070","29.960693"],["-90.088180","29.960744"],["-90.088290","29.960795"],["-90.088400","29.960846"],["-90.088510","29.960898"],["-90.088620","29.960949"],["-90.088730","29.961000"],["-90.088860","29.961060"],["-90.088826","29.961112"],["-90.088860","29.961060"],["-90.088980","29.961120"],["-90.089155","29.961203"],["-90.089330","29.961285"],["-90.089505","29.961368"],["-90.089680","29.961450"],["-90.089820","29.961500"],["-90.089957","29.961563"],["-90.090095","29.961625"],["-90.090232","29.961688"],["-90.090370","29.961750"],["-90.090336","29.961802"],["-90.090370","29.961750"],["-90.090520","29.961820"],["-90.090720","29.961900"],["-90.090832","29.961953"],["-90.090945","29.962005"],["-90.091057","29.962058"],["-90.091170","29.962110"],["-90.091282","29.962163"],["-90.091395","29.962215"],["-90.091507","29.962268"],["-90.091620","29.962320"],["-90.091760","29.962380"],["-90.091900","29.962440"],["-90.092040","29.962500"],["-90.092180","29.962560"],["-90.092139","29.962632"],["-90.092180","29.962560"],["-90.092330","29.962630"],["-90.092447","29.962684"],["-90.092565","29.962738"],["-90.092682","29.962791"],["-90.092800","29.962845"],["-90.092917","29.962899"],["-90.093035","29.962953"],["-90.093152","29.963006"],["-90.093270","29.963060"],["-90.093377","29.963109"],["-90.093485","29.963158"],["-90.093592","29.963206"],["-90.093700","29.963255"],["-90.093807","29.963304"],["-90.093915","29.963353"],["-90.094022","29.963401"],["-90.094130","29.963450"],["-90.094086","29.963520"],["-90.094130","29.963450"],["-90.094230","29.963490"],["-90.094350","29.963546"],["-90.094470","29.963603"],["-90.094590","29.963659"],["-90.094710","29.963715"],["-90.094830","29.963771"],["-90.094950","29.963828"],["-90.095070","29.963884"],["-90.095190","29.963940"],["-90.095312","29.963995"],["-90.095435","29.964050"],["-90.095557","29.964105"],["-90.095680","29.964160"],["-90.095805","29.964215"],["-90.095930","29.964270"],["-90.096090","29.964340"],["-90.096250","29.964410"],["-90.096207","29.964485"],["-90.096250","29.964410"],["-90.096427","29.964488"],["-90.096605","29.964565"],["-90.096782","29.964643"],["-90.096960","29.964720"],["-90.097127","29.964798"],["-90.097295","29.964875"],["-90.097462","29.964953"],["-90.097630","29.965030"],["-90.097775","29.965095"],["-90.097920","29.965160"],["-90.097861","29.965259"],["-90.097920","29.965160"],["-90.098050","29.965220"],["-90.098150","29.965270"],["-90.098250","29.965320"],["-90.098350","29.965370"],["-90.098450","29.965420"],["-90.098560","29.965460"],["-90.098670","29.965510"],["-90.098780","29.965560"],["-90.098890","29.965610"],["-90.099000","29.965660"],["-90.099110","29.965710"],["-90.099220","29.965760"],["-90.099330","29.965810"],["-90.099440","29.965860"],["-90.099394","29.965927"],["-90.099440","29.965860"],["-90.099530","29.965900"],["-90.099634","29.965948"],["-90.099737","29.965995"],["-90.099841","29.966043"],["-90.099945","29.966090"],["-90.100049","29.966138"],["-90.100152","29.966185"],["-90.100256","29.966233"],["-90.100360","29.966280"],["-90.100314","29.966352"],["-90.100360","29.966280"],["-90.100480","29.966340"],["-90.100599","29.966394"],["-90.100717","29.966448"],["-90.100836","29.966501"],["-90.100955","29.966555"],["-90.101074","29.966609"],["-90.101192","29.966663"],["-90.101311","29.966716"],["-90.101430","29.966770"],["-90.101580","29.966850"],["-90.101670","29.966890"],["-90.101720","29.966980"],["-90.101770","29.967070"],["-90.101855","29.967135"],["-90.101940","29.967200"],["-90.102025","29.967265"],["-90.102110","29.967330"],["-90.102077","29.967359"],["-90.102110","29.967330"],["-90.102170","29.967390"],["-90.102289","29.967466"],["-90.102407","29.967543"],["-90.102526","29.967619"],["-90.102645","29.967695"],["-90.102764","29.967771"],["-90.102882","29.967848"],["-90.103001","29.967924"],["-90.103120","29.968000"],["-90.103270","29.968100"],["-90.103420","29.968200"],["-90.103590","29.968320"],["-90.103745","29.968425"],["-90.103900","29.968530"],["-90.103980","29.968590"],["-90.103934","29.968634"],["-90.103980","29.968590"],["-90.104060","29.968650"],["-90.104184","29.968733"],["-90.104307","29.968815"],["-90.104431","29.968898"],["-90.104555","29.968980"],["-90.104679","29.969063"],["-90.104802","29.969145"],["-90.104926","29.969228"],["-90.105050","29.969310"],["-90.105210","29.969420"],["-90.105350","29.969510"],["-90.105490","29.969600"],["-90.105439","29.969661"],["-90.105490","29.969600"],["-90.105630","29.969700"],["-90.105760","29.969790"],["-90.105863","29.969700"],["-90.105965","29.969610"],["-90.106068","29.969520"],["-90.106170","29.969430"],["-90.106240","29.969370"],["-90.106300","29.969419"],["-90.106240","29.969370"],["-90.106310","29.969310"],["-90.106340","29.969270"],["-90.106425","29.969185"],["-90.106510","29.969100"],["-90.106600","29.969010"],["-90.106750","29.968870"],["-90.106900","29.968730"],["-90.106980","29.968660"],["-90.107115","29.968525"],["-90.107250","29.968390"],["-90.107270","29.968370"],["-90.107415","29.968230"],["-90.107560","29.968090"],["-90.107610","29.968040"],["-90.107710","29.967940"],["-90.107840","29.967830"],["-90.107840","29.967820"],["-90.107850","29.967820"],["-90.107910","29.967770"],["-90.107980","29.967700"],["-90.108120","29.967570"],["-90.108270","29.967430"],["-90.108400","29.967310"],["-90.108410","29.967310"],["-90.108450","29.967270"],["-90.108510","29.967220"],["-90.108570","29.967170"],["-90.108600","29.967130"],["-90.108705","29.967035"],["-90.108810","29.966940"],["-90.108900","29.966860"],["-90.109040","29.966730"],["-90.109110","29.966660"],["-90.109180","29.966600"],["-90.109260","29.966540"],["-90.109340","29.966468"],["-90.109420","29.966395"],["-90.109500","29.966323"],["-90.109580","29.966250"],["-90.109720","29.966115"],["-90.109860","29.965980"],["-90.110000","29.965840"],["-90.110015","29.965861"],["-90.110000","29.965840"],["-90.110085","29.965755"],["-90.110170","29.965670"],["-90.110255","29.965595"],["-90.110340","29.965520"],["-90.110485","29.965385"],["-90.110630","29.965250"],["-90.110735","29.965145"],["-90.110840","29.965040"],["-90.110860","29.965020"],["-90.110980","29.964910"],["-90.111100","29.964800"],["-90.111250","29.964660"],["-90.111310","29.964600"],["-90.111376","29.964655"],["-90.111310","29.964600"],["-90.111370","29.964540"],["-90.111505","29.964420"],["-90.111640","29.964300"],["-90.111735","29.964210"],["-90.111830","29.964120"],["-90.111890","29.964070"],["-90.112010","29.963955"],["-90.112130","29.963840"],["-90.112260","29.963720"],["-90.112360","29.963625"],["-90.112460","29.963530"],["-90.112565","29.963428"],["-90.112670","29.963325"],["-90.112775","29.963223"],["-90.112880","29.963120"],["-90.112990","29.963020"],["-90.113110","29.962910"],["-90.113230","29.962800"],["-90.113350","29.962690"],["-90.113470","29.962580"],["-90.113540","29.962510"],["-90.113604","29.962562"],["-90.113540","29.962510"],["-90.113640","29.962420"],["-90.113780","29.962280"],["-90.113840","29.962230"],["-90.113930","29.962150"],["-90.113990","29.962090"],["-90.114090","29.961998"],["-90.114190","29.961905"],["-90.114290","29.961813"],["-90.114390","29.961720"],["-90.114510","29.961610"],["-90.114600","29.961530"],["-90.114690","29.961440"],["-90.114790","29.961360"],["-90.114850","29.961300"],["-90.114920","29.961230"],["-90.114962","29.961263"],["-90.114920","29.961230"],["-90.114970","29.961180"],["-90.115120","29.961040"],["-90.115270","29.960900"],["-90.115375","29.960800"],["-90.115480","29.960700"],["-90.115585","29.960600"],["-90.115690","29.960500"],["-90.115795","29.960405"],["-90.115900","29.960310"],["-90.115985","29.960230"],["-90.116070","29.960150"],["-90.116155","29.960070"],["-90.116240","29.959990"],["-90.116325","29.959910"],["-90.116410","29.959830"],["-90.116495","29.959750"],["-90.116580","29.959670"],["-90.116649","29.959724"],["-90.116580","29.959670"],["-90.116650","29.959610"],["-90.116725","29.959535"],["-90.116800","29.959460"],["-90.116920","29.959350"],["-90.117040","29.959240"],["-90.117133","29.959155"],["-90.117225","29.959070"],["-90.117318","29.958985"],["-90.117410","29.958900"],["-90.117495","29.958819"],["-90.117580","29.958738"],["-90.117665","29.958656"],["-90.117750","29.958575"],["-90.117835","29.958494"],["-90.117920","29.958413"],["-90.118005","29.958331"],["-90.118090","29.958250"],["-90.118150","29.958302"],["-90.118090","29.958250"],["-90.118160","29.958190"],["-90.118253","29.958105"],["-90.118345","29.958020"],["-90.118438","29.957935"],["-90.118530","29.957850"],["-90.118630","29.957758"],["-90.118730","29.957665"],["-90.118830","29.957573"],["-90.118930","29.957480"],["-90.119024","29.957393"],["-90.119118","29.957305"],["-90.119211","29.957218"],["-90.119305","29.957130"],["-90.119399","29.957043"],["-90.119493","29.956955"],["-90.119586","29.956868"],["-90.119680","29.956780"],["-90.119775","29.956695"],["-90.119870","29.956610"],["-90.119960","29.956520"],["-90.120095","29.956400"],["-90.120230","29.956280"],["-90.120310","29.956200"],["-90.120400","29.956120"],["-90.120454","29.956163"],["-90.120400","29.956120"],["-90.120470","29.956050"],["-90.120610","29.956160"],["-90.120765","29.956285"],["-90.120920","29.956410"],["-90.121040","29.956510"],["-90.121120","29.956590"],["-90.121250","29.956680"],["-90.121390","29.956790"],["-90.121496","29.956876"],["-90.121602","29.956963"],["-90.121709","29.957049"],["-90.121815","29.957135"],["-90.121921","29.957221"],["-90.122027","29.957308"],["-90.122134","29.957394"],["-90.122240","29.957480"],["-90.122334","29.957556"],["-90.122427","29.957633"],["-90.122543","29.957731"],["-90.122660","29.957829"],["-90.122776","29.957928"],["-90.122892","29.958026"],["-90.122928","29.958146"],["-90.123040","29.958184"],["-90.123152","29.958221"],["-90.123239","29.958291"],["-90.123325","29.958362"],["-90.123412","29.958432"],["-90.123498","29.958502"],["-90.123585","29.958573"],["-90.123671","29.958643"],["-90.123758","29.958713"],["-90.123844","29.958783"],["-90.123931","29.958854"],["-90.124017","29.958924"],["-90.124104","29.958994"],["-90.124190","29.959065"],["-90.124277","29.959135"],["-90.124363","29.959205"],["-90.124450","29.959276"],["-90.124536","29.959346"],["-90.124530","29.959460"],["-90.124729","29.959513"],["-90.124812","29.959579"],["-90.124895","29.959646"],["-90.124978","29.959712"],["-90.125061","29.959778"],["-90.125143","29.959844"],["-90.125226","29.959911"],["-90.125309","29.959977"],["-90.125392","29.960043"],["-90.125475","29.960109"],["-90.125557","29.960175"],["-90.125640","29.960242"],["-90.125723","29.960308"],["-90.125806","29.960374"],["-90.125889","29.960440"],["-90.125972","29.960507"],["-90.126054","29.960573"],["-90.126095","29.960666"],["-90.126135","29.960759"],["-90.126245","29.960787"],["-90.126355","29.960814"],["-90.126438","29.960881"],["-90.126521","29.960947"],["-90.126679","29.961074"],["-90.126785","29.961160"],["-90.126892","29.961246"],["-90.126998","29.961332"],["-90.127104","29.961418"],["-90.127210","29.961504"],["-90.127300","29.961578"],["-90.127390","29.961651"],["-90.127480","29.961725"],["-90.127570","29.961799"],["-90.127660","29.961873"],["-90.127750","29.961946"],["-90.127840","29.962020"],["-90.127761","29.962100"],["-90.127840","29.962030"],["-90.127920","29.962100"],["-90.128021","29.962181"],["-90.128122","29.962263"],["-90.128224","29.962344"],["-90.128325","29.962425"],["-90.128426","29.962506"],["-90.128527","29.962588"],["-90.128629","29.962669"],["-90.128730","29.962750"],["-90.128840","29.962840"],["-90.128985","29.962955"],["-90.129130","29.963070"],["-90.129275","29.963185"],["-90.129420","29.963300"],["-90.129360","29.963354"],["-90.129420","29.963300"],["-90.129540","29.963410"],["-90.129650","29.963495"],["-90.129760","29.963580"],["-90.129900","29.963690"],["-90.130040","29.963800"],["-90.130200","29.963920"],["-90.130297","29.963988"],["-90.130395","29.964055"],["-90.130492","29.964123"],["-90.130590","29.964190"],["-90.130730","29.964250"],["-90.130900","29.964330"],["-90.131025","29.964380"],["-90.131150","29.964430"],["-90.131265","29.964470"],["-90.131380","29.964510"],["-90.131490","29.964550"],["-90.131570","29.964580"],["-90.131685","29.964615"],["-90.131800","29.964650"],["-90.131911","29.964773"],["-90.131940","29.964670"],["-90.132070","29.964700"],["-90.132260","29.964740"],["-90.132390","29.964750"],["-90.132515","29.964765"],["-90.132640","29.964780"],["-90.132720","29.964790"],["-90.132865","29.964808"],["-90.133010","29.964825"],["-90.133155","29.964843"],["-90.133300","29.964860"],["-90.133450","29.964880"],["-90.133600","29.964900"],["-90.133815","29.964920"],["-90.133937","29.964935"],["-90.134060","29.964950"],["-90.134059","29.964978"],["-90.134060","29.964950"],["-90.134240","29.964970"],["-90.134410","29.964990"],["-90.134587","29.965010"],["-90.134765","29.965030"],["-90.134942","29.965050"],["-90.135120","29.965070"],["-90.135320","29.965090"],["-90.135520","29.965110"],["-90.135700","29.965130"],["-90.135880","29.965150"],["-90.136012","29.965168"],["-90.136145","29.965185"],["-90.136277","29.965203"],["-90.136410","29.965220"],["-90.136580","29.965240"],["-90.136745","29.965260"],["-90.136910","29.965280"],["-90.137100","29.965300"],["-90.137290","29.965320"],["-90.137287","29.965348"],["-90.137290","29.965320"],["-90.137350","29.965330"],["-90.137547","29.965355"],["-90.137745","29.965380"],["-90.137942","29.965405"],["-90.138140","29.965430"],["-90.138138","29.965452"],["-90.138140","29.965430"],["-90.138190","29.965440"],["-90.138260","29.965450"],["-90.138360","29.965460"],["-90.138430","29.965470"],["-90.138500","29.965460"],["-90.138580","29.965460"],["-90.138670","29.965430"],["-90.138760","29.965400"],["-90.138820","29.965360"],["-90.138860","29.965330"],["-90.138910","29.965300"],["-90.138950","29.965260"],["-90.138980","29.965210"],["-90.139030","29.965130"],["-90.139060","29.965060"],["-90.139100","29.964960"],["-90.139170","29.964800"],["-90.139240","29.964640"],["-90.139295","29.964503"],["-90.139350","29.964365"],["-90.139405","29.964228"],["-90.139460","29.964090"],["-90.139500","29.964010"],["-90.139543","29.963903"],["-90.139585","29.963795"],["-90.139628","29.963688"],["-90.139670","29.963580"],["-90.139680","29.963587"],["-90.139670","29.963580"],["-90.139723","29.963453"],["-90.139775","29.963325"],["-90.139828","29.963198"],["-90.139880","29.963070"],["-90.139915","29.962975"],["-90.139950","29.962880"],["-90.140005","29.962780"],["-90.140060","29.962680"],["-90.140120","29.962600"],["-90.140160","29.962560"],["-90.140210","29.962510"],["-90.140260","29.962460"],["-90.140310","29.962430"],["-90.140370","29.962390"],["-90.140430","29.962360"],["-90.140439","29.962375"],["-90.140430","29.962360"],["-90.140460","29.962340"],["-90.140660","29.962290"],["-90.140750","29.962270"],["-90.140830","29.962270"],["-90.140880","29.962270"],["-90.140940","29.962270"],["-90.141050","29.962280"],["-90.141190","29.962305"],["-90.141330","29.962330"],["-90.141545","29.962360"],["-90.141760","29.962390"],["-90.141940","29.962420"],["-90.142120","29.962450"],["-90.142300","29.962478"],["-90.142480","29.962505"],["-90.142660","29.962533"],["-90.142840","29.962560"],["-90.142836","29.962597"],["-90.142840","29.962560"],["-90.142870","29.962570"],["-90.143030","29.962595"],["-90.143190","29.962620"],["-90.143330","29.962640"],["-90.143340","29.962640"],["-90.143450","29.962660"],["-90.143550","29.962670"],["-90.143666","29.962689"],["-90.143782","29.962708"],["-90.143899","29.962726"],["-90.144015","29.962745"],["-90.144131","29.962764"],["-90.144247","29.962783"],["-90.144364","29.962801"],["-90.144480","29.962820"],["-90.144660","29.962845"],["-90.144840","29.962870"],["-90.144970","29.962890"],["-90.145100","29.962910"],["-90.145230","29.962930"],["-90.145360","29.962950"],["-90.145359","29.962980"],["-90.145360","29.962950"],["-90.145510","29.962980"],["-90.145690","29.963010"],["-90.145845","29.963033"],["-90.146000","29.963055"],["-90.146155","29.963078"],["-90.146310","29.963100"],["-90.146520","29.963140"],["-90.146640","29.963155"],["-90.146760","29.963170"],["-90.146880","29.963185"],["-90.147000","29.963200"],["-90.146979","29.963214"],["-90.147000","29.963200"],["-90.147205","29.963235"],["-90.147410","29.963270"],["-90.147620","29.963300"],["-90.147830","29.963330"],["-90.148005","29.963358"],["-90.148180","29.963385"],["-90.148355","29.963413"],["-90.148530","29.963440"],["-90.148650","29.963445"],["-90.148770","29.963450"],["-90.148990","29.963460"],["-90.148993","29.963474"],["-90.148990","29.963460"],["-90.149030","29.963460"],["-90.149195","29.963450"],["-90.149360","29.963440"],["-90.149520","29.963430"],["-90.149680","29.963400"],["-90.149805","29.963375"],["-90.149930","29.963350"],["-90.150095","29.963320"],["-90.150260","29.963290"],["-90.150408","29.963263"],["-90.150555","29.963235"],["-90.150703","29.963208"],["-90.150850","29.963180"],["-90.150998","29.963153"],["-90.151145","29.963125"],["-90.151293","29.963098"],["-90.151440","29.963070"],["-90.151650","29.963030"],["-90.151800","29.963010"],["-90.151920","29.962990"],["-90.151980","29.962990"],["-90.151990","29.962990"],["-90.152080","29.962990"],["-90.152205","29.962990"],["-90.152330","29.962990"],["-90.152339","29.962987"],["-90.152330","29.962990"],["-90.152525","29.962995"],["-90.152720","29.963000"],["-90.152915","29.963005"],["-90.153110","29.963010"],["-90.153275","29.963015"],["-90.153440","29.963020"],["-90.153520","29.963020"],["-90.153740","29.963030"],["-90.153934","29.963031"],["-90.154128","29.963032"],["-90.154322","29.963034"],["-90.154517","29.963035"],["-90.154673","29.963064"],["-90.154700","29.963060"],["-90.154920","29.963060"],["-90.155040","29.963065"],["-90.155160","29.963070"],["-90.155370","29.963075"],["-90.155580","29.963080"],["-90.155790","29.963085"],["-90.156000","29.963090"],["-90.156070","29.963090"],["-90.156250","29.963100"],["-90.156435","29.963100"],["-90.156620","29.963100"],["-90.156820","29.963110"],["-90.156820","29.963097"],["-90.156820","29.963110"],["-90.157010","29.963110"],["-90.157200","29.963120"],["-90.157320","29.963125"],["-90.157440","29.963130"],["-90.157555","29.963135"],["-90.157670","29.963140"],["-90.157785","29.963145"],["-90.157900","29.963150"],["-90.158040","29.963150"],["-90.158180","29.963150"],["-90.158350","29.963160"],["-90.158390","29.963160"],["-90.158535","29.963165"],["-90.158680","29.963170"],["-90.158890","29.963180"],["-90.159090","29.963185"],["-90.159290","29.963190"],["-90.159420","29.963195"],["-90.159550","29.963200"],["-90.159740","29.963210"],["-90.159925","29.963210"],["-90.160110","29.963210"],["-90.160247","29.963215"],["-90.160385","29.963220"],["-90.160522","29.963225"],["-90.160660","29.963230"],["-90.160840","29.963235"],["-90.161020","29.963240"],["-90.161021","29.963281"],["-90.161020","29.963240"],["-90.161080","29.963240"],["-90.161225","29.963245"],["-90.161370","29.963250"],["-90.161515","29.963255"],["-90.161660","29.963260"],["-90.161782","29.963263"],["-90.161905","29.963265"],["-90.162027","29.963268"],["-90.162150","29.963270"],["-90.162280","29.963270"],["-90.162405","29.963275"],["-90.162530","29.963280"],["-90.162725","29.963285"],["-90.162920","29.963290"],["-90.163115","29.963295"],["-90.163310","29.963300"],["-90.163460","29.963310"],["-90.163570","29.963310"],["-90.163750","29.963320"],["-90.163875","29.963325"],["-90.164000","29.963330"],["-90.164190","29.963330"],["-90.164315","29.963333"],["-90.164440","29.963335"],["-90.164565","29.963338"],["-90.164690","29.963340"],["-90.164900","29.963335"],["-90.165110","29.963330"],["-90.165290","29.963310"],["-90.165420","29.963300"],["-90.165550","29.963270"],["-90.165690","29.963240"],["-90.165790","29.963210"],["-90.165900","29.963180"],["-90.166010","29.963150"],["-90.166120","29.963105"],["-90.166230","29.963060"],["-90.166390","29.962990"],["-90.166510","29.962930"],["-90.166610","29.962880"],["-90.166670","29.962850"],["-90.166800","29.962770"],["-90.166857","29.962843"],["-90.166800","29.962770"],["-90.166880","29.962720"],["-90.167005","29.962645"],["-90.167130","29.962570"],["-90.167255","29.962495"],["-90.167380","29.962420"],["-90.167510","29.962345"],["-90.167640","29.962270"],["-90.167820","29.962160"],["-90.167980","29.962060"],["-90.168085","29.962000"],["-90.168190","29.961940"],["-90.168288","29.961883"],["-90.168385","29.961825"],["-90.168483","29.961768"],["-90.168580","29.961710"],["-90.168673","29.961655"],["-90.168765","29.961600"],["-90.168858","29.961545"],["-90.168950","29.961490"],["-90.169043","29.961435"],["-90.169135","29.961380"],["-90.169228","29.961325"],["-90.169320","29.961270"],["-90.169473","29.961180"],["-90.169625","29.961090"],["-90.169778","29.961000"],["-90.169930","29.960910"],["-90.170043","29.960843"],["-90.170155","29.960775"],["-90.170268","29.960708"],["-90.170380","29.960640"],["-90.170390","29.960630"],["-90.170488","29.960573"],["-90.170585","29.960515"],["-90.170683","29.960458"],["-90.170780","29.960400"],["-90.170890","29.960335"],["-90.171000","29.960270"],["-90.171110","29.960205"],["-90.171220","29.960140"],["-90.171380","29.960045"],["-90.171540","29.959950"],["-90.171690","29.959860"],["-90.171840","29.959770"],["-90.171860","29.959890"],["-90.171812","29.959895"],["-90.171860","29.959890"],["-90.171840","29.959770"],["-90.171978","29.959690"],["-90.172115","29.959610"],["-90.172253","29.959530"],["-90.172390","29.959450"],["-90.172400","29.959440"],["-90.172565","29.959345"],["-90.172730","29.959250"],["-90.172828","29.959193"],["-90.172925","29.959135"],["-90.173023","29.959078"],["-90.173120","29.959020"],["-90.173248","29.958943"],["-90.173375","29.958865"],["-90.173503","29.958788"],["-90.173630","29.958710"],["-90.173681","29.958766"],["-90.173630","29.958710"],["-90.173720","29.958660"],["-90.173840","29.958585"],["-90.173960","29.958510"],["-90.174010","29.958490"],["-90.174190","29.958383"],["-90.174370","29.958275"],["-90.174550","29.958168"],["-90.174730","29.958060"],["-90.174860","29.957990"],["-90.174984","29.957915"],["-90.175108","29.957840"],["-90.175231","29.957765"],["-90.175355","29.957690"],["-90.175479","29.957615"],["-90.175603","29.957540"],["-90.175726","29.957465"],["-90.175850","29.957390"],["-90.176025","29.957280"],["-90.176200","29.957170"],["-90.176293","29.957113"],["-90.176385","29.957055"],["-90.176478","29.956998"],["-90.176570","29.956940"],["-90.176725","29.956830"],["-90.176880","29.956720"],["-90.177040","29.956600"],["-90.177200","29.956480"],["-90.177240","29.956440"],["-90.177280","29.956390"],["-90.177340","29.956330"],["-90.177450","29.956170"],["-90.177480","29.956120"],["-90.177570","29.955980"],["-90.177660","29.955840"],["-90.177680","29.955800"],["-90.177775","29.955650"],["-90.177870","29.955500"],["-90.177940","29.955380"],["-90.178000","29.955290"],["-90.178080","29.955160"],["-90.178154","29.955190"],["-90.178080","29.955160"],["-90.178130","29.955080"],["-90.178183","29.954993"],["-90.178235","29.954905"],["-90.178288","29.954818"],["-90.178340","29.954730"],["-90.178370","29.954670"],["-90.178410","29.954600"],["-90.178478","29.954490"],["-90.178545","29.954380"],["-90.178613","29.954270"],["-90.178680","29.954160"],["-90.178710","29.954100"],["-90.178830","29.953940"],["-90.178950","29.953780"],["-90.179035","29.953686"],["-90.179120","29.953593"],["-90.179205","29.953499"],["-90.179290","29.953405"],["-90.179375","29.953311"],["-90.179460","29.953218"],["-90.179545","29.953124"],["-90.179630","29.953030"],["-90.179735","29.952875"],["-90.179840","29.952720"],["-90.179930","29.952565"],["-90.180020","29.952410"],["-90.180120","29.952240"],["-90.180188","29.952120"],["-90.180255","29.952000"],["-90.180323","29.951880"],["-90.180390","29.951760"],["-90.180440","29.951690"],["-90.180515","29.951565"],["-90.180590","29.951440"],["-90.180683","29.951290"],["-90.180775","29.951140"],["-90.180868","29.950990"],["-90.180960","29.950840"],["-90.181025","29.950730"],["-90.181090","29.950620"],["-90.181185","29.950485"],["-90.181280","29.950350"],["-90.181340","29.950255"],["-90.181400","29.950160"],["-90.181500","29.950025"],["-90.181600","29.949890"],["-90.181700","29.949755"],["-90.181800","29.949620"],["-90.181885","29.949485"],["-90.181970","29.949350"],["-90.182030","29.949260"],["-90.182091","29.949291"],["-90.182030","29.949260"],["-90.182070","29.949200"],["-90.182170","29.949058"],["-90.182270","29.948915"],["-90.182370","29.948773"],["-90.182470","29.948630"],["-90.182510","29.948660"],["-90.182660","29.948775"],["-90.182810","29.948890"],["-90.182820","29.948900"],["-90.182906","29.948968"],["-90.182992","29.949035"],["-90.183079","29.949103"],["-90.183165","29.949170"],["-90.183251","29.949238"],["-90.183337","29.949305"],["-90.183424","29.949373"],["-90.183510","29.949440"],["-90.183617","29.949525"],["-90.183725","29.949610"],["-90.183832","29.949695"],["-90.183940","29.949780"],["-90.184080","29.949910"],["-90.184175","29.949985"],["-90.184270","29.950060"],["-90.184360","29.950135"],["-90.184450","29.950210"],["-90.184460","29.950210"],["-90.184595","29.950320"],["-90.184730","29.950430"],["-90.184860","29.950540"],["-90.184900","29.950590"],["-90.184910","29.950620"],["-90.184960","29.950750"],["-90.184960","29.950760"],["-90.185010","29.950920"],["-90.185060","29.951080"],["-90.185095","29.951175"],["-90.185130","29.951270"],["-90.185165","29.951365"],["-90.185200","29.951460"],["-90.185136","29.951481"],["-90.185200","29.951460"],["-90.185220","29.951510"],["-90.185267","29.951648"],["-90.185315","29.951785"],["-90.185362","29.951923"],["-90.185410","29.952060"],["-90.185420","29.952070"],["-90.185450","29.952180"],["-90.185520","29.952353"],["-90.185590","29.952525"],["-90.185660","29.952698"],["-90.185730","29.952870"],["-90.185770","29.952970"],["-90.185810","29.953070"],["-90.185875","29.953240"],["-90.185940","29.953410"],["-90.185995","29.953560"],["-90.186050","29.953710"],["-90.186102","29.953855"],["-90.186155","29.954000"],["-90.186207","29.954145"],["-90.186260","29.954290"],["-90.186305","29.954405"],["-90.186350","29.954520"],["-90.186385","29.954618"],["-90.186420","29.954715"],["-90.186455","29.954813"],["-90.186490","29.954910"],["-90.186525","29.955008"],["-90.186560","29.955105"],["-90.186595","29.955203"],["-90.186630","29.955300"],["-90.186665","29.955395"],["-90.186700","29.955490"],["-90.186735","29.955585"],["-90.186770","29.955680"],["-90.186822","29.955818"],["-90.186875","29.955955"],["-90.186927","29.956093"],["-90.186980","29.956230"],["-90.187020","29.956350"],["-90.187060","29.956470"],["-90.187100","29.956573"],["-90.187140","29.956675"],["-90.187180","29.956778"],["-90.187220","29.956880"],["-90.187250","29.956980"],["-90.187200","29.957130"],["-90.187159","29.957031"],["-90.187200","29.957130"],["-90.187300","29.957100"],["-90.187450","29.957060"],["-90.187580","29.957020"],["-90.187750","29.956975"],["-90.187920","29.956930"],["-90.188010","29.956910"],["-90.188208","29.956855"],["-90.188405","29.956800"],["-90.188603","29.956745"],["-90.188800","29.956690"],["-90.188998","29.956635"],["-90.189195","29.956580"],["-90.189393","29.956525"],["-90.189590","29.956470"],["-90.189724","29.956433"],["-90.189858","29.956395"],["-90.189991","29.956358"],["-90.190125","29.956320"],["-90.190259","29.956283"],["-90.190393","29.956245"],["-90.190526","29.956208"],["-90.190660","29.956170"],["-90.190793","29.956133"],["-90.190925","29.956095"],["-90.191058","29.956058"],["-90.191190","29.956020"],["-90.191323","29.955983"],["-90.191455","29.955945"],["-90.191588","29.955908"],["-90.191720","29.955870"],["-90.191888","29.955824"],["-90.192055","29.955778"],["-90.192223","29.955731"],["-90.192390","29.955685"],["-90.192558","29.955639"],["-90.192725","29.955593"],["-90.192893","29.955546"],["-90.193060","29.955500"],["-90.193010","29.955370"],["-90.192960","29.955240"],["-90.192910","29.955110"],["-90.192860","29.954980"],["-90.192820","29.954875"],["-90.192780","29.954770"],["-90.192780","29.954760"],["-90.192720","29.954580"],["-90.192680","29.954485"],["-90.192640","29.954390"],["-90.192585","29.954245"],["-90.192530","29.954100"],["-90.192485","29.953980"],["-90.192440","29.953860"],["-90.192385","29.953705"],["-90.192330","29.953550"],["-90.192289","29.953436"],["-90.192247","29.953323"],["-90.192206","29.953209"],["-90.192165","29.953095"],["-90.192124","29.952981"],["-90.192082","29.952868"],["-90.192041","29.952754"],["-90.192000","29.952640"],["-90.191980","29.952580"],["-90.191930","29.952448"],["-90.191880","29.952315"],["-90.191830","29.952183"],["-90.191780","29.952050"],["-90.191740","29.951938"],["-90.191700","29.951825"],["-90.191660","29.951713"],["-90.191620","29.951600"],["-90.191570","29.951455"],["-90.191520","29.951310"],["-90.191480","29.951205"],["-90.191440","29.951100"],["-90.191400","29.950995"],["-90.191360","29.950890"],["-90.191315","29.950775"],["-90.191270","29.950660"],["-90.191260","29.950630"],["-90.191195","29.950450"],["-90.191130","29.950270"],["-90.191065","29.950090"],["-90.191000","29.949910"],["-90.190955","29.949805"],["-90.190910","29.949700"],["-90.190880","29.949630"],["-90.190850","29.949580"],["-90.190830","29.949540"],["-90.190790","29.949480"],["-90.190720","29.949390"],["-90.190630","29.949290"],["-90.190540","29.949190"],["-90.190530","29.949180"],["-90.190551","29.949161"],["-90.190530","29.949180"],["-90.190430","29.949100"],["-90.190347","29.949035"],["-90.190265","29.948970"],["-90.190182","29.948905"],["-90.190100","29.948840"],["-90.189997","29.948758"],["-90.189895","29.948675"],["-90.189792","29.948593"],["-90.189690","29.948510"],["-90.189540","29.948390"],["-90.189400","29.948283"],["-90.189260","29.948175"],["-90.189120","29.948068"],["-90.188980","29.947960"],["-90.188886","29.947883"],["-90.188792","29.947805"],["-90.188699","29.947728"],["-90.188605","29.947650"],["-90.188511","29.947573"],["-90.188417","29.947495"],["-90.188324","29.947418"],["-90.188230","29.947340"],["-90.188120","29.947250"],["-90.188010","29.947161"],["-90.187900","29.947073"],["-90.187790","29.946984"],["-90.187680","29.946895"],["-90.187570","29.946806"],["-90.187460","29.946718"],["-90.187350","29.946629"],["-90.187240","29.946540"],["-90.187095","29.946430"],["-90.186950","29.946320"],["-90.186862","29.946253"],["-90.186775","29.946185"],["-90.186687","29.946118"],["-90.186600","29.946050"],["-90.186460","29.945930"],["-90.186370","29.945865"],["-90.186280","29.945800"],["-90.186195","29.945735"],["-90.186110","29.945670"],["-90.186080","29.945640"],["-90.185965","29.945548"],["-90.185850","29.945455"],["-90.185735","29.945363"],["-90.185620","29.945270"],["-90.185535","29.945200"],["-90.185450","29.945130"],["-90.185533","29.945116"],["-90.185450","29.945130"],["-90.185357","29.945060"],["-90.185265","29.944990"],["-90.185172","29.944920"],["-90.185080","29.944850"],["-90.184980","29.944780"],["-90.184960","29.944810"],["-90.184883","29.944920"],["-90.184805","29.945030"],["-90.184728","29.945140"],["-90.184650","29.945250"],["-90.184595","29.945335"],["-90.184540","29.945420"],["-90.184445","29.945555"],["-90.184350","29.945690"],["-90.184270","29.945810"],["-90.184190","29.945930"],["-90.184130","29.946020"],["-90.184030","29.946160"],["-90.183925","29.946315"],["-90.183820","29.946470"],["-90.183715","29.946625"],["-90.183610","29.946780"],["-90.183520","29.946920"],["-90.183430","29.947045"],["-90.183340","29.947170"],["-90.183310","29.947210"],["-90.183210","29.947370"],["-90.183110","29.947505"],["-90.183010","29.947640"],["-90.182930","29.947755"],["-90.182850","29.947870"],["-90.182840","29.947890"],["-90.182765","29.947995"],["-90.182632","29.948098"]]},{"type":"MultiPoint","coordinates":[["-90.120454","29.956163"],["-90.111376","29.964655"],["-90.116649","29.959724"],["-90.118150","29.958302"],["-90.113604","29.962562"],["-90.074818","29.954823"],["-90.077740","29.955981"],["-90.079570","29.956828"],["-90.081744","29.957818"],["-90.082669","29.958228"],["-90.084604","29.959129"],["-90.086673","29.960129"],["-90.088826","29.961112"],["-90.090336","29.961802"],["-90.092139","29.962632"],["-90.094086","29.963520"],["-90.096207","29.964485"],["-90.097861","29.965259"],["-90.099394","29.965927"],["-90.100314","29.966352"],["-90.102077","29.967359"],["-90.103934","29.968634"],["-90.105439","29.969661"],["-90.106300","29.969419"],["-90.110015","29.965861"],["-90.114962","29.961263"],["-90.122928","29.958146"],["-90.124530","29.959460"],["-90.126135","29.960759"],["-90.129360","29.963354"],["-90.127761","29.962100"],["-90.131911","29.964773"],["-90.145359","29.962980"],["-90.134059","29.964978"],["-90.137287","29.965348"],["-90.138138","29.965452"],["-90.139680","29.963587"],["-90.140439","29.962375"],["-90.142836","29.962597"],["-90.156588","29.962576"],["-90.146979","29.963214"],["-90.148993","29.963474"],["-90.152339","29.962987"],["-90.154673","29.963064"],["-90.161021","29.963281"]]},{"type":"LineString","coordinates":[["-90.074818","29.954823"],["-90.074800","29.954810"],["-90.074900","29.954700"],["-90.075032","29.954763"],["-90.075165","29.954825"],["-90.075297","29.954888"],["-90.075430","29.954950"],["-90.075535","29.955000"],["-90.075640","29.955050"],["-90.075830","29.955140"],["-90.075920","29.955190"],["-90.076080","29.955265"],["-90.076240","29.955340"],["-90.076340","29.955385"],["-90.076440","29.955430"],["-90.076565","29.955485"],["-90.076690","29.955540"],["-90.076855","29.955615"],["-90.077020","29.955690"],["-90.077195","29.955770"],["-90.077370","29.955850"],["-90.077545","29.955930"],["-90.077740","29.955981"],["-90.077720","29.956010"],["-90.077790","29.956040"],["-90.077940","29.956105"],["-90.078090","29.956170"],["-90.078250","29.956240"],["-90.078430","29.956320"],["-90.078610","29.956400"],["-90.078680","29.956420"],["-90.078820","29.956490"],["-90.078950","29.956550"],["-90.079130","29.956630"],["-90.079255","29.956685"],["-90.079380","29.956740"],["-90.079570","29.956830"],["-90.079570","29.956828"],["-90.079570","29.956830"],["-90.079690","29.956890"],["-90.079710","29.956900"],["-90.079750","29.956920"],["-90.079800","29.956940"],["-90.079950","29.957000"],["-90.080092","29.957065"],["-90.080235","29.957130"],["-90.080377","29.957195"],["-90.080520","29.957260"],["-90.080670","29.957325"],["-90.080820","29.957390"],["-90.080960","29.957460"],["-90.081140","29.957540"],["-90.081260","29.957600"],["-90.081380","29.957660"],["-90.081430","29.957680"],["-90.081585","29.957750"],["-90.081744","29.957818"],["-90.081750","29.957810"],["-90.081840","29.957850"],["-90.081945","29.957898"],["-90.082050","29.957945"],["-90.082155","29.957993"],["-90.082260","29.958040"],["-90.082365","29.958088"],["-90.082470","29.958135"],["-90.082575","29.958183"],["-90.082680","29.958230"],["-90.082669","29.958228"],["-90.082680","29.958230"],["-90.082780","29.958275"],["-90.082880","29.958320"],["-90.082930","29.958340"],["-90.082980","29.958370"],["-90.083110","29.958430"],["-90.083180","29.958460"],["-90.083280","29.958505"],["-90.083380","29.958550"],["-90.083540","29.958625"],["-90.083700","29.958700"],["-90.083850","29.958770"],["-90.083965","29.958825"],["-90.084080","29.958880"],["-90.084190","29.958930"],["-90.084300","29.958980"],["-90.084455","29.959050"],["-90.084610","29.959120"],["-90.084604","29.959129"],["-90.084610","29.959120"],["-90.084730","29.959170"],["-90.084830","29.959215"],["-90.084930","29.959260"],["-90.085042","29.959311"],["-90.085155","29.959363"],["-90.085267","29.959414"],["-90.085380","29.959465"],["-90.085492","29.959516"],["-90.085605","29.959568"],["-90.085717","29.959619"],["-90.085830","29.959670"],["-90.085985","29.959745"],["-90.086140","29.959820"],["-90.086255","29.959873"],["-90.086370","29.959925"],["-90.086485","29.959978"],["-90.086600","29.960030"],["-90.086710","29.960080"],["-90.086673","29.960129"],["-90.086710","29.960080"],["-90.086820","29.960130"],["-90.086947","29.960188"],["-90.087075","29.960245"],["-90.087202","29.960303"],["-90.087330","29.960360"],["-90.087460","29.960418"],["-90.087590","29.960475"],["-90.087720","29.960533"],["-90.087850","29.960590"],["-90.087960","29.960641"],["-90.088070","29.960693"],["-90.088180","29.960744"],["-90.088290","29.960795"],["-90.088400","29.960846"],["-90.088510","29.960898"],["-90.088620","29.960949"],["-90.088730","29.961000"],["-90.088860","29.961060"],["-90.088826","29.961112"],["-90.088860","29.961060"],["-90.088980","29.961120"],["-90.089155","29.961203"],["-90.089330","29.961285"],["-90.089505","29.961368"],["-90.089680","29.961450"],["-90.089820","29.961500"],["-90.089957","29.961563"],["-90.090095","29.961625"],["-90.090232","29.961688"],["-90.090370","29.961750"],["-90.090336","29.961802"],["-90.090370","29.961750"],["-90.090520","29.961820"],["-90.090720","29.961900"],["-90.090832","29.961953"],["-90.090945","29.962005"],["-90.091057","29.962058"],["-90.091170","29.962110"],["-90.091282","29.962163"],["-90.091395","29.962215"],["-90.091507","29.962268"],["-90.091620","29.962320"],["-90.091760","29.962380"],["-90.091900","29.962440"],["-90.092040","29.962500"],["-90.092180","29.962560"],["-90.092139","29.962632"],["-90.092180","29.962560"],["-90.092330","29.962630"],["-90.092447","29.962684"],["-90.092565","29.962738"],["-90.092682","29.962791"],["-90.092800","29.962845"],["-90.092917","29.962899"],["-90.093035","29.962953"],["-90.093152","29.963006"],["-90.093270","29.963060"],["-90.093377","29.963109"],["-90.093485","29.963158"],["-90.093592","29.963206"],["-90.093700","29.963255"],["-90.093807","29.963304"],["-90.093915","29.963353"],["-90.094022","29.963401"],["-90.094130","29.963450"],["-90.094086","29.963520"],["-90.094130","29.963450"],["-90.094230","29.963490"],["-90.094350","29.963546"],["-90.094470","29.963603"],["-90.094590","29.963659"],["-90.094710","29.963715"],["-90.094830","29.963771"],["-90.094950","29.963828"],["-90.095070","29.963884"],["-90.095190","29.963940"],["-90.095312","29.963995"],["-90.095435","29.964050"],["-90.095557","29.964105"],["-90.095680","29.964160"],["-90.095805","29.964215"],["-90.095930","29.964270"],["-90.096090","29.964340"],["-90.096250","29.964410"],["-90.096207","29.964485"],["-90.096250","29.964410"],["-90.096427","29.964488"],["-90.096605","29.964565"],["-90.096782","29.964643"],["-90.096960","29.964720"],["-90.097127","29.964798"],["-90.097295","29.964875"],["-90.097462","29.964953"],["-90.097630","29.965030"],["-90.097775","29.965095"],["-90.097920","29.965160"],["-90.097861","29.965259"],["-90.097920","29.965160"],["-90.098050","29.965220"],["-90.098150","29.965270"],["-90.098250","29.965320"],["-90.098350","29.965370"],["-90.098450","29.965420"],["-90.098560","29.965460"],["-90.098670","29.965510"],["-90.098780","29.965560"],["-90.098890","29.965610"],["-90.099000","29.965660"],["-90.099110","29.965710"],["-90.099220","29.965760"],["-90.099330","29.965810"],["-90.099440","29.965860"],["-90.099394","29.965927"],["-90.099440","29.965860"],["-90.099530","29.965900"],["-90.099634","29.965948"],["-90.099737","29.965995"],["-90.099841","29.966043"],["-90.099945","29.966090"],["-90.100049","29.966138"],["-90.100152","29.966185"],["-90.100256","29.966233"],["-90.100360","29.966280"],["-90.100314","29.966352"],["-90.100360","29.966280"],["-90.100480","29.966340"],["-90.100599","29.966394"],["-90.100717","29.966448"],["-90.100836","29.966501"],["-90.100955","29.966555"],["-90.101074","29.966609"],["-90.101192","29.966663"],["-90.101311","29.966716"],["-90.101430","29.966770"],["-90.101580","29.966850"],["-90.101670","29.966890"],["-90.101720","29.966980"],["-90.101770","29.967070"],["-90.101855","29.967135"],["-90.101940","29.967200"],["-90.102025","29.967265"],["-90.102110","29.967330"],["-90.102077","29.967359"],["-90.102110","29.967330"],["-90.102170","29.967390"],["-90.102289","29.967466"],["-90.102407","29.967543"],["-90.102526","29.967619"],["-90.102645","29.967695"],["-90.102764","29.967771"],["-90.102882","29.967848"],["-90.103001","29.967924"],["-90.103120","29.968000"],["-90.103270","29.968100"],["-90.103420","29.968200"],["-90.103590","29.968320"],["-90.103745","29.968425"],["-90.103900","29.968530"],["-90.103980","29.968590"],["-90.103934","29.968634"],["-90.103980","29.968590"],["-90.104060","29.968650"],["-90.104184","29.968733"],["-90.104307","29.968815"],["-90.104431","29.968898"],["-90.104555","29.968980"],["-90.104679","29.969063"],["-90.104802","29.969145"],["-90.104926","29.969228"],["-90.105050","29.969310"],["-90.105210","29.969420"],["-90.105350","29.969510"],["-90.105490","29.969600"],["-90.105439","29.969661"],["-90.105490","29.969600"],["-90.105630","29.969700"],["-90.105760","29.969790"],["-90.105863","29.969700"],["-90.105965","29.969610"],["-90.106068","29.969520"],["-90.106170","29.969430"],["-90.106240","29.969370"],["-90.106300","29.969419"],["-90.106240","29.969370"],["-90.106310","29.969310"],["-90.106340","29.969270"],["-90.106425","29.969185"],["-90.106510","29.969100"],["-90.106600","29.969010"],["-90.106750","29.968870"],["-90.106900","29.968730"],["-90.106980","29.968660"],["-90.107115","29.968525"],["-90.107250","29.968390"],["-90.107270","29.968370"],["-90.107415","29.968230"],["-90.107560","29.968090"],["-90.107610","29.968040"],["-90.107710","29.967940"],["-90.107840","29.967830"],["-90.107840","29.967820"],["-90.107850","29.967820"],["-90.107910","29.967770"],["-90.107980","29.967700"],["-90.108120","29.967570"],["-90.108270","29.967430"],["-90.108400","29.967310"],["-90.108410","29.967310"],["-90.108450","29.967270"],["-90.108510","29.967220"],["-90.108570","29.967170"],["-90.108600","29.967130"],["-90.108705","29.967035"],["-90.108810","29.966940"],["-90.108900","29.966860"],["-90.109040","29.966730"],["-90.109110","29.966660"],["-90.109180","29.966600"],["-90.109260","29.966540"],["-90.109340","29.966468"],["-90.109420","29.966395"],["-90.109500","29.966323"],["-90.109580","29.966250"],["-90.109720","29.966115"],["-90.109860","29.965980"],["-90.110000","29.965840"],["-90.110015","29.965861"],["-90.110000","29.965840"],["-90.110085","29.965755"],["-90.110170","29.965670"],["-90.110255","29.965595"],["-90.110340","29.965520"],["-90.110485","29.965385"],["-90.110630","29.965250"],["-90.110735","29.965145"],["-90.110840","29.965040"],["-90.110860","29.965020"],["-90.110980","29.964910"],["-90.111100","29.964800"],["-90.111250","29.964660"],["-90.111310","29.964600"],["-90.111376","29.964655"],["-90.111310","29.964600"],["-90.111370","29.964540"],["-90.111505","29.964420"],["-90.111640","29.964300"],["-90.111735","29.964210"],["-90.111830","29.964120"],["-90.111890","29.964070"],["-90.112010","29.963955"],["-90.112130","29.963840"],["-90.112260","29.963720"],["-90.112360","29.963625"],["-90.112460","29.963530"],["-90.112565","29.963428"],["-90.112670","29.963325"],["-90.112775","29.963223"],["-90.112880","29.963120"],["-90.112990","29.963020"],["-90.113110","29.962910"],["-90.113230","29.962800"],["-90.113350","29.962690"],["-90.113470","29.962580"],["-90.113540","29.962510"],["-90.113604","29.962562"],["-90.113540","29.962510"],["-90.113640","29.962420"],["-90.113780","29.962280"],["-90.113840","29.962230"],["-90.113930","29.962150"],["-90.113990","29.962090"],["-90.114090","29.961998"],["-90.114190","29.961905"],["-90.114290","29.961813"],["-90.114390","29.961720"],["-90.114510","29.961610"],["-90.114600","29.961530"],["-90.114690","29.961440"],["-90.114790","29.961360"],["-90.114850","29.961300"],["-90.114920","29.961230"],["-90.114962","29.961263"],["-90.114920","29.961230"],["-90.114970","29.961180"],["-90.115120","29.961040"],["-90.115270","29.960900"],["-90.115375","29.960800"],["-90.115480","29.960700"],["-90.115585","29.960600"],["-90.115690","29.960500"],["-90.115795","29.960405"],["-90.115900","29.960310"],["-90.115985","29.960230"],["-90.116070","29.960150"],["-90.116155","29.960070"],["-90.116240","29.959990"],["-90.116325","29.959910"],["-90.116410","29.959830"],["-90.116495","29.959750"],["-90.116580","29.959670"],["-90.116649","29.959724"],["-90.116580","29.959670"],["-90.116650","29.959610"],["-90.116725","29.959535"],["-90.116800","29.959460"],["-90.116920","29.959350"],["-90.117040","29.959240"],["-90.117133","29.959155"],["-90.117225","29.959070"],["-90.117318","29.958985"],["-90.117410","29.958900"],["-90.117495","29.958819"],["-90.117580","29.958738"],["-90.117665","29.958656"],["-90.117750","29.958575"],["-90.117835","29.958494"],["-90.117920","29.958413"],["-90.118005","29.958331"],["-90.118090","29.958250"],["-90.118150","29.958302"],["-90.118090","29.958250"],["-90.118160","29.958190"],["-90.118253","29.958105"],["-90.118345","29.958020"],["-90.118438","29.957935"],["-90.118530","29.957850"],["-90.118630","29.957758"],["-90.118730","29.957665"],["-90.118830","29.957573"],["-90.118930","29.957480"],["-90.119024","29.957393"],["-90.119118","29.957305"],["-90.119211","29.957218"],["-90.119305","29.957130"],["-90.119399","29.957043"],["-90.119493","29.956955"],["-90.119586","29.956868"],["-90.119680","29.956780"],["-90.119775","29.956695"],["-90.119870","29.956610"],["-90.119960","29.956520"],["-90.120095","29.956400"],["-90.120230","29.956280"],["-90.120310","29.956200"],["-90.120400","29.956120"],["-90.120454","29.956163"],["-90.120400","29.956120"],["-90.120470","29.956050"],["-90.120610","29.956160"],["-90.120765","29.956285"],["-90.120920","29.956410"],["-90.121040","29.956510"],["-90.121120","29.956590"],["-90.121250","29.956680"],["-90.121390","29.956790"],["-90.121496","29.956876"],["-90.121602","29.956963"],["-90.121709","29.957049"],["-90.121815","29.957135"],["-90.121921","29.957221"],["-90.122027","29.957308"],["-90.122134","29.957394"],["-90.122240","29.957480"],["-90.122334","29.957556"],["-90.122427","29.957633"],["-90.122543","29.957731"],["-90.122660","29.957829"],["-90.122776","29.957928"],["-90.122892","29.958026"],["-90.122928","29.958146"],["-90.123040","29.958184"],["-90.123152","29.958221"],["-90.123239","29.958291"],["-90.123325","29.958362"],["-90.123412","29.958432"],["-90.123498","29.958502"],["-90.123585","29.958573"],["-90.123671","29.958643"],["-90.123758","29.958713"],["-90.123844","29.958783"],["-90.123931","29.958854"],["-90.124017","29.958924"],["-90.124104","29.958994"],["-90.124190","29.959065"],["-90.124277","29.959135"],["-90.124363","29.959205"],["-90.124450","29.959276"],["-90.124536","29.959346"],["-90.124530","29.959460"],["-90.124729","29.959513"],["-90.124812","29.959579"],["-90.124895","29.959646"],["-90.124978","29.959712"],["-90.125061","29.959778"],["-90.125143","29.959844"],["-90.125226","29.959911"],["-90.125309","29.959977"],["-90.125392","29.960043"],["-90.125475","29.960109"],["-90.125557","29.960175"],["-90.125640","29.960242"],["-90.125723","29.960308"],["-90.125806","29.960374"],["-90.125889","29.960440"],["-90.125972","29.960507"],["-90.126054","29.960573"],["-90.126095","29.960666"],["-90.126135","29.960759"],["-90.126245","29.960787"],["-90.126355","29.960814"],["-90.126438","29.960881"],["-90.126521","29.960947"],["-90.126679","29.961074"],["-90.126785","29.961160"],["-90.126892","29.961246"],["-90.126998","29.961332"],["-90.127104","29.961418"],["-90.127210","29.961504"],["-90.127300","29.961578"],["-90.127390","29.961651"],["-90.127480","29.961725"],["-90.127570","29.961799"],["-90.127660","29.961873"],["-90.127750","29.961946"],["-90.127840","29.962020"],["-90.127761","29.962100"],["-90.127840","29.962030"],["-90.127920","29.962100"],["-90.128021","29.962181"],["-90.128122","29.962263"],["-90.128224","29.962344"],["-90.128325","29.962425"],["-90.128426","29.962506"],["-90.128527","29.962588"],["-90.128629","29.962669"],["-90.128730","29.962750"],["-90.128840","29.962840"],["-90.128985","29.962955"],["-90.129130","29.963070"],["-90.129275","29.963185"],["-90.129420","29.963300"],["-90.129360","29.963354"],["-90.129420","29.963300"],["-90.129540","29.963410"],["-90.129650","29.963495"],["-90.129760","29.963580"],["-90.129900","29.963690"],["-90.130040","29.963800"],["-90.130200","29.963920"],["-90.130297","29.963988"],["-90.130395","29.964055"],["-90.130492","29.964123"],["-90.130590","29.964190"],["-90.130730","29.964250"],["-90.130900","29.964330"],["-90.131025","29.964380"],["-90.131150","29.964430"],["-90.131265","29.964470"],["-90.131380","29.964510"],["-90.131490","29.964550"],["-90.131570","29.964580"],["-90.131685","29.964615"],["-90.131800","29.964650"],["-90.131911","29.964773"],["-90.131940","29.964670"],["-90.132070","29.964700"],["-90.132260","29.964740"],["-90.132390","29.964750"],["-90.132515","29.964765"],["-90.132640","29.964780"],["-90.132720","29.964790"],["-90.132865","29.964808"],["-90.133010","29.964825"],["-90.133155","29.964843"],["-90.133300","29.964860"],["-90.133450","29.964880"],["-90.133600","29.964900"],["-90.133815","29.964920"],["-90.133937","29.964935"],["-90.134060","29.964950"],["-90.134059","29.964978"],["-90.134060","29.964950"],["-90.134240","29.964970"],["-90.134410","29.964990"],["-90.134587","29.965010"],["-90.134765","29.965030"],["-90.134942","29.965050"],["-90.135120","29.965070"],["-90.135320","29.965090"],["-90.135520","29.965110"],["-90.135700","29.965130"],["-90.135880","29.965150"],["-90.136012","29.965168"],["-90.136145","29.965185"],["-90.136277","29.965203"],["-90.136410","29.965220"],["-90.136580","29.965240"],["-90.136745","29.965260"],["-90.136910","29.965280"],["-90.137100","29.965300"],["-90.137290","29.965320"],["-90.137287","29.965348"],["-90.137290","29.965320"],["-90.137350","29.965330"],["-90.137547","29.965355"],["-90.137745","29.965380"],["-90.137942","29.965405"],["-90.138140","29.965430"],["-90.138138","29.965452"],["-90.138140","29.965430"],["-90.138190","29.965440"],["-90.138260","29.965450"],["-90.138360","29.965460"],["-90.138430","29.965470"],["-90.138500","29.965460"],["-90.138580","29.965460"],["-90.138670","29.965430"],["-90.138760","29.965400"],["-90.138820","29.965360"],["-90.138860","29.965330"],["-90.138910","29.965300"],["-90.138950","29.965260"],["-90.138980","29.965210"],["-90.139030","29.965130"],["-90.139060","29.965060"],["-90.139100","29.964960"],["-90.139170","29.964800"],["-90.139240","29.964640"],["-90.139295","29.964503"],["-90.139350","29.964365"],["-90.139405","29.964228"],["-90.139460","29.964090"],["-90.139500","29.964010"],["-90.139543","29.963903"],["-90.139585","29.963795"],["-90.139628","29.963688"],["-90.139670","29.963580"],["-90.139680","29.963587"],["-90.139670","29.963580"],["-90.139723","29.963453"],["-90.139775","29.963325"],["-90.139828","29.963198"],["-90.139880","29.963070"],["-90.139915","29.962975"],["-90.139950","29.962880"],["-90.140005","29.962780"],["-90.140060","29.962680"],["-90.140120","29.962600"],["-90.140160","29.962560"],["-90.140210","29.962510"],["-90.140260","29.962460"],["-90.140310","29.962430"],["-90.140370","29.962390"],["-90.140430","29.962360"],["-90.140439","29.962375"],["-90.140430","29.962360"],["-90.140460","29.962340"],["-90.140660","29.962290"],["-90.140750","29.962270"],["-90.140830","29.962270"],["-90.140880","29.962270"],["-90.140940","29.962270"],["-90.141050","29.962280"],["-90.141190","29.962305"],["-90.141330","29.962330"],["-90.141545","29.962360"],["-90.141760","29.962390"],["-90.141940","29.962420"],["-90.142120","29.962450"],["-90.142300","29.962478"],["-90.142480","29.962505"],["-90.142660","29.962533"],["-90.142840","29.962560"],["-90.142836","29.962597"],["-90.142840","29.962560"],["-90.142870","29.962570"],["-90.143030","29.962595"],["-90.143190","29.962620"],["-90.143330","29.962640"],["-90.143340","29.962640"],["-90.143450","29.962660"],["-90.143550","29.962670"],["-90.143666","29.962689"],["-90.143782","29.962708"],["-90.143899","29.962726"],["-90.144015","29.962745"],["-90.144131","29.962764"],["-90.144247","29.962783"],["-90.144364","29.962801"],["-90.144480","29.962820"],["-90.144660","29.962845"],["-90.144840","29.962870"],["-90.144970","29.962890"],["-90.145100","29.962910"],["-90.145230","29.962930"],["-90.145360","29.962950"],["-90.145359","29.962980"],["-90.145360","29.962950"],["-90.145510","29.962980"],["-90.145690","29.963010"],["-90.145845","29.963033"],["-90.146000","29.963055"],["-90.146155","29.963078"],["-90.146310","29.963100"],["-90.146520","29.963140"],["-90.146640","29.963155"],["-90.146760","29.963170"],["-90.146880","29.963185"],["-90.147000","29.963200"],["-90.146979","29.963214"],["-90.147000","29.963200"],["-90.147205","29.963235"],["-90.147410","29.963270"],["-90.147620","29.963300"],["-90.147830","29.963330"],["-90.148005","29.963358"],["-90.148180","29.963385"],["-90.148355","29.963413"],["-90.148530","29.963440"],["-90.148650","29.963445"],["-90.148770","29.963450"],["-90.148990","29.963460"],["-90.148993","29.963474"],["-90.148990","29.963460"],["-90.149030","29.963460"],["-90.149195","29.963450"],["-90.149360","29.963440"],["-90.149520","29.963430"],["-90.149680","29.963400"],["-90.149805","29.963375"],["-90.149930","29.963350"],["-90.150095","29.963320"],["-90.150260","29.963290"],["-90.150408","29.963263"],["-90.150555","29.963235"],["-90.150703","29.963208"],["-90.150850","29.963180"],["-90.150998","29.963153"],["-90.151145","29.963125"],["-90.151293","29.963098"],["-90.151440","29.963070"],["-90.151650","29.963030"],["-90.151800","29.963010"],["-90.151920","29.962990"],["-90.151980","29.962990"],["-90.151990","29.962990"],["-90.152080","29.962990"],["-90.152205","29.962990"],["-90.152330","29.962990"],["-90.152339","29.962987"],["-90.152330","29.962990"],["-90.152525","29.962995"],["-90.152720","29.963000"],["-90.152915","29.963005"],["-90.153110","29.963010"],["-90.153275","29.963015"],["-90.153440","29.963020"],["-90.153520","29.963020"],["-90.153740","29.963030"],["-90.153934","29.963031"],["-90.154128","29.963032"],["-90.154322","29.963034"],["-90.154517","29.963035"],["-90.154673","29.963064"],["-90.154823","29.963064"],["-90.154973","29.963065"],["-90.155155","29.963077"],["-90.155337","29.963088"],["-90.155526","29.963090"],["-90.155714","29.963092"],["-90.155903","29.963093"],["-90.156091","29.963095"],["-90.156279","29.963097"],["-90.156468","29.963099"],["-90.156656","29.963100"],["-90.156845","29.963102"],["-90.156989","29.963106"],["-90.157133","29.963110"],["-90.157277","29.963114"],["-90.157421","29.963118"],["-90.157566","29.963122"],["-90.157710","29.963126"],["-90.157854","29.963131"],["-90.157998","29.963135"],["-90.158179","29.963140"],["-90.158360","29.963146"],["-90.158540","29.963151"],["-90.158721","29.963157"],["-90.158902","29.963162"],["-90.159082","29.963168"],["-90.159263","29.963173"],["-90.159444","29.963179"],["-90.159625","29.963184"],["-90.159805","29.963190"],["-90.159930","29.963194"],["-90.160055","29.963199"],["-90.160181","29.963203"],["-90.160306","29.963208"],["-90.160431","29.963212"],["-90.160556","29.963216"],["-90.160681","29.963221"],["-90.160806","29.963225"],["-90.160914","29.963253"],["-90.161021","29.963281"],["-90.161053","29.963374"],["-90.161085","29.963467"],["-90.161078","29.963645"],["-90.161070","29.963824"],["-90.161062","29.964003"],["-90.161055","29.964181"],["-90.161047","29.964360"],["-90.161039","29.964538"],["-90.161031","29.964717"],["-90.161024","29.964896"],["-90.161016","29.965074"],["-90.161008","29.965253"],["-90.161001","29.965432"],["-90.160993","29.965610"],["-90.160985","29.965789"],["-90.160977","29.965968"],["-90.160970","29.966146"],["-90.160962","29.966325"],["-90.160835","29.966319"],["-90.160709","29.966313"],["-90.160582","29.966307"],["-90.160456","29.966300"],["-90.160329","29.966294"],["-90.160203","29.966288"],["-90.160076","29.966282"],["-90.159949","29.966276"],["-90.159823","29.966270"],["-90.159696","29.966264"],["-90.159570","29.966258"],["-90.159443","29.966252"],["-90.159317","29.966246"],["-90.159190","29.966239"],["-90.159064","29.966233"],["-90.158937","29.966227"],["-90.158810","29.966221"],["-90.158684","29.966215"],["-90.158557","29.966209"],["-90.158431","29.966203"],["-90.158304","29.966197"],["-90.158178","29.966191"],["-90.158051","29.966185"],["-90.157924","29.966178"],["-90.157798","29.966172"],["-90.157671","29.966166"],["-90.157545","29.966160"],["-90.157418","29.966154"],["-90.157292","29.966148"],["-90.157165","29.966142"],["-90.157038","29.966136"],["-90.156912","29.966130"],["-90.156916","29.966016"],["-90.156920","29.965903"],["-90.156924","29.965790"],["-90.156928","29.965677"],["-90.156932","29.965563"],["-90.156936","29.965450"],["-90.156940","29.965337"],["-90.156944","29.965223"],["-90.156948","29.965110"],["-90.156952","29.964997"],["-90.156956","29.964884"],["-90.156960","29.964770"],["-90.156964","29.964657"],["-90.156968","29.964544"],["-90.156972","29.964431"],["-90.156976","29.964317"],["-90.156980","29.964204"],["-90.156984","29.964091"],["-90.156988","29.963977"],["-90.156992","29.963864"],["-90.156996","29.963751"],["-90.157000","29.963638"],["-90.157004","29.963524"],["-90.157008","29.963411"],["-90.157012","29.963298"],["-90.157016","29.963185"],["-90.157020","29.963071"],["-90.157024","29.962958"],["-90.157028","29.962845"],["-90.157032","29.962732"],["-90.157036","29.962618"],["-90.157040","29.962505"],["-90.157050","29.962390"],["-90.157050","29.962230"],["-90.157060","29.962050"],["-90.156840","29.962030"],["-90.156660","29.962020"],["-90.156655","29.962205"],["-90.156650","29.962390"],["-90.156650","29.962500"],["-90.156588","29.962576"]]}]}},{"type":"Feature","properties":{"route_id":"31","agency_id":"1","route_short_name":"31","route_long_name":"Leonidas - Gentilly","route_type":"3","route_color":"#7a4028","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.116917","29.921232"],["-90.118792","29.921581"],["-90.121360","29.922207"],["-90.124259","29.923237"],["-90.126330","29.924031"],["-90.127122","29.924415"],["-90.129469","29.925553"],["-90.105636","29.969574"],["-90.104824","29.970349"],["-90.103209","29.971835"],["-90.096675","29.978041"],["-90.063885","29.994724"],["-90.037659","30.004976"],["-90.038827","30.004250"],["-90.058686","29.999945"],["-90.057845","30.000580"],["-90.055150","30.002253"],["-90.052710","30.002793"],["-90.048077","30.002902"],["-90.040197","30.003695"],["-90.036415","30.005189"],["-90.050402","30.002754"],["-90.123476","29.917490"],["-90.062539","29.995623"],["-90.061633","29.996680"],["-90.060741","29.997768"],["-90.056410","30.001653"],["-90.046402","30.002610"],["-90.044514","30.002621"],["-90.120426","29.916765"],["-90.118538","29.916365"],["-90.132489","29.927158"],["-90.111244","29.966639"],["-90.132659","29.944272"],["-90.131134","29.945708"],["-90.129633","29.947090"],["-90.129055","29.949458"],["-90.130759","29.950848"],["-90.132361","29.952126"],["-90.130974","29.953475"],["-90.129466","29.954893"],["-90.127944","29.956310"],["-90.126454","29.957727"],["-90.124924","29.959131"],["-90.123177","29.960783"],["-90.121644","29.962214"],["-90.120887","29.962922"],["-90.121094","29.964176"],["-90.119422","29.965699"],["-90.117931","29.967107"],["-90.116438","29.968507"],["-90.115188","29.969671"],["-90.112832","29.967871"],["-90.106479","29.968766"],["-90.100654","29.974308"],["-90.059476","29.999326"],["-90.098829","29.975957"],["-90.094046","29.980478"],["-90.090919","29.983267"],["-90.037678","30.004652"],["-90.075561","29.988445"],["-90.095520","29.979038"],["-90.084195","29.988890"],["-90.080853","29.988735"],["-90.078622","29.988619"],["-90.073096","29.989178"],["-90.070813","29.990576"],["-90.069531","29.991348"],["-90.127478","29.916532"],["-90.115623","29.918397"]]},{"type":"LineString","coordinates":[["-90.127478","29.916532"],["-90.127446","29.916659"],["-90.127414","29.916786"],["-90.127359","29.916903"],["-90.127304","29.917020"],["-90.127249","29.917137"],["-90.127194","29.917254"],["-90.127139","29.917371"],["-90.127084","29.917487"],["-90.127029","29.917604"],["-90.126974","29.917721"],["-90.126919","29.917838"],["-90.126864","29.917955"],["-90.126809","29.918072"],["-90.126754","29.918189"],["-90.126698","29.918306"],["-90.126643","29.918423"],["-90.126588","29.918539"],["-90.126533","29.918656"],["-90.126354","29.918591"],["-90.126174","29.918526"],["-90.125994","29.918461"],["-90.125814","29.918396"],["-90.125635","29.918331"],["-90.125455","29.918266"],["-90.125275","29.918201"],["-90.125096","29.918136"],["-90.124916","29.918070"],["-90.124736","29.918005"],["-90.124556","29.917940"],["-90.124377","29.917875"],["-90.124197","29.917810"],["-90.124017","29.917745"],["-90.123838","29.917680"],["-90.123658","29.917615"],["-90.123567","29.917552"],["-90.123476","29.917490"],["-90.123256","29.917471"],["-90.123094","29.917433"],["-90.122932","29.917396"],["-90.122770","29.917358"],["-90.122608","29.917320"],["-90.122446","29.917283"],["-90.122285","29.917245"],["-90.122123","29.917208"],["-90.121961","29.917170"],["-90.121799","29.917132"],["-90.121637","29.917095"],["-90.121475","29.917057"],["-90.121314","29.917020"],["-90.121152","29.916982"],["-90.120990","29.916944"],["-90.120828","29.916907"],["-90.120666","29.916869"],["-90.120546","29.916817"],["-90.120426","29.916765"],["-90.120214","29.916750"],["-90.120001","29.916734"],["-90.119848","29.916704"],["-90.119695","29.916673"],["-90.119542","29.916642"],["-90.119390","29.916611"],["-90.119237","29.916580"],["-90.119084","29.916550"],["-90.118931","29.916519"],["-90.118778","29.916488"],["-90.118658","29.916426"],["-90.118538","29.916365"],["-90.118520","29.916440"],["-90.118360","29.916410"],["-90.118238","29.916413"],["-90.118115","29.916415"],["-90.117993","29.916418"],["-90.117870","29.916420"],["-90.117655","29.916425"],["-90.117440","29.916430"],["-90.117310","29.916430"],["-90.117175","29.916435"],["-90.117040","29.916440"],["-90.116900","29.916443"],["-90.116760","29.916445"],["-90.116620","29.916448"],["-90.116480","29.916450"],["-90.116345","29.916450"],["-90.116210","29.916450"],["-90.116160","29.916590"],["-90.116110","29.916730"],["-90.116075","29.916895"],["-90.116040","29.917060"],["-90.115987","29.917239"],["-90.115934","29.917419"],["-90.115881","29.917598"],["-90.115828","29.917777"],["-90.115797","29.917932"],["-90.115766","29.918086"],["-90.115735","29.918241"],["-90.115705","29.918395"],["-90.115623","29.918397"],["-90.115610","29.918509"],["-90.115597","29.918622"],["-90.115584","29.918734"],["-90.115570","29.918846"],["-90.115542","29.918954"],["-90.115513","29.919061"],["-90.115484","29.919169"],["-90.115455","29.919276"],["-90.115426","29.919384"],["-90.115397","29.919492"],["-90.115369","29.919599"],["-90.115340","29.919707"],["-90.115311","29.919814"],["-90.115282","29.919922"],["-90.115253","29.920029"],["-90.115224","29.920137"],["-90.115196","29.920244"],["-90.115167","29.920352"],["-90.115138","29.920459"],["-90.115109","29.920567"],["-90.115023","29.920709"],["-90.114937","29.920850"],["-90.115057","29.920871"],["-90.115176","29.920892"],["-90.115295","29.920912"],["-90.115414","29.920933"],["-90.115533","29.920953"],["-90.115652","29.920974"],["-90.115771","29.920995"],["-90.115890","29.921015"],["-90.116009","29.921036"],["-90.116128","29.921057"],["-90.116247","29.921077"],["-90.116366","29.921098"],["-90.116485","29.921119"],["-90.116604","29.921139"],["-90.116723","29.921160"],["-90.116842","29.921180"],["-90.116917","29.921232"],["-90.117048","29.921220"],["-90.117180","29.921208"],["-90.117368","29.921243"],["-90.117555","29.921278"],["-90.117743","29.921313"],["-90.117931","29.921348"],["-90.118119","29.921383"],["-90.118306","29.921418"],["-90.118494","29.921452"],["-90.118682","29.921487"],["-90.118792","29.921581"],["-90.118914","29.921585"],["-90.119036","29.921590"],["-90.119226","29.921627"],["-90.119417","29.921665"],["-90.119607","29.921703"],["-90.119798","29.921741"],["-90.119988","29.921778"],["-90.120179","29.921816"],["-90.120369","29.921854"],["-90.120559","29.921892"],["-90.120742","29.921943"],["-90.120924","29.921994"],["-90.121107","29.922045"],["-90.121289","29.922096"],["-90.121360","29.922207"],["-90.121475","29.922191"],["-90.121589","29.922175"],["-90.121696","29.922211"],["-90.121802","29.922246"],["-90.121908","29.922282"],["-90.122014","29.922317"],["-90.122121","29.922353"],["-90.122227","29.922388"],["-90.122333","29.922424"],["-90.122440","29.922459"],["-90.122546","29.922494"],["-90.122652","29.922530"],["-90.122758","29.922565"],["-90.122865","29.922601"],["-90.122971","29.922636"],["-90.123077","29.922672"],["-90.123184","29.922707"],["-90.123290","29.922743"],["-90.123407","29.922792"],["-90.123525","29.922841"],["-90.123642","29.922891"],["-90.123759","29.922940"],["-90.123877","29.922990"],["-90.123994","29.923039"],["-90.124111","29.923088"],["-90.124229","29.923138"],["-90.124259","29.923237"],["-90.124475","29.923268"],["-90.124586","29.923312"],["-90.124697","29.923356"],["-90.124807","29.923400"],["-90.124918","29.923443"],["-90.125029","29.923487"],["-90.125139","29.923531"],["-90.125250","29.923575"],["-90.125361","29.923619"],["-90.125471","29.923663"],["-90.125582","29.923707"],["-90.125692","29.923751"],["-90.125803","29.923795"],["-90.125914","29.923838"],["-90.126024","29.923882"],["-90.126135","29.923926"],["-90.126246","29.923970"],["-90.126330","29.924031"],["-90.126541","29.924068"],["-90.126651","29.924140"],["-90.126761","29.924212"],["-90.126916","29.924284"],["-90.127072","29.924356"],["-90.127122","29.924415"],["-90.127140","29.924390"],["-90.127180","29.924410"],["-90.127289","29.924465"],["-90.127397","29.924520"],["-90.127506","29.924575"],["-90.127615","29.924630"],["-90.127724","29.924685"],["-90.127832","29.924740"],["-90.127941","29.924795"],["-90.128050","29.924850"],["-90.128159","29.924905"],["-90.128267","29.924960"],["-90.128376","29.925015"],["-90.128485","29.925070"],["-90.128594","29.925125"],["-90.128702","29.925180"],["-90.128811","29.925235"],["-90.128920","29.925290"],["-90.129032","29.925345"],["-90.129145","29.925400"],["-90.129257","29.925455"],["-90.129370","29.925510"],["-90.129460","29.925560"],["-90.129469","29.925553"],["-90.129460","29.925560"],["-90.129570","29.925615"],["-90.129680","29.925670"],["-90.129809","29.925734"],["-90.129937","29.925798"],["-90.130066","29.925861"],["-90.130195","29.925925"],["-90.130324","29.925989"],["-90.130452","29.926053"],["-90.130581","29.926116"],["-90.130710","29.926180"],["-90.130832","29.926243"],["-90.130955","29.926305"],["-90.131077","29.926368"],["-90.131200","29.926430"],["-90.131310","29.926490"],["-90.131465","29.926568"],["-90.131620","29.926645"],["-90.131775","29.926723"],["-90.131930","29.926800"],["-90.131990","29.926810"],["-90.132070","29.926830"],["-90.132150","29.926880"],["-90.132265","29.926950"],["-90.132380","29.927020"],["-90.132489","29.927158"],["-90.132530","29.927100"],["-90.132600","29.927140"],["-90.132715","29.927210"],["-90.132830","29.927280"],["-90.132945","29.927350"],["-90.133060","29.927420"],["-90.133200","29.927505"],["-90.133340","29.927590"],["-90.133460","29.927675"],["-90.133580","29.927760"],["-90.133590","29.927850"],["-90.133595","29.928010"],["-90.133600","29.928170"],["-90.133600","29.928270"],["-90.133600","29.928370"],["-90.133600","29.928470"],["-90.133600","29.928570"],["-90.133600","29.928610"],["-90.133610","29.928660"],["-90.133610","29.928790"],["-90.133610","29.928890"],["-90.133610","29.928990"],["-90.133610","29.929148"],["-90.133610","29.929305"],["-90.133610","29.929463"],["-90.133610","29.929620"],["-90.133610","29.929778"],["-90.133610","29.929935"],["-90.133610","29.930093"],["-90.133610","29.930250"],["-90.133611","29.930366"],["-90.133612","29.930483"],["-90.133614","29.930599"],["-90.133615","29.930715"],["-90.133616","29.930831"],["-90.133617","29.930948"],["-90.133619","29.931064"],["-90.133620","29.931180"],["-90.133621","29.931349"],["-90.133622","29.931518"],["-90.133624","29.931686"],["-90.133625","29.931855"],["-90.133626","29.932024"],["-90.133627","29.932193"],["-90.133629","29.932361"],["-90.133630","29.932530"],["-90.133630","29.932680"],["-90.133630","29.932780"],["-90.133630","29.932880"],["-90.133630","29.932980"],["-90.133630","29.933080"],["-90.133630","29.933220"],["-90.133630","29.933410"],["-90.133630","29.933508"],["-90.133630","29.933605"],["-90.133630","29.933703"],["-90.133630","29.933800"],["-90.133630","29.933910"],["-90.133630","29.934000"],["-90.133635","29.934185"],["-90.133640","29.934370"],["-90.133640","29.934550"],["-90.133650","29.934700"],["-90.133660","29.934840"],["-90.133680","29.935000"],["-90.133690","29.935110"],["-90.133710","29.935240"],["-90.133720","29.935320"],["-90.133735","29.935430"],["-90.133750","29.935540"],["-90.133770","29.935710"],["-90.133790","29.935880"],["-90.133800","29.935910"],["-90.133817","29.936050"],["-90.133835","29.936190"],["-90.133852","29.936330"],["-90.133870","29.936470"],["-90.133880","29.936520"],["-90.133900","29.936710"],["-90.133915","29.936830"],["-90.133930","29.936950"],["-90.133950","29.937080"],["-90.133965","29.937208"],["-90.133980","29.937335"],["-90.133995","29.937463"],["-90.134010","29.937590"],["-90.134030","29.937690"],["-90.134047","29.937824"],["-90.134065","29.937958"],["-90.134082","29.938091"],["-90.134100","29.938225"],["-90.134117","29.938359"],["-90.134135","29.938493"],["-90.134152","29.938626"],["-90.134170","29.938760"],["-90.134180","29.938860"],["-90.134195","29.938965"],["-90.134210","29.939070"],["-90.134226","29.939200"],["-90.134242","29.939330"],["-90.134259","29.939460"],["-90.134275","29.939590"],["-90.134291","29.939720"],["-90.134307","29.939850"],["-90.134324","29.939980"],["-90.134340","29.940110"],["-90.134355","29.940215"],["-90.134370","29.940320"],["-90.134385","29.940425"],["-90.134400","29.940530"],["-90.134410","29.940680"],["-90.134430","29.940833"],["-90.134450","29.940985"],["-90.134470","29.941138"],["-90.134490","29.941290"],["-90.134509","29.941435"],["-90.134527","29.941580"],["-90.134546","29.941725"],["-90.134565","29.941870"],["-90.134584","29.942015"],["-90.134602","29.942160"],["-90.134621","29.942305"],["-90.134640","29.942450"],["-90.134650","29.942480"],["-90.134530","29.942590"],["-90.134410","29.942700"],["-90.134320","29.942780"],["-90.134225","29.942865"],["-90.134130","29.942950"],["-90.134070","29.943000"],["-90.134030","29.943030"],["-90.134000","29.943070"],["-90.133865","29.943200"],["-90.133730","29.943330"],["-90.133590","29.943470"],["-90.133455","29.943600"],["-90.133320","29.943730"],["-90.133244","29.943803"],["-90.133168","29.943875"],["-90.133091","29.943948"],["-90.133015","29.944020"],["-90.132939","29.944093"],["-90.132863","29.944165"],["-90.132786","29.944238"],["-90.132710","29.944310"],["-90.132659","29.944272"],["-90.132519","29.944405"],["-90.132439","29.944482"],["-90.132299","29.944615"],["-90.132158","29.944747"],["-90.132060","29.944840"],["-90.131924","29.944976"],["-90.131840","29.945060"],["-90.131700","29.945192"],["-90.131559","29.945325"],["-90.131490","29.945390"],["-90.131345","29.945519"],["-90.131201","29.945648"],["-90.131134","29.945708"],["-90.131002","29.945847"],["-90.130870","29.945986"],["-90.130822","29.946037"],["-90.130683","29.946171"],["-90.130544","29.946304"],["-90.130405","29.946438"],["-90.130340","29.946500"],["-90.130199","29.946632"],["-90.130059","29.946764"],["-90.129918","29.946897"],["-90.129755","29.947008"],["-90.129633","29.947090"],["-90.129514","29.947238"],["-90.129447","29.947321"],["-90.129305","29.947452"],["-90.129163","29.947583"],["-90.129080","29.947660"],["-90.128934","29.947788"],["-90.128819","29.947889"],["-90.128680","29.948023"],["-90.128541","29.948157"],["-90.128403","29.948290"],["-90.128289","29.948400"],["-90.128150","29.948533"],["-90.128070","29.948610"],["-90.128231","29.948723"],["-90.128270","29.948750"],["-90.128414","29.948880"],["-90.128558","29.949009"],["-90.128701","29.949139"],["-90.128845","29.949269"],["-90.128989","29.949399"],["-90.129055","29.949458"],["-90.129225","29.949561"],["-90.129311","29.949613"],["-90.129463","29.949736"],["-90.129614","29.949859"],["-90.129765","29.949983"],["-90.129916","29.950106"],["-90.130020","29.950190"],["-90.130165","29.950319"],["-90.130306","29.950436"],["-90.130446","29.950553"],["-90.130594","29.950672"],["-90.130742","29.950791"],["-90.130759","29.950848"],["-90.130907","29.950910"],["-90.130997","29.950982"],["-90.131087","29.951054"],["-90.131177","29.951126"],["-90.131267","29.951198"],["-90.131357","29.951270"],["-90.131447","29.951342"],["-90.131537","29.951414"],["-90.131627","29.951486"],["-90.131717","29.951558"],["-90.131807","29.951630"],["-90.131897","29.951702"],["-90.131987","29.951774"],["-90.132077","29.951846"],["-90.132167","29.951918"],["-90.132257","29.951990"],["-90.132347","29.952063"],["-90.132361","29.952126"],["-90.132350","29.952281"],["-90.132202","29.952420"],["-90.132054","29.952560"],["-90.131907","29.952699"],["-90.131759","29.952838"],["-90.131611","29.952978"],["-90.131463","29.953117"],["-90.131315","29.953256"],["-90.131167","29.953396"],["-90.130974","29.953475"],["-90.130878","29.953606"],["-90.130782","29.953737"],["-90.130700","29.953817"],["-90.130619","29.953898"],["-90.130537","29.953978"],["-90.130455","29.954059"],["-90.130373","29.954139"],["-90.130291","29.954220"],["-90.130209","29.954300"],["-90.130056","29.954422"],["-90.129904","29.954544"],["-90.129751","29.954666"],["-90.129598","29.954787"],["-90.129466","29.954893"],["-90.129356","29.955045"],["-90.129292","29.955133"],["-90.129154","29.955268"],["-90.129016","29.955402"],["-90.128879","29.955537"],["-90.128740","29.955671"],["-90.128690","29.955720"],["-90.128537","29.955841"],["-90.128383","29.955963"],["-90.128230","29.956084"],["-90.128077","29.956205"],["-90.127944","29.956310"],["-90.127832","29.956461"],["-90.127720","29.956613"],["-90.127676","29.956672"],["-90.127534","29.956803"],["-90.127391","29.956934"],["-90.127249","29.957065"],["-90.127190","29.957120"],["-90.127040","29.957244"],["-90.126889","29.957368"],["-90.126739","29.957492"],["-90.126589","29.957616"],["-90.126454","29.957727"],["-90.126324","29.957867"],["-90.126193","29.958007"],["-90.126138","29.958066"],["-90.125992","29.958194"],["-90.125846","29.958322"],["-90.125701","29.958450"],["-90.125555","29.958578"],["-90.125424","29.958708"],["-90.125341","29.958804"],["-90.125257","29.958901"],["-90.125174","29.958997"],["-90.125090","29.959093"],["-90.124924","29.959131"],["-90.124827","29.959266"],["-90.124730","29.959402"],["-90.124643","29.959484"],["-90.124556","29.959567"],["-90.124468","29.959649"],["-90.124381","29.959732"],["-90.124294","29.959814"],["-90.124207","29.959897"],["-90.124120","29.959979"],["-90.124033","29.960062"],["-90.123945","29.960144"],["-90.123858","29.960227"],["-90.123771","29.960309"],["-90.123684","29.960392"],["-90.123597","29.960474"],["-90.123510","29.960557"],["-90.123422","29.960639"],["-90.123335","29.960722"],["-90.123177","29.960783"],["-90.123097","29.960880"],["-90.123017","29.960978"],["-90.122938","29.961075"],["-90.122858","29.961173"],["-90.122722","29.961299"],["-90.122586","29.961426"],["-90.122449","29.961552"],["-90.122313","29.961679"],["-90.122177","29.961806"],["-90.122041","29.961932"],["-90.121905","29.962059"],["-90.121769","29.962186"],["-90.121644","29.962214"],["-90.121554","29.962342"],["-90.121463","29.962469"],["-90.121319","29.962582"],["-90.121175","29.962696"],["-90.121031","29.962809"],["-90.120887","29.962922"],["-90.120964","29.963078"],["-90.121055","29.963154"],["-90.121145","29.963230"],["-90.121236","29.963306"],["-90.121326","29.963382"],["-90.121417","29.963459"],["-90.121507","29.963535"],["-90.121598","29.963611"],["-90.121688","29.963687"],["-90.121540","29.963809"],["-90.121391","29.963931"],["-90.121243","29.964054"],["-90.121094","29.964176"],["-90.120994","29.964310"],["-90.120894","29.964444"],["-90.120811","29.964521"],["-90.120727","29.964598"],["-90.120644","29.964675"],["-90.120560","29.964752"],["-90.120477","29.964829"],["-90.120394","29.964906"],["-90.120310","29.964983"],["-90.120227","29.965060"],["-90.120143","29.965137"],["-90.120060","29.965214"],["-90.119976","29.965291"],["-90.119893","29.965368"],["-90.119809","29.965445"],["-90.119726","29.965522"],["-90.119642","29.965599"],["-90.119559","29.965676"],["-90.119422","29.965699"],["-90.119378","29.965794"],["-90.119333","29.965890"],["-90.119252","29.965965"],["-90.119170","29.966039"],["-90.119088","29.966114"],["-90.119006","29.966189"],["-90.118925","29.966264"],["-90.118843","29.966339"],["-90.118761","29.966414"],["-90.118680","29.966489"],["-90.118598","29.966563"],["-90.118516","29.966638"],["-90.118434","29.966713"],["-90.118353","29.966788"],["-90.118271","29.966863"],["-90.118189","29.966938"],["-90.118107","29.967013"],["-90.118026","29.967087"],["-90.117931","29.967107"],["-90.117844","29.967230"],["-90.117757","29.967352"],["-90.117618","29.967484"],["-90.117479","29.967615"],["-90.117339","29.967746"],["-90.117200","29.967878"],["-90.117060","29.968009"],["-90.116921","29.968140"],["-90.116781","29.968271"],["-90.116642","29.968403"],["-90.116540","29.968455"],["-90.116438","29.968507"],["-90.116356","29.968607"],["-90.116275","29.968707"],["-90.116193","29.968807"],["-90.116111","29.968907"],["-90.116009","29.969001"],["-90.115907","29.969096"],["-90.115805","29.969190"],["-90.115703","29.969284"],["-90.115601","29.969378"],["-90.115500","29.969472"],["-90.115398","29.969566"],["-90.115296","29.969660"],["-90.115188","29.969671"],["-90.115059","29.969649"],["-90.114931","29.969628"],["-90.114778","29.969502"],["-90.114625","29.969377"],["-90.114472","29.969251"],["-90.114319","29.969126"],["-90.114236","29.969059"],["-90.114152","29.968992"],["-90.114068","29.968925"],["-90.113984","29.968858"],["-90.113901","29.968791"],["-90.113817","29.968724"],["-90.113733","29.968657"],["-90.113650","29.968590"],["-90.113566","29.968523"],["-90.113482","29.968456"],["-90.113398","29.968389"],["-90.113315","29.968322"],["-90.113231","29.968255"],["-90.113147","29.968188"],["-90.113062","29.968120"],["-90.112977","29.968053"],["-90.112891","29.967985"],["-90.112806","29.967917"],["-90.112832","29.967871"],["-90.112790","29.967910"],["-90.112710","29.967840"],["-90.112550","29.967710"],["-90.112390","29.967580"],["-90.112265","29.967480"],["-90.112140","29.967380"],["-90.112015","29.967280"],["-90.111890","29.967180"],["-90.111800","29.967108"],["-90.111710","29.967035"],["-90.111620","29.966963"],["-90.111530","29.966890"],["-90.111490","29.966850"],["-90.111480","29.966840"],["-90.111360","29.966740"],["-90.111330","29.966720"],["-90.111240","29.966650"],["-90.111244","29.966639"],["-90.111240","29.966650"],["-90.111120","29.966550"],["-90.111030","29.966480"],["-90.110970","29.966430"],["-90.110890","29.966370"],["-90.110810","29.966300"],["-90.110730","29.966220"],["-90.110670","29.966160"],["-90.110620","29.966100"],["-90.110510","29.965970"],["-90.110490","29.965950"],["-90.110480","29.965940"],["-90.110400","29.965850"],["-90.110360","29.965810"],["-90.110280","29.965720"],["-90.110210","29.965650"],["-90.110050","29.965550"],["-90.109990","29.965590"],["-90.109890","29.965680"],["-90.109840","29.965730"],["-90.109750","29.965810"],["-90.109730","29.965830"],["-90.109700","29.965860"],["-90.109620","29.965935"],["-90.109540","29.966010"],["-90.109460","29.966090"],["-90.109370","29.966175"],["-90.109280","29.966260"],["-90.109210","29.966330"],["-90.109080","29.966450"],["-90.108990","29.966530"],["-90.108900","29.966610"],["-90.108800","29.966700"],["-90.108705","29.966793"],["-90.108610","29.966885"],["-90.108515","29.966978"],["-90.108420","29.967070"],["-90.108390","29.967100"],["-90.108330","29.967150"],["-90.108330","29.967160"],["-90.108320","29.967160"],["-90.108300","29.967180"],["-90.108290","29.967190"],["-90.108250","29.967240"],["-90.108220","29.967260"],["-90.108100","29.967385"],["-90.107980","29.967510"],["-90.107870","29.967610"],["-90.107860","29.967620"],["-90.107810","29.967670"],["-90.107800","29.967680"],["-90.107790","29.967690"],["-90.107740","29.967740"],["-90.107730","29.967740"],["-90.107720","29.967750"],["-90.107700","29.967770"],["-90.107630","29.967840"],["-90.107620","29.967850"],["-90.107610","29.967860"],["-90.107600","29.967870"],["-90.107550","29.967920"],["-90.107520","29.967940"],["-90.107510","29.967950"],["-90.107460","29.968000"],["-90.107380","29.968075"],["-90.107300","29.968150"],["-90.107270","29.968170"],["-90.107170","29.968270"],["-90.107140","29.968300"],["-90.107130","29.968310"],["-90.107060","29.968360"],["-90.107020","29.968400"],["-90.106920","29.968490"],["-90.106820","29.968580"],["-90.106710","29.968680"],["-90.106700","29.968690"],["-90.106620","29.968760"],["-90.106479","29.968766"],["-90.106459","29.968933"],["-90.106356","29.969025"],["-90.106254","29.969117"],["-90.106152","29.969208"],["-90.106050","29.969300"],["-90.105910","29.969430"],["-90.105805","29.969530"],["-90.105700","29.969630"],["-90.105636","29.969574"],["-90.105700","29.969630"],["-90.105630","29.969700"],["-90.105503","29.969820"],["-90.105375","29.969940"],["-90.105248","29.970060"],["-90.105120","29.970180"],["-90.105005","29.970290"],["-90.104890","29.970400"],["-90.104824","29.970349"],["-90.104890","29.970400"],["-90.104820","29.970460"],["-90.104720","29.970554"],["-90.104620","29.970648"],["-90.104520","29.970741"],["-90.104420","29.970835"],["-90.104320","29.970929"],["-90.104220","29.971023"],["-90.104120","29.971116"],["-90.104020","29.971210"],["-90.103940","29.971285"],["-90.103860","29.971360"],["-90.103715","29.971490"],["-90.103570","29.971620"],["-90.103430","29.971760"],["-90.103290","29.971900"],["-90.103209","29.971835"],["-90.103290","29.971900"],["-90.103190","29.971990"],["-90.103120","29.972060"],["-90.103018","29.972153"],["-90.102915","29.972245"],["-90.102813","29.972338"],["-90.102710","29.972430"],["-90.102630","29.972510"],["-90.102500","29.972635"],["-90.102370","29.972760"],["-90.102300","29.972810"],["-90.102260","29.972850"],["-90.102190","29.972910"],["-90.102120","29.972980"],["-90.101980","29.973100"],["-90.101870","29.973210"],["-90.101765","29.973310"],["-90.101660","29.973410"],["-90.101555","29.973510"],["-90.101450","29.973610"],["-90.101380","29.973670"],["-90.101245","29.973795"],["-90.101110","29.973920"],["-90.100985","29.974035"],["-90.100860","29.974150"],["-90.100765","29.974235"],["-90.100670","29.974320"],["-90.100654","29.974308"],["-90.100670","29.974320"],["-90.100600","29.974380"],["-90.100520","29.974450"],["-90.100490","29.974480"],["-90.100480","29.974490"],["-90.100440","29.974530"],["-90.100430","29.974540"],["-90.100335","29.974625"],["-90.100240","29.974710"],["-90.100158","29.974788"],["-90.100075","29.974865"],["-90.099993","29.974943"],["-90.099910","29.975020"],["-90.099840","29.975080"],["-90.099710","29.975200"],["-90.099580","29.975320"],["-90.099435","29.975465"],["-90.099290","29.975610"],["-90.099185","29.975708"],["-90.099080","29.975805"],["-90.098955","29.975881"],["-90.098829","29.975957"],["-90.098809","29.976092"],["-90.098662","29.976229"],["-90.098514","29.976366"],["-90.098367","29.976504"],["-90.098220","29.976641"],["-90.098072","29.976778"],["-90.097925","29.976915"],["-90.097777","29.977053"],["-90.097630","29.977190"],["-90.097480","29.977330"],["-90.097380","29.977420"],["-90.097350","29.977450"],["-90.097260","29.977530"],["-90.097170","29.977610"],["-90.097080","29.977690"],["-90.096990","29.977770"],["-90.096840","29.977910"],["-90.096690","29.978050"],["-90.096675","29.978041"],["-90.096690","29.978050"],["-90.096670","29.978080"],["-90.096573","29.978171"],["-90.096475","29.978263"],["-90.096378","29.978354"],["-90.096280","29.978445"],["-90.096183","29.978536"],["-90.096085","29.978628"],["-90.095988","29.978719"],["-90.095890","29.978810"],["-90.095740","29.978950"],["-90.095590","29.979090"],["-90.095520","29.979038"],["-90.095590","29.979090"],["-90.095520","29.979150"],["-90.095385","29.979280"],["-90.095250","29.979410"],["-90.095135","29.979505"],["-90.095020","29.979600"],["-90.094890","29.979730"],["-90.094790","29.979820"],["-90.094663","29.979943"],["-90.094535","29.980065"],["-90.094408","29.980188"],["-90.094280","29.980310"],["-90.094240","29.980340"],["-90.094160","29.980420"],["-90.094080","29.980500"],["-90.094046","29.980478"],["-90.094080","29.980500"],["-90.094030","29.980550"],["-90.093900","29.980670"],["-90.093770","29.980790"],["-90.093643","29.980909"],["-90.093515","29.981028"],["-90.093388","29.981146"],["-90.093260","29.981265"],["-90.093133","29.981384"],["-90.093005","29.981503"],["-90.092878","29.981621"],["-90.092750","29.981740"],["-90.092630","29.981870"],["-90.092550","29.981960"],["-90.092460","29.982035"],["-90.092370","29.982110"],["-90.092269","29.982205"],["-90.092168","29.982300"],["-90.092066","29.982395"],["-90.091965","29.982490"],["-90.091864","29.982585"],["-90.091763","29.982680"],["-90.091661","29.982775"],["-90.091560","29.982870"],["-90.091510","29.982910"],["-90.091430","29.982970"],["-90.091380","29.983020"],["-90.091320","29.983070"],["-90.091280","29.983110"],["-90.091260","29.983120"],["-90.091220","29.983150"],["-90.091170","29.983180"],["-90.091100","29.983230"],["-90.090960","29.983320"],["-90.090919","29.983267"],["-90.090960","29.983320"],["-90.090940","29.983330"],["-90.090850","29.983370"],["-90.090760","29.983410"],["-90.090730","29.983420"],["-90.090568","29.983510"],["-90.090500","29.983540"],["-90.090318","29.983627"],["-90.090146","29.983727"],["-90.090089","29.983760"],["-90.089936","29.983882"],["-90.089889","29.983920"],["-90.089780","29.984073"],["-90.089740","29.984130"],["-90.089671","29.984300"],["-90.089650","29.984350"],["-90.089592","29.984523"],["-90.089537","29.984696"],["-90.089510","29.984780"],["-90.089484","29.984958"],["-90.089470","29.985050"],["-90.089449","29.985229"],["-90.089427","29.985408"],["-90.089406","29.985587"],["-90.089390","29.985720"],["-90.089329","29.985892"],["-90.089247","29.986057"],["-90.089170","29.986210"],["-90.089070","29.986360"],["-90.088945","29.986503"],["-90.088796","29.986629"],["-90.088647","29.986754"],["-90.088510","29.986870"],["-90.088393","29.987018"],["-90.088360","29.987060"],["-90.088277","29.987225"],["-90.088215","29.987397"],["-90.088238","29.987575"],["-90.088256","29.987755"],["-90.088270","29.987890"],["-90.088284","29.988069"],["-90.088290","29.988140"],["-90.088260","29.988310"],["-90.088229","29.988488"],["-90.088200","29.988650"],["-90.088110","29.988759"],["-90.088002","29.988913"],["-90.087895","29.989067"],["-90.087850","29.989179"],["-90.087680","29.989260"],["-90.087472","29.989266"],["-90.087350","29.989270"],["-90.087150","29.989220"],["-90.086970","29.989190"],["-90.086890","29.989140"],["-90.086740","29.989110"],["-90.086533","29.989102"],["-90.086325","29.989095"],["-90.086118","29.989087"],["-90.085930","29.989080"],["-90.085724","29.989057"],["-90.085518","29.989035"],["-90.085312","29.989012"],["-90.085106","29.988990"],["-90.084900","29.988967"],["-90.084694","29.988945"],["-90.084488","29.988922"],["-90.084282","29.988900"],["-90.084195","29.988890"],["-90.083990","29.988919"],["-90.083785","29.988947"],["-90.083695","29.988960"],["-90.083488","29.988950"],["-90.083280","29.988940"],["-90.083073","29.988928"],["-90.082866","29.988916"],["-90.082659","29.988904"],["-90.082451","29.988892"],["-90.082244","29.988884"],["-90.082037","29.988875"],["-90.081829","29.988866"],["-90.081622","29.988857"],["-90.081414","29.988848"],["-90.081207","29.988839"],["-90.081010","29.988781"],["-90.080853","29.988735"],["-90.080648","29.988761"],["-90.080442","29.988788"],["-90.080355","29.988799"],["-90.080148","29.988789"],["-90.079970","29.988780"],["-90.079763","29.988767"],["-90.079556","29.988754"],["-90.079349","29.988741"],["-90.079141","29.988731"],["-90.078934","29.988720"],["-90.078739","29.988657"],["-90.078622","29.988619"],["-90.078417","29.988647"],["-90.078212","29.988674"],["-90.078126","29.988686"],["-90.077919","29.988674"],["-90.077850","29.988670"],["-90.077643","29.988659"],["-90.077435","29.988648"],["-90.077228","29.988636"],["-90.077090","29.988629"],["-90.076883","29.988620"],["-90.076675","29.988611"],["-90.076468","29.988604"],["-90.076260","29.988597"],["-90.076053","29.988590"],["-90.075846","29.988576"],["-90.075662","29.988492"],["-90.075561","29.988445"],["-90.075355","29.988421"],["-90.075149","29.988397"],["-90.075060","29.988386"],["-90.074870","29.988314"],["-90.074730","29.988260"],["-90.074555","29.988357"],["-90.074450","29.988420"],["-90.074280","29.988523"],["-90.074110","29.988627"],["-90.073940","29.988730"],["-90.073771","29.988834"],["-90.073680","29.988890"],["-90.073590","29.988960"],["-90.073519","29.989040"],["-90.073325","29.989103"],["-90.073130","29.989167"],["-90.073096","29.989178"],["-90.072972","29.989322"],["-90.072882","29.989426"],["-90.072713","29.989531"],["-90.072544","29.989635"],["-90.072489","29.989670"],["-90.072320","29.989775"],["-90.072200","29.989850"],["-90.072028","29.989951"],["-90.071857","29.990053"],["-90.071685","29.990154"],["-90.071539","29.990240"],["-90.071371","29.990346"],["-90.071204","29.990453"],["-90.071009","29.990514"],["-90.070813","29.990576"],["-90.070680","29.990714"],["-90.070567","29.990830"],["-90.070459","29.990889"],["-90.070289","29.990993"],["-90.070118","29.991094"],["-90.069959","29.991189"],["-90.069768","29.991260"],["-90.069577","29.991331"],["-90.069531","29.991348"],["-90.069408","29.991493"],["-90.069331","29.991585"],["-90.069162","29.991689"],["-90.068993","29.991794"],["-90.068824","29.991898"],["-90.068655","29.992003"],["-90.068486","29.992108"],["-90.068314","29.992208"],["-90.068139","29.992305"],["-90.068079","29.992339"],["-90.067906","29.992439"],["-90.067738","29.992544"],["-90.067619","29.992619"],["-90.067447","29.992720"],["-90.067330","29.992800"],["-90.067160","29.992904"],["-90.067020","29.992989"],["-90.066850","29.993093"],["-90.066759","29.993149"],["-90.066587","29.993250"],["-90.066470","29.993319"],["-90.066298","29.993420"],["-90.066129","29.993525"],["-90.065960","29.993629"],["-90.065793","29.993736"],["-90.065679","29.993810"],["-90.065509","29.993914"],["-90.065339","29.994017"],["-90.065169","29.994120"],["-90.064999","29.994224"],["-90.064829","29.994327"],["-90.064659","29.994429"],["-90.064488","29.994532"],["-90.064317","29.994634"],["-90.064115","29.994676"],["-90.063913","29.994718"],["-90.063885","29.994724"],["-90.063782","29.994880"],["-90.063709","29.994990"],["-90.063609","29.995049"],["-90.063449","29.995139"],["-90.063282","29.995246"],["-90.063115","29.995353"],["-90.062979","29.995440"],["-90.062792","29.995518"],["-90.062605","29.995596"],["-90.062539","29.995623"],["-90.062469","29.995792"],["-90.062398","29.995962"],["-90.062380","29.996006"],["-90.062261","29.996154"],["-90.062141","29.996300"],["-90.062070","29.996389"],["-90.061980","29.996499"],["-90.061930","29.996559"],["-90.061742","29.996636"],["-90.061633","29.996680"],["-90.061581","29.996854"],["-90.061528","29.997028"],["-90.061480","29.997089"],["-90.061358","29.997235"],["-90.061236","29.997380"],["-90.061114","29.997526"],["-90.060948","29.997634"],["-90.060782","29.997742"],["-90.060741","29.997768"],["-90.060670","29.997937"],["-90.060599","29.998106"],["-90.060569","29.998176"],["-90.060509","29.998250"],["-90.060389","29.998397"],["-90.060264","29.998540"],["-90.060142","29.998686"],["-90.060040","29.998809"],["-90.059960","29.998899"],["-90.059840","29.999046"],["-90.059799","29.999099"],["-90.059638","29.999212"],["-90.059476","29.999326"],["-90.059376","29.999484"],["-90.059276","29.999641"],["-90.059140","29.999760"],["-90.058952","29.999837"],["-90.058764","29.999913"],["-90.058686","29.999945"],["-90.058606","30.000111"],["-90.058564","30.000199"],["-90.058411","30.000320"],["-90.058257","30.000441"],["-90.058063","30.000506"],["-90.057870","30.000572"],["-90.057845","30.000580"],["-90.057769","30.000747"],["-90.057714","30.000869"],["-90.057558","30.000988"],["-90.057403","30.001107"],["-90.057247","30.001226"],["-90.057150","30.001300"],["-90.056992","30.001417"],["-90.056840","30.001530"],["-90.056643","30.001586"],["-90.056446","30.001643"],["-90.056410","30.001653"],["-90.056306","30.001809"],["-90.056243","30.001904"],["-90.056066","30.001999"],["-90.055970","30.002050"],["-90.055770","30.002099"],["-90.055571","30.002149"],["-90.055371","30.002198"],["-90.055171","30.002248"],["-90.055150","30.002253"],["-90.055007","30.002384"],["-90.054864","30.002514"],["-90.054673","30.002584"],["-90.054600","30.002609"],["-90.054440","30.002670"],["-90.054241","30.002721"],["-90.054042","30.002772"],["-90.053970","30.002790"],["-90.053766","30.002825"],["-90.053561","30.002851"],["-90.053355","30.002878"],["-90.053150","30.002904"],["-90.053099","30.002910"],["-90.052903","30.002851"],["-90.052710","30.002793"],["-90.052512","30.002846"],["-90.052313","30.002899"],["-90.052235","30.002920"],["-90.052170","30.002920"],["-90.051962","30.002920"],["-90.051755","30.002920"],["-90.051547","30.002920"],["-90.051339","30.002920"],["-90.051249","30.002920"],["-90.051041","30.002920"],["-90.050870","30.002920"],["-90.050678","30.002852"],["-90.050486","30.002784"],["-90.050402","30.002754"],["-90.050243","30.002869"],["-90.050159","30.002930"],["-90.049951","30.002935"],["-90.049749","30.002940"],["-90.049619","30.002940"],["-90.049412","30.002950"],["-90.049204","30.002960"],["-90.048998","30.002983"],["-90.048792","30.003005"],["-90.048585","30.003016"],["-90.048378","30.003027"],["-90.048190","30.002949"],["-90.048077","30.002902"],["-90.047878","30.002952"],["-90.047689","30.003000"],["-90.047485","30.002967"],["-90.047369","30.002949"],["-90.047166","30.002912"],["-90.047099","30.002900"],["-90.046898","30.002854"],["-90.046709","30.002810"],["-90.046543","30.002702"],["-90.046402","30.002610"],["-90.046201","30.002656"],["-90.046059","30.002689"],["-90.045879","30.002679"],["-90.045672","30.002687"],["-90.045464","30.002696"],["-90.045380","30.002699"],["-90.045173","30.002712"],["-90.044966","30.002724"],["-90.044765","30.002678"],["-90.044564","30.002632"],["-90.044514","30.002621"],["-90.044316","30.002676"],["-90.044160","30.002720"],["-90.043953","30.002734"],["-90.043746","30.002748"],["-90.043570","30.002760"],["-90.043365","30.002788"],["-90.043160","30.002817"],["-90.042990","30.002840"],["-90.042789","30.002885"],["-90.042588","30.002930"],["-90.042389","30.002983"],["-90.042191","30.003036"],["-90.041992","30.003087"],["-90.041900","30.003110"],["-90.041839","30.003129"],["-90.041648","30.003199"],["-90.041540","30.003239"],["-90.041349","30.003309"],["-90.041209","30.003360"],["-90.041020","30.003434"],["-90.040831","30.003509"],["-90.040700","30.003560"],["-90.040510","30.003632"],["-90.040307","30.003673"],["-90.040197","30.003695"],["-90.040230","30.003760"],["-90.040030","30.003840"],["-90.039920","30.003870"],["-90.039780","30.003920"],["-90.039605","30.003990"],["-90.039430","30.004060"],["-90.039315","30.004105"],["-90.039200","30.004150"],["-90.039085","30.004195"],["-90.038970","30.004240"],["-90.038850","30.004290"],["-90.038827","30.004250"],["-90.038850","30.004290"],["-90.038740","30.004335"],["-90.038630","30.004380"],["-90.038470","30.004430"],["-90.038330","30.004490"],["-90.038200","30.004542"],["-90.038069","30.004595"],["-90.037939","30.004647"],["-90.037809","30.004699"],["-90.037678","30.004652"],["-90.037576","30.004717"],["-90.037474","30.004781"],["-90.037372","30.004846"],["-90.037270","30.004910"],["-90.037160","30.004950"],["-90.037060","30.004980"],["-90.036930","30.005030"],["-90.036815","30.005075"],["-90.036700","30.005120"],["-90.036565","30.005170"],["-90.036430","30.005220"],["-90.036415","30.005189"],["-90.036430","30.005220"],["-90.036330","30.005260"],["-90.036380","30.005410"],["-90.036580","30.005330"],["-90.036770","30.005260"],["-90.036960","30.005185"],["-90.037150","30.005110"],["-90.037270","30.005063"],["-90.037390","30.005015"],["-90.037510","30.004968"],["-90.037659","30.004976"]]},{"type":"MultiPoint","coordinates":[["-90.090294","29.984011"],["-90.118213","29.916486"],["-90.120045","29.916796"],["-90.123159","29.917509"],["-90.129541","29.925480"],["-90.127368","29.924366"],["-90.126525","29.923986"],["-90.124583","29.923183"],["-90.121623","29.922138"],["-90.119066","29.921524"],["-90.115198","29.920833"],["-90.059611","29.999343"],["-90.063796","29.995052"],["-90.100595","29.974759"],["-90.103226","29.972294"],["-90.104928","29.970663"],["-90.037659","30.004976"],["-90.039948","30.004092"],["-90.042546","30.003173"],["-90.044277","30.002865"],["-90.046285","30.002822"],["-90.047887","30.003127"],["-90.050016","30.003026"],["-90.052975","30.003032"],["-90.054782","30.002679"],["-90.056719","30.001761"],["-90.057897","30.000802"],["-90.058961","29.999941"],["-90.060965","29.997896"],["-90.061486","29.997226"],["-90.062784","29.995688"],["-90.108449","29.967410"],["-90.111376","29.964655"],["-90.113837","29.966634"],["-90.116215","29.968596"],["-90.117884","29.967297"],["-90.119385","29.965893"],["-90.120909","29.964488"],["-90.121689","29.963773"],["-90.121613","29.962402"],["-90.123122","29.960996"],["-90.124677","29.959548"],["-90.126434","29.957956"],["-90.127925","29.956524"],["-90.129436","29.955096"],["-90.130951","29.953699"],["-90.132487","29.952279"],["-90.130957","29.950870"],["-90.128438","29.948695"],["-90.129743","29.947465"],["-90.131257","29.946042"],["-90.132783","29.944638"],["-90.106300","29.969419"],["-90.110015","29.965861"],["-90.117296","29.921143"],["-90.091606","29.983212"],["-90.094193","29.980766"],["-90.095420","29.979615"],["-90.097482","29.977685"],["-90.098925","29.976326"],["-90.074619","29.988783"],["-90.065925","29.993736"],["-90.066980","29.993100"],["-90.069460","29.991592"],["-90.072819","29.989548"],["-90.077939","29.988866"],["-90.079205","29.988923"],["-90.080647","29.988997"],["-90.083179","29.989111"],["-90.086708","29.989301"],["-90.070669","29.990793"],["-90.127478","29.916532"],["-90.131798","29.926631"],["-90.115727","29.918540"]]},{"type":"LineString","coordinates":[["-90.037659","30.004976"],["-90.037822","30.004864"],["-90.037920","30.004797"],["-90.038110","30.004725"],["-90.038300","30.004652"],["-90.038490","30.004579"],["-90.038680","30.004506"],["-90.038870","30.004433"],["-90.038959","30.004399"],["-90.039149","30.004327"],["-90.039250","30.004289"],["-90.039290","30.004260"],["-90.039405","30.004215"],["-90.039520","30.004170"],["-90.039715","30.004095"],["-90.039910","30.004020"],["-90.039948","30.004092"],["-90.039910","30.004020"],["-90.040000","30.003980"],["-90.040090","30.003950"],["-90.040190","30.003910"],["-90.040328","30.003856"],["-90.040465","30.003803"],["-90.040603","30.003749"],["-90.040740","30.003695"],["-90.040878","30.003641"],["-90.041015","30.003588"],["-90.041153","30.003534"],["-90.041290","30.003480"],["-90.041415","30.003435"],["-90.041540","30.003390"],["-90.041695","30.003340"],["-90.041850","30.003290"],["-90.041958","30.003258"],["-90.042065","30.003225"],["-90.042173","30.003193"],["-90.042280","30.003160"],["-90.042400","30.003125"],["-90.042520","30.003090"],["-90.042546","30.003173"],["-90.042520","30.003090"],["-90.042600","30.003070"],["-90.042785","30.003030"],["-90.042970","30.002990"],["-90.043110","30.002965"],["-90.043250","30.002940"],["-90.043415","30.002910"],["-90.043580","30.002880"],["-90.043775","30.002860"],["-90.043970","30.002840"],["-90.044150","30.002820"],["-90.044270","30.002820"],["-90.044277","30.002865"],["-90.044270","30.002820"],["-90.044360","30.002810"],["-90.044550","30.002795"],["-90.044740","30.002780"],["-90.044905","30.002770"],["-90.045070","30.002760"],["-90.045235","30.002750"],["-90.045400","30.002740"],["-90.045515","30.002735"],["-90.045630","30.002730"],["-90.045745","30.002725"],["-90.045860","30.002720"],["-90.045990","30.002730"],["-90.046100","30.002740"],["-90.046220","30.002750"],["-90.046300","30.002760"],["-90.046285","30.002822"],["-90.046300","30.002760"],["-90.046430","30.002790"],["-90.046546","30.002818"],["-90.046662","30.002845"],["-90.046779","30.002873"],["-90.046895","30.002900"],["-90.047011","30.002928"],["-90.047127","30.002955"],["-90.047244","30.002983"],["-90.047360","30.003010"],["-90.047520","30.003050"],["-90.047720","30.003080"],["-90.047890","30.003090"],["-90.047887","30.003127"],["-90.047890","30.003090"],["-90.047950","30.003100"],["-90.048100","30.003100"],["-90.048290","30.003100"],["-90.048405","30.003093"],["-90.048520","30.003085"],["-90.048635","30.003078"],["-90.048750","30.003070"],["-90.048865","30.003063"],["-90.048980","30.003055"],["-90.049095","30.003048"],["-90.049210","30.003040"],["-90.049340","30.003030"],["-90.049470","30.003020"],["-90.049605","30.003013"],["-90.049740","30.003005"],["-90.049875","30.002998"],["-90.050010","30.002990"],["-90.050016","30.003026"],["-90.050010","30.002990"],["-90.050150","30.002980"],["-90.050310","30.002990"],["-90.050428","30.002990"],["-90.050545","30.002990"],["-90.050663","30.002990"],["-90.050780","30.002990"],["-90.050898","30.002990"],["-90.051015","30.002990"],["-90.051133","30.002990"],["-90.051250","30.002990"],["-90.051364","30.002989"],["-90.051478","30.002988"],["-90.051591","30.002986"],["-90.051705","30.002985"],["-90.051819","30.002984"],["-90.051933","30.002983"],["-90.052046","30.002981"],["-90.052160","30.002980"],["-90.052275","30.002980"],["-90.052390","30.002980"],["-90.052505","30.002980"],["-90.052620","30.002980"],["-90.052795","30.002980"],["-90.052970","30.002980"],["-90.052975","30.003032"],["-90.052970","30.002980"],["-90.053070","30.002980"],["-90.053225","30.002955"],["-90.053380","30.002930"],["-90.053530","30.002910"],["-90.053680","30.002890"],["-90.053815","30.002870"],["-90.053950","30.002850"],["-90.054120","30.002810"],["-90.054230","30.002785"],["-90.054340","30.002760"],["-90.054460","30.002720"],["-90.054580","30.002680"],["-90.054760","30.002630"],["-90.054782","30.002679"],["-90.054760","30.002630"],["-90.054880","30.002590"],["-90.055020","30.002530"],["-90.055180","30.002460"],["-90.055330","30.002400"],["-90.055490","30.002325"],["-90.055650","30.002250"],["-90.055810","30.002175"],["-90.055970","30.002100"],["-90.056083","30.002045"],["-90.056195","30.001990"],["-90.056308","30.001935"],["-90.056420","30.001880"],["-90.056550","30.001795"],["-90.056680","30.001710"],["-90.056719","30.001761"],["-90.056680","30.001710"],["-90.056840","30.001600"],["-90.056925","30.001535"],["-90.057010","30.001470"],["-90.057130","30.001380"],["-90.057180","30.001340"],["-90.057310","30.001240"],["-90.057440","30.001140"],["-90.057570","30.001040"],["-90.057700","30.000940"],["-90.057785","30.000875"],["-90.057890","30.000800"],["-90.057897","30.000802"],["-90.057890","30.000800"],["-90.057985","30.000725"],["-90.058080","30.000650"],["-90.058100","30.000640"],["-90.058200","30.000560"],["-90.058360","30.000430"],["-90.058470","30.000350"],["-90.058580","30.000270"],["-90.058680","30.000193"],["-90.058780","30.000115"],["-90.058880","30.000038"],["-90.058961","29.999941"],["-90.058980","29.999960"],["-90.059130","29.999850"],["-90.059285","29.999735"],["-90.059440","29.999620"],["-90.059560","29.999480"],["-90.059670","29.999350"],["-90.059611","29.999343"],["-90.059670","29.999350"],["-90.059710","29.999290"],["-90.059785","29.999205"],["-90.059860","29.999120"],["-90.059990","29.998970"],["-90.060050","29.998900"],["-90.060150","29.998780"],["-90.060248","29.998665"],["-90.060345","29.998550"],["-90.060443","29.998435"],["-90.060540","29.998320"],["-90.060620","29.998225"],["-90.060700","29.998130"],["-90.060780","29.998035"],["-90.060860","29.997940"],["-90.060965","29.997896"],["-90.060930","29.997840"],["-90.061010","29.997750"],["-90.061090","29.997660"],["-90.061170","29.997570"],["-90.061250","29.997480"],["-90.061360","29.997350"],["-90.061470","29.997220"],["-90.061486","29.997226"],["-90.061470","29.997220"],["-90.061520","29.997170"],["-90.061598","29.997075"],["-90.061675","29.996980"],["-90.061753","29.996885"],["-90.061830","29.996790"],["-90.061928","29.996670"],["-90.062025","29.996550"],["-90.062123","29.996430"],["-90.062220","29.996310"],["-90.062308","29.996205"],["-90.062395","29.996100"],["-90.062483","29.995995"],["-90.062570","29.995890"],["-90.062630","29.995810"],["-90.062680","29.995740"],["-90.062760","29.995670"],["-90.062784","29.995688"],["-90.062760","29.995670"],["-90.062820","29.995610"],["-90.062880","29.995570"],["-90.062970","29.995510"],["-90.063020","29.995480"],["-90.063180","29.995380"],["-90.063290","29.995315"],["-90.063400","29.995250"],["-90.063535","29.995165"],["-90.063670","29.995080"],["-90.063770","29.995020"],["-90.063796","29.995052"],["-90.063770","29.995020"],["-90.063830","29.994980"],["-90.063970","29.994890"],["-90.064078","29.994825"],["-90.064185","29.994760"],["-90.064293","29.994695"],["-90.064400","29.994630"],["-90.064523","29.994555"],["-90.064645","29.994480"],["-90.064768","29.994405"],["-90.064890","29.994330"],["-90.064990","29.994270"],["-90.065150","29.994175"],["-90.065310","29.994080"],["-90.065400","29.994020"],["-90.065490","29.993960"],["-90.065598","29.993900"],["-90.065705","29.993840"],["-90.065813","29.993780"],["-90.065920","29.993720"],["-90.065925","29.993736"],["-90.065920","29.993720"],["-90.066000","29.993680"],["-90.066128","29.993605"],["-90.066255","29.993530"],["-90.066383","29.993455"],["-90.066510","29.993380"],["-90.066623","29.993308"],["-90.066735","29.993235"],["-90.066848","29.993163"],["-90.066960","29.993090"],["-90.066980","29.993100"],["-90.066960","29.993090"],["-90.067123","29.992990"],["-90.067285","29.992890"],["-90.067448","29.992790"],["-90.067610","29.992690"],["-90.067700","29.992640"],["-90.067789","29.992512"],["-90.067889","29.992449"],["-90.068062","29.992350"],["-90.068236","29.992252"],["-90.068310","29.992210"],["-90.068450","29.992130"],["-90.068627","29.992036"],["-90.068804","29.991942"],["-90.068981","29.991847"],["-90.069158","29.991753"],["-90.069334","29.991659"],["-90.069460","29.991592"],["-90.069460","29.991600"],["-90.069510","29.991570"],["-90.069625","29.991500"],["-90.069740","29.991430"],["-90.069890","29.991345"],["-90.070040","29.991260"],["-90.070150","29.991190"],["-90.070190","29.991160"],["-90.070270","29.991130"],["-90.070350","29.991050"],["-90.070350","29.991040"],["-90.070490","29.990960"],["-90.070600","29.990920"],["-90.070620","29.990900"],["-90.070690","29.990840"],["-90.070700","29.990830"],["-90.070669","29.990793"],["-90.070700","29.990830"],["-90.070840","29.990750"],["-90.070950","29.990680"],["-90.071090","29.990590"],["-90.071235","29.990500"],["-90.071380","29.990410"],["-90.071420","29.990380"],["-90.071460","29.990360"],["-90.071560","29.990300"],["-90.071670","29.990230"],["-90.071820","29.990140"],["-90.071970","29.990050"],["-90.072075","29.989985"],["-90.072180","29.989920"],["-90.072260","29.989880"],["-90.072430","29.989775"],["-90.072600","29.989670"],["-90.072710","29.989610"],["-90.072819","29.989548"],["-90.072953","29.989411"],["-90.073028","29.989334"],["-90.073199","29.989232"],["-90.073320","29.989160"],["-90.073491","29.989058"],["-90.073671","29.988969"],["-90.073790","29.988910"],["-90.073985","29.988848"],["-90.074170","29.988790"],["-90.074378","29.988787"],["-90.074585","29.988784"],["-90.074619","29.988783"],["-90.074818","29.988730"],["-90.074970","29.988690"],["-90.075178","29.988684"],["-90.075309","29.988680"],["-90.075517","29.988673"],["-90.075600","29.988670"],["-90.075807","29.988684"],["-90.076014","29.988698"],["-90.076222","29.988705"],["-90.076429","29.988712"],["-90.076637","29.988719"],["-90.076844","29.988728"],["-90.076960","29.988735"],["-90.077080","29.988740"],["-90.077270","29.988750"],["-90.077460","29.988760"],["-90.077650","29.988770"],["-90.077840","29.988780"],["-90.077940","29.988790"],["-90.077939","29.988866"],["-90.077940","29.988790"],["-90.078087","29.988798"],["-90.078235","29.988805"],["-90.078382","29.988813"],["-90.078530","29.988820"],["-90.078570","29.988810"],["-90.078650","29.988810"],["-90.078830","29.988830"],["-90.079050","29.988840"],["-90.079200","29.988840"],["-90.079210","29.988840"],["-90.079205","29.988923"],["-90.079210","29.988840"],["-90.079310","29.988840"],["-90.079482","29.988850"],["-90.079655","29.988860"],["-90.079827","29.988870"],["-90.080000","29.988880"],["-90.080190","29.988890"],["-90.080380","29.988900"],["-90.080515","29.988905"],["-90.080650","29.988910"],["-90.080647","29.988997"],["-90.080650","29.988910"],["-90.080780","29.988920"],["-90.080892","29.988925"],["-90.081005","29.988930"],["-90.081117","29.988935"],["-90.081230","29.988940"],["-90.081445","29.988950"],["-90.081660","29.988960"],["-90.081787","29.988968"],["-90.081915","29.988975"],["-90.082042","29.988983"],["-90.082170","29.988990"],["-90.082285","29.988995"],["-90.082400","29.989000"],["-90.082580","29.989010"],["-90.082720","29.989015"],["-90.082860","29.989020"],["-90.083020","29.989030"],["-90.083180","29.989040"],["-90.083179","29.989111"],["-90.083180","29.989050"],["-90.083280","29.989060"],["-90.083460","29.989070"],["-90.083585","29.989075"],["-90.083710","29.989080"],["-90.083915","29.989090"],["-90.084120","29.989100"],["-90.084257","29.989108"],["-90.084395","29.989115"],["-90.084532","29.989123"],["-90.084670","29.989130"],["-90.084831","29.989138"],["-90.084992","29.989145"],["-90.085154","29.989153"],["-90.085315","29.989160"],["-90.085476","29.989168"],["-90.085637","29.989175"],["-90.085799","29.989183"],["-90.085960","29.989190"],["-90.086115","29.989198"],["-90.086270","29.989205"],["-90.086425","29.989213"],["-90.086580","29.989220"],["-90.086610","29.989220"],["-90.086710","29.989220"],["-90.086708","29.989301"],["-90.086710","29.989220"],["-90.086830","29.989225"],["-90.086950","29.989230"],["-90.086980","29.989140"],["-90.087020","29.989010"],["-90.087090","29.988895"],["-90.087160","29.988780"],["-90.087170","29.988770"],["-90.087223","29.988683"],["-90.087275","29.988595"],["-90.087328","29.988508"],["-90.087380","29.988420"],["-90.087420","29.988360"],["-90.087440","29.988320"],["-90.087450","29.988280"],["-90.087460","29.988240"],["-90.087470","29.988200"],["-90.087470","29.988160"],["-90.087470","29.988120"],["-90.087460","29.988110"],["-90.087440","29.988030"],["-90.087420","29.987970"],["-90.087390","29.987870"],["-90.087360","29.987770"],["-90.087330","29.987670"],["-90.087300","29.987570"],["-90.087290","29.987460"],["-90.087280","29.987390"],["-90.087280","29.987350"],["-90.087280","29.987300"],["-90.087280","29.987250"],["-90.087280","29.987200"],["-90.087300","29.987130"],["-90.087320","29.987050"],["-90.087340","29.987000"],["-90.087350","29.986970"],["-90.087380","29.986890"],["-90.087410","29.986820"],["-90.087430","29.986780"],["-90.087450","29.986740"],["-90.087480","29.986700"],["-90.087520","29.986640"],["-90.087560","29.986580"],["-90.087660","29.986460"],["-90.087700","29.986420"],["-90.087760","29.986360"],["-90.087840","29.986300"],["-90.087860","29.986280"],["-90.087940","29.986220"],["-90.088040","29.986140"],["-90.088120","29.986070"],["-90.088140","29.986050"],["-90.088240","29.985960"],["-90.088290","29.985900"],["-90.088330","29.985850"],["-90.088360","29.985820"],["-90.088430","29.985720"],["-90.088490","29.985600"],["-90.088500","29.985570"],["-90.088520","29.985490"],["-90.088530","29.985430"],["-90.088540","29.985340"],["-90.088540","29.985230"],["-90.088540","29.985220"],["-90.088540","29.985140"],["-90.088550","29.985090"],["-90.088560","29.985010"],["-90.088570","29.984930"],["-90.088580","29.984880"],["-90.088600","29.984750"],["-90.088620","29.984640"],["-90.088650","29.984540"],["-90.088660","29.984460"],["-90.088690","29.984380"],["-90.088720","29.984280"],["-90.088750","29.984170"],["-90.088770","29.984110"],["-90.088780","29.984070"],["-90.088820","29.983955"],["-90.088860","29.983840"],["-90.088900","29.983730"],["-90.089020","29.983660"],["-90.089140","29.983600"],["-90.089200","29.983640"],["-90.089230","29.983670"],["-90.089345","29.983745"],["-90.089460","29.983820"],["-90.089530","29.983870"],["-90.089590","29.983920"],["-90.089640","29.983990"],["-90.089720","29.984090"],["-90.089780","29.984160"],["-90.089820","29.984210"],["-90.089850","29.984240"],["-90.089880","29.984270"],["-90.089900","29.984280"],["-90.089970","29.984330"],["-90.090065","29.984190"],["-90.090160","29.984050"],["-90.090190","29.984000"],["-90.090294","29.984011"],["-90.090390","29.983852"],["-90.090472","29.983717"],["-90.090580","29.983630"],["-90.090764","29.983547"],["-90.090889","29.983490"],["-90.091081","29.983421"],["-90.091272","29.983352"],["-90.091459","29.983273"],["-90.091606","29.983212"],["-90.091715","29.983059"],["-90.091824","29.982906"],["-90.091859","29.982857"],["-90.091998","29.982723"],["-90.092138","29.982590"],["-90.092276","29.982457"],["-90.092416","29.982323"],["-90.092450","29.982290"],["-90.092589","29.982156"],["-90.092679","29.982069"],["-90.092818","29.981936"],["-90.092930","29.981829"],["-90.092990","29.981780"],["-90.093131","29.981648"],["-90.093271","29.981515"],["-90.093412","29.981383"],["-90.093553","29.981251"],["-90.093697","29.981121"],["-90.093842","29.980991"],["-90.093986","29.980860"],["-90.094130","29.980730"],["-90.094193","29.980766"],["-90.094208","29.980667"],["-90.094332","29.980551"],["-90.094457","29.980436"],["-90.094581","29.980320"],["-90.094705","29.980204"],["-90.094830","29.980088"],["-90.094954","29.979972"],["-90.095079","29.979857"],["-90.095203","29.979741"],["-90.095287","29.979662"],["-90.095371","29.979584"],["-90.095420","29.979615"],["-90.095420","29.979542"],["-90.095559","29.979409"],["-90.095699","29.979275"],["-90.095838","29.979142"],["-90.095978","29.979009"],["-90.096118","29.978875"],["-90.096257","29.978742"],["-90.096397","29.978609"],["-90.096537","29.978476"],["-90.096640","29.978378"],["-90.096743","29.978280"],["-90.096846","29.978183"],["-90.096949","29.978085"],["-90.097052","29.977987"],["-90.097155","29.977890"],["-90.097258","29.977792"],["-90.097362","29.977695"],["-90.097482","29.977685"],["-90.097463","29.977625"],["-90.097538","29.977545"],["-90.097612","29.977465"],["-90.097686","29.977386"],["-90.097760","29.977306"],["-90.097901","29.977173"],["-90.098041","29.977041"],["-90.098182","29.976908"],["-90.098323","29.976777"],["-90.098466","29.976645"],["-90.098600","29.976520"],["-90.098771","29.976418"],["-90.098925","29.976326"],["-90.099030","29.976171"],["-90.099136","29.976016"],["-90.099275","29.975883"],["-90.099416","29.975751"],["-90.099555","29.975617"],["-90.099693","29.975483"],["-90.099759","29.975419"],["-90.099905","29.975291"],["-90.100051","29.975163"],["-90.100209","29.975046"],["-90.100366","29.974929"],["-90.100524","29.974812"],["-90.100595","29.974759"],["-90.100682","29.974596"],["-90.100726","29.974514"],["-90.100866","29.974382"],["-90.101007","29.974249"],["-90.101147","29.974117"],["-90.101250","29.974020"],["-90.101392","29.973889"],["-90.101535","29.973758"],["-90.101599","29.973699"],["-90.101741","29.973568"],["-90.101883","29.973437"],["-90.102025","29.973305"],["-90.102167","29.973174"],["-90.102309","29.973043"],["-90.102410","29.972950"],["-90.102548","29.972816"],["-90.102687","29.972682"],["-90.102750","29.972620"],["-90.102913","29.972508"],["-90.103076","29.972397"],["-90.103226","29.972294"],["-90.103330","29.972138"],["-90.103430","29.971987"],["-90.103569","29.971854"],["-90.103709","29.971721"],["-90.103854","29.971592"],["-90.103999","29.971463"],["-90.104143","29.971334"],["-90.104285","29.971203"],["-90.104428","29.971071"],["-90.104579","29.970948"],["-90.104730","29.970825"],["-90.104881","29.970701"],["-90.104928","29.970663"],["-90.105043","29.970513"],["-90.105109","29.970426"],["-90.105249","29.970293"],["-90.105389","29.970161"],["-90.105531","29.970029"],["-90.105673","29.969898"],["-90.105779","29.969800"],["-90.105921","29.969669"],["-90.106030","29.969569"],["-90.106205","29.969472"],["-90.106300","29.969419"],["-90.106411","29.969267"],["-90.106523","29.969116"],["-90.106549","29.969080"],["-90.106692","29.968950"],["-90.106835","29.968820"],["-90.106880","29.968779"],["-90.106989","29.968669"],["-90.107131","29.968538"],["-90.107272","29.968406"],["-90.107414","29.968275"],["-90.107559","29.968146"],["-90.107600","29.968110"],["-90.107660","29.968050"],["-90.107720","29.968000"],["-90.107780","29.967940"],["-90.107870","29.967850"],["-90.107940","29.967780"],["-90.108020","29.967699"],["-90.108184","29.967589"],["-90.108348","29.967478"],["-90.108449","29.967410"],["-90.108540","29.967248"],["-90.108590","29.967159"],["-90.108733","29.967029"],["-90.108809","29.966959"],["-90.108948","29.966825"],["-90.109086","29.966691"],["-90.109119","29.966660"],["-90.109261","29.966529"],["-90.109402","29.966397"],["-90.109538","29.966261"],["-90.109679","29.966129"],["-90.109832","29.966007"],["-90.109985","29.965885"],["-90.110015","29.965861"],["-90.110144","29.965720"],["-90.110273","29.965579"],["-90.110311","29.965538"],["-90.110452","29.965406"],["-90.110593","29.965274"],["-90.110675","29.965193"],["-90.110757","29.965111"],["-90.110839","29.965030"],["-90.110922","29.964949"],["-90.111004","29.964867"],["-90.111086","29.964786"],["-90.111168","29.964704"],["-90.111250","29.964623"],["-90.111376","29.964655"],["-90.111485","29.964686"],["-90.111593","29.964716"],["-90.111731","29.964828"],["-90.111869","29.964940"],["-90.112007","29.965052"],["-90.112145","29.965163"],["-90.112282","29.965275"],["-90.112420","29.965387"],["-90.112558","29.965499"],["-90.112696","29.965611"],["-90.112834","29.965722"],["-90.112971","29.965834"],["-90.113109","29.965946"],["-90.113247","29.966058"],["-90.113385","29.966170"],["-90.113523","29.966282"],["-90.113660","29.966393"],["-90.113798","29.966505"],["-90.113837","29.966634"],["-90.113968","29.966690"],["-90.114099","29.966747"],["-90.114228","29.966853"],["-90.114358","29.966959"],["-90.114488","29.967065"],["-90.114618","29.967171"],["-90.114747","29.967277"],["-90.114877","29.967383"],["-90.115007","29.967489"],["-90.115137","29.967595"],["-90.115266","29.967701"],["-90.115396","29.967807"],["-90.115526","29.967913"],["-90.115656","29.968019"],["-90.115785","29.968125"],["-90.115915","29.968231"],["-90.116045","29.968337"],["-90.116175","29.968443"],["-90.116215","29.968596"],["-90.116411","29.968624"],["-90.116491","29.968549"],["-90.116572","29.968473"],["-90.116653","29.968397"],["-90.116734","29.968321"],["-90.116815","29.968245"],["-90.116895","29.968170"],["-90.116976","29.968094"],["-90.117057","29.968018"],["-90.117138","29.967942"],["-90.117219","29.967866"],["-90.117299","29.967791"],["-90.117380","29.967715"],["-90.117461","29.967639"],["-90.117542","29.967563"],["-90.117623","29.967487"],["-90.117703","29.967411"],["-90.117794","29.967354"],["-90.117884","29.967297"],["-90.117969","29.967214"],["-90.118055","29.967130"],["-90.118140","29.967047"],["-90.118225","29.966964"],["-90.118311","29.966880"],["-90.118396","29.966797"],["-90.118481","29.966714"],["-90.118567","29.966630"],["-90.118652","29.966547"],["-90.118737","29.966464"],["-90.118823","29.966380"],["-90.118908","29.966297"],["-90.118993","29.966214"],["-90.119079","29.966130"],["-90.119164","29.966047"],["-90.119249","29.965964"],["-90.119385","29.965893"],["-90.119416","29.965820"],["-90.119504","29.965738"],["-90.119593","29.965656"],["-90.119681","29.965574"],["-90.119770","29.965492"],["-90.119858","29.965410"],["-90.119946","29.965328"],["-90.120035","29.965246"],["-90.120123","29.965164"],["-90.120212","29.965082"],["-90.120300","29.965000"],["-90.120389","29.964918"],["-90.120477","29.964836"],["-90.120566","29.964754"],["-90.120654","29.964672"],["-90.120743","29.964590"],["-90.120831","29.964508"],["-90.120909","29.964488"],["-90.120996","29.964370"],["-90.121083","29.964252"],["-90.121202","29.964140"],["-90.121322","29.964029"],["-90.121441","29.963917"],["-90.121561","29.963806"],["-90.121689","29.963773"],["-90.121662","29.963648"],["-90.121563","29.963570"],["-90.121464","29.963492"],["-90.121365","29.963414"],["-90.121265","29.963336"],["-90.121166","29.963259"],["-90.121067","29.963181"],["-90.120968","29.963103"],["-90.120869","29.963025"],["-90.120962","29.962947"],["-90.121055","29.962869"],["-90.121148","29.962791"],["-90.121241","29.962714"],["-90.121334","29.962636"],["-90.121427","29.962558"],["-90.121520","29.962480"],["-90.121613","29.962402"],["-90.121698","29.962318"],["-90.121783","29.962234"],["-90.121869","29.962149"],["-90.121954","29.962065"],["-90.122039","29.961981"],["-90.122124","29.961897"],["-90.122210","29.961812"],["-90.122295","29.961728"],["-90.122380","29.961644"],["-90.122465","29.961560"],["-90.122551","29.961476"],["-90.122636","29.961391"],["-90.122721","29.961307"],["-90.122806","29.961223"],["-90.122892","29.961139"],["-90.122977","29.961055"],["-90.123122","29.960996"],["-90.123197","29.960897"],["-90.123278","29.960815"],["-90.123360","29.960734"],["-90.123442","29.960653"],["-90.123524","29.960571"],["-90.123605","29.960490"],["-90.123687","29.960409"],["-90.123769","29.960328"],["-90.123850","29.960246"],["-90.123932","29.960165"],["-90.124014","29.960084"],["-90.124096","29.960002"],["-90.124177","29.959921"],["-90.124259","29.959840"],["-90.124341","29.959759"],["-90.124422","29.959677"],["-90.124504","29.959596"],["-90.124677","29.959548"],["-90.124677","29.959548"],["-90.124724","29.959438"],["-90.124846","29.959324"],["-90.124967","29.959209"],["-90.125087","29.959095"],["-90.125207","29.958982"],["-90.125327","29.958868"],["-90.125447","29.958754"],["-90.125567","29.958640"],["-90.125687","29.958526"],["-90.125787","29.958431"],["-90.125887","29.958337"],["-90.125987","29.958242"],["-90.126087","29.958147"],["-90.126188","29.958053"],["-90.126288","29.957958"],["-90.126388","29.957863"],["-90.126434","29.957956"],["-90.126500","29.957777"],["-90.126609","29.957664"],["-90.126717","29.957550"],["-90.126860","29.957420"],["-90.127003","29.957290"],["-90.127146","29.957160"],["-90.127190","29.957120"],["-90.127342","29.956997"],["-90.127493","29.956874"],["-90.127645","29.956751"],["-90.127796","29.956628"],["-90.127925","29.956524"],["-90.128034","29.956371"],["-90.128100","29.956277"],["-90.128240","29.956144"],["-90.128380","29.956012"],["-90.128520","29.955879"],["-90.128660","29.955746"],["-90.128809","29.955621"],["-90.128959","29.955496"],["-90.129108","29.955371"],["-90.129257","29.955246"],["-90.129406","29.955121"],["-90.129436","29.955096"],["-90.129553","29.954948"],["-90.129671","29.954799"],["-90.129718","29.954740"],["-90.129863","29.954611"],["-90.130007","29.954481"],["-90.130151","29.954352"],["-90.130209","29.954300"],["-90.130361","29.954177"],["-90.130512","29.954054"],["-90.130664","29.953932"],["-90.130816","29.953809"],["-90.130951","29.953699"],["-90.131053","29.953542"],["-90.131113","29.953450"],["-90.131257","29.953320"],["-90.131400","29.953190"],["-90.131543","29.953060"],["-90.131686","29.952930"],["-90.131730","29.952890"],["-90.131882","29.952767"],["-90.132034","29.952645"],["-90.132186","29.952522"],["-90.132338","29.952400"],["-90.132487","29.952279"],["-90.132360","29.952137"],["-90.132234","29.951994"],["-90.132174","29.951927"],["-90.132021","29.951805"],["-90.131868","29.951684"],["-90.131715","29.951562"],["-90.131650","29.951510"],["-90.131508","29.951379"],["-90.131366","29.951248"],["-90.131224","29.951116"],["-90.131082","29.950985"],["-90.130957","29.950870"],["-90.130780","29.950776"],["-90.130688","29.950728"],["-90.130536","29.950605"],["-90.130384","29.950483"],["-90.130232","29.950360"],["-90.130080","29.950238"],["-90.130020","29.950190"],["-90.129869","29.950067"],["-90.129717","29.949944"],["-90.129566","29.949821"],["-90.129415","29.949697"],["-90.129264","29.949574"],["-90.129160","29.949490"],["-90.129010","29.949365"],["-90.128860","29.949241"],["-90.128711","29.949116"],["-90.128561","29.948992"],["-90.128491","29.948823"],["-90.128438","29.948695"],["-90.128567","29.948554"],["-90.128696","29.948413"],["-90.128825","29.948272"],["-90.128954","29.948131"],["-90.129020","29.948059"],["-90.129162","29.947928"],["-90.129279","29.947820"],["-90.129421","29.947689"],["-90.129583","29.947576"],["-90.129743","29.947465"],["-90.129852","29.947312"],["-90.129920","29.947216"],["-90.129980","29.947159"],["-90.130120","29.947026"],["-90.130260","29.946894"],["-90.130400","29.946761"],["-90.130529","29.946639"],["-90.130670","29.946507"],["-90.130810","29.946375"],["-90.130951","29.946242"],["-90.131117","29.946134"],["-90.131257","29.946042"],["-90.131361","29.945887"],["-90.131421","29.945798"],["-90.131563","29.945667"],["-90.131704","29.945535"],["-90.131845","29.945403"],["-90.131962","29.945307"],["-90.132080","29.945212"],["-90.132197","29.945116"],["-90.132314","29.945021"],["-90.132431","29.944925"],["-90.132549","29.944829"],["-90.132666","29.944734"],["-90.132783","29.944638"],["-90.132740","29.944610"],["-90.132820","29.944540"],["-90.132945","29.944420"],["-90.133070","29.944300"],["-90.133163","29.944213"],["-90.133255","29.944125"],["-90.133348","29.944038"],["-90.133440","29.943950"],["-90.133520","29.943870"],["-90.133615","29.943780"],["-90.133710","29.943690"],["-90.133855","29.943555"],["-90.134000","29.943420"],["-90.134105","29.943325"],["-90.134210","29.943230"],["-90.134350","29.943100"],["-90.134390","29.943060"],["-90.134500","29.942960"],["-90.134595","29.942870"],["-90.134690","29.942780"],["-90.134660","29.942625"],["-90.134630","29.942470"],["-90.134630","29.942450"],["-90.134614","29.942304"],["-90.134597","29.942158"],["-90.134581","29.942011"],["-90.134565","29.941865"],["-90.134549","29.941719"],["-90.134532","29.941573"],["-90.134516","29.941426"],["-90.134500","29.941280"],["-90.134480","29.941130"],["-90.134460","29.940980"],["-90.134440","29.940830"],["-90.134420","29.940680"],["-90.134400","29.940530"],["-90.134387","29.940425"],["-90.134375","29.940320"],["-90.134362","29.940215"],["-90.134350","29.940110"],["-90.134332","29.939980"],["-90.134315","29.939850"],["-90.134297","29.939720"],["-90.134280","29.939590"],["-90.134262","29.939460"],["-90.134245","29.939330"],["-90.134227","29.939200"],["-90.134210","29.939070"],["-90.134200","29.938965"],["-90.134190","29.938860"],["-90.134170","29.938760"],["-90.134152","29.938626"],["-90.134135","29.938493"],["-90.134117","29.938359"],["-90.134100","29.938225"],["-90.134082","29.938091"],["-90.134065","29.937958"],["-90.134047","29.937824"],["-90.134030","29.937690"],["-90.134020","29.937590"],["-90.134002","29.937460"],["-90.133985","29.937330"],["-90.133967","29.937200"],["-90.133950","29.937070"],["-90.133940","29.936950"],["-90.133925","29.936830"],["-90.133910","29.936710"],["-90.133880","29.936520"],["-90.133880","29.936470"],["-90.133860","29.936330"],["-90.133840","29.936190"],["-90.133820","29.936050"],["-90.133800","29.935910"],["-90.133800","29.935880"],["-90.133780","29.935710"],["-90.133760","29.935540"],["-90.133745","29.935430"],["-90.133730","29.935320"],["-90.133720","29.935240"],["-90.133690","29.935110"],["-90.133690","29.935000"],["-90.133670","29.934840"],["-90.133660","29.934700"],["-90.133650","29.934550"],["-90.133650","29.934370"],["-90.133645","29.934185"],["-90.133640","29.934000"],["-90.133640","29.933910"],["-90.133630","29.933800"],["-90.133633","29.933703"],["-90.133635","29.933605"],["-90.133638","29.933508"],["-90.133640","29.933410"],["-90.133640","29.933220"],["-90.133630","29.933080"],["-90.133630","29.932980"],["-90.133630","29.932880"],["-90.133630","29.932780"],["-90.133630","29.932680"],["-90.133630","29.932530"],["-90.133629","29.932361"],["-90.133627","29.932193"],["-90.133626","29.932024"],["-90.133625","29.931855"],["-90.133624","29.931686"],["-90.133622","29.931518"],["-90.133621","29.931349"],["-90.133620","29.931180"],["-90.133620","29.931064"],["-90.133620","29.930948"],["-90.133620","29.930831"],["-90.133620","29.930715"],["-90.133620","29.930599"],["-90.133620","29.930483"],["-90.133620","29.930366"],["-90.133620","29.930250"],["-90.133619","29.930093"],["-90.133617","29.929935"],["-90.133616","29.929778"],["-90.133615","29.929620"],["-90.133614","29.929463"],["-90.133612","29.929305"],["-90.133611","29.929148"],["-90.133610","29.928990"],["-90.133610","29.928890"],["-90.133610","29.928790"],["-90.133600","29.928660"],["-90.133600","29.928610"],["-90.133600","29.928570"],["-90.133600","29.928470"],["-90.133600","29.928370"],["-90.133600","29.928270"],["-90.133600","29.928170"],["-90.133595","29.928010"],["-90.133590","29.927850"],["-90.133580","29.927760"],["-90.133460","29.927675"],["-90.133340","29.927590"],["-90.133200","29.927505"],["-90.133060","29.927420"],["-90.132942","29.927350"],["-90.132825","29.927280"],["-90.132707","29.927210"],["-90.132590","29.927140"],["-90.132485","29.927080"],["-90.132380","29.927020"],["-90.132265","29.926950"],["-90.132150","29.926880"],["-90.132070","29.926830"],["-90.132020","29.926770"],["-90.131930","29.926720"],["-90.131790","29.926650"],["-90.131798","29.926631"],["-90.131790","29.926650"],["-90.131740","29.926620"],["-90.131642","29.926573"],["-90.131545","29.926525"],["-90.131447","29.926478"],["-90.131350","29.926430"],["-90.131240","29.926370"],["-90.131142","29.926321"],["-90.131045","29.926271"],["-90.130947","29.926222"],["-90.130850","29.926173"],["-90.130752","29.926123"],["-90.130655","29.926074"],["-90.130557","29.926024"],["-90.130460","29.925975"],["-90.130362","29.925926"],["-90.130265","29.925876"],["-90.130167","29.925827"],["-90.130070","29.925778"],["-90.129972","29.925728"],["-90.129875","29.925679"],["-90.129777","29.925629"],["-90.129680","29.925580"],["-90.129530","29.925500"],["-90.129541","29.925480"],["-90.129530","29.925500"],["-90.129420","29.925450"],["-90.129305","29.925393"],["-90.129190","29.925335"],["-90.129075","29.925278"],["-90.128960","29.925220"],["-90.128859","29.925169"],["-90.128757","29.925119"],["-90.128656","29.925068"],["-90.128555","29.925018"],["-90.128454","29.924967"],["-90.128352","29.924916"],["-90.128251","29.924866"],["-90.128150","29.924815"],["-90.128049","29.924764"],["-90.127947","29.924714"],["-90.127846","29.924663"],["-90.127745","29.924613"],["-90.127644","29.924562"],["-90.127542","29.924511"],["-90.127441","29.924461"],["-90.127368","29.924366"],["-90.127225","29.924320"],["-90.127082","29.924274"],["-90.126918","29.924200"],["-90.126754","29.924125"],["-90.126658","29.924118"],["-90.126513","29.924056"],["-90.126525","29.923986"],["-90.126382","29.923984"],["-90.126243","29.923928"],["-90.126105","29.923872"],["-90.125966","29.923817"],["-90.125828","29.923761"],["-90.125689","29.923706"],["-90.125551","29.923650"],["-90.125413","29.923594"],["-90.125274","29.923539"],["-90.125122","29.923476"],["-90.124970","29.923413"],["-90.124817","29.923350"],["-90.124665","29.923288"],["-90.124583","29.923183"],["-90.124443","29.923199"],["-90.124328","29.923153"],["-90.124213","29.923106"],["-90.124098","29.923060"],["-90.123983","29.923014"],["-90.123868","29.922967"],["-90.123753","29.922921"],["-90.123638","29.922874"],["-90.123523","29.922828"],["-90.123351","29.922758"],["-90.123246","29.922721"],["-90.123141","29.922684"],["-90.123036","29.922647"],["-90.122931","29.922610"],["-90.122825","29.922573"],["-90.122720","29.922535"],["-90.122615","29.922498"],["-90.122510","29.922461"],["-90.122306","29.922395"],["-90.122101","29.922329"],["-90.121897","29.922262"],["-90.121692","29.922196"],["-90.121623","29.922138"],["-90.121499","29.922136"],["-90.121387","29.922102"],["-90.121275","29.922068"],["-90.121163","29.922035"],["-90.121051","29.922001"],["-90.120930","29.921969"],["-90.120810","29.921937"],["-90.120689","29.921905"],["-90.120568","29.921873"],["-90.120398","29.921842"],["-90.120228","29.921811"],["-90.120057","29.921781"],["-90.119887","29.921750"],["-90.119739","29.921715"],["-90.119592","29.921680"],["-90.119444","29.921645"],["-90.119297","29.921610"],["-90.119181","29.921567"],["-90.119066","29.921524"],["-90.118913","29.921514"],["-90.118760","29.921503"],["-90.118548","29.921459"],["-90.118337","29.921415"],["-90.118125","29.921371"],["-90.117913","29.921327"],["-90.117784","29.921307"],["-90.117655","29.921287"],["-90.117527","29.921267"],["-90.117398","29.921248"],["-90.117296","29.921143"],["-90.117148","29.921165"],["-90.117001","29.921187"],["-90.116860","29.921171"],["-90.116719","29.921155"],["-90.116578","29.921138"],["-90.116438","29.921122"],["-90.116320","29.921097"],["-90.116202","29.921071"],["-90.116084","29.921045"],["-90.115966","29.921020"],["-90.115823","29.920997"],["-90.115681","29.920973"],["-90.115539","29.920950"],["-90.115397","29.920927"],["-90.115297","29.920880"],["-90.115198","29.920833"],["-90.115139","29.920787"],["-90.115137","29.920671"],["-90.115134","29.920555"],["-90.115165","29.920434"],["-90.115196","29.920314"],["-90.115228","29.920193"],["-90.115259","29.920072"],["-90.115290","29.919952"],["-90.115321","29.919831"],["-90.115352","29.919711"],["-90.115383","29.919590"],["-90.115415","29.919470"],["-90.115446","29.919349"],["-90.115477","29.919228"],["-90.115508","29.919108"],["-90.115539","29.918987"],["-90.115571","29.918867"],["-90.115602","29.918746"],["-90.115633","29.918625"],["-90.115727","29.918540"],["-90.115713","29.918388"],["-90.115737","29.918282"],["-90.115760","29.918177"],["-90.115784","29.918071"],["-90.115807","29.917965"],["-90.115836","29.917854"],["-90.115866","29.917743"],["-90.115895","29.917632"],["-90.115925","29.917521"],["-90.115954","29.917409"],["-90.115983","29.917298"],["-90.116013","29.917187"],["-90.116042","29.917076"],["-90.116075","29.916953"],["-90.116108","29.916829"],["-90.116141","29.916706"],["-90.116174","29.916582"],["-90.116207","29.916459"],["-90.116322","29.916456"],["-90.116437","29.916453"],["-90.116553","29.916450"],["-90.116668","29.916447"],["-90.116783","29.916444"],["-90.116899","29.916441"],["-90.117014","29.916438"],["-90.117129","29.916436"],["-90.117245","29.916433"],["-90.117360","29.916430"],["-90.117475","29.916427"],["-90.117591","29.916424"],["-90.117706","29.916421"],["-90.117821","29.916418"],["-90.117937","29.916415"],["-90.118052","29.916412"],["-90.118213","29.916486"],["-90.118296","29.916415"],["-90.118419","29.916416"],["-90.118532","29.916438"],["-90.118645","29.916460"],["-90.118757","29.916482"],["-90.118870","29.916504"],["-90.118983","29.916526"],["-90.119095","29.916548"],["-90.119208","29.916570"],["-90.119321","29.916592"],["-90.119492","29.916626"],["-90.119664","29.916660"],["-90.119836","29.916694"],["-90.120007","29.916727"],["-90.120045","29.916796"],["-90.120190","29.916790"],["-90.120334","29.916783"],["-90.120548","29.916829"],["-90.120762","29.916874"],["-90.120976","29.916920"],["-90.121190","29.916966"],["-90.121404","29.917011"],["-90.121618","29.917057"],["-90.121831","29.917102"],["-90.122045","29.917148"],["-90.122183","29.917186"],["-90.122320","29.917224"],["-90.122458","29.917261"],["-90.122595","29.917299"],["-90.122733","29.917337"],["-90.122870","29.917375"],["-90.123008","29.917413"],["-90.123145","29.917450"],["-90.123159","29.917509"],["-90.123310","29.917497"],["-90.123355","29.917378"],["-90.123401","29.917259"],["-90.123446","29.917141"],["-90.123492","29.917022"],["-90.123538","29.916904"],["-90.123583","29.916785"],["-90.123629","29.916667"],["-90.123674","29.916548"],["-90.123720","29.916429"],["-90.123766","29.916311"],["-90.123811","29.916192"],["-90.123857","29.916074"],["-90.123902","29.915955"],["-90.123948","29.915837"],["-90.123994","29.915718"],["-90.124039","29.915599"],["-90.124147","29.915629"],["-90.124254","29.915658"],["-90.124362","29.915687"],["-90.124469","29.915716"],["-90.124576","29.915745"],["-90.124684","29.915774"],["-90.124791","29.915803"],["-90.124899","29.915833"],["-90.125006","29.915862"],["-90.125114","29.915891"],["-90.125221","29.915920"],["-90.125329","29.915949"],["-90.125436","29.915978"],["-90.125544","29.916007"],["-90.125651","29.916037"],["-90.125759","29.916066"],["-90.125866","29.916095"],["-90.125974","29.916124"],["-90.126081","29.916153"],["-90.126188","29.916182"],["-90.126296","29.916211"],["-90.126403","29.916241"],["-90.126511","29.916270"],["-90.126618","29.916299"],["-90.126726","29.916328"],["-90.126833","29.916357"],["-90.126941","29.916386"],["-90.127048","29.916415"],["-90.127156","29.916445"],["-90.127263","29.916474"],["-90.127371","29.916503"],["-90.127478","29.916532"],["-90.127478","29.916532"]]}]}},{"type":"Feature","properties":{"route_id":"32","agency_id":"1","route_short_name":"32","route_long_name":"Leonidas-Treme","route_type":"3","route_color":"#8fd1c5","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.116917","29.921232"],["-90.118792","29.921581"],["-90.121360","29.922207"],["-90.124259","29.923237"],["-90.126330","29.924031"],["-90.127122","29.924415"],["-90.129469","29.925553"],["-90.105636","29.969574"],["-90.104824","29.970349"],["-90.103209","29.971835"],["-90.096675","29.978041"],["-90.123476","29.917490"],["-90.120426","29.916765"],["-90.118538","29.916365"],["-90.132489","29.927158"],["-90.111244","29.966639"],["-90.132659","29.944272"],["-90.131134","29.945708"],["-90.129633","29.947090"],["-90.129055","29.949458"],["-90.130759","29.950848"],["-90.132361","29.952126"],["-90.130974","29.953475"],["-90.129466","29.954893"],["-90.127944","29.956310"],["-90.126454","29.957727"],["-90.124924","29.959131"],["-90.123177","29.960783"],["-90.121644","29.962214"],["-90.120887","29.962922"],["-90.121094","29.964176"],["-90.119422","29.965699"],["-90.117931","29.967107"],["-90.116438","29.968507"],["-90.115188","29.969671"],["-90.112832","29.967871"],["-90.106479","29.968766"],["-90.100654","29.974308"],["-90.098829","29.975957"],["-90.083051","29.970781"],["-90.095520","29.979038"],["-90.091228","29.976193"],["-90.092572","29.977124"],["-90.089957","29.975361"],["-90.088457","29.974359"],["-90.086884","29.973313"],["-90.085103","29.972096"],["-90.081572","29.969788"],["-90.079551","29.968418"],["-90.077874","29.967273"],["-90.076010","29.966047"],["-90.073489","29.964347"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-90.075280","29.954073"],["-90.127478","29.916532"],["-90.115623","29.918397"]]},{"type":"LineString","coordinates":[["-90.127478","29.916532"],["-90.127456","29.916663"],["-90.127433","29.916795"],["-90.127378","29.916910"],["-90.127322","29.917026"],["-90.127266","29.917142"],["-90.127211","29.917257"],["-90.127155","29.917373"],["-90.127099","29.917489"],["-90.127044","29.917604"],["-90.126988","29.917720"],["-90.126932","29.917836"],["-90.126877","29.917951"],["-90.126821","29.918067"],["-90.126765","29.918183"],["-90.126710","29.918298"],["-90.126654","29.918414"],["-90.126598","29.918530"],["-90.126543","29.918645"],["-90.126412","29.918594"],["-90.126281","29.918543"],["-90.126150","29.918492"],["-90.126020","29.918441"],["-90.125889","29.918390"],["-90.125758","29.918338"],["-90.125627","29.918287"],["-90.125497","29.918236"],["-90.125314","29.918166"],["-90.125132","29.918097"],["-90.124990","29.918043"],["-90.124848","29.917990"],["-90.124705","29.917936"],["-90.124563","29.917883"],["-90.124450","29.917847"],["-90.124337","29.917811"],["-90.124223","29.917775"],["-90.124110","29.917739"],["-90.123997","29.917703"],["-90.123883","29.917667"],["-90.123770","29.917631"],["-90.123657","29.917595"],["-90.123476","29.917490"],["-90.123301","29.917467"],["-90.123126","29.917443"],["-90.122992","29.917406"],["-90.122858","29.917368"],["-90.122724","29.917331"],["-90.122590","29.917293"],["-90.122457","29.917256"],["-90.122323","29.917218"],["-90.122189","29.917181"],["-90.122055","29.917144"],["-90.121921","29.917114"],["-90.121786","29.917085"],["-90.121651","29.917056"],["-90.121516","29.917027"],["-90.121356","29.916998"],["-90.121197","29.916968"],["-90.121037","29.916938"],["-90.120877","29.916909"],["-90.120678","29.916863"],["-90.120480","29.916818"],["-90.120426","29.916765"],["-90.120371","29.916791"],["-90.120189","29.916754"],["-90.120006","29.916716"],["-90.119823","29.916679"],["-90.119640","29.916641"],["-90.119429","29.916602"],["-90.119218","29.916563"],["-90.119007","29.916525"],["-90.118796","29.916486"],["-90.118605","29.916450"],["-90.118538","29.916365"],["-90.118520","29.916440"],["-90.118360","29.916410"],["-90.118238","29.916413"],["-90.118115","29.916415"],["-90.117993","29.916418"],["-90.117870","29.916420"],["-90.117655","29.916425"],["-90.117440","29.916430"],["-90.117310","29.916430"],["-90.117175","29.916435"],["-90.117040","29.916440"],["-90.116900","29.916443"],["-90.116760","29.916445"],["-90.116620","29.916448"],["-90.116480","29.916450"],["-90.116345","29.916450"],["-90.116210","29.916450"],["-90.116160","29.916590"],["-90.116110","29.916730"],["-90.116075","29.916895"],["-90.116040","29.917060"],["-90.115987","29.917239"],["-90.115934","29.917419"],["-90.115881","29.917598"],["-90.115828","29.917777"],["-90.115797","29.917932"],["-90.115766","29.918086"],["-90.115735","29.918241"],["-90.115705","29.918395"],["-90.115623","29.918397"],["-90.115605","29.918526"],["-90.115587","29.918655"],["-90.115570","29.918785"],["-90.115552","29.918914"],["-90.115526","29.919012"],["-90.115500","29.919110"],["-90.115474","29.919208"],["-90.115449","29.919306"],["-90.115423","29.919404"],["-90.115397","29.919501"],["-90.115371","29.919599"],["-90.115345","29.919697"],["-90.115319","29.919795"],["-90.115294","29.919893"],["-90.115268","29.919991"],["-90.115242","29.920089"],["-90.115216","29.920187"],["-90.115190","29.920285"],["-90.115165","29.920383"],["-90.115139","29.920481"],["-90.115074","29.920630"],["-90.115007","29.920727"],["-90.114940","29.920825"],["-90.115052","29.920850"],["-90.115163","29.920876"],["-90.115274","29.920902"],["-90.115386","29.920927"],["-90.115559","29.920956"],["-90.115733","29.920984"],["-90.115907","29.921013"],["-90.116080","29.921041"],["-90.116254","29.921069"],["-90.116428","29.921098"],["-90.116601","29.921126"],["-90.116775","29.921155"],["-90.116917","29.921232"],["-90.117031","29.921224"],["-90.117145","29.921215"],["-90.117344","29.921253"],["-90.117543","29.921291"],["-90.117743","29.921329"],["-90.117942","29.921366"],["-90.118141","29.921404"],["-90.118340","29.921442"],["-90.118539","29.921480"],["-90.118738","29.921518"],["-90.118792","29.921581"],["-90.118921","29.921580"],["-90.119049","29.921578"],["-90.119163","29.921602"],["-90.119277","29.921627"],["-90.119391","29.921651"],["-90.119505","29.921676"],["-90.119619","29.921700"],["-90.119733","29.921724"],["-90.119847","29.921749"],["-90.119961","29.921773"],["-90.120105","29.921801"],["-90.120248","29.921829"],["-90.120392","29.921857"],["-90.120535","29.921885"],["-90.120724","29.921936"],["-90.120914","29.921987"],["-90.121103","29.922038"],["-90.121292","29.922089"],["-90.121360","29.922207"],["-90.121527","29.922216"],["-90.121694","29.922224"],["-90.121801","29.922258"],["-90.121909","29.922292"],["-90.122016","29.922325"],["-90.122123","29.922359"],["-90.122231","29.922393"],["-90.122338","29.922427"],["-90.122445","29.922460"],["-90.122552","29.922494"],["-90.122664","29.922532"],["-90.122776","29.922571"],["-90.122888","29.922609"],["-90.123000","29.922647"],["-90.123112","29.922686"],["-90.123224","29.922724"],["-90.123336","29.922762"],["-90.123448","29.922801"],["-90.123636","29.922880"],["-90.123824","29.922959"],["-90.124012","29.923038"],["-90.124199","29.923117"],["-90.124259","29.923237"],["-90.124387","29.923240"],["-90.124516","29.923242"],["-90.124625","29.923285"],["-90.124735","29.923327"],["-90.124844","29.923369"],["-90.124954","29.923411"],["-90.125063","29.923454"],["-90.125173","29.923496"],["-90.125282","29.923538"],["-90.125392","29.923580"],["-90.125497","29.923622"],["-90.125602","29.923663"],["-90.125708","29.923704"],["-90.125813","29.923746"],["-90.125918","29.923787"],["-90.126023","29.923828"],["-90.126129","29.923869"],["-90.126234","29.923911"],["-90.126330","29.924031"],["-90.126545","29.924055"],["-90.126679","29.924129"],["-90.126776","29.924222"],["-90.126949","29.924319"],["-90.127122","29.924415"],["-90.127140","29.924390"],["-90.127180","29.924410"],["-90.127289","29.924465"],["-90.127397","29.924520"],["-90.127506","29.924575"],["-90.127615","29.924630"],["-90.127724","29.924685"],["-90.127832","29.924740"],["-90.127941","29.924795"],["-90.128050","29.924850"],["-90.128159","29.924905"],["-90.128267","29.924960"],["-90.128376","29.925015"],["-90.128485","29.925070"],["-90.128594","29.925125"],["-90.128702","29.925180"],["-90.128811","29.925235"],["-90.128920","29.925290"],["-90.129032","29.925345"],["-90.129145","29.925400"],["-90.129257","29.925455"],["-90.129370","29.925510"],["-90.129460","29.925560"],["-90.129469","29.925553"],["-90.129460","29.925560"],["-90.129570","29.925615"],["-90.129680","29.925670"],["-90.129809","29.925734"],["-90.129937","29.925798"],["-90.130066","29.925861"],["-90.130195","29.925925"],["-90.130324","29.925989"],["-90.130452","29.926053"],["-90.130581","29.926116"],["-90.130710","29.926180"],["-90.130832","29.926243"],["-90.130955","29.926305"],["-90.131077","29.926368"],["-90.131200","29.926430"],["-90.131310","29.926490"],["-90.131465","29.926568"],["-90.131620","29.926645"],["-90.131775","29.926723"],["-90.131930","29.926800"],["-90.131990","29.926810"],["-90.132070","29.926830"],["-90.132150","29.926880"],["-90.132265","29.926950"],["-90.132380","29.927020"],["-90.132489","29.927158"],["-90.132530","29.927100"],["-90.132600","29.927140"],["-90.132715","29.927210"],["-90.132830","29.927280"],["-90.132945","29.927350"],["-90.133060","29.927420"],["-90.133200","29.927505"],["-90.133340","29.927590"],["-90.133460","29.927675"],["-90.133580","29.927760"],["-90.133590","29.927850"],["-90.133595","29.928010"],["-90.133600","29.928170"],["-90.133600","29.928270"],["-90.133600","29.928370"],["-90.133600","29.928470"],["-90.133600","29.928570"],["-90.133600","29.928610"],["-90.133610","29.928660"],["-90.133610","29.928790"],["-90.133610","29.928890"],["-90.133610","29.928990"],["-90.133610","29.929148"],["-90.133610","29.929305"],["-90.133610","29.929463"],["-90.133610","29.929620"],["-90.133610","29.929778"],["-90.133610","29.929935"],["-90.133610","29.930093"],["-90.133610","29.930250"],["-90.133611","29.930366"],["-90.133612","29.930483"],["-90.133614","29.930599"],["-90.133615","29.930715"],["-90.133616","29.930831"],["-90.133617","29.930948"],["-90.133619","29.931064"],["-90.133620","29.931180"],["-90.133621","29.931349"],["-90.133622","29.931518"],["-90.133624","29.931686"],["-90.133625","29.931855"],["-90.133626","29.932024"],["-90.133627","29.932193"],["-90.133629","29.932361"],["-90.133630","29.932530"],["-90.133630","29.932680"],["-90.133630","29.932780"],["-90.133630","29.932880"],["-90.133630","29.932980"],["-90.133630","29.933080"],["-90.133630","29.933220"],["-90.133630","29.933410"],["-90.133630","29.933508"],["-90.133630","29.933605"],["-90.133630","29.933703"],["-90.133630","29.933800"],["-90.133630","29.933910"],["-90.133630","29.934000"],["-90.133635","29.934185"],["-90.133640","29.934370"],["-90.133640","29.934550"],["-90.133650","29.934700"],["-90.133660","29.934840"],["-90.133680","29.935000"],["-90.133690","29.935110"],["-90.133710","29.935240"],["-90.133720","29.935320"],["-90.133735","29.935430"],["-90.133750","29.935540"],["-90.133770","29.935710"],["-90.133790","29.935880"],["-90.133800","29.935910"],["-90.133817","29.936050"],["-90.133835","29.936190"],["-90.133852","29.936330"],["-90.133870","29.936470"],["-90.133880","29.936520"],["-90.133900","29.936710"],["-90.133915","29.936830"],["-90.133930","29.936950"],["-90.133950","29.937080"],["-90.133965","29.937208"],["-90.133980","29.937335"],["-90.133995","29.937463"],["-90.134010","29.937590"],["-90.134030","29.937690"],["-90.134047","29.937824"],["-90.134065","29.937958"],["-90.134082","29.938091"],["-90.134100","29.938225"],["-90.134117","29.938359"],["-90.134135","29.938493"],["-90.134152","29.938626"],["-90.134170","29.938760"],["-90.134180","29.938860"],["-90.134195","29.938965"],["-90.134210","29.939070"],["-90.134226","29.939200"],["-90.134242","29.939330"],["-90.134259","29.939460"],["-90.134275","29.939590"],["-90.134291","29.939720"],["-90.134307","29.939850"],["-90.134324","29.939980"],["-90.134340","29.940110"],["-90.134355","29.940215"],["-90.134370","29.940320"],["-90.134385","29.940425"],["-90.134400","29.940530"],["-90.134410","29.940680"],["-90.134430","29.940833"],["-90.134450","29.940985"],["-90.134470","29.941138"],["-90.134490","29.941290"],["-90.134509","29.941435"],["-90.134527","29.941580"],["-90.134546","29.941725"],["-90.134565","29.941870"],["-90.134584","29.942015"],["-90.134602","29.942160"],["-90.134621","29.942305"],["-90.134640","29.942450"],["-90.134650","29.942480"],["-90.134530","29.942590"],["-90.134410","29.942700"],["-90.134320","29.942780"],["-90.134225","29.942865"],["-90.134130","29.942950"],["-90.134070","29.943000"],["-90.134030","29.943030"],["-90.134000","29.943070"],["-90.133865","29.943200"],["-90.133730","29.943330"],["-90.133590","29.943470"],["-90.133455","29.943600"],["-90.133320","29.943730"],["-90.133244","29.943803"],["-90.133168","29.943875"],["-90.133091","29.943948"],["-90.133015","29.944020"],["-90.132939","29.944093"],["-90.132863","29.944165"],["-90.132786","29.944238"],["-90.132710","29.944310"],["-90.132659","29.944272"],["-90.132519","29.944405"],["-90.132439","29.944482"],["-90.132299","29.944615"],["-90.132158","29.944747"],["-90.132060","29.944840"],["-90.131924","29.944976"],["-90.131840","29.945060"],["-90.131700","29.945192"],["-90.131559","29.945325"],["-90.131490","29.945390"],["-90.131345","29.945519"],["-90.131201","29.945648"],["-90.131134","29.945708"],["-90.131002","29.945847"],["-90.130870","29.945986"],["-90.130822","29.946037"],["-90.130683","29.946171"],["-90.130544","29.946304"],["-90.130405","29.946438"],["-90.130340","29.946500"],["-90.130199","29.946632"],["-90.130059","29.946764"],["-90.129918","29.946897"],["-90.129755","29.947008"],["-90.129633","29.947090"],["-90.129514","29.947238"],["-90.129447","29.947321"],["-90.129305","29.947452"],["-90.129163","29.947583"],["-90.129080","29.947660"],["-90.128934","29.947788"],["-90.128819","29.947889"],["-90.128680","29.948023"],["-90.128541","29.948157"],["-90.128403","29.948290"],["-90.128289","29.948400"],["-90.128150","29.948533"],["-90.128070","29.948610"],["-90.128231","29.948723"],["-90.128270","29.948750"],["-90.128414","29.948880"],["-90.128558","29.949009"],["-90.128701","29.949139"],["-90.128845","29.949269"],["-90.128989","29.949399"],["-90.129055","29.949458"],["-90.129225","29.949561"],["-90.129311","29.949613"],["-90.129463","29.949736"],["-90.129614","29.949859"],["-90.129765","29.949983"],["-90.129916","29.950106"],["-90.130020","29.950190"],["-90.130165","29.950319"],["-90.130306","29.950436"],["-90.130446","29.950553"],["-90.130594","29.950672"],["-90.130742","29.950791"],["-90.130759","29.950848"],["-90.130949","29.950942"],["-90.131037","29.951014"],["-90.131125","29.951085"],["-90.131212","29.951157"],["-90.131300","29.951229"],["-90.131388","29.951301"],["-90.131476","29.951372"],["-90.131564","29.951444"],["-90.131652","29.951516"],["-90.131739","29.951588"],["-90.131827","29.951659"],["-90.131915","29.951731"],["-90.132003","29.951803"],["-90.132091","29.951875"],["-90.132179","29.951946"],["-90.132267","29.952018"],["-90.132354","29.952090"],["-90.132361","29.952126"],["-90.132429","29.952190"],["-90.132283","29.952328"],["-90.132136","29.952467"],["-90.131989","29.952605"],["-90.131843","29.952744"],["-90.131696","29.952882"],["-90.131549","29.953020"],["-90.131403","29.953159"],["-90.131256","29.953297"],["-90.131115","29.953386"],["-90.130974","29.953475"],["-90.130878","29.953606"],["-90.130782","29.953737"],["-90.130700","29.953817"],["-90.130619","29.953898"],["-90.130537","29.953978"],["-90.130455","29.954059"],["-90.130373","29.954139"],["-90.130291","29.954220"],["-90.130209","29.954300"],["-90.130056","29.954422"],["-90.129904","29.954544"],["-90.129751","29.954666"],["-90.129598","29.954787"],["-90.129466","29.954893"],["-90.129356","29.955045"],["-90.129292","29.955133"],["-90.129154","29.955268"],["-90.129016","29.955402"],["-90.128879","29.955537"],["-90.128740","29.955671"],["-90.128690","29.955720"],["-90.128537","29.955841"],["-90.128383","29.955963"],["-90.128230","29.956084"],["-90.128077","29.956205"],["-90.127944","29.956310"],["-90.127832","29.956461"],["-90.127720","29.956613"],["-90.127676","29.956672"],["-90.127534","29.956803"],["-90.127391","29.956934"],["-90.127249","29.957065"],["-90.127190","29.957120"],["-90.127040","29.957244"],["-90.126889","29.957368"],["-90.126739","29.957492"],["-90.126589","29.957616"],["-90.126454","29.957727"],["-90.126324","29.957867"],["-90.126193","29.958007"],["-90.126138","29.958066"],["-90.125992","29.958194"],["-90.125846","29.958322"],["-90.125701","29.958450"],["-90.125555","29.958578"],["-90.125424","29.958708"],["-90.125341","29.958804"],["-90.125257","29.958901"],["-90.125174","29.958997"],["-90.125090","29.959093"],["-90.124924","29.959131"],["-90.124842","29.959275"],["-90.124760","29.959419"],["-90.124607","29.959557"],["-90.124455","29.959695"],["-90.124302","29.959833"],["-90.124149","29.959971"],["-90.123996","29.960109"],["-90.123843","29.960247"],["-90.123690","29.960385"],["-90.123537","29.960523"],["-90.123390","29.960666"],["-90.123242","29.960808"],["-90.123177","29.960783"],["-90.123095","29.960950"],["-90.123013","29.961028"],["-90.122930","29.961105"],["-90.122848","29.961182"],["-90.122766","29.961260"],["-90.122684","29.961337"],["-90.122602","29.961415"],["-90.122520","29.961492"],["-90.122438","29.961569"],["-90.122355","29.961647"],["-90.122273","29.961724"],["-90.122191","29.961802"],["-90.122109","29.961879"],["-90.122027","29.961957"],["-90.121945","29.962034"],["-90.121863","29.962111"],["-90.121780","29.962189"],["-90.121644","29.962214"],["-90.121608","29.962312"],["-90.121571","29.962410"],["-90.121421","29.962546"],["-90.121271","29.962682"],["-90.121121","29.962818"],["-90.120971","29.962954"],["-90.120887","29.962922"],["-90.120810","29.963089"],["-90.120917","29.963163"],["-90.121024","29.963237"],["-90.121131","29.963311"],["-90.121239","29.963385"],["-90.121346","29.963460"],["-90.121453","29.963534"],["-90.121560","29.963608"],["-90.121667","29.963682"],["-90.121542","29.963808"],["-90.121417","29.963933"],["-90.121293","29.964059"],["-90.121168","29.964184"],["-90.121094","29.964176"],["-90.121042","29.964267"],["-90.120991","29.964358"],["-90.120899","29.964442"],["-90.120808","29.964526"],["-90.120716","29.964610"],["-90.120624","29.964694"],["-90.120533","29.964778"],["-90.120441","29.964861"],["-90.120349","29.964945"],["-90.120258","29.965029"],["-90.120166","29.965113"],["-90.120075","29.965197"],["-90.119983","29.965281"],["-90.119891","29.965364"],["-90.119800","29.965448"],["-90.119708","29.965532"],["-90.119616","29.965616"],["-90.119525","29.965700"],["-90.119422","29.965699"],["-90.119353","29.965827"],["-90.119283","29.965955"],["-90.119145","29.966086"],["-90.119006","29.966217"],["-90.118867","29.966348"],["-90.118728","29.966480"],["-90.118606","29.966566"],["-90.118484","29.966652"],["-90.118362","29.966771"],["-90.118240","29.966890"],["-90.118118","29.967009"],["-90.117996","29.967128"],["-90.117931","29.967107"],["-90.117871","29.967200"],["-90.117811","29.967293"],["-90.117737","29.967366"],["-90.117663","29.967439"],["-90.117589","29.967513"],["-90.117514","29.967586"],["-90.117440","29.967659"],["-90.117366","29.967732"],["-90.117292","29.967805"],["-90.117218","29.967879"],["-90.117109","29.967977"],["-90.117001","29.968076"],["-90.116882","29.968189"],["-90.116763","29.968303"],["-90.116645","29.968416"],["-90.116526","29.968529"],["-90.116438","29.968507"],["-90.116411","29.968601"],["-90.116317","29.968689"],["-90.116224","29.968777"],["-90.116130","29.968865"],["-90.116037","29.968953"],["-90.115943","29.969041"],["-90.115849","29.969129"],["-90.115756","29.969217"],["-90.115662","29.969305"],["-90.115558","29.969400"],["-90.115455","29.969495"],["-90.115351","29.969589"],["-90.115247","29.969684"],["-90.115188","29.969671"],["-90.115059","29.969649"],["-90.114931","29.969628"],["-90.114778","29.969502"],["-90.114625","29.969377"],["-90.114472","29.969251"],["-90.114319","29.969126"],["-90.114236","29.969059"],["-90.114152","29.968992"],["-90.114068","29.968925"],["-90.113984","29.968858"],["-90.113901","29.968791"],["-90.113817","29.968724"],["-90.113733","29.968657"],["-90.113650","29.968590"],["-90.113566","29.968523"],["-90.113482","29.968456"],["-90.113398","29.968389"],["-90.113315","29.968322"],["-90.113231","29.968255"],["-90.113147","29.968188"],["-90.113062","29.968120"],["-90.112977","29.968053"],["-90.112891","29.967985"],["-90.112806","29.967917"],["-90.112832","29.967871"],["-90.112790","29.967910"],["-90.112710","29.967840"],["-90.112550","29.967710"],["-90.112390","29.967580"],["-90.112265","29.967480"],["-90.112140","29.967380"],["-90.112015","29.967280"],["-90.111890","29.967180"],["-90.111800","29.967108"],["-90.111710","29.967035"],["-90.111620","29.966963"],["-90.111530","29.966890"],["-90.111490","29.966850"],["-90.111480","29.966840"],["-90.111360","29.966740"],["-90.111330","29.966720"],["-90.111240","29.966650"],["-90.111244","29.966639"],["-90.111240","29.966650"],["-90.111120","29.966550"],["-90.111030","29.966480"],["-90.110970","29.966430"],["-90.110890","29.966370"],["-90.110810","29.966300"],["-90.110730","29.966220"],["-90.110670","29.966160"],["-90.110620","29.966100"],["-90.110510","29.965970"],["-90.110490","29.965950"],["-90.110480","29.965940"],["-90.110400","29.965850"],["-90.110360","29.965810"],["-90.110280","29.965720"],["-90.110210","29.965650"],["-90.110050","29.965550"],["-90.109990","29.965590"],["-90.109890","29.965680"],["-90.109840","29.965730"],["-90.109750","29.965810"],["-90.109730","29.965830"],["-90.109700","29.965860"],["-90.109620","29.965935"],["-90.109540","29.966010"],["-90.109460","29.966090"],["-90.109370","29.966175"],["-90.109280","29.966260"],["-90.109210","29.966330"],["-90.109080","29.966450"],["-90.108990","29.966530"],["-90.108900","29.966610"],["-90.108800","29.966700"],["-90.108705","29.966793"],["-90.108610","29.966885"],["-90.108515","29.966978"],["-90.108420","29.967070"],["-90.108390","29.967100"],["-90.108330","29.967150"],["-90.108330","29.967160"],["-90.108320","29.967160"],["-90.108300","29.967180"],["-90.108290","29.967190"],["-90.108250","29.967240"],["-90.108220","29.967260"],["-90.108100","29.967385"],["-90.107980","29.967510"],["-90.107870","29.967610"],["-90.107860","29.967620"],["-90.107810","29.967670"],["-90.107800","29.967680"],["-90.107790","29.967690"],["-90.107740","29.967740"],["-90.107730","29.967740"],["-90.107720","29.967750"],["-90.107700","29.967770"],["-90.107630","29.967840"],["-90.107620","29.967850"],["-90.107610","29.967860"],["-90.107600","29.967870"],["-90.107550","29.967920"],["-90.107520","29.967940"],["-90.107510","29.967950"],["-90.107460","29.968000"],["-90.107380","29.968075"],["-90.107300","29.968150"],["-90.107270","29.968170"],["-90.107170","29.968270"],["-90.107140","29.968300"],["-90.107130","29.968310"],["-90.107060","29.968360"],["-90.107020","29.968400"],["-90.106920","29.968490"],["-90.106820","29.968580"],["-90.106710","29.968680"],["-90.106700","29.968690"],["-90.106620","29.968760"],["-90.106479","29.968766"],["-90.106459","29.968933"],["-90.106356","29.969025"],["-90.106254","29.969117"],["-90.106152","29.969208"],["-90.106050","29.969300"],["-90.105910","29.969430"],["-90.105805","29.969530"],["-90.105700","29.969630"],["-90.105636","29.969574"],["-90.105700","29.969630"],["-90.105630","29.969700"],["-90.105503","29.969820"],["-90.105375","29.969940"],["-90.105248","29.970060"],["-90.105120","29.970180"],["-90.105005","29.970290"],["-90.104890","29.970400"],["-90.104824","29.970349"],["-90.104890","29.970400"],["-90.104820","29.970460"],["-90.104720","29.970554"],["-90.104620","29.970648"],["-90.104520","29.970741"],["-90.104420","29.970835"],["-90.104320","29.970929"],["-90.104220","29.971023"],["-90.104120","29.971116"],["-90.104020","29.971210"],["-90.103940","29.971285"],["-90.103860","29.971360"],["-90.103715","29.971490"],["-90.103570","29.971620"],["-90.103430","29.971760"],["-90.103290","29.971900"],["-90.103209","29.971835"],["-90.103290","29.971900"],["-90.103190","29.971990"],["-90.103120","29.972060"],["-90.103018","29.972153"],["-90.102915","29.972245"],["-90.102813","29.972338"],["-90.102710","29.972430"],["-90.102630","29.972510"],["-90.102500","29.972635"],["-90.102370","29.972760"],["-90.102300","29.972810"],["-90.102260","29.972850"],["-90.102190","29.972910"],["-90.102120","29.972980"],["-90.101980","29.973100"],["-90.101870","29.973210"],["-90.101765","29.973310"],["-90.101660","29.973410"],["-90.101555","29.973510"],["-90.101450","29.973610"],["-90.101380","29.973670"],["-90.101245","29.973795"],["-90.101110","29.973920"],["-90.100985","29.974035"],["-90.100860","29.974150"],["-90.100765","29.974235"],["-90.100670","29.974320"],["-90.100654","29.974308"],["-90.100670","29.974320"],["-90.100600","29.974380"],["-90.100520","29.974450"],["-90.100490","29.974480"],["-90.100480","29.974490"],["-90.100440","29.974530"],["-90.100430","29.974540"],["-90.100335","29.974625"],["-90.100240","29.974710"],["-90.100158","29.974788"],["-90.100075","29.974865"],["-90.099993","29.974943"],["-90.099910","29.975020"],["-90.099840","29.975080"],["-90.099710","29.975200"],["-90.099580","29.975320"],["-90.099435","29.975465"],["-90.099290","29.975610"],["-90.099185","29.975708"],["-90.099080","29.975805"],["-90.098955","29.975881"],["-90.098829","29.975957"],["-90.098809","29.976092"],["-90.098662","29.976229"],["-90.098514","29.976366"],["-90.098367","29.976504"],["-90.098220","29.976641"],["-90.098072","29.976778"],["-90.097925","29.976915"],["-90.097777","29.977053"],["-90.097630","29.977190"],["-90.097480","29.977330"],["-90.097380","29.977420"],["-90.097350","29.977450"],["-90.097260","29.977530"],["-90.097170","29.977610"],["-90.097080","29.977690"],["-90.096990","29.977770"],["-90.096840","29.977910"],["-90.096690","29.978050"],["-90.096675","29.978041"],["-90.096690","29.978050"],["-90.096670","29.978080"],["-90.096573","29.978171"],["-90.096475","29.978263"],["-90.096378","29.978354"],["-90.096280","29.978445"],["-90.096183","29.978536"],["-90.096085","29.978628"],["-90.095988","29.978719"],["-90.095890","29.978810"],["-90.095740","29.978950"],["-90.095590","29.979090"],["-90.095520","29.979038"],["-90.095318","29.978996"],["-90.095192","29.978970"],["-90.095028","29.978859"],["-90.094864","29.978750"],["-90.094790","29.978700"],["-90.094626","29.978589"],["-90.094463","29.978479"],["-90.094298","29.978369"],["-90.094134","29.978259"],["-90.094000","29.978170"],["-90.093836","29.978059"],["-90.093672","29.977949"],["-90.093509","29.977838"],["-90.093345","29.977728"],["-90.093200","29.977630"],["-90.093048","29.977507"],["-90.092896","29.977385"],["-90.092744","29.977262"],["-90.092592","29.977140"],["-90.092572","29.977124"],["-90.092378","29.977061"],["-90.092278","29.977028"],["-90.092116","29.976915"],["-90.091954","29.976803"],["-90.091792","29.976690"],["-90.091690","29.976620"],["-90.091548","29.976489"],["-90.091406","29.976358"],["-90.091264","29.976226"],["-90.091228","29.976193"],["-90.091031","29.976136"],["-90.090930","29.976106"],["-90.090789","29.976020"],["-90.090629","29.975920"],["-90.090479","29.975830"],["-90.090317","29.975718"],["-90.090240","29.975660"],["-90.090108","29.975521"],["-90.089977","29.975382"],["-90.089957","29.975361"],["-90.089781","29.975266"],["-90.089604","29.975171"],["-90.089428","29.975076"],["-90.089252","29.974981"],["-90.089098","29.974860"],["-90.088944","29.974740"],["-90.088790","29.974619"],["-90.088636","29.974498"],["-90.088481","29.974378"],["-90.088457","29.974359"],["-90.088264","29.974293"],["-90.088165","29.974260"],["-90.088000","29.974151"],["-90.087836","29.974041"],["-90.087672","29.973931"],["-90.087506","29.973822"],["-90.087430","29.973770"],["-90.087281","29.973645"],["-90.087131","29.973520"],["-90.086982","29.973395"],["-90.086884","29.973313"],["-90.086699","29.973231"],["-90.086514","29.973149"],["-90.086443","29.973118"],["-90.086280","29.973007"],["-90.086116","29.972896"],["-90.085960","29.972790"],["-90.085797","29.972679"],["-90.085633","29.972568"],["-90.085470","29.972457"],["-90.085306","29.972346"],["-90.085187","29.972199"],["-90.085103","29.972096"],["-90.084925","29.972003"],["-90.084748","29.971910"],["-90.084570","29.971817"],["-90.084392","29.971724"],["-90.084270","29.971660"],["-90.084105","29.971550"],["-90.083941","29.971441"],["-90.083776","29.971331"],["-90.083612","29.971221"],["-90.083440","29.971120"],["-90.083269","29.971018"],["-90.083140","29.970877"],["-90.083051","29.970781"],["-90.082862","29.970706"],["-90.082674","29.970630"],["-90.082508","29.970523"],["-90.082346","29.970410"],["-90.082184","29.970297"],["-90.082023","29.970184"],["-90.081860","29.970072"],["-90.081723","29.969937"],["-90.081586","29.969802"],["-90.081572","29.969788"],["-90.081379","29.969722"],["-90.081277","29.969688"],["-90.081114","29.969576"],["-90.080953","29.969463"],["-90.080790","29.969351"],["-90.080628","29.969239"],["-90.080465","29.969127"],["-90.080309","29.969019"],["-90.080144","29.968910"],["-90.079979","29.968800"],["-90.079814","29.968691"],["-90.079681","29.968553"],["-90.079551","29.968418"],["-90.079357","29.968353"],["-90.079255","29.968319"],["-90.079210","29.968289"],["-90.079047","29.968178"],["-90.078883","29.968067"],["-90.078720","29.967956"],["-90.078557","29.967845"],["-90.078393","29.967734"],["-90.078230","29.967623"],["-90.078066","29.967512"],["-90.077948","29.967365"],["-90.077874","29.967273"],["-90.077688","29.967193"],["-90.077502","29.967113"],["-90.077433","29.967083"],["-90.077289","29.966990"],["-90.077123","29.966882"],["-90.076957","29.966774"],["-90.076790","29.966667"],["-90.076637","29.966545"],["-90.076484","29.966424"],["-90.076331","29.966302"],["-90.076178","29.966181"],["-90.076025","29.966059"],["-90.076010","29.966047"],["-90.075816","29.965982"],["-90.075717","29.965949"],["-90.075553","29.965838"],["-90.075390","29.965727"],["-90.075226","29.965617"],["-90.075063","29.965506"],["-90.075010","29.965470"],["-90.074848","29.965358"],["-90.074685","29.965246"],["-90.074523","29.965133"],["-90.074361","29.965021"],["-90.074199","29.964909"],["-90.074035","29.964798"],["-90.073889","29.964699"],["-90.073743","29.964571"],["-90.073598","29.964443"],["-90.073489","29.964347"],["-90.073450","29.964390"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962940"],["-90.071350","29.962930"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071180","29.962650"],["-90.071140","29.962510"],["-90.071090","29.962350"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074078","29.955755"],["-90.074166","29.955592"],["-90.074254","29.955429"],["-90.074377","29.955284"],["-90.074502","29.955141"],["-90.074628","29.954998"],["-90.074754","29.954855"],["-90.074880","29.954712"],["-90.074960","29.954600"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075232","29.954159"],["-90.075280","29.954073"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.118213","29.916486"],["-90.120045","29.916796"],["-90.123159","29.917509"],["-90.129541","29.925480"],["-90.127368","29.924366"],["-90.126525","29.923986"],["-90.124583","29.923183"],["-90.121623","29.922138"],["-90.119066","29.921524"],["-90.115198","29.920833"],["-90.100595","29.974759"],["-90.103226","29.972294"],["-90.104928","29.970663"],["-90.108449","29.967410"],["-90.075911","29.951058"],["-90.111376","29.964655"],["-90.113837","29.966634"],["-90.116215","29.968596"],["-90.117884","29.967297"],["-90.119385","29.965893"],["-90.120909","29.964488"],["-90.121689","29.963773"],["-90.121613","29.962402"],["-90.123122","29.960996"],["-90.124677","29.959548"],["-90.126434","29.957956"],["-90.127925","29.956524"],["-90.129436","29.955096"],["-90.130951","29.953699"],["-90.132487","29.952279"],["-90.130957","29.950870"],["-90.128438","29.948695"],["-90.129743","29.947465"],["-90.131257","29.946042"],["-90.132783","29.944638"],["-90.077310","29.951484"],["-90.106300","29.969419"],["-90.110015","29.965861"],["-90.117296","29.921143"],["-90.097482","29.977685"],["-90.098925","29.976326"],["-90.082615","29.970783"],["-90.070397","29.959116"],["-90.070267","29.961523"],["-90.071273","29.963222"],["-90.073085","29.964439"],["-90.075668","29.966157"],["-90.077855","29.967598"],["-90.079220","29.968528"],["-90.081251","29.969879"],["-90.085074","29.972456"],["-90.086574","29.973476"],["-90.088324","29.974630"],["-90.090074","29.975802"],["-90.091493","29.977066"],["-90.093649","29.978434"],["-90.094889","29.979248"],["-90.075280","29.954073"],["-90.127478","29.916532"],["-90.131798","29.926631"],["-90.115727","29.918540"]]},{"type":"LineString","coordinates":[["-90.075280","29.954073"],["-90.075309","29.953895"],["-90.075338","29.953717"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075390","29.953469"],["-90.075448","29.953296"],["-90.075505","29.953123"],["-90.075550","29.952990"],["-90.075579","29.952880"],["-90.075637","29.952707"],["-90.075695","29.952535"],["-90.075755","29.952362"],["-90.075790","29.952260"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075826","29.951651"],["-90.075813","29.951471"],["-90.075809","29.951420"],["-90.075858","29.951245"],["-90.075907","29.951071"],["-90.075911","29.951058"],["-90.076117","29.951080"],["-90.076323","29.951102"],["-90.076408","29.951111"],["-90.076490","29.951140"],["-90.076684","29.951205"],["-90.076820","29.951250"],["-90.077014","29.951315"],["-90.077187","29.951414"],["-90.077310","29.951484"],["-90.077340","29.951420"],["-90.077450","29.951460"],["-90.077580","29.951490"],["-90.077750","29.951550"],["-90.077860","29.951600"],["-90.077975","29.951655"],["-90.078090","29.951710"],["-90.078205","29.951765"],["-90.078320","29.951820"],["-90.078300","29.951880"],["-90.078280","29.951950"],["-90.078245","29.952065"],["-90.078210","29.952180"],["-90.078160","29.952340"],["-90.078130","29.952440"],["-90.078100","29.952540"],["-90.078063","29.952663"],["-90.078025","29.952785"],["-90.077988","29.952908"],["-90.077950","29.953030"],["-90.077840","29.952985"],["-90.077730","29.952940"],["-90.077599","29.952890"],["-90.077467","29.952840"],["-90.077336","29.952790"],["-90.077205","29.952740"],["-90.077074","29.952690"],["-90.076942","29.952640"],["-90.076811","29.952590"],["-90.076680","29.952540"],["-90.076567","29.952498"],["-90.076455","29.952455"],["-90.076342","29.952413"],["-90.076230","29.952370"],["-90.076170","29.952340"],["-90.076040","29.952290"],["-90.075910","29.952240"],["-90.075820","29.952230"],["-90.075750","29.952260"],["-90.075740","29.952260"],["-90.075670","29.952290"],["-90.075600","29.952330"],["-90.075550","29.952370"],["-90.075500","29.952410"],["-90.075450","29.952480"],["-90.075415","29.952595"],["-90.075380","29.952710"],["-90.075340","29.952820"],["-90.075310","29.952930"],["-90.075265","29.953080"],["-90.075220","29.953230"],["-90.075180","29.953350"],["-90.075160","29.953430"],["-90.075140","29.953480"],["-90.075100","29.953625"],["-90.075060","29.953770"],["-90.075020","29.953920"],["-90.074980","29.954040"],["-90.074950","29.954130"],["-90.074900","29.954220"],["-90.074890","29.954250"],["-90.074850","29.954300"],["-90.074760","29.954410"],["-90.074700","29.954470"],["-90.074600","29.954570"],["-90.074560","29.954620"],["-90.074500","29.954680"],["-90.074425","29.954755"],["-90.074350","29.954830"],["-90.074280","29.954910"],["-90.074200","29.955000"],["-90.074120","29.955090"],["-90.073990","29.955230"],["-90.073858","29.955380"],["-90.073725","29.955530"],["-90.073593","29.955680"],["-90.073460","29.955830"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071990","29.957490"],["-90.071880","29.957610"],["-90.071797","29.957551"],["-90.071880","29.957610"],["-90.071780","29.957720"],["-90.071655","29.957860"],["-90.071530","29.958000"],["-90.071405","29.958140"],["-90.071280","29.958280"],["-90.071170","29.958405"],["-90.071060","29.958530"],["-90.070968","29.958635"],["-90.070875","29.958740"],["-90.070783","29.958845"],["-90.070690","29.958950"],["-90.070590","29.959065"],["-90.070490","29.959180"],["-90.070397","29.959116"],["-90.070490","29.959180"],["-90.070400","29.959270"],["-90.070315","29.959365"],["-90.070230","29.959460"],["-90.070120","29.959600"],["-90.070040","29.959690"],["-90.069970","29.959790"],["-90.069950","29.959820"],["-90.069910","29.959890"],["-90.069890","29.959940"],["-90.069880","29.959960"],["-90.069870","29.959990"],["-90.069860","29.960020"],["-90.069850","29.960090"],["-90.069830","29.960180"],["-90.069820","29.960240"],["-90.069790","29.960310"],["-90.069790","29.960410"],["-90.069800","29.960480"],["-90.069810","29.960540"],["-90.069820","29.960620"],["-90.069830","29.960670"],["-90.069850","29.960730"],["-90.069860","29.960780"],["-90.069880","29.960830"],["-90.069930","29.960940"],["-90.069980","29.961030"],["-90.070030","29.961100"],["-90.070070","29.961160"],["-90.070120","29.961210"],["-90.070230","29.961320"],["-90.070280","29.961370"],["-90.070267","29.961523"],["-90.070458","29.961594"],["-90.070560","29.961632"],["-90.070599","29.961669"],["-90.070712","29.961820"],["-90.070788","29.961987"],["-90.070863","29.962155"],["-90.070913","29.962330"],["-90.070964","29.962504"],["-90.070989","29.962590"],["-90.071053","29.962761"],["-90.071079","29.962829"],["-90.071110","29.962889"],["-90.071130","29.962930"],["-90.071211","29.963096"],["-90.071273","29.963222"],["-90.071459","29.963302"],["-90.071645","29.963382"],["-90.071722","29.963415"],["-90.071889","29.963522"],["-90.072053","29.963632"],["-90.072169","29.963709"],["-90.072332","29.963821"],["-90.072494","29.963933"],["-90.072657","29.964045"],["-90.072819","29.964157"],["-90.072950","29.964296"],["-90.073085","29.964439"],["-90.073277","29.964508"],["-90.073445","29.964569"],["-90.073610","29.964678"],["-90.073775","29.964787"],["-90.073840","29.964830"],["-90.074010","29.964933"],["-90.074120","29.965000"],["-90.074282","29.965112"],["-90.074445","29.965224"],["-90.074607","29.965337"],["-90.074769","29.965449"],["-90.074931","29.965561"],["-90.075083","29.965684"],["-90.075235","29.965807"],["-90.075387","29.965929"],["-90.075538","29.966052"],["-90.075668","29.966157"],["-90.075864","29.966217"],["-90.075972","29.966250"],["-90.076136","29.966361"],["-90.076299","29.966472"],["-90.076462","29.966583"],["-90.076626","29.966694"],["-90.076709","29.966750"],["-90.076876","29.966857"],["-90.077043","29.966963"],["-90.077211","29.967070"],["-90.077378","29.967177"],["-90.077540","29.967280"],["-90.077600","29.967319"],["-90.077670","29.967360"],["-90.077786","29.967509"],["-90.077855","29.967598"],["-90.078034","29.967689"],["-90.078213","29.967780"],["-90.078393","29.967871"],["-90.078490","29.967920"],["-90.078652","29.968032"],["-90.078814","29.968145"],["-90.078976","29.968257"],["-90.079104","29.968399"],["-90.079220","29.968528"],["-90.079416","29.968588"],["-90.079515","29.968618"],["-90.079680","29.968727"],["-90.079729","29.968759"],["-90.079895","29.968867"],["-90.080060","29.968976"],["-90.080226","29.969084"],["-90.080381","29.969204"],["-90.080536","29.969324"],["-90.080690","29.969444"],["-90.080845","29.969564"],["-90.081000","29.969684"],["-90.081154","29.969804"],["-90.081251","29.969879"],["-90.081436","29.969961"],["-90.081621","29.970042"],["-90.081708","29.970081"],["-90.081872","29.970191"],["-90.081929","29.970230"],["-90.082096","29.970337"],["-90.082264","29.970443"],["-90.082320","29.970479"],["-90.082454","29.970617"],["-90.082587","29.970754"],["-90.082615","29.970783"],["-90.082800","29.970864"],["-90.082985","29.970946"],["-90.083043","29.970971"],["-90.083206","29.971082"],["-90.083369","29.971194"],["-90.083533","29.971305"],["-90.083695","29.971417"],["-90.083858","29.971528"],["-90.084021","29.971640"],["-90.084179","29.971749"],["-90.084343","29.971859"],["-90.084507","29.971969"],["-90.084672","29.972079"],["-90.084836","29.972190"],["-90.084963","29.972332"],["-90.085074","29.972456"],["-90.085250","29.972551"],["-90.085426","29.972647"],["-90.085602","29.972743"],["-90.085777","29.972839"],["-90.085870","29.972889"],["-90.086020","29.973014"],["-90.086169","29.973138"],["-90.086319","29.973263"],["-90.086468","29.973388"],["-90.086574","29.973476"],["-90.086761","29.973553"],["-90.086949","29.973631"],["-90.087031","29.973665"],["-90.087197","29.973773"],["-90.087330","29.973860"],["-90.087494","29.973970"],["-90.087658","29.974080"],["-90.087823","29.974190"],["-90.087987","29.974300"],["-90.088125","29.974435"],["-90.088262","29.974569"],["-90.088324","29.974630"],["-90.088500","29.974726"],["-90.088675","29.974822"],["-90.088851","29.974917"],["-90.089027","29.975013"],["-90.089150","29.975080"],["-90.089304","29.975200"],["-90.089458","29.975321"],["-90.089613","29.975441"],["-90.089767","29.975562"],["-90.089921","29.975682"],["-90.090074","29.975802"],["-90.090265","29.975874"],["-90.090439","29.975939"],["-90.090560","29.976029"],["-90.090709","29.976129"],["-90.090830","29.976220"],["-90.090954","29.976364"],["-90.091020","29.976440"],["-90.091130","29.976570"],["-90.091240","29.976700"],["-90.091347","29.976854"],["-90.091453","29.977009"],["-90.091493","29.977066"],["-90.091680","29.977144"],["-90.091867","29.977222"],["-90.092054","29.977301"],["-90.092220","29.977370"],["-90.092385","29.977480"],["-90.092549","29.977589"],["-90.092714","29.977699"],["-90.092878","29.977809"],["-90.092970","29.977870"],["-90.093120","29.977994"],["-90.093270","29.978119"],["-90.093420","29.978243"],["-90.093569","29.978368"],["-90.093649","29.978434"],["-90.093846","29.978490"],["-90.093945","29.978518"],["-90.094110","29.978628"],["-90.094274","29.978737"],["-90.094399","29.978820"],["-90.094566","29.978927"],["-90.094702","29.979063"],["-90.094839","29.979198"],["-90.094889","29.979248"],["-90.095076","29.979326"],["-90.095263","29.979404"],["-90.095410","29.979500"],["-90.095555","29.979371"],["-90.095659","29.979279"],["-90.095799","29.979146"],["-90.095939","29.979013"],["-90.096059","29.978900"],["-90.096200","29.978768"],["-90.096341","29.978636"],["-90.096482","29.978504"],["-90.096623","29.978372"],["-90.096764","29.978240"],["-90.096819","29.978189"],["-90.096940","29.978080"],["-90.097078","29.977946"],["-90.097199","29.977829"],["-90.097378","29.977738"],["-90.097482","29.977685"],["-90.097463","29.977625"],["-90.097538","29.977545"],["-90.097612","29.977465"],["-90.097686","29.977386"],["-90.097760","29.977306"],["-90.097901","29.977173"],["-90.098041","29.977041"],["-90.098182","29.976908"],["-90.098323","29.976777"],["-90.098466","29.976645"],["-90.098600","29.976520"],["-90.098771","29.976418"],["-90.098925","29.976326"],["-90.099030","29.976171"],["-90.099136","29.976016"],["-90.099275","29.975883"],["-90.099416","29.975751"],["-90.099555","29.975617"],["-90.099693","29.975483"],["-90.099759","29.975419"],["-90.099905","29.975291"],["-90.100051","29.975163"],["-90.100209","29.975046"],["-90.100366","29.974929"],["-90.100524","29.974812"],["-90.100595","29.974759"],["-90.100682","29.974596"],["-90.100726","29.974514"],["-90.100866","29.974382"],["-90.101007","29.974249"],["-90.101147","29.974117"],["-90.101250","29.974020"],["-90.101392","29.973889"],["-90.101535","29.973758"],["-90.101599","29.973699"],["-90.101741","29.973568"],["-90.101883","29.973437"],["-90.102025","29.973305"],["-90.102167","29.973174"],["-90.102309","29.973043"],["-90.102410","29.972950"],["-90.102548","29.972816"],["-90.102687","29.972682"],["-90.102750","29.972620"],["-90.102913","29.972508"],["-90.103076","29.972397"],["-90.103226","29.972294"],["-90.103330","29.972138"],["-90.103430","29.971987"],["-90.103569","29.971854"],["-90.103709","29.971721"],["-90.103854","29.971592"],["-90.103999","29.971463"],["-90.104143","29.971334"],["-90.104285","29.971203"],["-90.104428","29.971071"],["-90.104579","29.970948"],["-90.104730","29.970825"],["-90.104881","29.970701"],["-90.104928","29.970663"],["-90.105043","29.970513"],["-90.105109","29.970426"],["-90.105249","29.970293"],["-90.105389","29.970161"],["-90.105531","29.970029"],["-90.105673","29.969898"],["-90.105779","29.969800"],["-90.105921","29.969669"],["-90.106030","29.969569"],["-90.106205","29.969472"],["-90.106300","29.969419"],["-90.106411","29.969267"],["-90.106523","29.969116"],["-90.106549","29.969080"],["-90.106692","29.968950"],["-90.106835","29.968820"],["-90.106880","29.968779"],["-90.106989","29.968669"],["-90.107131","29.968538"],["-90.107272","29.968406"],["-90.107414","29.968275"],["-90.107559","29.968146"],["-90.107600","29.968110"],["-90.107660","29.968050"],["-90.107720","29.968000"],["-90.107780","29.967940"],["-90.107870","29.967850"],["-90.107940","29.967780"],["-90.108020","29.967699"],["-90.108184","29.967589"],["-90.108348","29.967478"],["-90.108449","29.967410"],["-90.108540","29.967248"],["-90.108590","29.967159"],["-90.108733","29.967029"],["-90.108809","29.966959"],["-90.108948","29.966825"],["-90.109086","29.966691"],["-90.109119","29.966660"],["-90.109261","29.966529"],["-90.109402","29.966397"],["-90.109538","29.966261"],["-90.109679","29.966129"],["-90.109832","29.966007"],["-90.109985","29.965885"],["-90.110015","29.965861"],["-90.110144","29.965720"],["-90.110273","29.965579"],["-90.110311","29.965538"],["-90.110452","29.965406"],["-90.110593","29.965274"],["-90.110675","29.965193"],["-90.110757","29.965111"],["-90.110839","29.965030"],["-90.110922","29.964949"],["-90.111004","29.964867"],["-90.111086","29.964786"],["-90.111168","29.964704"],["-90.111250","29.964623"],["-90.111376","29.964655"],["-90.111485","29.964686"],["-90.111593","29.964716"],["-90.111731","29.964828"],["-90.111869","29.964940"],["-90.112007","29.965052"],["-90.112145","29.965163"],["-90.112282","29.965275"],["-90.112420","29.965387"],["-90.112558","29.965499"],["-90.112696","29.965611"],["-90.112834","29.965722"],["-90.112971","29.965834"],["-90.113109","29.965946"],["-90.113247","29.966058"],["-90.113385","29.966170"],["-90.113523","29.966282"],["-90.113660","29.966393"],["-90.113798","29.966505"],["-90.113837","29.966634"],["-90.113968","29.966690"],["-90.114099","29.966747"],["-90.114228","29.966853"],["-90.114358","29.966959"],["-90.114488","29.967065"],["-90.114618","29.967171"],["-90.114747","29.967277"],["-90.114877","29.967383"],["-90.115007","29.967489"],["-90.115137","29.967595"],["-90.115266","29.967701"],["-90.115396","29.967807"],["-90.115526","29.967913"],["-90.115656","29.968019"],["-90.115785","29.968125"],["-90.115915","29.968231"],["-90.116045","29.968337"],["-90.116175","29.968443"],["-90.116215","29.968596"],["-90.116411","29.968624"],["-90.116491","29.968549"],["-90.116572","29.968473"],["-90.116653","29.968397"],["-90.116734","29.968321"],["-90.116815","29.968245"],["-90.116895","29.968170"],["-90.116976","29.968094"],["-90.117057","29.968018"],["-90.117138","29.967942"],["-90.117219","29.967866"],["-90.117299","29.967791"],["-90.117380","29.967715"],["-90.117461","29.967639"],["-90.117542","29.967563"],["-90.117623","29.967487"],["-90.117703","29.967411"],["-90.117794","29.967354"],["-90.117884","29.967297"],["-90.117969","29.967214"],["-90.118055","29.967130"],["-90.118140","29.967047"],["-90.118225","29.966964"],["-90.118311","29.966880"],["-90.118396","29.966797"],["-90.118481","29.966714"],["-90.118567","29.966630"],["-90.118652","29.966547"],["-90.118737","29.966464"],["-90.118823","29.966380"],["-90.118908","29.966297"],["-90.118993","29.966214"],["-90.119079","29.966130"],["-90.119164","29.966047"],["-90.119249","29.965964"],["-90.119385","29.965893"],["-90.119416","29.965820"],["-90.119504","29.965738"],["-90.119593","29.965656"],["-90.119681","29.965574"],["-90.119770","29.965492"],["-90.119858","29.965410"],["-90.119946","29.965328"],["-90.120035","29.965246"],["-90.120123","29.965164"],["-90.120212","29.965082"],["-90.120300","29.965000"],["-90.120389","29.964918"],["-90.120477","29.964836"],["-90.120566","29.964754"],["-90.120654","29.964672"],["-90.120743","29.964590"],["-90.120831","29.964508"],["-90.120909","29.964488"],["-90.120996","29.964370"],["-90.121083","29.964252"],["-90.121202","29.964140"],["-90.121322","29.964029"],["-90.121441","29.963917"],["-90.121561","29.963806"],["-90.121689","29.963773"],["-90.121662","29.963648"],["-90.121563","29.963570"],["-90.121464","29.963492"],["-90.121365","29.963414"],["-90.121265","29.963336"],["-90.121166","29.963259"],["-90.121067","29.963181"],["-90.120968","29.963103"],["-90.120869","29.963025"],["-90.120962","29.962947"],["-90.121055","29.962869"],["-90.121148","29.962791"],["-90.121241","29.962714"],["-90.121334","29.962636"],["-90.121427","29.962558"],["-90.121520","29.962480"],["-90.121613","29.962402"],["-90.121698","29.962318"],["-90.121783","29.962234"],["-90.121869","29.962149"],["-90.121954","29.962065"],["-90.122039","29.961981"],["-90.122124","29.961897"],["-90.122210","29.961812"],["-90.122295","29.961728"],["-90.122380","29.961644"],["-90.122465","29.961560"],["-90.122551","29.961476"],["-90.122636","29.961391"],["-90.122721","29.961307"],["-90.122806","29.961223"],["-90.122892","29.961139"],["-90.122977","29.961055"],["-90.123122","29.960996"],["-90.123197","29.960897"],["-90.123278","29.960815"],["-90.123360","29.960734"],["-90.123442","29.960653"],["-90.123524","29.960571"],["-90.123605","29.960490"],["-90.123687","29.960409"],["-90.123769","29.960328"],["-90.123850","29.960246"],["-90.123932","29.960165"],["-90.124014","29.960084"],["-90.124096","29.960002"],["-90.124177","29.959921"],["-90.124259","29.959840"],["-90.124341","29.959759"],["-90.124422","29.959677"],["-90.124504","29.959596"],["-90.124677","29.959548"],["-90.124677","29.959548"],["-90.124724","29.959438"],["-90.124846","29.959324"],["-90.124967","29.959209"],["-90.125087","29.959095"],["-90.125207","29.958982"],["-90.125327","29.958868"],["-90.125447","29.958754"],["-90.125567","29.958640"],["-90.125687","29.958526"],["-90.125787","29.958431"],["-90.125887","29.958337"],["-90.125987","29.958242"],["-90.126087","29.958147"],["-90.126188","29.958053"],["-90.126288","29.957958"],["-90.126388","29.957863"],["-90.126434","29.957956"],["-90.126500","29.957777"],["-90.126609","29.957664"],["-90.126717","29.957550"],["-90.126860","29.957420"],["-90.127003","29.957290"],["-90.127146","29.957160"],["-90.127190","29.957120"],["-90.127342","29.956997"],["-90.127493","29.956874"],["-90.127645","29.956751"],["-90.127796","29.956628"],["-90.127925","29.956524"],["-90.128034","29.956371"],["-90.128100","29.956277"],["-90.128240","29.956144"],["-90.128380","29.956012"],["-90.128520","29.955879"],["-90.128660","29.955746"],["-90.128809","29.955621"],["-90.128959","29.955496"],["-90.129108","29.955371"],["-90.129257","29.955246"],["-90.129406","29.955121"],["-90.129436","29.955096"],["-90.129553","29.954948"],["-90.129671","29.954799"],["-90.129718","29.954740"],["-90.129863","29.954611"],["-90.130007","29.954481"],["-90.130151","29.954352"],["-90.130209","29.954300"],["-90.130361","29.954177"],["-90.130512","29.954054"],["-90.130664","29.953932"],["-90.130816","29.953809"],["-90.130951","29.953699"],["-90.131053","29.953542"],["-90.131113","29.953450"],["-90.131257","29.953320"],["-90.131400","29.953190"],["-90.131543","29.953060"],["-90.131686","29.952930"],["-90.131730","29.952890"],["-90.131882","29.952767"],["-90.132034","29.952645"],["-90.132186","29.952522"],["-90.132338","29.952400"],["-90.132487","29.952279"],["-90.132360","29.952137"],["-90.132234","29.951994"],["-90.132174","29.951927"],["-90.132021","29.951805"],["-90.131868","29.951684"],["-90.131715","29.951562"],["-90.131650","29.951510"],["-90.131508","29.951379"],["-90.131366","29.951248"],["-90.131224","29.951116"],["-90.131082","29.950985"],["-90.130957","29.950870"],["-90.130780","29.950776"],["-90.130688","29.950728"],["-90.130536","29.950605"],["-90.130384","29.950483"],["-90.130232","29.950360"],["-90.130080","29.950238"],["-90.130020","29.950190"],["-90.129869","29.950067"],["-90.129717","29.949944"],["-90.129566","29.949821"],["-90.129415","29.949697"],["-90.129264","29.949574"],["-90.129160","29.949490"],["-90.129010","29.949365"],["-90.128860","29.949241"],["-90.128711","29.949116"],["-90.128561","29.948992"],["-90.128491","29.948823"],["-90.128438","29.948695"],["-90.128567","29.948554"],["-90.128696","29.948413"],["-90.128825","29.948272"],["-90.128954","29.948131"],["-90.129020","29.948059"],["-90.129162","29.947928"],["-90.129279","29.947820"],["-90.129421","29.947689"],["-90.129583","29.947576"],["-90.129743","29.947465"],["-90.129852","29.947312"],["-90.129920","29.947216"],["-90.129980","29.947159"],["-90.130120","29.947026"],["-90.130260","29.946894"],["-90.130400","29.946761"],["-90.130529","29.946639"],["-90.130670","29.946507"],["-90.130810","29.946375"],["-90.130951","29.946242"],["-90.131117","29.946134"],["-90.131257","29.946042"],["-90.131361","29.945887"],["-90.131421","29.945798"],["-90.131563","29.945667"],["-90.131704","29.945535"],["-90.131845","29.945403"],["-90.131962","29.945307"],["-90.132080","29.945212"],["-90.132197","29.945116"],["-90.132314","29.945021"],["-90.132431","29.944925"],["-90.132549","29.944829"],["-90.132666","29.944734"],["-90.132783","29.944638"],["-90.132740","29.944610"],["-90.132820","29.944540"],["-90.132945","29.944420"],["-90.133070","29.944300"],["-90.133163","29.944213"],["-90.133255","29.944125"],["-90.133348","29.944038"],["-90.133440","29.943950"],["-90.133520","29.943870"],["-90.133615","29.943780"],["-90.133710","29.943690"],["-90.133855","29.943555"],["-90.134000","29.943420"],["-90.134105","29.943325"],["-90.134210","29.943230"],["-90.134350","29.943100"],["-90.134390","29.943060"],["-90.134500","29.942960"],["-90.134595","29.942870"],["-90.134690","29.942780"],["-90.134660","29.942625"],["-90.134630","29.942470"],["-90.134630","29.942450"],["-90.134614","29.942304"],["-90.134597","29.942158"],["-90.134581","29.942011"],["-90.134565","29.941865"],["-90.134549","29.941719"],["-90.134532","29.941573"],["-90.134516","29.941426"],["-90.134500","29.941280"],["-90.134480","29.941130"],["-90.134460","29.940980"],["-90.134440","29.940830"],["-90.134420","29.940680"],["-90.134400","29.940530"],["-90.134387","29.940425"],["-90.134375","29.940320"],["-90.134362","29.940215"],["-90.134350","29.940110"],["-90.134332","29.939980"],["-90.134315","29.939850"],["-90.134297","29.939720"],["-90.134280","29.939590"],["-90.134262","29.939460"],["-90.134245","29.939330"],["-90.134227","29.939200"],["-90.134210","29.939070"],["-90.134200","29.938965"],["-90.134190","29.938860"],["-90.134170","29.938760"],["-90.134152","29.938626"],["-90.134135","29.938493"],["-90.134117","29.938359"],["-90.134100","29.938225"],["-90.134082","29.938091"],["-90.134065","29.937958"],["-90.134047","29.937824"],["-90.134030","29.937690"],["-90.134020","29.937590"],["-90.134002","29.937460"],["-90.133985","29.937330"],["-90.133967","29.937200"],["-90.133950","29.937070"],["-90.133940","29.936950"],["-90.133925","29.936830"],["-90.133910","29.936710"],["-90.133880","29.936520"],["-90.133880","29.936470"],["-90.133860","29.936330"],["-90.133840","29.936190"],["-90.133820","29.936050"],["-90.133800","29.935910"],["-90.133800","29.935880"],["-90.133780","29.935710"],["-90.133760","29.935540"],["-90.133745","29.935430"],["-90.133730","29.935320"],["-90.133720","29.935240"],["-90.133690","29.935110"],["-90.133690","29.935000"],["-90.133670","29.934840"],["-90.133660","29.934700"],["-90.133650","29.934550"],["-90.133650","29.934370"],["-90.133645","29.934185"],["-90.133640","29.934000"],["-90.133640","29.933910"],["-90.133630","29.933800"],["-90.133633","29.933703"],["-90.133635","29.933605"],["-90.133638","29.933508"],["-90.133640","29.933410"],["-90.133640","29.933220"],["-90.133630","29.933080"],["-90.133630","29.932980"],["-90.133630","29.932880"],["-90.133630","29.932780"],["-90.133630","29.932680"],["-90.133630","29.932530"],["-90.133629","29.932361"],["-90.133627","29.932193"],["-90.133626","29.932024"],["-90.133625","29.931855"],["-90.133624","29.931686"],["-90.133622","29.931518"],["-90.133621","29.931349"],["-90.133620","29.931180"],["-90.133620","29.931064"],["-90.133620","29.930948"],["-90.133620","29.930831"],["-90.133620","29.930715"],["-90.133620","29.930599"],["-90.133620","29.930483"],["-90.133620","29.930366"],["-90.133620","29.930250"],["-90.133619","29.930093"],["-90.133617","29.929935"],["-90.133616","29.929778"],["-90.133615","29.929620"],["-90.133614","29.929463"],["-90.133612","29.929305"],["-90.133611","29.929148"],["-90.133610","29.928990"],["-90.133610","29.928890"],["-90.133610","29.928790"],["-90.133600","29.928660"],["-90.133600","29.928610"],["-90.133600","29.928570"],["-90.133600","29.928470"],["-90.133600","29.928370"],["-90.133600","29.928270"],["-90.133600","29.928170"],["-90.133595","29.928010"],["-90.133590","29.927850"],["-90.133580","29.927760"],["-90.133460","29.927675"],["-90.133340","29.927590"],["-90.133200","29.927505"],["-90.133060","29.927420"],["-90.132942","29.927350"],["-90.132825","29.927280"],["-90.132707","29.927210"],["-90.132590","29.927140"],["-90.132485","29.927080"],["-90.132380","29.927020"],["-90.132265","29.926950"],["-90.132150","29.926880"],["-90.132070","29.926830"],["-90.132020","29.926770"],["-90.131930","29.926720"],["-90.131790","29.926650"],["-90.131798","29.926631"],["-90.131790","29.926650"],["-90.131740","29.926620"],["-90.131642","29.926573"],["-90.131545","29.926525"],["-90.131447","29.926478"],["-90.131350","29.926430"],["-90.131240","29.926370"],["-90.131142","29.926321"],["-90.131045","29.926271"],["-90.130947","29.926222"],["-90.130850","29.926173"],["-90.130752","29.926123"],["-90.130655","29.926074"],["-90.130557","29.926024"],["-90.130460","29.925975"],["-90.130362","29.925926"],["-90.130265","29.925876"],["-90.130167","29.925827"],["-90.130070","29.925778"],["-90.129972","29.925728"],["-90.129875","29.925679"],["-90.129777","29.925629"],["-90.129680","29.925580"],["-90.129530","29.925500"],["-90.129541","29.925480"],["-90.129530","29.925500"],["-90.129420","29.925450"],["-90.129305","29.925393"],["-90.129190","29.925335"],["-90.129075","29.925278"],["-90.128960","29.925220"],["-90.128859","29.925169"],["-90.128757","29.925119"],["-90.128656","29.925068"],["-90.128555","29.925018"],["-90.128454","29.924967"],["-90.128352","29.924916"],["-90.128251","29.924866"],["-90.128150","29.924815"],["-90.128049","29.924764"],["-90.127947","29.924714"],["-90.127846","29.924663"],["-90.127745","29.924613"],["-90.127644","29.924562"],["-90.127542","29.924511"],["-90.127441","29.924461"],["-90.127368","29.924366"],["-90.127251","29.924360"],["-90.127130","29.924301"],["-90.127009","29.924242"],["-90.126888","29.924184"],["-90.126768","29.924125"],["-90.126626","29.924095"],["-90.126525","29.923986"],["-90.126381","29.923999"],["-90.126270","29.923953"],["-90.126158","29.923907"],["-90.126047","29.923861"],["-90.125935","29.923815"],["-90.125823","29.923768"],["-90.125712","29.923722"],["-90.125600","29.923676"],["-90.125488","29.923630"],["-90.125377","29.923583"],["-90.125265","29.923537"],["-90.125153","29.923491"],["-90.125042","29.923445"],["-90.124930","29.923399"],["-90.124818","29.923352"],["-90.124707","29.923306"],["-90.124595","29.923260"],["-90.124583","29.923183"],["-90.124442","29.923190"],["-90.124277","29.923124"],["-90.124112","29.923058"],["-90.123947","29.922992"],["-90.123782","29.922925"],["-90.123664","29.922880"],["-90.123545","29.922835"],["-90.123426","29.922789"],["-90.123308","29.922744"],["-90.123161","29.922692"],["-90.123014","29.922641"],["-90.122868","29.922589"],["-90.122721","29.922537"],["-90.122592","29.922496"],["-90.122464","29.922455"],["-90.122336","29.922414"],["-90.122207","29.922373"],["-90.122079","29.922332"],["-90.121950","29.922291"],["-90.121822","29.922250"],["-90.121694","29.922210"],["-90.121623","29.922138"],["-90.121498","29.922142"],["-90.121308","29.922082"],["-90.121117","29.922023"],["-90.120927","29.921964"],["-90.120736","29.921904"],["-90.120524","29.921864"],["-90.120312","29.921824"],["-90.120100","29.921783"],["-90.119889","29.921743"],["-90.119704","29.921703"],["-90.119520","29.921663"],["-90.119335","29.921623"],["-90.119151","29.921583"],["-90.119066","29.921524"],["-90.118931","29.921543"],["-90.118809","29.921519"],["-90.118688","29.921495"],["-90.118566","29.921471"],["-90.118444","29.921447"],["-90.118322","29.921423"],["-90.118201","29.921398"],["-90.118079","29.921374"],["-90.117957","29.921350"],["-90.117836","29.921326"],["-90.117715","29.921301"],["-90.117593","29.921277"],["-90.117472","29.921253"],["-90.117296","29.921143"],["-90.117213","29.921219"],["-90.117084","29.921200"],["-90.116956","29.921182"],["-90.116791","29.921158"],["-90.116626","29.921134"],["-90.116503","29.921117"],["-90.116380","29.921099"],["-90.116266","29.921080"],["-90.116151","29.921061"],["-90.116036","29.921042"],["-90.115922","29.921023"],["-90.115807","29.921004"],["-90.115692","29.920985"],["-90.115577","29.920966"],["-90.115463","29.920947"],["-90.115330","29.920890"],["-90.115198","29.920833"],["-90.115125","29.920836"],["-90.115138","29.920703"],["-90.115152","29.920571"],["-90.115182","29.920452"],["-90.115212","29.920334"],["-90.115242","29.920216"],["-90.115272","29.920098"],["-90.115302","29.919979"],["-90.115333","29.919861"],["-90.115363","29.919743"],["-90.115393","29.919625"],["-90.115423","29.919506"],["-90.115453","29.919388"],["-90.115484","29.919270"],["-90.115514","29.919151"],["-90.115544","29.919033"],["-90.115574","29.918915"],["-90.115604","29.918797"],["-90.115634","29.918678"],["-90.115727","29.918540"],["-90.115713","29.918388"],["-90.115737","29.918282"],["-90.115760","29.918177"],["-90.115784","29.918071"],["-90.115807","29.917965"],["-90.115836","29.917854"],["-90.115866","29.917743"],["-90.115895","29.917632"],["-90.115925","29.917521"],["-90.115954","29.917409"],["-90.115983","29.917298"],["-90.116013","29.917187"],["-90.116042","29.917076"],["-90.116075","29.916953"],["-90.116108","29.916829"],["-90.116141","29.916706"],["-90.116174","29.916582"],["-90.116207","29.916459"],["-90.116322","29.916456"],["-90.116437","29.916453"],["-90.116553","29.916450"],["-90.116668","29.916447"],["-90.116783","29.916444"],["-90.116899","29.916441"],["-90.117014","29.916438"],["-90.117129","29.916436"],["-90.117245","29.916433"],["-90.117360","29.916430"],["-90.117475","29.916427"],["-90.117591","29.916424"],["-90.117706","29.916421"],["-90.117821","29.916418"],["-90.117937","29.916415"],["-90.118052","29.916412"],["-90.118213","29.916486"],["-90.118408","29.916400"],["-90.118603","29.916441"],["-90.118798","29.916481"],["-90.118993","29.916522"],["-90.119188","29.916563"],["-90.119383","29.916604"],["-90.119579","29.916644"],["-90.119774","29.916685"],["-90.119969","29.916726"],["-90.120045","29.916796"],["-90.120168","29.916798"],["-90.120291","29.916800"],["-90.120507","29.916842"],["-90.120723","29.916885"],["-90.120938","29.916927"],["-90.121154","29.916970"],["-90.121370","29.917012"],["-90.121586","29.917055"],["-90.121802","29.917097"],["-90.122018","29.917139"],["-90.122150","29.917177"],["-90.122282","29.917215"],["-90.122414","29.917253"],["-90.122546","29.917290"],["-90.122679","29.917328"],["-90.122811","29.917366"],["-90.122943","29.917404"],["-90.123075","29.917442"],["-90.123159","29.917509"],["-90.123332","29.917474"],["-90.123376","29.917356"],["-90.123419","29.917239"],["-90.123462","29.917121"],["-90.123505","29.917003"],["-90.123549","29.916886"],["-90.123592","29.916768"],["-90.123635","29.916650"],["-90.123678","29.916533"],["-90.123722","29.916415"],["-90.123765","29.916297"],["-90.123808","29.916180"],["-90.123851","29.916062"],["-90.123895","29.915944"],["-90.123938","29.915826"],["-90.123981","29.915709"],["-90.124024","29.915591"],["-90.124132","29.915620"],["-90.124240","29.915650"],["-90.124348","29.915679"],["-90.124456","29.915709"],["-90.124564","29.915738"],["-90.124672","29.915767"],["-90.124780","29.915797"],["-90.124888","29.915826"],["-90.124996","29.915856"],["-90.125104","29.915885"],["-90.125212","29.915915"],["-90.125319","29.915944"],["-90.125427","29.915973"],["-90.125535","29.916003"],["-90.125643","29.916032"],["-90.125751","29.916062"],["-90.125859","29.916091"],["-90.125967","29.916120"],["-90.126075","29.916150"],["-90.126183","29.916179"],["-90.126291","29.916209"],["-90.126399","29.916238"],["-90.126507","29.916267"],["-90.126615","29.916297"],["-90.126723","29.916326"],["-90.126830","29.916356"],["-90.126938","29.916385"],["-90.127046","29.916414"],["-90.127154","29.916444"],["-90.127262","29.916473"],["-90.127370","29.916503"],["-90.127478","29.916532"],["-90.127478","29.916532"]]}]}},{"type":"Feature","properties":{"route_id":"4","agency_id":"1","route_short_name":"4","route_long_name":"Chalmette Ferry","route_type":"4","route_color":"#c0c0c0","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-89.970874","29.928224"],["-89.973402","29.922004"]]},{"type":"LineString","coordinates":[["-89.970874","29.928224"],["-89.970914","29.928127"],["-89.970953","29.928030"],["-89.970993","29.927932"],["-89.971032","29.927835"],["-89.971072","29.927738"],["-89.971111","29.927641"],["-89.971151","29.927544"],["-89.971190","29.927447"],["-89.971230","29.927349"],["-89.971269","29.927252"],["-89.971309","29.927155"],["-89.971348","29.927058"],["-89.971388","29.926961"],["-89.971427","29.926863"],["-89.971467","29.926766"],["-89.971506","29.926669"],["-89.971546","29.926572"],["-89.971585","29.926475"],["-89.971625","29.926377"],["-89.971664","29.926280"],["-89.971704","29.926183"],["-89.971743","29.926086"],["-89.971783","29.925989"],["-89.971822","29.925892"],["-89.971862","29.925794"],["-89.971901","29.925697"],["-89.971941","29.925600"],["-89.971980","29.925503"],["-89.972020","29.925406"],["-89.972059","29.925308"],["-89.972099","29.925211"],["-89.972138","29.925114"],["-89.972178","29.925017"],["-89.972217","29.924920"],["-89.972257","29.924822"],["-89.972296","29.924725"],["-89.972336","29.924628"],["-89.972375","29.924531"],["-89.972415","29.924434"],["-89.972454","29.924337"],["-89.972494","29.924239"],["-89.972533","29.924142"],["-89.972573","29.924045"],["-89.972612","29.923948"],["-89.972652","29.923851"],["-89.972691","29.923753"],["-89.972731","29.923656"],["-89.972770","29.923559"],["-89.972810","29.923462"],["-89.972849","29.923365"],["-89.972889","29.923267"],["-89.972928","29.923170"],["-89.972968","29.923073"],["-89.973007","29.922976"],["-89.973047","29.922879"],["-89.973086","29.922782"],["-89.973126","29.922684"],["-89.973165","29.922587"],["-89.973205","29.922490"],["-89.973244","29.922393"],["-89.973284","29.922296"],["-89.973323","29.922198"],["-89.973363","29.922101"],["-89.973402","29.922004"]]},{"type":"MultiPoint","coordinates":[["-89.970874","29.928224"],["-89.973402","29.922004"]]},{"type":"LineString","coordinates":[["-89.973402","29.922004"],["-89.973363","29.922101"],["-89.973323","29.922198"],["-89.973284","29.922296"],["-89.973244","29.922393"],["-89.973205","29.922490"],["-89.973165","29.922587"],["-89.973126","29.922684"],["-89.973086","29.922782"],["-89.973047","29.922879"],["-89.973007","29.922976"],["-89.972968","29.923073"],["-89.972928","29.923170"],["-89.972889","29.923267"],["-89.972849","29.923365"],["-89.972810","29.923462"],["-89.972770","29.923559"],["-89.972731","29.923656"],["-89.972691","29.923753"],["-89.972652","29.923851"],["-89.972612","29.923948"],["-89.972573","29.924045"],["-89.972533","29.924142"],["-89.972494","29.924239"],["-89.972454","29.924337"],["-89.972415","29.924434"],["-89.972375","29.924531"],["-89.972336","29.924628"],["-89.972296","29.924725"],["-89.972257","29.924822"],["-89.972217","29.924920"],["-89.972178","29.925017"],["-89.972138","29.925114"],["-89.972099","29.925211"],["-89.972059","29.925308"],["-89.972020","29.925406"],["-89.971980","29.925503"],["-89.971941","29.925600"],["-89.971901","29.925697"],["-89.971862","29.925794"],["-89.971822","29.925892"],["-89.971783","29.925989"],["-89.971743","29.926086"],["-89.971704","29.926183"],["-89.971664","29.926280"],["-89.971625","29.926377"],["-89.971585","29.926475"],["-89.971546","29.926572"],["-89.971506","29.926669"],["-89.971467","29.926766"],["-89.971427","29.926863"],["-89.971388","29.926961"],["-89.971348","29.927058"],["-89.971309","29.927155"],["-89.971269","29.927252"],["-89.971230","29.927349"],["-89.971190","29.927447"],["-89.971151","29.927544"],["-89.971111","29.927641"],["-89.971072","29.927738"],["-89.971032","29.927835"],["-89.970993","29.927932"],["-89.970953","29.928030"],["-89.970914","29.928127"],["-89.970874","29.928224"]]}]}},{"type":"Feature","properties":{"route_id":"45","agency_id":"1","route_short_name":"45","route_long_name":"Lakeview","route_type":"3","route_color":"#2ab560","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.119466","29.999639"],["-90.119579","29.996360"],["-90.118908","29.999854"],["-90.106120","30.017519"],["-90.106008","30.019295"],["-90.125603","30.000233"],["-90.107463","30.019720"],["-90.110776","30.020019"],["-90.113362","30.020312"],["-90.114798","30.019394"],["-90.114901","30.018339"],["-90.115086","30.015868"],["-90.115509","30.010421"],["-90.115668","30.008124"],["-90.116051","30.003186"],["-90.116219","30.000731"],["-90.113634","29.981019"],["-90.110349","29.982982"],["-90.115815","30.005673"],["-90.110183","29.984632"],["-90.115316","30.013120"],["-90.111864","29.981614"],["-90.122239","29.996365"],["-90.122373","29.995103"],["-90.120157","29.994404"],["-90.118201","29.993585"],["-90.117180","29.991401"],["-90.116888","29.989717"],["-90.116799","29.988753"],["-90.109754","29.987086"],["-90.109590","29.988889"],["-90.109497","29.990539"],["-90.109370","29.991657"],["-90.108959","29.993822"],["-90.108784","29.995463"],["-90.108568","29.997285"],["-90.108341","29.999106"],["-90.108156","30.000891"],["-90.107982","30.002704"],["-90.107766","30.004498"],["-90.107500","30.006689"],["-90.107294","30.008502"],["-90.107058","30.010305"],["-90.106842","30.012118"],["-90.106625","30.013912"],["-90.106430","30.015724"]]},{"type":"LineString","coordinates":[["-90.110349","29.982982"],["-90.110344","29.983162"],["-90.110338","29.983342"],["-90.110333","29.983521"],["-90.110327","29.983701"],["-90.110322","29.983881"],["-90.110317","29.984061"],["-90.110311","29.984241"],["-90.110254","29.984414"],["-90.110198","29.984587"],["-90.110183","29.984632"],["-90.110220","29.984809"],["-90.110242","29.984918"],["-90.110214","29.985096"],["-90.110185","29.985274"],["-90.110157","29.985453"],["-90.110129","29.985631"],["-90.110101","29.985809"],["-90.110072","29.985987"],["-90.110044","29.986165"],["-90.110016","29.986344"],["-90.109955","29.986516"],["-90.109895","29.986688"],["-90.109834","29.986860"],["-90.109773","29.987032"],["-90.109754","29.987086"],["-90.109822","29.987256"],["-90.109867","29.987369"],["-90.109850","29.987500"],["-90.109830","29.987679"],["-90.109809","29.987858"],["-90.109789","29.988037"],["-90.109770","29.988200"],["-90.109751","29.988379"],["-90.109733","29.988558"],["-90.109660","29.988727"],["-90.109590","29.988889"],["-90.109633","29.989065"],["-90.109658","29.989169"],["-90.109637","29.989348"],["-90.109615","29.989527"],["-90.109594","29.989706"],["-90.109580","29.989820"],["-90.109556","29.989999"],["-90.109540","29.990120"],["-90.109550","29.990230"],["-90.109519","29.990408"],["-90.109497","29.990539"],["-90.109544","29.990714"],["-90.109570","29.990810"],["-90.109580","29.990990"],["-90.109561","29.991169"],["-90.109550","29.991280"],["-90.109471","29.991446"],["-90.109391","29.991612"],["-90.109370","29.991657"],["-90.109348","29.991836"],["-90.109325","29.992015"],["-90.109303","29.992193"],["-90.109281","29.992372"],["-90.109263","29.992551"],["-90.109250","29.992680"],["-90.109205","29.992856"],["-90.109160","29.993031"],["-90.109116","29.993207"],["-90.109071","29.993383"],["-90.109026","29.993558"],["-90.108981","29.993734"],["-90.108959","29.993822"],["-90.109031","29.993991"],["-90.109081","29.994109"],["-90.109060","29.994288"],["-90.109037","29.994467"],["-90.109014","29.994645"],["-90.109000","29.994750"],["-90.108980","29.994929"],["-90.108960","29.995100"],["-90.108880","29.995266"],["-90.108799","29.995432"],["-90.108784","29.995463"],["-90.108846","29.995635"],["-90.108888","29.995749"],["-90.108866","29.995928"],["-90.108850","29.996060"],["-90.108809","29.996236"],["-90.108769","29.996413"],["-90.108728","29.996589"],["-90.108688","29.996766"],["-90.108647","29.996942"],["-90.108606","29.997118"],["-90.108568","29.997285"],["-90.108628","29.997457"],["-90.108663","29.997557"],["-90.108626","29.997734"],["-90.108590","29.997911"],["-90.108553","29.998088"],["-90.108516","29.998265"],["-90.108479","29.998442"],["-90.108442","29.998619"],["-90.108405","29.998796"],["-90.108368","29.998973"],["-90.108341","29.999106"],["-90.108405","29.999277"],["-90.108446","29.999387"],["-90.108412","29.999564"],["-90.108377","29.999742"],["-90.108343","29.999919"],["-90.108309","30.000097"],["-90.108275","30.000274"],["-90.108241","30.000451"],["-90.108207","30.000629"],["-90.108172","30.000806"],["-90.108156","30.000891"],["-90.108218","30.001063"],["-90.108257","30.001169"],["-90.108235","30.001348"],["-90.108212","30.001527"],["-90.108189","30.001705"],["-90.108167","30.001884"],["-90.108144","30.002063"],["-90.108121","30.002242"],["-90.108110","30.002330"],["-90.108051","30.002502"],["-90.107992","30.002675"],["-90.107982","30.002704"],["-90.108007","30.002883"],["-90.108020","30.002978"],["-90.107990","30.003156"],["-90.107961","30.003334"],["-90.107931","30.003512"],["-90.107901","30.003690"],["-90.107871","30.003868"],["-90.107842","30.004046"],["-90.107812","30.004224"],["-90.107782","30.004402"],["-90.107766","30.004498"],["-90.107804","30.004675"],["-90.107824","30.004769"],["-90.107802","30.004948"],["-90.107779","30.005127"],["-90.107756","30.005305"],["-90.107750","30.005350"],["-90.107729","30.005529"],["-90.107708","30.005708"],["-90.107688","30.005887"],["-90.107667","30.006066"],["-90.107646","30.006245"],["-90.107625","30.006424"],["-90.107547","30.006590"],["-90.107500","30.006689"],["-90.107537","30.006866"],["-90.107559","30.006969"],["-90.107538","30.007148"],["-90.107517","30.007327"],["-90.107510","30.007390"],["-90.107476","30.007567"],["-90.107441","30.007745"],["-90.107407","30.007922"],["-90.107372","30.008099"],["-90.107338","30.008277"],["-90.107303","30.008454"],["-90.107294","30.008502"],["-90.107322","30.008680"],["-90.107337","30.008778"],["-90.107305","30.008956"],["-90.107272","30.009133"],["-90.107240","30.009311"],["-90.107207","30.009489"],["-90.107175","30.009666"],["-90.107142","30.009844"],["-90.107110","30.010022"],["-90.107077","30.010199"],["-90.107058","30.010305"],["-90.107102","30.010481"],["-90.107127","30.010578"],["-90.107094","30.010756"],["-90.107061","30.010933"],["-90.107029","30.011111"],["-90.106996","30.011288"],["-90.106963","30.011466"],["-90.106930","30.011644"],["-90.106897","30.011821"],["-90.106864","30.011999"],["-90.106842","30.012118"],["-90.106888","30.012293"],["-90.106916","30.012397"],["-90.106882","30.012574"],["-90.106848","30.012752"],["-90.106814","30.012929"],["-90.106780","30.013107"],["-90.106746","30.013284"],["-90.106711","30.013461"],["-90.106677","30.013639"],["-90.106643","30.013816"],["-90.106625","30.013912"],["-90.106676","30.014086"],["-90.106708","30.014198"],["-90.106675","30.014376"],["-90.106643","30.014553"],["-90.106611","30.014731"],["-90.106578","30.014909"],["-90.106546","30.015086"],["-90.106514","30.015264"],["-90.106568","30.015385"],["-90.106555","30.015500"],["-90.106543","30.015615"],["-90.106530","30.015730"],["-90.106430","30.015724"],["-90.106530","30.015730"],["-90.106510","30.015860"],["-90.106498","30.015971"],["-90.106485","30.016081"],["-90.106473","30.016192"],["-90.106460","30.016303"],["-90.106448","30.016413"],["-90.106435","30.016524"],["-90.106423","30.016634"],["-90.106410","30.016745"],["-90.106398","30.016856"],["-90.106385","30.016966"],["-90.106373","30.017077"],["-90.106360","30.017188"],["-90.106348","30.017298"],["-90.106335","30.017409"],["-90.106323","30.017519"],["-90.106310","30.017630"],["-90.106110","30.017620"],["-90.106120","30.017519"],["-90.106110","30.017620"],["-90.106310","30.017630"],["-90.106300","30.017730"],["-90.106283","30.017865"],["-90.106265","30.018000"],["-90.106248","30.018135"],["-90.106230","30.018270"],["-90.106220","30.018370"],["-90.106210","30.018470"],["-90.106193","30.018603"],["-90.106175","30.018735"],["-90.106158","30.018868"],["-90.106140","30.019000"],["-90.106120","30.019170"],["-90.106120","30.019210"],["-90.106100","30.019300"],["-90.106008","30.019295"],["-90.106100","30.019300"],["-90.106100","30.019370"],["-90.106090","30.019430"],["-90.106040","30.019590"],["-90.106155","30.019603"],["-90.106270","30.019615"],["-90.106385","30.019628"],["-90.106500","30.019640"],["-90.106677","30.019638"],["-90.106883","30.019656"],["-90.107040","30.019670"],["-90.107246","30.019694"],["-90.107452","30.019719"],["-90.107463","30.019720"],["-90.107670","30.019733"],["-90.107877","30.019745"],["-90.107953","30.019750"],["-90.108159","30.019770"],["-90.108366","30.019790"],["-90.108572","30.019810"],["-90.108779","30.019828"],["-90.108986","30.019846"],["-90.109193","30.019863"],["-90.109399","30.019881"],["-90.109606","30.019899"],["-90.109813","30.019917"],["-90.110019","30.019934"],["-90.110226","30.019952"],["-90.110433","30.019970"],["-90.110638","30.019999"],["-90.110776","30.020019"],["-90.110983","30.020032"],["-90.111190","30.020044"],["-90.111397","30.020061"],["-90.111604","30.020079"],["-90.111730","30.020090"],["-90.111937","30.020109"],["-90.112143","30.020129"],["-90.112350","30.020148"],["-90.112480","30.020160"],["-90.112686","30.020182"],["-90.112892","30.020203"],["-90.113093","30.020250"],["-90.113294","30.020296"],["-90.113362","30.020312"],["-90.113565","30.020273"],["-90.113738","30.020240"],["-90.113940","30.020240"],["-90.114070","30.020200"],["-90.114261","30.020129"],["-90.114310","30.020110"],["-90.114390","30.020060"],["-90.114490","30.019940"],["-90.114590","30.019810"],["-90.114648","30.019637"],["-90.114746","30.019479"],["-90.114798","30.019394"],["-90.114796","30.019214"],["-90.114794","30.019034"],["-90.114822","30.018856"],["-90.114849","30.018678"],["-90.114876","30.018499"],["-90.114901","30.018339"],["-90.114893","30.018159"],["-90.114885","30.017980"],["-90.114882","30.017901"],["-90.114892","30.017721"],["-90.114903","30.017542"],["-90.114910","30.017430"],["-90.114923","30.017250"],["-90.114937","30.017071"],["-90.114950","30.016892"],["-90.114963","30.016712"],["-90.114970","30.016620"],["-90.114998","30.016442"],["-90.115025","30.016263"],["-90.115053","30.016085"],["-90.115080","30.015907"],["-90.115086","30.015868"],["-90.115072","30.015689"],["-90.115058","30.015509"],["-90.115054","30.015451"],["-90.115066","30.015271"],["-90.115077","30.015092"],["-90.115089","30.014912"],["-90.115101","30.014733"],["-90.115113","30.014553"],["-90.115125","30.014374"],["-90.115137","30.014194"],["-90.115148","30.014014"],["-90.115181","30.013837"],["-90.115215","30.013659"],["-90.115248","30.013482"],["-90.115281","30.013304"],["-90.115316","30.013120"],["-90.115293","30.012941"],["-90.115270","30.012762"],["-90.115260","30.012681"],["-90.115274","30.012502"],["-90.115289","30.012322"],["-90.115300","30.012190"],["-90.115321","30.012011"],["-90.115342","30.011832"],["-90.115363","30.011653"],["-90.115385","30.011474"],["-90.115406","30.011295"],["-90.115427","30.011116"],["-90.115448","30.010937"],["-90.115469","30.010759"],["-90.115490","30.010580"],["-90.115509","30.010421"],["-90.115487","30.010242"],["-90.115465","30.010063"],["-90.115457","30.010001"],["-90.115471","30.009822"],["-90.115485","30.009642"],["-90.115498","30.009463"],["-90.115512","30.009283"],["-90.115520","30.009180"],["-90.115534","30.009001"],["-90.115548","30.008821"],["-90.115563","30.008642"],["-90.115570","30.008550"],["-90.115611","30.008374"],["-90.115651","30.008197"],["-90.115668","30.008124"],["-90.115654","30.007945"],["-90.115640","30.007765"],["-90.115636","30.007711"],["-90.115649","30.007531"],["-90.115663","30.007352"],["-90.115670","30.007250"],["-90.115683","30.007070"],["-90.115696","30.006891"],["-90.115709","30.006711"],["-90.115722","30.006532"],["-90.115730","30.006420"],["-90.115750","30.006241"],["-90.115771","30.006062"],["-90.115791","30.005883"],["-90.115811","30.005704"],["-90.115815","30.005673"],["-90.115815","30.005493"],["-90.115816","30.005313"],["-90.115816","30.005241"],["-90.115828","30.005061"],["-90.115841","30.004882"],["-90.115850","30.004760"],["-90.115865","30.004581"],["-90.115880","30.004401"],["-90.115895","30.004222"],["-90.115911","30.004042"],["-90.115920","30.003930"],["-90.115951","30.003752"],["-90.115983","30.003574"],["-90.116014","30.003397"],["-90.116045","30.003219"],["-90.116051","30.003186"],["-90.116028","30.003007"],["-90.116004","30.002829"],["-90.115997","30.002771"],["-90.116006","30.002591"],["-90.116015","30.002412"],["-90.116020","30.002300"],["-90.116035","30.002121"],["-90.116051","30.001941"],["-90.116066","30.001762"],["-90.116081","30.001582"],["-90.116090","30.001480"],["-90.116121","30.001302"],["-90.116151","30.001124"],["-90.116182","30.000946"],["-90.116213","30.000768"],["-90.116219","30.000731"],["-90.116201","30.000552"],["-90.116182","30.000373"],["-90.116174","30.000291"],["-90.116187","30.000111"],["-90.116190","30.000060"],["-90.116198","29.999880"],["-90.116210","29.999720"],["-90.116418","29.999727"],["-90.116625","29.999734"],["-90.116833","29.999741"],["-90.117040","29.999748"],["-90.117248","29.999755"],["-90.117380","29.999760"],["-90.117587","29.999773"],["-90.117794","29.999785"],["-90.118002","29.999798"],["-90.118209","29.999811"],["-90.118416","29.999824"],["-90.118623","29.999836"],["-90.118830","29.999849"],["-90.118908","29.999854"],["-90.119116","29.999851"],["-90.119257","29.999849"],["-90.119464","29.999864"],["-90.119671","29.999878"],["-90.119878","29.999893"],["-90.120085","29.999908"],["-90.120292","29.999923"],["-90.120390","29.999930"],["-90.120597","29.999940"],["-90.120805","29.999951"],["-90.121012","29.999961"],["-90.121219","29.999971"],["-90.121427","29.999982"],["-90.121634","29.999992"],["-90.121841","30.000003"],["-90.122049","30.000013"],["-90.122256","30.000023"],["-90.122463","30.000034"],["-90.122671","30.000044"],["-90.122790","30.000050"],["-90.122940","30.000060"],["-90.123147","30.000070"],["-90.123340","30.000080"],["-90.123547","30.000094"],["-90.123754","30.000107"],["-90.123961","30.000121"],["-90.124168","30.000135"],["-90.124250","30.000140"],["-90.124453","30.000177"],["-90.124640","30.000210"],["-90.124840","30.000257"],["-90.125041","30.000305"],["-90.125190","30.000340"],["-90.125381","30.000411"],["-90.125572","30.000482"],["-90.125700","30.000530"],["-90.125643","30.000357"],["-90.125603","30.000233"],["-90.125396","30.000224"],["-90.125290","30.000220"],["-90.125097","30.000154"],["-90.124970","30.000110"],["-90.124767","30.000073"],["-90.124563","30.000036"],["-90.124360","29.999999"],["-90.124310","29.999990"],["-90.124103","29.999973"],["-90.123896","29.999956"],["-90.123690","29.999938"],["-90.123483","29.999921"],["-90.123350","29.999910"],["-90.123143","29.999900"],["-90.122935","29.999890"],["-90.122800","29.999890"],["-90.122593","29.999874"],["-90.122386","29.999859"],["-90.122179","29.999843"],["-90.121972","29.999828"],["-90.121765","29.999812"],["-90.121559","29.999797"],["-90.121352","29.999781"],["-90.121145","29.999765"],["-90.120938","29.999750"],["-90.120731","29.999734"],["-90.120524","29.999719"],["-90.120317","29.999703"],["-90.120110","29.999687"],["-90.119903","29.999672"],["-90.119696","29.999656"],["-90.119489","29.999641"],["-90.119466","29.999639"],["-90.119375","29.999478"],["-90.119325","29.999390"],["-90.119330","29.999240"],["-90.119330","29.999060"],["-90.119330","29.998880"],["-90.119344","29.998701"],["-90.119357","29.998521"],["-90.119370","29.998350"],["-90.119376","29.998170"],["-90.119383","29.997990"],["-90.119389","29.997811"],["-90.119396","29.997631"],["-90.119400","29.997520"],["-90.119417","29.997341"],["-90.119435","29.997162"],["-90.119452","29.996982"],["-90.119469","29.996803"],["-90.119480","29.996690"],["-90.119532","29.996516"],["-90.119579","29.996360"],["-90.119780","29.996316"],["-90.119965","29.996276"],["-90.120172","29.996284"],["-90.120380","29.996292"],["-90.120587","29.996301"],["-90.120795","29.996309"],["-90.121002","29.996317"],["-90.121210","29.996325"],["-90.121417","29.996333"],["-90.121625","29.996341"],["-90.121832","29.996349"],["-90.122040","29.996357"],["-90.122239","29.996365"],["-90.122445","29.996389"],["-90.122630","29.996410"],["-90.122710","29.996380"],["-90.122760","29.996330"],["-90.122790","29.996260"],["-90.122790","29.996170"],["-90.122805","29.995991"],["-90.122820","29.995811"],["-90.122840","29.995632"],["-90.122852","29.995453"],["-90.122850","29.995390"],["-90.122850","29.995340"],["-90.122840","29.995320"],["-90.122820","29.995280"],["-90.122810","29.995260"],["-90.122790","29.995240"],["-90.122760","29.995220"],["-90.122730","29.995200"],["-90.122710","29.995190"],["-90.122690","29.995170"],["-90.122680","29.995170"],["-90.122640","29.995150"],["-90.122500","29.995100"],["-90.122370","29.995060"],["-90.122373","29.995103"],["-90.122370","29.995060"],["-90.122290","29.995030"],["-90.122240","29.995020"],["-90.122220","29.995020"],["-90.122030","29.994990"],["-90.121840","29.994960"],["-90.121730","29.994940"],["-90.121560","29.994910"],["-90.121350","29.994870"],["-90.121170","29.994830"],["-90.120990","29.994790"],["-90.120980","29.994790"],["-90.120845","29.994758"],["-90.120710","29.994725"],["-90.120575","29.994693"],["-90.120440","29.994660"],["-90.120320","29.994630"],["-90.120170","29.994600"],["-90.120070","29.994570"],["-90.120090","29.994400"],["-90.120157","29.994404"],["-90.120090","29.994400"],["-90.120070","29.994570"],["-90.119950","29.994540"],["-90.119830","29.994510"],["-90.119710","29.994470"],["-90.119590","29.994430"],["-90.119480","29.994390"],["-90.119350","29.994340"],["-90.119320","29.994330"],["-90.119140","29.994250"],["-90.119005","29.994185"],["-90.118870","29.994120"],["-90.118850","29.994110"],["-90.118740","29.994045"],["-90.118630","29.993980"],["-90.118520","29.993910"],["-90.118410","29.993840"],["-90.118260","29.993730"],["-90.118220","29.993700"],["-90.118141","29.993632"],["-90.118201","29.993585"],["-90.118140","29.993640"],["-90.118050","29.993570"],["-90.117920","29.993450"],["-90.117860","29.993380"],["-90.117820","29.993350"],["-90.117703","29.993201"],["-90.117640","29.993120"],["-90.117538","29.992963"],["-90.117510","29.992920"],["-90.117427","29.992755"],["-90.117366","29.992583"],["-90.117340","29.992510"],["-90.117314","29.992332"],["-90.117289","29.992153"],["-90.117263","29.991975"],["-90.117237","29.991796"],["-90.117211","29.991618"],["-90.117186","29.991439"],["-90.117180","29.991401"],["-90.117087","29.991240"],["-90.117030","29.991140"],["-90.116992","29.990963"],["-90.116954","29.990786"],["-90.116940","29.990720"],["-90.116912","29.990542"],["-90.116883","29.990364"],["-90.116871","29.990218"],["-90.116860","29.990072"],["-90.116848","29.989926"],["-90.116836","29.989781"],["-90.116888","29.989717"],["-90.116828","29.989680"],["-90.116820","29.989565"],["-90.116812","29.989450"],["-90.116804","29.989335"],["-90.116796","29.989221"],["-90.116774","29.989039"],["-90.116753","29.988857"],["-90.116799","29.988753"],["-90.116742","29.988733"],["-90.116718","29.988557"],["-90.116694","29.988381"],["-90.116676","29.988283"],["-90.116658","29.988185"],["-90.116640","29.988086"],["-90.116621","29.987988"],["-90.116575","29.987818"],["-90.116529","29.987648"],["-90.116482","29.987478"],["-90.116436","29.987309"],["-90.116389","29.987139"],["-90.116343","29.986969"],["-90.116296","29.986799"],["-90.116250","29.986629"],["-90.116192","29.986467"],["-90.116135","29.986306"],["-90.116077","29.986145"],["-90.116020","29.985983"],["-90.115962","29.985822"],["-90.115904","29.985660"],["-90.115847","29.985499"],["-90.115789","29.985338"],["-90.115731","29.985191"],["-90.115673","29.985044"],["-90.115615","29.984898"],["-90.115557","29.984751"],["-90.115498","29.984604"],["-90.115440","29.984458"],["-90.115382","29.984311"],["-90.115324","29.984164"],["-90.115284","29.983983"],["-90.115236","29.983844"],["-90.115131","29.983695"],["-90.115096","29.983575"],["-90.115061","29.983456"],["-90.115015","29.983331"],["-90.114968","29.983207"],["-90.114921","29.983083"],["-90.114874","29.982959"],["-90.114808","29.982801"],["-90.114742","29.982644"],["-90.114677","29.982486"],["-90.114611","29.982329"],["-90.114458","29.982217"],["-90.114418","29.982101"],["-90.114377","29.981985"],["-90.114337","29.981869"],["-90.114296","29.981753"],["-90.114257","29.981653"],["-90.114219","29.981552"],["-90.114180","29.981452"],["-90.114142","29.981351"],["-90.114103","29.981251"],["-90.114065","29.981150"],["-90.114026","29.981050"],["-90.113988","29.980949"],["-90.113811","29.980984"],["-90.113634","29.981019"],["-90.113448","29.981098"],["-90.113350","29.981140"],["-90.113155","29.981202"],["-90.112961","29.981265"],["-90.112790","29.981320"],["-90.112598","29.981388"],["-90.112405","29.981455"],["-90.112213","29.981523"],["-90.112014","29.981575"],["-90.111864","29.981614"],["-90.111870","29.981630"],["-90.111810","29.981660"],["-90.111670","29.981710"],["-90.111495","29.981770"],["-90.111320","29.981830"],["-90.111190","29.981880"],["-90.111120","29.981910"],["-90.111005","29.981950"],["-90.110890","29.981990"],["-90.110775","29.982030"],["-90.110660","29.982070"],["-90.110535","29.982115"],["-90.110410","29.982160"],["-90.110400","29.982270"],["-90.110400","29.982375"],["-90.110400","29.982480"],["-90.110400","29.982560"],["-90.110395","29.982660"],["-90.110390","29.982760"],["-90.110385","29.982875"],["-90.110349","29.982982"]]}]}},{"type":"Feature","properties":{"route_id":"46","agency_id":"1","route_short_name":"46","route_long_name":"Rampart-Loyola Streetcar","route_type":"0","route_color":"#c146c1","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.072937","29.955716"],["-90.078191","29.945407"],["-90.076801","29.946781"],["-90.075766","29.950583"],["-90.074565","29.954722"],["-90.076253","29.948886"],["-90.057492","29.968586"],["-90.060249","29.968249"],["-90.063719","29.965808"],["-90.065614","29.963699"],["-90.067756","29.961283"],["-90.070598","29.958106"]]},{"type":"LineString","coordinates":[["-90.078191","29.945407"],["-90.078078","29.945426"],["-90.077966","29.945446"],["-90.077827","29.945446"],["-90.077689","29.945446"],["-90.077589","29.945493"],["-90.077490","29.945540"],["-90.077390","29.945587"],["-90.077290","29.945634"],["-90.077220","29.945736"],["-90.077150","29.945839"],["-90.077080","29.945941"],["-90.077011","29.946043"],["-90.076936","29.946191"],["-90.076861","29.946338"],["-90.076856","29.946475"],["-90.076850","29.946612"],["-90.076801","29.946781"],["-90.076773","29.946900"],["-90.076746","29.947019"],["-90.076707","29.947161"],["-90.076668","29.947303"],["-90.076628","29.947441"],["-90.076588","29.947579"],["-90.076561","29.947694"],["-90.076534","29.947809"],["-90.076502","29.947928"],["-90.076470","29.948046"],["-90.076437","29.948165"],["-90.076405","29.948283"],["-90.076373","29.948402"],["-90.076341","29.948520"],["-90.076309","29.948639"],["-90.076276","29.948758"],["-90.076253","29.948886"],["-90.076209","29.949047"],["-90.076165","29.949208"],["-90.076122","29.949368"],["-90.076078","29.949529"],["-90.076024","29.949714"],["-90.075969","29.949900"],["-90.075915","29.950085"],["-90.075861","29.950270"],["-90.075813","29.950427"],["-90.075766","29.950583"],["-90.075725","29.950723"],["-90.075684","29.950863"],["-90.075676","29.951008"],["-90.075668","29.951154"],["-90.075675","29.951266"],["-90.075682","29.951378"],["-90.075690","29.951490"],["-90.075697","29.951602"],["-90.075695","29.951719"],["-90.075693","29.951836"],["-90.075691","29.951952"],["-90.075689","29.952069"],["-90.075665","29.952166"],["-90.075641","29.952262"],["-90.075617","29.952359"],["-90.075592","29.952455"],["-90.075557","29.952568"],["-90.075521","29.952682"],["-90.075486","29.952795"],["-90.075450","29.952908"],["-90.075415","29.953021"],["-90.075379","29.953135"],["-90.075344","29.953248"],["-90.075308","29.953361"],["-90.075263","29.953522"],["-90.075218","29.953682"],["-90.075173","29.953842"],["-90.075128","29.954003"],["-90.075071","29.954142"],["-90.075014","29.954280"],["-90.074957","29.954419"],["-90.074901","29.954558"],["-90.074733","29.954640"],["-90.074565","29.954722"],["-90.074542","29.954822"],["-90.074520","29.954922"],["-90.074422","29.955027"],["-90.074325","29.955133"],["-90.074228","29.955238"],["-90.074131","29.955344"],["-90.074033","29.955449"],["-90.073936","29.955555"],["-90.073839","29.955660"],["-90.073742","29.955765"],["-90.073685","29.955911"],["-90.073629","29.956056"],["-90.073503","29.956133"],["-90.073390","29.956119"],["-90.073277","29.956018"],["-90.073164","29.955917"],["-90.073050","29.955817"],["-90.072937","29.955716"],["-90.072729","29.955719"],["-90.072620","29.955720"],["-90.072495","29.955864"],["-90.072371","29.956008"],["-90.072246","29.956151"],["-90.072121","29.956295"],["-90.071996","29.956439"],["-90.071900","29.956550"],["-90.071771","29.956691"],["-90.071670","29.956800"],["-90.071544","29.956943"],["-90.071417","29.957085"],["-90.071291","29.957228"],["-90.071200","29.957330"],["-90.071084","29.957479"],["-90.070968","29.957629"],["-90.070853","29.957778"],["-90.070737","29.957927"],["-90.070621","29.958076"],["-90.070598","29.958106"],["-90.070432","29.958214"],["-90.070342","29.958272"],["-90.070214","29.958413"],["-90.070086","29.958555"],["-90.069958","29.958697"],["-90.069830","29.958838"],["-90.069702","29.958980"],["-90.069575","29.959122"],["-90.069446","29.959264"],["-90.069319","29.959405"],["-90.069192","29.959548"],["-90.069090","29.959660"],["-90.068966","29.959804"],["-90.068842","29.959948"],["-90.068718","29.960093"],["-90.068594","29.960237"],["-90.068469","29.960381"],["-90.068410","29.960450"],["-90.068310","29.960560"],["-90.068185","29.960704"],["-90.068061","29.960848"],["-90.067953","29.961002"],["-90.067845","29.961155"],["-90.067756","29.961283"],["-90.067597","29.961398"],["-90.067494","29.961473"],["-90.067367","29.961616"],["-90.067241","29.961758"],["-90.067115","29.961901"],["-90.066989","29.962044"],["-90.066930","29.962110"],["-90.066890","29.962150"],["-90.066761","29.962291"],["-90.066632","29.962432"],["-90.066570","29.962500"],["-90.066444","29.962643"],["-90.066317","29.962785"],["-90.066191","29.962928"],["-90.066078","29.963079"],["-90.065965","29.963230"],["-90.065852","29.963381"],["-90.065739","29.963532"],["-90.065626","29.963683"],["-90.065614","29.963699"],["-90.065451","29.963810"],["-90.065361","29.963871"],["-90.065231","29.964011"],["-90.065102","29.964152"],["-90.064972","29.964293"],["-90.064843","29.964433"],["-90.064800","29.964480"],["-90.064673","29.964622"],["-90.064545","29.964764"],["-90.064418","29.964906"],["-90.064290","29.965048"],["-90.064163","29.965190"],["-90.064100","29.965260"],["-90.063993","29.965414"],["-90.063886","29.965568"],["-90.063779","29.965722"],["-90.063719","29.965808"],["-90.063565","29.965928"],["-90.063410","29.966049"],["-90.063370","29.966080"],["-90.063240","29.966221"],["-90.063110","29.966361"],["-90.062980","29.966501"],["-90.062870","29.966620"],["-90.062747","29.966765"],["-90.062625","29.966910"],["-90.062540","29.967010"],["-90.062413","29.967153"],["-90.062300","29.967280"],["-90.062170","29.967420"],["-90.062039","29.967560"],["-90.061886","29.967681"],["-90.061850","29.967710"],["-90.061687","29.967822"],["-90.061512","29.967919"],["-90.061320","29.967987"],["-90.061128","29.968055"],["-90.061030","29.968090"],["-90.060826","29.968124"],["-90.060622","29.968158"],["-90.060422","29.968207"],["-90.060249","29.968249"],["-90.060042","29.968241"],["-90.059834","29.968233"],["-90.059627","29.968225"],["-90.059510","29.968220"],["-90.059305","29.968246"],["-90.059102","29.968286"],["-90.058900","29.968326"],["-90.058697","29.968366"],["-90.058495","29.968406"],["-90.058320","29.968440"],["-90.058150","29.968470"],["-90.057943","29.968488"],["-90.057742","29.968532"],["-90.057541","29.968575"],["-90.057492","29.968586"]]},{"type":"MultiPoint","coordinates":[["-90.089092","29.966714"],["-90.078191","29.945407"],["-90.076801","29.946781"],["-90.075766","29.950583"],["-90.074565","29.954722"],["-90.076253","29.948886"]]},{"type":"LineString","coordinates":[["-90.078191","29.945407"],["-90.078078","29.945426"],["-90.077966","29.945446"],["-90.077827","29.945446"],["-90.077689","29.945446"],["-90.077589","29.945493"],["-90.077490","29.945540"],["-90.077390","29.945587"],["-90.077290","29.945634"],["-90.077220","29.945736"],["-90.077150","29.945839"],["-90.077080","29.945941"],["-90.077011","29.946043"],["-90.076936","29.946191"],["-90.076861","29.946338"],["-90.076856","29.946475"],["-90.076850","29.946612"],["-90.076801","29.946781"],["-90.076773","29.946900"],["-90.076746","29.947019"],["-90.076707","29.947161"],["-90.076668","29.947303"],["-90.076628","29.947441"],["-90.076588","29.947579"],["-90.076561","29.947694"],["-90.076534","29.947809"],["-90.076502","29.947928"],["-90.076470","29.948046"],["-90.076437","29.948165"],["-90.076405","29.948283"],["-90.076373","29.948402"],["-90.076341","29.948520"],["-90.076309","29.948639"],["-90.076276","29.948758"],["-90.076253","29.948886"],["-90.076209","29.949047"],["-90.076165","29.949208"],["-90.076122","29.949368"],["-90.076078","29.949529"],["-90.076024","29.949714"],["-90.075969","29.949900"],["-90.075915","29.950085"],["-90.075861","29.950270"],["-90.075813","29.950427"],["-90.075766","29.950583"],["-90.075725","29.950723"],["-90.075684","29.950863"],["-90.075676","29.951008"],["-90.075668","29.951154"],["-90.075675","29.951266"],["-90.075682","29.951378"],["-90.075690","29.951490"],["-90.075697","29.951602"],["-90.075695","29.951719"],["-90.075693","29.951836"],["-90.075691","29.951952"],["-90.075689","29.952069"],["-90.075665","29.952166"],["-90.075641","29.952262"],["-90.075617","29.952359"],["-90.075592","29.952455"],["-90.075557","29.952568"],["-90.075521","29.952682"],["-90.075486","29.952795"],["-90.075450","29.952908"],["-90.075415","29.953021"],["-90.075379","29.953135"],["-90.075344","29.953248"],["-90.075308","29.953361"],["-90.075263","29.953522"],["-90.075218","29.953682"],["-90.075173","29.953842"],["-90.075128","29.954003"],["-90.075071","29.954142"],["-90.075014","29.954280"],["-90.074957","29.954419"],["-90.074901","29.954558"],["-90.074733","29.954640"],["-90.074565","29.954722"],["-90.074468","29.954853"],["-90.074371","29.954984"],["-90.074274","29.955115"],["-90.074176","29.955246"],["-90.074081","29.955352"],["-90.073985","29.955458"],["-90.073889","29.955565"],["-90.073793","29.955671"],["-90.073697","29.955777"],["-90.073601","29.955884"],["-90.073505","29.955990"],["-90.073409","29.956096"],["-90.073505","29.956175"],["-90.073600","29.956254"],["-90.073695","29.956333"],["-90.073790","29.956412"],["-90.073963","29.956529"],["-90.074136","29.956646"],["-90.074309","29.956763"],["-90.074482","29.956880"],["-90.074655","29.956997"],["-90.074828","29.957114"],["-90.075001","29.957231"],["-90.075174","29.957348"],["-90.075347","29.957465"],["-90.075520","29.957582"],["-90.075693","29.957699"],["-90.075866","29.957816"],["-90.076039","29.957933"],["-90.076212","29.958050"],["-90.076385","29.958167"],["-90.076558","29.958284"],["-90.076731","29.958401"],["-90.076904","29.958518"],["-90.077077","29.958635"],["-90.077250","29.958752"],["-90.077423","29.958869"],["-90.077596","29.958986"],["-90.077769","29.959103"],["-90.077942","29.959220"],["-90.078115","29.959337"],["-90.078288","29.959454"],["-90.078461","29.959571"],["-90.078634","29.959688"],["-90.078807","29.959804"],["-90.078980","29.959921"],["-90.079153","29.960038"],["-90.079326","29.960155"],["-90.079487","29.960264"],["-90.079648","29.960372"],["-90.079810","29.960480"],["-90.079971","29.960588"],["-90.080132","29.960696"],["-90.080293","29.960805"],["-90.080454","29.960913"],["-90.080615","29.961021"],["-90.080776","29.961129"],["-90.080937","29.961237"],["-90.081098","29.961346"],["-90.081259","29.961454"],["-90.081421","29.961562"],["-90.081582","29.961670"],["-90.081743","29.961778"],["-90.081904","29.961887"],["-90.082065","29.961995"],["-90.082226","29.962103"],["-90.082387","29.962211"],["-90.082548","29.962319"],["-90.082709","29.962428"],["-90.082870","29.962536"],["-90.083032","29.962644"],["-90.083193","29.962752"],["-90.083354","29.962860"],["-90.083515","29.962969"],["-90.083676","29.963077"],["-90.083837","29.963185"],["-90.083998","29.963293"],["-90.084159","29.963401"],["-90.084320","29.963510"],["-90.084481","29.963618"],["-90.084609","29.963704"],["-90.084737","29.963791"],["-90.084865","29.963878"],["-90.084993","29.963965"],["-90.085121","29.964051"],["-90.085249","29.964138"],["-90.085377","29.964225"],["-90.085505","29.964311"],["-90.085633","29.964398"],["-90.085761","29.964485"],["-90.085888","29.964572"],["-90.086016","29.964658"],["-90.086144","29.964745"],["-90.086272","29.964832"],["-90.086400","29.964918"],["-90.086528","29.965005"],["-90.086656","29.965092"],["-90.086784","29.965178"],["-90.086912","29.965265"],["-90.087040","29.965352"],["-90.087168","29.965439"],["-90.087295","29.965525"],["-90.087423","29.965612"],["-90.087551","29.965699"],["-90.087679","29.965785"],["-90.087807","29.965872"],["-90.087935","29.965959"],["-90.088063","29.966045"],["-90.088191","29.966132"],["-90.088319","29.966219"],["-90.088447","29.966306"],["-90.088575","29.966392"],["-90.088704","29.966473"],["-90.088833","29.966553"],["-90.088963","29.966634"],["-90.089092","29.966714"]]},{"type":"MultiPoint","coordinates":[["-90.072937","29.955716"],["-90.088946","29.966643"],["-90.057492","29.968586"],["-90.060249","29.968249"],["-90.063719","29.965808"],["-90.065614","29.963699"],["-90.067756","29.961283"],["-90.070598","29.958106"]]},{"type":"LineString","coordinates":[["-90.088946","29.966643"],["-90.088795","29.966520"],["-90.088644","29.966396"],["-90.088492","29.966273"],["-90.088341","29.966150"],["-90.088190","29.966027"],["-90.088039","29.965903"],["-90.087878","29.965790"],["-90.087716","29.965677"],["-90.087553","29.965566"],["-90.087394","29.965450"],["-90.087230","29.965340"],["-90.087065","29.965231"],["-90.086900","29.965121"],["-90.086736","29.965011"],["-90.086571","29.964902"],["-90.086406","29.964793"],["-90.086280","29.964709"],["-90.086112","29.964603"],["-90.086010","29.964539"],["-90.085848","29.964427"],["-90.085685","29.964315"],["-90.085523","29.964203"],["-90.085361","29.964091"],["-90.085198","29.963978"],["-90.085036","29.963866"],["-90.084940","29.963800"],["-90.084776","29.963690"],["-90.084612","29.963580"],["-90.084447","29.963470"],["-90.084283","29.963360"],["-90.084119","29.963250"],["-90.084060","29.963210"],["-90.083898","29.963098"],["-90.083735","29.962986"],["-90.083573","29.962874"],["-90.083410","29.962762"],["-90.083248","29.962650"],["-90.083190","29.962610"],["-90.083040","29.962510"],["-90.082877","29.962399"],["-90.082714","29.962287"],["-90.082551","29.962176"],["-90.082410","29.962080"],["-90.082243","29.961973"],["-90.082078","29.961864"],["-90.081920","29.961759"],["-90.081755","29.961650"],["-90.081590","29.961540"],["-90.081440","29.961440"],["-90.081275","29.961331"],["-90.081110","29.961222"],["-90.080945","29.961113"],["-90.080783","29.961000"],["-90.080622","29.960886"],["-90.080570","29.960850"],["-90.080405","29.960740"],["-90.080241","29.960631"],["-90.080120","29.960550"],["-90.079958","29.960438"],["-90.079795","29.960326"],["-90.079700","29.960260"],["-90.079535","29.960150"],["-90.079371","29.960041"],["-90.079206","29.959931"],["-90.079042","29.959821"],["-90.078877","29.959712"],["-90.078800","29.959660"],["-90.078637","29.959548"],["-90.078477","29.959434"],["-90.078360","29.959350"],["-90.078195","29.959241"],["-90.078040","29.959140"],["-90.077930","29.959050"],["-90.077850","29.958990"],["-90.077789","29.958939"],["-90.077627","29.958826"],["-90.077590","29.958800"],["-90.077424","29.958692"],["-90.077259","29.958583"],["-90.077130","29.958499"],["-90.076967","29.958388"],["-90.076806","29.958274"],["-90.076660","29.958170"],["-90.076496","29.958060"],["-90.076332","29.957949"],["-90.076168","29.957839"],["-90.076004","29.957729"],["-90.075838","29.957621"],["-90.075673","29.957512"],["-90.075507","29.957403"],["-90.075380","29.957320"],["-90.075216","29.957209"],["-90.075053","29.957099"],["-90.074889","29.956988"],["-90.074725","29.956878"],["-90.074610","29.956800"],["-90.074447","29.956689"],["-90.074283","29.956578"],["-90.074180","29.956509"],["-90.074090","29.956449"],["-90.074050","29.956420"],["-90.073890","29.956306"],["-90.073730","29.956191"],["-90.073630","29.956120"],["-90.073509","29.956040"],["-90.073360","29.955940"],["-90.073183","29.955846"],["-90.073006","29.955752"],["-90.072937","29.955716"],["-90.072729","29.955719"],["-90.072620","29.955720"],["-90.072495","29.955864"],["-90.072371","29.956008"],["-90.072246","29.956151"],["-90.072121","29.956295"],["-90.071996","29.956439"],["-90.071900","29.956550"],["-90.071770","29.956690"],["-90.071669","29.956799"],["-90.071543","29.956942"],["-90.071417","29.957085"],["-90.071291","29.957228"],["-90.071200","29.957330"],["-90.071084","29.957479"],["-90.070968","29.957629"],["-90.070853","29.957778"],["-90.070737","29.957927"],["-90.070621","29.958076"],["-90.070598","29.958106"],["-90.070432","29.958214"],["-90.070342","29.958272"],["-90.070214","29.958413"],["-90.070086","29.958555"],["-90.069958","29.958697"],["-90.069830","29.958838"],["-90.069702","29.958980"],["-90.069575","29.959122"],["-90.069446","29.959264"],["-90.069319","29.959405"],["-90.069192","29.959548"],["-90.069090","29.959660"],["-90.068966","29.959804"],["-90.068842","29.959948"],["-90.068718","29.960093"],["-90.068594","29.960237"],["-90.068469","29.960381"],["-90.068410","29.960450"],["-90.068310","29.960560"],["-90.068185","29.960704"],["-90.068061","29.960848"],["-90.067953","29.961002"],["-90.067845","29.961155"],["-90.067756","29.961283"],["-90.067597","29.961398"],["-90.067494","29.961473"],["-90.067367","29.961616"],["-90.067241","29.961758"],["-90.067115","29.961901"],["-90.066989","29.962044"],["-90.066930","29.962110"],["-90.066890","29.962150"],["-90.066761","29.962291"],["-90.066632","29.962432"],["-90.066570","29.962500"],["-90.066443","29.962643"],["-90.066317","29.962785"],["-90.066190","29.962928"],["-90.066064","29.963071"],["-90.065938","29.963214"],["-90.065819","29.963349"],["-90.065725","29.963509"],["-90.065631","29.963670"],["-90.065614","29.963699"],["-90.065450","29.963810"],["-90.065361","29.963870"],["-90.065231","29.964010"],["-90.065102","29.964151"],["-90.064972","29.964292"],["-90.064843","29.964432"],["-90.064799","29.964480"],["-90.064672","29.964622"],["-90.064544","29.964764"],["-90.064417","29.964906"],["-90.064290","29.965048"],["-90.064162","29.965190"],["-90.064100","29.965260"],["-90.063993","29.965414"],["-90.063886","29.965568"],["-90.063779","29.965722"],["-90.063719","29.965808"],["-90.063565","29.965928"],["-90.063410","29.966049"],["-90.063370","29.966080"],["-90.063240","29.966221"],["-90.063110","29.966361"],["-90.062980","29.966501"],["-90.062870","29.966620"],["-90.062747","29.966765"],["-90.062625","29.966910"],["-90.062540","29.967010"],["-90.062413","29.967153"],["-90.062300","29.967280"],["-90.062170","29.967420"],["-90.062039","29.967560"],["-90.061886","29.967681"],["-90.061850","29.967710"],["-90.061687","29.967822"],["-90.061512","29.967919"],["-90.061320","29.967987"],["-90.061128","29.968055"],["-90.061030","29.968090"],["-90.060826","29.968124"],["-90.060622","29.968158"],["-90.060422","29.968207"],["-90.060249","29.968249"],["-90.060042","29.968241"],["-90.059834","29.968233"],["-90.059627","29.968225"],["-90.059510","29.968220"],["-90.059305","29.968246"],["-90.059102","29.968286"],["-90.058900","29.968326"],["-90.058697","29.968366"],["-90.058495","29.968406"],["-90.058320","29.968440"],["-90.058150","29.968470"],["-90.057943","29.968488"],["-90.057742","29.968532"],["-90.057541","29.968575"],["-90.057492","29.968586"]]},{"type":"MultiPoint","coordinates":[["-90.073156","29.956012"],["-90.089092","29.966714"],["-90.070567","29.958115"],["-90.067725","29.961319"],["-90.065583","29.963708"],["-90.063719","29.965799"],["-90.060259","29.968249"],["-90.057492","29.968586"]]},{"type":"LineString","coordinates":[["-90.057492","29.968586"],["-90.057699","29.968600"],["-90.057906","29.968613"],["-90.058010","29.968620"],["-90.058170","29.968600"],["-90.058372","29.968558"],["-90.058574","29.968516"],["-90.058775","29.968473"],["-90.058977","29.968431"],["-90.059179","29.968389"],["-90.059270","29.968370"],["-90.059477","29.968352"],["-90.059620","29.968340"],["-90.059825","29.968311"],["-90.060030","29.968282"],["-90.060235","29.968252"],["-90.060259","29.968249"],["-90.060465","29.968270"],["-90.060617","29.968286"],["-90.060710","29.968280"],["-90.060912","29.968240"],["-90.061070","29.968209"],["-90.061266","29.968150"],["-90.061456","29.968078"],["-90.061530","29.968050"],["-90.061703","29.967951"],["-90.061866","29.967840"],["-90.061970","29.967769"],["-90.062115","29.967640"],["-90.062150","29.967609"],["-90.062283","29.967471"],["-90.062409","29.967339"],["-90.062534","29.967195"],["-90.062600","29.967120"],["-90.062730","29.966980"],["-90.062860","29.966840"],["-90.062990","29.966700"],["-90.063117","29.966557"],["-90.063243","29.966414"],["-90.063369","29.966271"],["-90.063495","29.966128"],["-90.063600","29.965973"],["-90.063706","29.965818"],["-90.063719","29.965799"],["-90.063860","29.965667"],["-90.064001","29.965535"],["-90.064142","29.965403"],["-90.064210","29.965340"],["-90.064338","29.965199"],["-90.064467","29.965057"],["-90.064595","29.964916"],["-90.064724","29.964775"],["-90.064852","29.964633"],["-90.064910","29.964570"],["-90.065036","29.964427"],["-90.065162","29.964284"],["-90.065288","29.964141"],["-90.065414","29.963998"],["-90.065507","29.963838"],["-90.065583","29.963708"],["-90.065721","29.963574"],["-90.065859","29.963439"],["-90.065997","29.963305"],["-90.066135","29.963171"],["-90.066273","29.963036"],["-90.066400","29.962894"],["-90.066525","29.962750"],["-90.066651","29.962607"],["-90.066700","29.962550"],["-90.066826","29.962407"],["-90.066952","29.962264"],["-90.067000","29.962210"],["-90.067040","29.962170"],["-90.067167","29.962028"],["-90.067295","29.961886"],["-90.067422","29.961744"],["-90.067549","29.961602"],["-90.067648","29.961443"],["-90.067725","29.961319"],["-90.067868","29.961188"],["-90.068010","29.961058"],["-90.068153","29.960927"],["-90.068279","29.960784"],["-90.068404","29.960641"],["-90.068510","29.960520"],["-90.068638","29.960378"],["-90.068765","29.960236"],["-90.068893","29.960094"],["-90.069021","29.959953"],["-90.069148","29.959811"],["-90.069230","29.959720"],["-90.069357","29.959578"],["-90.069485","29.959436"],["-90.069612","29.959294"],["-90.069739","29.959152"],["-90.069867","29.959010"],["-90.069930","29.958939"],["-90.070056","29.958796"],["-90.070181","29.958653"],["-90.070307","29.958510"],["-90.070433","29.958366"],["-90.070520","29.958203"],["-90.070567","29.958115"],["-90.070704","29.957980"],["-90.070841","29.957844"],["-90.070977","29.957709"],["-90.071114","29.957574"],["-90.071251","29.957439"],["-90.071300","29.957390"],["-90.071430","29.957250"],["-90.071559","29.957109"],["-90.071689","29.956969"],["-90.071780","29.956870"],["-90.071909","29.956729"],["-90.072010","29.956620"],["-90.072138","29.956478"],["-90.072265","29.956336"],["-90.072393","29.956195"],["-90.072521","29.956053"],["-90.072648","29.955911"],["-90.072740","29.955809"],["-90.072921","29.955897"],["-90.073102","29.955986"],["-90.073156","29.956012"],["-90.073299","29.956143"],["-90.073442","29.956273"],["-90.073603","29.956387"],["-90.073765","29.956499"],["-90.073840","29.956550"],["-90.073940","29.956620"],["-90.074097","29.956738"],["-90.074220","29.956830"],["-90.074388","29.956935"],["-90.074460","29.956980"],["-90.074623","29.957092"],["-90.074785","29.957204"],["-90.074948","29.957316"],["-90.075110","29.957428"],["-90.075230","29.957510"],["-90.075394","29.957620"],["-90.075558","29.957730"],["-90.075722","29.957841"],["-90.075840","29.957920"],["-90.076003","29.958032"],["-90.076166","29.958143"],["-90.076329","29.958254"],["-90.076410","29.958310"],["-90.076490","29.958360"],["-90.076656","29.958468"],["-90.076780","29.958550"],["-90.076945","29.958660"],["-90.076990","29.958690"],["-90.077152","29.958803"],["-90.077313","29.958916"],["-90.077475","29.959029"],["-90.077620","29.959130"],["-90.077680","29.959170"],["-90.077780","29.959230"],["-90.077880","29.959300"],["-90.078047","29.959407"],["-90.078214","29.959513"],["-90.078382","29.959619"],["-90.078510","29.959700"],["-90.078685","29.959797"],["-90.078849","29.959907"],["-90.079013","29.960017"],["-90.079178","29.960127"],["-90.079342","29.960237"],["-90.079506","29.960347"],["-90.079570","29.960390"],["-90.079732","29.960502"],["-90.079895","29.960614"],["-90.080020","29.960700"],["-90.080185","29.960810"],["-90.080349","29.960919"],["-90.080440","29.960980"],["-90.080603","29.961092"],["-90.080766","29.961203"],["-90.080926","29.961317"],["-90.081087","29.961431"],["-90.081247","29.961545"],["-90.081310","29.961590"],["-90.081470","29.961690"],["-90.081633","29.961801"],["-90.081796","29.961913"],["-90.081959","29.962024"],["-90.082100","29.962120"],["-90.082265","29.962230"],["-90.082428","29.962340"],["-90.082592","29.962451"],["-90.082755","29.962562"],["-90.082900","29.962660"],["-90.083066","29.962768"],["-90.083230","29.962878"],["-90.083393","29.962989"],["-90.083557","29.963100"],["-90.083720","29.963211"],["-90.083884","29.963322"],["-90.083940","29.963360"],["-90.084105","29.963470"],["-90.084269","29.963579"],["-90.084434","29.963689"],["-90.084598","29.963799"],["-90.084763","29.963908"],["-90.084810","29.963940"],["-90.084972","29.964052"],["-90.085135","29.964164"],["-90.085297","29.964277"],["-90.085459","29.964389"],["-90.085621","29.964501"],["-90.085784","29.964613"],["-90.085880","29.964680"],["-90.086042","29.964792"],["-90.086140","29.964860"],["-90.086304","29.964970"],["-90.086468","29.965081"],["-90.086632","29.965191"],["-90.086796","29.965301"],["-90.086960","29.965412"],["-90.087124","29.965522"],["-90.087240","29.965600"],["-90.087390","29.965700"],["-90.087551","29.965814"],["-90.087712","29.965928"],["-90.087872","29.966041"],["-90.088048","29.966138"],["-90.088223","29.966235"],["-90.088398","29.966331"],["-90.088573","29.966428"],["-90.088748","29.966524"],["-90.088923","29.966621"],["-90.089092","29.966714"]]},{"type":"MultiPoint","coordinates":[["-90.088946","29.966643"],["-90.074776","29.954679"],["-90.075759","29.950997"],["-90.076906","29.947161"],["-90.078191","29.945407"],["-90.076213","29.949039"]]},{"type":"LineString","coordinates":[["-90.088946","29.966643"],["-90.088795","29.966520"],["-90.088644","29.966396"],["-90.088492","29.966273"],["-90.088341","29.966150"],["-90.088190","29.966027"],["-90.088039","29.965903"],["-90.087878","29.965790"],["-90.087716","29.965677"],["-90.087553","29.965566"],["-90.087394","29.965450"],["-90.087230","29.965340"],["-90.087065","29.965231"],["-90.086900","29.965121"],["-90.086736","29.965011"],["-90.086571","29.964902"],["-90.086406","29.964793"],["-90.086280","29.964709"],["-90.086112","29.964603"],["-90.086010","29.964539"],["-90.085848","29.964427"],["-90.085685","29.964315"],["-90.085523","29.964203"],["-90.085361","29.964091"],["-90.085198","29.963978"],["-90.085036","29.963866"],["-90.084940","29.963800"],["-90.084776","29.963690"],["-90.084612","29.963580"],["-90.084447","29.963470"],["-90.084283","29.963360"],["-90.084119","29.963250"],["-90.084060","29.963210"],["-90.083898","29.963098"],["-90.083735","29.962986"],["-90.083573","29.962874"],["-90.083410","29.962762"],["-90.083248","29.962650"],["-90.083190","29.962610"],["-90.083040","29.962510"],["-90.082877","29.962399"],["-90.082714","29.962287"],["-90.082551","29.962176"],["-90.082410","29.962080"],["-90.082243","29.961973"],["-90.082078","29.961864"],["-90.081920","29.961759"],["-90.081755","29.961650"],["-90.081590","29.961540"],["-90.081440","29.961440"],["-90.081275","29.961331"],["-90.081110","29.961222"],["-90.080945","29.961113"],["-90.080783","29.961000"],["-90.080622","29.960886"],["-90.080570","29.960850"],["-90.080405","29.960740"],["-90.080241","29.960631"],["-90.080120","29.960550"],["-90.079958","29.960438"],["-90.079795","29.960326"],["-90.079700","29.960260"],["-90.079535","29.960150"],["-90.079371","29.960041"],["-90.079206","29.959931"],["-90.079042","29.959821"],["-90.078877","29.959712"],["-90.078800","29.959660"],["-90.078637","29.959548"],["-90.078477","29.959434"],["-90.078360","29.959350"],["-90.078195","29.959241"],["-90.078040","29.959140"],["-90.077930","29.959050"],["-90.077850","29.958990"],["-90.077789","29.958939"],["-90.077627","29.958826"],["-90.077590","29.958800"],["-90.077424","29.958692"],["-90.077259","29.958583"],["-90.077130","29.958499"],["-90.076967","29.958388"],["-90.076806","29.958274"],["-90.076660","29.958170"],["-90.076496","29.958060"],["-90.076332","29.957949"],["-90.076168","29.957839"],["-90.076004","29.957729"],["-90.075838","29.957621"],["-90.075673","29.957512"],["-90.075507","29.957403"],["-90.075380","29.957320"],["-90.075216","29.957209"],["-90.075053","29.957099"],["-90.074889","29.956988"],["-90.074725","29.956878"],["-90.074610","29.956800"],["-90.074447","29.956689"],["-90.074283","29.956578"],["-90.074180","29.956509"],["-90.074090","29.956449"],["-90.074050","29.956420"],["-90.073890","29.956306"],["-90.073730","29.956191"],["-90.073630","29.956120"],["-90.073757","29.955978"],["-90.073884","29.955836"],["-90.074012","29.955694"],["-90.074139","29.955551"],["-90.074265","29.955409"],["-90.074380","29.955280"],["-90.074483","29.955124"],["-90.074586","29.954968"],["-90.074689","29.954811"],["-90.074776","29.954679"],["-90.074926","29.954555"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075208","29.954150"],["-90.075276","29.953980"],["-90.075314","29.953803"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075437","29.953337"],["-90.075493","29.953164"],["-90.075550","29.952991"],["-90.075580","29.952880"],["-90.075638","29.952707"],["-90.075697","29.952535"],["-90.075755","29.952362"],["-90.075790","29.952260"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075835","29.951650"],["-90.075831","29.951471"],["-90.075830","29.951420"],["-90.075800","29.951242"],["-90.075770","29.951064"],["-90.075759","29.950997"],["-90.075828","29.950827"],["-90.075897","29.950658"],["-90.075927","29.950585"],["-90.075974","29.950410"],["-90.076021","29.950235"],["-90.076068","29.950059"],["-90.076115","29.949884"],["-90.076162","29.949709"],["-90.076209","29.949534"],["-90.076261","29.949360"],["-90.076234","29.949181"],["-90.076213","29.949039"],["-90.076305","29.948878"],["-90.076397","29.948717"],["-90.076490","29.948556"],["-90.076547","29.948383"],["-90.076598","29.948208"],["-90.076626","29.948085"],["-90.076653","29.947961"],["-90.076681","29.947838"],["-90.076708","29.947715"],["-90.076736","29.947591"],["-90.076776","29.947406"],["-90.076793","29.947307"],["-90.076809","29.947208"],["-90.076906","29.947161"],["-90.076833","29.947135"],["-90.076812","29.947013"],["-90.076834","29.946848"],["-90.076855","29.946684"],["-90.076868","29.946495"],["-90.076881","29.946307"],["-90.076935","29.946196"],["-90.076989","29.946085"],["-90.077055","29.945977"],["-90.077122","29.945869"],["-90.077198","29.945748"],["-90.077274","29.945627"],["-90.077443","29.945536"],["-90.077554","29.945497"],["-90.077665","29.945459"],["-90.077797","29.945446"],["-90.077928","29.945433"],["-90.078060","29.945420"],["-90.078191","29.945407"]]},{"type":"MultiPoint","coordinates":[["-90.073156","29.956012"],["-90.074776","29.954679"],["-90.075759","29.950997"],["-90.076906","29.947161"],["-90.078191","29.945407"],["-90.076213","29.949039"],["-90.070567","29.958115"],["-90.067725","29.961319"],["-90.065583","29.963708"],["-90.063719","29.965799"],["-90.060259","29.968249"],["-90.057492","29.968586"]]},{"type":"LineString","coordinates":[["-90.057492","29.968586"],["-90.057699","29.968600"],["-90.057906","29.968613"],["-90.058010","29.968620"],["-90.058170","29.968600"],["-90.058372","29.968558"],["-90.058574","29.968516"],["-90.058775","29.968473"],["-90.058977","29.968431"],["-90.059179","29.968389"],["-90.059270","29.968370"],["-90.059477","29.968352"],["-90.059620","29.968340"],["-90.059825","29.968311"],["-90.060030","29.968282"],["-90.060235","29.968252"],["-90.060259","29.968249"],["-90.060465","29.968270"],["-90.060617","29.968286"],["-90.060710","29.968280"],["-90.060913","29.968241"],["-90.061070","29.968210"],["-90.061266","29.968150"],["-90.061456","29.968078"],["-90.061530","29.968050"],["-90.061703","29.967951"],["-90.061867","29.967840"],["-90.061970","29.967770"],["-90.062115","29.967641"],["-90.062150","29.967610"],["-90.062286","29.967474"],["-90.062422","29.967338"],["-90.062542","29.967191"],["-90.062600","29.967120"],["-90.062730","29.966980"],["-90.062860","29.966840"],["-90.062990","29.966700"],["-90.063117","29.966557"],["-90.063243","29.966414"],["-90.063369","29.966271"],["-90.063495","29.966128"],["-90.063600","29.965973"],["-90.063706","29.965818"],["-90.063719","29.965799"],["-90.063860","29.965667"],["-90.064001","29.965535"],["-90.064142","29.965403"],["-90.064210","29.965340"],["-90.064338","29.965199"],["-90.064467","29.965057"],["-90.064595","29.964916"],["-90.064724","29.964775"],["-90.064852","29.964633"],["-90.064910","29.964570"],["-90.065036","29.964427"],["-90.065162","29.964284"],["-90.065288","29.964141"],["-90.065415","29.963999"],["-90.065508","29.963838"],["-90.065583","29.963708"],["-90.065721","29.963574"],["-90.065859","29.963439"],["-90.065997","29.963305"],["-90.066135","29.963171"],["-90.066273","29.963036"],["-90.066400","29.962894"],["-90.066525","29.962750"],["-90.066651","29.962607"],["-90.066700","29.962550"],["-90.066826","29.962407"],["-90.066952","29.962264"],["-90.067000","29.962210"],["-90.067040","29.962170"],["-90.067167","29.962028"],["-90.067295","29.961886"],["-90.067422","29.961744"],["-90.067549","29.961602"],["-90.067648","29.961443"],["-90.067725","29.961319"],["-90.067868","29.961188"],["-90.068010","29.961058"],["-90.068153","29.960927"],["-90.068279","29.960784"],["-90.068404","29.960641"],["-90.068510","29.960520"],["-90.068638","29.960378"],["-90.068765","29.960236"],["-90.068893","29.960094"],["-90.069021","29.959953"],["-90.069148","29.959811"],["-90.069230","29.959720"],["-90.069357","29.959578"],["-90.069485","29.959436"],["-90.069612","29.959294"],["-90.069740","29.959152"],["-90.069867","29.959010"],["-90.069930","29.958940"],["-90.070056","29.958797"],["-90.070181","29.958654"],["-90.070307","29.958510"],["-90.070432","29.958367"],["-90.070519","29.958204"],["-90.070567","29.958115"],["-90.070704","29.957980"],["-90.070841","29.957844"],["-90.070977","29.957709"],["-90.071114","29.957574"],["-90.071251","29.957439"],["-90.071300","29.957390"],["-90.071430","29.957250"],["-90.071559","29.957109"],["-90.071689","29.956969"],["-90.071780","29.956870"],["-90.071909","29.956729"],["-90.072010","29.956620"],["-90.072138","29.956478"],["-90.072266","29.956336"],["-90.072393","29.956195"],["-90.072521","29.956053"],["-90.072649","29.955911"],["-90.072740","29.955810"],["-90.072921","29.955898"],["-90.073102","29.955986"],["-90.073156","29.956012"],["-90.073290","29.956150"],["-90.073366","29.956228"],["-90.073460","29.956290"],["-90.073596","29.956154"],["-90.073630","29.956120"],["-90.073757","29.955978"],["-90.073884","29.955836"],["-90.074012","29.955694"],["-90.074139","29.955551"],["-90.074265","29.955409"],["-90.074380","29.955280"],["-90.074483","29.955124"],["-90.074586","29.954968"],["-90.074689","29.954811"],["-90.074776","29.954679"],["-90.074926","29.954555"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075208","29.954150"],["-90.075276","29.953980"],["-90.075314","29.953803"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075437","29.953337"],["-90.075493","29.953164"],["-90.075550","29.952991"],["-90.075580","29.952880"],["-90.075638","29.952707"],["-90.075697","29.952535"],["-90.075755","29.952362"],["-90.075790","29.952260"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075835","29.951650"],["-90.075831","29.951471"],["-90.075830","29.951420"],["-90.075800","29.951242"],["-90.075770","29.951064"],["-90.075759","29.950997"],["-90.075828","29.950827"],["-90.075897","29.950658"],["-90.075927","29.950585"],["-90.075974","29.950410"],["-90.076021","29.950235"],["-90.076068","29.950059"],["-90.076115","29.949884"],["-90.076162","29.949709"],["-90.076209","29.949534"],["-90.076261","29.949360"],["-90.076234","29.949181"],["-90.076213","29.949039"],["-90.076305","29.948878"],["-90.076397","29.948717"],["-90.076490","29.948556"],["-90.076547","29.948383"],["-90.076598","29.948208"],["-90.076626","29.948085"],["-90.076653","29.947961"],["-90.076681","29.947838"],["-90.076708","29.947715"],["-90.076736","29.947591"],["-90.076776","29.947406"],["-90.076793","29.947307"],["-90.076809","29.947208"],["-90.076906","29.947161"],["-90.076840","29.947123"],["-90.076844","29.946990"],["-90.076847","29.946857"],["-90.076853","29.946726"],["-90.076859","29.946594"],["-90.076864","29.946462"],["-90.076870","29.946331"],["-90.076933","29.946186"],["-90.076997","29.946040"],["-90.077079","29.945927"],["-90.077161","29.945814"],["-90.077242","29.945701"],["-90.077324","29.945588"],["-90.077473","29.945528"],["-90.077622","29.945468"],["-90.077769","29.945441"],["-90.077980","29.945424"],["-90.078191","29.945407"]]}]}},{"type":"Feature","properties":{"route_id":"47","agency_id":"1","route_short_name":"47","route_long_name":"Canal Streetcar - Cemeteries","route_type":"0","route_color":"#c32f3d","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.082555","29.962311"],["-90.072937","29.955716"],["-90.087599","29.965729"],["-90.088946","29.966643"],["-90.100315","29.974355"],["-90.110492","29.982693"],["-90.075405","29.957434"],["-90.092157","29.968815"],["-90.093714","29.969875"],["-90.095326","29.970960"],["-90.096863","29.971974"],["-90.098436","29.973067"],["-90.104840","29.977434"],["-90.106656","29.978677"],["-90.108852","29.980079"],["-90.078134","29.959314"],["-90.091244","29.968193"],["-90.066304","29.951243"],["-90.070042","29.953755"],["-90.068084","29.952458"],["-90.064992","29.950382"],["-90.103007","29.976186"],["-90.085829","29.964529"],["-90.084071","29.963277"],["-90.080407","29.960849"]]},{"type":"LineString","coordinates":[["-90.110492","29.982693"],["-90.110685","29.982672"],["-90.110744","29.982628"],["-90.110765","29.982566"],["-90.110768","29.982440"],["-90.110781","29.982282"],["-90.110816","29.982154"],["-90.110921","29.982082"],["-90.111063","29.982003"],["-90.111219","29.981913"],["-90.111280","29.981815"],["-90.111259","29.981724"],["-90.111163","29.981643"],["-90.111066","29.981562"],["-90.110963","29.981506"],["-90.110859","29.981450"],["-90.110695","29.981338"],["-90.110531","29.981226"],["-90.110367","29.981114"],["-90.110203","29.981001"],["-90.110039","29.980889"],["-90.109875","29.980777"],["-90.109741","29.980685"],["-90.109606","29.980592"],["-90.109472","29.980500"],["-90.109345","29.980414"],["-90.109219","29.980328"],["-90.109092","29.980242"],["-90.108972","29.980161"],["-90.108852","29.980079"],["-90.108747","29.980027"],["-90.108641","29.979975"],["-90.108498","29.979886"],["-90.108354","29.979796"],["-90.108199","29.979688"],["-90.108045","29.979581"],["-90.107890","29.979473"],["-90.107736","29.979365"],["-90.107581","29.979257"],["-90.107426","29.979150"],["-90.107272","29.979042"],["-90.107117","29.978934"],["-90.106963","29.978848"],["-90.106810","29.978763"],["-90.106656","29.978677"],["-90.106526","29.978572"],["-90.106395","29.978468"],["-90.106265","29.978363"],["-90.106098","29.978252"],["-90.105931","29.978142"],["-90.105764","29.978031"],["-90.105596","29.977921"],["-90.105429","29.977810"],["-90.105262","29.977700"],["-90.105095","29.977589"],["-90.104968","29.977512"],["-90.104840","29.977434"],["-90.104685","29.977326"],["-90.104530","29.977218"],["-90.104375","29.977110"],["-90.104220","29.977003"],["-90.104064","29.976895"],["-90.103909","29.976787"],["-90.103754","29.976679"],["-90.103599","29.976571"],["-90.103451","29.976475"],["-90.103303","29.976379"],["-90.103155","29.976282"],["-90.103007","29.976186"],["-90.102863","29.976082"],["-90.102720","29.975978"],["-90.102576","29.975874"],["-90.102432","29.975769"],["-90.102289","29.975665"],["-90.102145","29.975561"],["-90.101991","29.975457"],["-90.101837","29.975353"],["-90.101684","29.975250"],["-90.101530","29.975146"],["-90.101376","29.975042"],["-90.101222","29.974938"],["-90.101060","29.974828"],["-90.100898","29.974719"],["-90.100736","29.974609"],["-90.100574","29.974500"],["-90.100412","29.974390"],["-90.100315","29.974355"],["-90.100254","29.974268"],["-90.100164","29.974219"],["-90.100023","29.974123"],["-90.099882","29.974027"],["-90.099741","29.973931"],["-90.099608","29.973846"],["-90.099474","29.973760"],["-90.099341","29.973675"],["-90.099207","29.973581"],["-90.099073","29.973487"],["-90.098914","29.973377"],["-90.098755","29.973266"],["-90.098619","29.973162"],["-90.098436","29.973067"],["-90.098274","29.972958"],["-90.098111","29.972848"],["-90.097949","29.972739"],["-90.097777","29.972623"],["-90.097606","29.972506"],["-90.097434","29.972390"],["-90.097291","29.972286"],["-90.097149","29.972182"],["-90.097006","29.972078"],["-90.096863","29.971974"],["-90.096727","29.971880"],["-90.096591","29.971787"],["-90.096454","29.971694"],["-90.096318","29.971600"],["-90.096188","29.971509"],["-90.096057","29.971417"],["-90.095927","29.971326"],["-90.095785","29.971231"],["-90.095642","29.971136"],["-90.095484","29.971048"],["-90.095326","29.970960"],["-90.095165","29.970852"],["-90.095004","29.970743"],["-90.094842","29.970635"],["-90.094681","29.970526"],["-90.094520","29.970418"],["-90.094359","29.970309"],["-90.094198","29.970201"],["-90.094036","29.970092"],["-90.093875","29.969984"],["-90.093714","29.969875"],["-90.093541","29.969757"],["-90.093368","29.969639"],["-90.093195","29.969522"],["-90.093022","29.969404"],["-90.092849","29.969286"],["-90.092676","29.969168"],["-90.092503","29.969051"],["-90.092330","29.968933"],["-90.092157","29.968815"],["-90.092043","29.968738"],["-90.091929","29.968660"],["-90.091815","29.968582"],["-90.091700","29.968504"],["-90.091586","29.968426"],["-90.091472","29.968349"],["-90.091358","29.968271"],["-90.091244","29.968193"],["-90.091100","29.968096"],["-90.090957","29.967999"],["-90.090813","29.967902"],["-90.090669","29.967806"],["-90.090526","29.967709"],["-90.090382","29.967612"],["-90.090239","29.967515"],["-90.090095","29.967418"],["-90.089951","29.967321"],["-90.089808","29.967224"],["-90.089664","29.967127"],["-90.089520","29.967031"],["-90.089377","29.966934"],["-90.089233","29.966837"],["-90.089090","29.966740"],["-90.088946","29.966643"],["-90.088778","29.966529"],["-90.088609","29.966415"],["-90.088441","29.966300"],["-90.088272","29.966186"],["-90.088104","29.966072"],["-90.087936","29.965958"],["-90.087767","29.965843"],["-90.087599","29.965729"],["-90.087488","29.965654"],["-90.087378","29.965579"],["-90.087267","29.965504"],["-90.087156","29.965429"],["-90.087046","29.965354"],["-90.086935","29.965279"],["-90.086825","29.965204"],["-90.086714","29.965129"],["-90.086603","29.965054"],["-90.086493","29.964979"],["-90.086382","29.964904"],["-90.086271","29.964829"],["-90.086161","29.964754"],["-90.086050","29.964679"],["-90.085940","29.964604"],["-90.085829","29.964529"],["-90.085719","29.964451"],["-90.085609","29.964373"],["-90.085499","29.964294"],["-90.085389","29.964216"],["-90.085280","29.964138"],["-90.085170","29.964060"],["-90.085060","29.963981"],["-90.084950","29.963903"],["-90.084840","29.963825"],["-90.084730","29.963747"],["-90.084620","29.963668"],["-90.084510","29.963590"],["-90.084401","29.963512"],["-90.084291","29.963434"],["-90.084181","29.963355"],["-90.084071","29.963277"],["-90.083976","29.963217"],["-90.083881","29.963156"],["-90.083787","29.963096"],["-90.083692","29.963036"],["-90.083597","29.962975"],["-90.083502","29.962915"],["-90.083408","29.962854"],["-90.083313","29.962794"],["-90.083218","29.962734"],["-90.083123","29.962673"],["-90.083029","29.962613"],["-90.082934","29.962553"],["-90.082839","29.962492"],["-90.082744","29.962432"],["-90.082650","29.962371"],["-90.082555","29.962311"],["-90.082421","29.962220"],["-90.082286","29.962128"],["-90.082152","29.962037"],["-90.082018","29.961946"],["-90.081884","29.961854"],["-90.081749","29.961763"],["-90.081615","29.961671"],["-90.081481","29.961580"],["-90.081347","29.961489"],["-90.081212","29.961397"],["-90.081078","29.961306"],["-90.080944","29.961215"],["-90.080810","29.961123"],["-90.080675","29.961032"],["-90.080541","29.960940"],["-90.080407","29.960849"],["-90.080265","29.960753"],["-90.080123","29.960657"],["-90.079981","29.960561"],["-90.079839","29.960465"],["-90.079697","29.960369"],["-90.079555","29.960273"],["-90.079413","29.960177"],["-90.079270","29.960082"],["-90.079128","29.959986"],["-90.078986","29.959890"],["-90.078844","29.959794"],["-90.078702","29.959698"],["-90.078560","29.959602"],["-90.078418","29.959506"],["-90.078276","29.959410"],["-90.078134","29.959314"],["-90.077963","29.959197"],["-90.077793","29.959079"],["-90.077622","29.958962"],["-90.077452","29.958844"],["-90.077281","29.958727"],["-90.077111","29.958609"],["-90.076940","29.958492"],["-90.076769","29.958374"],["-90.076599","29.958257"],["-90.076428","29.958139"],["-90.076258","29.958022"],["-90.076087","29.957904"],["-90.075917","29.957787"],["-90.075746","29.957669"],["-90.075576","29.957552"],["-90.075405","29.957434"],["-90.075251","29.957327"],["-90.075096","29.957219"],["-90.074942","29.957112"],["-90.074788","29.957005"],["-90.074634","29.956897"],["-90.074479","29.956790"],["-90.074325","29.956682"],["-90.074171","29.956575"],["-90.074017","29.956468"],["-90.073862","29.956360"],["-90.073708","29.956253"],["-90.073554","29.956146"],["-90.073400","29.956038"],["-90.073284","29.955958"],["-90.073168","29.955877"],["-90.073053","29.955797"],["-90.072937","29.955716"],["-90.072820","29.955642"],["-90.072703","29.955568"],["-90.072545","29.955463"],["-90.072387","29.955358"],["-90.072228","29.955253"],["-90.072070","29.955148"],["-90.071912","29.955042"],["-90.071754","29.954937"],["-90.071595","29.954832"],["-90.071437","29.954727"],["-90.071279","29.954622"],["-90.071121","29.954517"],["-90.070962","29.954411"],["-90.070804","29.954306"],["-90.070646","29.954201"],["-90.070488","29.954096"],["-90.070329","29.953991"],["-90.070171","29.953886"],["-90.070042","29.953755"],["-90.069924","29.953732"],["-90.069817","29.953661"],["-90.069710","29.953589"],["-90.069602","29.953517"],["-90.069495","29.953445"],["-90.069388","29.953374"],["-90.069281","29.953302"],["-90.069173","29.953230"],["-90.069066","29.953158"],["-90.068959","29.953087"],["-90.068851","29.953015"],["-90.068744","29.952943"],["-90.068637","29.952871"],["-90.068530","29.952800"],["-90.068422","29.952728"],["-90.068315","29.952656"],["-90.068208","29.952584"],["-90.068084","29.952458"],["-90.067902","29.952357"],["-90.067812","29.952296"],["-90.067722","29.952236"],["-90.067631","29.952176"],["-90.067541","29.952116"],["-90.067451","29.952056"],["-90.067361","29.951996"],["-90.067271","29.951936"],["-90.067180","29.951875"],["-90.067090","29.951815"],["-90.067000","29.951755"],["-90.066910","29.951695"],["-90.066820","29.951635"],["-90.066729","29.951575"],["-90.066639","29.951515"],["-90.066549","29.951455"],["-90.066459","29.951394"],["-90.066381","29.951319"],["-90.066304","29.951243"],["-90.066202","29.951186"],["-90.066100","29.951129"],["-90.065961","29.951036"],["-90.065823","29.950943"],["-90.065684","29.950849"],["-90.065546","29.950756"],["-90.065407","29.950662"],["-90.065269","29.950569"],["-90.065130","29.950475"],["-90.064992","29.950382"]]},{"type":"MultiPoint","coordinates":[["-90.082555","29.962311"],["-90.072937","29.955716"],["-90.087599","29.965729"],["-90.088946","29.966643"],["-90.075405","29.957434"],["-90.078134","29.959314"],["-90.066304","29.951243"],["-90.070042","29.953755"],["-90.068084","29.952458"],["-90.064992","29.950382"],["-90.085829","29.964529"],["-90.084071","29.963277"],["-90.080407","29.960849"]]},{"type":"LineString","coordinates":[["-90.088946","29.966643"],["-90.088778","29.966529"],["-90.088609","29.966415"],["-90.088441","29.966300"],["-90.088272","29.966186"],["-90.088104","29.966072"],["-90.087936","29.965958"],["-90.087767","29.965843"],["-90.087599","29.965729"],["-90.087488","29.965654"],["-90.087378","29.965579"],["-90.087267","29.965504"],["-90.087156","29.965429"],["-90.087046","29.965354"],["-90.086935","29.965279"],["-90.086825","29.965204"],["-90.086714","29.965129"],["-90.086603","29.965054"],["-90.086493","29.964979"],["-90.086382","29.964904"],["-90.086271","29.964829"],["-90.086161","29.964754"],["-90.086050","29.964679"],["-90.085940","29.964604"],["-90.085829","29.964529"],["-90.085719","29.964451"],["-90.085609","29.964373"],["-90.085499","29.964294"],["-90.085389","29.964216"],["-90.085280","29.964138"],["-90.085170","29.964060"],["-90.085060","29.963981"],["-90.084950","29.963903"],["-90.084840","29.963825"],["-90.084730","29.963747"],["-90.084620","29.963668"],["-90.084510","29.963590"],["-90.084401","29.963512"],["-90.084291","29.963434"],["-90.084181","29.963355"],["-90.084071","29.963277"],["-90.083976","29.963217"],["-90.083881","29.963156"],["-90.083787","29.963096"],["-90.083692","29.963036"],["-90.083597","29.962975"],["-90.083502","29.962915"],["-90.083408","29.962854"],["-90.083313","29.962794"],["-90.083218","29.962734"],["-90.083123","29.962673"],["-90.083029","29.962613"],["-90.082934","29.962553"],["-90.082839","29.962492"],["-90.082744","29.962432"],["-90.082650","29.962371"],["-90.082555","29.962311"],["-90.082421","29.962220"],["-90.082286","29.962128"],["-90.082152","29.962037"],["-90.082018","29.961946"],["-90.081884","29.961854"],["-90.081749","29.961763"],["-90.081615","29.961671"],["-90.081481","29.961580"],["-90.081347","29.961489"],["-90.081212","29.961397"],["-90.081078","29.961306"],["-90.080944","29.961215"],["-90.080810","29.961123"],["-90.080675","29.961032"],["-90.080541","29.960940"],["-90.080407","29.960849"],["-90.080265","29.960753"],["-90.080123","29.960657"],["-90.079981","29.960561"],["-90.079839","29.960465"],["-90.079697","29.960369"],["-90.079555","29.960273"],["-90.079413","29.960177"],["-90.079270","29.960082"],["-90.079128","29.959986"],["-90.078986","29.959890"],["-90.078844","29.959794"],["-90.078702","29.959698"],["-90.078560","29.959602"],["-90.078418","29.959506"],["-90.078276","29.959410"],["-90.078134","29.959314"],["-90.077963","29.959197"],["-90.077793","29.959079"],["-90.077622","29.958962"],["-90.077452","29.958844"],["-90.077281","29.958727"],["-90.077111","29.958609"],["-90.076940","29.958492"],["-90.076769","29.958374"],["-90.076599","29.958257"],["-90.076428","29.958139"],["-90.076258","29.958022"],["-90.076087","29.957904"],["-90.075917","29.957787"],["-90.075746","29.957669"],["-90.075576","29.957552"],["-90.075405","29.957434"],["-90.075251","29.957327"],["-90.075096","29.957219"],["-90.074942","29.957112"],["-90.074788","29.957005"],["-90.074634","29.956897"],["-90.074479","29.956790"],["-90.074325","29.956682"],["-90.074171","29.956575"],["-90.074017","29.956468"],["-90.073862","29.956360"],["-90.073708","29.956253"],["-90.073554","29.956146"],["-90.073400","29.956038"],["-90.073284","29.955958"],["-90.073168","29.955877"],["-90.073053","29.955797"],["-90.072937","29.955716"],["-90.072820","29.955642"],["-90.072703","29.955568"],["-90.072545","29.955463"],["-90.072387","29.955358"],["-90.072228","29.955253"],["-90.072070","29.955148"],["-90.071912","29.955042"],["-90.071754","29.954937"],["-90.071595","29.954832"],["-90.071437","29.954727"],["-90.071279","29.954622"],["-90.071121","29.954517"],["-90.070962","29.954411"],["-90.070804","29.954306"],["-90.070646","29.954201"],["-90.070488","29.954096"],["-90.070329","29.953991"],["-90.070171","29.953886"],["-90.070042","29.953755"],["-90.069924","29.953732"],["-90.069817","29.953661"],["-90.069710","29.953589"],["-90.069602","29.953517"],["-90.069495","29.953445"],["-90.069388","29.953374"],["-90.069281","29.953302"],["-90.069173","29.953230"],["-90.069066","29.953158"],["-90.068959","29.953087"],["-90.068851","29.953015"],["-90.068744","29.952943"],["-90.068637","29.952871"],["-90.068530","29.952800"],["-90.068422","29.952728"],["-90.068315","29.952656"],["-90.068208","29.952584"],["-90.068084","29.952458"],["-90.067902","29.952357"],["-90.067812","29.952296"],["-90.067722","29.952236"],["-90.067631","29.952176"],["-90.067541","29.952116"],["-90.067451","29.952056"],["-90.067361","29.951996"],["-90.067271","29.951936"],["-90.067180","29.951875"],["-90.067090","29.951815"],["-90.067000","29.951755"],["-90.066910","29.951695"],["-90.066820","29.951635"],["-90.066729","29.951575"],["-90.066639","29.951515"],["-90.066549","29.951455"],["-90.066459","29.951394"],["-90.066381","29.951319"],["-90.066304","29.951243"],["-90.066202","29.951186"],["-90.066100","29.951129"],["-90.065961","29.951036"],["-90.065823","29.950943"],["-90.065684","29.950849"],["-90.065546","29.950756"],["-90.065407","29.950662"],["-90.065269","29.950569"],["-90.065130","29.950475"],["-90.064992","29.950382"]]},{"type":"MultiPoint","coordinates":[["-90.082505","29.962276"],["-90.100437","29.974417"],["-90.087519","29.965685"],["-90.073156","29.956012"],["-90.110492","29.982693"],["-90.106814","29.978711"],["-90.104938","29.977440"],["-90.103094","29.976197"],["-90.098614","29.973209"],["-90.096687","29.971921"],["-90.095228","29.970874"],["-90.093656","29.969827"],["-90.092050","29.968718"],["-90.085842","29.964549"],["-90.083851","29.963185"],["-90.080356","29.960816"],["-90.078051","29.959296"],["-90.069772","29.953711"],["-90.068064","29.952575"],["-90.065793","29.951016"],["-90.089092","29.966714"],["-90.091415","29.968288"],["-90.108648","29.979972"],["-90.064992","29.950382"],["-90.075219","29.957336"]]},{"type":"LineString","coordinates":[["-90.064992","29.950382"],["-90.065135","29.950476"],["-90.065277","29.950570"],["-90.065420","29.950664"],["-90.065563","29.950759"],["-90.065678","29.950887"],["-90.065793","29.951016"],["-90.065922","29.951084"],["-90.066052","29.951151"],["-90.066193","29.951246"],["-90.066333","29.951340"],["-90.066474","29.951434"],["-90.066615","29.951528"],["-90.066756","29.951622"],["-90.066896","29.951716"],["-90.067037","29.951810"],["-90.067169","29.951899"],["-90.067300","29.951989"],["-90.067431","29.952078"],["-90.067563","29.952167"],["-90.067694","29.952256"],["-90.067826","29.952346"],["-90.067957","29.952435"],["-90.068089","29.952524"],["-90.068064","29.952575"],["-90.068180","29.952582"],["-90.068314","29.952674"],["-90.068448","29.952766"],["-90.068582","29.952858"],["-90.068716","29.952950"],["-90.068850","29.953042"],["-90.068984","29.953134"],["-90.069118","29.953226"],["-90.069252","29.953317"],["-90.069380","29.953404"],["-90.069507","29.953491"],["-90.069635","29.953578"],["-90.069763","29.953665"],["-90.069772","29.953711"],["-90.069894","29.953751"],["-90.070008","29.953828"],["-90.070121","29.953905"],["-90.070235","29.953982"],["-90.070348","29.954058"],["-90.070462","29.954135"],["-90.070575","29.954212"],["-90.070689","29.954289"],["-90.070802","29.954366"],["-90.070916","29.954443"],["-90.071029","29.954520"],["-90.071143","29.954597"],["-90.071256","29.954673"],["-90.071370","29.954750"],["-90.071483","29.954827"],["-90.071597","29.954904"],["-90.071710","29.954981"],["-90.071822","29.955057"],["-90.071934","29.955133"],["-90.072046","29.955208"],["-90.072158","29.955284"],["-90.072269","29.955360"],["-90.072362","29.955419"],["-90.072456","29.955478"],["-90.072549","29.955537"],["-90.072643","29.955596"],["-90.072736","29.955654"],["-90.072829","29.955713"],["-90.072923","29.955772"],["-90.073016","29.955831"],["-90.073086","29.955922"],["-90.073156","29.956012"],["-90.073279","29.956070"],["-90.073402","29.956129"],["-90.073511","29.956201"],["-90.073619","29.956274"],["-90.073727","29.956346"],["-90.073835","29.956419"],["-90.073943","29.956491"],["-90.074051","29.956564"],["-90.074160","29.956636"],["-90.074268","29.956709"],["-90.074376","29.956781"],["-90.074484","29.956854"],["-90.074592","29.956926"],["-90.074700","29.956999"],["-90.074809","29.957071"],["-90.074917","29.957144"],["-90.075025","29.957216"],["-90.075133","29.957289"],["-90.075219","29.957336"],["-90.075310","29.957396"],["-90.075401","29.957456"],["-90.075494","29.957520"],["-90.075586","29.957584"],["-90.075679","29.957647"],["-90.075771","29.957711"],["-90.075864","29.957774"],["-90.075957","29.957838"],["-90.076049","29.957902"],["-90.076142","29.957965"],["-90.076234","29.958029"],["-90.076327","29.958092"],["-90.076419","29.958156"],["-90.076512","29.958220"],["-90.076604","29.958283"],["-90.076697","29.958347"],["-90.076790","29.958411"],["-90.076882","29.958474"],["-90.077017","29.958565"],["-90.077151","29.958655"],["-90.077285","29.958746"],["-90.077420","29.958837"],["-90.077554","29.958927"],["-90.077689","29.959018"],["-90.077823","29.959109"],["-90.077958","29.959199"],["-90.078051","29.959296"],["-90.078165","29.959364"],["-90.078280","29.959432"],["-90.078377","29.959498"],["-90.078474","29.959564"],["-90.078572","29.959630"],["-90.078669","29.959696"],["-90.078767","29.959762"],["-90.078864","29.959829"],["-90.078962","29.959895"],["-90.079059","29.959961"],["-90.079203","29.960056"],["-90.079348","29.960151"],["-90.079492","29.960246"],["-90.079636","29.960341"],["-90.079780","29.960436"],["-90.079924","29.960531"],["-90.080068","29.960626"],["-90.080212","29.960721"],["-90.080356","29.960816"],["-90.080490","29.960907"],["-90.080625","29.960999"],["-90.080759","29.961090"],["-90.080893","29.961181"],["-90.081028","29.961272"],["-90.081162","29.961364"],["-90.081296","29.961455"],["-90.081430","29.961546"],["-90.081565","29.961637"],["-90.081699","29.961729"],["-90.081833","29.961820"],["-90.081968","29.961911"],["-90.082102","29.962002"],["-90.082236","29.962094"],["-90.082371","29.962185"],["-90.082505","29.962276"],["-90.082673","29.962390"],["-90.082841","29.962503"],["-90.083010","29.962617"],["-90.083178","29.962731"],["-90.083346","29.962844"],["-90.083514","29.962958"],["-90.083683","29.963071"],["-90.083851","29.963185"],["-90.083975","29.963270"],["-90.084100","29.963356"],["-90.084224","29.963441"],["-90.084349","29.963526"],["-90.084473","29.963611"],["-90.084598","29.963697"],["-90.084722","29.963782"],["-90.084846","29.963867"],["-90.084971","29.963952"],["-90.085095","29.964038"],["-90.085220","29.964123"],["-90.085344","29.964208"],["-90.085469","29.964293"],["-90.085593","29.964379"],["-90.085718","29.964464"],["-90.085842","29.964549"],["-90.085937","29.964617"],["-90.086032","29.964686"],["-90.086127","29.964754"],["-90.086221","29.964823"],["-90.086316","29.964891"],["-90.086411","29.964959"],["-90.086506","29.965028"],["-90.086601","29.965096"],["-90.086696","29.965164"],["-90.086791","29.965233"],["-90.086886","29.965301"],["-90.086980","29.965370"],["-90.087075","29.965438"],["-90.087170","29.965506"],["-90.087265","29.965575"],["-90.087360","29.965643"],["-90.087519","29.965685"],["-90.087657","29.965801"],["-90.087747","29.965858"],["-90.087836","29.965915"],["-90.087926","29.965972"],["-90.088016","29.966029"],["-90.088105","29.966086"],["-90.088195","29.966143"],["-90.088285","29.966200"],["-90.088374","29.966258"],["-90.088464","29.966315"],["-90.088554","29.966372"],["-90.088644","29.966429"],["-90.088733","29.966486"],["-90.088823","29.966543"],["-90.088913","29.966600"],["-90.089002","29.966657"],["-90.089092","29.966714"],["-90.089237","29.966812"],["-90.089382","29.966911"],["-90.089528","29.967009"],["-90.089673","29.967108"],["-90.089818","29.967206"],["-90.089963","29.967304"],["-90.090108","29.967403"],["-90.090253","29.967501"],["-90.090399","29.967599"],["-90.090544","29.967698"],["-90.090689","29.967796"],["-90.090834","29.967895"],["-90.090979","29.967993"],["-90.091125","29.968091"],["-90.091270","29.968190"],["-90.091415","29.968288"],["-90.091574","29.968396"],["-90.091732","29.968503"],["-90.091891","29.968611"],["-90.092050","29.968718"],["-90.092150","29.968787"],["-90.092251","29.968857"],["-90.092351","29.968926"],["-90.092451","29.968995"],["-90.092552","29.969065"],["-90.092652","29.969134"],["-90.092753","29.969203"],["-90.092853","29.969273"],["-90.092953","29.969342"],["-90.093054","29.969411"],["-90.093154","29.969480"],["-90.093254","29.969550"],["-90.093355","29.969619"],["-90.093455","29.969688"],["-90.093556","29.969758"],["-90.093656","29.969827"],["-90.093754","29.969892"],["-90.093852","29.969958"],["-90.093951","29.970023"],["-90.094049","29.970089"],["-90.094147","29.970154"],["-90.094245","29.970220"],["-90.094344","29.970285"],["-90.094442","29.970351"],["-90.094540","29.970416"],["-90.094638","29.970481"],["-90.094737","29.970547"],["-90.094835","29.970612"],["-90.094933","29.970678"],["-90.095031","29.970743"],["-90.095130","29.970809"],["-90.095228","29.970874"],["-90.095391","29.970994"],["-90.095554","29.971114"],["-90.095717","29.971234"],["-90.095879","29.971354"],["-90.096042","29.971473"],["-90.096205","29.971593"],["-90.096368","29.971713"],["-90.096531","29.971833"],["-90.096687","29.971921"],["-90.096828","29.972039"],["-90.096940","29.972112"],["-90.097051","29.972185"],["-90.097163","29.972258"],["-90.097274","29.972332"],["-90.097386","29.972405"],["-90.097498","29.972478"],["-90.097609","29.972551"],["-90.097721","29.972624"],["-90.097833","29.972697"],["-90.097944","29.972770"],["-90.098056","29.972843"],["-90.098167","29.972917"],["-90.098279","29.972990"],["-90.098391","29.973063"],["-90.098502","29.973136"],["-90.098614","29.973209"],["-90.098728","29.973285"],["-90.098842","29.973360"],["-90.098956","29.973436"],["-90.099070","29.973511"],["-90.099184","29.973587"],["-90.099298","29.973662"],["-90.099412","29.973738"],["-90.099525","29.973813"],["-90.099639","29.973889"],["-90.099753","29.973964"],["-90.099867","29.974040"],["-90.099981","29.974115"],["-90.100095","29.974191"],["-90.100209","29.974266"],["-90.100323","29.974342"],["-90.100437","29.974417"],["-90.100437","29.974417"],["-90.100593","29.974522"],["-90.100749","29.974628"],["-90.100905","29.974733"],["-90.101060","29.974839"],["-90.101216","29.974944"],["-90.101372","29.975049"],["-90.101528","29.975155"],["-90.101684","29.975260"],["-90.101840","29.975365"],["-90.101996","29.975471"],["-90.102152","29.975576"],["-90.102307","29.975682"],["-90.102463","29.975787"],["-90.102619","29.975892"],["-90.102775","29.975998"],["-90.102931","29.976103"],["-90.103094","29.976197"],["-90.103258","29.976316"],["-90.103423","29.976434"],["-90.103587","29.976553"],["-90.103751","29.976671"],["-90.103916","29.976790"],["-90.104080","29.976908"],["-90.104252","29.977014"],["-90.104423","29.977121"],["-90.104595","29.977227"],["-90.104766","29.977334"],["-90.104938","29.977440"],["-90.105109","29.977556"],["-90.105279","29.977671"],["-90.105450","29.977787"],["-90.105620","29.977902"],["-90.105791","29.978018"],["-90.105961","29.978133"],["-90.106132","29.978249"],["-90.106302","29.978364"],["-90.106473","29.978480"],["-90.106643","29.978595"],["-90.106814","29.978711"],["-90.106929","29.978790"],["-90.107043","29.978869"],["-90.107158","29.978947"],["-90.107272","29.979026"],["-90.107387","29.979105"],["-90.107502","29.979184"],["-90.107616","29.979263"],["-90.107731","29.979342"],["-90.107846","29.979420"],["-90.107960","29.979499"],["-90.108075","29.979578"],["-90.108189","29.979657"],["-90.108304","29.979736"],["-90.108419","29.979814"],["-90.108533","29.979893"],["-90.108648","29.979972"],["-90.108811","29.980080"],["-90.108974","29.980189"],["-90.109137","29.980297"],["-90.109300","29.980406"],["-90.109462","29.980514"],["-90.109625","29.980622"],["-90.109788","29.980731"],["-90.109951","29.980839"],["-90.110114","29.980947"],["-90.110277","29.981056"],["-90.110440","29.981164"],["-90.110603","29.981273"],["-90.110766","29.981381"],["-90.110929","29.981489"],["-90.111091","29.981598"],["-90.111254","29.981706"],["-90.111313","29.981859"],["-90.111201","29.981899"],["-90.111088","29.981938"],["-90.110975","29.981978"],["-90.110863","29.982017"],["-90.110750","29.982057"],["-90.110637","29.982096"],["-90.110525","29.982136"],["-90.110412","29.982175"],["-90.110395","29.982349"],["-90.110377","29.982523"],["-90.110434","29.982608"],["-90.110492","29.982693"]]},{"type":"MultiPoint","coordinates":[["-90.100437","29.974417"],["-90.110492","29.982693"],["-90.106814","29.978711"],["-90.104938","29.977440"],["-90.103094","29.976197"],["-90.108648","29.979972"]]},{"type":"LineString","coordinates":[["-90.100437","29.974417"],["-90.100603","29.974528"],["-90.100769","29.974640"],["-90.100935","29.974751"],["-90.101101","29.974862"],["-90.101267","29.974973"],["-90.101433","29.975085"],["-90.101599","29.975196"],["-90.101765","29.975307"],["-90.101932","29.975418"],["-90.102098","29.975530"],["-90.102264","29.975641"],["-90.102430","29.975752"],["-90.102596","29.975863"],["-90.102762","29.975975"],["-90.102928","29.976086"],["-90.103094","29.976197"],["-90.103209","29.976275"],["-90.103324","29.976352"],["-90.103440","29.976430"],["-90.103555","29.976508"],["-90.103670","29.976585"],["-90.103785","29.976663"],["-90.103901","29.976741"],["-90.104016","29.976819"],["-90.104131","29.976896"],["-90.104246","29.976974"],["-90.104362","29.977052"],["-90.104477","29.977129"],["-90.104592","29.977207"],["-90.104707","29.977285"],["-90.104823","29.977362"],["-90.104938","29.977440"],["-90.105055","29.977519"],["-90.105172","29.977599"],["-90.105290","29.977678"],["-90.105407","29.977758"],["-90.105524","29.977837"],["-90.105641","29.977917"],["-90.105759","29.977996"],["-90.105876","29.978076"],["-90.105993","29.978155"],["-90.106110","29.978234"],["-90.106228","29.978314"],["-90.106345","29.978393"],["-90.106462","29.978473"],["-90.106579","29.978552"],["-90.106697","29.978632"],["-90.106814","29.978711"],["-90.106929","29.978790"],["-90.107043","29.978869"],["-90.107158","29.978947"],["-90.107272","29.979026"],["-90.107387","29.979105"],["-90.107502","29.979184"],["-90.107616","29.979263"],["-90.107731","29.979342"],["-90.107846","29.979420"],["-90.107960","29.979499"],["-90.108075","29.979578"],["-90.108189","29.979657"],["-90.108304","29.979736"],["-90.108419","29.979814"],["-90.108533","29.979893"],["-90.108648","29.979972"],["-90.108811","29.980080"],["-90.108974","29.980189"],["-90.109137","29.980297"],["-90.109300","29.980406"],["-90.109462","29.980514"],["-90.109625","29.980622"],["-90.109788","29.980731"],["-90.109951","29.980839"],["-90.110114","29.980947"],["-90.110277","29.981056"],["-90.110440","29.981164"],["-90.110603","29.981273"],["-90.110766","29.981381"],["-90.110929","29.981489"],["-90.111091","29.981598"],["-90.111254","29.981706"],["-90.111313","29.981859"],["-90.111201","29.981899"],["-90.111088","29.981938"],["-90.110975","29.981978"],["-90.110863","29.982017"],["-90.110750","29.982057"],["-90.110637","29.982096"],["-90.110525","29.982136"],["-90.110412","29.982175"],["-90.110395","29.982349"],["-90.110377","29.982523"],["-90.110434","29.982608"],["-90.110492","29.982693"]]},{"type":"MultiPoint","coordinates":[["-90.082505","29.962276"],["-90.087519","29.965685"],["-90.073156","29.956012"],["-90.085842","29.964549"],["-90.083851","29.963185"],["-90.080356","29.960816"],["-90.078051","29.959296"],["-90.069772","29.953711"],["-90.068064","29.952575"],["-90.065793","29.951016"],["-90.089092","29.966714"],["-90.064992","29.950382"],["-90.075219","29.957336"]]},{"type":"LineString","coordinates":[["-90.064992","29.950382"],["-90.065135","29.950476"],["-90.065277","29.950570"],["-90.065420","29.950664"],["-90.065563","29.950759"],["-90.065678","29.950887"],["-90.065793","29.951016"],["-90.065922","29.951084"],["-90.066052","29.951151"],["-90.066193","29.951246"],["-90.066333","29.951340"],["-90.066474","29.951434"],["-90.066615","29.951528"],["-90.066756","29.951622"],["-90.066896","29.951716"],["-90.067037","29.951810"],["-90.067169","29.951899"],["-90.067300","29.951989"],["-90.067431","29.952078"],["-90.067563","29.952167"],["-90.067694","29.952256"],["-90.067826","29.952346"],["-90.067957","29.952435"],["-90.068089","29.952524"],["-90.068064","29.952575"],["-90.068180","29.952582"],["-90.068314","29.952674"],["-90.068448","29.952766"],["-90.068582","29.952858"],["-90.068716","29.952950"],["-90.068850","29.953042"],["-90.068984","29.953134"],["-90.069118","29.953226"],["-90.069252","29.953317"],["-90.069380","29.953404"],["-90.069507","29.953491"],["-90.069635","29.953578"],["-90.069763","29.953665"],["-90.069772","29.953711"],["-90.069894","29.953751"],["-90.070008","29.953828"],["-90.070121","29.953905"],["-90.070235","29.953982"],["-90.070348","29.954058"],["-90.070462","29.954135"],["-90.070575","29.954212"],["-90.070689","29.954289"],["-90.070802","29.954366"],["-90.070916","29.954443"],["-90.071029","29.954520"],["-90.071143","29.954597"],["-90.071256","29.954673"],["-90.071370","29.954750"],["-90.071483","29.954827"],["-90.071597","29.954904"],["-90.071710","29.954981"],["-90.071822","29.955057"],["-90.071934","29.955133"],["-90.072046","29.955208"],["-90.072158","29.955284"],["-90.072269","29.955360"],["-90.072362","29.955419"],["-90.072456","29.955478"],["-90.072549","29.955537"],["-90.072643","29.955596"],["-90.072736","29.955654"],["-90.072829","29.955713"],["-90.072923","29.955772"],["-90.073016","29.955831"],["-90.073086","29.955922"],["-90.073156","29.956012"],["-90.073279","29.956070"],["-90.073402","29.956129"],["-90.073511","29.956201"],["-90.073619","29.956274"],["-90.073727","29.956346"],["-90.073835","29.956419"],["-90.073943","29.956491"],["-90.074051","29.956564"],["-90.074160","29.956636"],["-90.074268","29.956709"],["-90.074376","29.956781"],["-90.074484","29.956854"],["-90.074592","29.956926"],["-90.074700","29.956999"],["-90.074809","29.957071"],["-90.074917","29.957144"],["-90.075025","29.957216"],["-90.075133","29.957289"],["-90.075219","29.957336"],["-90.075310","29.957396"],["-90.075401","29.957456"],["-90.075494","29.957520"],["-90.075586","29.957584"],["-90.075679","29.957647"],["-90.075771","29.957711"],["-90.075864","29.957774"],["-90.075957","29.957838"],["-90.076049","29.957902"],["-90.076142","29.957965"],["-90.076234","29.958029"],["-90.076327","29.958092"],["-90.076419","29.958156"],["-90.076512","29.958220"],["-90.076604","29.958283"],["-90.076697","29.958347"],["-90.076790","29.958411"],["-90.076882","29.958474"],["-90.077017","29.958565"],["-90.077151","29.958655"],["-90.077285","29.958746"],["-90.077420","29.958837"],["-90.077554","29.958927"],["-90.077689","29.959018"],["-90.077823","29.959109"],["-90.077958","29.959199"],["-90.078051","29.959296"],["-90.078165","29.959364"],["-90.078280","29.959432"],["-90.078377","29.959498"],["-90.078474","29.959564"],["-90.078572","29.959630"],["-90.078669","29.959696"],["-90.078767","29.959762"],["-90.078864","29.959829"],["-90.078962","29.959895"],["-90.079059","29.959961"],["-90.079203","29.960056"],["-90.079348","29.960151"],["-90.079492","29.960246"],["-90.079636","29.960341"],["-90.079780","29.960436"],["-90.079924","29.960531"],["-90.080068","29.960626"],["-90.080212","29.960721"],["-90.080356","29.960816"],["-90.080418","29.960926"],["-90.080480","29.961036"],["-90.080597","29.961114"],["-90.080714","29.961192"],["-90.080831","29.961270"],["-90.080948","29.961348"],["-90.081065","29.961426"],["-90.081183","29.961504"],["-90.081300","29.961582"],["-90.081417","29.961660"],["-90.081534","29.961738"],["-90.081651","29.961816"],["-90.081768","29.961894"],["-90.081885","29.961971"],["-90.082002","29.962049"],["-90.082119","29.962127"],["-90.082237","29.962205"],["-90.082354","29.962283"],["-90.082505","29.962276"],["-90.082561","29.962373"],["-90.082617","29.962469"],["-90.082755","29.962564"],["-90.082894","29.962658"],["-90.083033","29.962753"],["-90.083172","29.962848"],["-90.083311","29.962942"],["-90.083449","29.963037"],["-90.083588","29.963132"],["-90.083727","29.963227"],["-90.083851","29.963185"],["-90.083910","29.963280"],["-90.083968","29.963375"],["-90.084076","29.963450"],["-90.084184","29.963525"],["-90.084291","29.963599"],["-90.084399","29.963674"],["-90.084506","29.963749"],["-90.084614","29.963823"],["-90.084722","29.963898"],["-90.084829","29.963972"],["-90.084937","29.964047"],["-90.085045","29.964122"],["-90.085152","29.964196"],["-90.085260","29.964271"],["-90.085367","29.964346"],["-90.085475","29.964420"],["-90.085583","29.964495"],["-90.085690","29.964570"],["-90.085842","29.964549"],["-90.085908","29.964662"],["-90.085975","29.964774"],["-90.086146","29.964887"],["-90.086317","29.965001"],["-90.086488","29.965114"],["-90.086659","29.965227"],["-90.086830","29.965341"],["-90.087001","29.965454"],["-90.087172","29.965567"],["-90.087343","29.965680"],["-90.087519","29.965685"],["-90.087573","29.965845"],["-90.087668","29.965900"],["-90.087763","29.965954"],["-90.087858","29.966008"],["-90.087953","29.966063"],["-90.088048","29.966117"],["-90.088143","29.966171"],["-90.088238","29.966225"],["-90.088333","29.966280"],["-90.088428","29.966334"],["-90.088522","29.966388"],["-90.088617","29.966443"],["-90.088712","29.966497"],["-90.088807","29.966551"],["-90.088902","29.966605"],["-90.088997","29.966660"],["-90.089092","29.966714"],["-90.089092","29.966714"]]}]}},{"type":"Feature","properties":{"route_id":"48","agency_id":"1","route_short_name":"48","route_long_name":"Canal Streetcar - City Park/Muse","route_type":"0","route_color":"#87cb25","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.094068","29.980640"],["-90.095274","29.979508"],["-90.097336","29.977578"],["-90.099008","29.976254"],["-90.100315","29.974355"],["-90.090035","29.983853"]]},{"type":"LineString","coordinates":[["-90.090035","29.983853"],["-90.090145","29.983821"],["-90.090255","29.983789"],["-90.090358","29.983718"],["-90.090462","29.983647"],["-90.090565","29.983576"],["-90.090669","29.983505"],["-90.090774","29.983465"],["-90.090878","29.983426"],["-90.090983","29.983386"],["-90.091087","29.983347"],["-90.091255","29.983227"],["-90.091343","29.983146"],["-90.091431","29.983065"],["-90.091519","29.982984"],["-90.091607","29.982904"],["-90.091695","29.982823"],["-90.091782","29.982742"],["-90.091870","29.982661"],["-90.091958","29.982580"],["-90.092046","29.982499"],["-90.092134","29.982419"],["-90.092222","29.982338"],["-90.092310","29.982257"],["-90.092398","29.982176"],["-90.092486","29.982095"],["-90.092574","29.982014"],["-90.092662","29.981934"],["-90.092749","29.981853"],["-90.092837","29.981772"],["-90.092925","29.981691"],["-90.093013","29.981610"],["-90.093101","29.981529"],["-90.093189","29.981448"],["-90.093299","29.981347"],["-90.093409","29.981246"],["-90.093519","29.981145"],["-90.093617","29.981050"],["-90.093708","29.980961"],["-90.093799","29.980872"],["-90.093890","29.980782"],["-90.093982","29.980693"],["-90.094068","29.980640"],["-90.094148","29.980551"],["-90.094278","29.980431"],["-90.094409","29.980310"],["-90.094539","29.980190"],["-90.094669","29.980069"],["-90.094800","29.979949"],["-90.094930","29.979828"],["-90.095061","29.979708"],["-90.095191","29.979587"],["-90.095274","29.979508"],["-90.095400","29.979413"],["-90.095515","29.979303"],["-90.095630","29.979193"],["-90.095745","29.979083"],["-90.095859","29.978973"],["-90.095974","29.978863"],["-90.096089","29.978754"],["-90.096204","29.978644"],["-90.096318","29.978534"],["-90.096433","29.978424"],["-90.096548","29.978314"],["-90.096663","29.978204"],["-90.096778","29.978094"],["-90.096892","29.977984"],["-90.097007","29.977874"],["-90.097122","29.977764"],["-90.097237","29.977654"],["-90.097336","29.977578"],["-90.097451","29.977487"],["-90.097562","29.977382"],["-90.097672","29.977277"],["-90.097783","29.977172"],["-90.097894","29.977067"],["-90.098004","29.976961"],["-90.098115","29.976856"],["-90.098226","29.976751"],["-90.098336","29.976646"],["-90.098466","29.976522"],["-90.098595","29.976399"],["-90.098725","29.976275"],["-90.098854","29.976151"],["-90.099008","29.976254"],["-90.099015","29.976126"],["-90.099023","29.975998"],["-90.099111","29.975915"],["-90.099198","29.975831"],["-90.099286","29.975748"],["-90.099374","29.975665"],["-90.099461","29.975581"],["-90.099549","29.975498"],["-90.099637","29.975415"],["-90.099724","29.975332"],["-90.099812","29.975248"],["-90.099900","29.975165"],["-90.099987","29.975082"],["-90.100075","29.974999"],["-90.100163","29.974915"],["-90.100250","29.974832"],["-90.100338","29.974749"],["-90.100426","29.974666"],["-90.100466","29.974538"],["-90.100391","29.974446"],["-90.100315","29.974355"]]},{"type":"MultiPoint","coordinates":[["-90.094068","29.980640"],["-90.095274","29.979508"],["-90.097336","29.977578"],["-90.099008","29.976254"],["-90.082555","29.962311"],["-90.072937","29.955716"],["-90.087599","29.965729"],["-90.088946","29.966643"],["-90.100315","29.974355"],["-90.075405","29.957434"],["-90.092157","29.968815"],["-90.093714","29.969875"],["-90.095326","29.970960"],["-90.096863","29.971974"],["-90.098436","29.973067"],["-90.090035","29.983853"],["-90.078134","29.959314"],["-90.091244","29.968193"],["-90.066304","29.951243"],["-90.070042","29.953755"],["-90.068084","29.952458"],["-90.064992","29.950382"],["-90.085829","29.964529"],["-90.084071","29.963277"],["-90.080407","29.960849"]]},{"type":"LineString","coordinates":[["-90.090035","29.983853"],["-90.090145","29.983821"],["-90.090255","29.983789"],["-90.090358","29.983718"],["-90.090462","29.983647"],["-90.090565","29.983576"],["-90.090669","29.983505"],["-90.090774","29.983465"],["-90.090878","29.983426"],["-90.090983","29.983386"],["-90.091087","29.983347"],["-90.091255","29.983227"],["-90.091343","29.983146"],["-90.091431","29.983065"],["-90.091519","29.982984"],["-90.091607","29.982904"],["-90.091695","29.982823"],["-90.091782","29.982742"],["-90.091870","29.982661"],["-90.091958","29.982580"],["-90.092046","29.982499"],["-90.092134","29.982419"],["-90.092222","29.982338"],["-90.092310","29.982257"],["-90.092398","29.982176"],["-90.092486","29.982095"],["-90.092574","29.982014"],["-90.092662","29.981934"],["-90.092749","29.981853"],["-90.092837","29.981772"],["-90.092925","29.981691"],["-90.093013","29.981610"],["-90.093101","29.981529"],["-90.093189","29.981448"],["-90.093299","29.981347"],["-90.093409","29.981246"],["-90.093519","29.981145"],["-90.093617","29.981050"],["-90.093708","29.980961"],["-90.093799","29.980872"],["-90.093890","29.980782"],["-90.093982","29.980693"],["-90.094068","29.980640"],["-90.094204","29.980499"],["-90.094318","29.980395"],["-90.094432","29.980291"],["-90.094546","29.980187"],["-90.094660","29.980083"],["-90.094774","29.979980"],["-90.094888","29.979876"],["-90.095002","29.979772"],["-90.095116","29.979668"],["-90.095195","29.979588"],["-90.095274","29.979508"],["-90.095401","29.979417"],["-90.095513","29.979310"],["-90.095625","29.979203"],["-90.095736","29.979096"],["-90.095848","29.978989"],["-90.095960","29.978882"],["-90.096072","29.978775"],["-90.096184","29.978669"],["-90.096296","29.978562"],["-90.096408","29.978455"],["-90.096520","29.978348"],["-90.096632","29.978241"],["-90.096744","29.978134"],["-90.096856","29.978027"],["-90.096968","29.977920"],["-90.097080","29.977814"],["-90.097192","29.977707"],["-90.097336","29.977578"],["-90.097471","29.977446"],["-90.097559","29.977366"],["-90.097647","29.977285"],["-90.097735","29.977204"],["-90.097823","29.977124"],["-90.097911","29.977043"],["-90.097999","29.976962"],["-90.098086","29.976882"],["-90.098174","29.976801"],["-90.098262","29.976720"],["-90.098350","29.976640"],["-90.098438","29.976559"],["-90.098526","29.976478"],["-90.098614","29.976398"],["-90.098702","29.976317"],["-90.098789","29.976236"],["-90.098877","29.976156"],["-90.099008","29.976254"],["-90.099053","29.976096"],["-90.099097","29.975937"],["-90.099183","29.975859"],["-90.099268","29.975780"],["-90.099354","29.975701"],["-90.099439","29.975622"],["-90.099525","29.975544"],["-90.099610","29.975465"],["-90.099696","29.975386"],["-90.099781","29.975308"],["-90.099867","29.975229"],["-90.099952","29.975150"],["-90.100038","29.975072"],["-90.100123","29.974993"],["-90.100209","29.974914"],["-90.100294","29.974835"],["-90.100380","29.974757"],["-90.100465","29.974678"],["-90.100497","29.974515"],["-90.100406","29.974435"],["-90.100315","29.974355"],["-90.100197","29.974275"],["-90.100080","29.974194"],["-90.099962","29.974114"],["-90.099845","29.974033"],["-90.099728","29.973953"],["-90.099610","29.973872"],["-90.099493","29.973792"],["-90.099375","29.973711"],["-90.099258","29.973631"],["-90.099141","29.973550"],["-90.099023","29.973470"],["-90.098906","29.973389"],["-90.098788","29.973309"],["-90.098671","29.973228"],["-90.098553","29.973148"],["-90.098436","29.973067"],["-90.098338","29.972999"],["-90.098239","29.972930"],["-90.098141","29.972862"],["-90.098043","29.972794"],["-90.097944","29.972725"],["-90.097846","29.972657"],["-90.097748","29.972589"],["-90.097649","29.972521"],["-90.097551","29.972452"],["-90.097453","29.972384"],["-90.097355","29.972316"],["-90.097256","29.972247"],["-90.097158","29.972179"],["-90.097060","29.972111"],["-90.096961","29.972042"],["-90.096863","29.971974"],["-90.096767","29.971911"],["-90.096671","29.971847"],["-90.096575","29.971784"],["-90.096479","29.971721"],["-90.096383","29.971657"],["-90.096287","29.971594"],["-90.096191","29.971530"],["-90.096094","29.971467"],["-90.095998","29.971404"],["-90.095902","29.971340"],["-90.095806","29.971277"],["-90.095710","29.971214"],["-90.095614","29.971150"],["-90.095518","29.971087"],["-90.095422","29.971023"],["-90.095326","29.970960"],["-90.095225","29.970892"],["-90.095124","29.970824"],["-90.095024","29.970757"],["-90.094923","29.970689"],["-90.094822","29.970621"],["-90.094721","29.970553"],["-90.094621","29.970485"],["-90.094520","29.970418"],["-90.094419","29.970350"],["-90.094318","29.970282"],["-90.094218","29.970214"],["-90.094117","29.970146"],["-90.094016","29.970078"],["-90.093915","29.970011"],["-90.093815","29.969943"],["-90.093714","29.969875"],["-90.093617","29.969809"],["-90.093519","29.969743"],["-90.093422","29.969676"],["-90.093325","29.969610"],["-90.093227","29.969544"],["-90.093130","29.969478"],["-90.093033","29.969411"],["-90.092935","29.969345"],["-90.092838","29.969279"],["-90.092741","29.969213"],["-90.092644","29.969146"],["-90.092546","29.969080"],["-90.092449","29.969014"],["-90.092352","29.968948"],["-90.092254","29.968881"],["-90.092157","29.968815"],["-90.092043","29.968738"],["-90.091929","29.968660"],["-90.091815","29.968582"],["-90.091700","29.968504"],["-90.091586","29.968426"],["-90.091472","29.968349"],["-90.091358","29.968271"],["-90.091244","29.968193"],["-90.091100","29.968096"],["-90.090957","29.967999"],["-90.090813","29.967902"],["-90.090669","29.967806"],["-90.090526","29.967709"],["-90.090382","29.967612"],["-90.090239","29.967515"],["-90.090095","29.967418"],["-90.089951","29.967321"],["-90.089808","29.967224"],["-90.089664","29.967127"],["-90.089520","29.967031"],["-90.089377","29.966934"],["-90.089233","29.966837"],["-90.089090","29.966740"],["-90.088946","29.966643"],["-90.089020","29.966560"],["-90.088990","29.966540"],["-90.088880","29.966490"],["-90.088720","29.966390"],["-90.088615","29.966313"],["-90.088510","29.966235"],["-90.088405","29.966158"],["-90.088300","29.966080"],["-90.088250","29.966050"],["-90.088140","29.965970"],["-90.088030","29.965890"],["-90.087942","29.965828"],["-90.087855","29.965765"],["-90.087767","29.965703"],["-90.087680","29.965640"],["-90.087599","29.965729"],["-90.087488","29.965654"],["-90.087378","29.965579"],["-90.087267","29.965504"],["-90.087156","29.965429"],["-90.087046","29.965354"],["-90.086935","29.965279"],["-90.086825","29.965204"],["-90.086714","29.965129"],["-90.086603","29.965054"],["-90.086493","29.964979"],["-90.086382","29.964904"],["-90.086271","29.964829"],["-90.086161","29.964754"],["-90.086050","29.964679"],["-90.085940","29.964604"],["-90.085829","29.964529"],["-90.085719","29.964451"],["-90.085609","29.964373"],["-90.085499","29.964294"],["-90.085389","29.964216"],["-90.085280","29.964138"],["-90.085170","29.964060"],["-90.085060","29.963981"],["-90.084950","29.963903"],["-90.084840","29.963825"],["-90.084730","29.963747"],["-90.084620","29.963668"],["-90.084510","29.963590"],["-90.084401","29.963512"],["-90.084291","29.963434"],["-90.084181","29.963355"],["-90.084071","29.963277"],["-90.083976","29.963217"],["-90.083881","29.963156"],["-90.083787","29.963096"],["-90.083692","29.963036"],["-90.083597","29.962975"],["-90.083502","29.962915"],["-90.083408","29.962854"],["-90.083313","29.962794"],["-90.083218","29.962734"],["-90.083123","29.962673"],["-90.083029","29.962613"],["-90.082934","29.962553"],["-90.082839","29.962492"],["-90.082744","29.962432"],["-90.082650","29.962371"],["-90.082555","29.962311"],["-90.082421","29.962220"],["-90.082286","29.962128"],["-90.082152","29.962037"],["-90.082018","29.961946"],["-90.081884","29.961854"],["-90.081749","29.961763"],["-90.081615","29.961671"],["-90.081481","29.961580"],["-90.081347","29.961489"],["-90.081212","29.961397"],["-90.081078","29.961306"],["-90.080944","29.961215"],["-90.080810","29.961123"],["-90.080675","29.961032"],["-90.080541","29.960940"],["-90.080407","29.960849"],["-90.080265","29.960753"],["-90.080123","29.960657"],["-90.079981","29.960561"],["-90.079839","29.960465"],["-90.079697","29.960369"],["-90.079555","29.960273"],["-90.079413","29.960177"],["-90.079270","29.960082"],["-90.079128","29.959986"],["-90.078986","29.959890"],["-90.078844","29.959794"],["-90.078702","29.959698"],["-90.078560","29.959602"],["-90.078418","29.959506"],["-90.078276","29.959410"],["-90.078134","29.959314"],["-90.077963","29.959197"],["-90.077793","29.959079"],["-90.077622","29.958962"],["-90.077452","29.958844"],["-90.077281","29.958727"],["-90.077111","29.958609"],["-90.076940","29.958492"],["-90.076769","29.958374"],["-90.076599","29.958257"],["-90.076428","29.958139"],["-90.076258","29.958022"],["-90.076087","29.957904"],["-90.075917","29.957787"],["-90.075746","29.957669"],["-90.075576","29.957552"],["-90.075405","29.957434"],["-90.075251","29.957327"],["-90.075096","29.957219"],["-90.074942","29.957112"],["-90.074788","29.957005"],["-90.074634","29.956897"],["-90.074479","29.956790"],["-90.074325","29.956682"],["-90.074171","29.956575"],["-90.074017","29.956468"],["-90.073862","29.956360"],["-90.073708","29.956253"],["-90.073554","29.956146"],["-90.073400","29.956038"],["-90.073284","29.955958"],["-90.073168","29.955877"],["-90.073053","29.955797"],["-90.072937","29.955716"],["-90.072820","29.955642"],["-90.072703","29.955568"],["-90.072545","29.955463"],["-90.072387","29.955358"],["-90.072228","29.955253"],["-90.072070","29.955148"],["-90.071912","29.955042"],["-90.071754","29.954937"],["-90.071595","29.954832"],["-90.071437","29.954727"],["-90.071279","29.954622"],["-90.071121","29.954517"],["-90.070962","29.954411"],["-90.070804","29.954306"],["-90.070646","29.954201"],["-90.070488","29.954096"],["-90.070329","29.953991"],["-90.070171","29.953886"],["-90.070042","29.953755"],["-90.069924","29.953732"],["-90.069817","29.953661"],["-90.069710","29.953589"],["-90.069602","29.953517"],["-90.069495","29.953445"],["-90.069388","29.953374"],["-90.069281","29.953302"],["-90.069173","29.953230"],["-90.069066","29.953158"],["-90.068959","29.953087"],["-90.068851","29.953015"],["-90.068744","29.952943"],["-90.068637","29.952871"],["-90.068530","29.952800"],["-90.068422","29.952728"],["-90.068315","29.952656"],["-90.068208","29.952584"],["-90.068084","29.952458"],["-90.067902","29.952357"],["-90.067812","29.952296"],["-90.067722","29.952236"],["-90.067631","29.952176"],["-90.067541","29.952116"],["-90.067451","29.952056"],["-90.067361","29.951996"],["-90.067271","29.951936"],["-90.067180","29.951875"],["-90.067090","29.951815"],["-90.067000","29.951755"],["-90.066910","29.951695"],["-90.066820","29.951635"],["-90.066729","29.951575"],["-90.066639","29.951515"],["-90.066549","29.951455"],["-90.066459","29.951394"],["-90.066381","29.951319"],["-90.066304","29.951243"],["-90.066202","29.951186"],["-90.066100","29.951129"],["-90.065961","29.951036"],["-90.065823","29.950943"],["-90.065684","29.950849"],["-90.065546","29.950756"],["-90.065407","29.950662"],["-90.065269","29.950569"],["-90.065130","29.950475"],["-90.064992","29.950382"]]},{"type":"MultiPoint","coordinates":[["-90.082555","29.962311"],["-90.072937","29.955716"],["-90.087599","29.965729"],["-90.075405","29.957434"],["-90.078134","29.959314"],["-90.066304","29.951243"],["-90.070042","29.953755"],["-90.068084","29.952458"],["-90.064992","29.950382"],["-90.085829","29.964529"],["-90.084071","29.963277"],["-90.080407","29.960849"]]},{"type":"LineString","coordinates":[["-90.087599","29.965729"],["-90.087488","29.965654"],["-90.087378","29.965579"],["-90.087267","29.965504"],["-90.087156","29.965429"],["-90.087046","29.965354"],["-90.086935","29.965279"],["-90.086825","29.965204"],["-90.086714","29.965129"],["-90.086603","29.965054"],["-90.086493","29.964979"],["-90.086382","29.964904"],["-90.086271","29.964829"],["-90.086161","29.964754"],["-90.086050","29.964679"],["-90.085940","29.964604"],["-90.085829","29.964529"],["-90.085719","29.964451"],["-90.085609","29.964373"],["-90.085499","29.964294"],["-90.085389","29.964216"],["-90.085280","29.964138"],["-90.085170","29.964060"],["-90.085060","29.963981"],["-90.084950","29.963903"],["-90.084840","29.963825"],["-90.084730","29.963747"],["-90.084620","29.963668"],["-90.084510","29.963590"],["-90.084401","29.963512"],["-90.084291","29.963434"],["-90.084181","29.963355"],["-90.084071","29.963277"],["-90.083976","29.963217"],["-90.083881","29.963156"],["-90.083787","29.963096"],["-90.083692","29.963036"],["-90.083597","29.962975"],["-90.083502","29.962915"],["-90.083408","29.962854"],["-90.083313","29.962794"],["-90.083218","29.962734"],["-90.083123","29.962673"],["-90.083029","29.962613"],["-90.082934","29.962553"],["-90.082839","29.962492"],["-90.082744","29.962432"],["-90.082650","29.962371"],["-90.082555","29.962311"],["-90.082421","29.962220"],["-90.082286","29.962128"],["-90.082152","29.962037"],["-90.082018","29.961946"],["-90.081884","29.961854"],["-90.081749","29.961763"],["-90.081615","29.961671"],["-90.081481","29.961580"],["-90.081347","29.961489"],["-90.081212","29.961397"],["-90.081078","29.961306"],["-90.080944","29.961215"],["-90.080810","29.961123"],["-90.080675","29.961032"],["-90.080541","29.960940"],["-90.080407","29.960849"],["-90.080265","29.960753"],["-90.080123","29.960657"],["-90.079981","29.960561"],["-90.079839","29.960465"],["-90.079697","29.960369"],["-90.079555","29.960273"],["-90.079413","29.960177"],["-90.079270","29.960082"],["-90.079128","29.959986"],["-90.078986","29.959890"],["-90.078844","29.959794"],["-90.078702","29.959698"],["-90.078560","29.959602"],["-90.078418","29.959506"],["-90.078276","29.959410"],["-90.078134","29.959314"],["-90.077963","29.959197"],["-90.077793","29.959079"],["-90.077622","29.958962"],["-90.077452","29.958844"],["-90.077281","29.958727"],["-90.077111","29.958609"],["-90.076940","29.958492"],["-90.076769","29.958374"],["-90.076599","29.958257"],["-90.076428","29.958139"],["-90.076258","29.958022"],["-90.076087","29.957904"],["-90.075917","29.957787"],["-90.075746","29.957669"],["-90.075576","29.957552"],["-90.075405","29.957434"],["-90.075251","29.957327"],["-90.075096","29.957219"],["-90.074942","29.957112"],["-90.074788","29.957005"],["-90.074634","29.956897"],["-90.074479","29.956790"],["-90.074325","29.956682"],["-90.074171","29.956575"],["-90.074017","29.956468"],["-90.073862","29.956360"],["-90.073708","29.956253"],["-90.073554","29.956146"],["-90.073400","29.956038"],["-90.073284","29.955958"],["-90.073168","29.955877"],["-90.073053","29.955797"],["-90.072937","29.955716"],["-90.072820","29.955642"],["-90.072703","29.955568"],["-90.072545","29.955463"],["-90.072387","29.955358"],["-90.072228","29.955253"],["-90.072070","29.955148"],["-90.071912","29.955042"],["-90.071754","29.954937"],["-90.071595","29.954832"],["-90.071437","29.954727"],["-90.071279","29.954622"],["-90.071121","29.954517"],["-90.070962","29.954411"],["-90.070804","29.954306"],["-90.070646","29.954201"],["-90.070488","29.954096"],["-90.070329","29.953991"],["-90.070171","29.953886"],["-90.070042","29.953755"],["-90.069924","29.953732"],["-90.069817","29.953661"],["-90.069710","29.953589"],["-90.069602","29.953517"],["-90.069495","29.953445"],["-90.069388","29.953374"],["-90.069281","29.953302"],["-90.069173","29.953230"],["-90.069066","29.953158"],["-90.068959","29.953087"],["-90.068851","29.953015"],["-90.068744","29.952943"],["-90.068637","29.952871"],["-90.068530","29.952800"],["-90.068422","29.952728"],["-90.068315","29.952656"],["-90.068208","29.952584"],["-90.068084","29.952458"],["-90.067902","29.952357"],["-90.067812","29.952296"],["-90.067722","29.952236"],["-90.067631","29.952176"],["-90.067541","29.952116"],["-90.067451","29.952056"],["-90.067361","29.951996"],["-90.067271","29.951936"],["-90.067180","29.951875"],["-90.067090","29.951815"],["-90.067000","29.951755"],["-90.066910","29.951695"],["-90.066820","29.951635"],["-90.066729","29.951575"],["-90.066639","29.951515"],["-90.066549","29.951455"],["-90.066459","29.951394"],["-90.066381","29.951319"],["-90.066304","29.951243"],["-90.066202","29.951186"],["-90.066100","29.951129"],["-90.065961","29.951036"],["-90.065823","29.950943"],["-90.065684","29.950849"],["-90.065546","29.950756"],["-90.065407","29.950662"],["-90.065269","29.950569"],["-90.065130","29.950475"],["-90.064992","29.950382"]]},{"type":"MultiPoint","coordinates":[["-90.095676","29.979145"],["-90.098996","29.976037"],["-90.094171","29.980541"],["-90.082505","29.962276"],["-90.100437","29.974417"],["-90.087519","29.965685"],["-90.073156","29.956012"],["-90.098614","29.973209"],["-90.096687","29.971921"],["-90.095228","29.970874"],["-90.093656","29.969827"],["-90.092050","29.968718"],["-90.085842","29.964549"],["-90.083851","29.963185"],["-90.080356","29.960816"],["-90.078051","29.959296"],["-90.069772","29.953711"],["-90.068064","29.952575"],["-90.065793","29.951016"],["-90.089092","29.966714"],["-90.090035","29.983853"],["-90.091415","29.968288"],["-90.097449","29.977469"],["-90.064992","29.950382"],["-90.075219","29.957336"]]},{"type":"LineString","coordinates":[["-90.064992","29.950382"],["-90.065135","29.950476"],["-90.065277","29.950570"],["-90.065420","29.950664"],["-90.065563","29.950759"],["-90.065678","29.950887"],["-90.065793","29.951016"],["-90.065922","29.951084"],["-90.066052","29.951151"],["-90.066193","29.951246"],["-90.066333","29.951340"],["-90.066474","29.951434"],["-90.066615","29.951528"],["-90.066756","29.951622"],["-90.066896","29.951716"],["-90.067037","29.951810"],["-90.067169","29.951899"],["-90.067300","29.951989"],["-90.067431","29.952078"],["-90.067563","29.952167"],["-90.067694","29.952256"],["-90.067826","29.952346"],["-90.067957","29.952435"],["-90.068089","29.952524"],["-90.068064","29.952575"],["-90.068180","29.952582"],["-90.068314","29.952674"],["-90.068448","29.952766"],["-90.068582","29.952858"],["-90.068716","29.952950"],["-90.068850","29.953042"],["-90.068984","29.953134"],["-90.069118","29.953226"],["-90.069252","29.953317"],["-90.069380","29.953404"],["-90.069507","29.953491"],["-90.069635","29.953578"],["-90.069763","29.953665"],["-90.069772","29.953711"],["-90.069894","29.953751"],["-90.070008","29.953828"],["-90.070121","29.953905"],["-90.070235","29.953982"],["-90.070348","29.954058"],["-90.070462","29.954135"],["-90.070575","29.954212"],["-90.070689","29.954289"],["-90.070802","29.954366"],["-90.070916","29.954443"],["-90.071029","29.954520"],["-90.071143","29.954597"],["-90.071256","29.954673"],["-90.071370","29.954750"],["-90.071483","29.954827"],["-90.071597","29.954904"],["-90.071710","29.954981"],["-90.071822","29.955057"],["-90.071934","29.955133"],["-90.072046","29.955208"],["-90.072158","29.955284"],["-90.072269","29.955360"],["-90.072362","29.955419"],["-90.072456","29.955478"],["-90.072549","29.955537"],["-90.072643","29.955596"],["-90.072736","29.955654"],["-90.072829","29.955713"],["-90.072923","29.955772"],["-90.073016","29.955831"],["-90.073086","29.955922"],["-90.073156","29.956012"],["-90.073279","29.956070"],["-90.073402","29.956129"],["-90.073511","29.956201"],["-90.073619","29.956274"],["-90.073727","29.956346"],["-90.073835","29.956419"],["-90.073943","29.956491"],["-90.074051","29.956564"],["-90.074160","29.956636"],["-90.074268","29.956709"],["-90.074376","29.956781"],["-90.074484","29.956854"],["-90.074592","29.956926"],["-90.074700","29.956999"],["-90.074809","29.957071"],["-90.074917","29.957144"],["-90.075025","29.957216"],["-90.075133","29.957289"],["-90.075219","29.957336"],["-90.075310","29.957396"],["-90.075401","29.957456"],["-90.075494","29.957520"],["-90.075586","29.957584"],["-90.075679","29.957647"],["-90.075771","29.957711"],["-90.075864","29.957774"],["-90.075957","29.957838"],["-90.076049","29.957902"],["-90.076142","29.957965"],["-90.076234","29.958029"],["-90.076327","29.958092"],["-90.076419","29.958156"],["-90.076512","29.958220"],["-90.076604","29.958283"],["-90.076697","29.958347"],["-90.076790","29.958411"],["-90.076882","29.958474"],["-90.077017","29.958565"],["-90.077151","29.958655"],["-90.077285","29.958746"],["-90.077420","29.958837"],["-90.077554","29.958927"],["-90.077689","29.959018"],["-90.077823","29.959109"],["-90.077958","29.959199"],["-90.078051","29.959296"],["-90.078165","29.959364"],["-90.078280","29.959432"],["-90.078377","29.959498"],["-90.078474","29.959564"],["-90.078572","29.959630"],["-90.078669","29.959696"],["-90.078767","29.959762"],["-90.078864","29.959829"],["-90.078962","29.959895"],["-90.079059","29.959961"],["-90.079203","29.960056"],["-90.079348","29.960151"],["-90.079492","29.960246"],["-90.079636","29.960341"],["-90.079780","29.960436"],["-90.079924","29.960531"],["-90.080068","29.960626"],["-90.080212","29.960721"],["-90.080356","29.960816"],["-90.080490","29.960907"],["-90.080625","29.960999"],["-90.080759","29.961090"],["-90.080893","29.961181"],["-90.081028","29.961272"],["-90.081162","29.961364"],["-90.081296","29.961455"],["-90.081430","29.961546"],["-90.081565","29.961637"],["-90.081699","29.961729"],["-90.081833","29.961820"],["-90.081968","29.961911"],["-90.082102","29.962002"],["-90.082236","29.962094"],["-90.082371","29.962185"],["-90.082505","29.962276"],["-90.082673","29.962390"],["-90.082841","29.962503"],["-90.083010","29.962617"],["-90.083178","29.962731"],["-90.083346","29.962844"],["-90.083514","29.962958"],["-90.083683","29.963071"],["-90.083851","29.963185"],["-90.083975","29.963270"],["-90.084100","29.963356"],["-90.084224","29.963441"],["-90.084349","29.963526"],["-90.084473","29.963611"],["-90.084598","29.963697"],["-90.084722","29.963782"],["-90.084846","29.963867"],["-90.084971","29.963952"],["-90.085095","29.964038"],["-90.085220","29.964123"],["-90.085344","29.964208"],["-90.085469","29.964293"],["-90.085593","29.964379"],["-90.085718","29.964464"],["-90.085842","29.964549"],["-90.085937","29.964617"],["-90.086032","29.964686"],["-90.086127","29.964754"],["-90.086221","29.964823"],["-90.086316","29.964891"],["-90.086411","29.964959"],["-90.086506","29.965028"],["-90.086601","29.965096"],["-90.086696","29.965164"],["-90.086791","29.965233"],["-90.086886","29.965301"],["-90.086980","29.965370"],["-90.087075","29.965438"],["-90.087170","29.965506"],["-90.087265","29.965575"],["-90.087360","29.965643"],["-90.087519","29.965685"],["-90.087657","29.965801"],["-90.087747","29.965858"],["-90.087836","29.965915"],["-90.087926","29.965972"],["-90.088016","29.966029"],["-90.088105","29.966086"],["-90.088195","29.966143"],["-90.088285","29.966200"],["-90.088374","29.966258"],["-90.088464","29.966315"],["-90.088554","29.966372"],["-90.088644","29.966429"],["-90.088733","29.966486"],["-90.088823","29.966543"],["-90.088913","29.966600"],["-90.089002","29.966657"],["-90.089092","29.966714"],["-90.089237","29.966812"],["-90.089382","29.966911"],["-90.089528","29.967009"],["-90.089673","29.967108"],["-90.089818","29.967206"],["-90.089963","29.967304"],["-90.090108","29.967403"],["-90.090253","29.967501"],["-90.090399","29.967599"],["-90.090544","29.967698"],["-90.090689","29.967796"],["-90.090834","29.967895"],["-90.090979","29.967993"],["-90.091125","29.968091"],["-90.091270","29.968190"],["-90.091415","29.968288"],["-90.091574","29.968396"],["-90.091732","29.968503"],["-90.091891","29.968611"],["-90.092050","29.968718"],["-90.092150","29.968787"],["-90.092251","29.968857"],["-90.092351","29.968926"],["-90.092451","29.968995"],["-90.092552","29.969065"],["-90.092652","29.969134"],["-90.092753","29.969203"],["-90.092853","29.969273"],["-90.092953","29.969342"],["-90.093054","29.969411"],["-90.093154","29.969480"],["-90.093254","29.969550"],["-90.093355","29.969619"],["-90.093455","29.969688"],["-90.093556","29.969758"],["-90.093656","29.969827"],["-90.093754","29.969892"],["-90.093852","29.969958"],["-90.093951","29.970023"],["-90.094049","29.970089"],["-90.094147","29.970154"],["-90.094245","29.970220"],["-90.094344","29.970285"],["-90.094442","29.970351"],["-90.094540","29.970416"],["-90.094638","29.970481"],["-90.094737","29.970547"],["-90.094835","29.970612"],["-90.094933","29.970678"],["-90.095031","29.970743"],["-90.095130","29.970809"],["-90.095228","29.970874"],["-90.095391","29.970994"],["-90.095554","29.971114"],["-90.095717","29.971234"],["-90.095879","29.971354"],["-90.096042","29.971473"],["-90.096205","29.971593"],["-90.096368","29.971713"],["-90.096531","29.971833"],["-90.096687","29.971921"],["-90.096807","29.972002"],["-90.096928","29.972082"],["-90.097048","29.972163"],["-90.097169","29.972243"],["-90.097289","29.972324"],["-90.097410","29.972404"],["-90.097530","29.972485"],["-90.097650","29.972565"],["-90.097771","29.972646"],["-90.097891","29.972726"],["-90.098012","29.972807"],["-90.098132","29.972887"],["-90.098253","29.972968"],["-90.098373","29.973048"],["-90.098494","29.973129"],["-90.098614","29.973209"],["-90.098728","29.973285"],["-90.098842","29.973360"],["-90.098956","29.973436"],["-90.099070","29.973511"],["-90.099184","29.973587"],["-90.099298","29.973662"],["-90.099412","29.973738"],["-90.099525","29.973813"],["-90.099639","29.973889"],["-90.099753","29.973964"],["-90.099867","29.974040"],["-90.099981","29.974115"],["-90.100095","29.974191"],["-90.100209","29.974266"],["-90.100323","29.974342"],["-90.100437","29.974417"],["-90.100442","29.974605"],["-90.100301","29.974742"],["-90.100161","29.974880"],["-90.100020","29.975018"],["-90.099879","29.975155"],["-90.099738","29.975293"],["-90.099597","29.975431"],["-90.099457","29.975568"],["-90.099316","29.975706"],["-90.099236","29.975789"],["-90.099156","29.975872"],["-90.099076","29.975954"],["-90.098996","29.976037"],["-90.098899","29.976127"],["-90.098803","29.976216"],["-90.098706","29.976306"],["-90.098609","29.976395"],["-90.098513","29.976485"],["-90.098416","29.976574"],["-90.098319","29.976664"],["-90.098223","29.976753"],["-90.098126","29.976843"],["-90.098029","29.976932"],["-90.097932","29.977022"],["-90.097836","29.977111"],["-90.097739","29.977201"],["-90.097642","29.977290"],["-90.097546","29.977380"],["-90.097449","29.977469"],["-90.097338","29.977574"],["-90.097227","29.977679"],["-90.097117","29.977783"],["-90.097006","29.977888"],["-90.096895","29.977993"],["-90.096784","29.978098"],["-90.096673","29.978202"],["-90.096563","29.978307"],["-90.096452","29.978412"],["-90.096341","29.978517"],["-90.096230","29.978621"],["-90.096119","29.978726"],["-90.096008","29.978831"],["-90.095898","29.978936"],["-90.095787","29.979040"],["-90.095676","29.979145"],["-90.095582","29.979232"],["-90.095488","29.979320"],["-90.095394","29.979407"],["-90.095300","29.979494"],["-90.095206","29.979581"],["-90.095112","29.979669"],["-90.095018","29.979756"],["-90.094924","29.979843"],["-90.094829","29.979930"],["-90.094735","29.980018"],["-90.094641","29.980105"],["-90.094547","29.980192"],["-90.094453","29.980279"],["-90.094359","29.980367"],["-90.094265","29.980454"],["-90.094171","29.980541"],["-90.094089","29.980618"],["-90.094006","29.980695"],["-90.093924","29.980772"],["-90.093842","29.980849"],["-90.093759","29.980925"],["-90.093677","29.981002"],["-90.093595","29.981079"],["-90.093513","29.981156"],["-90.093430","29.981233"],["-90.093348","29.981310"],["-90.093266","29.981387"],["-90.093183","29.981464"],["-90.093101","29.981541"],["-90.093019","29.981617"],["-90.092936","29.981694"],["-90.092854","29.981771"],["-90.092772","29.981848"],["-90.092690","29.981925"],["-90.092607","29.982002"],["-90.092525","29.982079"],["-90.092443","29.982156"],["-90.092360","29.982233"],["-90.092278","29.982309"],["-90.092196","29.982386"],["-90.092113","29.982463"],["-90.092031","29.982540"],["-90.091949","29.982617"],["-90.091867","29.982694"],["-90.091784","29.982771"],["-90.091702","29.982848"],["-90.091620","29.982925"],["-90.091537","29.983001"],["-90.091449","29.983073"],["-90.091360","29.983145"],["-90.091272","29.983217"],["-90.091183","29.983289"],["-90.091040","29.983360"],["-90.090896","29.983430"],["-90.090753","29.983501"],["-90.090609","29.983571"],["-90.090466","29.983642"],["-90.090322","29.983712"],["-90.090179","29.983783"],["-90.090035","29.983853"]]},{"type":"MultiPoint","coordinates":[["-90.095676","29.979145"],["-90.098996","29.976037"],["-90.094171","29.980541"],["-90.100437","29.974417"],["-90.090035","29.983853"],["-90.097449","29.977469"]]},{"type":"LineString","coordinates":[["-90.100437","29.974417"],["-90.100347","29.974508"],["-90.100258","29.974598"],["-90.100293","29.974772"],["-90.100212","29.974851"],["-90.100131","29.974930"],["-90.100050","29.975009"],["-90.099969","29.975088"],["-90.099888","29.975167"],["-90.099807","29.975246"],["-90.099726","29.975325"],["-90.099645","29.975404"],["-90.099564","29.975484"],["-90.099483","29.975563"],["-90.099401","29.975642"],["-90.099320","29.975721"],["-90.099239","29.975800"],["-90.099158","29.975879"],["-90.099077","29.975958"],["-90.098996","29.976037"],["-90.098899","29.976127"],["-90.098803","29.976216"],["-90.098706","29.976306"],["-90.098609","29.976395"],["-90.098513","29.976485"],["-90.098416","29.976574"],["-90.098319","29.976664"],["-90.098223","29.976753"],["-90.098126","29.976843"],["-90.098029","29.976932"],["-90.097932","29.977022"],["-90.097836","29.977111"],["-90.097739","29.977201"],["-90.097642","29.977290"],["-90.097546","29.977380"],["-90.097449","29.977469"],["-90.097310","29.977593"],["-90.097171","29.977717"],["-90.097032","29.977841"],["-90.096893","29.977965"],["-90.096817","29.978039"],["-90.096741","29.978112"],["-90.096665","29.978186"],["-90.096589","29.978260"],["-90.096513","29.978334"],["-90.096436","29.978407"],["-90.096360","29.978481"],["-90.096284","29.978555"],["-90.096208","29.978629"],["-90.096132","29.978702"],["-90.096056","29.978776"],["-90.095980","29.978850"],["-90.095904","29.978924"],["-90.095828","29.978997"],["-90.095752","29.979071"],["-90.095676","29.979145"],["-90.095597","29.979214"],["-90.095517","29.979283"],["-90.095438","29.979353"],["-90.095359","29.979422"],["-90.095210","29.979562"],["-90.095062","29.979702"],["-90.094913","29.979842"],["-90.094765","29.979981"],["-90.094616","29.980121"],["-90.094468","29.980261"],["-90.094319","29.980401"],["-90.094171","29.980541"],["-90.094029","29.980675"],["-90.093886","29.980809"],["-90.093744","29.980943"],["-90.093601","29.981077"],["-90.093459","29.981211"],["-90.093316","29.981345"],["-90.093174","29.981478"],["-90.093031","29.981612"],["-90.092889","29.981746"],["-90.092746","29.981880"],["-90.092604","29.982014"],["-90.092461","29.982148"],["-90.092319","29.982282"],["-90.092176","29.982416"],["-90.092034","29.982550"],["-90.091891","29.982684"],["-90.091793","29.982767"],["-90.091694","29.982850"],["-90.091595","29.982933"],["-90.091497","29.983016"],["-90.091398","29.983099"],["-90.091300","29.983182"],["-90.091201","29.983265"],["-90.091103","29.983348"],["-90.090909","29.983424"],["-90.090716","29.983499"],["-90.090523","29.983575"],["-90.090330","29.983650"],["-90.090183","29.983752"],["-90.090035","29.983853"]]}]}},{"type":"Feature","properties":{"route_id":"49","agency_id":"1","route_short_name":"49","route_long_name":"UPT-Riverfront","route_type":"0","route_color":"#fdbb30","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.082555","29.962311"],["-90.087599","29.965729"],["-90.088946","29.966643"],["-90.075405","29.957434"],["-90.078134","29.959314"],["-90.073737","29.956276"],["-90.074776","29.954679"],["-90.075759","29.950997"],["-90.076906","29.947161"],["-90.078191","29.945407"],["-90.076213","29.949039"],["-90.085829","29.964529"],["-90.084071","29.963277"],["-90.080407","29.960849"]]},{"type":"LineString","coordinates":[["-90.088946","29.966643"],["-90.088795","29.966520"],["-90.088644","29.966396"],["-90.088492","29.966273"],["-90.088341","29.966150"],["-90.088190","29.966027"],["-90.088039","29.965903"],["-90.087850","29.965828"],["-90.087661","29.965754"],["-90.087599","29.965729"],["-90.087485","29.965579"],["-90.087380","29.965440"],["-90.087215","29.965331"],["-90.087050","29.965221"],["-90.086886","29.965112"],["-90.086721","29.965002"],["-90.086556","29.964893"],["-90.086391","29.964784"],["-90.086280","29.964710"],["-90.086092","29.964634"],["-90.085903","29.964559"],["-90.085829","29.964529"],["-90.085678","29.964406"],["-90.085527","29.964282"],["-90.085377","29.964158"],["-90.085226","29.964034"],["-90.085075","29.963911"],["-90.084940","29.963800"],["-90.084770","29.963697"],["-90.084599","29.963595"],["-90.084428","29.963492"],["-90.084258","29.963390"],["-90.084087","29.963287"],["-90.084071","29.963277"],["-90.083924","29.963150"],["-90.083777","29.963023"],["-90.083735","29.962986"],["-90.083573","29.962874"],["-90.083410","29.962762"],["-90.083248","29.962650"],["-90.083190","29.962610"],["-90.083040","29.962510"],["-90.082852","29.962433"],["-90.082665","29.962356"],["-90.082555","29.962311"],["-90.082426","29.962170"],["-90.082297","29.962029"],["-90.082244","29.961972"],["-90.082079","29.961863"],["-90.081914","29.961754"],["-90.081749","29.961645"],["-90.081590","29.961540"],["-90.081440","29.961440"],["-90.081275","29.961331"],["-90.081110","29.961222"],["-90.080945","29.961113"],["-90.080783","29.961000"],["-90.080595","29.960924"],["-90.080407","29.960849"],["-90.080274","29.960711"],["-90.080142","29.960572"],["-90.079983","29.960456"],["-90.079821","29.960344"],["-90.079700","29.960260"],["-90.079535","29.960150"],["-90.079371","29.960041"],["-90.079206","29.959931"],["-90.079042","29.959821"],["-90.078877","29.959712"],["-90.078800","29.959660"],["-90.078637","29.959548"],["-90.078477","29.959434"],["-90.078284","29.959367"],["-90.078134","29.959314"],["-90.078019","29.959165"],["-90.077930","29.959050"],["-90.077850","29.958990"],["-90.077790","29.958940"],["-90.077625","29.958830"],["-90.077461","29.958721"],["-90.077296","29.958611"],["-90.077132","29.958501"],["-90.076969","29.958390"],["-90.076808","29.958276"],["-90.076660","29.958170"],["-90.076496","29.958060"],["-90.076332","29.957949"],["-90.076168","29.957839"],["-90.076004","29.957729"],["-90.075823","29.957640"],["-90.075643","29.957551"],["-90.075462","29.957462"],["-90.075405","29.957434"],["-90.075283","29.957289"],["-90.075216","29.957209"],["-90.075052","29.957098"],["-90.074889","29.956988"],["-90.074724","29.956878"],["-90.074610","29.956800"],["-90.074447","29.956689"],["-90.074283","29.956579"],["-90.074180","29.956510"],["-90.074050","29.956420"],["-90.073867","29.956336"],["-90.073737","29.956276"],["-90.073749","29.956096"],["-90.073757","29.955978"],["-90.073884","29.955836"],["-90.074012","29.955694"],["-90.074139","29.955552"],["-90.074265","29.955409"],["-90.074380","29.955280"],["-90.074483","29.955124"],["-90.074586","29.954968"],["-90.074689","29.954811"],["-90.074776","29.954679"],["-90.074926","29.954555"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075208","29.954150"],["-90.075276","29.953980"],["-90.075314","29.953803"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075437","29.953337"],["-90.075493","29.953164"],["-90.075550","29.952991"],["-90.075580","29.952880"],["-90.075638","29.952707"],["-90.075697","29.952535"],["-90.075755","29.952362"],["-90.075790","29.952260"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075835","29.951650"],["-90.075831","29.951471"],["-90.075830","29.951420"],["-90.075800","29.951242"],["-90.075770","29.951064"],["-90.075759","29.950997"],["-90.075828","29.950827"],["-90.075897","29.950658"],["-90.075927","29.950585"],["-90.075974","29.950410"],["-90.076021","29.950235"],["-90.076068","29.950059"],["-90.076115","29.949884"],["-90.076162","29.949709"],["-90.076209","29.949534"],["-90.076261","29.949360"],["-90.076234","29.949181"],["-90.076213","29.949039"],["-90.076305","29.948878"],["-90.076397","29.948717"],["-90.076490","29.948556"],["-90.076547","29.948383"],["-90.076598","29.948208"],["-90.076626","29.948085"],["-90.076653","29.947961"],["-90.076681","29.947838"],["-90.076708","29.947715"],["-90.076736","29.947591"],["-90.076776","29.947406"],["-90.076793","29.947307"],["-90.076809","29.947208"],["-90.076906","29.947161"],["-90.076833","29.947135"],["-90.076812","29.947013"],["-90.076834","29.946848"],["-90.076855","29.946684"],["-90.076868","29.946495"],["-90.076881","29.946307"],["-90.076935","29.946196"],["-90.076989","29.946085"],["-90.077055","29.945977"],["-90.077122","29.945869"],["-90.077198","29.945748"],["-90.077274","29.945627"],["-90.077443","29.945536"],["-90.077554","29.945497"],["-90.077665","29.945459"],["-90.077797","29.945446"],["-90.077928","29.945433"],["-90.078060","29.945420"],["-90.078191","29.945407"]]},{"type":"MultiPoint","coordinates":[["-90.057160","29.960899"],["-90.063341","29.950002"],["-90.063721","29.952704"],["-90.072937","29.955716"],["-90.062783","29.955698"],["-90.060759","29.957969"],["-90.066304","29.951243"],["-90.070042","29.953755"],["-90.068084","29.952458"],["-90.064992","29.950382"],["-90.078191","29.945407"],["-90.076801","29.946781"],["-90.075766","29.950583"],["-90.074565","29.954722"],["-90.076253","29.948886"],["-90.058961","29.959485"]]},{"type":"LineString","coordinates":[["-90.078191","29.945407"],["-90.078078","29.945426"],["-90.077966","29.945446"],["-90.077827","29.945446"],["-90.077689","29.945446"],["-90.077589","29.945493"],["-90.077490","29.945540"],["-90.077390","29.945587"],["-90.077290","29.945634"],["-90.077220","29.945736"],["-90.077150","29.945839"],["-90.077080","29.945941"],["-90.077011","29.946043"],["-90.076936","29.946191"],["-90.076861","29.946338"],["-90.076856","29.946475"],["-90.076850","29.946612"],["-90.076801","29.946781"],["-90.076773","29.946900"],["-90.076746","29.947019"],["-90.076707","29.947161"],["-90.076668","29.947303"],["-90.076628","29.947441"],["-90.076588","29.947579"],["-90.076561","29.947694"],["-90.076534","29.947809"],["-90.076502","29.947928"],["-90.076470","29.948046"],["-90.076437","29.948165"],["-90.076405","29.948283"],["-90.076373","29.948402"],["-90.076341","29.948520"],["-90.076309","29.948639"],["-90.076276","29.948758"],["-90.076253","29.948886"],["-90.076209","29.949047"],["-90.076165","29.949208"],["-90.076122","29.949368"],["-90.076078","29.949529"],["-90.076024","29.949714"],["-90.075969","29.949900"],["-90.075915","29.950085"],["-90.075861","29.950270"],["-90.075813","29.950427"],["-90.075766","29.950583"],["-90.075725","29.950723"],["-90.075684","29.950863"],["-90.075676","29.951008"],["-90.075668","29.951154"],["-90.075675","29.951266"],["-90.075682","29.951378"],["-90.075690","29.951490"],["-90.075697","29.951602"],["-90.075695","29.951719"],["-90.075693","29.951836"],["-90.075691","29.951952"],["-90.075689","29.952069"],["-90.075665","29.952166"],["-90.075641","29.952262"],["-90.075617","29.952359"],["-90.075592","29.952455"],["-90.075557","29.952568"],["-90.075521","29.952682"],["-90.075486","29.952795"],["-90.075450","29.952908"],["-90.075415","29.953021"],["-90.075379","29.953135"],["-90.075344","29.953248"],["-90.075308","29.953361"],["-90.075263","29.953522"],["-90.075218","29.953682"],["-90.075173","29.953842"],["-90.075128","29.954003"],["-90.075071","29.954142"],["-90.075014","29.954280"],["-90.074957","29.954419"],["-90.074901","29.954558"],["-90.074733","29.954640"],["-90.074565","29.954722"],["-90.074542","29.954822"],["-90.074520","29.954922"],["-90.074422","29.955027"],["-90.074325","29.955133"],["-90.074228","29.955238"],["-90.074131","29.955344"],["-90.074033","29.955449"],["-90.073936","29.955555"],["-90.073839","29.955660"],["-90.073742","29.955765"],["-90.073685","29.955911"],["-90.073629","29.956056"],["-90.073503","29.956133"],["-90.073390","29.956119"],["-90.073277","29.956018"],["-90.073164","29.955917"],["-90.073050","29.955817"],["-90.072937","29.955716"],["-90.072840","29.955703"],["-90.072667","29.955587"],["-90.072494","29.955472"],["-90.072320","29.955356"],["-90.072147","29.955240"],["-90.071974","29.955125"],["-90.071800","29.955009"],["-90.071627","29.954894"],["-90.071454","29.954778"],["-90.071280","29.954663"],["-90.071107","29.954547"],["-90.070934","29.954432"],["-90.070760","29.954316"],["-90.070587","29.954200"],["-90.070414","29.954085"],["-90.070240","29.953969"],["-90.070067","29.953854"],["-90.070042","29.953755"],["-90.069858","29.953712"],["-90.069749","29.953637"],["-90.069640","29.953563"],["-90.069531","29.953488"],["-90.069422","29.953413"],["-90.069312","29.953339"],["-90.069203","29.953264"],["-90.069094","29.953189"],["-90.068985","29.953115"],["-90.068876","29.953040"],["-90.068767","29.952965"],["-90.068658","29.952891"],["-90.068549","29.952816"],["-90.068440","29.952742"],["-90.068331","29.952667"],["-90.068222","29.952592"],["-90.068113","29.952518"],["-90.068084","29.952458"],["-90.068033","29.952462"],["-90.067928","29.952391"],["-90.067823","29.952320"],["-90.067717","29.952249"],["-90.067612","29.952178"],["-90.067507","29.952108"],["-90.067401","29.952037"],["-90.067296","29.951966"],["-90.067191","29.951895"],["-90.067086","29.951825"],["-90.066980","29.951754"],["-90.066875","29.951683"],["-90.066770","29.951612"],["-90.066664","29.951541"],["-90.066559","29.951471"],["-90.066454","29.951400"],["-90.066349","29.951329"],["-90.066304","29.951243"],["-90.066236","29.951257"],["-90.066089","29.951158"],["-90.065942","29.951058"],["-90.065795","29.950959"],["-90.065648","29.950860"],["-90.065502","29.950760"],["-90.065355","29.950661"],["-90.065208","29.950562"],["-90.065061","29.950462"],["-90.064992","29.950382"],["-90.064856","29.950331"],["-90.064693","29.950218"],["-90.064530","29.950106"],["-90.064367","29.949993"],["-90.064204","29.949880"],["-90.064030","29.949841"],["-90.063859","29.949881"],["-90.063689","29.949922"],["-90.063515","29.949962"],["-90.063341","29.950002"],["-90.063450","29.950089"],["-90.063482","29.950266"],["-90.063515","29.950442"],["-90.063526","29.950548"],["-90.063537","29.950654"],["-90.063548","29.950760"],["-90.063560","29.950866"],["-90.063571","29.950972"],["-90.063582","29.951078"],["-90.063593","29.951184"],["-90.063605","29.951290"],["-90.063616","29.951395"],["-90.063627","29.951501"],["-90.063638","29.951607"],["-90.063649","29.951713"],["-90.063661","29.951819"],["-90.063672","29.951925"],["-90.063683","29.952031"],["-90.063694","29.952137"],["-90.063696","29.952262"],["-90.063697","29.952388"],["-90.063698","29.952513"],["-90.063700","29.952639"],["-90.063721","29.952704"],["-90.063683","29.952831"],["-90.063646","29.952957"],["-90.063608","29.953084"],["-90.063571","29.953210"],["-90.063536","29.953388"],["-90.063501","29.953566"],["-90.063465","29.953744"],["-90.063430","29.953921"],["-90.063395","29.954099"],["-90.063360","29.954277"],["-90.063325","29.954455"],["-90.063290","29.954633"],["-90.063225","29.954806"],["-90.063160","29.954980"],["-90.063095","29.955154"],["-90.063030","29.955327"],["-90.062917","29.955473"],["-90.062804","29.955618"],["-90.062783","29.955698"],["-90.062646","29.955802"],["-90.062573","29.955882"],["-90.062500","29.955962"],["-90.062428","29.956043"],["-90.062355","29.956125"],["-90.062283","29.956207"],["-90.062210","29.956288"],["-90.062138","29.956370"],["-90.062065","29.956452"],["-90.061993","29.956533"],["-90.061921","29.956615"],["-90.061848","29.956696"],["-90.061776","29.956778"],["-90.061703","29.956860"],["-90.061631","29.956941"],["-90.061559","29.957023"],["-90.061486","29.957105"],["-90.061414","29.957186"],["-90.061341","29.957268"],["-90.061272","29.957349"],["-90.061203","29.957430"],["-90.061134","29.957511"],["-90.061065","29.957592"],["-90.060996","29.957673"],["-90.060927","29.957754"],["-90.060858","29.957835"],["-90.060789","29.957916"],["-90.060759","29.957969"],["-90.060663","29.958051"],["-90.060566","29.958132"],["-90.060427","29.958282"],["-90.060289","29.958431"],["-90.060150","29.958580"],["-90.060011","29.958730"],["-90.059932","29.958798"],["-90.059853","29.958867"],["-90.059775","29.958936"],["-90.059696","29.959005"],["-90.059617","29.959074"],["-90.059538","29.959143"],["-90.059459","29.959211"],["-90.059381","29.959280"],["-90.059276","29.959331"],["-90.059171","29.959383"],["-90.059066","29.959434"],["-90.058961","29.959485"],["-90.058831","29.959610"],["-90.058731","29.959678"],["-90.058632","29.959746"],["-90.058533","29.959813"],["-90.058434","29.959881"],["-90.058335","29.959949"],["-90.058235","29.960016"],["-90.058136","29.960084"],["-90.058037","29.960152"],["-90.057938","29.960219"],["-90.057838","29.960287"],["-90.057739","29.960355"],["-90.057640","29.960422"],["-90.057541","29.960490"],["-90.057441","29.960558"],["-90.057342","29.960625"],["-90.057243","29.960693"],["-90.057201","29.960796"],["-90.057160","29.960899"]]},{"type":"MultiPoint","coordinates":[["-90.082505","29.962276"],["-90.087519","29.965685"],["-90.085842","29.964549"],["-90.083851","29.963185"],["-90.080356","29.960816"],["-90.078051","29.959296"],["-90.089092","29.966714"],["-90.075219","29.957336"],["-90.078191","29.945407"],["-90.076801","29.946781"],["-90.075766","29.950583"],["-90.074565","29.954722"],["-90.076253","29.948886"]]},{"type":"LineString","coordinates":[["-90.078191","29.945407"],["-90.078078","29.945426"],["-90.077966","29.945446"],["-90.077827","29.945446"],["-90.077689","29.945446"],["-90.077589","29.945493"],["-90.077490","29.945540"],["-90.077390","29.945587"],["-90.077290","29.945634"],["-90.077220","29.945736"],["-90.077150","29.945839"],["-90.077080","29.945941"],["-90.077011","29.946043"],["-90.076936","29.946191"],["-90.076861","29.946338"],["-90.076856","29.946475"],["-90.076850","29.946612"],["-90.076801","29.946781"],["-90.076773","29.946900"],["-90.076746","29.947019"],["-90.076707","29.947161"],["-90.076668","29.947303"],["-90.076628","29.947441"],["-90.076588","29.947579"],["-90.076561","29.947694"],["-90.076534","29.947809"],["-90.076502","29.947928"],["-90.076470","29.948046"],["-90.076437","29.948165"],["-90.076405","29.948283"],["-90.076373","29.948402"],["-90.076341","29.948520"],["-90.076309","29.948639"],["-90.076276","29.948758"],["-90.076253","29.948886"],["-90.076209","29.949047"],["-90.076165","29.949208"],["-90.076122","29.949368"],["-90.076078","29.949529"],["-90.076024","29.949714"],["-90.075969","29.949900"],["-90.075915","29.950085"],["-90.075861","29.950270"],["-90.075813","29.950427"],["-90.075766","29.950583"],["-90.075725","29.950723"],["-90.075684","29.950863"],["-90.075676","29.951008"],["-90.075668","29.951154"],["-90.075675","29.951266"],["-90.075682","29.951378"],["-90.075690","29.951490"],["-90.075697","29.951602"],["-90.075695","29.951719"],["-90.075693","29.951836"],["-90.075691","29.951952"],["-90.075689","29.952069"],["-90.075665","29.952166"],["-90.075641","29.952262"],["-90.075617","29.952359"],["-90.075592","29.952455"],["-90.075557","29.952568"],["-90.075521","29.952682"],["-90.075486","29.952795"],["-90.075450","29.952908"],["-90.075415","29.953021"],["-90.075379","29.953135"],["-90.075344","29.953248"],["-90.075308","29.953361"],["-90.075263","29.953522"],["-90.075218","29.953682"],["-90.075173","29.953842"],["-90.075128","29.954003"],["-90.075071","29.954142"],["-90.075014","29.954280"],["-90.074957","29.954419"],["-90.074901","29.954558"],["-90.074733","29.954640"],["-90.074565","29.954722"],["-90.074517","29.954842"],["-90.074469","29.954963"],["-90.074368","29.955073"],["-90.074268","29.955184"],["-90.074168","29.955295"],["-90.074068","29.955405"],["-90.073967","29.955516"],["-90.073867","29.955627"],["-90.073767","29.955737"],["-90.073667","29.955848"],["-90.073535","29.955887"],["-90.073409","29.956001"],["-90.073409","29.956148"],["-90.073577","29.956255"],["-90.073744","29.956362"],["-90.073837","29.956422"],["-90.073929","29.956483"],["-90.074021","29.956544"],["-90.074113","29.956605"],["-90.074205","29.956666"],["-90.074297","29.956727"],["-90.074390","29.956788"],["-90.074482","29.956849"],["-90.074574","29.956910"],["-90.074666","29.956971"],["-90.074758","29.957031"],["-90.074850","29.957092"],["-90.074943","29.957153"],["-90.075035","29.957214"],["-90.075127","29.957275"],["-90.075219","29.957336"],["-90.075307","29.957397"],["-90.075396","29.957459"],["-90.075484","29.957520"],["-90.075573","29.957581"],["-90.075661","29.957642"],["-90.075750","29.957704"],["-90.075838","29.957765"],["-90.075927","29.957826"],["-90.076015","29.957887"],["-90.076104","29.957949"],["-90.076192","29.958010"],["-90.076281","29.958071"],["-90.076369","29.958132"],["-90.076458","29.958194"],["-90.076546","29.958255"],["-90.076635","29.958316"],["-90.076723","29.958377"],["-90.076812","29.958439"],["-90.076900","29.958500"],["-90.076989","29.958561"],["-90.077077","29.958622"],["-90.077166","29.958684"],["-90.077254","29.958745"],["-90.077343","29.958806"],["-90.077431","29.958867"],["-90.077520","29.958929"],["-90.077608","29.958990"],["-90.077697","29.959051"],["-90.077785","29.959112"],["-90.077874","29.959174"],["-90.077962","29.959235"],["-90.078051","29.959296"],["-90.078148","29.959357"],["-90.078245","29.959419"],["-90.078343","29.959480"],["-90.078440","29.959541"],["-90.078536","29.959607"],["-90.078632","29.959673"],["-90.078728","29.959738"],["-90.078824","29.959804"],["-90.078920","29.959870"],["-90.079016","29.959935"],["-90.079113","29.960001"],["-90.079209","29.960067"],["-90.079305","29.960133"],["-90.079401","29.960198"],["-90.079497","29.960264"],["-90.079593","29.960330"],["-90.079689","29.960396"],["-90.079841","29.960496"],["-90.079992","29.960596"],["-90.080144","29.960696"],["-90.080296","29.960796"],["-90.080356","29.960816"],["-90.080516","29.960938"],["-90.080675","29.961060"],["-90.080789","29.961136"],["-90.080904","29.961212"],["-90.081018","29.961288"],["-90.081133","29.961364"],["-90.081247","29.961440"],["-90.081361","29.961516"],["-90.081476","29.961592"],["-90.081590","29.961668"],["-90.081704","29.961744"],["-90.081819","29.961820"],["-90.081933","29.961896"],["-90.082048","29.961972"],["-90.082162","29.962048"],["-90.082276","29.962124"],["-90.082391","29.962200"],["-90.082505","29.962276"],["-90.082673","29.962390"],["-90.082841","29.962503"],["-90.083010","29.962617"],["-90.083178","29.962731"],["-90.083346","29.962844"],["-90.083514","29.962958"],["-90.083683","29.963071"],["-90.083851","29.963185"],["-90.083975","29.963270"],["-90.084100","29.963356"],["-90.084224","29.963441"],["-90.084349","29.963526"],["-90.084473","29.963611"],["-90.084598","29.963697"],["-90.084722","29.963782"],["-90.084846","29.963867"],["-90.084971","29.963952"],["-90.085095","29.964038"],["-90.085220","29.964123"],["-90.085344","29.964208"],["-90.085469","29.964293"],["-90.085593","29.964379"],["-90.085718","29.964464"],["-90.085842","29.964549"],["-90.085947","29.964620"],["-90.086052","29.964691"],["-90.086156","29.964762"],["-90.086261","29.964833"],["-90.086366","29.964904"],["-90.086471","29.964975"],["-90.086576","29.965046"],["-90.086680","29.965117"],["-90.086785","29.965188"],["-90.086890","29.965259"],["-90.086995","29.965330"],["-90.087100","29.965401"],["-90.087205","29.965472"],["-90.087309","29.965543"],["-90.087414","29.965614"],["-90.087519","29.965685"],["-90.087617","29.965749"],["-90.087716","29.965814"],["-90.087814","29.965878"],["-90.087912","29.965942"],["-90.088011","29.966007"],["-90.088109","29.966071"],["-90.088207","29.966135"],["-90.088305","29.966200"],["-90.088404","29.966264"],["-90.088502","29.966328"],["-90.088600","29.966392"],["-90.088699","29.966457"],["-90.088797","29.966521"],["-90.088895","29.966585"],["-90.088994","29.966650"],["-90.089092","29.966714"]]},{"type":"MultiPoint","coordinates":[["-90.057160","29.960899"],["-90.059121","29.959530"],["-90.060912","29.958007"],["-90.062950","29.955655"],["-90.063704","29.952795"],["-90.073156","29.956012"],["-90.069772","29.953711"],["-90.068064","29.952575"],["-90.065793","29.951016"],["-90.064992","29.950382"],["-90.063549","29.950109"],["-90.074776","29.954679"],["-90.075759","29.950997"],["-90.076906","29.947161"],["-90.078191","29.945407"],["-90.076213","29.949039"]]},{"type":"LineString","coordinates":[["-90.057160","29.960899"],["-90.057322","29.960786"],["-90.057483","29.960673"],["-90.057645","29.960560"],["-90.057807","29.960448"],["-90.057968","29.960335"],["-90.058130","29.960222"],["-90.058292","29.960109"],["-90.058453","29.959996"],["-90.058620","29.959880"],["-90.058787","29.959763"],["-90.058954","29.959647"],["-90.059121","29.959530"],["-90.059272","29.959409"],["-90.059424","29.959287"],["-90.059575","29.959166"],["-90.059727","29.959044"],["-90.059857","29.958913"],["-90.059986","29.958782"],["-90.060116","29.958650"],["-90.060246","29.958519"],["-90.060376","29.958388"],["-90.060505","29.958257"],["-90.060635","29.958125"],["-90.060765","29.957994"],["-90.060912","29.958007"],["-90.060927","29.957904"],["-90.060942","29.957801"],["-90.061060","29.957668"],["-90.061179","29.957535"],["-90.061297","29.957403"],["-90.061415","29.957270"],["-90.061534","29.957137"],["-90.061652","29.957004"],["-90.061770","29.956871"],["-90.061889","29.956738"],["-90.062007","29.956606"],["-90.062125","29.956473"],["-90.062244","29.956340"],["-90.062362","29.956207"],["-90.062480","29.956074"],["-90.062599","29.955942"],["-90.062717","29.955809"],["-90.062836","29.955676"],["-90.062950","29.955655"],["-90.062916","29.955480"],["-90.062987","29.955361"],["-90.063058","29.955243"],["-90.063113","29.955117"],["-90.063168","29.954991"],["-90.063223","29.954865"],["-90.063278","29.954739"],["-90.063318","29.954574"],["-90.063359","29.954410"],["-90.063399","29.954245"],["-90.063439","29.954081"],["-90.063461","29.953961"],["-90.063483","29.953841"],["-90.063505","29.953722"],["-90.063528","29.953602"],["-90.063561","29.953435"],["-90.063595","29.953268"],["-90.063628","29.953101"],["-90.063662","29.952935"],["-90.063704","29.952795"],["-90.063705","29.952654"],["-90.063703","29.952530"],["-90.063702","29.952407"],["-90.063700","29.952284"],["-90.063699","29.952161"],["-90.063689","29.951981"],["-90.063678","29.951801"],["-90.063668","29.951622"],["-90.063657","29.951442"],["-90.063647","29.951262"],["-90.063640","29.951140"],["-90.063624","29.950961"],["-90.063608","29.950781"],["-90.063593","29.950602"],["-90.063577","29.950423"],["-90.063563","29.950266"],["-90.063549","29.950109"],["-90.063596","29.949967"],["-90.063779","29.949915"],["-90.063963","29.949862"],["-90.064172","29.949895"],["-90.064323","29.949981"],["-90.064474","29.950068"],["-90.064625","29.950155"],["-90.064776","29.950241"],["-90.064884","29.950312"],["-90.064992","29.950382"],["-90.065135","29.950476"],["-90.065277","29.950570"],["-90.065420","29.950664"],["-90.065563","29.950759"],["-90.065678","29.950887"],["-90.065793","29.951016"],["-90.065922","29.951084"],["-90.066052","29.951151"],["-90.066193","29.951246"],["-90.066333","29.951340"],["-90.066474","29.951434"],["-90.066615","29.951528"],["-90.066756","29.951622"],["-90.066896","29.951716"],["-90.067037","29.951810"],["-90.067169","29.951899"],["-90.067300","29.951989"],["-90.067431","29.952078"],["-90.067563","29.952167"],["-90.067694","29.952256"],["-90.067826","29.952346"],["-90.067957","29.952435"],["-90.068089","29.952524"],["-90.068064","29.952575"],["-90.068205","29.952707"],["-90.068279","29.952776"],["-90.068340","29.952820"],["-90.068499","29.952936"],["-90.068600","29.953010"],["-90.068766","29.953118"],["-90.068932","29.953226"],["-90.069000","29.953270"],["-90.069163","29.953381"],["-90.069220","29.953420"],["-90.069397","29.953513"],["-90.069575","29.953607"],["-90.069752","29.953700"],["-90.069772","29.953711"],["-90.069912","29.953843"],["-90.070053","29.953976"],["-90.070214","29.954089"],["-90.070375","29.954203"],["-90.070536","29.954317"],["-90.070696","29.954431"],["-90.070780","29.954490"],["-90.070945","29.954600"],["-90.071109","29.954709"],["-90.071260","29.954810"],["-90.071410","29.954910"],["-90.071572","29.955022"],["-90.071700","29.955110"],["-90.071863","29.955221"],["-90.071920","29.955260"],["-90.072085","29.955369"],["-90.072251","29.955477"],["-90.072416","29.955586"],["-90.072582","29.955695"],["-90.072620","29.955720"],["-90.072740","29.955810"],["-90.072921","29.955898"],["-90.073102","29.955986"],["-90.073156","29.956012"],["-90.073290","29.956150"],["-90.073366","29.956228"],["-90.073460","29.956290"],["-90.073596","29.956154"],["-90.073630","29.956120"],["-90.073757","29.955978"],["-90.073884","29.955836"],["-90.074012","29.955694"],["-90.074139","29.955551"],["-90.074265","29.955409"],["-90.074380","29.955280"],["-90.074483","29.955124"],["-90.074586","29.954968"],["-90.074689","29.954811"],["-90.074776","29.954679"],["-90.074926","29.954555"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075208","29.954150"],["-90.075276","29.953980"],["-90.075314","29.953803"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075437","29.953337"],["-90.075493","29.953164"],["-90.075550","29.952991"],["-90.075580","29.952880"],["-90.075638","29.952707"],["-90.075697","29.952535"],["-90.075755","29.952362"],["-90.075790","29.952260"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075835","29.951650"],["-90.075831","29.951471"],["-90.075830","29.951420"],["-90.075800","29.951242"],["-90.075770","29.951064"],["-90.075759","29.950997"],["-90.075828","29.950827"],["-90.075897","29.950658"],["-90.075927","29.950585"],["-90.075974","29.950410"],["-90.076021","29.950235"],["-90.076068","29.950059"],["-90.076115","29.949884"],["-90.076162","29.949709"],["-90.076209","29.949534"],["-90.076261","29.949360"],["-90.076234","29.949181"],["-90.076213","29.949039"],["-90.076305","29.948878"],["-90.076397","29.948717"],["-90.076490","29.948556"],["-90.076547","29.948383"],["-90.076598","29.948208"],["-90.076626","29.948085"],["-90.076653","29.947961"],["-90.076681","29.947838"],["-90.076708","29.947715"],["-90.076736","29.947591"],["-90.076776","29.947406"],["-90.076793","29.947307"],["-90.076809","29.947208"],["-90.076906","29.947161"],["-90.076840","29.947123"],["-90.076844","29.946990"],["-90.076847","29.946857"],["-90.076853","29.946726"],["-90.076859","29.946594"],["-90.076864","29.946462"],["-90.076870","29.946331"],["-90.076933","29.946186"],["-90.076997","29.946040"],["-90.077079","29.945927"],["-90.077161","29.945814"],["-90.077242","29.945701"],["-90.077324","29.945588"],["-90.077473","29.945528"],["-90.077622","29.945468"],["-90.077769","29.945441"],["-90.077980","29.945424"],["-90.078191","29.945407"]]}]}},{"type":"Feature","properties":{"route_id":"51","agency_id":"1","route_short_name":"51","route_long_name":"St. Bernard-Claiborne","route_type":"3","route_color":"#692b91","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.068741","29.969606"],["-90.079639","29.996752"],["-90.079083","29.995773"],["-90.077897","29.993733"],["-90.076083","29.990596"],["-90.075054","29.988763"],["-90.074509","29.987774"],["-90.073300","29.985766"],["-90.070999","29.981741"],["-90.069695","29.979476"],["-90.069133","29.978516"],["-90.068521","29.977547"],["-90.067473","29.975619"],["-90.067279","29.971217"],["-90.070708","29.967388"],["-90.072160","29.965750"],["-90.119982","29.955463"],["-90.086519","29.945464"],["-90.066045","29.972989"],["-90.076537","29.948723"],["-90.077250","29.946349"],["-90.080535","29.944007"],["-90.081487","29.942673"],["-90.083392","29.943703"],["-90.084957","29.944558"],["-90.090105","29.945329"],["-90.091353","29.944603"],["-90.092987","29.943697"],["-90.094647","29.942779"],["-90.096126","29.941916"],["-90.097505","29.941315"],["-90.099870","29.940776"],["-90.105775","29.940278"],["-90.108095","29.940832"],["-90.109318","29.941657"],["-90.111725","29.943008"],["-90.112945","29.944498"],["-90.113644","29.946287"],["-90.114288","29.947816"],["-90.114873","29.949174"],["-90.115738","29.951168"],["-90.116991","29.953378"],["-90.118627","29.954690"],["-90.075911","29.951058"],["-90.080216","29.997750"],["-90.103291","29.940506"],["-90.072097","29.983649"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-90.075280","29.954073"]]},{"type":"LineString","coordinates":[["-90.080216","29.997750"],["-90.080130","29.997790"],["-90.080070","29.997690"],["-90.079985","29.997543"],["-90.079900","29.997395"],["-90.079815","29.997248"],["-90.079730","29.997100"],["-90.079663","29.996993"],["-90.079595","29.996885"],["-90.079639","29.996752"],["-90.079512","29.996720"],["-90.079452","29.996616"],["-90.079392","29.996513"],["-90.079331","29.996409"],["-90.079271","29.996305"],["-90.079211","29.996202"],["-90.079150","29.996098"],["-90.079090","29.995994"],["-90.079029","29.995891"],["-90.079083","29.995773"],["-90.078949","29.995751"],["-90.078882","29.995636"],["-90.078816","29.995520"],["-90.078749","29.995404"],["-90.078683","29.995288"],["-90.078616","29.995172"],["-90.078550","29.995056"],["-90.078483","29.994940"],["-90.078417","29.994825"],["-90.078350","29.994709"],["-90.078283","29.994593"],["-90.078217","29.994477"],["-90.078150","29.994361"],["-90.078084","29.994245"],["-90.078017","29.994129"],["-90.077951","29.994014"],["-90.077884","29.993898"],["-90.077897","29.993733"],["-90.077780","29.993710"],["-90.077725","29.993614"],["-90.077671","29.993519"],["-90.077616","29.993423"],["-90.077562","29.993328"],["-90.077508","29.993232"],["-90.077453","29.993137"],["-90.077399","29.993041"],["-90.077344","29.992946"],["-90.077290","29.992851"],["-90.077236","29.992755"],["-90.077181","29.992660"],["-90.077127","29.992564"],["-90.077073","29.992469"],["-90.077018","29.992373"],["-90.076964","29.992278"],["-90.076909","29.992183"],["-90.076855","29.992087"],["-90.076801","29.991992"],["-90.076746","29.991896"],["-90.076692","29.991801"],["-90.076637","29.991705"],["-90.076583","29.991610"],["-90.076529","29.991514"],["-90.076474","29.991419"],["-90.076420","29.991324"],["-90.076365","29.991228"],["-90.076311","29.991133"],["-90.076257","29.991037"],["-90.076202","29.990942"],["-90.076148","29.990846"],["-90.076094","29.990751"],["-90.076039","29.990655"],["-90.076083","29.990596"],["-90.076006","29.990600"],["-90.075919","29.990448"],["-90.075831","29.990296"],["-90.075743","29.990143"],["-90.075656","29.989991"],["-90.075568","29.989839"],["-90.075480","29.989687"],["-90.075393","29.989535"],["-90.075305","29.989383"],["-90.075250","29.989285"],["-90.075195","29.989188"],["-90.075140","29.989090"],["-90.075110","29.989010"],["-90.075070","29.988910"],["-90.075020","29.988770"],["-90.075054","29.988763"],["-90.075020","29.988770"],["-90.074990","29.988690"],["-90.074940","29.988585"],["-90.074890","29.988480"],["-90.074850","29.988410"],["-90.074795","29.988315"],["-90.074740","29.988220"],["-90.074662","29.988120"],["-90.074585","29.988020"],["-90.074507","29.987920"],["-90.074420","29.987800"],["-90.074509","29.987774"],["-90.074420","29.987800"],["-90.074320","29.987650"],["-90.074255","29.987550"],["-90.074190","29.987450"],["-90.074125","29.987345"],["-90.074060","29.987240"],["-90.074000","29.987143"],["-90.073940","29.987045"],["-90.073880","29.986948"],["-90.073820","29.986850"],["-90.073740","29.986710"],["-90.073660","29.986570"],["-90.073580","29.986430"],["-90.073500","29.986290"],["-90.073450","29.986193"],["-90.073400","29.986095"],["-90.073350","29.985998"],["-90.073300","29.985900"],["-90.073230","29.985770"],["-90.073300","29.985766"],["-90.073230","29.985770"],["-90.073160","29.985640"],["-90.073090","29.985530"],["-90.073020","29.985410"],["-90.072950","29.985290"],["-90.072892","29.985185"],["-90.072835","29.985080"],["-90.072777","29.984975"],["-90.072720","29.984870"],["-90.072640","29.984735"],["-90.072560","29.984600"],["-90.072480","29.984465"],["-90.072400","29.984330"],["-90.072305","29.984165"],["-90.072210","29.984000"],["-90.072115","29.983840"],["-90.072020","29.983680"],["-90.072097","29.983649"],["-90.072020","29.983680"],["-90.071980","29.983600"],["-90.071920","29.983460"],["-90.071840","29.983340"],["-90.071740","29.983200"],["-90.071650","29.983045"],["-90.071560","29.982890"],["-90.071500","29.982773"],["-90.071440","29.982655"],["-90.071380","29.982538"],["-90.071320","29.982420"],["-90.071235","29.982290"],["-90.071150","29.982160"],["-90.071080","29.982035"],["-90.071010","29.981910"],["-90.070920","29.981770"],["-90.070999","29.981741"],["-90.070920","29.981770"],["-90.070900","29.981740"],["-90.070825","29.981608"],["-90.070750","29.981475"],["-90.070675","29.981343"],["-90.070600","29.981210"],["-90.070525","29.981085"],["-90.070450","29.980960"],["-90.070372","29.980820"],["-90.070295","29.980680"],["-90.070217","29.980540"],["-90.070140","29.980400"],["-90.070060","29.980270"],["-90.069980","29.980140"],["-90.069900","29.980000"],["-90.069835","29.979875"],["-90.069770","29.979750"],["-90.069705","29.979625"],["-90.069640","29.979500"],["-90.069695","29.979476"],["-90.069640","29.979500"],["-90.069590","29.979420"],["-90.069505","29.979275"],["-90.069420","29.979130"],["-90.069335","29.978983"],["-90.069250","29.978835"],["-90.069165","29.978688"],["-90.069080","29.978540"],["-90.069133","29.978516"],["-90.069080","29.978540"],["-90.069040","29.978470"],["-90.068975","29.978355"],["-90.068910","29.978240"],["-90.068845","29.978125"],["-90.068780","29.978010"],["-90.068715","29.977895"],["-90.068650","29.977780"],["-90.068585","29.977665"],["-90.068520","29.977550"],["-90.068521","29.977547"],["-90.068520","29.977550"],["-90.068500","29.977510"],["-90.068407","29.977365"],["-90.068315","29.977220"],["-90.068222","29.977075"],["-90.068130","29.976930"],["-90.068070","29.976800"],["-90.068050","29.976760"],["-90.067995","29.976660"],["-90.067940","29.976560"],["-90.067879","29.976453"],["-90.067817","29.976345"],["-90.067756","29.976238"],["-90.067695","29.976130"],["-90.067634","29.976023"],["-90.067572","29.975915"],["-90.067511","29.975808"],["-90.067450","29.975700"],["-90.067400","29.975630"],["-90.067473","29.975619"],["-90.067400","29.975630"],["-90.067332","29.975518"],["-90.067265","29.975405"],["-90.067197","29.975293"],["-90.067130","29.975180"],["-90.067055","29.975045"],["-90.066980","29.974910"],["-90.066910","29.974780"],["-90.066840","29.974650"],["-90.066757","29.974505"],["-90.066675","29.974360"],["-90.066592","29.974215"],["-90.066510","29.974070"],["-90.066457","29.973983"],["-90.066405","29.973895"],["-90.066352","29.973808"],["-90.066300","29.973720"],["-90.066235","29.973600"],["-90.066170","29.973480"],["-90.066117","29.973390"],["-90.066065","29.973300"],["-90.066012","29.973210"],["-90.065960","29.973120"],["-90.065960","29.972990"],["-90.066045","29.972989"],["-90.065970","29.972990"],["-90.065970","29.972810"],["-90.065970","29.972800"],["-90.065970","29.972760"],["-90.065980","29.972670"],["-90.066050","29.972600"],["-90.066110","29.972530"],["-90.066230","29.972393"],["-90.066350","29.972255"],["-90.066470","29.972118"],["-90.066590","29.971980"],["-90.066708","29.971850"],["-90.066825","29.971720"],["-90.066943","29.971590"],["-90.067060","29.971460"],["-90.067120","29.971390"],["-90.067160","29.971350"],["-90.067279","29.971217"],["-90.067280","29.971210"],["-90.067310","29.971170"],["-90.067435","29.971035"],["-90.067560","29.970900"],["-90.067635","29.970815"],["-90.067710","29.970730"],["-90.067785","29.970645"],["-90.067860","29.970560"],["-90.067940","29.970470"],["-90.067980","29.970420"],["-90.068040","29.970360"],["-90.068130","29.970255"],["-90.068220","29.970150"],["-90.068300","29.970055"],["-90.068380","29.969960"],["-90.068520","29.969820"],["-90.068625","29.969710"],["-90.068730","29.969600"],["-90.068741","29.969606"],["-90.068730","29.969600"],["-90.068750","29.969570"],["-90.068860","29.969450"],["-90.068980","29.969310"],["-90.068990","29.969310"],["-90.069083","29.969205"],["-90.069175","29.969100"],["-90.069268","29.968995"],["-90.069360","29.968890"],["-90.069453","29.968785"],["-90.069545","29.968680"],["-90.069638","29.968575"],["-90.069730","29.968470"],["-90.069810","29.968380"],["-90.069890","29.968290"],["-90.069990","29.968170"],["-90.070050","29.968110"],["-90.070120","29.968033"],["-90.070190","29.967955"],["-90.070260","29.967878"],["-90.070330","29.967800"],["-90.070400","29.967723"],["-90.070470","29.967645"],["-90.070540","29.967568"],["-90.070610","29.967490"],["-90.070660","29.967430"],["-90.070700","29.967380"],["-90.070708","29.967388"],["-90.070700","29.967380"],["-90.070740","29.967330"],["-90.070835","29.967225"],["-90.070930","29.967120"],["-90.071060","29.966980"],["-90.071180","29.966840"],["-90.071305","29.966695"],["-90.071430","29.966550"],["-90.071543","29.966428"],["-90.071655","29.966305"],["-90.071768","29.966183"],["-90.071880","29.966060"],["-90.071900","29.966040"],["-90.071930","29.966010"],["-90.072045","29.965880"],["-90.072160","29.965750"],["-90.072190","29.965720"],["-90.072290","29.965620"],["-90.072400","29.965500"],["-90.072500","29.965375"],["-90.072600","29.965250"],["-90.072685","29.965155"],["-90.072770","29.965060"],["-90.072900","29.964910"],["-90.072980","29.964820"],["-90.073060","29.964730"],["-90.073150","29.964630"],["-90.073240","29.964530"],["-90.073280","29.964480"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962950"],["-90.071350","29.962940"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074010","29.955710"],["-90.074078","29.955755"],["-90.074000","29.955700"],["-90.074090","29.955605"],["-90.074180","29.955510"],["-90.074280","29.955420"],["-90.074400","29.955280"],["-90.074472","29.955197"],["-90.074544","29.955113"],["-90.074616","29.955030"],["-90.074688","29.954947"],["-90.074760","29.954863"],["-90.074832","29.954780"],["-90.074904","29.954696"],["-90.074976","29.954613"],["-90.075052","29.954478"],["-90.075128","29.954343"],["-90.075204","29.954208"],["-90.075280","29.954073"],["-90.075326","29.953909"],["-90.075372","29.953745"],["-90.075419","29.953581"],["-90.075465","29.953417"],["-90.075496","29.953305"],["-90.075526","29.953192"],["-90.075557","29.953079"],["-90.075588","29.952967"],["-90.075619","29.952854"],["-90.075650","29.952741"],["-90.075681","29.952628"],["-90.075711","29.952516"],["-90.075742","29.952361"],["-90.075773","29.952207"],["-90.075804","29.952052"],["-90.075835","29.951898"],["-90.075838","29.951734"],["-90.075840","29.951570"],["-90.075843","29.951406"],["-90.075846","29.951242"],["-90.075878","29.951150"],["-90.075911","29.951058"],["-90.075867","29.950908"],["-90.075890","29.950805"],["-90.075913","29.950703"],["-90.075936","29.950601"],["-90.075959","29.950499"],["-90.076000","29.950363"],["-90.076040","29.950226"],["-90.076081","29.950090"],["-90.076121","29.949953"],["-90.076162","29.949817"],["-90.076202","29.949680"],["-90.076244","29.949528"],["-90.076286","29.949375"],["-90.076328","29.949223"],["-90.076371","29.949071"],["-90.076413","29.948919"],["-90.076455","29.948767"],["-90.076537","29.948723"],["-90.076500","29.948710"],["-90.076540","29.948570"],["-90.076560","29.948480"],["-90.076605","29.948300"],["-90.076650","29.948120"],["-90.076675","29.948015"],["-90.076700","29.947910"],["-90.076725","29.947805"],["-90.076750","29.947700"],["-90.076795","29.947555"],["-90.076840","29.947410"],["-90.076885","29.947265"],["-90.076930","29.947120"],["-90.076960","29.947000"],["-90.077015","29.946835"],["-90.077070","29.946670"],["-90.077125","29.946500"],["-90.077180","29.946330"],["-90.077250","29.946349"],["-90.077180","29.946330"],["-90.077190","29.946280"],["-90.077200","29.946260"],["-90.077220","29.946190"],["-90.077250","29.946090"],["-90.077280","29.945990"],["-90.077320","29.945880"],["-90.077350","29.945770"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077570","29.945440"],["-90.077590","29.945410"],["-90.077610","29.945380"],["-90.077660","29.945330"],["-90.077700","29.945290"],["-90.077800","29.945240"],["-90.077890","29.945200"],["-90.078000","29.945150"],["-90.078080","29.945140"],["-90.078100","29.945140"],["-90.078130","29.945140"],["-90.078150","29.945140"],["-90.078170","29.945140"],["-90.078270","29.945170"],["-90.078380","29.945210"],["-90.078400","29.945210"],["-90.078400","29.945220"],["-90.078580","29.945300"],["-90.078702","29.945360"],["-90.078825","29.945420"],["-90.078947","29.945480"],["-90.079070","29.945540"],["-90.079090","29.945550"],["-90.079120","29.945550"],["-90.079160","29.945550"],["-90.079180","29.945540"],["-90.079220","29.945520"],["-90.079280","29.945500"],["-90.079330","29.945450"],["-90.079350","29.945440"],["-90.079360","29.945430"],["-90.079370","29.945420"],["-90.079400","29.945400"],["-90.079430","29.945370"],["-90.079530","29.945260"],["-90.079630","29.945100"],["-90.079693","29.945013"],["-90.079755","29.944925"],["-90.079818","29.944838"],["-90.079880","29.944750"],["-90.079940","29.944668"],["-90.080000","29.944585"],["-90.080060","29.944503"],["-90.080120","29.944420"],["-90.080180","29.944338"],["-90.080240","29.944255"],["-90.080300","29.944173"],["-90.080360","29.944090"],["-90.080450","29.943960"],["-90.080535","29.944007"],["-90.080450","29.943960"],["-90.080490","29.943900"],["-90.080565","29.943805"],["-90.080640","29.943710"],["-90.080670","29.943670"],["-90.080755","29.943558"],["-90.080840","29.943445"],["-90.080925","29.943333"],["-90.081010","29.943220"],["-90.081078","29.943130"],["-90.081145","29.943040"],["-90.081213","29.942950"],["-90.081280","29.942860"],["-90.081360","29.942755"],["-90.081440","29.942650"],["-90.081487","29.942673"],["-90.081440","29.942650"],["-90.081490","29.942580"],["-90.081625","29.942655"],["-90.081760","29.942730"],["-90.081897","29.942808"],["-90.082035","29.942885"],["-90.082172","29.942963"],["-90.082310","29.943040"],["-90.082470","29.943120"],["-90.082540","29.943160"],["-90.082660","29.943225"],["-90.082780","29.943290"],["-90.082900","29.943355"],["-90.083020","29.943420"],["-90.083122","29.943480"],["-90.083225","29.943540"],["-90.083327","29.943600"],["-90.083430","29.943660"],["-90.083392","29.943703"],["-90.083430","29.943660"],["-90.083490","29.943690"],["-90.083589","29.943744"],["-90.083687","29.943798"],["-90.083786","29.943851"],["-90.083885","29.943905"],["-90.083984","29.943959"],["-90.084082","29.944013"],["-90.084181","29.944066"],["-90.084280","29.944120"],["-90.084457","29.944220"],["-90.084635","29.944320"],["-90.084812","29.944420"],["-90.084990","29.944520"],["-90.084957","29.944558"],["-90.084990","29.944520"],["-90.085070","29.944560"],["-90.085215","29.944650"],["-90.085360","29.944740"],["-90.085480","29.944810"],["-90.085600","29.944880"],["-90.085720","29.944950"],["-90.085840","29.945020"],["-90.086017","29.945120"],["-90.086195","29.945220"],["-90.086372","29.945320"],["-90.086445","29.945392"],["-90.086519","29.945464"],["-90.086729","29.945515"],["-90.086843","29.945579"],["-90.086957","29.945643"],["-90.087070","29.945707"],["-90.087184","29.945770"],["-90.087298","29.945834"],["-90.087411","29.945898"],["-90.087525","29.945962"],["-90.087639","29.946025"],["-90.087752","29.946089"],["-90.087866","29.946153"],["-90.087980","29.946217"],["-90.088093","29.946280"],["-90.088207","29.946344"],["-90.088321","29.946408"],["-90.088434","29.946472"],["-90.088548","29.946536"],["-90.088671","29.946387"],["-90.088795","29.946238"],["-90.088890","29.946140"],["-90.088985","29.946043"],["-90.089080","29.945945"],["-90.089175","29.945848"],["-90.089271","29.945783"],["-90.089366","29.945717"],["-90.089461","29.945652"],["-90.089556","29.945587"],["-90.089652","29.945522"],["-90.089747","29.945457"],["-90.089842","29.945392"],["-90.089937","29.945327"],["-90.090105","29.945329"],["-90.090200","29.945221"],["-90.090295","29.945113"],["-90.090450","29.945025"],["-90.090605","29.944938"],["-90.090760","29.944850"],["-90.090895","29.944773"],["-90.091030","29.944695"],["-90.091165","29.944618"],["-90.091300","29.944540"],["-90.091353","29.944603"],["-90.091300","29.944540"],["-90.091390","29.944490"],["-90.091490","29.944434"],["-90.091590","29.944378"],["-90.091690","29.944321"],["-90.091790","29.944265"],["-90.091890","29.944209"],["-90.091990","29.944153"],["-90.092090","29.944096"],["-90.092190","29.944040"],["-90.092356","29.943944"],["-90.092523","29.943848"],["-90.092689","29.943752"],["-90.092855","29.943657"],["-90.092987","29.943697"],["-90.093093","29.943598"],["-90.093198","29.943499"],["-90.093361","29.943407"],["-90.093523","29.943316"],["-90.093685","29.943225"],["-90.093848","29.943134"],["-90.094010","29.943042"],["-90.094172","29.942951"],["-90.094334","29.942860"],["-90.094497","29.942769"],["-90.094647","29.942779"],["-90.094727","29.942672"],["-90.094808","29.942564"],["-90.094995","29.942461"],["-90.095181","29.942357"],["-90.095368","29.942254"],["-90.095555","29.942150"],["-90.095650","29.942100"],["-90.095770","29.942020"],["-90.095865","29.941965"],["-90.095960","29.941910"],["-90.096060","29.941840"],["-90.096126","29.941916"],["-90.096060","29.941840"],["-90.096190","29.941760"],["-90.096360","29.941650"],["-90.096498","29.941598"],["-90.096635","29.941545"],["-90.096773","29.941493"],["-90.096910","29.941440"],["-90.097048","29.941388"],["-90.097185","29.941335"],["-90.097323","29.941283"],["-90.097460","29.941230"],["-90.097505","29.941315"],["-90.097460","29.941230"],["-90.097530","29.941200"],["-90.097630","29.941160"],["-90.097825","29.941090"],["-90.098020","29.941020"],["-90.098175","29.940965"],["-90.098330","29.940910"],["-90.098485","29.940855"],["-90.098640","29.940800"],["-90.098770","29.940780"],["-90.098900","29.940760"],["-90.098980","29.940750"],["-90.099200","29.940733"],["-90.099420","29.940715"],["-90.099640","29.940698"],["-90.099860","29.940680"],["-90.099870","29.940776"],["-90.099860","29.940680"],["-90.099940","29.940680"],["-90.100078","29.940670"],["-90.100215","29.940660"],["-90.100353","29.940650"],["-90.100490","29.940640"],["-90.100645","29.940628"],["-90.100800","29.940615"],["-90.100955","29.940603"],["-90.101110","29.940590"],["-90.101249","29.940580"],["-90.101388","29.940570"],["-90.101526","29.940560"],["-90.101665","29.940550"],["-90.101804","29.940540"],["-90.101943","29.940530"],["-90.102081","29.940520"],["-90.102220","29.940510"],["-90.102355","29.940505"],["-90.102490","29.940500"],["-90.102680","29.940490"],["-90.102690","29.940490"],["-90.102850","29.940475"],["-90.103010","29.940460"],["-90.103080","29.940450"],["-90.103290","29.940440"],["-90.103291","29.940506"],["-90.103486","29.940444"],["-90.103587","29.940411"],["-90.103794","29.940396"],["-90.104001","29.940382"],["-90.104208","29.940367"],["-90.104415","29.940353"],["-90.104621","29.940338"],["-90.104740","29.940330"],["-90.104946","29.940309"],["-90.105075","29.940300"],["-90.105200","29.940290"],["-90.105270","29.940280"],["-90.105340","29.940270"],["-90.105530","29.940240"],["-90.105680","29.940210"],["-90.105830","29.940180"],["-90.105840","29.940270"],["-90.105775","29.940278"],["-90.105840","29.940270"],["-90.105830","29.940180"],["-90.105890","29.940170"],["-90.105970","29.940150"],["-90.106100","29.940130"],["-90.106290","29.940110"],["-90.106450","29.940110"],["-90.106600","29.940120"],["-90.106760","29.940130"],["-90.106885","29.940150"],["-90.107010","29.940170"],["-90.107190","29.940230"],["-90.107340","29.940280"],["-90.107410","29.940310"],["-90.107590","29.940390"],["-90.107710","29.940450"],["-90.107810","29.940520"],["-90.107890","29.940570"],["-90.107980","29.940650"],["-90.108060","29.940725"],["-90.108170","29.940820"],["-90.108095","29.940832"],["-90.108170","29.940820"],["-90.108280","29.940900"],["-90.108360","29.940970"],["-90.108420","29.941020"],["-90.108480","29.941060"],["-90.108575","29.941120"],["-90.108670","29.941180"],["-90.108740","29.941230"],["-90.108895","29.941320"],["-90.109050","29.941410"],["-90.109210","29.941500"],["-90.109370","29.941590"],["-90.109318","29.941657"],["-90.109370","29.941590"],["-90.109440","29.941640"],["-90.109530","29.941700"],["-90.109640","29.941760"],["-90.109780","29.941840"],["-90.109915","29.941920"],["-90.110050","29.942000"],["-90.110145","29.942055"],["-90.110240","29.942110"],["-90.110335","29.942165"],["-90.110430","29.942220"],["-90.110539","29.942284"],["-90.110647","29.942348"],["-90.110756","29.942411"],["-90.110865","29.942475"],["-90.110974","29.942539"],["-90.111082","29.942603"],["-90.111191","29.942666"],["-90.111300","29.942730"],["-90.111445","29.942790"],["-90.111590","29.942850"],["-90.111630","29.942860"],["-90.111770","29.942920"],["-90.111780","29.942920"],["-90.111725","29.943008"],["-90.111780","29.942920"],["-90.111890","29.942980"],["-90.111990","29.943020"],["-90.112110","29.943080"],["-90.112210","29.943150"],["-90.112260","29.943190"],["-90.112400","29.943300"],["-90.112430","29.943340"],["-90.112460","29.943370"],["-90.112510","29.943420"],["-90.112590","29.943500"],["-90.112685","29.943635"],["-90.112780","29.943770"],["-90.112790","29.943800"],["-90.112810","29.943850"],["-90.112830","29.943890"],["-90.112880","29.944010"],["-90.112930","29.944130"],["-90.112980","29.944250"],["-90.113000","29.944330"],["-90.113010","29.944390"],["-90.113030","29.944480"],["-90.112945","29.944498"],["-90.113030","29.944480"],["-90.113050","29.944540"],["-90.113095","29.944680"],["-90.113140","29.944820"],["-90.113150","29.944840"],["-90.113150","29.944860"],["-90.113160","29.944890"],["-90.113210","29.945010"],["-90.113275","29.945155"],["-90.113340","29.945300"],["-90.113350","29.945330"],["-90.113405","29.945465"],["-90.113460","29.945600"],["-90.113540","29.945770"],["-90.113570","29.945860"],["-90.113635","29.946000"],["-90.113700","29.946140"],["-90.113740","29.946260"],["-90.113644","29.946287"],["-90.113740","29.946260"],["-90.113780","29.946350"],["-90.113832","29.946478"],["-90.113885","29.946605"],["-90.113937","29.946733"],["-90.113990","29.946860"],["-90.114020","29.946930"],["-90.114062","29.947033"],["-90.114105","29.947135"],["-90.114147","29.947238"],["-90.114190","29.947340"],["-90.114232","29.947443"],["-90.114275","29.947545"],["-90.114317","29.947648"],["-90.114390","29.947820"],["-90.114288","29.947816"],["-90.114390","29.947820"],["-90.114450","29.947950"],["-90.114530","29.948110"],["-90.114585","29.948239"],["-90.114640","29.948368"],["-90.114695","29.948496"],["-90.114750","29.948625"],["-90.114805","29.948754"],["-90.114860","29.948883"],["-90.114915","29.949011"],["-90.114980","29.949180"],["-90.114873","29.949174"],["-90.114980","29.949180"],["-90.115040","29.949350"],["-90.115110","29.949490"],["-90.115154","29.949595"],["-90.115197","29.949700"],["-90.115241","29.949805"],["-90.115285","29.949910"],["-90.115329","29.950015"],["-90.115372","29.950120"],["-90.115416","29.950225"],["-90.115460","29.950330"],["-90.115507","29.950448"],["-90.115555","29.950565"],["-90.115602","29.950683"],["-90.115650","29.950800"],["-90.115720","29.950975"],["-90.115790","29.951150"],["-90.115738","29.951168"],["-90.115790","29.951150"],["-90.115810","29.951200"],["-90.115860","29.951300"],["-90.115920","29.951448"],["-90.115980","29.951595"],["-90.116040","29.951743"],["-90.116100","29.951890"],["-90.116155","29.952010"],["-90.116210","29.952130"],["-90.116260","29.952240"],["-90.116330","29.952400"],["-90.116400","29.952560"],["-90.116450","29.952650"],["-90.116520","29.952770"],["-90.116580","29.952850"],["-90.116645","29.952930"],["-90.116710","29.953010"],["-90.116810","29.953100"],["-90.116950","29.953220"],["-90.117060","29.953310"],["-90.116991","29.953378"],["-90.117060","29.953310"],["-90.117070","29.953320"],["-90.117140","29.953370"],["-90.117240","29.953440"],["-90.117330","29.953515"],["-90.117420","29.953590"],["-90.117510","29.953665"],["-90.117600","29.953740"],["-90.117720","29.953830"],["-90.117860","29.953940"],["-90.117970","29.954020"],["-90.118087","29.954118"],["-90.118205","29.954215"],["-90.118322","29.954313"],["-90.118440","29.954410"],["-90.118570","29.954515"],["-90.118700","29.954620"],["-90.118627","29.954690"],["-90.118700","29.954620"],["-90.118770","29.954680"],["-90.118864","29.954756"],["-90.118957","29.954833"],["-90.119051","29.954909"],["-90.119145","29.954985"],["-90.119239","29.955061"],["-90.119332","29.955138"],["-90.119426","29.955214"],["-90.119520","29.955290"],["-90.119680","29.955420"],["-90.119866","29.955445"],["-90.119982","29.955463"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.071868","29.965409"],["-90.070745","29.966658"],["-90.066986","29.970903"],["-90.066311","29.974042"],["-90.067245","29.975759"],["-90.068345","29.977602"],["-90.068901","29.978581"],["-90.069719","29.979938"],["-90.070799","29.981898"],["-90.071628","29.983255"],["-90.073086","29.985879"],["-90.074367","29.988288"],["-90.077617","29.993689"],["-90.079359","29.996763"],["-90.068531","29.969183"],["-90.119982","29.955463"],["-90.119104","29.954490"],["-90.117488","29.953205"],["-90.116245","29.950981"],["-90.115405","29.948983"],["-90.114980","29.948050"],["-90.114075","29.945868"],["-90.113466","29.944463"],["-90.112226","29.942718"],["-90.109748","29.941291"],["-90.108213","29.940423"],["-90.105936","29.939815"],["-90.103681","29.939977"],["-90.102286","29.940086"],["-90.099994","29.940266"],["-90.097570","29.940823"],["-90.096350","29.941289"],["-90.092862","29.943174"],["-90.091195","29.944088"],["-90.089989","29.944838"],["-90.088508","29.945883"],["-90.085301","29.944414"],["-90.083705","29.943511"],["-90.081748","29.942437"],["-90.075474","29.951945"],["-90.076903","29.945829"],["-90.066255","29.971699"],["-90.074706","29.954333"],["-90.080398","29.998641"],["-90.086881","29.945287"],["-90.074974","29.989151"],["-90.080326","29.943693"],["-90.079697","29.944541"],["-90.076215","29.948286"],["-90.080216","29.997750"],["-90.094546","29.942264"],["-90.075579","29.950548"],["-90.078740","29.995684"],["-90.070397","29.959116"],["-90.070267","29.961523"],["-90.071273","29.963222"],["-90.075645","29.990301"],["-90.073384","29.955849"]]},{"type":"LineString","coordinates":[["-90.119982","29.955463"],["-90.120040","29.955510"],["-90.120080","29.955470"],["-90.120090","29.955450"],["-90.120120","29.955410"],["-90.120010","29.955315"],["-90.119900","29.955220"],["-90.119740","29.955090"],["-90.119647","29.955015"],["-90.119555","29.954940"],["-90.119462","29.954865"],["-90.119370","29.954790"],["-90.119210","29.954665"],["-90.119050","29.954540"],["-90.119104","29.954490"],["-90.119050","29.954540"],["-90.118980","29.954480"],["-90.118900","29.954410"],["-90.118750","29.954285"],["-90.118600","29.954160"],["-90.118450","29.954035"],["-90.118300","29.953910"],["-90.118240","29.953870"],["-90.118180","29.953830"],["-90.118070","29.953740"],["-90.117960","29.953650"],["-90.117875","29.953575"],["-90.117790","29.953500"],["-90.117695","29.953440"],["-90.117600","29.953380"],["-90.117450","29.953290"],["-90.117430","29.953280"],["-90.117488","29.953205"],["-90.117430","29.953280"],["-90.117320","29.953210"],["-90.117250","29.953140"],["-90.117160","29.953060"],["-90.117070","29.952980"],["-90.116950","29.952860"],["-90.116880","29.952780"],["-90.116830","29.952710"],["-90.116780","29.952620"],["-90.116730","29.952530"],["-90.116650","29.952390"],["-90.116580","29.952210"],["-90.116560","29.952150"],["-90.116535","29.952050"],["-90.116510","29.951950"],["-90.116440","29.951790"],["-90.116385","29.951645"],["-90.116330","29.951500"],["-90.116285","29.951378"],["-90.116240","29.951255"],["-90.116195","29.951133"],["-90.116150","29.951010"],["-90.116245","29.950981"],["-90.116150","29.951010"],["-90.116130","29.950950"],["-90.116080","29.950840"],["-90.116015","29.950685"],["-90.115950","29.950530"],["-90.115885","29.950375"],["-90.115820","29.950220"],["-90.115765","29.950085"],["-90.115710","29.949950"],["-90.115670","29.949855"],["-90.115630","29.949760"],["-90.115590","29.949665"],["-90.115550","29.949570"],["-90.115490","29.949430"],["-90.115430","29.949290"],["-90.115370","29.949150"],["-90.115310","29.949010"],["-90.115405","29.948983"],["-90.115310","29.949010"],["-90.115300","29.948990"],["-90.115230","29.948810"],["-90.115157","29.948638"],["-90.115085","29.948465"],["-90.115012","29.948293"],["-90.114940","29.948120"],["-90.114980","29.948050"],["-90.114910","29.948070"],["-90.114870","29.947980"],["-90.114831","29.947889"],["-90.114792","29.947798"],["-90.114754","29.947706"],["-90.114715","29.947615"],["-90.114676","29.947524"],["-90.114637","29.947433"],["-90.114599","29.947341"],["-90.114560","29.947250"],["-90.114500","29.947110"],["-90.114435","29.946945"],["-90.114370","29.946780"],["-90.114340","29.946720"],["-90.114320","29.946670"],["-90.114290","29.946590"],["-90.114215","29.946420"],["-90.114140","29.946250"],["-90.114090","29.946150"],["-90.114040","29.946050"],["-90.113970","29.945880"],["-90.114075","29.945868"],["-90.113970","29.945880"],["-90.113920","29.945750"],["-90.113877","29.945641"],["-90.113835","29.945533"],["-90.113792","29.945424"],["-90.113750","29.945315"],["-90.113707","29.945206"],["-90.113665","29.945098"],["-90.113622","29.944989"],["-90.113580","29.944880"],["-90.113500","29.944710"],["-90.113445","29.944600"],["-90.113390","29.944490"],["-90.113466","29.944463"],["-90.113390","29.944490"],["-90.113350","29.944420"],["-90.113317","29.944325"],["-90.113285","29.944230"],["-90.113252","29.944135"],["-90.113220","29.944040"],["-90.113175","29.943920"],["-90.113130","29.943800"],["-90.113036","29.943668"],["-90.112943","29.943536"],["-90.112849","29.943404"],["-90.112755","29.943273"],["-90.112658","29.943195"],["-90.112561","29.943117"],["-90.112463","29.943039"],["-90.112366","29.942961"],["-90.112205","29.942845"],["-90.112226","29.942718"],["-90.112077","29.942775"],["-90.111913","29.942677"],["-90.111749","29.942579"],["-90.111586","29.942481"],["-90.111422","29.942382"],["-90.111254","29.942283"],["-90.111087","29.942184"],["-90.110919","29.942084"],["-90.110751","29.941985"],["-90.110580","29.941888"],["-90.110409","29.941790"],["-90.110283","29.941719"],["-90.110157","29.941647"],["-90.110031","29.941576"],["-90.109905","29.941504"],["-90.109760","29.941435"],["-90.109748","29.941291"],["-90.109629","29.941335"],["-90.109489","29.941251"],["-90.109350","29.941167"],["-90.109167","29.941065"],["-90.108985","29.940963"],["-90.108825","29.940868"],["-90.108666","29.940772"],["-90.108506","29.940677"],["-90.108347","29.940582"],["-90.108280","29.940502"],["-90.108213","29.940423"],["-90.108030","29.940405"],["-90.107893","29.940326"],["-90.107755","29.940248"],["-90.107618","29.940169"],["-90.107480","29.940090"],["-90.107400","29.940060"],["-90.107320","29.940030"],["-90.107280","29.940010"],["-90.107190","29.939980"],["-90.107020","29.939930"],["-90.106840","29.939900"],["-90.106730","29.939880"],["-90.106620","29.939870"],["-90.106580","29.939870"],["-90.106510","29.939860"],["-90.106390","29.939860"],["-90.106250","29.939860"],["-90.106230","29.939860"],["-90.106050","29.939870"],["-90.105940","29.939880"],["-90.105936","29.939815"],["-90.105940","29.939880"],["-90.105930","29.939880"],["-90.105790","29.939900"],["-90.105655","29.939911"],["-90.105520","29.939923"],["-90.105385","29.939934"],["-90.105250","29.939945"],["-90.105115","29.939956"],["-90.104980","29.939968"],["-90.104845","29.939979"],["-90.104710","29.939990"],["-90.104595","29.939995"],["-90.104480","29.940000"],["-90.104365","29.940010"],["-90.104250","29.940020"],["-90.104070","29.940040"],["-90.103860","29.940050"],["-90.103690","29.940070"],["-90.103681","29.939977"],["-90.103690","29.940070"],["-90.103560","29.940070"],["-90.103440","29.940080"],["-90.103320","29.940090"],["-90.103195","29.940100"],["-90.103070","29.940110"],["-90.102943","29.940120"],["-90.102815","29.940130"],["-90.102688","29.940140"],["-90.102560","29.940150"],["-90.102425","29.940160"],["-90.102290","29.940170"],["-90.102286","29.940086"],["-90.102290","29.940170"],["-90.102250","29.940170"],["-90.102190","29.940170"],["-90.102000","29.940190"],["-90.101780","29.940200"],["-90.101603","29.940215"],["-90.101425","29.940230"],["-90.101248","29.940245"],["-90.101070","29.940260"],["-90.100936","29.940270"],["-90.100803","29.940280"],["-90.100669","29.940290"],["-90.100535","29.940300"],["-90.100401","29.940310"],["-90.100268","29.940320"],["-90.100134","29.940330"],["-90.100000","29.940340"],["-90.099994","29.940266"],["-90.100000","29.940340"],["-90.099870","29.940350"],["-90.099745","29.940360"],["-90.099620","29.940370"],["-90.099495","29.940380"],["-90.099370","29.940390"],["-90.099245","29.940400"],["-90.099120","29.940410"],["-90.098995","29.940420"],["-90.098870","29.940430"],["-90.098700","29.940450"],["-90.098540","29.940480"],["-90.098430","29.940515"],["-90.098320","29.940550"],["-90.098210","29.940585"],["-90.098100","29.940620"],["-90.097910","29.940690"],["-90.097740","29.940755"],["-90.097570","29.940820"],["-90.097570","29.940823"],["-90.097580","29.940840"],["-90.097460","29.940880"],["-90.097353","29.940923"],["-90.097245","29.940965"],["-90.097138","29.941008"],["-90.097030","29.941050"],["-90.096870","29.941110"],["-90.096745","29.941160"],["-90.096620","29.941210"],["-90.096495","29.941260"],["-90.096370","29.941310"],["-90.096360","29.941310"],["-90.096350","29.941289"],["-90.096360","29.941310"],["-90.096250","29.941360"],["-90.096080","29.941460"],["-90.095945","29.941540"],["-90.095810","29.941620"],["-90.095660","29.941700"],["-90.095565","29.941753"],["-90.095470","29.941805"],["-90.095375","29.941858"],["-90.095280","29.941910"],["-90.095120","29.942000"],["-90.094955","29.942095"],["-90.094790","29.942190"],["-90.094685","29.942250"],["-90.094580","29.942310"],["-90.094546","29.942264"],["-90.094580","29.942310"],["-90.094470","29.942370"],["-90.094353","29.942435"],["-90.094235","29.942500"],["-90.094118","29.942565"],["-90.094000","29.942630"],["-90.093815","29.942735"],["-90.093630","29.942840"],["-90.093450","29.942940"],["-90.093270","29.943040"],["-90.093090","29.943140"],["-90.092976","29.943157"],["-90.092862","29.943174"],["-90.092900","29.943230"],["-90.092800","29.943290"],["-90.092698","29.943346"],["-90.092595","29.943403"],["-90.092493","29.943459"],["-90.092390","29.943515"],["-90.092288","29.943571"],["-90.092185","29.943628"],["-90.092083","29.943684"],["-90.091980","29.943740"],["-90.091798","29.943845"],["-90.091615","29.943950"],["-90.091433","29.944055"],["-90.091250","29.944160"],["-90.091195","29.944088"],["-90.091250","29.944160"],["-90.091170","29.944200"],["-90.091018","29.944290"],["-90.090865","29.944380"],["-90.090713","29.944470"],["-90.090560","29.944560"],["-90.090428","29.944643"],["-90.090295","29.944725"],["-90.090163","29.944808"],["-90.090030","29.944890"],["-90.089989","29.944838"],["-90.090030","29.944890"],["-90.089940","29.944950"],["-90.089778","29.945060"],["-90.089615","29.945170"],["-90.089453","29.945280"],["-90.089290","29.945390"],["-90.089135","29.945485"],["-90.088980","29.945580"],["-90.088860","29.945670"],["-90.088740","29.945760"],["-90.088680","29.945810"],["-90.088570","29.945930"],["-90.088508","29.945883"],["-90.088570","29.945930"],["-90.088500","29.945990"],["-90.088430","29.946090"],["-90.088360","29.946190"],["-90.088259","29.946134"],["-90.088157","29.946078"],["-90.088056","29.946021"],["-90.087955","29.945965"],["-90.087854","29.945909"],["-90.087752","29.945853"],["-90.087651","29.945796"],["-90.087550","29.945740"],["-90.087372","29.945643"],["-90.087195","29.945545"],["-90.087017","29.945448"],["-90.086840","29.945350"],["-90.086881","29.945287"],["-90.086840","29.945350"],["-90.086770","29.945310"],["-90.086670","29.945254"],["-90.086570","29.945198"],["-90.086470","29.945141"],["-90.086370","29.945085"],["-90.086270","29.945029"],["-90.086170","29.944973"],["-90.086070","29.944916"],["-90.085970","29.944860"],["-90.085852","29.944795"],["-90.085735","29.944730"],["-90.085617","29.944665"],["-90.085500","29.944600"],["-90.085380","29.944535"],["-90.085260","29.944470"],["-90.085301","29.944414"],["-90.085260","29.944470"],["-90.085170","29.944420"],["-90.085072","29.944364"],["-90.084975","29.944308"],["-90.084877","29.944251"],["-90.084780","29.944195"],["-90.084682","29.944139"],["-90.084585","29.944083"],["-90.084487","29.944026"],["-90.084390","29.943970"],["-90.084207","29.943870"],["-90.084025","29.943770"],["-90.083842","29.943670"],["-90.083660","29.943570"],["-90.083705","29.943511"],["-90.083660","29.943570"],["-90.083600","29.943530"],["-90.083481","29.943464"],["-90.083362","29.943398"],["-90.083244","29.943331"],["-90.083125","29.943265"],["-90.083006","29.943199"],["-90.082887","29.943133"],["-90.082769","29.943066"],["-90.082650","29.943000"],["-90.082590","29.942960"],["-90.082440","29.942870"],["-90.082290","29.942785"],["-90.082140","29.942700"],["-90.082037","29.942643"],["-90.081935","29.942585"],["-90.081832","29.942528"],["-90.081730","29.942470"],["-90.081748","29.942437"],["-90.081730","29.942470"],["-90.081620","29.942410"],["-90.081520","29.942350"],["-90.081420","29.942290"],["-90.081360","29.942380"],["-90.081300","29.942470"],["-90.081220","29.942595"],["-90.081140","29.942720"],["-90.081020","29.942880"],["-90.080900","29.943040"],["-90.080860","29.943110"],["-90.080745","29.943265"],["-90.080630","29.943420"],["-90.080540","29.943535"],["-90.080450","29.943650"],["-90.080380","29.943730"],["-90.080326","29.943693"],["-90.080380","29.943730"],["-90.080310","29.943810"],["-90.080240","29.943905"],["-90.080170","29.944000"],["-90.080100","29.944095"],["-90.080030","29.944190"],["-90.079960","29.944285"],["-90.079890","29.944380"],["-90.079820","29.944475"],["-90.079750","29.944570"],["-90.079697","29.944541"],["-90.079750","29.944570"],["-90.079700","29.944640"],["-90.079610","29.944780"],["-90.079530","29.944870"],["-90.079460","29.944920"],["-90.079410","29.944950"],["-90.079340","29.944970"],["-90.079300","29.944980"],["-90.079190","29.944990"],["-90.079100","29.945000"],["-90.078920","29.944900"],["-90.078820","29.944850"],["-90.078790","29.944830"],["-90.078740","29.944810"],["-90.078670","29.944790"],["-90.078600","29.944780"],["-90.078510","29.944770"],["-90.078470","29.944770"],["-90.078430","29.944770"],["-90.078390","29.944770"],["-90.078260","29.944770"],["-90.078180","29.944770"],["-90.078120","29.944780"],["-90.078060","29.944800"],["-90.078000","29.944810"],["-90.077980","29.944820"],["-90.077850","29.944910"],["-90.077720","29.945000"],["-90.077630","29.945060"],["-90.077610","29.945080"],["-90.077500","29.945190"],["-90.077430","29.945260"],["-90.077335","29.945385"],["-90.077240","29.945510"],["-90.077178","29.945594"],["-90.077117","29.945679"],["-90.077055","29.945763"],["-90.076994","29.945847"],["-90.076903","29.945829"],["-90.076928","29.945932"],["-90.076879","29.946054"],["-90.076829","29.946176"],["-90.076780","29.946298"],["-90.076730","29.946420"],["-90.076700","29.946550"],["-90.076675","29.946715"],["-90.076650","29.946880"],["-90.076610","29.947060"],["-90.076595","29.947160"],["-90.076580","29.947260"],["-90.076530","29.947425"],["-90.076480","29.947590"],["-90.076448","29.947708"],["-90.076415","29.947825"],["-90.076383","29.947943"],["-90.076350","29.948060"],["-90.076310","29.948180"],["-90.076270","29.948300"],["-90.076215","29.948286"],["-90.076270","29.948300"],["-90.076240","29.948400"],["-90.076210","29.948490"],["-90.076170","29.948648"],["-90.076130","29.948805"],["-90.076090","29.948963"],["-90.076050","29.949120"],["-90.076005","29.949290"],["-90.075960","29.949460"],["-90.075913","29.949625"],["-90.075865","29.949790"],["-90.075818","29.949955"],["-90.075770","29.950120"],["-90.075738","29.950230"],["-90.075705","29.950340"],["-90.075673","29.950450"],["-90.075640","29.950560"],["-90.075579","29.950548"],["-90.075640","29.950560"],["-90.075600","29.950680"],["-90.075550","29.950810"],["-90.075540","29.951000"],["-90.075530","29.951080"],["-90.075530","29.951150"],["-90.075530","29.951240"],["-90.075530","29.951290"],["-90.075540","29.951330"],["-90.075550","29.951410"],["-90.075570","29.951560"],["-90.075570","29.951620"],["-90.075570","29.951710"],["-90.075570","29.951780"],["-90.075570","29.951830"],["-90.075570","29.951870"],["-90.075570","29.951910"],["-90.075560","29.951950"],["-90.075474","29.951945"],["-90.075560","29.951950"],["-90.075560","29.951960"],["-90.075540","29.952110"],["-90.075510","29.952260"],["-90.075480","29.952370"],["-90.075450","29.952480"],["-90.075410","29.952595"],["-90.075370","29.952710"],["-90.075340","29.952820"],["-90.075310","29.952930"],["-90.075265","29.953080"],["-90.075220","29.953230"],["-90.075180","29.953350"],["-90.075160","29.953430"],["-90.075150","29.953480"],["-90.075118","29.953590"],["-90.075085","29.953700"],["-90.075053","29.953810"],["-90.075020","29.953920"],["-90.074970","29.954040"],["-90.074940","29.954130"],["-90.074900","29.954210"],["-90.074850","29.954290"],["-90.074780","29.954380"],["-90.074706","29.954333"],["-90.074780","29.954380"],["-90.074750","29.954410"],["-90.074700","29.954470"],["-90.074600","29.954570"],["-90.074550","29.954610"],["-90.074490","29.954670"],["-90.074420","29.954750"],["-90.074350","29.954830"],["-90.074280","29.954910"],["-90.074195","29.954995"],["-90.074110","29.955080"],["-90.073980","29.955220"],["-90.073848","29.955373"],["-90.073715","29.955525"],["-90.073583","29.955678"],["-90.073450","29.955830"],["-90.073410","29.955870"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072373","29.957060"],["-90.072285","29.957160"],["-90.072198","29.957260"],["-90.072110","29.957360"],["-90.071995","29.957485"],["-90.071880","29.957610"],["-90.071797","29.957551"],["-90.071880","29.957610"],["-90.071780","29.957720"],["-90.071655","29.957860"],["-90.071530","29.958000"],["-90.071405","29.958140"],["-90.071280","29.958280"],["-90.071170","29.958405"],["-90.071060","29.958530"],["-90.070968","29.958635"],["-90.070875","29.958740"],["-90.070783","29.958845"],["-90.070690","29.958950"],["-90.070590","29.959065"],["-90.070490","29.959180"],["-90.070397","29.959116"],["-90.070490","29.959180"],["-90.070400","29.959270"],["-90.070315","29.959365"],["-90.070230","29.959460"],["-90.070120","29.959600"],["-90.070040","29.959690"],["-90.069970","29.959790"],["-90.069950","29.959820"],["-90.069910","29.959890"],["-90.069890","29.959940"],["-90.069880","29.959960"],["-90.069870","29.959990"],["-90.069860","29.960020"],["-90.069850","29.960090"],["-90.069830","29.960180"],["-90.069820","29.960240"],["-90.069790","29.960310"],["-90.069790","29.960410"],["-90.069800","29.960480"],["-90.069810","29.960540"],["-90.069820","29.960620"],["-90.069830","29.960670"],["-90.069850","29.960730"],["-90.069860","29.960780"],["-90.069880","29.960830"],["-90.069930","29.960940"],["-90.069980","29.961030"],["-90.070030","29.961100"],["-90.070070","29.961160"],["-90.070120","29.961210"],["-90.070230","29.961320"],["-90.070280","29.961370"],["-90.070267","29.961523"],["-90.070340","29.961600"],["-90.070460","29.961510"],["-90.070500","29.961550"],["-90.070540","29.961610"],["-90.070570","29.961640"],["-90.070640","29.961710"],["-90.070670","29.961760"],["-90.070690","29.961780"],["-90.070700","29.961810"],["-90.070720","29.961840"],["-90.070750","29.961870"],["-90.070760","29.961900"],["-90.070790","29.961950"],["-90.070800","29.961980"],["-90.070820","29.962020"],["-90.070860","29.962200"],["-90.070895","29.962310"],["-90.070930","29.962420"],["-90.070970","29.962550"],["-90.071020","29.962700"],["-90.071050","29.962760"],["-90.071080","29.962840"],["-90.071110","29.962890"],["-90.071160","29.962960"],["-90.071190","29.963000"],["-90.071220","29.963040"],["-90.071240","29.963060"],["-90.071250","29.963090"],["-90.071390","29.963190"],["-90.071330","29.963260"],["-90.071273","29.963222"],["-90.071330","29.963260"],["-90.071390","29.963190"],["-90.071535","29.963290"],["-90.071680","29.963390"],["-90.071800","29.963473"],["-90.071920","29.963555"],["-90.072040","29.963638"],["-90.072160","29.963720"],["-90.072256","29.963785"],["-90.072352","29.963850"],["-90.072449","29.963915"],["-90.072545","29.963980"],["-90.072641","29.964045"],["-90.072737","29.964110"],["-90.072834","29.964175"],["-90.072930","29.964240"],["-90.072840","29.964350"],["-90.072750","29.964460"],["-90.072660","29.964570"],["-90.072570","29.964680"],["-90.072440","29.964820"],["-90.072310","29.964960"],["-90.072200","29.965080"],["-90.072090","29.965200"],["-90.071990","29.965310"],["-90.071890","29.965420"],["-90.071868","29.965409"],["-90.071890","29.965420"],["-90.071840","29.965480"],["-90.071720","29.965625"],["-90.071600","29.965770"],["-90.071580","29.965780"],["-90.071560","29.965800"],["-90.071530","29.965830"],["-90.071450","29.965910"],["-90.071360","29.966000"],["-90.071340","29.966010"],["-90.071260","29.966100"],["-90.071180","29.966190"],["-90.071100","29.966320"],["-90.071000","29.966430"],["-90.070900","29.966540"],["-90.070780","29.966680"],["-90.070745","29.966658"],["-90.070780","29.966680"],["-90.070740","29.966720"],["-90.070653","29.966815"],["-90.070565","29.966910"],["-90.070478","29.967005"],["-90.070390","29.967100"],["-90.070320","29.967190"],["-90.070220","29.967305"],["-90.070120","29.967420"],["-90.070030","29.967515"],["-90.069940","29.967610"],["-90.069840","29.967730"],["-90.069770","29.967815"],["-90.069700","29.967900"],["-90.069690","29.967900"],["-90.069620","29.967975"],["-90.069550","29.968050"],["-90.069510","29.968100"],["-90.069490","29.968120"],["-90.069450","29.968160"],["-90.069410","29.968190"],["-90.069400","29.968200"],["-90.069390","29.968200"],["-90.069360","29.968210"],["-90.069275","29.968310"],["-90.069190","29.968410"],["-90.069105","29.968510"],["-90.069020","29.968610"],["-90.068940","29.968705"],["-90.068860","29.968800"],["-90.068778","29.968895"],["-90.068695","29.968990"],["-90.068613","29.969085"],["-90.068531","29.969183"],["-90.068530","29.969180"],["-90.068500","29.969210"],["-90.068390","29.969330"],["-90.068315","29.969415"],["-90.068240","29.969500"],["-90.068170","29.969580"],["-90.068100","29.969660"],["-90.068080","29.969690"],["-90.068030","29.969740"],["-90.067970","29.969810"],["-90.067950","29.969830"],["-90.067890","29.969900"],["-90.067795","29.970010"],["-90.067700","29.970120"],["-90.067618","29.970213"],["-90.067535","29.970305"],["-90.067453","29.970398"],["-90.067370","29.970490"],["-90.067275","29.970595"],["-90.067180","29.970700"],["-90.067085","29.970805"],["-90.066980","29.970930"],["-90.066986","29.970903"],["-90.066980","29.970930"],["-90.066893","29.971028"],["-90.066805","29.971125"],["-90.066718","29.971223"],["-90.066630","29.971320"],["-90.066543","29.971418"],["-90.066455","29.971515"],["-90.066368","29.971613"],["-90.066255","29.971699"],["-90.066156","29.971811"],["-90.066058","29.971923"],["-90.065959","29.972036"],["-90.065861","29.972148"],["-90.065762","29.972260"],["-90.065664","29.972372"],["-90.065565","29.972485"],["-90.065467","29.972597"],["-90.065566","29.972763"],["-90.065665","29.972929"],["-90.065764","29.973095"],["-90.065863","29.973261"],["-90.065962","29.973427"],["-90.066062","29.973593"],["-90.066161","29.973759"],["-90.066260","29.973925"],["-90.066330","29.974040"],["-90.066311","29.974042"],["-90.066330","29.974040"],["-90.066350","29.974080"],["-90.066402","29.974178"],["-90.066455","29.974275"],["-90.066507","29.974373"],["-90.066560","29.974470"],["-90.066630","29.974625"],["-90.066700","29.974780"],["-90.066765","29.974900"],["-90.066830","29.975020"],["-90.066892","29.975125"],["-90.066955","29.975230"],["-90.067017","29.975335"],["-90.067080","29.975440"],["-90.067175","29.975600"],["-90.067270","29.975760"],["-90.067245","29.975759"],["-90.067270","29.975760"],["-90.067345","29.975880"],["-90.067420","29.976000"],["-90.067470","29.976080"],["-90.067570","29.976220"],["-90.067610","29.976280"],["-90.067680","29.976400"],["-90.067750","29.976520"],["-90.067770","29.976580"],["-90.067830","29.976690"],["-90.067930","29.976830"],["-90.067970","29.976890"],["-90.068020","29.976990"],["-90.068030","29.977010"],["-90.068080","29.977100"],["-90.068100","29.977130"],["-90.068160","29.977235"],["-90.068220","29.977340"],["-90.068310","29.977500"],["-90.068360","29.977580"],["-90.068345","29.977602"],["-90.068360","29.977600"],["-90.068380","29.977630"],["-90.068470","29.977785"],["-90.068560","29.977940"],["-90.068650","29.978095"],["-90.068740","29.978250"],["-90.068830","29.978410"],["-90.068880","29.978500"],["-90.068930","29.978590"],["-90.068901","29.978581"],["-90.068940","29.978590"],["-90.069040","29.978760"],["-90.069070","29.978830"],["-90.069090","29.978860"],["-90.069180","29.979000"],["-90.069200","29.979050"],["-90.069260","29.979140"],["-90.069350","29.979305"],["-90.069440","29.979470"],["-90.069490","29.979540"],["-90.069547","29.979640"],["-90.069605","29.979740"],["-90.069662","29.979840"],["-90.069720","29.979940"],["-90.069719","29.979938"],["-90.069720","29.979940"],["-90.069740","29.979990"],["-90.069830","29.980130"],["-90.069882","29.980220"],["-90.069935","29.980310"],["-90.069987","29.980400"],["-90.070040","29.980490"],["-90.070107","29.980610"],["-90.070175","29.980730"],["-90.070242","29.980850"],["-90.070310","29.980970"],["-90.070370","29.981075"],["-90.070430","29.981180"],["-90.070490","29.981285"],["-90.070550","29.981390"],["-90.070610","29.981495"],["-90.070670","29.981600"],["-90.070730","29.981705"],["-90.070790","29.981810"],["-90.070830","29.981890"],["-90.070799","29.981898"],["-90.070830","29.981890"],["-90.070870","29.981950"],["-90.070935","29.982070"],["-90.071000","29.982190"],["-90.071060","29.982295"],["-90.071120","29.982400"],["-90.071140","29.982430"],["-90.071180","29.982490"],["-90.071200","29.982530"],["-90.071262","29.982633"],["-90.071325","29.982735"],["-90.071387","29.982838"],["-90.071450","29.982940"],["-90.071490","29.983000"],["-90.071560","29.983125"],["-90.071630","29.983250"],["-90.071628","29.983255"],["-90.071630","29.983250"],["-90.071650","29.983290"],["-90.071770","29.983440"],["-90.071817","29.983533"],["-90.071865","29.983625"],["-90.071912","29.983718"],["-90.071960","29.983810"],["-90.072020","29.983920"],["-90.072070","29.984040"],["-90.072135","29.984155"],["-90.072200","29.984270"],["-90.072290","29.984430"],["-90.072357","29.984550"],["-90.072425","29.984670"],["-90.072492","29.984790"],["-90.072560","29.984910"],["-90.072610","29.985000"],["-90.072660","29.985088"],["-90.072710","29.985175"],["-90.072760","29.985263"],["-90.072810","29.985350"],["-90.072880","29.985470"],["-90.072950","29.985590"],["-90.073020","29.985710"],["-90.073090","29.985830"],["-90.073110","29.985870"],["-90.073086","29.985879"],["-90.073110","29.985870"],["-90.073130","29.985900"],["-90.073195","29.986010"],["-90.073260","29.986120"],["-90.073325","29.986230"],["-90.073390","29.986340"],["-90.073470","29.986490"],["-90.073500","29.986540"],["-90.073600","29.986700"],["-90.073700","29.986870"],["-90.073760","29.986980"],["-90.073820","29.987090"],["-90.073880","29.987200"],["-90.073940","29.987310"],["-90.074000","29.987410"],["-90.074060","29.987510"],["-90.074110","29.987590"],["-90.074140","29.987650"],["-90.074180","29.987720"],["-90.074230","29.987860"],["-90.074285","29.988000"],["-90.074340","29.988140"],["-90.074380","29.988270"],["-90.074390","29.988280"],["-90.074367","29.988288"],["-90.074390","29.988280"],["-90.074440","29.988420"],["-90.074510","29.988530"],["-90.074610","29.988670"],["-90.074730","29.988770"],["-90.074800","29.988850"],["-90.074840","29.988890"],["-90.074880","29.988950"],["-90.074910","29.989000"],["-90.074940","29.989050"],["-90.074990","29.989140"],["-90.074974","29.989151"],["-90.074990","29.989140"],["-90.075030","29.989210"],["-90.075130","29.989380"],["-90.075230","29.989550"],["-90.075330","29.989720"],["-90.075400","29.989843"],["-90.075470","29.989965"],["-90.075540","29.990088"],["-90.075610","29.990210"],["-90.075650","29.990280"],["-90.075660","29.990290"],["-90.075645","29.990301"],["-90.075660","29.990290"],["-90.075690","29.990340"],["-90.075730","29.990420"],["-90.075770","29.990480"],["-90.075790","29.990510"],["-90.075800","29.990540"],["-90.075870","29.990655"],["-90.075940","29.990770"],["-90.076020","29.990905"],["-90.076100","29.991040"],["-90.076120","29.991060"],["-90.076170","29.991150"],["-90.076190","29.991190"],["-90.076230","29.991260"],["-90.076270","29.991340"],["-90.076300","29.991400"],["-90.076400","29.991570"],["-90.076460","29.991670"],["-90.076460","29.991680"],["-90.076520","29.991780"],["-90.076580","29.991880"],["-90.076620","29.991950"],["-90.076690","29.992070"],["-90.076690","29.992080"],["-90.076790","29.992250"],["-90.076810","29.992280"],["-90.076840","29.992330"],["-90.076900","29.992440"],["-90.076950","29.992540"],["-90.076990","29.992600"],["-90.077090","29.992760"],["-90.077100","29.992780"],["-90.077110","29.992800"],["-90.077120","29.992820"],["-90.077130","29.992830"],["-90.077150","29.992870"],["-90.077210","29.992970"],["-90.077295","29.993120"],["-90.077380","29.993270"],["-90.077470","29.993420"],["-90.077545","29.993555"],["-90.077620","29.993690"],["-90.077617","29.993689"],["-90.077620","29.993690"],["-90.077650","29.993740"],["-90.077702","29.993838"],["-90.077755","29.993935"],["-90.077807","29.994033"],["-90.077860","29.994130"],["-90.077935","29.994263"],["-90.078010","29.994395"],["-90.078085","29.994528"],["-90.078160","29.994660"],["-90.078220","29.994750"],["-90.078280","29.994860"],["-90.078380","29.995030"],["-90.078390","29.995050"],["-90.078450","29.995160"],["-90.078460","29.995180"],["-90.078540","29.995320"],["-90.078580","29.995400"],["-90.078660","29.995530"],["-90.078740","29.995680"],["-90.078740","29.995684"],["-90.078740","29.995680"],["-90.078770","29.995730"],["-90.078825","29.995825"],["-90.078880","29.995920"],["-90.078960","29.996060"],["-90.079000","29.996130"],["-90.079100","29.996300"],["-90.079180","29.996440"],["-90.079240","29.996550"],["-90.079310","29.996650"],["-90.079359","29.996763"],["-90.079370","29.996760"],["-90.079427","29.996858"],["-90.079485","29.996955"],["-90.079542","29.997053"],["-90.079600","29.997150"],["-90.079655","29.997260"],["-90.079710","29.997370"],["-90.079805","29.997535"],["-90.079900","29.997700"],["-90.079990","29.997860"],["-90.080080","29.998020"],["-90.080142","29.998128"],["-90.080205","29.998233"],["-90.080268","29.998338"],["-90.080331","29.998444"],["-90.080394","29.998549"],["-90.080398","29.998641"],["-90.080480","29.998717"],["-90.080533","29.998810"],["-90.080586","29.998904"],["-90.080638","29.998997"],["-90.080691","29.999090"],["-90.080744","29.999183"],["-90.080797","29.999276"],["-90.080850","29.999369"],["-90.080903","29.999462"],["-90.080955","29.999555"],["-90.081008","29.999648"],["-90.081061","29.999741"],["-90.081114","29.999834"],["-90.081167","29.999927"],["-90.081219","30.000020"],["-90.081272","30.000113"],["-90.081325","30.000206"],["-90.081389","30.000319"],["-90.081454","30.000432"],["-90.081518","30.000544"],["-90.081583","30.000657"],["-90.081717","30.000641"],["-90.081851","30.000625"],["-90.081756","30.000471"],["-90.081660","30.000318"],["-90.081565","30.000165"],["-90.081470","30.000011"],["-90.081375","29.999858"],["-90.081279","29.999705"],["-90.081184","29.999551"],["-90.081089","29.999398"],["-90.081031","29.999299"],["-90.080974","29.999201"],["-90.080916","29.999102"],["-90.080858","29.999003"],["-90.080801","29.998905"],["-90.080743","29.998806"],["-90.080685","29.998707"],["-90.080628","29.998608"],["-90.080562","29.998506"],["-90.080497","29.998404"],["-90.080432","29.998302"],["-90.080367","29.998200"],["-90.080270","29.998040"],["-90.080200","29.997915"],["-90.080216","29.997750"]]}]}},{"type":"Feature","properties":{"route_id":"52","agency_id":"1","route_short_name":"52","route_long_name":"Paris-Broadmoor","route_type":"3","route_color":"#99aad1","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.068741","29.969606"],["-90.075585","30.019995"],["-90.075269","30.016013"],["-90.075096","30.013347"],["-90.074910","30.011734"],["-90.074738","30.009122"],["-90.066850","30.023875"],["-90.074465","30.005985"],["-90.074247","30.003825"],["-90.074012","30.000184"],["-90.073844","29.998167"],["-90.073687","29.996152"],["-90.073524","29.994098"],["-90.073365","29.992070"],["-90.073153","29.989470"],["-90.073017","29.988016"],["-90.072785","29.985935"],["-90.070999","29.981741"],["-90.069695","29.979476"],["-90.069133","29.978516"],["-90.068521","29.977547"],["-90.067473","29.975619"],["-90.067279","29.971217"],["-90.070708","29.967388"],["-90.072160","29.965750"],["-90.074568","30.007005"],["-90.062033","30.028610"],["-90.061763","30.027610"],["-90.061566","30.025278"],["-90.063452","30.024810"],["-90.065782","30.023952"],["-90.068479","30.023786"],["-90.071807","30.023203"],["-90.073307","30.022403"],["-90.111257","29.964300"],["-90.065412","30.027973"],["-90.086519","29.945464"],["-90.066045","29.972989"],["-90.076537","29.948723"],["-90.077250","29.946349"],["-90.080535","29.944007"],["-90.081487","29.942673"],["-90.083392","29.943703"],["-90.084957","29.944558"],["-90.097515","29.946619"],["-90.100456","29.950804"],["-90.101226","29.952435"],["-90.102550","29.954814"],["-90.088671","29.946690"],["-90.090222","29.947545"],["-90.092012","29.948584"],["-90.075911","29.951058"],["-90.113558","29.962168"],["-90.110070","29.965395"],["-90.075663","30.020877"],["-90.075482","30.018463"],["-90.072097","29.983649"],["-90.088120","29.946386"],["-90.074185","30.002240"],["-90.104563","29.957002"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-90.098953","29.947711"],["-90.075280","29.954073"],["-90.110059","29.958587"],["-90.108071","29.957489"],["-90.111631","29.959508"],["-90.095894","29.947582"]]},{"type":"LineString","coordinates":[["-90.065412","30.027973"],["-90.065370","30.027980"],["-90.065370","30.027970"],["-90.065350","30.027950"],["-90.065330","30.027930"],["-90.065290","30.027900"],["-90.065250","30.027890"],["-90.065210","30.027890"],["-90.065190","30.027890"],["-90.065160","30.027890"],["-90.065130","30.027900"],["-90.064930","30.027950"],["-90.064808","30.027980"],["-90.064685","30.028010"],["-90.064563","30.028040"],["-90.064440","30.028070"],["-90.064330","30.028100"],["-90.064230","30.028130"],["-90.064060","30.028170"],["-90.063890","30.028210"],["-90.063710","30.028253"],["-90.063530","30.028295"],["-90.063350","30.028338"],["-90.063170","30.028380"],["-90.062975","30.028440"],["-90.062780","30.028500"],["-90.062760","30.028500"],["-90.062583","30.028543"],["-90.062405","30.028585"],["-90.062228","30.028628"],["-90.062033","30.028610"],["-90.062060","30.028690"],["-90.061970","30.028710"],["-90.061800","30.028750"],["-90.061789","30.028608"],["-90.061777","30.028465"],["-90.061766","30.028323"],["-90.061755","30.028180"],["-90.061744","30.028038"],["-90.061732","30.027895"],["-90.061721","30.027753"],["-90.061763","30.027610"],["-90.061717","30.027435"],["-90.061670","30.027259"],["-90.061649","30.027180"],["-90.061633","30.027001"],["-90.061618","30.026821"],["-90.061603","30.026642"],["-90.061588","30.026462"],["-90.061590","30.026315"],["-90.061580","30.026170"],["-90.061570","30.026059"],["-90.061560","30.025948"],["-90.061550","30.025836"],["-90.061540","30.025725"],["-90.061530","30.025614"],["-90.061520","30.025503"],["-90.061510","30.025391"],["-90.061560","30.025220"],["-90.061566","30.025278"],["-90.061560","30.025220"],["-90.061755","30.025205"],["-90.061950","30.025190"],["-90.062070","30.025175"],["-90.062190","30.025160"],["-90.062400","30.025120"],["-90.062520","30.025100"],["-90.062730","30.025040"],["-90.062920","30.024980"],["-90.063070","30.024930"],["-90.063220","30.024880"],["-90.063230","30.024870"],["-90.063335","30.024830"],["-90.063440","30.024790"],["-90.063452","30.024810"],["-90.063440","30.024790"],["-90.063530","30.024760"],["-90.063620","30.024710"],["-90.063660","30.024690"],["-90.063760","30.024640"],["-90.063860","30.024590"],["-90.063975","30.024530"],["-90.064090","30.024470"],["-90.064270","30.024375"],["-90.064450","30.024280"],["-90.064500","30.024260"],["-90.064590","30.024220"],["-90.064620","30.024210"],["-90.064720","30.024160"],["-90.064830","30.024120"],["-90.065000","30.024060"],["-90.065170","30.024000"],["-90.065310","30.023970"],["-90.065510","30.023930"],["-90.065570","30.023920"],["-90.065770","30.023890"],["-90.065782","30.023952"],["-90.065770","30.023890"],["-90.065870","30.023880"],["-90.066010","30.023870"],["-90.066080","30.023860"],["-90.066270","30.023845"],["-90.066460","30.023830"],["-90.066650","30.023815"],["-90.066840","30.023800"],["-90.066850","30.023875"],["-90.066840","30.023800"],["-90.066940","30.023800"],["-90.067160","30.023785"],["-90.067380","30.023770"],["-90.067585","30.023755"],["-90.067790","30.023740"],["-90.067908","30.023738"],["-90.068025","30.023735"],["-90.068143","30.023733"],["-90.068260","30.023730"],["-90.068470","30.023720"],["-90.068479","30.023786"],["-90.068470","30.023720"],["-90.068620","30.023710"],["-90.068775","30.023700"],["-90.068930","30.023690"],["-90.069145","30.023670"],["-90.069360","30.023650"],["-90.069490","30.023640"],["-90.069620","30.023630"],["-90.069770","30.023610"],["-90.069915","30.023585"],["-90.070060","30.023560"],["-90.070250","30.023530"],["-90.070360","30.023510"],["-90.070470","30.023490"],["-90.070510","30.023480"],["-90.070580","30.023460"],["-90.070770","30.023415"],["-90.070960","30.023370"],["-90.071030","30.023350"],["-90.071175","30.023310"],["-90.071320","30.023270"],["-90.071435","30.023240"],["-90.071550","30.023210"],["-90.071660","30.023170"],["-90.071770","30.023130"],["-90.071807","30.023203"],["-90.071770","30.023130"],["-90.071870","30.023090"],["-90.071970","30.023043"],["-90.072070","30.022995"],["-90.072170","30.022948"],["-90.072270","30.022900"],["-90.072370","30.022853"],["-90.072470","30.022805"],["-90.072570","30.022758"],["-90.072670","30.022710"],["-90.072805","30.022630"],["-90.072940","30.022550"],["-90.073110","30.022455"],["-90.073280","30.022360"],["-90.073307","30.022403"],["-90.073280","30.022360"],["-90.073380","30.022310"],["-90.073540","30.022210"],["-90.073695","30.022105"],["-90.073850","30.022000"],["-90.073975","30.021905"],["-90.074100","30.021810"],["-90.074215","30.021730"],["-90.074330","30.021650"],["-90.074435","30.021575"],["-90.074540","30.021500"],["-90.074670","30.021425"],["-90.074800","30.021350"],["-90.074890","30.021320"],["-90.074980","30.021300"],["-90.075050","30.021290"],["-90.075130","30.021280"],["-90.075220","30.021270"],["-90.075370","30.021260"],["-90.075495","30.021245"],["-90.075620","30.021230"],["-90.075600","30.021050"],["-90.075580","30.020860"],["-90.075663","30.020877"],["-90.075580","30.020860"],["-90.075575","30.020763"],["-90.075570","30.020665"],["-90.075565","30.020568"],["-90.075560","30.020470"],["-90.075545","30.020300"],["-90.075530","30.020130"],["-90.075490","30.019960"],["-90.075580","30.019950"],["-90.075585","30.019995"],["-90.075580","30.019950"],["-90.075490","30.019960"],["-90.075483","30.019863"],["-90.075476","30.019766"],["-90.075469","30.019669"],["-90.075462","30.019573"],["-90.075456","30.019476"],["-90.075449","30.019379"],["-90.075442","30.019282"],["-90.075435","30.019185"],["-90.075428","30.019088"],["-90.075421","30.018991"],["-90.075414","30.018894"],["-90.075407","30.018798"],["-90.075401","30.018701"],["-90.075394","30.018604"],["-90.075387","30.018507"],["-90.075380","30.018410"],["-90.075480","30.018400"],["-90.075482","30.018463"],["-90.075480","30.018400"],["-90.075380","30.018410"],["-90.075372","30.018308"],["-90.075365","30.018205"],["-90.075357","30.018103"],["-90.075350","30.018000"],["-90.075342","30.017898"],["-90.075335","30.017795"],["-90.075327","30.017693"],["-90.075320","30.017590"],["-90.075311","30.017485"],["-90.075302","30.017380"],["-90.075294","30.017275"],["-90.075285","30.017170"],["-90.075276","30.017065"],["-90.075267","30.016960"],["-90.075259","30.016855"],["-90.075250","30.016750"],["-90.075235","30.016568"],["-90.075220","30.016385"],["-90.075205","30.016203"],["-90.075190","30.016020"],["-90.075269","30.016013"],["-90.075190","30.016020"],["-90.075190","30.015950"],["-90.075180","30.015850"],["-90.075170","30.015750"],["-90.075158","30.015596"],["-90.075146","30.015443"],["-90.075134","30.015289"],["-90.075122","30.015135"],["-90.075111","30.014981"],["-90.075099","30.014828"],["-90.075087","30.014674"],["-90.075075","30.014520"],["-90.075063","30.014366"],["-90.075051","30.014213"],["-90.075039","30.014059"],["-90.075027","30.013905"],["-90.075016","30.013751"],["-90.075004","30.013598"],["-90.074992","30.013444"],["-90.074980","30.013290"],["-90.075090","30.013290"],["-90.075096","30.013347"],["-90.075090","30.013290"],["-90.074980","30.013290"],["-90.074971","30.013189"],["-90.074962","30.013088"],["-90.074954","30.012986"],["-90.074945","30.012885"],["-90.074936","30.012784"],["-90.074927","30.012683"],["-90.074919","30.012581"],["-90.074910","30.012480"],["-90.074897","30.012295"],["-90.074885","30.012110"],["-90.074872","30.011925"],["-90.074860","30.011740"],["-90.074910","30.011734"],["-90.074860","30.011740"],["-90.074850","30.011660"],["-90.074840","30.011470"],["-90.074832","30.011369"],["-90.074825","30.011268"],["-90.074817","30.011166"],["-90.074810","30.011065"],["-90.074802","30.010964"],["-90.074795","30.010863"],["-90.074787","30.010761"],["-90.074780","30.010660"],["-90.074771","30.010560"],["-90.074762","30.010460"],["-90.074754","30.010360"],["-90.074745","30.010260"],["-90.074736","30.010160"],["-90.074727","30.010060"],["-90.074719","30.009960"],["-90.074710","30.009860"],["-90.074695","30.009678"],["-90.074680","30.009495"],["-90.074665","30.009313"],["-90.074650","30.009130"],["-90.074738","30.009122"],["-90.074650","30.009130"],["-90.074650","30.009050"],["-90.074632","30.008863"],["-90.074615","30.008675"],["-90.074597","30.008488"],["-90.074580","30.008300"],["-90.074578","30.008138"],["-90.074577","30.007976"],["-90.074575","30.007814"],["-90.074574","30.007653"],["-90.074572","30.007491"],["-90.074571","30.007329"],["-90.074569","30.007167"],["-90.074568","30.007005"],["-90.074568","30.007005"],["-90.074471","30.006941"],["-90.074453","30.006793"],["-90.074435","30.006645"],["-90.074420","30.006460"],["-90.074410","30.006320"],["-90.074400","30.006155"],["-90.074390","30.005990"],["-90.074465","30.005985"],["-90.074390","30.005990"],["-90.074380","30.005890"],["-90.074370","30.005790"],["-90.074360","30.005690"],["-90.074350","30.005525"],["-90.074340","30.005360"],["-90.074320","30.005180"],["-90.074307","30.005010"],["-90.074295","30.004840"],["-90.074282","30.004670"],["-90.074270","30.004500"],["-90.074257","30.004333"],["-90.074245","30.004165"],["-90.074232","30.003998"],["-90.074221","30.003899"],["-90.074210","30.003800"],["-90.074247","30.003825"],["-90.074210","30.003800"],["-90.074200","30.003665"],["-90.074190","30.003530"],["-90.074180","30.003395"],["-90.074170","30.003260"],["-90.074160","30.003130"],["-90.074145","30.002955"],["-90.074130","30.002780"],["-90.074115","30.002605"],["-90.074100","30.002430"],["-90.074090","30.002240"],["-90.074185","30.002240"],["-90.074090","30.002240"],["-90.074080","30.002160"],["-90.074090","30.002130"],["-90.074090","30.002120"],["-90.074090","30.002110"],["-90.074090","30.002100"],["-90.074090","30.002080"],["-90.074075","30.001945"],["-90.074060","30.001810"],["-90.074047","30.001635"],["-90.074035","30.001460"],["-90.074022","30.001285"],["-90.074010","30.001110"],["-90.074010","30.001070"],["-90.074000","30.001040"],["-90.074000","30.000990"],["-90.073990","30.000900"],["-90.073980","30.000820"],["-90.073970","30.000740"],["-90.073970","30.000610"],["-90.073962","30.000505"],["-90.073955","30.000400"],["-90.073947","30.000295"],["-90.073940","30.000190"],["-90.074012","30.000184"],["-90.073940","30.000190"],["-90.073930","30.000100"],["-90.073922","29.999990"],["-90.073915","29.999880"],["-90.073907","29.999770"],["-90.073900","29.999660"],["-90.073887","29.999518"],["-90.073875","29.999375"],["-90.073862","29.999233"],["-90.073850","29.999090"],["-90.073840","29.998920"],["-90.073825","29.998735"],["-90.073810","29.998550"],["-90.073795","29.998360"],["-90.073780","29.998170"],["-90.073844","29.998167"],["-90.073780","29.998170"],["-90.073770","29.998070"],["-90.073760","29.997910"],["-90.073750","29.997793"],["-90.073740","29.997675"],["-90.073730","29.997558"],["-90.073720","29.997440"],["-90.073705","29.997250"],["-90.073690","29.997060"],["-90.073675","29.996930"],["-90.073660","29.996800"],["-90.073655","29.996695"],["-90.073650","29.996590"],["-90.073640","29.996475"],["-90.073630","29.996360"],["-90.073620","29.996260"],["-90.073610","29.996160"],["-90.073687","29.996152"],["-90.073610","29.996160"],["-90.073600","29.996040"],["-90.073590","29.995914"],["-90.073580","29.995788"],["-90.073570","29.995661"],["-90.073560","29.995535"],["-90.073550","29.995409"],["-90.073540","29.995283"],["-90.073530","29.995156"],["-90.073520","29.995030"],["-90.073510","29.994914"],["-90.073500","29.994798"],["-90.073490","29.994681"],["-90.073480","29.994565"],["-90.073470","29.994449"],["-90.073460","29.994333"],["-90.073450","29.994216"],["-90.073440","29.994100"],["-90.073524","29.994098"],["-90.073440","29.994100"],["-90.073440","29.994020"],["-90.073430","29.993893"],["-90.073420","29.993765"],["-90.073410","29.993638"],["-90.073400","29.993510"],["-90.073390","29.993385"],["-90.073380","29.993260"],["-90.073370","29.993135"],["-90.073360","29.993010"],["-90.073351","29.992893"],["-90.073342","29.992775"],["-90.073334","29.992658"],["-90.073325","29.992540"],["-90.073316","29.992423"],["-90.073307","29.992305"],["-90.073299","29.992188"],["-90.073290","29.992070"],["-90.073365","29.992070"],["-90.073290","29.992070"],["-90.073280","29.991990"],["-90.073280","29.991980"],["-90.073270","29.991850"],["-90.073250","29.991660"],["-90.073240","29.991610"],["-90.073240","29.991600"],["-90.073220","29.991480"],["-90.073200","29.991430"],["-90.073200","29.991410"],["-90.073180","29.991300"],["-90.073170","29.991260"],["-90.073150","29.991135"],["-90.073130","29.991010"],["-90.073110","29.990900"],["-90.073090","29.990800"],["-90.073085","29.990650"],["-90.073080","29.990500"],["-90.073083","29.990380"],["-90.073085","29.990260"],["-90.073088","29.990140"],["-90.073090","29.990020"],["-90.073090","29.989920"],["-90.073100","29.989770"],["-90.073100","29.989680"],["-90.073090","29.989520"],["-90.073090","29.989470"],["-90.073153","29.989470"],["-90.073090","29.989470"],["-90.073080","29.989380"],["-90.073050","29.989240"],["-90.073035","29.989095"],["-90.073020","29.988950"],["-90.073005","29.988800"],["-90.072990","29.988650"],["-90.072970","29.988460"],["-90.072960","29.988380"],["-90.072945","29.988200"],["-90.072930","29.988020"],["-90.073017","29.988016"],["-90.072930","29.988020"],["-90.072920","29.987940"],["-90.072910","29.987820"],["-90.072900","29.987720"],["-90.072890","29.987620"],["-90.072890","29.987510"],["-90.072877","29.987363"],["-90.072865","29.987215"],["-90.072852","29.987068"],["-90.072840","29.986920"],["-90.072830","29.986808"],["-90.072820","29.986695"],["-90.072810","29.986583"],["-90.072800","29.986470"],["-90.072800","29.986390"],["-90.072790","29.986260"],["-90.072780","29.986200"],["-90.072770","29.986060"],["-90.072760","29.985920"],["-90.072785","29.985935"],["-90.072760","29.985920"],["-90.072750","29.985800"],["-90.072740","29.985680"],["-90.072740","29.985600"],["-90.072760","29.985540"],["-90.072780","29.985480"],["-90.072830","29.985410"],["-90.072950","29.985290"],["-90.072892","29.985185"],["-90.072835","29.985080"],["-90.072777","29.984975"],["-90.072720","29.984870"],["-90.072611","29.984707"],["-90.072522","29.984545"],["-90.072434","29.984382"],["-90.072399","29.984319"],["-90.072301","29.984160"],["-90.072204","29.984001"],["-90.072151","29.983827"],["-90.072097","29.983649"],["-90.072020","29.983680"],["-90.071980","29.983600"],["-90.071920","29.983460"],["-90.071840","29.983340"],["-90.071740","29.983200"],["-90.071650","29.983045"],["-90.071560","29.982890"],["-90.071500","29.982773"],["-90.071440","29.982655"],["-90.071380","29.982538"],["-90.071320","29.982420"],["-90.071235","29.982290"],["-90.071150","29.982160"],["-90.071080","29.982035"],["-90.071010","29.981910"],["-90.070920","29.981770"],["-90.070999","29.981741"],["-90.070920","29.981770"],["-90.070900","29.981740"],["-90.070825","29.981608"],["-90.070750","29.981475"],["-90.070675","29.981343"],["-90.070600","29.981210"],["-90.070525","29.981085"],["-90.070450","29.980960"],["-90.070372","29.980820"],["-90.070295","29.980680"],["-90.070217","29.980540"],["-90.070140","29.980400"],["-90.070060","29.980270"],["-90.069980","29.980140"],["-90.069900","29.980000"],["-90.069835","29.979875"],["-90.069770","29.979750"],["-90.069705","29.979625"],["-90.069640","29.979500"],["-90.069695","29.979476"],["-90.069640","29.979500"],["-90.069590","29.979420"],["-90.069505","29.979275"],["-90.069420","29.979130"],["-90.069335","29.978983"],["-90.069250","29.978835"],["-90.069165","29.978688"],["-90.069080","29.978540"],["-90.069133","29.978516"],["-90.069080","29.978540"],["-90.069040","29.978470"],["-90.068975","29.978355"],["-90.068910","29.978240"],["-90.068845","29.978125"],["-90.068780","29.978010"],["-90.068715","29.977895"],["-90.068650","29.977780"],["-90.068585","29.977665"],["-90.068520","29.977550"],["-90.068521","29.977547"],["-90.068520","29.977550"],["-90.068500","29.977510"],["-90.068407","29.977365"],["-90.068315","29.977220"],["-90.068222","29.977075"],["-90.068130","29.976930"],["-90.068070","29.976800"],["-90.068050","29.976760"],["-90.067995","29.976660"],["-90.067940","29.976560"],["-90.067879","29.976453"],["-90.067817","29.976345"],["-90.067756","29.976238"],["-90.067695","29.976130"],["-90.067634","29.976023"],["-90.067572","29.975915"],["-90.067511","29.975808"],["-90.067450","29.975700"],["-90.067400","29.975630"],["-90.067473","29.975619"],["-90.067400","29.975630"],["-90.067332","29.975518"],["-90.067265","29.975405"],["-90.067197","29.975293"],["-90.067130","29.975180"],["-90.067055","29.975045"],["-90.066980","29.974910"],["-90.066910","29.974780"],["-90.066840","29.974650"],["-90.066757","29.974505"],["-90.066675","29.974360"],["-90.066592","29.974215"],["-90.066510","29.974070"],["-90.066457","29.973983"],["-90.066405","29.973895"],["-90.066352","29.973808"],["-90.066300","29.973720"],["-90.066235","29.973600"],["-90.066170","29.973480"],["-90.066117","29.973390"],["-90.066065","29.973300"],["-90.066012","29.973210"],["-90.065960","29.973120"],["-90.065960","29.972990"],["-90.066045","29.972989"],["-90.065970","29.972990"],["-90.065970","29.972810"],["-90.065970","29.972800"],["-90.065970","29.972760"],["-90.065980","29.972670"],["-90.066050","29.972600"],["-90.066110","29.972530"],["-90.066230","29.972393"],["-90.066350","29.972255"],["-90.066470","29.972118"],["-90.066590","29.971980"],["-90.066708","29.971850"],["-90.066825","29.971720"],["-90.066943","29.971590"],["-90.067060","29.971460"],["-90.067120","29.971390"],["-90.067160","29.971350"],["-90.067280","29.971210"],["-90.067279","29.971217"],["-90.067280","29.971210"],["-90.067310","29.971170"],["-90.067435","29.971035"],["-90.067560","29.970900"],["-90.067635","29.970815"],["-90.067710","29.970730"],["-90.067785","29.970645"],["-90.067860","29.970560"],["-90.067940","29.970470"],["-90.067980","29.970420"],["-90.068040","29.970360"],["-90.068130","29.970255"],["-90.068220","29.970150"],["-90.068300","29.970055"],["-90.068380","29.969960"],["-90.068520","29.969820"],["-90.068625","29.969710"],["-90.068730","29.969600"],["-90.068741","29.969606"],["-90.068730","29.969600"],["-90.068750","29.969570"],["-90.068860","29.969450"],["-90.068980","29.969310"],["-90.068990","29.969310"],["-90.069083","29.969205"],["-90.069175","29.969100"],["-90.069268","29.968995"],["-90.069360","29.968890"],["-90.069453","29.968785"],["-90.069545","29.968680"],["-90.069638","29.968575"],["-90.069730","29.968470"],["-90.069810","29.968380"],["-90.069890","29.968290"],["-90.069990","29.968170"],["-90.070050","29.968110"],["-90.070120","29.968033"],["-90.070190","29.967955"],["-90.070260","29.967878"],["-90.070330","29.967800"],["-90.070400","29.967723"],["-90.070470","29.967645"],["-90.070540","29.967568"],["-90.070610","29.967490"],["-90.070660","29.967430"],["-90.070700","29.967380"],["-90.070708","29.967388"],["-90.070700","29.967380"],["-90.070740","29.967330"],["-90.070835","29.967225"],["-90.070930","29.967120"],["-90.071060","29.966980"],["-90.071180","29.966840"],["-90.071305","29.966695"],["-90.071430","29.966550"],["-90.071543","29.966428"],["-90.071655","29.966305"],["-90.071768","29.966183"],["-90.071880","29.966060"],["-90.071900","29.966040"],["-90.071930","29.966010"],["-90.072045","29.965880"],["-90.072160","29.965750"],["-90.072160","29.965750"],["-90.072190","29.965720"],["-90.072290","29.965620"],["-90.072400","29.965500"],["-90.072500","29.965375"],["-90.072600","29.965250"],["-90.072685","29.965155"],["-90.072770","29.965060"],["-90.072900","29.964910"],["-90.072980","29.964820"],["-90.073060","29.964730"],["-90.073150","29.964630"],["-90.073240","29.964530"],["-90.073280","29.964480"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962950"],["-90.071350","29.962940"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074010","29.955710"],["-90.074078","29.955755"],["-90.074000","29.955700"],["-90.074090","29.955605"],["-90.074180","29.955510"],["-90.074280","29.955420"],["-90.074400","29.955280"],["-90.074472","29.955197"],["-90.074544","29.955113"],["-90.074616","29.955030"],["-90.074688","29.954947"],["-90.074760","29.954863"],["-90.074832","29.954780"],["-90.074904","29.954696"],["-90.074976","29.954613"],["-90.075052","29.954478"],["-90.075128","29.954343"],["-90.075204","29.954208"],["-90.075280","29.954073"],["-90.075326","29.953909"],["-90.075372","29.953745"],["-90.075419","29.953581"],["-90.075465","29.953417"],["-90.075496","29.953305"],["-90.075526","29.953192"],["-90.075557","29.953079"],["-90.075588","29.952967"],["-90.075619","29.952854"],["-90.075650","29.952741"],["-90.075681","29.952628"],["-90.075711","29.952516"],["-90.075742","29.952361"],["-90.075773","29.952207"],["-90.075804","29.952052"],["-90.075835","29.951898"],["-90.075838","29.951734"],["-90.075840","29.951570"],["-90.075843","29.951406"],["-90.075846","29.951242"],["-90.075878","29.951150"],["-90.075911","29.951058"],["-90.075867","29.950908"],["-90.075890","29.950805"],["-90.075913","29.950703"],["-90.075936","29.950601"],["-90.075959","29.950499"],["-90.076000","29.950363"],["-90.076040","29.950226"],["-90.076081","29.950090"],["-90.076121","29.949953"],["-90.076162","29.949817"],["-90.076202","29.949680"],["-90.076244","29.949528"],["-90.076286","29.949375"],["-90.076328","29.949223"],["-90.076371","29.949071"],["-90.076413","29.948919"],["-90.076455","29.948767"],["-90.076537","29.948723"],["-90.076500","29.948710"],["-90.076540","29.948570"],["-90.076560","29.948480"],["-90.076605","29.948300"],["-90.076650","29.948120"],["-90.076675","29.948015"],["-90.076700","29.947910"],["-90.076725","29.947805"],["-90.076750","29.947700"],["-90.076795","29.947555"],["-90.076840","29.947410"],["-90.076885","29.947265"],["-90.076930","29.947120"],["-90.076960","29.947000"],["-90.077015","29.946835"],["-90.077070","29.946670"],["-90.077125","29.946500"],["-90.077180","29.946330"],["-90.077250","29.946349"],["-90.077180","29.946330"],["-90.077190","29.946280"],["-90.077200","29.946260"],["-90.077220","29.946190"],["-90.077250","29.946090"],["-90.077280","29.945990"],["-90.077320","29.945880"],["-90.077350","29.945770"],["-90.077440","29.945630"],["-90.077560","29.945490"],["-90.077570","29.945440"],["-90.077590","29.945410"],["-90.077610","29.945380"],["-90.077660","29.945330"],["-90.077700","29.945290"],["-90.077800","29.945240"],["-90.077890","29.945200"],["-90.078000","29.945150"],["-90.078080","29.945140"],["-90.078100","29.945140"],["-90.078130","29.945140"],["-90.078150","29.945140"],["-90.078170","29.945140"],["-90.078270","29.945170"],["-90.078380","29.945210"],["-90.078400","29.945210"],["-90.078400","29.945220"],["-90.078580","29.945300"],["-90.078702","29.945360"],["-90.078825","29.945420"],["-90.078947","29.945480"],["-90.079070","29.945540"],["-90.079090","29.945550"],["-90.079120","29.945550"],["-90.079160","29.945550"],["-90.079180","29.945540"],["-90.079220","29.945520"],["-90.079280","29.945500"],["-90.079330","29.945450"],["-90.079350","29.945440"],["-90.079360","29.945430"],["-90.079370","29.945420"],["-90.079400","29.945400"],["-90.079430","29.945370"],["-90.079530","29.945260"],["-90.079630","29.945100"],["-90.079693","29.945013"],["-90.079755","29.944925"],["-90.079818","29.944838"],["-90.079880","29.944750"],["-90.079940","29.944668"],["-90.080000","29.944585"],["-90.080060","29.944503"],["-90.080120","29.944420"],["-90.080180","29.944338"],["-90.080240","29.944255"],["-90.080300","29.944173"],["-90.080360","29.944090"],["-90.080450","29.943960"],["-90.080535","29.944007"],["-90.080450","29.943960"],["-90.080490","29.943900"],["-90.080565","29.943805"],["-90.080640","29.943710"],["-90.080670","29.943670"],["-90.080755","29.943558"],["-90.080840","29.943445"],["-90.080925","29.943333"],["-90.081010","29.943220"],["-90.081078","29.943130"],["-90.081145","29.943040"],["-90.081213","29.942950"],["-90.081280","29.942860"],["-90.081360","29.942755"],["-90.081440","29.942650"],["-90.081487","29.942673"],["-90.081440","29.942650"],["-90.081490","29.942580"],["-90.081625","29.942655"],["-90.081760","29.942730"],["-90.081897","29.942808"],["-90.082035","29.942885"],["-90.082172","29.942963"],["-90.082310","29.943040"],["-90.082470","29.943120"],["-90.082540","29.943160"],["-90.082660","29.943225"],["-90.082780","29.943290"],["-90.082900","29.943355"],["-90.083020","29.943420"],["-90.083122","29.943480"],["-90.083225","29.943540"],["-90.083327","29.943600"],["-90.083430","29.943660"],["-90.083392","29.943703"],["-90.083430","29.943660"],["-90.083490","29.943690"],["-90.083589","29.943744"],["-90.083687","29.943798"],["-90.083786","29.943851"],["-90.083885","29.943905"],["-90.083984","29.943959"],["-90.084082","29.944013"],["-90.084181","29.944066"],["-90.084280","29.944120"],["-90.084457","29.944220"],["-90.084635","29.944320"],["-90.084812","29.944420"],["-90.084990","29.944520"],["-90.084957","29.944558"],["-90.084990","29.944520"],["-90.085070","29.944560"],["-90.085215","29.944650"],["-90.085360","29.944740"],["-90.085480","29.944810"],["-90.085600","29.944880"],["-90.085720","29.944950"],["-90.085840","29.945020"],["-90.086017","29.945120"],["-90.086195","29.945220"],["-90.086372","29.945320"],["-90.086550","29.945420"],["-90.086519","29.945464"],["-90.086550","29.945420"],["-90.086650","29.945470"],["-90.086820","29.945565"],["-90.086990","29.945660"],["-90.087102","29.945723"],["-90.087215","29.945785"],["-90.087327","29.945848"],["-90.087440","29.945910"],["-90.087622","29.946013"],["-90.087805","29.946115"],["-90.087987","29.946218"],["-90.088170","29.946320"],["-90.088120","29.946386"],["-90.088170","29.946320"],["-90.088240","29.946360"],["-90.088390","29.946450"],["-90.088540","29.946540"],["-90.088710","29.946630"],["-90.088671","29.946690"],["-90.088710","29.946630"],["-90.088820","29.946690"],["-90.088930","29.946750"],["-90.088980","29.946780"],["-90.089087","29.946840"],["-90.089195","29.946900"],["-90.089302","29.946960"],["-90.089410","29.947020"],["-90.089516","29.947080"],["-90.089622","29.947140"],["-90.089755","29.947213"],["-90.089888","29.947286"],["-90.090021","29.947359"],["-90.090155","29.947432"],["-90.090222","29.947545"],["-90.090389","29.947593"],["-90.090557","29.947642"],["-90.090739","29.947749"],["-90.090920","29.947856"],["-90.091102","29.947963"],["-90.091284","29.948070"],["-90.091466","29.948178"],["-90.091647","29.948285"],["-90.091816","29.948377"],["-90.091984","29.948468"],["-90.092012","29.948584"],["-90.092223","29.948601"],["-90.092343","29.948672"],["-90.092463","29.948743"],["-90.092582","29.948814"],["-90.092702","29.948885"],["-90.092822","29.948956"],["-90.092942","29.949027"],["-90.093062","29.949098"],["-90.093181","29.949169"],["-90.093262","29.949065"],["-90.093342","29.948960"],["-90.093463","29.948879"],["-90.093584","29.948797"],["-90.093718","29.948721"],["-90.093852","29.948644"],["-90.093986","29.948567"],["-90.094120","29.948491"],["-90.094254","29.948414"],["-90.094388","29.948337"],["-90.094522","29.948260"],["-90.094657","29.948184"],["-90.094791","29.948107"],["-90.094925","29.948030"],["-90.095059","29.947954"],["-90.095193","29.947877"],["-90.095327","29.947800"],["-90.095461","29.947724"],["-90.095595","29.947647"],["-90.095729","29.947570"],["-90.095894","29.947582"],["-90.095840","29.947510"],["-90.095920","29.947470"],["-90.096021","29.947414"],["-90.096123","29.947358"],["-90.096224","29.947301"],["-90.096325","29.947245"],["-90.096426","29.947189"],["-90.096528","29.947133"],["-90.096629","29.947076"],["-90.096730","29.947020"],["-90.096825","29.946966"],["-90.096920","29.946913"],["-90.097015","29.946859"],["-90.097110","29.946805"],["-90.097205","29.946751"],["-90.097300","29.946698"],["-90.097395","29.946644"],["-90.097490","29.946590"],["-90.097515","29.946619"],["-90.097490","29.946590"],["-90.097570","29.946540"],["-90.097632","29.946626"],["-90.097695","29.946713"],["-90.097757","29.946799"],["-90.097820","29.946885"],["-90.097882","29.946971"],["-90.097945","29.947058"],["-90.098007","29.947144"],["-90.098070","29.947230"],["-90.098139","29.947324"],["-90.098207","29.947418"],["-90.098276","29.947511"],["-90.098345","29.947605"],["-90.098414","29.947699"],["-90.098482","29.947793"],["-90.098551","29.947886"],["-90.098620","29.947980"],["-90.098715","29.947928"],["-90.098810","29.947875"],["-90.098905","29.947823"],["-90.098953","29.947711"],["-90.099109","29.947768"],["-90.099192","29.947944"],["-90.099276","29.948121"],["-90.099359","29.948298"],["-90.099442","29.948474"],["-90.099525","29.948651"],["-90.099608","29.948828"],["-90.099691","29.949004"],["-90.099775","29.949181"],["-90.099866","29.949349"],["-90.099957","29.949518"],["-90.100048","29.949686"],["-90.100139","29.949855"],["-90.100204","29.950006"],["-90.100270","29.950157"],["-90.100335","29.950309"],["-90.100400","29.950460"],["-90.100460","29.950590"],["-90.100505","29.950680"],["-90.100550","29.950770"],["-90.100456","29.950804"],["-90.100550","29.950770"],["-90.100570","29.950820"],["-90.100630","29.950980"],["-90.100715","29.951155"],["-90.100800","29.951330"],["-90.100847","29.951426"],["-90.100895","29.951522"],["-90.100942","29.951618"],["-90.100990","29.951714"],["-90.101058","29.951860"],["-90.101126","29.952007"],["-90.101195","29.952153"],["-90.101263","29.952300"],["-90.101226","29.952435"],["-90.101354","29.952474"],["-90.101407","29.952582"],["-90.101460","29.952690"],["-90.101530","29.952840"],["-90.101590","29.952970"],["-90.101630","29.953070"],["-90.101670","29.953150"],["-90.101680","29.953170"],["-90.101700","29.953220"],["-90.101720","29.953250"],["-90.101730","29.953270"],["-90.101760","29.953320"],["-90.101817","29.953405"],["-90.101875","29.953490"],["-90.101932","29.953575"],["-90.101990","29.953660"],["-90.102080","29.953795"],["-90.102170","29.953930"],["-90.102255","29.954085"],["-90.102340","29.954240"],["-90.102425","29.954405"],["-90.102510","29.954570"],["-90.102510","29.954580"],["-90.102560","29.954685"],["-90.102550","29.954814"],["-90.102620","29.954790"],["-90.102660","29.954880"],["-90.102680","29.954930"],["-90.102750","29.955078"],["-90.102820","29.955225"],["-90.102890","29.955373"],["-90.102960","29.955520"],["-90.103040","29.955690"],["-90.103120","29.955860"],["-90.103185","29.955995"],["-90.103250","29.956130"],["-90.103330","29.956305"],["-90.103410","29.956480"],["-90.103460","29.956575"],["-90.103510","29.956670"],["-90.103565","29.956775"],["-90.103620","29.956880"],["-90.103680","29.957010"],["-90.103740","29.957130"],["-90.103890","29.957100"],["-90.104020","29.957080"],["-90.104090","29.957070"],["-90.104230","29.957040"],["-90.104290","29.957030"],["-90.104320","29.957030"],["-90.104470","29.957000"],["-90.104490","29.957000"],["-90.104560","29.956990"],["-90.104563","29.957002"],["-90.104560","29.956990"],["-90.104580","29.956980"],["-90.104690","29.956960"],["-90.104800","29.956940"],["-90.104910","29.956930"],["-90.104960","29.956920"],["-90.105120","29.956910"],["-90.105250","29.956900"],["-90.105380","29.956890"],["-90.105500","29.956890"],["-90.105650","29.956890"],["-90.105800","29.956890"],["-90.105880","29.956890"],["-90.106040","29.956890"],["-90.106130","29.956890"],["-90.106290","29.956900"],["-90.106370","29.956910"],["-90.106480","29.956920"],["-90.106510","29.956920"],["-90.106610","29.956930"],["-90.106630","29.956940"],["-90.106720","29.956950"],["-90.106900","29.956980"],["-90.107000","29.957000"],["-90.107110","29.957030"],["-90.107230","29.957060"],["-90.107380","29.957120"],["-90.107410","29.957120"],["-90.107480","29.957150"],["-90.107570","29.957190"],["-90.107660","29.957230"],["-90.107720","29.957260"],["-90.107770","29.957280"],["-90.107910","29.957350"],["-90.108005","29.957400"],["-90.108100","29.957450"],["-90.108071","29.957489"],["-90.108100","29.957450"],["-90.108150","29.957470"],["-90.108304","29.957554"],["-90.108457","29.957638"],["-90.108611","29.957721"],["-90.108765","29.957805"],["-90.108919","29.957889"],["-90.109072","29.957973"],["-90.109226","29.958056"],["-90.109380","29.958140"],["-90.109530","29.958230"],["-90.109680","29.958320"],["-90.109860","29.958420"],["-90.109975","29.958480"],["-90.110090","29.958540"],["-90.110059","29.958587"],["-90.110090","29.958540"],["-90.110140","29.958570"],["-90.110240","29.958630"],["-90.110385","29.958720"],["-90.110530","29.958810"],["-90.110560","29.958830"],["-90.110720","29.958930"],["-90.110880","29.959030"],["-90.110920","29.959050"],["-90.111095","29.959150"],["-90.111270","29.959250"],["-90.111365","29.959305"],["-90.111460","29.959360"],["-90.111560","29.959415"],["-90.111660","29.959470"],["-90.111631","29.959508"],["-90.111660","29.959470"],["-90.111680","29.959480"],["-90.111750","29.959520"],["-90.111920","29.959610"],["-90.111930","29.959610"],["-90.111970","29.959630"],["-90.112030","29.959660"],["-90.112150","29.959705"],["-90.112270","29.959750"],["-90.112460","29.959830"],["-90.112610","29.959880"],["-90.112720","29.959930"],["-90.112880","29.960000"],["-90.113010","29.960070"],["-90.113140","29.960140"],["-90.113270","29.960210"],["-90.113400","29.960280"],["-90.113530","29.960350"],["-90.113655","29.960415"],["-90.113780","29.960480"],["-90.113860","29.960530"],["-90.113910","29.960550"],["-90.114035","29.960620"],["-90.114160","29.960690"],["-90.114260","29.960750"],["-90.114435","29.960855"],["-90.114610","29.960960"],["-90.114791","29.961064"],["-90.114652","29.961195"],["-90.114512","29.961325"],["-90.114373","29.961455"],["-90.114233","29.961585"],["-90.114087","29.961720"],["-90.113941","29.961855"],["-90.113859","29.961941"],["-90.113777","29.962026"],["-90.113695","29.962112"],["-90.113613","29.962198"],["-90.113558","29.962168"],["-90.113564","29.962245"],["-90.113463","29.962347"],["-90.113361","29.962448"],["-90.113259","29.962550"],["-90.113157","29.962652"],["-90.113055","29.962753"],["-90.112953","29.962855"],["-90.112851","29.962956"],["-90.112749","29.963058"],["-90.112647","29.963151"],["-90.112544","29.963244"],["-90.112442","29.963337"],["-90.112340","29.963430"],["-90.112237","29.963524"],["-90.112135","29.963617"],["-90.112033","29.963710"],["-90.111931","29.963803"],["-90.111781","29.963941"],["-90.111630","29.964080"],["-90.111480","29.964219"],["-90.111330","29.964357"],["-90.111257","29.964300"],["-90.111245","29.964412"],["-90.111150","29.964503"],["-90.111055","29.964595"],["-90.110959","29.964687"],["-90.110864","29.964779"],["-90.110768","29.964871"],["-90.110673","29.964963"],["-90.110577","29.965054"],["-90.110482","29.965146"],["-90.110403","29.965219"],["-90.110323","29.965291"],["-90.110244","29.965363"],["-90.110164","29.965435"],["-90.110070","29.965395"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.074164","30.007115"],["-90.071868","29.965409"],["-90.070745","29.966658"],["-90.066986","29.970903"],["-90.066311","29.974042"],["-90.067245","29.975759"],["-90.068345","29.977602"],["-90.068901","29.978581"],["-90.069719","29.979938"],["-90.070799","29.981898"],["-90.071628","29.983255"],["-90.072525","29.985855"],["-90.072682","29.987850"],["-90.072773","29.989287"],["-90.072929","29.991833"],["-90.073141","29.993936"],["-90.073296","29.995956"],["-90.073459","29.998000"],["-90.073682","30.000544"],["-90.073780","30.002115"],["-90.073894","30.003656"],["-90.074036","30.005111"],["-90.074503","30.011403"],["-90.061279","30.027533"],["-90.073128","30.021989"],["-90.071897","30.022761"],["-90.067812","30.023339"],["-90.064381","30.024058"],["-90.068531","29.969183"],["-90.065412","30.027973"],["-90.085301","29.944414"],["-90.083705","29.943511"],["-90.075474","29.951945"],["-90.076903","29.945829"],["-90.066255","29.971699"],["-90.074706","29.954333"],["-90.088856","29.946391"],["-90.074107","30.006252"],["-90.091524","29.947890"],["-90.061070","30.025569"],["-90.108683","29.964256"],["-90.107455","29.963154"],["-90.106096","29.961419"],["-90.105489","29.960217"],["-90.104435","29.958095"],["-90.103635","29.956440"],["-90.102775","29.954666"],["-90.101755","29.952587"],["-90.100903","29.950955"],["-90.099757","29.948500"],["-90.090638","29.947409"],["-90.093092","29.948831"],["-90.086881","29.945287"],["-90.110070","29.965395"],["-90.080326","29.943693"],["-90.079697","29.944541"],["-90.076215","29.948286"],["-90.075190","30.019852"],["-90.074993","30.018339"],["-90.074862","30.015682"],["-90.074660","30.013204"],["-90.074249","30.008989"],["-90.075311","30.020996"],["-90.066132","30.023509"],["-90.075579","29.950548"],["-90.070397","29.959116"],["-90.070267","29.961523"],["-90.071273","29.963222"],["-90.103919","29.956897"],["-90.073384","29.955849"],["-90.081189","29.942490"],["-90.097524","29.946330"],["-90.095829","29.947213"]]},{"type":"LineString","coordinates":[["-90.110070","29.965395"],["-90.109929","29.965449"],["-90.109805","29.965335"],["-90.109681","29.965222"],["-90.109557","29.965108"],["-90.109433","29.964994"],["-90.109309","29.964881"],["-90.109185","29.964767"],["-90.109061","29.964654"],["-90.108937","29.964540"],["-90.108810","29.964398"],["-90.108683","29.964256"],["-90.108599","29.964261"],["-90.108470","29.964134"],["-90.108342","29.964007"],["-90.108207","29.963879"],["-90.108071","29.963752"],["-90.107921","29.963622"],["-90.107771","29.963492"],["-90.107620","29.963361"],["-90.107470","29.963231"],["-90.107455","29.963154"],["-90.107374","29.963141"],["-90.107290","29.963067"],["-90.107206","29.962993"],["-90.107122","29.962918"],["-90.107038","29.962844"],["-90.106954","29.962770"],["-90.106871","29.962696"],["-90.106787","29.962621"],["-90.106703","29.962547"],["-90.106559","29.962401"],["-90.106415","29.962256"],["-90.106334","29.962086"],["-90.106253","29.961917"],["-90.106171","29.961748"],["-90.106090","29.961579"],["-90.106096","29.961419"],["-90.106011","29.961437"],["-90.105945","29.961299"],["-90.105879","29.961160"],["-90.105813","29.961021"],["-90.105748","29.960883"],["-90.105682","29.960744"],["-90.105616","29.960606"],["-90.105550","29.960467"],["-90.105484","29.960329"],["-90.105489","29.960217"],["-90.105411","29.960189"],["-90.105350","29.960065"],["-90.105289","29.959941"],["-90.105228","29.959817"],["-90.105167","29.959693"],["-90.105105","29.959569"],["-90.105044","29.959445"],["-90.104983","29.959321"],["-90.104922","29.959197"],["-90.104861","29.959073"],["-90.104800","29.958949"],["-90.104738","29.958825"],["-90.104677","29.958701"],["-90.104616","29.958577"],["-90.104555","29.958453"],["-90.104493","29.958332"],["-90.104431","29.958211"],["-90.104435","29.958095"],["-90.104351","29.958032"],["-90.104288","29.957904"],["-90.104225","29.957777"],["-90.104162","29.957649"],["-90.104099","29.957522"],["-90.104036","29.957394"],["-90.103973","29.957267"],["-90.103910","29.957139"],["-90.103847","29.957012"],["-90.103919","29.956897"],["-90.103785","29.956891"],["-90.103738","29.956792"],["-90.103690","29.956692"],["-90.103643","29.956593"],["-90.103596","29.956494"],["-90.103635","29.956440"],["-90.103574","29.956453"],["-90.103501","29.956283"],["-90.103429","29.956113"],["-90.103361","29.956004"],["-90.103295","29.955865"],["-90.103229","29.955726"],["-90.103162","29.955588"],["-90.103096","29.955449"],["-90.103030","29.955310"],["-90.102970","29.955190"],["-90.102910","29.955070"],["-90.102850","29.954950"],["-90.102790","29.954830"],["-90.102730","29.954710"],["-90.102720","29.954690"],["-90.102775","29.954666"],["-90.102720","29.954690"],["-90.102690","29.954630"],["-90.102640","29.954540"],["-90.102565","29.954360"],["-90.102490","29.954180"],["-90.102400","29.954018"],["-90.102310","29.953855"],["-90.102220","29.953693"],["-90.102130","29.953530"],["-90.102055","29.953378"],["-90.101980","29.953225"],["-90.101905","29.953073"],["-90.101830","29.952920"],["-90.101750","29.952765"],["-90.101670","29.952610"],["-90.101755","29.952587"],["-90.101670","29.952610"],["-90.101640","29.952550"],["-90.101560","29.952390"],["-90.101482","29.952233"],["-90.101405","29.952075"],["-90.101327","29.951918"],["-90.101250","29.951760"],["-90.101185","29.951630"],["-90.101120","29.951500"],["-90.101055","29.951350"],["-90.100990","29.951200"],["-90.100950","29.951130"],["-90.100880","29.950960"],["-90.100903","29.950955"],["-90.100880","29.950960"],["-90.100860","29.950910"],["-90.100760","29.950750"],["-90.100715","29.950658"],["-90.100670","29.950566"],["-90.100625","29.950474"],["-90.100580","29.950383"],["-90.100535","29.950291"],["-90.100490","29.950199"],["-90.100445","29.950107"],["-90.100400","29.950015"],["-90.100355","29.949923"],["-90.100310","29.949831"],["-90.100265","29.949739"],["-90.100220","29.949648"],["-90.100175","29.949556"],["-90.100130","29.949464"],["-90.100085","29.949372"],["-90.100040","29.949280"],["-90.099994","29.949186"],["-90.099917","29.949032"],["-90.099841","29.948878"],["-90.099764","29.948724"],["-90.099688","29.948570"],["-90.099757","29.948500"],["-90.099607","29.948419"],["-90.099541","29.948282"],["-90.099475","29.948144"],["-90.099408","29.948007"],["-90.099342","29.947870"],["-90.099276","29.947732"],["-90.099209","29.947595"],["-90.099143","29.947458"],["-90.099077","29.947320"],["-90.099010","29.947183"],["-90.098944","29.947046"],["-90.098878","29.946908"],["-90.098811","29.946771"],["-90.098745","29.946634"],["-90.098679","29.946496"],["-90.098612","29.946359"],["-90.098546","29.946222"],["-90.098474","29.946055"],["-90.098401","29.945889"],["-90.098289","29.945952"],["-90.098176","29.946015"],["-90.098055","29.946080"],["-90.097934","29.946145"],["-90.097785","29.946224"],["-90.097635","29.946303"],["-90.097524","29.946330"],["-90.097407","29.946419"],["-90.097223","29.946522"],["-90.097040","29.946625"],["-90.096856","29.946728"],["-90.096672","29.946831"],["-90.096488","29.946934"],["-90.096305","29.947036"],["-90.096121","29.947139"],["-90.095937","29.947242"],["-90.095829","29.947213"],["-90.095782","29.947337"],["-90.095682","29.947393"],["-90.095583","29.947448"],["-90.095484","29.947504"],["-90.095385","29.947559"],["-90.095285","29.947615"],["-90.095186","29.947670"],["-90.095087","29.947726"],["-90.094988","29.947781"],["-90.094888","29.947837"],["-90.094789","29.947892"],["-90.094690","29.947948"],["-90.094591","29.948003"],["-90.094492","29.948059"],["-90.094392","29.948114"],["-90.094293","29.948170"],["-90.094194","29.948225"],["-90.094079","29.948293"],["-90.093964","29.948361"],["-90.093849","29.948429"],["-90.093734","29.948497"],["-90.093619","29.948565"],["-90.093504","29.948633"],["-90.093389","29.948701"],["-90.093274","29.948769"],["-90.093092","29.948831"],["-90.092984","29.948785"],["-90.092815","29.948695"],["-90.092646","29.948605"],["-90.092460","29.948502"],["-90.092274","29.948399"],["-90.092087","29.948296"],["-90.091901","29.948193"],["-90.091715","29.948090"],["-90.091529","29.947987"],["-90.091524","29.947890"],["-90.091482","29.947953"],["-90.091382","29.947898"],["-90.091281","29.947842"],["-90.091181","29.947786"],["-90.091080","29.947730"],["-90.090920","29.947640"],["-90.090760","29.947550"],["-90.090600","29.947460"],["-90.090638","29.947409"],["-90.090600","29.947460"],["-90.090440","29.947360"],["-90.090326","29.947296"],["-90.090212","29.947233"],["-90.090099","29.947169"],["-90.089985","29.947105"],["-90.089871","29.947041"],["-90.089757","29.946978"],["-90.089644","29.946914"],["-90.089530","29.946850"],["-90.089350","29.946753"],["-90.089170","29.946655"],["-90.088990","29.946558"],["-90.088810","29.946460"],["-90.088856","29.946391"],["-90.088810","29.946460"],["-90.088680","29.946390"],["-90.088520","29.946290"],["-90.088360","29.946190"],["-90.088175","29.946088"],["-90.087990","29.945985"],["-90.087805","29.945883"],["-90.087652","29.945799"],["-90.087500","29.945714"],["-90.087347","29.945630"],["-90.087195","29.945545"],["-90.087017","29.945448"],["-90.086840","29.945350"],["-90.086881","29.945287"],["-90.086840","29.945350"],["-90.086770","29.945310"],["-90.086670","29.945254"],["-90.086570","29.945198"],["-90.086470","29.945141"],["-90.086370","29.945085"],["-90.086270","29.945029"],["-90.086170","29.944973"],["-90.086070","29.944916"],["-90.085970","29.944860"],["-90.085852","29.944795"],["-90.085735","29.944730"],["-90.085617","29.944665"],["-90.085500","29.944600"],["-90.085380","29.944535"],["-90.085260","29.944470"],["-90.085301","29.944414"],["-90.085260","29.944470"],["-90.085170","29.944420"],["-90.085072","29.944364"],["-90.084975","29.944308"],["-90.084877","29.944251"],["-90.084780","29.944195"],["-90.084682","29.944139"],["-90.084585","29.944083"],["-90.084487","29.944026"],["-90.084390","29.943970"],["-90.084207","29.943870"],["-90.084025","29.943770"],["-90.083842","29.943670"],["-90.083660","29.943570"],["-90.083705","29.943511"],["-90.083660","29.943570"],["-90.083600","29.943530"],["-90.083481","29.943464"],["-90.083362","29.943398"],["-90.083244","29.943331"],["-90.083125","29.943265"],["-90.083006","29.943199"],["-90.082887","29.943133"],["-90.082769","29.943066"],["-90.082650","29.943000"],["-90.082590","29.942960"],["-90.082440","29.942870"],["-90.082290","29.942785"],["-90.082140","29.942700"],["-90.082010","29.942628"],["-90.081880","29.942555"],["-90.081750","29.942483"],["-90.081620","29.942410"],["-90.081520","29.942350"],["-90.081420","29.942290"],["-90.081360","29.942380"],["-90.081300","29.942470"],["-90.081260","29.942530"],["-90.081189","29.942490"],["-90.081260","29.942530"],["-90.081200","29.942625"],["-90.081140","29.942720"],["-90.081020","29.942880"],["-90.080900","29.943040"],["-90.080860","29.943110"],["-90.080745","29.943265"],["-90.080630","29.943420"],["-90.080540","29.943535"],["-90.080450","29.943650"],["-90.080380","29.943730"],["-90.080326","29.943693"],["-90.080380","29.943730"],["-90.080310","29.943810"],["-90.080240","29.943905"],["-90.080170","29.944000"],["-90.080100","29.944095"],["-90.080030","29.944190"],["-90.079960","29.944285"],["-90.079890","29.944380"],["-90.079820","29.944475"],["-90.079750","29.944570"],["-90.079697","29.944541"],["-90.079750","29.944570"],["-90.079700","29.944640"],["-90.079610","29.944780"],["-90.079530","29.944870"],["-90.079460","29.944920"],["-90.079410","29.944950"],["-90.079340","29.944970"],["-90.079300","29.944980"],["-90.079190","29.944990"],["-90.079100","29.945000"],["-90.078920","29.944900"],["-90.078820","29.944850"],["-90.078790","29.944830"],["-90.078740","29.944810"],["-90.078670","29.944790"],["-90.078600","29.944780"],["-90.078510","29.944770"],["-90.078470","29.944770"],["-90.078430","29.944770"],["-90.078390","29.944770"],["-90.078260","29.944770"],["-90.078180","29.944770"],["-90.078120","29.944780"],["-90.078060","29.944800"],["-90.078000","29.944810"],["-90.077980","29.944820"],["-90.077850","29.944910"],["-90.077720","29.945000"],["-90.077630","29.945060"],["-90.077610","29.945080"],["-90.077500","29.945190"],["-90.077430","29.945260"],["-90.077335","29.945385"],["-90.077240","29.945510"],["-90.077178","29.945594"],["-90.077117","29.945679"],["-90.077055","29.945763"],["-90.076994","29.945847"],["-90.076903","29.945829"],["-90.076928","29.945932"],["-90.076879","29.946054"],["-90.076829","29.946176"],["-90.076780","29.946298"],["-90.076730","29.946420"],["-90.076700","29.946550"],["-90.076675","29.946715"],["-90.076650","29.946880"],["-90.076610","29.947060"],["-90.076595","29.947160"],["-90.076580","29.947260"],["-90.076530","29.947425"],["-90.076480","29.947590"],["-90.076448","29.947708"],["-90.076415","29.947825"],["-90.076383","29.947943"],["-90.076350","29.948060"],["-90.076310","29.948180"],["-90.076270","29.948300"],["-90.076215","29.948286"],["-90.076270","29.948300"],["-90.076240","29.948400"],["-90.076210","29.948490"],["-90.076170","29.948648"],["-90.076130","29.948805"],["-90.076090","29.948963"],["-90.076050","29.949120"],["-90.076005","29.949290"],["-90.075960","29.949460"],["-90.075913","29.949625"],["-90.075865","29.949790"],["-90.075818","29.949955"],["-90.075770","29.950120"],["-90.075738","29.950230"],["-90.075705","29.950340"],["-90.075673","29.950450"],["-90.075640","29.950560"],["-90.075579","29.950548"],["-90.075640","29.950560"],["-90.075600","29.950680"],["-90.075550","29.950810"],["-90.075540","29.951000"],["-90.075530","29.951080"],["-90.075530","29.951150"],["-90.075530","29.951240"],["-90.075530","29.951290"],["-90.075540","29.951330"],["-90.075550","29.951410"],["-90.075570","29.951560"],["-90.075570","29.951620"],["-90.075570","29.951710"],["-90.075570","29.951780"],["-90.075570","29.951830"],["-90.075570","29.951870"],["-90.075570","29.951910"],["-90.075560","29.951950"],["-90.075474","29.951945"],["-90.075560","29.951950"],["-90.075560","29.951960"],["-90.075540","29.952110"],["-90.075510","29.952260"],["-90.075480","29.952370"],["-90.075450","29.952480"],["-90.075410","29.952595"],["-90.075370","29.952710"],["-90.075340","29.952820"],["-90.075310","29.952930"],["-90.075265","29.953080"],["-90.075220","29.953230"],["-90.075180","29.953350"],["-90.075160","29.953430"],["-90.075150","29.953480"],["-90.075118","29.953590"],["-90.075085","29.953700"],["-90.075053","29.953810"],["-90.075020","29.953920"],["-90.074970","29.954040"],["-90.074940","29.954130"],["-90.074900","29.954210"],["-90.074850","29.954290"],["-90.074780","29.954380"],["-90.074706","29.954333"],["-90.074780","29.954380"],["-90.074750","29.954410"],["-90.074700","29.954470"],["-90.074600","29.954570"],["-90.074550","29.954610"],["-90.074490","29.954670"],["-90.074420","29.954750"],["-90.074350","29.954830"],["-90.074280","29.954910"],["-90.074195","29.954995"],["-90.074110","29.955080"],["-90.073980","29.955220"],["-90.073848","29.955373"],["-90.073715","29.955525"],["-90.073583","29.955678"],["-90.073450","29.955830"],["-90.073410","29.955870"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071990","29.957490"],["-90.071880","29.957610"],["-90.071797","29.957551"],["-90.071880","29.957610"],["-90.071780","29.957720"],["-90.071655","29.957860"],["-90.071530","29.958000"],["-90.071405","29.958140"],["-90.071280","29.958280"],["-90.071170","29.958405"],["-90.071060","29.958530"],["-90.070968","29.958635"],["-90.070875","29.958740"],["-90.070783","29.958845"],["-90.070690","29.958950"],["-90.070590","29.959065"],["-90.070490","29.959180"],["-90.070397","29.959116"],["-90.070490","29.959180"],["-90.070400","29.959270"],["-90.070315","29.959365"],["-90.070230","29.959460"],["-90.070120","29.959600"],["-90.070040","29.959690"],["-90.069970","29.959790"],["-90.069950","29.959820"],["-90.069910","29.959890"],["-90.069890","29.959940"],["-90.069880","29.959960"],["-90.069870","29.959990"],["-90.069860","29.960020"],["-90.069850","29.960090"],["-90.069830","29.960180"],["-90.069820","29.960240"],["-90.069790","29.960310"],["-90.069790","29.960410"],["-90.069800","29.960480"],["-90.069810","29.960540"],["-90.069820","29.960620"],["-90.069830","29.960670"],["-90.069850","29.960730"],["-90.069860","29.960780"],["-90.069880","29.960830"],["-90.069930","29.960940"],["-90.069980","29.961030"],["-90.070030","29.961100"],["-90.070070","29.961160"],["-90.070120","29.961210"],["-90.070230","29.961320"],["-90.070280","29.961370"],["-90.070267","29.961523"],["-90.070340","29.961600"],["-90.070460","29.961510"],["-90.070500","29.961550"],["-90.070540","29.961610"],["-90.070570","29.961640"],["-90.070640","29.961710"],["-90.070670","29.961760"],["-90.070690","29.961780"],["-90.070700","29.961810"],["-90.070720","29.961840"],["-90.070750","29.961870"],["-90.070760","29.961900"],["-90.070790","29.961950"],["-90.070800","29.961980"],["-90.070820","29.962020"],["-90.070860","29.962200"],["-90.070895","29.962310"],["-90.070930","29.962420"],["-90.070970","29.962550"],["-90.071020","29.962700"],["-90.071050","29.962760"],["-90.071080","29.962840"],["-90.071110","29.962890"],["-90.071160","29.962960"],["-90.071190","29.963000"],["-90.071220","29.963040"],["-90.071240","29.963060"],["-90.071250","29.963090"],["-90.071390","29.963190"],["-90.071330","29.963260"],["-90.071273","29.963222"],["-90.071330","29.963260"],["-90.071390","29.963190"],["-90.071535","29.963290"],["-90.071680","29.963390"],["-90.071800","29.963473"],["-90.071920","29.963555"],["-90.072040","29.963638"],["-90.072160","29.963720"],["-90.072256","29.963785"],["-90.072352","29.963850"],["-90.072449","29.963915"],["-90.072545","29.963980"],["-90.072641","29.964045"],["-90.072737","29.964110"],["-90.072834","29.964175"],["-90.072930","29.964240"],["-90.072840","29.964350"],["-90.072750","29.964460"],["-90.072660","29.964570"],["-90.072570","29.964680"],["-90.072440","29.964820"],["-90.072310","29.964960"],["-90.072200","29.965080"],["-90.072090","29.965200"],["-90.071990","29.965310"],["-90.071890","29.965420"],["-90.071868","29.965409"],["-90.071890","29.965420"],["-90.071840","29.965480"],["-90.071720","29.965625"],["-90.071600","29.965770"],["-90.071580","29.965780"],["-90.071560","29.965800"],["-90.071530","29.965830"],["-90.071450","29.965910"],["-90.071360","29.966000"],["-90.071340","29.966010"],["-90.071260","29.966100"],["-90.071180","29.966190"],["-90.071100","29.966320"],["-90.071000","29.966430"],["-90.070900","29.966540"],["-90.070780","29.966680"],["-90.070745","29.966658"],["-90.070780","29.966680"],["-90.070740","29.966720"],["-90.070653","29.966815"],["-90.070565","29.966910"],["-90.070478","29.967005"],["-90.070390","29.967100"],["-90.070320","29.967190"],["-90.070220","29.967305"],["-90.070120","29.967420"],["-90.070030","29.967515"],["-90.069940","29.967610"],["-90.069840","29.967730"],["-90.069770","29.967815"],["-90.069700","29.967900"],["-90.069690","29.967900"],["-90.069620","29.967975"],["-90.069550","29.968050"],["-90.069510","29.968100"],["-90.069490","29.968120"],["-90.069450","29.968160"],["-90.069410","29.968190"],["-90.069400","29.968200"],["-90.069390","29.968200"],["-90.069360","29.968210"],["-90.069275","29.968310"],["-90.069190","29.968410"],["-90.069105","29.968510"],["-90.069020","29.968610"],["-90.068940","29.968705"],["-90.068860","29.968800"],["-90.068778","29.968895"],["-90.068695","29.968990"],["-90.068613","29.969085"],["-90.068530","29.969180"],["-90.068531","29.969183"],["-90.068530","29.969180"],["-90.068500","29.969210"],["-90.068390","29.969330"],["-90.068315","29.969415"],["-90.068240","29.969500"],["-90.068170","29.969580"],["-90.068100","29.969660"],["-90.068080","29.969690"],["-90.068030","29.969740"],["-90.067970","29.969810"],["-90.067950","29.969830"],["-90.067890","29.969900"],["-90.067795","29.970010"],["-90.067700","29.970120"],["-90.067618","29.970213"],["-90.067535","29.970305"],["-90.067453","29.970398"],["-90.067370","29.970490"],["-90.067275","29.970595"],["-90.067180","29.970700"],["-90.067085","29.970805"],["-90.066980","29.970930"],["-90.066986","29.970903"],["-90.066980","29.970930"],["-90.066893","29.971028"],["-90.066805","29.971125"],["-90.066718","29.971223"],["-90.066630","29.971320"],["-90.066543","29.971418"],["-90.066455","29.971515"],["-90.066368","29.971613"],["-90.066255","29.971699"],["-90.066156","29.971811"],["-90.066058","29.971923"],["-90.065959","29.972036"],["-90.065861","29.972148"],["-90.065762","29.972260"],["-90.065664","29.972372"],["-90.065565","29.972485"],["-90.065467","29.972597"],["-90.065566","29.972763"],["-90.065665","29.972929"],["-90.065764","29.973095"],["-90.065863","29.973261"],["-90.065962","29.973427"],["-90.066062","29.973593"],["-90.066161","29.973759"],["-90.066260","29.973925"],["-90.066330","29.974040"],["-90.066311","29.974042"],["-90.066330","29.974040"],["-90.066350","29.974080"],["-90.066402","29.974178"],["-90.066455","29.974275"],["-90.066507","29.974373"],["-90.066560","29.974470"],["-90.066630","29.974625"],["-90.066700","29.974780"],["-90.066765","29.974900"],["-90.066830","29.975020"],["-90.066892","29.975125"],["-90.066955","29.975230"],["-90.067017","29.975335"],["-90.067080","29.975440"],["-90.067175","29.975600"],["-90.067270","29.975760"],["-90.067245","29.975759"],["-90.067270","29.975760"],["-90.067345","29.975880"],["-90.067420","29.976000"],["-90.067470","29.976080"],["-90.067570","29.976220"],["-90.067610","29.976280"],["-90.067680","29.976400"],["-90.067750","29.976520"],["-90.067770","29.976580"],["-90.067830","29.976690"],["-90.067930","29.976830"],["-90.067970","29.976890"],["-90.068020","29.976990"],["-90.068030","29.977010"],["-90.068080","29.977100"],["-90.068100","29.977130"],["-90.068160","29.977235"],["-90.068220","29.977340"],["-90.068310","29.977500"],["-90.068360","29.977580"],["-90.068345","29.977602"],["-90.068360","29.977600"],["-90.068380","29.977630"],["-90.068470","29.977785"],["-90.068560","29.977940"],["-90.068650","29.978095"],["-90.068740","29.978250"],["-90.068830","29.978410"],["-90.068880","29.978500"],["-90.068930","29.978590"],["-90.068901","29.978581"],["-90.068940","29.978590"],["-90.069040","29.978760"],["-90.069070","29.978830"],["-90.069090","29.978860"],["-90.069180","29.979000"],["-90.069200","29.979050"],["-90.069260","29.979140"],["-90.069350","29.979305"],["-90.069440","29.979470"],["-90.069490","29.979540"],["-90.069547","29.979640"],["-90.069605","29.979740"],["-90.069662","29.979840"],["-90.069720","29.979940"],["-90.069719","29.979938"],["-90.069720","29.979940"],["-90.069740","29.979990"],["-90.069830","29.980130"],["-90.069882","29.980220"],["-90.069935","29.980310"],["-90.069987","29.980400"],["-90.070040","29.980490"],["-90.070107","29.980613"],["-90.070175","29.980735"],["-90.070242","29.980858"],["-90.070310","29.980980"],["-90.070370","29.981084"],["-90.070430","29.981188"],["-90.070490","29.981291"],["-90.070550","29.981395"],["-90.070610","29.981499"],["-90.070670","29.981603"],["-90.070730","29.981706"],["-90.070790","29.981810"],["-90.070830","29.981880"],["-90.070799","29.981898"],["-90.070830","29.981880"],["-90.070860","29.981940"],["-90.070935","29.982065"],["-90.071010","29.982190"],["-90.071070","29.982295"],["-90.071130","29.982400"],["-90.071140","29.982430"],["-90.071180","29.982490"],["-90.071200","29.982530"],["-90.071262","29.982633"],["-90.071325","29.982735"],["-90.071387","29.982838"],["-90.071450","29.982940"],["-90.071490","29.983000"],["-90.071560","29.983125"],["-90.071630","29.983250"],["-90.071628","29.983255"],["-90.071630","29.983250"],["-90.071650","29.983290"],["-90.071770","29.983440"],["-90.071817","29.983533"],["-90.071865","29.983625"],["-90.071912","29.983718"],["-90.071960","29.983810"],["-90.072020","29.983920"],["-90.072070","29.984040"],["-90.072135","29.984155"],["-90.072200","29.984270"],["-90.072290","29.984430"],["-90.072357","29.984550"],["-90.072425","29.984670"],["-90.072492","29.984790"],["-90.072560","29.984910"],["-90.072540","29.985090"],["-90.072555","29.985280"],["-90.072570","29.985470"],["-90.072585","29.985660"],["-90.072555","29.985758"],["-90.072525","29.985855"],["-90.072590","29.985850"],["-90.072600","29.985920"],["-90.072610","29.986045"],["-90.072620","29.986170"],["-90.072632","29.986340"],["-90.072645","29.986510"],["-90.072657","29.986680"],["-90.072670","29.986850"],["-90.072680","29.986930"],["-90.072692","29.987083"],["-90.072705","29.987235"],["-90.072717","29.987388"],["-90.072730","29.987540"],["-90.072740","29.987695"],["-90.072750","29.987850"],["-90.072682","29.987850"],["-90.072750","29.987850"],["-90.072750","29.987950"],["-90.072765","29.988085"],["-90.072780","29.988220"],["-90.072792","29.988388"],["-90.072805","29.988555"],["-90.072817","29.988723"],["-90.072830","29.988890"],["-90.072840","29.988960"],["-90.072840","29.989125"],["-90.072840","29.989290"],["-90.072773","29.989287"],["-90.072840","29.989290"],["-90.072840","29.989380"],["-90.072850","29.989530"],["-90.072860","29.989655"],["-90.072870","29.989780"],["-90.072880","29.989900"],["-90.072890","29.990020"],["-90.072900","29.990190"],["-90.072910","29.990295"],["-90.072920","29.990400"],["-90.072935","29.990565"],["-90.072950","29.990730"],["-90.072960","29.990900"],["-90.072970","29.990980"],["-90.072975","29.991115"],["-90.072980","29.991250"],["-90.072980","29.991270"],["-90.072990","29.991330"],["-90.072990","29.991390"],["-90.072990","29.991400"],["-90.073000","29.991450"],["-90.073000","29.991520"],["-90.073010","29.991550"],["-90.073010","29.991560"],["-90.073010","29.991570"],["-90.073010","29.991630"],["-90.073020","29.991730"],["-90.073030","29.991830"],["-90.072929","29.991833"],["-90.073030","29.991830"],["-90.073050","29.991990"],["-90.073050","29.992000"],["-90.073060","29.992170"],["-90.073070","29.992190"],["-90.073079","29.992294"],["-90.073087","29.992398"],["-90.073096","29.992501"],["-90.073105","29.992605"],["-90.073114","29.992709"],["-90.073122","29.992813"],["-90.073131","29.992916"],["-90.073140","29.993020"],["-90.073147","29.993134"],["-90.073155","29.993248"],["-90.073162","29.993361"],["-90.073170","29.993475"],["-90.073177","29.993589"],["-90.073185","29.993703"],["-90.073192","29.993816"],["-90.073200","29.993930"],["-90.073141","29.993936"],["-90.073200","29.993930"],["-90.073210","29.994030"],["-90.073221","29.994158"],["-90.073232","29.994285"],["-90.073244","29.994413"],["-90.073255","29.994540"],["-90.073266","29.994668"],["-90.073277","29.994795"],["-90.073289","29.994923"],["-90.073300","29.995050"],["-90.073307","29.995163"],["-90.073315","29.995275"],["-90.073322","29.995388"],["-90.073330","29.995500"],["-90.073337","29.995613"],["-90.073345","29.995725"],["-90.073352","29.995838"],["-90.073360","29.995950"],["-90.073296","29.995956"],["-90.073360","29.995950"],["-90.073370","29.996060"],["-90.073380","29.996186"],["-90.073390","29.996313"],["-90.073400","29.996439"],["-90.073410","29.996565"],["-90.073420","29.996691"],["-90.073430","29.996818"],["-90.073440","29.996944"],["-90.073450","29.997070"],["-90.073459","29.997173"],["-90.073467","29.997275"],["-90.073476","29.997378"],["-90.073485","29.997480"],["-90.073494","29.997583"],["-90.073502","29.997685"],["-90.073511","29.997788"],["-90.073520","29.997890"],["-90.073520","29.997930"],["-90.073530","29.998000"],["-90.073459","29.998000"],["-90.073530","29.998000"],["-90.073540","29.998090"],["-90.073550","29.998225"],["-90.073560","29.998360"],["-90.073570","29.998495"],["-90.073580","29.998630"],["-90.073587","29.998748"],["-90.073595","29.998865"],["-90.073602","29.998983"],["-90.073610","29.999100"],["-90.073625","29.999285"],["-90.073640","29.999470"],["-90.073652","29.999620"],["-90.073665","29.999770"],["-90.073677","29.999920"],["-90.073690","30.000070"],["-90.073690","30.000120"],["-90.073700","30.000225"],["-90.073710","30.000330"],["-90.073720","30.000435"],["-90.073730","30.000540"],["-90.073682","30.000544"],["-90.073730","30.000540"],["-90.073730","30.000620"],["-90.073740","30.000760"],["-90.073755","30.000940"],["-90.073770","30.001120"],["-90.073780","30.001244"],["-90.073790","30.001368"],["-90.073800","30.001491"],["-90.073810","30.001615"],["-90.073820","30.001739"],["-90.073830","30.001863"],["-90.073840","30.001986"],["-90.073850","30.002110"],["-90.073780","30.002115"],["-90.073850","30.002110"],["-90.073850","30.002170"],["-90.073865","30.002270"],["-90.073880","30.002370"],["-90.073890","30.002450"],["-90.073897","30.002560"],["-90.073905","30.002670"],["-90.073912","30.002780"],["-90.073920","30.002890"],["-90.073930","30.002990"],["-90.073935","30.003135"],["-90.073940","30.003280"],["-90.073950","30.003430"],["-90.073960","30.003550"],["-90.073970","30.003650"],["-90.073894","30.003656"],["-90.073970","30.003650"],["-90.073990","30.003820"],["-90.074000","30.003930"],["-90.074010","30.004040"],["-90.074020","30.004150"],["-90.074030","30.004260"],["-90.074042","30.004445"],["-90.074055","30.004630"],["-90.074067","30.004815"],["-90.074080","30.005000"],["-90.074090","30.005110"],["-90.074036","30.005111"],["-90.074090","30.005110"],["-90.074090","30.005190"],["-90.074110","30.005370"],["-90.074122","30.005503"],["-90.074135","30.005635"],["-90.074147","30.005768"],["-90.074160","30.005900"],["-90.074170","30.006075"],["-90.074180","30.006250"],["-90.074107","30.006252"],["-90.074180","30.006250"],["-90.074190","30.006330"],["-90.074200","30.006460"],["-90.074200","30.006470"],["-90.074210","30.006655"],["-90.074220","30.006840"],["-90.074235","30.006975"],["-90.074250","30.007110"],["-90.074164","30.007115"],["-90.074250","30.007110"],["-90.074260","30.007230"],["-90.074270","30.007420"],["-90.074280","30.007531"],["-90.074290","30.007643"],["-90.074300","30.007754"],["-90.074310","30.007865"],["-90.074320","30.007976"],["-90.074330","30.008088"],["-90.074340","30.008199"],["-90.074350","30.008310"],["-90.074362","30.008478"],["-90.074375","30.008645"],["-90.074387","30.008813"],["-90.074400","30.008980"],["-90.074249","30.008989"],["-90.074400","30.008980"],["-90.074410","30.009050"],["-90.074420","30.009230"],["-90.074432","30.009390"],["-90.074445","30.009550"],["-90.074457","30.009710"],["-90.074470","30.009870"],["-90.074470","30.009880"],["-90.074482","30.010040"],["-90.074495","30.010200"],["-90.074507","30.010360"],["-90.074520","30.010520"],["-90.074530","30.010680"],["-90.074537","30.010798"],["-90.074545","30.010915"],["-90.074552","30.011033"],["-90.074560","30.011150"],["-90.074570","30.011275"],["-90.074580","30.011400"],["-90.074503","30.011403"],["-90.074580","30.011400"],["-90.074580","30.011480"],["-90.074600","30.011670"],["-90.074611","30.011773"],["-90.074622","30.011875"],["-90.074634","30.011978"],["-90.074645","30.012080"],["-90.074656","30.012183"],["-90.074667","30.012285"],["-90.074679","30.012388"],["-90.074690","30.012490"],["-90.074690","30.012570"],["-90.074705","30.012728"],["-90.074720","30.012885"],["-90.074735","30.013043"],["-90.074750","30.013200"],["-90.074660","30.013204"],["-90.074750","30.013200"],["-90.074750","30.013250"],["-90.074760","30.013300"],["-90.074772","30.013463"],["-90.074785","30.013625"],["-90.074797","30.013788"],["-90.074810","30.013950"],["-90.074822","30.014128"],["-90.074835","30.014305"],["-90.074847","30.014483"],["-90.074860","30.014660"],["-90.074875","30.014840"],["-90.074890","30.015020"],["-90.074905","30.015200"],["-90.074920","30.015380"],["-90.074935","30.015530"],["-90.074950","30.015680"],["-90.074862","30.015682"],["-90.074950","30.015680"],["-90.074950","30.015760"],["-90.074955","30.015865"],["-90.074960","30.015970"],["-90.074969","30.016070"],["-90.074977","30.016170"],["-90.074986","30.016270"],["-90.074995","30.016370"],["-90.075004","30.016470"],["-90.075012","30.016570"],["-90.075021","30.016670"],["-90.075030","30.016770"],["-90.075036","30.016874"],["-90.075042","30.016978"],["-90.075049","30.017081"],["-90.075055","30.017185"],["-90.075061","30.017289"],["-90.075067","30.017393"],["-90.075074","30.017496"],["-90.075080","30.017600"],["-90.075087","30.017703"],["-90.075095","30.017805"],["-90.075102","30.017908"],["-90.075110","30.018010"],["-90.075117","30.018113"],["-90.075125","30.018215"],["-90.075132","30.018318"],["-90.075140","30.018420"],["-90.075000","30.018430"],["-90.074993","30.018339"],["-90.075000","30.018430"],["-90.075140","30.018420"],["-90.075157","30.018599"],["-90.075175","30.018778"],["-90.075192","30.018956"],["-90.075210","30.019135"],["-90.075227","30.019314"],["-90.075245","30.019493"],["-90.075262","30.019671"],["-90.075280","30.019850"],["-90.075190","30.019852"],["-90.075280","30.019850"],["-90.075290","30.019980"],["-90.075295","30.020108"],["-90.075300","30.020235"],["-90.075305","30.020363"],["-90.075310","30.020490"],["-90.075310","30.020550"],["-90.075325","30.020725"],["-90.075340","30.020900"],["-90.075350","30.020990"],["-90.075311","30.020996"],["-90.075350","30.020990"],["-90.075360","30.021060"],["-90.075140","30.021080"],["-90.074920","30.021100"],["-90.074780","30.021110"],["-90.074640","30.021120"],["-90.074470","30.021130"],["-90.074290","30.021140"],["-90.074110","30.021150"],["-90.073910","30.021200"],["-90.073820","30.021230"],["-90.073770","30.021260"],["-90.073700","30.021310"],["-90.073640","30.021390"],["-90.073585","30.021490"],["-90.073530","30.021590"],["-90.073460","30.021700"],["-90.073390","30.021790"],["-90.073290","30.021920"],["-90.073220","30.021995"],["-90.073150","30.022070"],["-90.073128","30.021989"],["-90.073150","30.022070"],["-90.073050","30.022160"],["-90.072955","30.022240"],["-90.072860","30.022320"],["-90.072765","30.022385"],["-90.072670","30.022450"],["-90.072560","30.022510"],["-90.072520","30.022530"],["-90.072393","30.022595"],["-90.072265","30.022660"],["-90.072138","30.022725"],["-90.072010","30.022790"],["-90.071940","30.022820"],["-90.071897","30.022761"],["-90.071940","30.022820"],["-90.071790","30.022890"],["-90.071663","30.022955"],["-90.071535","30.023020"],["-90.071408","30.023085"],["-90.071280","30.023150"],["-90.071120","30.023210"],["-90.070960","30.023270"],["-90.070850","30.023293"],["-90.070740","30.023315"],["-90.070630","30.023338"],["-90.070520","30.023360"],["-90.070460","30.023380"],["-90.070340","30.023410"],["-90.070220","30.023440"],["-90.070070","30.023460"],["-90.069900","30.023480"],["-90.069810","30.023480"],["-90.069640","30.023490"],["-90.069560","30.023490"],["-90.069405","30.023485"],["-90.069250","30.023480"],["-90.069100","30.023465"],["-90.068950","30.023450"],["-90.068770","30.023430"],["-90.068690","30.023420"],["-90.068600","30.023430"],["-90.068420","30.023400"],["-90.068310","30.023400"],["-90.068120","30.023400"],["-90.067970","30.023410"],["-90.067760","30.023430"],["-90.067750","30.023340"],["-90.067812","30.023339"],["-90.067750","30.023340"],["-90.067760","30.023420"],["-90.067548","30.023433"],["-90.067335","30.023445"],["-90.067123","30.023458"],["-90.066910","30.023470"],["-90.066758","30.023483"],["-90.066605","30.023495"],["-90.066453","30.023508"],["-90.066300","30.023520"],["-90.066130","30.023530"],["-90.066132","30.023509"],["-90.066130","30.023530"],["-90.066050","30.023540"],["-90.065980","30.023570"],["-90.065870","30.023570"],["-90.065665","30.023620"],["-90.065460","30.023670"],["-90.065290","30.023720"],["-90.065175","30.023755"],["-90.065060","30.023790"],["-90.064905","30.023845"],["-90.064750","30.023900"],["-90.064575","30.023980"],["-90.064400","30.024060"],["-90.064370","30.024070"],["-90.064381","30.024058"],["-90.064370","30.024070"],["-90.064275","30.024120"],["-90.064180","30.024170"],["-90.064085","30.024220"],["-90.063990","30.024270"],["-90.063878","30.024330"],["-90.063765","30.024390"],["-90.063653","30.024450"],["-90.063540","30.024510"],["-90.063420","30.024570"],["-90.063285","30.024625"],["-90.063150","30.024680"],["-90.063040","30.024720"],["-90.062930","30.024760"],["-90.062810","30.024795"],["-90.062690","30.024830"],["-90.062575","30.024860"],["-90.062460","30.024890"],["-90.062280","30.024925"],["-90.062100","30.024960"],["-90.061965","30.024975"],["-90.061830","30.024990"],["-90.061670","30.025010"],["-90.061500","30.025020"],["-90.061310","30.025030"],["-90.061120","30.025040"],["-90.061125","30.025145"],["-90.061130","30.025250"],["-90.061145","30.025405"],["-90.061160","30.025560"],["-90.061070","30.025569"],["-90.061160","30.025560"],["-90.061170","30.025730"],["-90.061180","30.025848"],["-90.061190","30.025965"],["-90.061200","30.026083"],["-90.061210","30.026200"],["-90.061222","30.026370"],["-90.061235","30.026540"],["-90.061247","30.026710"],["-90.061260","30.026880"],["-90.061275","30.027043"],["-90.061290","30.027205"],["-90.061305","30.027368"],["-90.061312","30.027464"],["-90.061320","30.027560"],["-90.061279","30.027533"],["-90.061320","30.027560"],["-90.061332","30.027715"],["-90.061345","30.027870"],["-90.061357","30.028025"],["-90.061370","30.028180"],["-90.061382","30.028335"],["-90.061395","30.028490"],["-90.061407","30.028645"],["-90.061420","30.028800"],["-90.061435","30.028960"],["-90.061450","30.029120"],["-90.061480","30.029120"],["-90.061530","30.029110"],["-90.061650","30.029100"],["-90.061830","30.029080"],["-90.061940","30.029053"],["-90.062050","30.029025"],["-90.062160","30.028998"],["-90.062270","30.028970"],["-90.062380","30.028943"],["-90.062490","30.028915"],["-90.062600","30.028888"],["-90.062710","30.028860"],["-90.062870","30.028820"],["-90.062880","30.028820"],["-90.063080","30.028780"],["-90.063190","30.028760"],["-90.063300","30.028740"],["-90.063450","30.028700"],["-90.063600","30.028660"],["-90.063750","30.028620"],["-90.063900","30.028580"],["-90.064080","30.028540"],["-90.064150","30.028520"],["-90.064293","30.028483"],["-90.064435","30.028445"],["-90.064578","30.028408"],["-90.064720","30.028370"],["-90.064870","30.028305"],["-90.065020","30.028240"],["-90.065145","30.028235"],["-90.065270","30.028230"],["-90.065310","30.028220"],["-90.065340","30.028200"],["-90.065360","30.028170"],["-90.065370","30.028140"],["-90.065380","30.028100"],["-90.065380","30.028060"],["-90.065370","30.028040"],["-90.065380","30.028020"],["-90.065370","30.027990"],["-90.065412","30.027973"]]}]}},{"type":"Feature","properties":{"route_id":null,"agency_id":null,"route_short_name":null,"route_long_name":null,"route_type":null,"route_color":"#null","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.068741","29.969606"],["-90.075585","30.019995"],["-90.075269","30.016013"],["-90.075096","30.013347"],["-90.074910","30.011734"],["-90.074738","30.009122"],["-90.066850","30.023875"],["-90.074465","30.005985"],["-90.074247","30.003825"],["-90.074012","30.000184"],["-90.073844","29.998167"],["-90.073687","29.996152"],["-90.073524","29.994098"],["-90.073365","29.992070"],["-90.073153","29.989470"],["-90.073017","29.988016"],["-90.072785","29.985935"],["-90.070999","29.981741"],["-90.069695","29.979476"],["-90.069133","29.978516"],["-90.068521","29.977547"],["-90.067473","29.975619"],["-90.067279","29.971217"],["-90.070708","29.967388"],["-90.072160","29.965750"],["-90.074568","30.007005"],["-90.062033","30.028610"],["-90.061763","30.027610"],["-90.061566","30.025278"],["-90.063452","30.024810"],["-90.065782","30.023952"],["-90.068479","30.023786"],["-90.071807","30.023203"],["-90.073307","30.022403"],["-90.065412","30.027973"],["-90.119982","29.955463"],["-90.086519","29.945464"],["-90.066045","29.972989"],["-90.076537","29.948723"],["-90.077250","29.946349"],["-90.080535","29.944007"],["-90.081487","29.942673"],["-90.083392","29.943703"],["-90.084957","29.944558"],["-90.090105","29.945329"],["-90.091353","29.944603"],["-90.092987","29.943697"],["-90.094647","29.942779"],["-90.096126","29.941916"],["-90.099870","29.940776"],["-90.105775","29.940278"],["-90.108095","29.940832"],["-90.109318","29.941657"],["-90.111725","29.943008"],["-90.112945","29.944498"],["-90.113644","29.946287"],["-90.114288","29.947816"],["-90.114873","29.949174"],["-90.115738","29.951168"],["-90.116991","29.953378"],["-90.118627","29.954690"],["-90.075911","29.951058"],["-90.075663","30.020877"],["-90.075482","30.018463"],["-90.103291","29.940506"],["-90.072097","29.983649"],["-90.088120","29.946386"],["-90.074185","30.002240"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070701","29.961305"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-90.075280","29.954073"]]},{"type":"LineString","coordinates":[["-90.065412","30.027973"],["-90.065370","30.027980"],["-90.065370","30.027970"],["-90.065350","30.027950"],["-90.065330","30.027930"],["-90.065290","30.027900"],["-90.065250","30.027890"],["-90.065210","30.027890"],["-90.065190","30.027890"],["-90.065160","30.027890"],["-90.065130","30.027900"],["-90.064930","30.027950"],["-90.064808","30.027980"],["-90.064685","30.028010"],["-90.064563","30.028040"],["-90.064440","30.028070"],["-90.064330","30.028100"],["-90.064230","30.028130"],["-90.064060","30.028170"],["-90.063890","30.028210"],["-90.063710","30.028253"],["-90.063530","30.028295"],["-90.063350","30.028338"],["-90.063170","30.028380"],["-90.062975","30.028440"],["-90.062780","30.028500"],["-90.062760","30.028500"],["-90.062583","30.028543"],["-90.062405","30.028585"],["-90.062228","30.028628"],["-90.062050","30.028670"],["-90.062033","30.028610"],["-90.062050","30.028670"],["-90.061960","30.028700"],["-90.061800","30.028740"],["-90.061789","30.028599"],["-90.061777","30.028458"],["-90.061766","30.028316"],["-90.061755","30.028175"],["-90.061744","30.028034"],["-90.061732","30.027893"],["-90.061721","30.027751"],["-90.061763","30.027610"],["-90.061717","30.027435"],["-90.061670","30.027259"],["-90.061649","30.027180"],["-90.061633","30.027001"],["-90.061618","30.026821"],["-90.061603","30.026642"],["-90.061588","30.026462"],["-90.061590","30.026315"],["-90.061580","30.026170"],["-90.061570","30.026059"],["-90.061560","30.025948"],["-90.061550","30.025836"],["-90.061540","30.025725"],["-90.061530","30.025614"],["-90.061520","30.025503"],["-90.061510","30.025391"],["-90.061560","30.025220"],["-90.061566","30.025278"],["-90.061560","30.025220"],["-90.061755","30.025205"],["-90.061950","30.025190"],["-90.062070","30.025175"],["-90.062190","30.025160"],["-90.062400","30.025120"],["-90.062520","30.025100"],["-90.062730","30.025040"],["-90.062920","30.024980"],["-90.063070","30.024930"],["-90.063220","30.024880"],["-90.063230","30.024870"],["-90.063335","30.024830"],["-90.063440","30.024790"],["-90.063452","30.024810"],["-90.063440","30.024790"],["-90.063530","30.024760"],["-90.063620","30.024710"],["-90.063660","30.024690"],["-90.063760","30.024640"],["-90.063860","30.024590"],["-90.063975","30.024530"],["-90.064090","30.024470"],["-90.064270","30.024375"],["-90.064450","30.024280"],["-90.064500","30.024260"],["-90.064590","30.024220"],["-90.064620","30.024210"],["-90.064720","30.024160"],["-90.064830","30.024120"],["-90.065000","30.024060"],["-90.065170","30.024000"],["-90.065310","30.023970"],["-90.065510","30.023930"],["-90.065570","30.023920"],["-90.065770","30.023890"],["-90.065782","30.023952"],["-90.065770","30.023890"],["-90.065870","30.023880"],["-90.066010","30.023870"],["-90.066080","30.023860"],["-90.066270","30.023845"],["-90.066460","30.023830"],["-90.066650","30.023815"],["-90.066840","30.023800"],["-90.066850","30.023875"],["-90.066840","30.023800"],["-90.066940","30.023800"],["-90.067160","30.023785"],["-90.067380","30.023770"],["-90.067585","30.023755"],["-90.067790","30.023740"],["-90.067908","30.023738"],["-90.068025","30.023735"],["-90.068143","30.023733"],["-90.068260","30.023730"],["-90.068470","30.023720"],["-90.068479","30.023786"],["-90.068470","30.023720"],["-90.068620","30.023710"],["-90.068775","30.023700"],["-90.068930","30.023690"],["-90.069145","30.023670"],["-90.069360","30.023650"],["-90.069490","30.023640"],["-90.069620","30.023630"],["-90.069770","30.023610"],["-90.069915","30.023585"],["-90.070060","30.023560"],["-90.070250","30.023530"],["-90.070360","30.023510"],["-90.070470","30.023490"],["-90.070510","30.023480"],["-90.070580","30.023460"],["-90.070770","30.023415"],["-90.070960","30.023370"],["-90.071030","30.023350"],["-90.071175","30.023310"],["-90.071320","30.023270"],["-90.071435","30.023240"],["-90.071550","30.023210"],["-90.071660","30.023170"],["-90.071770","30.023130"],["-90.071807","30.023203"],["-90.071770","30.023130"],["-90.071870","30.023090"],["-90.071970","30.023043"],["-90.072070","30.022995"],["-90.072170","30.022948"],["-90.072270","30.022900"],["-90.072370","30.022853"],["-90.072470","30.022805"],["-90.072570","30.022758"],["-90.072670","30.022710"],["-90.072805","30.022630"],["-90.072940","30.022550"],["-90.073110","30.022455"],["-90.073280","30.022360"],["-90.073307","30.022403"],["-90.073280","30.022360"],["-90.073380","30.022310"],["-90.073540","30.022210"],["-90.073695","30.022105"],["-90.073850","30.022000"],["-90.073975","30.021905"],["-90.074100","30.021810"],["-90.074215","30.021730"],["-90.074330","30.021650"],["-90.074435","30.021575"],["-90.074540","30.021500"],["-90.074670","30.021425"],["-90.074800","30.021350"],["-90.074890","30.021320"],["-90.074980","30.021300"],["-90.075050","30.021290"],["-90.075130","30.021280"],["-90.075220","30.021270"],["-90.075370","30.021260"],["-90.075495","30.021245"],["-90.075620","30.021230"],["-90.075600","30.021050"],["-90.075580","30.020860"],["-90.075663","30.020877"],["-90.075580","30.020860"],["-90.075575","30.020763"],["-90.075570","30.020665"],["-90.075565","30.020568"],["-90.075560","30.020470"],["-90.075545","30.020300"],["-90.075530","30.020130"],["-90.075490","30.019960"],["-90.075580","30.019950"],["-90.075585","30.019995"],["-90.075580","30.019950"],["-90.075490","30.019960"],["-90.075483","30.019863"],["-90.075476","30.019766"],["-90.075469","30.019669"],["-90.075462","30.019573"],["-90.075456","30.019476"],["-90.075449","30.019379"],["-90.075442","30.019282"],["-90.075435","30.019185"],["-90.075428","30.019088"],["-90.075421","30.018991"],["-90.075414","30.018894"],["-90.075407","30.018798"],["-90.075401","30.018701"],["-90.075394","30.018604"],["-90.075387","30.018507"],["-90.075380","30.018410"],["-90.075480","30.018400"],["-90.075482","30.018463"],["-90.075480","30.018400"],["-90.075380","30.018410"],["-90.075372","30.018308"],["-90.075365","30.018205"],["-90.075357","30.018103"],["-90.075350","30.018000"],["-90.075342","30.017898"],["-90.075335","30.017795"],["-90.075327","30.017693"],["-90.075320","30.017590"],["-90.075311","30.017485"],["-90.075302","30.017380"],["-90.075294","30.017275"],["-90.075285","30.017170"],["-90.075276","30.017065"],["-90.075267","30.016960"],["-90.075259","30.016855"],["-90.075250","30.016750"],["-90.075235","30.016568"],["-90.075220","30.016385"],["-90.075205","30.016203"],["-90.075190","30.016020"],["-90.075269","30.016013"],["-90.075190","30.016020"],["-90.075190","30.015950"],["-90.075180","30.015850"],["-90.075170","30.015750"],["-90.075158","30.015596"],["-90.075146","30.015443"],["-90.075134","30.015289"],["-90.075122","30.015135"],["-90.075111","30.014981"],["-90.075099","30.014828"],["-90.075087","30.014674"],["-90.075075","30.014520"],["-90.075063","30.014366"],["-90.075051","30.014213"],["-90.075039","30.014059"],["-90.075027","30.013905"],["-90.075016","30.013751"],["-90.075004","30.013598"],["-90.074992","30.013444"],["-90.074980","30.013290"],["-90.075090","30.013290"],["-90.075096","30.013347"],["-90.075090","30.013290"],["-90.074980","30.013290"],["-90.074971","30.013189"],["-90.074962","30.013088"],["-90.074954","30.012986"],["-90.074945","30.012885"],["-90.074936","30.012784"],["-90.074927","30.012683"],["-90.074919","30.012581"],["-90.074910","30.012480"],["-90.074897","30.012295"],["-90.074885","30.012110"],["-90.074872","30.011925"],["-90.074860","30.011740"],["-90.074910","30.011734"],["-90.074860","30.011740"],["-90.074850","30.011660"],["-90.074840","30.011470"],["-90.074832","30.011369"],["-90.074825","30.011268"],["-90.074817","30.011166"],["-90.074810","30.011065"],["-90.074802","30.010964"],["-90.074795","30.010863"],["-90.074787","30.010761"],["-90.074780","30.010660"],["-90.074771","30.010560"],["-90.074762","30.010460"],["-90.074754","30.010360"],["-90.074745","30.010260"],["-90.074736","30.010160"],["-90.074727","30.010060"],["-90.074719","30.009960"],["-90.074710","30.009860"],["-90.074695","30.009678"],["-90.074680","30.009495"],["-90.074665","30.009313"],["-90.074650","30.009130"],["-90.074738","30.009122"],["-90.074650","30.009130"],["-90.074650","30.009050"],["-90.074632","30.008863"],["-90.074615","30.008675"],["-90.074597","30.008488"],["-90.074580","30.008300"],["-90.074578","30.008138"],["-90.074577","30.007976"],["-90.074575","30.007814"],["-90.074574","30.007653"],["-90.074572","30.007491"],["-90.074571","30.007329"],["-90.074569","30.007167"],["-90.074568","30.007005"],["-90.074568","30.007005"],["-90.074471","30.006941"],["-90.074453","30.006793"],["-90.074435","30.006645"],["-90.074420","30.006460"],["-90.074410","30.006320"],["-90.074400","30.006155"],["-90.074390","30.005990"],["-90.074465","30.005985"],["-90.074390","30.005990"],["-90.074380","30.005890"],["-90.074370","30.005790"],["-90.074360","30.005690"],["-90.074350","30.005525"],["-90.074340","30.005360"],["-90.074320","30.005180"],["-90.074307","30.005010"],["-90.074295","30.004840"],["-90.074282","30.004670"],["-90.074270","30.004500"],["-90.074257","30.004333"],["-90.074245","30.004165"],["-90.074232","30.003998"],["-90.074221","30.003899"],["-90.074210","30.003800"],["-90.074247","30.003825"],["-90.074210","30.003800"],["-90.074200","30.003665"],["-90.074190","30.003530"],["-90.074180","30.003395"],["-90.074170","30.003260"],["-90.074160","30.003130"],["-90.074145","30.002955"],["-90.074130","30.002780"],["-90.074115","30.002605"],["-90.074100","30.002430"],["-90.074090","30.002240"],["-90.074185","30.002240"],["-90.074090","30.002240"],["-90.074080","30.002160"],["-90.074090","30.002130"],["-90.074090","30.002120"],["-90.074090","30.002110"],["-90.074090","30.002100"],["-90.074090","30.002080"],["-90.074075","30.001945"],["-90.074060","30.001810"],["-90.074047","30.001635"],["-90.074035","30.001460"],["-90.074022","30.001285"],["-90.074010","30.001110"],["-90.074010","30.001070"],["-90.074000","30.001040"],["-90.074000","30.000990"],["-90.073990","30.000900"],["-90.073980","30.000820"],["-90.073970","30.000740"],["-90.073970","30.000610"],["-90.073962","30.000505"],["-90.073955","30.000400"],["-90.073947","30.000295"],["-90.073940","30.000190"],["-90.074012","30.000184"],["-90.073940","30.000190"],["-90.073930","30.000100"],["-90.073922","29.999990"],["-90.073915","29.999880"],["-90.073907","29.999770"],["-90.073900","29.999660"],["-90.073887","29.999518"],["-90.073875","29.999375"],["-90.073862","29.999233"],["-90.073850","29.999090"],["-90.073840","29.998920"],["-90.073825","29.998735"],["-90.073810","29.998550"],["-90.073795","29.998360"],["-90.073780","29.998170"],["-90.073844","29.998167"],["-90.073780","29.998170"],["-90.073770","29.998070"],["-90.073760","29.997910"],["-90.073750","29.997793"],["-90.073740","29.997675"],["-90.073730","29.997558"],["-90.073720","29.997440"],["-90.073705","29.997250"],["-90.073690","29.997060"],["-90.073675","29.996930"],["-90.073660","29.996800"],["-90.073655","29.996695"],["-90.073650","29.996590"],["-90.073640","29.996475"],["-90.073630","29.996360"],["-90.073620","29.996260"],["-90.073610","29.996160"],["-90.073687","29.996152"],["-90.073610","29.996160"],["-90.073600","29.996040"],["-90.073590","29.995914"],["-90.073580","29.995788"],["-90.073570","29.995661"],["-90.073560","29.995535"],["-90.073550","29.995409"],["-90.073540","29.995283"],["-90.073530","29.995156"],["-90.073520","29.995030"],["-90.073510","29.994914"],["-90.073500","29.994798"],["-90.073490","29.994681"],["-90.073480","29.994565"],["-90.073470","29.994449"],["-90.073460","29.994333"],["-90.073450","29.994216"],["-90.073440","29.994100"],["-90.073524","29.994098"],["-90.073440","29.994100"],["-90.073440","29.994020"],["-90.073430","29.993893"],["-90.073420","29.993765"],["-90.073410","29.993638"],["-90.073400","29.993510"],["-90.073390","29.993385"],["-90.073380","29.993260"],["-90.073370","29.993135"],["-90.073360","29.993010"],["-90.073351","29.992893"],["-90.073342","29.992775"],["-90.073334","29.992658"],["-90.073325","29.992540"],["-90.073316","29.992423"],["-90.073307","29.992305"],["-90.073299","29.992188"],["-90.073290","29.992070"],["-90.073365","29.992070"],["-90.073290","29.992070"],["-90.073280","29.991990"],["-90.073280","29.991980"],["-90.073270","29.991850"],["-90.073250","29.991660"],["-90.073240","29.991610"],["-90.073240","29.991600"],["-90.073220","29.991480"],["-90.073200","29.991430"],["-90.073200","29.991410"],["-90.073180","29.991300"],["-90.073170","29.991260"],["-90.073150","29.991135"],["-90.073130","29.991010"],["-90.073110","29.990900"],["-90.073090","29.990800"],["-90.073085","29.990650"],["-90.073080","29.990500"],["-90.073083","29.990380"],["-90.073085","29.990260"],["-90.073088","29.990140"],["-90.073090","29.990020"],["-90.073090","29.989920"],["-90.073100","29.989770"],["-90.073100","29.989680"],["-90.073090","29.989520"],["-90.073090","29.989470"],["-90.073153","29.989470"],["-90.073090","29.989470"],["-90.073080","29.989380"],["-90.073050","29.989240"],["-90.073035","29.989095"],["-90.073020","29.988950"],["-90.073005","29.988800"],["-90.072990","29.988650"],["-90.072970","29.988460"],["-90.072960","29.988380"],["-90.072945","29.988200"],["-90.072930","29.988020"],["-90.073017","29.988016"],["-90.072930","29.988020"],["-90.072920","29.987940"],["-90.072910","29.987820"],["-90.072900","29.987720"],["-90.072890","29.987620"],["-90.072890","29.987510"],["-90.072877","29.987363"],["-90.072865","29.987215"],["-90.072852","29.987068"],["-90.072840","29.986920"],["-90.072830","29.986808"],["-90.072820","29.986695"],["-90.072810","29.986583"],["-90.072800","29.986470"],["-90.072800","29.986390"],["-90.072790","29.986260"],["-90.072780","29.986200"],["-90.072770","29.986060"],["-90.072760","29.985920"],["-90.072785","29.985935"],["-90.072760","29.985920"],["-90.072750","29.985800"],["-90.072740","29.985680"],["-90.072740","29.985600"],["-90.072760","29.985540"],["-90.072780","29.985480"],["-90.072830","29.985410"],["-90.072950","29.985290"],["-90.072892","29.985185"],["-90.072835","29.985080"],["-90.072777","29.984975"],["-90.072720","29.984870"],["-90.072611","29.984707"],["-90.072522","29.984545"],["-90.072434","29.984382"],["-90.072399","29.984319"],["-90.072301","29.984160"],["-90.072204","29.984001"],["-90.072151","29.983827"],["-90.072097","29.983649"],["-90.071958","29.983515"],["-90.071819","29.983382"],["-90.071740","29.983240"],["-90.071651","29.983077"],["-90.071563","29.982915"],["-90.071474","29.982752"],["-90.071386","29.982589"],["-90.071298","29.982426"],["-90.071208","29.982264"],["-90.071118","29.982102"],["-90.071061","29.981929"],["-90.071004","29.981756"],["-90.070999","29.981741"],["-90.070877","29.981595"],["-90.070756","29.981449"],["-90.070722","29.981409"],["-90.070628","29.981249"],["-90.070570","29.981150"],["-90.070479","29.980988"],["-90.070440","29.980920"],["-90.070344","29.980761"],["-90.070248","29.980601"],["-90.070152","29.980442"],["-90.070120","29.980389"],["-90.070029","29.980227"],["-90.069937","29.980066"],["-90.069860","29.979929"],["-90.069774","29.979765"],["-90.069726","29.979590"],["-90.069695","29.979476"],["-90.069576","29.979329"],["-90.069457","29.979181"],["-90.069400","29.979110"],["-90.069310","29.978960"],["-90.069212","29.978801"],["-90.069164","29.978626"],["-90.069133","29.978516"],["-90.069014","29.978369"],["-90.068895","29.978221"],["-90.068852","29.978168"],["-90.068829","29.978129"],["-90.068737","29.977968"],["-90.068646","29.977806"],["-90.068566","29.977640"],["-90.068521","29.977547"],["-90.068421","29.977390"],["-90.068320","29.977232"],["-90.068226","29.977072"],["-90.068150","29.976940"],["-90.068066","29.976776"],["-90.067981","29.976611"],["-90.067950","29.976550"],["-90.067854","29.976390"],["-90.067830","29.976350"],["-90.067735","29.976190"],["-90.067640","29.976030"],["-90.067571","29.975860"],["-90.067502","29.975691"],["-90.067473","29.975619"],["-90.067364","29.975466"],["-90.067255","29.975313"],["-90.067147","29.975159"],["-90.067049","29.975001"],["-90.067000","29.974920"],["-90.066910","29.974758"],["-90.066850","29.974650"],["-90.066758","29.974489"],["-90.066666","29.974328"],["-90.066574","29.974166"],["-90.066490","29.974020"],["-90.066396","29.973860"],["-90.066301","29.973700"],["-90.066209","29.973538"],["-90.066130","29.973400"],["-90.066093","29.973223"],["-90.066057","29.973046"],["-90.066045","29.972989"],["-90.065970","29.972990"],["-90.065970","29.972810"],["-90.065970","29.972800"],["-90.065970","29.972760"],["-90.065980","29.972670"],["-90.066050","29.972600"],["-90.066110","29.972530"],["-90.066230","29.972393"],["-90.066350","29.972255"],["-90.066470","29.972118"],["-90.066590","29.971980"],["-90.066708","29.971850"],["-90.066825","29.971720"],["-90.066943","29.971590"],["-90.067060","29.971460"],["-90.067120","29.971390"],["-90.067160","29.971350"],["-90.067279","29.971217"],["-90.067280","29.971210"],["-90.067310","29.971170"],["-90.067435","29.971035"],["-90.067560","29.970900"],["-90.067635","29.970815"],["-90.067710","29.970730"],["-90.067785","29.970645"],["-90.067860","29.970560"],["-90.067940","29.970470"],["-90.067980","29.970420"],["-90.068040","29.970360"],["-90.068130","29.970255"],["-90.068220","29.970150"],["-90.068300","29.970055"],["-90.068380","29.969960"],["-90.068520","29.969820"],["-90.068625","29.969710"],["-90.068730","29.969600"],["-90.068741","29.969606"],["-90.068730","29.969600"],["-90.068750","29.969570"],["-90.068860","29.969450"],["-90.068980","29.969310"],["-90.068990","29.969310"],["-90.069083","29.969205"],["-90.069175","29.969100"],["-90.069268","29.968995"],["-90.069360","29.968890"],["-90.069453","29.968785"],["-90.069545","29.968680"],["-90.069638","29.968575"],["-90.069730","29.968470"],["-90.069810","29.968380"],["-90.069890","29.968290"],["-90.069990","29.968170"],["-90.070050","29.968110"],["-90.070120","29.968033"],["-90.070190","29.967955"],["-90.070260","29.967878"],["-90.070330","29.967800"],["-90.070400","29.967723"],["-90.070470","29.967645"],["-90.070540","29.967568"],["-90.070610","29.967490"],["-90.070660","29.967430"],["-90.070700","29.967380"],["-90.070708","29.967388"],["-90.070700","29.967380"],["-90.070740","29.967330"],["-90.070835","29.967225"],["-90.070930","29.967120"],["-90.071060","29.966980"],["-90.071180","29.966840"],["-90.071305","29.966695"],["-90.071430","29.966550"],["-90.071543","29.966428"],["-90.071655","29.966305"],["-90.071768","29.966183"],["-90.071880","29.966060"],["-90.071900","29.966040"],["-90.071930","29.966010"],["-90.072045","29.965880"],["-90.072160","29.965750"],["-90.072160","29.965750"],["-90.072190","29.965720"],["-90.072290","29.965620"],["-90.072400","29.965500"],["-90.072500","29.965375"],["-90.072600","29.965250"],["-90.072685","29.965155"],["-90.072770","29.965060"],["-90.072900","29.964910"],["-90.072980","29.964820"],["-90.073060","29.964730"],["-90.073150","29.964630"],["-90.073240","29.964530"],["-90.073280","29.964480"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962940"],["-90.071350","29.962930"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070701","29.961305"],["-90.070541","29.961190"],["-90.070455","29.961129"],["-90.070342","29.960978"],["-90.070228","29.960828"],["-90.070132","29.960668"],["-90.070069","29.960497"],["-90.070088","29.960318"],["-90.070120","29.960209"],["-90.070160","29.960080"],["-90.070200","29.960000"],["-90.070310","29.959859"],["-90.070462","29.959736"],["-90.070613","29.959613"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074078","29.955755"],["-90.074000","29.955700"],["-90.074090","29.955605"],["-90.074180","29.955510"],["-90.074280","29.955420"],["-90.074400","29.955280"],["-90.074485","29.955180"],["-90.074570","29.955080"],["-90.074650","29.954988"],["-90.074730","29.954895"],["-90.074810","29.954803"],["-90.074890","29.954710"],["-90.074970","29.954610"],["-90.075060","29.954470"],["-90.075130","29.954360"],["-90.075140","29.954330"],["-90.075210","29.954180"],["-90.075260","29.954070"],["-90.075280","29.954073"],["-90.075326","29.953909"],["-90.075372","29.953745"],["-90.075419","29.953581"],["-90.075465","29.953417"],["-90.075496","29.953305"],["-90.075526","29.953192"],["-90.075557","29.953079"],["-90.075588","29.952967"],["-90.075619","29.952854"],["-90.075650","29.952741"],["-90.075681","29.952628"],["-90.075711","29.952516"],["-90.075742","29.952361"],["-90.075773","29.952207"],["-90.075804","29.952052"],["-90.075835","29.951898"],["-90.075838","29.951734"],["-90.075840","29.951570"],["-90.075843","29.951406"],["-90.075846","29.951242"],["-90.075878","29.951150"],["-90.075911","29.951058"],["-90.075867","29.950908"],["-90.075890","29.950805"],["-90.075913","29.950703"],["-90.075936","29.950601"],["-90.075959","29.950499"],["-90.076000","29.950363"],["-90.076040","29.950226"],["-90.076081","29.950090"],["-90.076121","29.949953"],["-90.076162","29.949817"],["-90.076202","29.949680"],["-90.076244","29.949528"],["-90.076286","29.949375"],["-90.076328","29.949223"],["-90.076371","29.949071"],["-90.076413","29.948919"],["-90.076455","29.948767"],["-90.076537","29.948723"],["-90.076500","29.948710"],["-90.076540","29.948570"],["-90.076560","29.948480"],["-90.076605","29.948300"],["-90.076650","29.948120"],["-90.076675","29.948015"],["-90.076700","29.947910"],["-90.076725","29.947805"],["-90.076750","29.947700"],["-90.076795","29.947555"],["-90.076840","29.947410"],["-90.076885","29.947265"],["-90.076930","29.947120"],["-90.076980","29.946950"],["-90.077025","29.946810"],["-90.077070","29.946670"],["-90.077125","29.946500"],["-90.077158","29.946395"],["-90.077190","29.946290"],["-90.077250","29.946349"],["-90.077190","29.946290"],["-90.077190","29.946270"],["-90.077220","29.946190"],["-90.077235","29.946033"],["-90.077289","29.945859"],["-90.077310","29.945790"],["-90.077422","29.945638"],["-90.077450","29.945600"],["-90.077560","29.945448"],["-90.077692","29.945308"],["-90.077820","29.945220"],["-90.078016","29.945161"],["-90.078223","29.945150"],["-90.078431","29.945158"],["-90.078580","29.945180"],["-90.078700","29.945220"],["-90.078876","29.945316"],["-90.079051","29.945412"],["-90.079140","29.945460"],["-90.079250","29.945480"],["-90.079340","29.945450"],["-90.079420","29.945390"],["-90.079520","29.945240"],["-90.079630","29.945087"],["-90.079740","29.944935"],["-90.079815","29.944845"],["-90.079880","29.944750"],["-90.079940","29.944668"],["-90.080000","29.944585"],["-90.080060","29.944503"],["-90.080120","29.944420"],["-90.080180","29.944338"],["-90.080240","29.944255"],["-90.080300","29.944173"],["-90.080360","29.944090"],["-90.080450","29.943960"],["-90.080535","29.944007"],["-90.080450","29.943960"],["-90.080490","29.943900"],["-90.080565","29.943805"],["-90.080640","29.943710"],["-90.080670","29.943670"],["-90.080755","29.943558"],["-90.080840","29.943445"],["-90.080925","29.943333"],["-90.081010","29.943220"],["-90.081078","29.943130"],["-90.081145","29.943040"],["-90.081213","29.942950"],["-90.081280","29.942860"],["-90.081360","29.942755"],["-90.081440","29.942650"],["-90.081487","29.942673"],["-90.081687","29.942720"],["-90.081855","29.942760"],["-90.082027","29.942861"],["-90.082199","29.942961"],["-90.082372","29.943061"],["-90.082490","29.943130"],["-90.082657","29.943236"],["-90.082825","29.943343"],["-90.082992","29.943449"],["-90.083160","29.943555"],["-90.083327","29.943662"],["-90.083392","29.943703"],["-90.083581","29.943777"],["-90.083771","29.943850"],["-90.083830","29.943873"],["-90.084005","29.943970"],["-90.084181","29.944066"],["-90.084260","29.944110"],["-90.084435","29.944206"],["-90.084570","29.944280"],["-90.084730","29.944395"],["-90.084890","29.944510"],["-90.084957","29.944558"],["-90.085142","29.944640"],["-90.085327","29.944722"],["-90.085407","29.944757"],["-90.085580","29.944856"],["-90.085754","29.944955"],["-90.085849","29.945009"],["-90.086025","29.945104"],["-90.086201","29.945200"],["-90.086310","29.945259"],["-90.086447","29.945394"],["-90.086519","29.945464"],["-90.086717","29.945519"],["-90.086823","29.945549"],["-90.086997","29.945648"],["-90.087170","29.945746"],["-90.087344","29.945845"],["-90.087440","29.945900"],["-90.087600","29.946014"],["-90.087760","29.946129"],["-90.087920","29.946243"],["-90.088081","29.946358"],["-90.088120","29.946386"],["-90.088320","29.946435"],["-90.088454","29.946468"],["-90.088530","29.946510"],["-90.088648","29.946362"],["-90.088774","29.946219"],["-90.088897","29.946074"],["-90.088970","29.945990"],["-90.089117","29.945863"],["-90.089190","29.945800"],["-90.089355","29.945690"],["-90.089519","29.945581"],["-90.089684","29.945471"],["-90.089760","29.945420"],["-90.089959","29.945368"],["-90.090105","29.945329"],["-90.090245","29.945196"],["-90.090344","29.945102"],["-90.090517","29.945003"],["-90.090691","29.944905"],["-90.090770","29.944860"],["-90.090955","29.944778"],["-90.091140","29.944697"],["-90.091325","29.944615"],["-90.091353","29.944603"],["-90.091492","29.944470"],["-90.091563","29.944402"],["-90.091737","29.944304"],["-90.091799","29.944269"],["-90.091975","29.944173"],["-90.092150","29.944077"],["-90.092200","29.944050"],["-90.092384","29.943967"],["-90.092569","29.943885"],["-90.092753","29.943802"],["-90.092937","29.943719"],["-90.092987","29.943697"],["-90.093135","29.943571"],["-90.093284","29.943445"],["-90.093458","29.943347"],["-90.093633","29.943251"],["-90.093809","29.943156"],["-90.093993","29.943073"],["-90.094178","29.942990"],["-90.094362","29.942907"],["-90.094546","29.942824"],["-90.094647","29.942779"],["-90.094780","29.942641"],["-90.094865","29.942552"],["-90.095040","29.942455"],["-90.095214","29.942358"],["-90.095389","29.942261"],["-90.095564","29.942164"],["-90.095738","29.942066"],["-90.095928","29.941993"],["-90.096126","29.941916"],["-90.096261","29.941780"],["-90.096360","29.941680"],["-90.096549","29.941606"],["-90.096738","29.941531"],["-90.096927","29.941457"],["-90.097116","29.941383"],["-90.097305","29.941308"],["-90.097494","29.941234"],["-90.097580","29.941200"],["-90.097769","29.941125"],["-90.097957","29.941050"],["-90.098146","29.940975"],["-90.098210","29.940949"],["-90.098401","29.940878"],["-90.098450","29.940860"],["-90.098640","29.940810"],["-90.098840","29.940761"],["-90.099047","29.940747"],["-90.099254","29.940734"],["-90.099309","29.940730"],["-90.099516","29.940747"],["-90.099722","29.940764"],["-90.099870","29.940776"],["-90.100063","29.940710"],["-90.100167","29.940674"],["-90.100374","29.940658"],["-90.100580","29.940641"],["-90.100787","29.940625"],["-90.100994","29.940609"],["-90.101110","29.940600"],["-90.101317","29.940583"],["-90.101523","29.940566"],["-90.101730","29.940550"],["-90.101937","29.940533"],["-90.102143","29.940516"],["-90.102220","29.940510"],["-90.102427","29.940497"],["-90.102634","29.940483"],["-90.102841","29.940470"],["-90.103048","29.940487"],["-90.103254","29.940503"],["-90.103291","29.940506"],["-90.103486","29.940444"],["-90.103587","29.940411"],["-90.103794","29.940396"],["-90.104001","29.940382"],["-90.104208","29.940367"],["-90.104415","29.940353"],["-90.104621","29.940338"],["-90.104740","29.940330"],["-90.104946","29.940309"],["-90.105075","29.940300"],["-90.105200","29.940290"],["-90.105270","29.940280"],["-90.105340","29.940270"],["-90.105530","29.940240"],["-90.105680","29.940210"],["-90.105830","29.940180"],["-90.105840","29.940270"],["-90.105775","29.940278"],["-90.105840","29.940270"],["-90.105830","29.940180"],["-90.105890","29.940170"],["-90.105970","29.940150"],["-90.106100","29.940130"],["-90.106290","29.940110"],["-90.106450","29.940110"],["-90.106600","29.940120"],["-90.106760","29.940130"],["-90.106885","29.940150"],["-90.107010","29.940170"],["-90.107190","29.940230"],["-90.107340","29.940280"],["-90.107410","29.940310"],["-90.107590","29.940390"],["-90.107710","29.940450"],["-90.107810","29.940520"],["-90.107890","29.940570"],["-90.107980","29.940650"],["-90.108060","29.940725"],["-90.108170","29.940820"],["-90.108095","29.940832"],["-90.108170","29.940820"],["-90.108280","29.940900"],["-90.108360","29.940970"],["-90.108420","29.941020"],["-90.108480","29.941060"],["-90.108575","29.941120"],["-90.108670","29.941180"],["-90.108740","29.941230"],["-90.108895","29.941320"],["-90.109050","29.941410"],["-90.109210","29.941500"],["-90.109370","29.941590"],["-90.109318","29.941657"],["-90.109370","29.941590"],["-90.109440","29.941640"],["-90.109530","29.941700"],["-90.109640","29.941760"],["-90.109780","29.941840"],["-90.109915","29.941920"],["-90.110050","29.942000"],["-90.110145","29.942055"],["-90.110240","29.942110"],["-90.110335","29.942165"],["-90.110430","29.942220"],["-90.110539","29.942284"],["-90.110647","29.942348"],["-90.110756","29.942411"],["-90.110865","29.942475"],["-90.110974","29.942539"],["-90.111082","29.942603"],["-90.111191","29.942666"],["-90.111300","29.942730"],["-90.111445","29.942790"],["-90.111590","29.942850"],["-90.111630","29.942860"],["-90.111770","29.942920"],["-90.111780","29.942920"],["-90.111725","29.943008"],["-90.111780","29.942920"],["-90.111890","29.942980"],["-90.111990","29.943020"],["-90.112110","29.943080"],["-90.112210","29.943150"],["-90.112260","29.943190"],["-90.112400","29.943300"],["-90.112430","29.943340"],["-90.112460","29.943370"],["-90.112510","29.943420"],["-90.112590","29.943500"],["-90.112685","29.943635"],["-90.112780","29.943770"],["-90.112790","29.943800"],["-90.112810","29.943850"],["-90.112830","29.943890"],["-90.112880","29.944010"],["-90.112930","29.944130"],["-90.112980","29.944250"],["-90.113000","29.944330"],["-90.113010","29.944390"],["-90.113030","29.944480"],["-90.112945","29.944498"],["-90.113030","29.944480"],["-90.113050","29.944540"],["-90.113095","29.944680"],["-90.113140","29.944820"],["-90.113150","29.944840"],["-90.113150","29.944860"],["-90.113160","29.944890"],["-90.113210","29.945010"],["-90.113275","29.945155"],["-90.113340","29.945300"],["-90.113350","29.945330"],["-90.113405","29.945465"],["-90.113460","29.945600"],["-90.113540","29.945770"],["-90.113570","29.945860"],["-90.113635","29.946000"],["-90.113700","29.946140"],["-90.113740","29.946260"],["-90.113644","29.946287"],["-90.113740","29.946260"],["-90.113780","29.946350"],["-90.113832","29.946478"],["-90.113885","29.946605"],["-90.113937","29.946733"],["-90.113990","29.946860"],["-90.114020","29.946930"],["-90.114062","29.947033"],["-90.114105","29.947135"],["-90.114147","29.947238"],["-90.114190","29.947340"],["-90.114232","29.947443"],["-90.114275","29.947545"],["-90.114317","29.947648"],["-90.114390","29.947820"],["-90.114288","29.947816"],["-90.114390","29.947820"],["-90.114450","29.947950"],["-90.114530","29.948110"],["-90.114585","29.948239"],["-90.114640","29.948368"],["-90.114695","29.948496"],["-90.114750","29.948625"],["-90.114805","29.948754"],["-90.114860","29.948883"],["-90.114915","29.949011"],["-90.114980","29.949180"],["-90.114873","29.949174"],["-90.114980","29.949180"],["-90.115040","29.949350"],["-90.115110","29.949490"],["-90.115154","29.949595"],["-90.115197","29.949700"],["-90.115241","29.949805"],["-90.115285","29.949910"],["-90.115329","29.950015"],["-90.115372","29.950120"],["-90.115416","29.950225"],["-90.115460","29.950330"],["-90.115507","29.950448"],["-90.115555","29.950565"],["-90.115602","29.950683"],["-90.115650","29.950800"],["-90.115720","29.950975"],["-90.115790","29.951150"],["-90.115738","29.951168"],["-90.115790","29.951150"],["-90.115810","29.951200"],["-90.115860","29.951300"],["-90.115920","29.951448"],["-90.115980","29.951595"],["-90.116040","29.951743"],["-90.116100","29.951890"],["-90.116155","29.952010"],["-90.116210","29.952130"],["-90.116260","29.952240"],["-90.116330","29.952400"],["-90.116400","29.952560"],["-90.116450","29.952650"],["-90.116520","29.952770"],["-90.116580","29.952850"],["-90.116645","29.952930"],["-90.116710","29.953010"],["-90.116810","29.953100"],["-90.116950","29.953220"],["-90.117060","29.953310"],["-90.116991","29.953378"],["-90.117060","29.953310"],["-90.117070","29.953320"],["-90.117140","29.953370"],["-90.117240","29.953440"],["-90.117330","29.953515"],["-90.117420","29.953590"],["-90.117510","29.953665"],["-90.117600","29.953740"],["-90.117720","29.953830"],["-90.117860","29.953940"],["-90.117970","29.954020"],["-90.118087","29.954118"],["-90.118205","29.954215"],["-90.118322","29.954313"],["-90.118440","29.954410"],["-90.118570","29.954515"],["-90.118700","29.954620"],["-90.118627","29.954690"],["-90.118700","29.954620"],["-90.118770","29.954680"],["-90.118864","29.954756"],["-90.118957","29.954833"],["-90.119051","29.954909"],["-90.119145","29.954985"],["-90.119239","29.955061"],["-90.119332","29.955138"],["-90.119426","29.955214"],["-90.119520","29.955290"],["-90.119680","29.955420"],["-90.119866","29.955445"],["-90.119982","29.955463"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.074164","30.007115"],["-90.071868","29.965409"],["-90.070745","29.966658"],["-90.066986","29.970903"],["-90.066311","29.974042"],["-90.067245","29.975759"],["-90.068345","29.977602"],["-90.068901","29.978581"],["-90.069719","29.979938"],["-90.070799","29.981898"],["-90.071628","29.983255"],["-90.072525","29.985855"],["-90.072682","29.987850"],["-90.072773","29.989287"],["-90.072929","29.991833"],["-90.073141","29.993936"],["-90.073296","29.995956"],["-90.073459","29.998000"],["-90.073682","30.000544"],["-90.073780","30.002115"],["-90.073894","30.003656"],["-90.074036","30.005111"],["-90.074503","30.011403"],["-90.061279","30.027533"],["-90.073128","30.021989"],["-90.071897","30.022761"],["-90.067812","30.023339"],["-90.064381","30.024058"],["-90.068531","29.969183"],["-90.065412","30.027973"],["-90.119982","29.955463"],["-90.119104","29.954490"],["-90.117488","29.953205"],["-90.116245","29.950981"],["-90.115405","29.948983"],["-90.114980","29.948050"],["-90.114075","29.945868"],["-90.113466","29.944463"],["-90.112226","29.942718"],["-90.109748","29.941291"],["-90.108213","29.940423"],["-90.105936","29.939815"],["-90.103681","29.939977"],["-90.099994","29.940266"],["-90.097570","29.940823"],["-90.096350","29.941289"],["-90.092862","29.943174"],["-90.091195","29.944088"],["-90.089989","29.944838"],["-90.088508","29.945883"],["-90.085301","29.944414"],["-90.083705","29.943511"],["-90.075474","29.951945"],["-90.076903","29.945829"],["-90.066255","29.971699"],["-90.074706","29.954333"],["-90.074107","30.006252"],["-90.061070","30.025569"],["-90.086881","29.945287"],["-90.080326","29.943693"],["-90.079697","29.944541"],["-90.076215","29.948286"],["-90.075190","30.019852"],["-90.074862","30.015682"],["-90.074660","30.013204"],["-90.094546","29.942264"],["-90.075311","30.020996"],["-90.075579","29.950548"],["-90.070397","29.959116"],["-90.070267","29.961523"],["-90.071273","29.963222"],["-90.073384","29.955849"],["-90.081189","29.942490"]]},{"type":"LineString","coordinates":[["-90.119982","29.955463"],["-90.119886","29.955304"],["-90.119790","29.955144"],["-90.119730","29.955090"],["-90.119591","29.954957"],["-90.119452","29.954823"],["-90.119312","29.954690"],["-90.119173","29.954556"],["-90.119104","29.954490"],["-90.118922","29.954403"],["-90.118828","29.954358"],["-90.118675","29.954236"],["-90.118524","29.954113"],["-90.118371","29.953991"],["-90.118218","29.953869"],["-90.118170","29.953830"],["-90.118017","29.953708"],["-90.117864","29.953587"],["-90.117711","29.953465"],["-90.117587","29.953321"],["-90.117488","29.953205"],["-90.117299","29.953131"],["-90.117167","29.953079"],["-90.117070","29.952990"],["-90.116942","29.952849"],["-90.116870","29.952770"],["-90.116771","29.952612"],["-90.116720","29.952530"],["-90.116650","29.952380"],["-90.116592","29.952207"],["-90.116570","29.952140"],["-90.116510","29.951968"],["-90.116449","29.951796"],["-90.116390","29.951630"],["-90.116351","29.951453"],["-90.116311","29.951277"],["-90.116272","29.951100"],["-90.116245","29.950981"],["-90.116150","29.951010"],["-90.116130","29.950950"],["-90.116080","29.950840"],["-90.116015","29.950685"],["-90.115950","29.950530"],["-90.115885","29.950375"],["-90.115820","29.950220"],["-90.115765","29.950085"],["-90.115710","29.949950"],["-90.115670","29.949855"],["-90.115630","29.949760"],["-90.115590","29.949665"],["-90.115550","29.949570"],["-90.115490","29.949430"],["-90.115430","29.949290"],["-90.115370","29.949150"],["-90.115310","29.949010"],["-90.115405","29.948983"],["-90.115310","29.949010"],["-90.115300","29.948990"],["-90.115230","29.948810"],["-90.115157","29.948638"],["-90.115085","29.948465"],["-90.115012","29.948293"],["-90.114940","29.948120"],["-90.114980","29.948050"],["-90.114862","29.947902"],["-90.114797","29.947820"],["-90.114725","29.947651"],["-90.114654","29.947482"],["-90.114584","29.947313"],["-90.114513","29.947144"],["-90.114490","29.947089"],["-90.114420","29.946920"],["-90.114351","29.946750"],["-90.114330","29.946700"],["-90.114260","29.946531"],["-90.114189","29.946362"],["-90.114130","29.946220"],["-90.114102","29.946042"],["-90.114075","29.945868"],["-90.113966","29.945715"],["-90.113858","29.945561"],["-90.113789","29.945400"],["-90.113719","29.945231"],["-90.113649","29.945061"],["-90.113579","29.944892"],["-90.113533","29.944717"],["-90.113487","29.944541"],["-90.113466","29.944463"],["-90.113371","29.944303"],["-90.113276","29.944143"],["-90.113235","29.944073"],["-90.113163","29.943904"],["-90.113090","29.943736"],["-90.112992","29.943577"],["-90.112900","29.943430"],["-90.112769","29.943290"],["-90.112622","29.943163"],["-90.112480","29.943040"],["-90.112363","29.942892"],["-90.112246","29.942743"],["-90.112226","29.942718"],["-90.112025","29.942673"],["-90.111824","29.942628"],["-90.111647","29.942534"],["-90.111471","29.942439"],["-90.111380","29.942390"],["-90.111207","29.942291"],["-90.111034","29.942191"],["-90.110940","29.942139"],["-90.110768","29.942038"],["-90.110596","29.941937"],["-90.110499","29.941880"],["-90.110345","29.941759"],["-90.110191","29.941639"],["-90.110037","29.941518"],["-90.109883","29.941397"],["-90.109748","29.941291"],["-90.109548","29.941243"],["-90.109358","29.941197"],["-90.109230","29.941120"],["-90.109057","29.941020"],["-90.108970","29.940970"],["-90.108800","29.940867"],["-90.108630","29.940764"],["-90.108460","29.940660"],["-90.108321","29.940527"],["-90.108213","29.940423"],["-90.108017","29.940363"],["-90.107876","29.940320"],["-90.107702","29.940222"],["-90.107539","29.940129"],["-90.107352","29.940051"],["-90.107279","29.940020"],["-90.107083","29.939960"],["-90.107020","29.939940"],["-90.106815","29.939912"],["-90.106660","29.939890"],["-90.106452","29.939890"],["-90.106280","29.939890"],["-90.106079","29.939846"],["-90.105936","29.939815"],["-90.105743","29.939881"],["-90.105583","29.939935"],["-90.105376","29.939951"],["-90.105169","29.939966"],["-90.104963","29.939981"],["-90.104756","29.939997"],["-90.104709","29.940000"],["-90.104502","29.940017"],["-90.104296","29.940034"],["-90.104089","29.940051"],["-90.103989","29.940059"],["-90.103791","29.940006"],["-90.103681","29.939977"],["-90.103493","29.940053"],["-90.103354","29.940109"],["-90.103147","29.940125"],["-90.102960","29.940140"],["-90.102753","29.940156"],["-90.102547","29.940172"],["-90.102340","29.940188"],["-90.102180","29.940200"],["-90.101973","29.940215"],["-90.101766","29.940230"],["-90.101559","29.940245"],["-90.101353","29.940260"],["-90.101146","29.940275"],["-90.101070","29.940280"],["-90.100862","29.940277"],["-90.100655","29.940275"],["-90.100447","29.940272"],["-90.100240","29.940269"],["-90.100032","29.940266"],["-90.099994","29.940266"],["-90.099805","29.940341"],["-90.099663","29.940397"],["-90.099456","29.940414"],["-90.099250","29.940430"],["-90.099043","29.940447"],["-90.098836","29.940464"],["-90.098760","29.940470"],["-90.098556","29.940505"],["-90.098360","29.940563"],["-90.098300","29.940580"],["-90.098106","29.940644"],["-90.097912","29.940709"],["-90.097719","29.940773"],["-90.097570","29.940823"],["-90.097580","29.940840"],["-90.097460","29.940880"],["-90.097353","29.940923"],["-90.097245","29.940965"],["-90.097138","29.941008"],["-90.097030","29.941050"],["-90.096870","29.941110"],["-90.096745","29.941160"],["-90.096620","29.941210"],["-90.096495","29.941260"],["-90.096370","29.941310"],["-90.096360","29.941310"],["-90.096350","29.941289"],["-90.096360","29.941310"],["-90.096250","29.941360"],["-90.096080","29.941460"],["-90.095945","29.941540"],["-90.095810","29.941620"],["-90.095660","29.941700"],["-90.095565","29.941753"],["-90.095470","29.941805"],["-90.095375","29.941858"],["-90.095280","29.941910"],["-90.095120","29.942000"],["-90.094955","29.942095"],["-90.094790","29.942190"],["-90.094685","29.942250"],["-90.094580","29.942310"],["-90.094546","29.942264"],["-90.094580","29.942310"],["-90.094470","29.942370"],["-90.094353","29.942435"],["-90.094235","29.942500"],["-90.094118","29.942565"],["-90.094000","29.942630"],["-90.093815","29.942735"],["-90.093630","29.942840"],["-90.093450","29.942940"],["-90.093270","29.943040"],["-90.093090","29.943140"],["-90.092976","29.943157"],["-90.092862","29.943174"],["-90.092728","29.943311"],["-90.092625","29.943416"],["-90.092449","29.943512"],["-90.092274","29.943609"],["-90.092099","29.943705"],["-90.091980","29.943770"],["-90.091806","29.943868"],["-90.091632","29.943966"],["-90.091590","29.943990"],["-90.091390","29.944040"],["-90.091195","29.944088"],["-90.091078","29.944237"],["-90.091015","29.944317"],["-90.090840","29.944414"],["-90.090666","29.944511"],["-90.090560","29.944570"],["-90.090447","29.944642"],["-90.090335","29.944714"],["-90.090222","29.944786"],["-90.090109","29.944858"],["-90.089989","29.944838"],["-90.089923","29.944919"],["-90.089857","29.944999"],["-90.089705","29.945104"],["-90.089553","29.945210"],["-90.089401","29.945315"],["-90.089248","29.945420"],["-90.089146","29.945489"],["-90.089043","29.945557"],["-90.088941","29.945626"],["-90.088838","29.945694"],["-90.088737","29.945785"],["-90.088637","29.945875"],["-90.088508","29.945883"],["-90.088447","29.946066"],["-90.088352","29.946201"],["-90.088198","29.946111"],["-90.088044","29.946022"],["-90.087934","29.945961"],["-90.087824","29.945901"],["-90.087715","29.945841"],["-90.087605","29.945780"],["-90.087510","29.945727"],["-90.087415","29.945674"],["-90.087320","29.945621"],["-90.087224","29.945568"],["-90.087138","29.945497"],["-90.087053","29.945427"],["-90.086967","29.945357"],["-90.086881","29.945287"],["-90.086881","29.945287"],["-90.086750","29.945307"],["-90.086595","29.945213"],["-90.086440","29.945120"],["-90.086264","29.945025"],["-90.086088","29.944929"],["-90.085960","29.944860"],["-90.085796","29.944749"],["-90.085633","29.944639"],["-90.085469","29.944528"],["-90.085301","29.944414"],["-90.085105","29.944354"],["-90.084997","29.944321"],["-90.084823","29.944222"],["-90.084680","29.944140"],["-90.084505","29.944044"],["-90.084370","29.943970"],["-90.084208","29.943858"],["-90.084045","29.943746"],["-90.083883","29.943634"],["-90.083721","29.943522"],["-90.083705","29.943511"],["-90.083515","29.943438"],["-90.083325","29.943366"],["-90.083242","29.943334"],["-90.083067","29.943237"],["-90.082893","29.943139"],["-90.082719","29.943041"],["-90.082610","29.942980"],["-90.082437","29.942880"],["-90.082264","29.942781"],["-90.082091","29.942681"],["-90.081919","29.942582"],["-90.081746","29.942482"],["-90.081619","29.942409"],["-90.081447","29.942308"],["-90.081286","29.942422"],["-90.081189","29.942490"],["-90.081101","29.942653"],["-90.081014","29.942816"],["-90.080926","29.942979"],["-90.080850","29.943120"],["-90.080721","29.943261"],["-90.080592","29.943402"],["-90.080463","29.943543"],["-90.080334","29.943684"],["-90.080326","29.943693"],["-90.080253","29.943862"],["-90.080214","29.943953"],["-90.080088","29.944096"],["-90.079963","29.944239"],["-90.079837","29.944382"],["-90.079711","29.944525"],["-90.079697","29.944541"],["-90.079628","29.944711"],["-90.079589","29.944806"],["-90.079470","29.944910"],["-90.079276","29.944975"],["-90.079090","29.944970"],["-90.078918","29.944869"],["-90.078717","29.944823"],["-90.078570","29.944790"],["-90.078410","29.944770"],["-90.078207","29.944807"],["-90.078020","29.944870"],["-90.077960","29.944890"],["-90.077782","29.944983"],["-90.077730","29.945010"],["-90.077600","29.945100"],["-90.077476","29.945244"],["-90.077420","29.945310"],["-90.077307","29.945461"],["-90.077270","29.945510"],["-90.077155","29.945660"],["-90.076991","29.945770"],["-90.076903","29.945829"],["-90.076889","29.946008"],["-90.076880","29.946130"],["-90.076833","29.946305"],["-90.076786","29.946480"],["-90.076770","29.946539"],["-90.076731","29.946716"],["-90.076692","29.946892"],["-90.076660","29.947040"],["-90.076636","29.947219"],["-90.076629","29.947269"],["-90.076577","29.947443"],["-90.076539","29.947570"],["-90.076489","29.947745"],["-90.076434","29.947918"],["-90.076390","29.948060"],["-90.076274","29.948209"],["-90.076215","29.948286"],["-90.076219","29.948466"],["-90.076223","29.948635"],["-90.076176","29.948810"],["-90.076140","29.948949"],["-90.076100","29.949110"],["-90.076070","29.949209"],["-90.076024","29.949384"],["-90.075999","29.949479"],["-90.075949","29.949640"],["-90.075900","29.949815"],["-90.075850","29.949989"],["-90.075799","29.950164"],["-90.075707","29.950325"],["-90.075615","29.950486"],["-90.075579","29.950548"],["-90.075586","29.950728"],["-90.075590","29.950840"],["-90.075570","29.951019"],["-90.075550","29.951190"],["-90.075558","29.951370"],["-90.075560","29.951420"],["-90.075581","29.951599"],["-90.075589","29.951669"],["-90.075519","29.951838"],["-90.075474","29.951945"],["-90.075497","29.952124"],["-90.075516","29.952268"],["-90.075499","29.952360"],["-90.075443","29.952533"],["-90.075390","29.952700"],["-90.075350","29.952829"],["-90.075319","29.952939"],["-90.075266","29.953113"],["-90.075219","29.953269"],["-90.075200","29.953340"],["-90.075150","29.953490"],["-90.075099","29.953664"],["-90.075049","29.953839"],["-90.074998","29.954013"],["-90.074949","29.954150"],["-90.074792","29.954268"],["-90.074706","29.954333"],["-90.074620","29.954497"],["-90.074539","29.954650"],["-90.074407","29.954788"],["-90.074275","29.954927"],["-90.074143","29.955066"],["-90.074110","29.955100"],["-90.073980","29.955240"],["-90.073870","29.955360"],["-90.073735","29.955496"],["-90.073599","29.955633"],["-90.073464","29.955769"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072373","29.957060"],["-90.072285","29.957160"],["-90.072198","29.957260"],["-90.072110","29.957360"],["-90.071995","29.957485"],["-90.071797","29.957551"],["-90.071880","29.957610"],["-90.071780","29.957720"],["-90.071655","29.957860"],["-90.071530","29.958000"],["-90.071405","29.958140"],["-90.071280","29.958280"],["-90.071170","29.958405"],["-90.071060","29.958530"],["-90.070968","29.958635"],["-90.070875","29.958740"],["-90.070783","29.958845"],["-90.070690","29.958950"],["-90.070590","29.959065"],["-90.070490","29.959180"],["-90.070397","29.959116"],["-90.070490","29.959180"],["-90.070400","29.959270"],["-90.070315","29.959365"],["-90.070230","29.959460"],["-90.070120","29.959600"],["-90.070040","29.959690"],["-90.069970","29.959790"],["-90.069950","29.959820"],["-90.069910","29.959890"],["-90.069890","29.959940"],["-90.069880","29.959960"],["-90.069870","29.959990"],["-90.069860","29.960020"],["-90.069850","29.960090"],["-90.069830","29.960180"],["-90.069820","29.960240"],["-90.069790","29.960310"],["-90.069790","29.960410"],["-90.069800","29.960480"],["-90.069810","29.960540"],["-90.069820","29.960620"],["-90.069830","29.960670"],["-90.069850","29.960730"],["-90.069860","29.960780"],["-90.069880","29.960830"],["-90.069930","29.960940"],["-90.069980","29.961030"],["-90.070030","29.961100"],["-90.070070","29.961160"],["-90.070120","29.961210"],["-90.070230","29.961320"],["-90.070280","29.961370"],["-90.070267","29.961523"],["-90.070458","29.961594"],["-90.070560","29.961632"],["-90.070599","29.961669"],["-90.070712","29.961820"],["-90.070788","29.961987"],["-90.070863","29.962155"],["-90.070913","29.962330"],["-90.070964","29.962504"],["-90.070989","29.962590"],["-90.071053","29.962761"],["-90.071079","29.962829"],["-90.071110","29.962889"],["-90.071130","29.962930"],["-90.071211","29.963096"],["-90.071273","29.963222"],["-90.071330","29.963260"],["-90.071390","29.963190"],["-90.071535","29.963290"],["-90.071680","29.963390"],["-90.071800","29.963473"],["-90.071920","29.963555"],["-90.072040","29.963638"],["-90.072160","29.963720"],["-90.072256","29.963785"],["-90.072352","29.963850"],["-90.072449","29.963915"],["-90.072545","29.963980"],["-90.072641","29.964045"],["-90.072737","29.964110"],["-90.072834","29.964175"],["-90.072930","29.964240"],["-90.072840","29.964350"],["-90.072750","29.964460"],["-90.072660","29.964570"],["-90.072570","29.964680"],["-90.072440","29.964820"],["-90.072310","29.964960"],["-90.072200","29.965080"],["-90.072090","29.965200"],["-90.071990","29.965310"],["-90.071890","29.965420"],["-90.071868","29.965409"],["-90.071890","29.965420"],["-90.071840","29.965480"],["-90.071720","29.965625"],["-90.071600","29.965770"],["-90.071580","29.965780"],["-90.071560","29.965800"],["-90.071530","29.965830"],["-90.071450","29.965910"],["-90.071360","29.966000"],["-90.071340","29.966010"],["-90.071260","29.966100"],["-90.071180","29.966190"],["-90.071100","29.966320"],["-90.071000","29.966430"],["-90.070900","29.966540"],["-90.070780","29.966680"],["-90.070745","29.966658"],["-90.070780","29.966680"],["-90.070740","29.966720"],["-90.070653","29.966815"],["-90.070565","29.966910"],["-90.070478","29.967005"],["-90.070390","29.967100"],["-90.070320","29.967190"],["-90.070220","29.967305"],["-90.070120","29.967420"],["-90.070030","29.967515"],["-90.069940","29.967610"],["-90.069840","29.967730"],["-90.069770","29.967815"],["-90.069700","29.967900"],["-90.069690","29.967900"],["-90.069620","29.967975"],["-90.069550","29.968050"],["-90.069510","29.968100"],["-90.069490","29.968120"],["-90.069450","29.968160"],["-90.069410","29.968190"],["-90.069400","29.968200"],["-90.069390","29.968200"],["-90.069360","29.968210"],["-90.069275","29.968310"],["-90.069190","29.968410"],["-90.069105","29.968510"],["-90.069020","29.968610"],["-90.068940","29.968705"],["-90.068860","29.968800"],["-90.068778","29.968895"],["-90.068695","29.968990"],["-90.068613","29.969085"],["-90.068530","29.969180"],["-90.068531","29.969183"],["-90.068530","29.969180"],["-90.068500","29.969210"],["-90.068390","29.969330"],["-90.068315","29.969415"],["-90.068240","29.969500"],["-90.068170","29.969580"],["-90.068100","29.969660"],["-90.068080","29.969690"],["-90.068030","29.969740"],["-90.067970","29.969810"],["-90.067950","29.969830"],["-90.067890","29.969900"],["-90.067795","29.970010"],["-90.067700","29.970120"],["-90.067618","29.970213"],["-90.067535","29.970305"],["-90.067453","29.970398"],["-90.067370","29.970490"],["-90.067275","29.970595"],["-90.067180","29.970700"],["-90.067085","29.970805"],["-90.066986","29.970903"],["-90.066980","29.970930"],["-90.066893","29.971028"],["-90.066805","29.971125"],["-90.066718","29.971223"],["-90.066630","29.971320"],["-90.066543","29.971418"],["-90.066455","29.971515"],["-90.066368","29.971613"],["-90.066255","29.971699"],["-90.066156","29.971811"],["-90.066058","29.971923"],["-90.065959","29.972036"],["-90.065861","29.972148"],["-90.065762","29.972260"],["-90.065664","29.972372"],["-90.065565","29.972485"],["-90.065467","29.972597"],["-90.065566","29.972763"],["-90.065665","29.972929"],["-90.065764","29.973095"],["-90.065863","29.973261"],["-90.065962","29.973427"],["-90.066062","29.973593"],["-90.066161","29.973759"],["-90.066260","29.973925"],["-90.066330","29.974040"],["-90.066311","29.974042"],["-90.066330","29.974040"],["-90.066350","29.974080"],["-90.066402","29.974178"],["-90.066455","29.974275"],["-90.066507","29.974373"],["-90.066560","29.974470"],["-90.066630","29.974625"],["-90.066700","29.974780"],["-90.066765","29.974900"],["-90.066830","29.975020"],["-90.066892","29.975125"],["-90.066955","29.975230"],["-90.067017","29.975335"],["-90.067080","29.975440"],["-90.067175","29.975600"],["-90.067270","29.975760"],["-90.067245","29.975759"],["-90.067270","29.975760"],["-90.067345","29.975880"],["-90.067420","29.976000"],["-90.067470","29.976080"],["-90.067570","29.976220"],["-90.067610","29.976280"],["-90.067680","29.976400"],["-90.067750","29.976520"],["-90.067770","29.976580"],["-90.067830","29.976690"],["-90.067930","29.976830"],["-90.067970","29.976890"],["-90.068020","29.976990"],["-90.068030","29.977010"],["-90.068080","29.977100"],["-90.068100","29.977130"],["-90.068160","29.977235"],["-90.068220","29.977340"],["-90.068310","29.977500"],["-90.068360","29.977580"],["-90.068345","29.977602"],["-90.068450","29.977757"],["-90.068556","29.977912"],["-90.068619","29.978019"],["-90.068717","29.978177"],["-90.068799","29.978309"],["-90.068863","29.978480"],["-90.068901","29.978581"],["-90.068940","29.978590"],["-90.069040","29.978760"],["-90.069070","29.978830"],["-90.069090","29.978860"],["-90.069180","29.979000"],["-90.069200","29.979050"],["-90.069260","29.979140"],["-90.069350","29.979305"],["-90.069440","29.979470"],["-90.069490","29.979540"],["-90.069547","29.979640"],["-90.069605","29.979740"],["-90.069662","29.979840"],["-90.069720","29.979940"],["-90.069719","29.979938"],["-90.069720","29.979940"],["-90.069740","29.979990"],["-90.069830","29.980130"],["-90.069882","29.980220"],["-90.069935","29.980310"],["-90.069987","29.980400"],["-90.070040","29.980490"],["-90.070107","29.980610"],["-90.070175","29.980730"],["-90.070242","29.980850"],["-90.070310","29.980970"],["-90.070370","29.981075"],["-90.070430","29.981180"],["-90.070490","29.981285"],["-90.070550","29.981390"],["-90.070610","29.981495"],["-90.070670","29.981600"],["-90.070730","29.981705"],["-90.070790","29.981810"],["-90.070830","29.981890"],["-90.070799","29.981898"],["-90.070830","29.981890"],["-90.070870","29.981950"],["-90.070935","29.982070"],["-90.071000","29.982190"],["-90.071060","29.982295"],["-90.071120","29.982400"],["-90.071140","29.982430"],["-90.071180","29.982490"],["-90.071200","29.982530"],["-90.071262","29.982633"],["-90.071325","29.982735"],["-90.071387","29.982838"],["-90.071450","29.982940"],["-90.071490","29.983000"],["-90.071560","29.983125"],["-90.071630","29.983250"],["-90.071628","29.983255"],["-90.071630","29.983250"],["-90.071650","29.983290"],["-90.071770","29.983440"],["-90.071817","29.983533"],["-90.071865","29.983625"],["-90.071912","29.983718"],["-90.071960","29.983810"],["-90.072020","29.983920"],["-90.072070","29.984040"],["-90.072135","29.984155"],["-90.072200","29.984270"],["-90.072290","29.984430"],["-90.072357","29.984550"],["-90.072425","29.984670"],["-90.072492","29.984790"],["-90.072560","29.984910"],["-90.072540","29.985090"],["-90.072555","29.985280"],["-90.072570","29.985470"],["-90.072585","29.985660"],["-90.072555","29.985758"],["-90.072525","29.985855"],["-90.072569","29.986031"],["-90.072612","29.986207"],["-90.072630","29.986279"],["-90.072645","29.986458"],["-90.072660","29.986638"],["-90.072672","29.986817"],["-90.072680","29.986930"],["-90.072680","29.987110"],["-90.072681","29.987290"],["-90.072681","29.987470"],["-90.072682","29.987649"],["-90.072682","29.987829"],["-90.072682","29.987850"],["-90.072749","29.988020"],["-90.072787","29.988119"],["-90.072805","29.988298"],["-90.072820","29.988459"],["-90.072833","29.988639"],["-90.072839","29.988719"],["-90.072855","29.988898"],["-90.072860","29.988960"],["-90.072813","29.989135"],["-90.072773","29.989287"],["-90.072827","29.989461"],["-90.072876","29.989619"],["-90.072889","29.989770"],["-90.072904","29.989949"],["-90.072910","29.990019"],["-90.072925","29.990198"],["-90.072940","29.990378"],["-90.072955","29.990557"],["-90.072969","29.990729"],["-90.072981","29.990909"],["-90.072993","29.991088"],["-90.073005","29.991268"],["-90.073010","29.991339"],["-90.073027","29.991518"],["-90.072973","29.991692"],["-90.072929","29.991833"],["-90.073001","29.992002"],["-90.073074","29.992170"],["-90.073099","29.992349"],["-90.073116","29.992528"],["-90.073132","29.992707"],["-90.073149","29.992887"],["-90.073160","29.993010"],["-90.073156","29.993190"],["-90.073153","29.993370"],["-90.073149","29.993550"],["-90.073145","29.993729"],["-90.073142","29.993909"],["-90.073141","29.993936"],["-90.073210","29.994106"],["-90.073252","29.994210"],["-90.073265","29.994390"],["-90.073277","29.994569"],["-90.073290","29.994749"],["-90.073307","29.994928"],["-90.073320","29.995060"],["-90.073315","29.995240"],["-90.073310","29.995420"],["-90.073306","29.995599"],["-90.073301","29.995779"],["-90.073296","29.995956"],["-90.073366","29.996125"],["-90.073410","29.996230"],["-90.073420","29.996410"],["-90.073436","29.996589"],["-90.073452","29.996768"],["-90.073468","29.996948"],["-90.073479","29.997070"],["-90.073475","29.997250"],["-90.073471","29.997430"],["-90.073467","29.997609"],["-90.073464","29.997789"],["-90.073460","29.997969"],["-90.073459","29.998000"],["-90.073532","29.998168"],["-90.073571","29.998259"],["-90.073584","29.998439"],["-90.073596","29.998618"],["-90.073608","29.998798"],["-90.073621","29.998977"],["-90.073630","29.999110"],["-90.073638","29.999290"],["-90.073640","29.999349"],["-90.073649","29.999490"],["-90.073669","29.999669"],["-90.073689","29.999848"],["-90.073710","30.000027"],["-90.073720","30.000120"],["-90.073704","30.000299"],["-90.073688","30.000479"],["-90.073682","30.000544"],["-90.073729","30.000719"],["-90.073777","30.000894"],["-90.073789","30.000939"],["-90.073809","30.001118"],["-90.073820","30.001298"],["-90.073832","30.001477"],["-90.073839","30.001589"],["-90.073819","30.001768"],["-90.073799","30.001947"],["-90.073780","30.002115"],["-90.073842","30.002287"],["-90.073900","30.002450"],["-90.073915","30.002629"],["-90.073929","30.002809"],["-90.073942","30.002988"],["-90.073950","30.003100"],["-90.073969","30.003270"],["-90.073935","30.003447"],["-90.073900","30.003625"],["-90.073894","30.003656"],["-90.073960","30.003827"],["-90.074022","30.003989"],["-90.074036","30.004168"],["-90.074049","30.004348"],["-90.074060","30.004500"],["-90.074053","30.004680"],["-90.074046","30.004860"],["-90.074039","30.005039"],["-90.074036","30.005111"],["-90.074080","30.005287"],["-90.074123","30.005463"],["-90.074140","30.005529"],["-90.074150","30.005709"],["-90.074160","30.005880"],["-90.074135","30.006059"],["-90.074109","30.006237"],["-90.074107","30.006252"],["-90.074161","30.006426"],["-90.074214","30.006600"],["-90.074229","30.006770"],["-90.074196","30.006948"],["-90.074164","30.007115"],["-90.074233","30.007285"],["-90.074279","30.007400"],["-90.074297","30.007579"],["-90.074314","30.007758"],["-90.074332","30.007938"],["-90.074349","30.008117"],["-90.074367","30.008296"],["-90.074381","30.008476"],["-90.074396","30.008655"],["-90.074411","30.008834"],["-90.074425","30.009014"],["-90.074430","30.009070"],["-90.074441","30.009250"],["-90.074453","30.009429"],["-90.074464","30.009609"],["-90.074475","30.009788"],["-90.074480","30.009860"],["-90.074493","30.010040"],["-90.074507","30.010219"],["-90.074520","30.010398"],["-90.074533","30.010578"],["-90.074540","30.010670"],["-90.074531","30.010850"],["-90.074522","30.011029"],["-90.074513","30.011209"],["-90.074504","30.011389"],["-90.074503","30.011403"],["-90.074584","30.011569"],["-90.074638","30.011678"],["-90.074653","30.011857"],["-90.074667","30.012037"],["-90.074682","30.012216"],["-90.074696","30.012396"],["-90.074700","30.012440"],["-90.074714","30.012619"],["-90.074720","30.012699"],["-90.074730","30.012850"],["-90.074695","30.013027"],["-90.074660","30.013204"],["-90.074712","30.013378"],["-90.074764","30.013552"],["-90.074784","30.013619"],["-90.074799","30.013798"],["-90.074815","30.013978"],["-90.074819","30.014029"],["-90.074834","30.014208"],["-90.074848","30.014388"],["-90.074863","30.014567"],["-90.074869","30.014639"],["-90.074868","30.014819"],["-90.074867","30.014999"],["-90.074865","30.015179"],["-90.074864","30.015358"],["-90.074863","30.015538"],["-90.074862","30.015682"],["-90.074935","30.015850"],["-90.074978","30.015949"],["-90.074993","30.016128"],["-90.075008","30.016308"],["-90.075024","30.016487"],["-90.075039","30.016667"],["-90.075050","30.016800"],["-90.075064","30.016979"],["-90.075078","30.017159"],["-90.075091","30.017338"],["-90.075105","30.017518"],["-90.075110","30.017580"],["-90.075122","30.017760"],["-90.075133","30.017939"],["-90.075140","30.018040"],["-90.075155","30.018219"],["-90.075169","30.018399"],["-90.075172","30.018579"],["-90.075174","30.018759"],["-90.075177","30.018938"],["-90.075179","30.019118"],["-90.075182","30.019298"],["-90.075185","30.019478"],["-90.075187","30.019658"],["-90.075190","30.019838"],["-90.075190","30.019852"],["-90.075264","30.020020"],["-90.075313","30.020130"],["-90.075320","30.020230"],["-90.075318","30.020410"],["-90.075316","30.020590"],["-90.075314","30.020770"],["-90.075312","30.020949"],["-90.075311","30.020996"],["-90.075114","30.021053"],["-90.074945","30.021102"],["-90.074738","30.021113"],["-90.074530","30.021125"],["-90.074323","30.021136"],["-90.074116","30.021147"],["-90.074060","30.021150"],["-90.073910","30.021210"],["-90.073750","30.021290"],["-90.073700","30.021360"],["-90.073610","30.021490"],["-90.073520","30.021640"],["-90.073418","30.021797"],["-90.073390","30.021840"],["-90.073216","30.021939"],["-90.073128","30.021989"],["-90.073049","30.022155"],["-90.073000","30.022260"],["-90.072844","30.022379"],["-90.072672","30.022480"],["-90.072570","30.022540"],["-90.072376","30.022604"],["-90.072182","30.022668"],["-90.071987","30.022731"],["-90.071897","30.022761"],["-90.071747","30.022885"],["-90.071616","30.022994"],["-90.071432","30.023078"],["-90.071249","30.023162"],["-90.071169","30.023199"],["-90.070999","30.023260"],["-90.070799","30.023310"],["-90.070600","30.023359"],["-90.070520","30.023379"],["-90.070318","30.023420"],["-90.070269","30.023430"],["-90.070064","30.023458"],["-90.069909","30.023479"],["-90.069701","30.023487"],["-90.069630","30.023490"],["-90.069422","30.023482"],["-90.069216","30.023466"],["-90.069009","30.023450"],["-90.068880","30.023440"],["-90.068760","30.023430"],["-90.068570","30.023410"],["-90.068363","30.023391"],["-90.068157","30.023371"],["-90.067950","30.023352"],["-90.067812","30.023339"],["-90.067750","30.023340"],["-90.067760","30.023420"],["-90.067548","30.023433"],["-90.067335","30.023445"],["-90.067123","30.023458"],["-90.066910","30.023470"],["-90.066758","30.023483"],["-90.066605","30.023495"],["-90.066453","30.023508"],["-90.066300","30.023520"],["-90.066175","30.023530"],["-90.066050","30.023540"],["-90.065980","30.023570"],["-90.065870","30.023570"],["-90.065665","30.023620"],["-90.065460","30.023670"],["-90.065290","30.023720"],["-90.065180","30.023750"],["-90.065070","30.023780"],["-90.064910","30.023840"],["-90.064750","30.023900"],["-90.064570","30.023980"],["-90.064380","30.024060"],["-90.064381","30.024058"],["-90.064380","30.024060"],["-90.064360","30.024070"],["-90.064175","30.024170"],["-90.063990","30.024270"],["-90.063878","30.024330"],["-90.063765","30.024390"],["-90.063653","30.024450"],["-90.063540","30.024510"],["-90.063420","30.024570"],["-90.063285","30.024625"],["-90.063150","30.024680"],["-90.063040","30.024720"],["-90.062930","30.024760"],["-90.062810","30.024795"],["-90.062690","30.024830"],["-90.062575","30.024860"],["-90.062460","30.024890"],["-90.062280","30.024925"],["-90.062100","30.024960"],["-90.061965","30.024975"],["-90.061830","30.024990"],["-90.061670","30.025000"],["-90.061500","30.025020"],["-90.061310","30.025030"],["-90.061120","30.025040"],["-90.061125","30.025145"],["-90.061130","30.025250"],["-90.061145","30.025405"],["-90.061160","30.025560"],["-90.061070","30.025569"],["-90.061160","30.025560"],["-90.061170","30.025730"],["-90.061180","30.025848"],["-90.061190","30.025965"],["-90.061200","30.026083"],["-90.061210","30.026200"],["-90.061222","30.026370"],["-90.061235","30.026540"],["-90.061247","30.026710"],["-90.061260","30.026880"],["-90.061275","30.027043"],["-90.061290","30.027205"],["-90.061305","30.027368"],["-90.061312","30.027464"],["-90.061320","30.027560"],["-90.061279","30.027533"],["-90.061320","30.027560"],["-90.061332","30.027715"],["-90.061345","30.027870"],["-90.061357","30.028025"],["-90.061370","30.028180"],["-90.061382","30.028335"],["-90.061395","30.028490"],["-90.061407","30.028645"],["-90.061420","30.028800"],["-90.061435","30.028960"],["-90.061450","30.029120"],["-90.061480","30.029120"],["-90.061530","30.029110"],["-90.061650","30.029100"],["-90.061830","30.029090"],["-90.061940","30.029063"],["-90.062050","30.029035"],["-90.062160","30.029008"],["-90.062270","30.028980"],["-90.062380","30.028953"],["-90.062490","30.028925"],["-90.062600","30.028898"],["-90.062710","30.028870"],["-90.062870","30.028830"],["-90.062880","30.028820"],["-90.063080","30.028780"],["-90.063190","30.028760"],["-90.063300","30.028740"],["-90.063450","30.028700"],["-90.063600","30.028660"],["-90.063750","30.028620"],["-90.063900","30.028580"],["-90.064080","30.028540"],["-90.064160","30.028520"],["-90.064300","30.028483"],["-90.064440","30.028445"],["-90.064580","30.028408"],["-90.064720","30.028370"],["-90.064875","30.028315"],["-90.065030","30.028260"],["-90.065150","30.028250"],["-90.065270","30.028240"],["-90.065310","30.028230"],["-90.065340","30.028210"],["-90.065360","30.028170"],["-90.065370","30.028140"],["-90.065380","30.028100"],["-90.065380","30.028070"],["-90.065370","30.028040"],["-90.065380","30.028020"],["-90.065370","30.027990"],["-90.065412","30.027973"]]}]}},{"type":"Feature","properties":{"route_id":"55","agency_id":"1","route_short_name":"55","route_long_name":"Elysian Fields","route_type":"3","route_color":"#51b948","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.067726","29.961445"],["-90.070568","29.958241"],["-90.061566","30.025278"],["-90.061465","30.023211"],["-90.061392","30.022162"],["-90.061163","30.019429"],["-90.060948","30.016866"],["-90.060776","30.014654"],["-90.060542","30.012607"],["-90.060352","30.010387"],["-90.060198","30.008345"],["-90.060007","30.006120"],["-90.059937","30.005113"],["-90.059714","30.002085"],["-90.059508","29.999653"],["-90.059461","29.999029"],["-90.059305","29.996982"],["-90.059135","29.994981"],["-90.058989","29.992931"],["-90.058646","29.988905"],["-90.058206","29.982811"],["-90.057601","29.975728"],["-90.057459","29.973703"],["-90.057241","29.971597"],["-90.057182","29.968750"],["-90.063585","29.966079"],["-90.062412","29.967436"],["-90.065412","30.027973"],["-90.058100","29.979713"],["-90.057855","29.978741"],["-90.074078","29.955755"],["-90.075280","29.954073"],["-90.069189","29.959861"],["-90.065584","29.963862"]]},{"type":"LineString","coordinates":[["-90.065412","30.027973"],["-90.065370","30.027980"],["-90.065370","30.027970"],["-90.065350","30.027950"],["-90.065330","30.027930"],["-90.065290","30.027900"],["-90.065250","30.027890"],["-90.065210","30.027890"],["-90.065190","30.027890"],["-90.065160","30.027890"],["-90.065130","30.027900"],["-90.064930","30.027950"],["-90.064808","30.027980"],["-90.064685","30.028010"],["-90.064563","30.028040"],["-90.064440","30.028070"],["-90.064330","30.028100"],["-90.064230","30.028130"],["-90.064060","30.028170"],["-90.063890","30.028210"],["-90.063710","30.028250"],["-90.063530","30.028290"],["-90.063350","30.028330"],["-90.063170","30.028370"],["-90.062975","30.028435"],["-90.062780","30.028500"],["-90.062760","30.028500"],["-90.062563","30.028553"],["-90.062365","30.028605"],["-90.062168","30.028658"],["-90.061970","30.028710"],["-90.061800","30.028750"],["-90.061787","30.028599"],["-90.061775","30.028448"],["-90.061762","30.028296"],["-90.061750","30.028145"],["-90.061737","30.027994"],["-90.061725","30.027843"],["-90.061712","30.027691"],["-90.061700","30.027540"],["-90.061690","30.027400"],["-90.061680","30.027260"],["-90.061670","30.027120"],["-90.061660","30.026980"],["-90.061651","30.026879"],["-90.061642","30.026778"],["-90.061634","30.026676"],["-90.061625","30.026575"],["-90.061616","30.026474"],["-90.061607","30.026373"],["-90.061599","30.026271"],["-90.061590","30.026170"],["-90.061581","30.026059"],["-90.061572","30.025948"],["-90.061564","30.025836"],["-90.061555","30.025725"],["-90.061546","30.025614"],["-90.061537","30.025503"],["-90.061529","30.025391"],["-90.061566","30.025278"],["-90.061502","30.025107"],["-90.061470","30.025020"],["-90.061464","30.024840"],["-90.061460","30.024740"],["-90.061472","30.024560"],["-90.061480","30.024440"],["-90.061480","30.024260"],["-90.061480","30.024130"],["-90.061477","30.023950"],["-90.061474","30.023770"],["-90.061471","30.023590"],["-90.061468","30.023411"],["-90.061465","30.023231"],["-90.061465","30.023211"],["-90.061438","30.023033"],["-90.061410","30.022854"],["-90.061397","30.022770"],["-90.061396","30.022590"],["-90.061394","30.022410"],["-90.061393","30.022230"],["-90.061392","30.022162"],["-90.061347","30.021986"],["-90.061302","30.021811"],["-90.061284","30.021741"],["-90.061269","30.021562"],["-90.061253","30.021382"],["-90.061238","30.021203"],["-90.061222","30.021024"],["-90.061210","30.020880"],["-90.061198","30.020700"],["-90.061186","30.020521"],["-90.061174","30.020341"],["-90.061162","30.020162"],["-90.061150","30.019982"],["-90.061140","30.019840"],["-90.061150","30.019660"],["-90.061160","30.019481"],["-90.061163","30.019429"],["-90.061125","30.019252"],["-90.061087","30.019075"],["-90.061071","30.019001"],["-90.061060","30.018860"],["-90.061044","30.018681"],["-90.061029","30.018501"],["-90.061013","30.018322"],["-90.060997","30.018143"],["-90.060982","30.017963"],["-90.060970","30.017830"],["-90.060956","30.017651"],["-90.060941","30.017471"],["-90.060930","30.017330"],["-90.060937","30.017150"],["-90.060944","30.016970"],["-90.060948","30.016866"],["-90.060912","30.016689"],["-90.060876","30.016512"],["-90.060864","30.016451"],["-90.060849","30.016272"],["-90.060833","30.016092"],["-90.060818","30.015913"],["-90.060802","30.015734"],["-90.060790","30.015590"],["-90.060780","30.015410"],["-90.060770","30.015240"],["-90.060772","30.015060"],["-90.060774","30.014880"],["-90.060776","30.014700"],["-90.060776","30.014654"],["-90.060731","30.014478"],["-90.060709","30.014390"],["-90.060699","30.014210"],["-90.060690","30.014060"],["-90.060669","30.013881"],["-90.060649","30.013702"],["-90.060630","30.013540"],["-90.060598","30.013362"],["-90.060566","30.013185"],["-90.060534","30.013007"],["-90.060520","30.012930"],["-90.060532","30.012750"],["-90.060542","30.012607"],["-90.060501","30.012431"],["-90.060461","30.012254"],["-90.060444","30.012181"],["-90.060428","30.012002"],["-90.060412","30.011822"],["-90.060400","30.011690"],["-90.060386","30.011511"],["-90.060372","30.011331"],["-90.060368","30.011151"],["-90.060364","30.010971"],["-90.060361","30.010792"],["-90.060357","30.010612"],["-90.060353","30.010432"],["-90.060352","30.010387"],["-90.060302","30.010212"],["-90.060273","30.010111"],["-90.060255","30.009932"],["-90.060250","30.009880"],["-90.060238","30.009700"],["-90.060226","30.009521"],["-90.060214","30.009341"],["-90.060210","30.009280"],["-90.060208","30.009100"],["-90.060205","30.008920"],["-90.060203","30.008740"],["-90.060201","30.008561"],["-90.060198","30.008381"],["-90.060198","30.008345"],["-90.060158","30.008168"],["-90.060119","30.007992"],["-90.060103","30.007921"],["-90.060086","30.007742"],["-90.060069","30.007562"],["-90.060052","30.007383"],["-90.060035","30.007204"],["-90.060020","30.007040"],["-90.060006","30.006861"],["-90.059992","30.006681"],["-90.059979","30.006502"],["-90.059970","30.006390"],["-90.059994","30.006211"],["-90.060007","30.006120"],["-90.059979","30.005942"],["-90.059952","30.005763"],["-90.059939","30.005680"],["-90.059938","30.005500"],["-90.059938","30.005320"],["-90.059937","30.005140"],["-90.059937","30.005113"],["-90.059881","30.004940"],["-90.059846","30.004831"],["-90.059831","30.004652"],["-90.059817","30.004472"],["-90.059810","30.004390"],["-90.059801","30.004210"],["-90.059791","30.004031"],["-90.059777","30.003851"],["-90.059763","30.003672"],["-90.059749","30.003492"],["-90.059735","30.003313"],["-90.059721","30.003133"],["-90.059710","30.002990"],["-90.059711","30.002810"],["-90.059712","30.002630"],["-90.059712","30.002450"],["-90.059713","30.002271"],["-90.059714","30.002085"],["-90.059655","30.001913"],["-90.059616","30.001801"],["-90.059602","30.001622"],["-90.059587","30.001442"],["-90.059573","30.001263"],["-90.059559","30.001083"],["-90.059550","30.000970"],["-90.059540","30.000810"],["-90.059524","30.000631"],["-90.059508","30.000451"],["-90.059492","30.000272"],["-90.059476","30.000093"],["-90.059460","29.999920"],["-90.059492","29.999742"],["-90.059508","29.999653"],["-90.059446","29.999481"],["-90.059395","29.999341"],["-90.059432","29.999164"],["-90.059461","29.999029"],["-90.059392","29.998859"],["-90.059348","29.998750"],["-90.059335","29.998570"],["-90.059323","29.998391"],["-90.059311","29.998211"],["-90.059298","29.998032"],["-90.059290","29.997910"],["-90.059293","29.997730"],["-90.059296","29.997550"],["-90.059299","29.997370"],["-90.059302","29.997191"],["-90.059305","29.997011"],["-90.059305","29.996982"],["-90.059257","29.996807"],["-90.059208","29.996632"],["-90.059186","29.996551"],["-90.059173","29.996371"],["-90.059161","29.996192"],["-90.059149","29.996012"],["-90.059140","29.995880"],["-90.059139","29.995700"],["-90.059138","29.995520"],["-90.059137","29.995340"],["-90.059136","29.995161"],["-90.059135","29.994981"],["-90.059078","29.994808"],["-90.059039","29.994690"],["-90.059028","29.994510"],["-90.059018","29.994331"],["-90.059007","29.994151"],["-90.058996","29.993972"],["-90.058990","29.993870"],["-90.058990","29.993690"],["-90.058990","29.993510"],["-90.058989","29.993330"],["-90.058989","29.993151"],["-90.058989","29.992971"],["-90.058989","29.992931"],["-90.058927","29.992759"],["-90.058895","29.992671"],["-90.058880","29.992492"],["-90.058865","29.992312"],["-90.058850","29.992140"],["-90.058833","29.991961"],["-90.058820","29.991830"],["-90.058806","29.991651"],["-90.058792","29.991471"],["-90.058776","29.991292"],["-90.058770","29.991220"],["-90.058754","29.991041"],["-90.058740","29.990880"],["-90.058728","29.990700"],["-90.058716","29.990521"],["-90.058704","29.990341"],["-90.058693","29.990162"],["-90.058681","29.989982"],["-90.058670","29.989820"],["-90.058651","29.989641"],["-90.058632","29.989462"],["-90.058637","29.989282"],["-90.058641","29.989102"],["-90.058646","29.988922"],["-90.058646","29.988905"],["-90.058581","29.988734"],["-90.058542","29.988633"],["-90.058530","29.988580"],["-90.058493","29.988403"],["-90.058470","29.988290"],["-90.058447","29.988111"],["-90.058425","29.987932"],["-90.058402","29.987754"],["-90.058390","29.987660"],["-90.058375","29.987481"],["-90.058360","29.987301"],["-90.058345","29.987122"],["-90.058329","29.986942"],["-90.058320","29.986830"],["-90.058304","29.986651"],["-90.058289","29.986471"],["-90.058273","29.986292"],["-90.058260","29.986140"],["-90.058251","29.985960"],["-90.058242","29.985781"],["-90.058221","29.985602"],["-90.058200","29.985423"],["-90.058180","29.985244"],["-90.058170","29.985160"],["-90.058153","29.984981"],["-90.058136","29.984801"],["-90.058130","29.984740"],["-90.058118","29.984560"],["-90.058105","29.984381"],["-90.058093","29.984201"],["-90.058080","29.984022"],["-90.058070","29.983870"],["-90.058070","29.983690"],["-90.058070","29.983510"],["-90.058081","29.983331"],["-90.058092","29.983151"],["-90.058150","29.982978"],["-90.058206","29.982811"],["-90.058152","29.982637"],["-90.058121","29.982540"],["-90.058132","29.982360"],["-90.058140","29.982230"],["-90.058140","29.982050"],["-90.058140","29.981870"],["-90.058152","29.981691"],["-90.058163","29.981511"],["-90.058175","29.981332"],["-90.058187","29.981152"],["-90.058190","29.981100"],["-90.058190","29.980920"],["-90.058190","29.980740"],["-90.058190","29.980690"],["-90.058185","29.980510"],["-90.058181","29.980330"],["-90.058147","29.980153"],["-90.058130","29.980060"],["-90.058114","29.979881"],["-90.058100","29.979713"],["-90.057981","29.979565"],["-90.057921","29.979490"],["-90.057852","29.979320"],["-90.057790","29.979170"],["-90.057817","29.978992"],["-90.057844","29.978813"],["-90.057855","29.978741"],["-90.057810","29.978565"],["-90.057765","29.978390"],["-90.057745","29.978311"],["-90.057733","29.978131"],["-90.057720","29.977952"],["-90.057708","29.977772"],["-90.057700","29.977660"],["-90.057687","29.977480"],["-90.057674","29.977301"],["-90.057660","29.977122"],["-90.057650","29.976980"],["-90.057635","29.976801"],["-90.057620","29.976630"],["-90.057616","29.976450"],["-90.057612","29.976270"],["-90.057609","29.976090"],["-90.057605","29.975911"],["-90.057601","29.975728"],["-90.057557","29.975552"],["-90.057526","29.975431"],["-90.057512","29.975252"],["-90.057497","29.975072"],["-90.057483","29.974893"],["-90.057469","29.974713"],["-90.057460","29.974600"],["-90.057448","29.974420"],["-90.057437","29.974241"],["-90.057425","29.974061"],["-90.057442","29.973882"],["-90.057459","29.973703"],["-90.057390","29.973710"],["-90.057380","29.973590"],["-90.057380","29.973560"],["-90.057370","29.973440"],["-90.057350","29.973260"],["-90.057340","29.973080"],["-90.057330","29.972930"],["-90.057315","29.972755"],["-90.057300","29.972580"],["-90.057290","29.972463"],["-90.057280","29.972345"],["-90.057270","29.972228"],["-90.057260","29.972110"],["-90.057250","29.971983"],["-90.057240","29.971855"],["-90.057230","29.971728"],["-90.057220","29.971570"],["-90.057241","29.971597"],["-90.057220","29.971570"],["-90.057210","29.971440"],["-90.057200","29.971310"],["-90.057190","29.971180"],["-90.057180","29.971050"],["-90.057170","29.970928"],["-90.057160","29.970805"],["-90.057150","29.970683"],["-90.057140","29.970560"],["-90.057130","29.970440"],["-90.057120","29.970320"],["-90.057110","29.970200"],["-90.057100","29.970080"],["-90.057090","29.969943"],["-90.057080","29.969805"],["-90.057070","29.969668"],["-90.057060","29.969530"],["-90.057050","29.969380"],["-90.057040","29.969310"],["-90.057030","29.969200"],["-90.057030","29.969130"],["-90.057020","29.969030"],["-90.057010","29.968860"],["-90.056990","29.968690"],["-90.057182","29.968750"],["-90.057386","29.968718"],["-90.057591","29.968686"],["-90.057795","29.968654"],["-90.057999","29.968622"],["-90.058170","29.968600"],["-90.058372","29.968558"],["-90.058574","29.968516"],["-90.058775","29.968473"],["-90.058977","29.968431"],["-90.059179","29.968389"],["-90.059270","29.968370"],["-90.059477","29.968352"],["-90.059620","29.968340"],["-90.059827","29.968330"],["-90.060035","29.968319"],["-90.060242","29.968309"],["-90.060410","29.968300"],["-90.060617","29.968286"],["-90.060710","29.968280"],["-90.060912","29.968240"],["-90.061070","29.968209"],["-90.061266","29.968150"],["-90.061456","29.968078"],["-90.061530","29.968050"],["-90.061703","29.967951"],["-90.061866","29.967840"],["-90.061970","29.967769"],["-90.062115","29.967640"],["-90.062150","29.967609"],["-90.062315","29.967500"],["-90.062412","29.967436"],["-90.062370","29.967410"],["-90.062440","29.967340"],["-90.062525","29.967240"],["-90.062610","29.967140"],["-90.062620","29.967130"],["-90.062640","29.967110"],["-90.062728","29.967013"],["-90.062815","29.966915"],["-90.062903","29.966818"],["-90.062990","29.966720"],["-90.063020","29.966690"],["-90.063150","29.966540"],["-90.063280","29.966390"],["-90.063350","29.966308"],["-90.063420","29.966225"],["-90.063490","29.966143"],["-90.063560","29.966060"],["-90.063585","29.966079"],["-90.063560","29.966060"],["-90.063570","29.966050"],["-90.063600","29.966020"],["-90.063720","29.965900"],["-90.063800","29.965800"],["-90.063890","29.965700"],["-90.063980","29.965600"],["-90.064095","29.965475"],["-90.064210","29.965350"],["-90.064280","29.965260"],["-90.064363","29.965170"],["-90.064445","29.965080"],["-90.064528","29.964990"],["-90.064610","29.964900"],["-90.064683","29.964820"],["-90.064755","29.964740"],["-90.064828","29.964660"],["-90.064900","29.964580"],["-90.064930","29.964540"],["-90.064980","29.964490"],["-90.065053","29.964409"],["-90.065125","29.964328"],["-90.065198","29.964246"],["-90.065270","29.964165"],["-90.065343","29.964084"],["-90.065415","29.964003"],["-90.065488","29.963921"],["-90.065560","29.963840"],["-90.065584","29.963862"],["-90.065560","29.963840"],["-90.065600","29.963800"],["-90.065678","29.963713"],["-90.065755","29.963625"],["-90.065833","29.963538"],["-90.065910","29.963450"],["-90.066008","29.963340"],["-90.066105","29.963230"],["-90.066203","29.963120"],["-90.066300","29.963010"],["-90.066385","29.962915"],["-90.066470","29.962820"],["-90.066555","29.962725"],["-90.066640","29.962630"],["-90.066735","29.962525"],["-90.066830","29.962420"],["-90.066925","29.962315"],["-90.067020","29.962210"],["-90.067106","29.962113"],["-90.067193","29.962015"],["-90.067279","29.961918"],["-90.067365","29.961820"],["-90.067451","29.961723"],["-90.067538","29.961625"],["-90.067624","29.961528"],["-90.067730","29.961420"],["-90.067726","29.961445"],["-90.067730","29.961420"],["-90.067855","29.961275"],["-90.067980","29.961130"],["-90.068110","29.960990"],["-90.068140","29.960940"],["-90.068233","29.960838"],["-90.068325","29.960735"],["-90.068418","29.960633"],["-90.068510","29.960530"],["-90.068600","29.960430"],["-90.068733","29.960283"],["-90.068865","29.960135"],["-90.068998","29.959988"],["-90.069130","29.959840"],["-90.069140","29.959830"],["-90.069189","29.959861"],["-90.069140","29.959830"],["-90.069210","29.959750"],["-90.069290","29.959660"],["-90.069370","29.959570"],["-90.069470","29.959460"],["-90.069548","29.959373"],["-90.069625","29.959285"],["-90.069703","29.959198"],["-90.069780","29.959110"],["-90.069850","29.959030"],["-90.069920","29.958950"],["-90.070000","29.958863"],["-90.070080","29.958775"],["-90.070160","29.958688"],["-90.070240","29.958600"],["-90.070320","29.958510"],["-90.070400","29.958420"],["-90.070480","29.958330"],["-90.070560","29.958240"],["-90.070568","29.958241"],["-90.070560","29.958240"],["-90.070590","29.958200"],["-90.070679","29.958101"],["-90.070768","29.958003"],["-90.070856","29.957904"],["-90.070945","29.957805"],["-90.071034","29.957706"],["-90.071123","29.957608"],["-90.071211","29.957509"],["-90.071300","29.957410"],["-90.071420","29.957488"],["-90.071540","29.957565"],["-90.071660","29.957643"],["-90.071780","29.957720"],["-90.071915","29.957810"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074078","29.955755"],["-90.074166","29.955592"],["-90.074254","29.955429"],["-90.074377","29.955284"],["-90.074502","29.955141"],["-90.074628","29.954998"],["-90.074754","29.954855"],["-90.074880","29.954712"],["-90.074960","29.954600"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075232","29.954159"],["-90.075280","29.954073"]]},{"type":"MultiPoint","coordinates":[["-90.067726","29.961445"],["-90.070568","29.958241"],["-90.061566","30.025278"],["-90.061465","30.023211"],["-90.061392","30.022162"],["-90.061163","30.019429"],["-90.060948","30.016866"],["-90.060776","30.014654"],["-90.060542","30.012607"],["-90.060352","30.010387"],["-90.060198","30.008345"],["-90.060007","30.006120"],["-90.059937","30.005113"],["-90.059714","30.002085"],["-90.059508","29.999653"],["-90.059461","29.999029"],["-90.059305","29.996982"],["-90.059135","29.994981"],["-90.058989","29.992931"],["-90.058646","29.988905"],["-90.058206","29.982811"],["-90.057601","29.975728"],["-90.057459","29.973703"],["-90.057241","29.971597"],["-90.057182","29.968750"],["-90.061279","30.027533"],["-90.052046","30.026440"],["-90.063585","29.966079"],["-90.054845","30.025958"],["-90.056566","30.025743"],["-90.058786","30.025472"],["-90.062412","29.967436"],["-90.037659","30.004976"],["-90.039948","30.004092"],["-90.065412","30.027973"],["-90.061070","30.025569"],["-90.043336","30.019135"],["-90.043605","30.022522"],["-90.058100","29.979713"],["-90.045042","30.028508"],["-90.057855","29.978741"],["-90.043904","30.027351"],["-90.074078","29.955755"],["-90.075280","29.954073"],["-90.069189","29.959861"],["-90.041857","30.009527"],["-90.042624","30.014588"],["-90.042478","30.016210"],["-90.065584","29.963862"]]},{"type":"LineString","coordinates":[["-90.037659","30.004976"],["-90.037630","30.004910"],["-90.037755","30.004863"],["-90.037880","30.004815"],["-90.038005","30.004768"],["-90.038130","30.004720"],["-90.038250","30.004673"],["-90.038370","30.004625"],["-90.038490","30.004578"],["-90.038610","30.004530"],["-90.038723","30.004488"],["-90.038835","30.004445"],["-90.038948","30.004403"],["-90.039060","30.004360"],["-90.039200","30.004300"],["-90.039290","30.004260"],["-90.039405","30.004215"],["-90.039509","30.004169"],["-90.039614","30.004122"],["-90.039718","30.004076"],["-90.039823","30.004030"],["-90.039948","30.004092"],["-90.040099","30.004148"],["-90.040153","30.004255"],["-90.040206","30.004362"],["-90.040259","30.004468"],["-90.040313","30.004575"],["-90.040366","30.004682"],["-90.040420","30.004788"],["-90.040473","30.004895"],["-90.040527","30.005002"],["-90.040580","30.005108"],["-90.040634","30.005215"],["-90.040687","30.005322"],["-90.040741","30.005428"],["-90.040794","30.005535"],["-90.040847","30.005642"],["-90.040901","30.005748"],["-90.040954","30.005855"],["-90.041001","30.005943"],["-90.041048","30.006031"],["-90.041094","30.006119"],["-90.041141","30.006207"],["-90.041187","30.006295"],["-90.041234","30.006383"],["-90.041281","30.006471"],["-90.041327","30.006559"],["-90.041388","30.006739"],["-90.041448","30.006919"],["-90.041468","30.007013"],["-90.041488","30.007108"],["-90.041509","30.007202"],["-90.041529","30.007297"],["-90.041549","30.007391"],["-90.041569","30.007486"],["-90.041590","30.007580"],["-90.041610","30.007675"],["-90.041633","30.007796"],["-90.041655","30.007918"],["-90.041678","30.008039"],["-90.041700","30.008161"],["-90.041723","30.008282"],["-90.041746","30.008403"],["-90.041768","30.008525"],["-90.041791","30.008646"],["-90.041822","30.008836"],["-90.041853","30.009025"],["-90.041884","30.009214"],["-90.041914","30.009404"],["-90.041857","30.009527"],["-90.041965","30.009660"],["-90.041993","30.009799"],["-90.042022","30.009937"],["-90.042050","30.010076"],["-90.042079","30.010214"],["-90.042097","30.010347"],["-90.042115","30.010481"],["-90.042133","30.010615"],["-90.042151","30.010749"],["-90.042169","30.010882"],["-90.042187","30.011016"],["-90.042205","30.011150"],["-90.042223","30.011283"],["-90.042241","30.011417"],["-90.042259","30.011551"],["-90.042278","30.011685"],["-90.042296","30.011818"],["-90.042314","30.011952"],["-90.042332","30.012086"],["-90.042350","30.012220"],["-90.042368","30.012353"],["-90.042386","30.012487"],["-90.042404","30.012621"],["-90.042422","30.012754"],["-90.042440","30.012888"],["-90.042458","30.013022"],["-90.042476","30.013156"],["-90.042494","30.013289"],["-90.042512","30.013423"],["-90.042530","30.013557"],["-90.042548","30.013691"],["-90.042566","30.013824"],["-90.042584","30.013958"],["-90.042602","30.014092"],["-90.042621","30.014226"],["-90.042639","30.014359"],["-90.042631","30.014474"],["-90.042624","30.014588"],["-90.042639","30.014759"],["-90.042655","30.014931"],["-90.042637","30.015076"],["-90.042620","30.015221"],["-90.042602","30.015366"],["-90.042585","30.015511"],["-90.042568","30.015656"],["-90.042550","30.015802"],["-90.042533","30.015947"],["-90.042515","30.016092"],["-90.042478","30.016210"],["-90.042435","30.016358"],["-90.042392","30.016505"],["-90.042354","30.016631"],["-90.042317","30.016756"],["-90.042279","30.016881"],["-90.042242","30.017007"],["-90.042251","30.017142"],["-90.042260","30.017276"],["-90.042270","30.017411"],["-90.042279","30.017546"],["-90.042344","30.017697"],["-90.042408","30.017848"],["-90.042472","30.017999"],["-90.042537","30.018150"],["-90.042628","30.018235"],["-90.042719","30.018321"],["-90.042810","30.018407"],["-90.042901","30.018493"],["-90.042982","30.018590"],["-90.043062","30.018686"],["-90.043143","30.018782"],["-90.043223","30.018879"],["-90.043280","30.019007"],["-90.043336","30.019135"],["-90.043433","30.019239"],["-90.043529","30.019343"],["-90.043567","30.019465"],["-90.043605","30.019587"],["-90.043642","30.019708"],["-90.043680","30.019830"],["-90.043720","30.019970"],["-90.043740","30.020070"],["-90.043750","30.020150"],["-90.043760","30.020320"],["-90.043770","30.020350"],["-90.043760","30.020430"],["-90.043770","30.020590"],["-90.043765","30.020700"],["-90.043760","30.020810"],["-90.043735","30.020965"],["-90.043710","30.021120"],["-90.043685","30.021275"],["-90.043660","30.021430"],["-90.043655","30.021533"],["-90.043650","30.021635"],["-90.043645","30.021738"],["-90.043640","30.021840"],["-90.043660","30.022020"],["-90.043660","30.022180"],["-90.043670","30.022280"],["-90.043680","30.022380"],["-90.043690","30.022520"],["-90.043605","30.022522"],["-90.043690","30.022520"],["-90.043700","30.022670"],["-90.043710","30.022820"],["-90.043730","30.022930"],["-90.043735","30.023045"],["-90.043740","30.023160"],["-90.043750","30.023190"],["-90.043760","30.023303"],["-90.043770","30.023453"],["-90.043780","30.023602"],["-90.043790","30.023752"],["-90.043800","30.023902"],["-90.043810","30.024051"],["-90.043820","30.024201"],["-90.043830","30.024350"],["-90.043840","30.024500"],["-90.043820","30.024660"],["-90.043800","30.024800"],["-90.043760","30.024920"],["-90.043720","30.025040"],["-90.043680","30.025160"],["-90.043640","30.025280"],["-90.043585","30.025365"],["-90.043530","30.025450"],["-90.043440","30.025580"],["-90.043350","30.025710"],["-90.043290","30.025800"],["-90.043230","30.025890"],["-90.043180","30.025990"],["-90.043150","30.026110"],["-90.043140","30.026190"],["-90.043150","30.026300"],["-90.043180","30.026440"],["-90.043220","30.026530"],["-90.043300","30.026650"],["-90.043440","30.026790"],["-90.043575","30.026925"],["-90.043710","30.027060"],["-90.043830","30.027180"],["-90.043950","30.027300"],["-90.043900","30.027340"],["-90.043904","30.027351"],["-90.043900","30.027340"],["-90.043950","30.027300"],["-90.044070","30.027415"],["-90.044190","30.027530"],["-90.044325","30.027670"],["-90.044460","30.027810"],["-90.044480","30.027830"],["-90.044610","30.027960"],["-90.044660","30.028010"],["-90.044690","30.028040"],["-90.044740","30.028100"],["-90.044770","30.028120"],["-90.044860","30.028210"],["-90.044880","30.028230"],["-90.045020","30.028370"],["-90.045042","30.028508"],["-90.045176","30.028579"],["-90.045310","30.028650"],["-90.045390","30.028728"],["-90.045470","30.028805"],["-90.045550","30.028883"],["-90.045630","30.028960"],["-90.045730","30.028870"],["-90.045880","30.028760"],["-90.045990","30.028675"],["-90.046100","30.028590"],["-90.046160","30.028540"],["-90.046210","30.028510"],["-90.046280","30.028450"],["-90.046440","30.028320"],["-90.046570","30.028200"],["-90.046600","30.028170"],["-90.046650","30.028130"],["-90.046740","30.028030"],["-90.046790","30.027990"],["-90.046810","30.027970"],["-90.046895","30.027885"],["-90.046980","30.027800"],["-90.047075","30.027715"],["-90.047170","30.027630"],["-90.047200","30.027600"],["-90.047210","30.027600"],["-90.047360","30.027480"],["-90.047490","30.027410"],["-90.047600","30.027330"],["-90.047680","30.027290"],["-90.047830","30.027200"],["-90.047950","30.027170"],["-90.048150","30.027125"],["-90.048350","30.027080"],["-90.048508","30.027050"],["-90.048665","30.027020"],["-90.048823","30.026990"],["-90.048980","30.026960"],["-90.049098","30.026940"],["-90.049215","30.026920"],["-90.049333","30.026900"],["-90.049450","30.026880"],["-90.049650","30.026840"],["-90.049841","30.026805"],["-90.050033","30.026770"],["-90.050224","30.026735"],["-90.050415","30.026700"],["-90.050606","30.026665"],["-90.050798","30.026630"],["-90.050989","30.026595"],["-90.051180","30.026560"],["-90.051395","30.026525"],["-90.051610","30.026490"],["-90.051825","30.026455"],["-90.052040","30.026420"],["-90.052046","30.026440"],["-90.052040","30.026420"],["-90.052090","30.026410"],["-90.052280","30.026370"],["-90.052410","30.026348"],["-90.052540","30.026325"],["-90.052670","30.026303"],["-90.052800","30.026280"],["-90.052960","30.026250"],["-90.053120","30.026220"],["-90.053320","30.026185"],["-90.053520","30.026150"],["-90.053620","30.026130"],["-90.053750","30.026110"],["-90.053918","30.026075"],["-90.054085","30.026040"],["-90.054253","30.026005"],["-90.054420","30.025970"],["-90.054460","30.025960"],["-90.054650","30.025935"],["-90.054840","30.025910"],["-90.054845","30.025958"],["-90.054840","30.025910"],["-90.054950","30.025900"],["-90.055098","30.025880"],["-90.055245","30.025860"],["-90.055393","30.025840"],["-90.055540","30.025820"],["-90.055663","30.025803"],["-90.055785","30.025785"],["-90.055908","30.025768"],["-90.056030","30.025750"],["-90.056153","30.025733"],["-90.056275","30.025715"],["-90.056398","30.025698"],["-90.056550","30.025680"],["-90.056566","30.025743"],["-90.056550","30.025680"],["-90.056680","30.025655"],["-90.056810","30.025630"],["-90.057005","30.025600"],["-90.057200","30.025570"],["-90.057410","30.025545"],["-90.057620","30.025520"],["-90.057764","30.025501"],["-90.057908","30.025483"],["-90.058051","30.025464"],["-90.058195","30.025445"],["-90.058339","30.025426"],["-90.058483","30.025408"],["-90.058626","30.025389"],["-90.058770","30.025370"],["-90.058786","30.025472"],["-90.058770","30.025370"],["-90.058890","30.025350"],["-90.059043","30.025335"],["-90.059195","30.025320"],["-90.059348","30.025305"],["-90.059500","30.025290"],["-90.059680","30.025275"],["-90.059860","30.025260"],["-90.060065","30.025250"],["-90.060270","30.025240"],["-90.060350","30.025240"],["-90.060480","30.025240"],["-90.060680","30.025260"],["-90.060800","30.025265"],["-90.060920","30.025270"],["-90.061120","30.025250"],["-90.061135","30.025405"],["-90.061150","30.025560"],["-90.061070","30.025569"],["-90.061160","30.025560"],["-90.061170","30.025730"],["-90.061180","30.025848"],["-90.061190","30.025965"],["-90.061200","30.026083"],["-90.061210","30.026200"],["-90.061222","30.026370"],["-90.061235","30.026540"],["-90.061247","30.026710"],["-90.061260","30.026880"],["-90.061275","30.027043"],["-90.061290","30.027205"],["-90.061305","30.027368"],["-90.061312","30.027464"],["-90.061320","30.027560"],["-90.061279","30.027533"],["-90.061320","30.027560"],["-90.061332","30.027715"],["-90.061345","30.027870"],["-90.061357","30.028025"],["-90.061370","30.028180"],["-90.061382","30.028335"],["-90.061395","30.028490"],["-90.061407","30.028645"],["-90.061420","30.028800"],["-90.061435","30.028960"],["-90.061450","30.029120"],["-90.061480","30.029120"],["-90.061530","30.029110"],["-90.061650","30.029100"],["-90.061830","30.029080"],["-90.061940","30.029053"],["-90.062050","30.029025"],["-90.062160","30.028998"],["-90.062270","30.028970"],["-90.062380","30.028943"],["-90.062490","30.028915"],["-90.062600","30.028888"],["-90.062710","30.028860"],["-90.062870","30.028820"],["-90.062880","30.028820"],["-90.063080","30.028780"],["-90.063190","30.028760"],["-90.063300","30.028740"],["-90.063450","30.028700"],["-90.063600","30.028660"],["-90.063750","30.028620"],["-90.063900","30.028580"],["-90.064080","30.028540"],["-90.064150","30.028520"],["-90.064293","30.028483"],["-90.064435","30.028445"],["-90.064578","30.028408"],["-90.064720","30.028370"],["-90.064870","30.028305"],["-90.065020","30.028240"],["-90.065145","30.028235"],["-90.065270","30.028230"],["-90.065310","30.028220"],["-90.065340","30.028200"],["-90.065360","30.028170"],["-90.065370","30.028140"],["-90.065380","30.028100"],["-90.065380","30.028060"],["-90.065370","30.028040"],["-90.065380","30.028020"],["-90.065370","30.027990"],["-90.065370","30.027980"],["-90.065412","30.027973"],["-90.065370","30.027980"],["-90.065370","30.027970"],["-90.065350","30.027950"],["-90.065330","30.027930"],["-90.065290","30.027900"],["-90.065250","30.027890"],["-90.065210","30.027890"],["-90.065190","30.027890"],["-90.065160","30.027890"],["-90.065130","30.027900"],["-90.064930","30.027950"],["-90.064808","30.027980"],["-90.064685","30.028010"],["-90.064563","30.028040"],["-90.064440","30.028070"],["-90.064330","30.028100"],["-90.064230","30.028130"],["-90.064060","30.028170"],["-90.063890","30.028210"],["-90.063710","30.028250"],["-90.063530","30.028290"],["-90.063350","30.028330"],["-90.063170","30.028370"],["-90.062975","30.028435"],["-90.062780","30.028500"],["-90.062760","30.028500"],["-90.062563","30.028553"],["-90.062365","30.028605"],["-90.062168","30.028658"],["-90.061970","30.028710"],["-90.061800","30.028750"],["-90.061787","30.028599"],["-90.061775","30.028448"],["-90.061762","30.028296"],["-90.061750","30.028145"],["-90.061737","30.027994"],["-90.061725","30.027843"],["-90.061712","30.027691"],["-90.061700","30.027540"],["-90.061690","30.027400"],["-90.061680","30.027260"],["-90.061670","30.027120"],["-90.061660","30.026980"],["-90.061651","30.026879"],["-90.061642","30.026778"],["-90.061634","30.026676"],["-90.061625","30.026575"],["-90.061616","30.026474"],["-90.061607","30.026373"],["-90.061599","30.026271"],["-90.061590","30.026170"],["-90.061581","30.026059"],["-90.061572","30.025948"],["-90.061564","30.025836"],["-90.061555","30.025725"],["-90.061546","30.025614"],["-90.061537","30.025503"],["-90.061529","30.025391"],["-90.061566","30.025278"],["-90.061500","30.025280"],["-90.061500","30.025220"],["-90.061495","30.025120"],["-90.061490","30.025020"],["-90.061480","30.024890"],["-90.061480","30.024780"],["-90.061485","30.024630"],["-90.061490","30.024480"],["-90.061490","30.024340"],["-90.061480","30.024240"],["-90.061470","30.024140"],["-90.061461","30.024024"],["-90.061452","30.023908"],["-90.061444","30.023791"],["-90.061435","30.023675"],["-90.061426","30.023559"],["-90.061417","30.023443"],["-90.061409","30.023326"],["-90.061400","30.023210"],["-90.061465","30.023211"],["-90.061400","30.023210"],["-90.061400","30.023130"],["-90.061390","30.023010"],["-90.061380","30.022890"],["-90.061370","30.022770"],["-90.061360","30.022650"],["-90.061350","30.022530"],["-90.061340","30.022410"],["-90.061330","30.022290"],["-90.061320","30.022170"],["-90.061392","30.022162"],["-90.061320","30.022170"],["-90.061310","30.022100"],["-90.061305","30.021995"],["-90.061300","30.021890"],["-90.061290","30.021764"],["-90.061280","30.021638"],["-90.061270","30.021511"],["-90.061260","30.021385"],["-90.061250","30.021259"],["-90.061240","30.021133"],["-90.061230","30.021006"],["-90.061220","30.020880"],["-90.061209","30.020754"],["-90.061197","30.020628"],["-90.061186","30.020501"],["-90.061175","30.020375"],["-90.061164","30.020249"],["-90.061152","30.020123"],["-90.061141","30.019996"],["-90.061130","30.019870"],["-90.061122","30.019760"],["-90.061115","30.019650"],["-90.061107","30.019540"],["-90.061100","30.019430"],["-90.061163","30.019429"],["-90.061100","30.019430"],["-90.061090","30.019350"],["-90.061082","30.019225"],["-90.061075","30.019100"],["-90.061067","30.018975"],["-90.061060","30.018850"],["-90.061049","30.018724"],["-90.061037","30.018598"],["-90.061026","30.018471"],["-90.061015","30.018345"],["-90.061004","30.018219"],["-90.060992","30.018093"],["-90.060981","30.017966"],["-90.060970","30.017840"],["-90.060960","30.017719"],["-90.060950","30.017598"],["-90.060940","30.017476"],["-90.060930","30.017355"],["-90.060920","30.017234"],["-90.060910","30.017113"],["-90.060900","30.016991"],["-90.060890","30.016870"],["-90.060948","30.016866"],["-90.060890","30.016870"],["-90.060880","30.016790"],["-90.060870","30.016630"],["-90.060860","30.016500"],["-90.060850","30.016370"],["-90.060840","30.016240"],["-90.060830","30.016110"],["-90.060820","30.015980"],["-90.060810","30.015850"],["-90.060800","30.015720"],["-90.060790","30.015590"],["-90.060781","30.015474"],["-90.060772","30.015358"],["-90.060764","30.015241"],["-90.060755","30.015125"],["-90.060746","30.015009"],["-90.060737","30.014893"],["-90.060729","30.014776"],["-90.060720","30.014660"],["-90.060776","30.014654"],["-90.060720","30.014660"],["-90.060710","30.014570"],["-90.060700","30.014444"],["-90.060690","30.014318"],["-90.060680","30.014191"],["-90.060670","30.014065"],["-90.060660","30.013939"],["-90.060650","30.013813"],["-90.060640","30.013686"],["-90.060630","30.013560"],["-90.060600","30.013405"],["-90.060570","30.013250"],["-90.060550","30.013150"],["-90.060530","30.013050"],["-90.060500","30.012870"],["-90.060490","30.012740"],["-90.060480","30.012610"],["-90.060542","30.012607"],["-90.060480","30.012610"],["-90.060480","30.012530"],["-90.060460","30.012350"],["-90.060445","30.012188"],["-90.060430","30.012025"],["-90.060415","30.011863"],["-90.060400","30.011700"],["-90.060385","30.011510"],["-90.060370","30.011320"],["-90.060361","30.011204"],["-90.060352","30.011088"],["-90.060344","30.010971"],["-90.060335","30.010855"],["-90.060326","30.010739"],["-90.060317","30.010623"],["-90.060309","30.010506"],["-90.060300","30.010390"],["-90.060352","30.010387"],["-90.060300","30.010390"],["-90.060290","30.010310"],["-90.060282","30.010213"],["-90.060275","30.010115"],["-90.060267","30.010018"],["-90.060260","30.009920"],["-90.060247","30.009763"],["-90.060235","30.009605"],["-90.060222","30.009448"],["-90.060210","30.009290"],["-90.060201","30.009173"],["-90.060192","30.009055"],["-90.060184","30.008938"],["-90.060175","30.008820"],["-90.060166","30.008703"],["-90.060157","30.008585"],["-90.060149","30.008468"],["-90.060140","30.008350"],["-90.060198","30.008345"],["-90.060140","30.008350"],["-90.060130","30.008230"],["-90.060120","30.008100"],["-90.060109","30.007969"],["-90.060097","30.007838"],["-90.060086","30.007706"],["-90.060075","30.007575"],["-90.060064","30.007444"],["-90.060052","30.007313"],["-90.060041","30.007181"],["-90.060030","30.007050"],["-90.060022","30.006934"],["-90.060015","30.006818"],["-90.060007","30.006701"],["-90.060000","30.006585"],["-90.059992","30.006469"],["-90.059985","30.006353"],["-90.059977","30.006236"],["-90.059970","30.006120"],["-90.060007","30.006120"],["-90.059970","30.006120"],["-90.059960","30.006030"],["-90.059940","30.005930"],["-90.059931","30.005829"],["-90.059922","30.005728"],["-90.059914","30.005626"],["-90.059905","30.005525"],["-90.059896","30.005424"],["-90.059887","30.005323"],["-90.059879","30.005221"],["-90.059870","30.005120"],["-90.059937","30.005113"],["-90.059870","30.005120"],["-90.059860","30.005020"],["-90.059850","30.004894"],["-90.059840","30.004768"],["-90.059830","30.004641"],["-90.059820","30.004515"],["-90.059810","30.004389"],["-90.059800","30.004263"],["-90.059790","30.004136"],["-90.059780","30.004010"],["-90.059772","30.003884"],["-90.059765","30.003758"],["-90.059757","30.003631"],["-90.059750","30.003505"],["-90.059742","30.003379"],["-90.059735","30.003253"],["-90.059727","30.003126"],["-90.059720","30.003000"],["-90.059709","30.002886"],["-90.059697","30.002773"],["-90.059686","30.002659"],["-90.059675","30.002545"],["-90.059664","30.002431"],["-90.059652","30.002318"],["-90.059641","30.002204"],["-90.059630","30.002090"],["-90.059714","30.002085"],["-90.059630","30.002090"],["-90.059620","30.001980"],["-90.059612","30.001860"],["-90.059605","30.001740"],["-90.059597","30.001620"],["-90.059590","30.001500"],["-90.059577","30.001368"],["-90.059565","30.001235"],["-90.059552","30.001103"],["-90.059540","30.000970"],["-90.059535","30.000860"],["-90.059530","30.000750"],["-90.059515","30.000605"],["-90.059500","30.000460"],["-90.059490","30.000300"],["-90.059475","30.000135"],["-90.059460","29.999970"],["-90.059445","29.999815"],["-90.059430","29.999660"],["-90.059508","29.999653"],["-90.059430","29.999660"],["-90.059420","29.999600"],["-90.059410","29.999450"],["-90.059395","29.999290"],["-90.059380","29.999130"],["-90.059370","29.999040"],["-90.059461","29.999029"],["-90.059370","29.999040"],["-90.059360","29.998950"],["-90.059360","29.998790"],["-90.059350","29.998683"],["-90.059340","29.998575"],["-90.059330","29.998468"],["-90.059320","29.998360"],["-90.059310","29.998253"],["-90.059300","29.998145"],["-90.059290","29.998038"],["-90.059280","29.997930"],["-90.059271","29.997813"],["-90.059262","29.997695"],["-90.059254","29.997578"],["-90.059245","29.997460"],["-90.059236","29.997343"],["-90.059227","29.997225"],["-90.059219","29.997108"],["-90.059210","29.996990"],["-90.059305","29.996982"],["-90.059210","29.996990"],["-90.059200","29.996920"],["-90.059192","29.996810"],["-90.059185","29.996700"],["-90.059177","29.996590"],["-90.059170","29.996480"],["-90.059160","29.996330"],["-90.059150","29.996180"],["-90.059140","29.996045"],["-90.059130","29.995910"],["-90.059120","29.995795"],["-90.059110","29.995680"],["-90.059100","29.995565"],["-90.059090","29.995450"],["-90.059080","29.995335"],["-90.059070","29.995220"],["-90.059060","29.995105"],["-90.059050","29.994990"],["-90.059135","29.994981"],["-90.059050","29.994990"],["-90.059040","29.994900"],["-90.059031","29.994773"],["-90.059022","29.994645"],["-90.059014","29.994518"],["-90.059005","29.994390"],["-90.058996","29.994263"],["-90.058987","29.994135"],["-90.058979","29.994008"],["-90.058970","29.993880"],["-90.058960","29.993763"],["-90.058950","29.993645"],["-90.058940","29.993528"],["-90.058930","29.993410"],["-90.058920","29.993293"],["-90.058910","29.993175"],["-90.058900","29.993058"],["-90.058890","29.992940"],["-90.058989","29.992931"],["-90.058890","29.992940"],["-90.058890","29.992850"],["-90.058880","29.992724"],["-90.058870","29.992598"],["-90.058860","29.992471"],["-90.058850","29.992345"],["-90.058840","29.992219"],["-90.058830","29.992093"],["-90.058820","29.991966"],["-90.058810","29.991840"],["-90.058800","29.991720"],["-90.058790","29.991540"],["-90.058780","29.991450"],["-90.058780","29.991410"],["-90.058760","29.991230"],["-90.058760","29.991220"],["-90.058740","29.991050"],["-90.058720","29.990880"],["-90.058720","29.990790"],["-90.058710","29.990780"],["-90.058702","29.990653"],["-90.058695","29.990525"],["-90.058687","29.990398"],["-90.058680","29.990270"],["-90.058670","29.990158"],["-90.058660","29.990045"],["-90.058650","29.989933"],["-90.058640","29.989820"],["-90.058630","29.989670"],["-90.058625","29.989565"],["-90.058620","29.989460"],["-90.058610","29.989400"],["-90.058600","29.989278"],["-90.058590","29.989155"],["-90.058580","29.989033"],["-90.058570","29.988910"],["-90.058646","29.988905"],["-90.058570","29.988910"],["-90.058570","29.988860"],["-90.058560","29.988820"],["-90.058550","29.988690"],["-90.058520","29.988540"],["-90.058490","29.988390"],["-90.058465","29.988270"],["-90.058440","29.988150"],["-90.058415","29.987975"],["-90.058390","29.987800"],["-90.058370","29.987620"],["-90.058360","29.987520"],["-90.058350","29.987420"],["-90.058340","29.987285"],["-90.058330","29.987150"],["-90.058320","29.987045"],["-90.058310","29.986940"],["-90.058300","29.986835"],["-90.058290","29.986730"],["-90.058280","29.986680"],["-90.058280","29.986630"],["-90.058270","29.986500"],["-90.058260","29.986370"],["-90.058250","29.986270"],["-90.058240","29.986140"],["-90.058230","29.986010"],["-90.058220","29.985910"],["-90.058220","29.985890"],["-90.058220","29.985880"],["-90.058200","29.985730"],["-90.058190","29.985550"],["-90.058180","29.985450"],["-90.058170","29.985310"],["-90.058160","29.985170"],["-90.058140","29.984990"],["-90.058130","29.984875"],["-90.058120","29.984760"],["-90.058110","29.984640"],["-90.058107","29.984535"],["-90.058105","29.984430"],["-90.058102","29.984325"],["-90.058100","29.984220"],["-90.058090","29.984120"],["-90.058080","29.984020"],["-90.058070","29.983890"],["-90.058060","29.983760"],["-90.058060","29.983730"],["-90.058060","29.983640"],["-90.058060","29.983500"],["-90.058070","29.983370"],["-90.058080","29.983210"],["-90.058085","29.983110"],["-90.058090","29.983010"],["-90.058095","29.982910"],["-90.058100","29.982810"],["-90.058206","29.982811"],["-90.058100","29.982810"],["-90.058110","29.982730"],["-90.058110","29.982560"],["-90.058120","29.982385"],["-90.058130","29.982210"],["-90.058130","29.982060"],["-90.058130","29.981900"],["-90.058140","29.981760"],["-90.058150","29.981573"],["-90.058160","29.981385"],["-90.058170","29.981198"],["-90.058180","29.981010"],["-90.058180","29.980835"],["-90.058180","29.980660"],["-90.058170","29.980540"],["-90.058160","29.980435"],["-90.058150","29.980330"],["-90.058150","29.980310"],["-90.058106","29.980158"],["-90.058061","29.980006"],["-90.058017","29.979855"],["-90.057972","29.979703"],["-90.058100","29.979713"],["-90.057972","29.979629"],["-90.057933","29.979507"],["-90.057894","29.979385"],["-90.057856","29.979263"],["-90.057817","29.979141"],["-90.057799","29.979038"],["-90.057782","29.978936"],["-90.057764","29.978834"],["-90.057747","29.978732"],["-90.057855","29.978741"],["-90.057747","29.978699"],["-90.057739","29.978594"],["-90.057730","29.978489"],["-90.057722","29.978385"],["-90.057713","29.978280"],["-90.057705","29.978175"],["-90.057697","29.978070"],["-90.057688","29.977965"],["-90.057680","29.977860"],["-90.057670","29.977755"],["-90.057660","29.977650"],["-90.057645","29.977465"],["-90.057630","29.977280"],["-90.057625","29.977125"],["-90.057620","29.976970"],["-90.057610","29.976805"],["-90.057600","29.976640"],["-90.057591","29.976526"],["-90.057582","29.976413"],["-90.057574","29.976299"],["-90.057565","29.976185"],["-90.057556","29.976071"],["-90.057547","29.975958"],["-90.057539","29.975844"],["-90.057530","29.975730"],["-90.057601","29.975728"],["-90.057530","29.975730"],["-90.057520","29.975630"],["-90.057509","29.975503"],["-90.057497","29.975375"],["-90.057486","29.975248"],["-90.057475","29.975120"],["-90.057464","29.974993"],["-90.057452","29.974865"],["-90.057441","29.974738"],["-90.057430","29.974610"],["-90.057425","29.974460"],["-90.057420","29.974310"],["-90.057410","29.974200"],["-90.057400","29.974090"],["-90.057385","29.973925"],["-90.057370","29.973760"],["-90.057360","29.973710"],["-90.057459","29.973703"],["-90.057390","29.973710"],["-90.057380","29.973590"],["-90.057380","29.973560"],["-90.057370","29.973440"],["-90.057350","29.973260"],["-90.057340","29.973080"],["-90.057330","29.972930"],["-90.057315","29.972755"],["-90.057300","29.972580"],["-90.057290","29.972463"],["-90.057280","29.972345"],["-90.057270","29.972228"],["-90.057260","29.972110"],["-90.057250","29.971983"],["-90.057240","29.971855"],["-90.057230","29.971728"],["-90.057220","29.971570"],["-90.057241","29.971597"],["-90.057220","29.971570"],["-90.057210","29.971440"],["-90.057200","29.971310"],["-90.057190","29.971180"],["-90.057180","29.971050"],["-90.057170","29.970928"],["-90.057160","29.970805"],["-90.057150","29.970683"],["-90.057140","29.970560"],["-90.057130","29.970440"],["-90.057120","29.970320"],["-90.057110","29.970200"],["-90.057100","29.970080"],["-90.057090","29.969943"],["-90.057080","29.969805"],["-90.057070","29.969668"],["-90.057060","29.969530"],["-90.057050","29.969380"],["-90.057040","29.969310"],["-90.057030","29.969200"],["-90.057030","29.969130"],["-90.057020","29.969030"],["-90.057010","29.968860"],["-90.056990","29.968690"],["-90.057182","29.968750"],["-90.057180","29.968670"],["-90.057378","29.968658"],["-90.057575","29.968645"],["-90.057773","29.968633"],["-90.057970","29.968620"],["-90.058070","29.968610"],["-90.058160","29.968600"],["-90.058260","29.968580"],["-90.058388","29.968554"],["-90.058515","29.968528"],["-90.058643","29.968501"],["-90.058770","29.968475"],["-90.058898","29.968449"],["-90.059025","29.968423"],["-90.059153","29.968396"],["-90.059280","29.968370"],["-90.059440","29.968360"],["-90.059600","29.968350"],["-90.059795","29.968340"],["-90.059990","29.968330"],["-90.060200","29.968320"],["-90.060410","29.968310"],["-90.060533","29.968303"],["-90.060655","29.968295"],["-90.060778","29.968288"],["-90.060900","29.968280"],["-90.060980","29.968240"],["-90.061060","29.968210"],["-90.061180","29.968180"],["-90.061370","29.968110"],["-90.061520","29.968050"],["-90.061620","29.967990"],["-90.061710","29.967950"],["-90.061810","29.967890"],["-90.061910","29.967830"],["-90.061960","29.967790"],["-90.062030","29.967740"],["-90.062090","29.967680"],["-90.062170","29.967610"],["-90.062220","29.967570"],["-90.062320","29.967450"],["-90.062370","29.967400"],["-90.062412","29.967436"],["-90.062370","29.967410"],["-90.062440","29.967340"],["-90.062525","29.967240"],["-90.062610","29.967140"],["-90.062620","29.967130"],["-90.062640","29.967110"],["-90.062728","29.967013"],["-90.062815","29.966915"],["-90.062903","29.966818"],["-90.062990","29.966720"],["-90.063020","29.966690"],["-90.063150","29.966540"],["-90.063280","29.966390"],["-90.063350","29.966308"],["-90.063420","29.966225"],["-90.063490","29.966143"],["-90.063560","29.966060"],["-90.063585","29.966079"],["-90.063560","29.966060"],["-90.063570","29.966050"],["-90.063600","29.966020"],["-90.063720","29.965900"],["-90.063800","29.965800"],["-90.063890","29.965700"],["-90.063980","29.965600"],["-90.064095","29.965475"],["-90.064210","29.965350"],["-90.064280","29.965260"],["-90.064363","29.965170"],["-90.064445","29.965080"],["-90.064528","29.964990"],["-90.064610","29.964900"],["-90.064683","29.964820"],["-90.064755","29.964740"],["-90.064828","29.964660"],["-90.064900","29.964580"],["-90.064930","29.964540"],["-90.064980","29.964490"],["-90.065053","29.964409"],["-90.065125","29.964328"],["-90.065198","29.964246"],["-90.065270","29.964165"],["-90.065343","29.964084"],["-90.065415","29.964003"],["-90.065488","29.963921"],["-90.065560","29.963840"],["-90.065584","29.963862"],["-90.065560","29.963840"],["-90.065600","29.963800"],["-90.065678","29.963713"],["-90.065755","29.963625"],["-90.065833","29.963538"],["-90.065910","29.963450"],["-90.066008","29.963340"],["-90.066105","29.963230"],["-90.066203","29.963120"],["-90.066300","29.963010"],["-90.066385","29.962915"],["-90.066470","29.962820"],["-90.066555","29.962725"],["-90.066640","29.962630"],["-90.066735","29.962525"],["-90.066830","29.962420"],["-90.066925","29.962315"],["-90.067020","29.962210"],["-90.067106","29.962113"],["-90.067193","29.962015"],["-90.067279","29.961918"],["-90.067365","29.961820"],["-90.067451","29.961723"],["-90.067538","29.961625"],["-90.067624","29.961528"],["-90.067730","29.961420"],["-90.067726","29.961445"],["-90.067730","29.961420"],["-90.067855","29.961275"],["-90.067980","29.961130"],["-90.068110","29.960990"],["-90.068140","29.960940"],["-90.068233","29.960838"],["-90.068325","29.960735"],["-90.068418","29.960633"],["-90.068510","29.960530"],["-90.068600","29.960430"],["-90.068733","29.960283"],["-90.068865","29.960135"],["-90.068998","29.959988"],["-90.069130","29.959840"],["-90.069140","29.959830"],["-90.069189","29.959861"],["-90.069140","29.959830"],["-90.069210","29.959750"],["-90.069290","29.959660"],["-90.069370","29.959570"],["-90.069470","29.959460"],["-90.069548","29.959373"],["-90.069625","29.959285"],["-90.069703","29.959198"],["-90.069780","29.959110"],["-90.069850","29.959030"],["-90.069920","29.958950"],["-90.070000","29.958863"],["-90.070080","29.958775"],["-90.070160","29.958688"],["-90.070240","29.958600"],["-90.070320","29.958510"],["-90.070400","29.958420"],["-90.070480","29.958330"],["-90.070560","29.958240"],["-90.070568","29.958241"],["-90.070560","29.958240"],["-90.070590","29.958200"],["-90.070679","29.958101"],["-90.070768","29.958003"],["-90.070856","29.957904"],["-90.070945","29.957805"],["-90.071034","29.957706"],["-90.071123","29.957608"],["-90.071211","29.957509"],["-90.071300","29.957410"],["-90.071420","29.957488"],["-90.071540","29.957565"],["-90.071660","29.957643"],["-90.071780","29.957720"],["-90.071915","29.957810"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074078","29.955755"],["-90.074000","29.955700"],["-90.074090","29.955605"],["-90.074180","29.955510"],["-90.074280","29.955420"],["-90.074400","29.955280"],["-90.074485","29.955180"],["-90.074570","29.955080"],["-90.074650","29.954988"],["-90.074730","29.954895"],["-90.074810","29.954803"],["-90.074890","29.954710"],["-90.074980","29.954610"],["-90.075070","29.954480"],["-90.075140","29.954360"],["-90.075150","29.954330"],["-90.075220","29.954180"],["-90.075280","29.954073"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.070671","29.958178"],["-90.067608","29.961198"],["-90.056700","29.969527"],["-90.056878","29.971554"],["-90.057002","29.973148"],["-90.057193","29.975599"],["-90.057419","29.978671"],["-90.057498","29.979653"],["-90.057713","29.982500"],["-90.058218","29.988779"],["-90.058428","29.990860"],["-90.058564","29.992851"],["-90.058722","29.994869"],["-90.058880","29.996896"],["-90.059115","29.999733"],["-90.059149","30.000112"],["-90.059274","30.001976"],["-90.059511","30.004994"],["-90.059613","30.006382"],["-90.059738","30.008165"],["-90.059904","30.009895"],["-90.060096","30.012354"],["-90.060265","30.014561"],["-90.060433","30.016633"],["-90.060702","30.019840"],["-90.060839","30.021894"],["-90.060940","30.023119"],["-90.061087","30.025010"],["-90.061408","29.967901"],["-90.057201","29.968461"],["-90.065412","30.027973"],["-90.074706","29.954333"],["-90.056671","29.968337"],["-90.075911","29.951058"],["-90.077310","29.951484"],["-90.063593","29.965692"],["-90.073384","29.955849"],["-90.075280","29.954073"],["-90.069186","29.959483"],["-90.065324","29.963818"]]},{"type":"LineString","coordinates":[["-90.075280","29.954073"],["-90.075309","29.953895"],["-90.075338","29.953717"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075390","29.953469"],["-90.075448","29.953296"],["-90.075505","29.953123"],["-90.075550","29.952990"],["-90.075579","29.952880"],["-90.075637","29.952707"],["-90.075695","29.952535"],["-90.075755","29.952362"],["-90.075790","29.952260"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075826","29.951651"],["-90.075813","29.951471"],["-90.075809","29.951420"],["-90.075858","29.951245"],["-90.075907","29.951071"],["-90.075911","29.951058"],["-90.076117","29.951080"],["-90.076323","29.951102"],["-90.076408","29.951111"],["-90.076490","29.951140"],["-90.076684","29.951205"],["-90.076820","29.951250"],["-90.077014","29.951315"],["-90.077187","29.951414"],["-90.077310","29.951484"],["-90.077513","29.951522"],["-90.077716","29.951559"],["-90.077770","29.951579"],["-90.077860","29.951620"],["-90.078049","29.951695"],["-90.078237","29.951770"],["-90.078339","29.951810"],["-90.078283","29.951983"],["-90.078227","29.952156"],["-90.078172","29.952330"],["-90.078130","29.952459"],["-90.078077","29.952633"],["-90.078030","29.952790"],["-90.077972","29.952963"],["-90.077950","29.953029"],["-90.077761","29.952955"],["-90.077571","29.952882"],["-90.077410","29.952819"],["-90.077280","29.952770"],["-90.077093","29.952692"],["-90.076905","29.952615"],["-90.076718","29.952537"],["-90.076528","29.952466"],["-90.076337","29.952394"],["-90.076169","29.952330"],["-90.076080","29.952290"],["-90.075900","29.952260"],["-90.075790","29.952260"],["-90.075630","29.952290"],["-90.075499","29.952360"],["-90.075443","29.952533"],["-90.075390","29.952700"],["-90.075350","29.952829"],["-90.075319","29.952939"],["-90.075266","29.953113"],["-90.075219","29.953269"],["-90.075200","29.953340"],["-90.075150","29.953490"],["-90.075099","29.953664"],["-90.075049","29.953839"],["-90.074998","29.954013"],["-90.074949","29.954150"],["-90.074792","29.954268"],["-90.074706","29.954333"],["-90.074620","29.954497"],["-90.074539","29.954650"],["-90.074407","29.954788"],["-90.074275","29.954927"],["-90.074143","29.955066"],["-90.074110","29.955100"],["-90.073980","29.955240"],["-90.073870","29.955360"],["-90.073735","29.955496"],["-90.073599","29.955633"],["-90.073464","29.955769"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071949","29.957461"],["-90.071797","29.957551"],["-90.071783","29.957652"],["-90.071770","29.957753"],["-90.071681","29.957851"],["-90.071593","29.957948"],["-90.071504","29.958046"],["-90.071416","29.958143"],["-90.071327","29.958241"],["-90.071239","29.958339"],["-90.071150","29.958436"],["-90.071062","29.958534"],["-90.070909","29.958425"],["-90.070756","29.958315"],["-90.070671","29.958178"],["-90.070523","29.958198"],["-90.070375","29.958218"],["-90.070290","29.958315"],["-90.070205","29.958413"],["-90.070120","29.958510"],["-90.070040","29.958598"],["-90.069960","29.958685"],["-90.069880","29.958773"],["-90.069800","29.958860"],["-90.069720","29.958950"],["-90.069650","29.959030"],["-90.069545","29.959150"],["-90.069440","29.959270"],["-90.069335","29.959390"],["-90.069230","29.959510"],["-90.069186","29.959483"],["-90.069230","29.959510"],["-90.069100","29.959650"],["-90.069013","29.959749"],["-90.068925","29.959848"],["-90.068838","29.959946"],["-90.068750","29.960045"],["-90.068663","29.960144"],["-90.068575","29.960243"],["-90.068488","29.960341"],["-90.068400","29.960440"],["-90.068305","29.960545"],["-90.068210","29.960650"],["-90.068115","29.960755"],["-90.068020","29.960860"],["-90.067990","29.960900"],["-90.067860","29.961040"],["-90.067770","29.961140"],["-90.067680","29.961240"],["-90.067608","29.961198"],["-90.067680","29.961240"],["-90.067610","29.961320"],["-90.067529","29.961410"],["-90.067448","29.961500"],["-90.067366","29.961590"],["-90.067285","29.961680"],["-90.067204","29.961770"],["-90.067123","29.961860"],["-90.067041","29.961950"],["-90.066960","29.962040"],["-90.066900","29.962110"],["-90.066810","29.962211"],["-90.066720","29.962313"],["-90.066630","29.962414"],["-90.066540","29.962515"],["-90.066450","29.962616"],["-90.066360","29.962718"],["-90.066270","29.962819"],["-90.066180","29.962920"],["-90.066083","29.963030"],["-90.065985","29.963140"],["-90.065888","29.963250"],["-90.065790","29.963360"],["-90.065710","29.963450"],["-90.065630","29.963540"],["-90.065550","29.963630"],["-90.065470","29.963720"],["-90.065324","29.963818"],["-90.065206","29.963966"],["-90.065089","29.964114"],["-90.064971","29.964263"],["-90.064854","29.964411"],["-90.064799","29.964480"],["-90.064672","29.964622"],["-90.064544","29.964764"],["-90.064417","29.964906"],["-90.064290","29.965048"],["-90.064162","29.965190"],["-90.064100","29.965260"],["-90.063952","29.965386"],["-90.063804","29.965512"],["-90.063656","29.965638"],["-90.063593","29.965692"],["-90.063660","29.965740"],["-90.063590","29.965810"],["-90.063480","29.965930"],["-90.063360","29.966065"],["-90.063240","29.966200"],["-90.063145","29.966305"],["-90.063050","29.966410"],["-90.062955","29.966515"],["-90.062860","29.966620"],["-90.062795","29.966705"],["-90.062730","29.966790"],["-90.062610","29.966925"],["-90.062490","29.967060"],["-90.062470","29.967090"],["-90.062395","29.967165"],["-90.062320","29.967240"],["-90.062250","29.967310"],["-90.062160","29.967410"],["-90.062100","29.967470"],["-90.062020","29.967540"],["-90.061930","29.967620"],["-90.061870","29.967670"],["-90.061810","29.967710"],["-90.061700","29.967780"],["-90.061590","29.967840"],["-90.061510","29.967890"],["-90.061420","29.967930"],["-90.061408","29.967901"],["-90.061420","29.967930"],["-90.061280","29.967990"],["-90.061170","29.968020"],["-90.061050","29.968060"],["-90.060920","29.968090"],["-90.060790","29.968120"],["-90.060650","29.968140"],["-90.060540","29.968150"],["-90.060400","29.968160"],["-90.060195","29.968173"],["-90.059990","29.968185"],["-90.059785","29.968198"],["-90.059580","29.968210"],["-90.059550","29.968210"],["-90.059450","29.968220"],["-90.059270","29.968240"],["-90.059123","29.968268"],["-90.058975","29.968295"],["-90.058828","29.968323"],["-90.058680","29.968350"],["-90.058490","29.968385"],["-90.058300","29.968420"],["-90.058150","29.968450"],["-90.058050","29.968460"],["-90.057920","29.968468"],["-90.057790","29.968475"],["-90.057660","29.968483"],["-90.057530","29.968490"],["-90.057310","29.968510"],["-90.057210","29.968510"],["-90.057201","29.968461"],["-90.057210","29.968510"],["-90.057095","29.968520"],["-90.056980","29.968530"],["-90.056970","29.968375"],["-90.056960","29.968220"],["-90.056950","29.968110"],["-90.056940","29.968000"],["-90.056930","29.967890"],["-90.056920","29.967780"],["-90.056850","29.967720"],["-90.056810","29.967700"],["-90.056760","29.967700"],["-90.056720","29.967710"],["-90.056680","29.967740"],["-90.056650","29.967780"],["-90.056660","29.967890"],["-90.056670","29.968000"],["-90.056680","29.968110"],["-90.056690","29.968220"],["-90.056700","29.968280"],["-90.056700","29.968330"],["-90.056671","29.968337"],["-90.056700","29.968330"],["-90.056710","29.968445"],["-90.056720","29.968560"],["-90.056760","29.968730"],["-90.056760","29.968900"],["-90.056760","29.969070"],["-90.056760","29.969190"],["-90.056740","29.969250"],["-90.056720","29.969400"],["-90.056720","29.969530"],["-90.056700","29.969527"],["-90.056720","29.969530"],["-90.056730","29.969570"],["-90.056740","29.969698"],["-90.056750","29.969825"],["-90.056760","29.969953"],["-90.056770","29.970080"],["-90.056780","29.970205"],["-90.056790","29.970330"],["-90.056800","29.970455"],["-90.056810","29.970580"],["-90.056820","29.970715"],["-90.056830","29.970850"],["-90.056840","29.970985"],["-90.056850","29.971120"],["-90.056857","29.971228"],["-90.056865","29.971335"],["-90.056872","29.971443"],["-90.056880","29.971550"],["-90.056878","29.971554"],["-90.056880","29.971550"],["-90.056890","29.971610"],["-90.056900","29.971725"],["-90.056910","29.971840"],["-90.056920","29.971955"],["-90.056930","29.972070"],["-90.056940","29.972203"],["-90.056950","29.972335"],["-90.056960","29.972468"],["-90.056970","29.972600"],["-90.056980","29.972738"],["-90.056990","29.972875"],["-90.057000","29.973013"],["-90.057010","29.973150"],["-90.057002","29.973148"],["-90.057010","29.973150"],["-90.057010","29.973200"],["-90.057030","29.973390"],["-90.057040","29.973505"],["-90.057050","29.973620"],["-90.057060","29.973810"],["-90.057075","29.973945"],["-90.057090","29.974080"],["-90.057090","29.974160"],["-90.057105","29.974320"],["-90.057120","29.974480"],["-90.057130","29.974630"],["-90.057140","29.974751"],["-90.057150","29.974873"],["-90.057160","29.974994"],["-90.057170","29.975115"],["-90.057180","29.975236"],["-90.057190","29.975358"],["-90.057200","29.975479"],["-90.057210","29.975600"],["-90.057193","29.975599"],["-90.057210","29.975600"],["-90.057210","29.975640"],["-90.057220","29.975768"],["-90.057230","29.975895"],["-90.057240","29.976023"],["-90.057250","29.976150"],["-90.057260","29.976278"],["-90.057270","29.976405"],["-90.057280","29.976533"],["-90.057290","29.976660"],["-90.057300","29.976786"],["-90.057310","29.976913"],["-90.057320","29.977039"],["-90.057330","29.977165"],["-90.057340","29.977291"],["-90.057350","29.977418"],["-90.057360","29.977544"],["-90.057370","29.977670"],["-90.057380","29.977785"],["-90.057390","29.977900"],["-90.057396","29.977996"],["-90.057402","29.978093"],["-90.057409","29.978189"],["-90.057415","29.978285"],["-90.057421","29.978381"],["-90.057427","29.978478"],["-90.057434","29.978574"],["-90.057450","29.978690"],["-90.057419","29.978671"],["-90.057450","29.978690"],["-90.057460","29.978810"],["-90.057470","29.978930"],["-90.057480","29.979050"],["-90.057490","29.979170"],["-90.057500","29.979290"],["-90.057510","29.979410"],["-90.057520","29.979530"],["-90.057530","29.979650"],["-90.057498","29.979653"],["-90.057530","29.979650"],["-90.057540","29.979700"],["-90.057545","29.979820"],["-90.057550","29.979940"],["-90.057560","29.980068"],["-90.057570","29.980195"],["-90.057580","29.980323"],["-90.057590","29.980450"],["-90.057600","29.980630"],["-90.057610","29.980700"],["-90.057610","29.980740"],["-90.057620","29.980888"],["-90.057630","29.981035"],["-90.057640","29.981183"],["-90.057650","29.981330"],["-90.057670","29.981515"],["-90.057690","29.981700"],["-90.057700","29.981860"],["-90.057720","29.982030"],["-90.057740","29.982200"],["-90.057750","29.982250"],["-90.057750","29.982260"],["-90.057750","29.982280"],["-90.057790","29.982360"],["-90.057790","29.982490"],["-90.057710","29.982490"],["-90.057713","29.982500"],["-90.057710","29.982490"],["-90.057790","29.982490"],["-90.057800","29.982620"],["-90.057815","29.982765"],["-90.057830","29.982910"],["-90.057860","29.983050"],["-90.057860","29.983100"],["-90.057890","29.983260"],["-90.057910","29.983440"],["-90.057920","29.983580"],["-90.057940","29.983760"],["-90.057950","29.983800"],["-90.057950","29.983810"],["-90.057965","29.983985"],["-90.057980","29.984160"],["-90.057980","29.984180"],["-90.057990","29.984365"],["-90.058000","29.984550"],["-90.058005","29.984660"],["-90.058010","29.984770"],["-90.058020","29.984920"],["-90.058020","29.984930"],["-90.058030","29.985110"],["-90.058040","29.985150"],["-90.058050","29.985280"],["-90.058050","29.985370"],["-90.058070","29.985550"],["-90.058080","29.985720"],["-90.058090","29.985890"],["-90.058100","29.985910"],["-90.058100","29.986020"],["-90.058110","29.986150"],["-90.058120","29.986270"],["-90.058130","29.986380"],["-90.058150","29.986560"],["-90.058150","29.986630"],["-90.058160","29.986680"],["-90.058160","29.986690"],["-90.058170","29.986810"],["-90.058190","29.986980"],["-90.058200","29.987140"],["-90.058210","29.987210"],["-90.058220","29.987340"],["-90.058240","29.987490"],["-90.058250","29.987610"],["-90.058260","29.987710"],["-90.058270","29.987810"],["-90.058270","29.987915"],["-90.058270","29.988020"],["-90.058270","29.988070"],["-90.058270","29.988190"],["-90.058260","29.988320"],["-90.058260","29.988430"],["-90.058260","29.988560"],["-90.058260","29.988690"],["-90.058260","29.988780"],["-90.058218","29.988779"],["-90.058260","29.988780"],["-90.058270","29.988830"],["-90.058277","29.988945"],["-90.058285","29.989060"],["-90.058292","29.989175"],["-90.058300","29.989290"],["-90.058310","29.989480"],["-90.058325","29.989665"],["-90.058340","29.989850"],["-90.058345","29.989965"],["-90.058350","29.990080"],["-90.058370","29.990215"],["-90.058390","29.990350"],["-90.058400","29.990450"],["-90.058410","29.990550"],["-90.058410","29.990580"],["-90.058420","29.990720"],["-90.058430","29.990860"],["-90.058428","29.990860"],["-90.058430","29.990860"],["-90.058430","29.990890"],["-90.058440","29.991045"],["-90.058450","29.991200"],["-90.058460","29.991230"],["-90.058460","29.991240"],["-90.058470","29.991355"],["-90.058480","29.991470"],["-90.058480","29.991480"],["-90.058495","29.991660"],["-90.058510","29.991840"],["-90.058522","29.992018"],["-90.058535","29.992195"],["-90.058547","29.992373"],["-90.058560","29.992550"],["-90.058570","29.992680"],["-90.058580","29.992800"],["-90.058590","29.992880"],["-90.058564","29.992851"],["-90.058590","29.992880"],["-90.058600","29.993005"],["-90.058610","29.993130"],["-90.058622","29.993298"],["-90.058635","29.993465"],["-90.058647","29.993633"],["-90.058660","29.993800"],["-90.058660","29.993900"],["-90.058670","29.994021"],["-90.058680","29.994143"],["-90.058690","29.994264"],["-90.058700","29.994385"],["-90.058710","29.994506"],["-90.058720","29.994628"],["-90.058730","29.994749"],["-90.058740","29.994870"],["-90.058722","29.994869"],["-90.058740","29.994870"],["-90.058750","29.994910"],["-90.058760","29.995065"],["-90.058770","29.995220"],["-90.058785","29.995395"],["-90.058800","29.995570"],["-90.058815","29.995745"],["-90.058830","29.995920"],["-90.058839","29.996041"],["-90.058847","29.996163"],["-90.058856","29.996284"],["-90.058865","29.996405"],["-90.058874","29.996526"],["-90.058882","29.996648"],["-90.058891","29.996769"],["-90.058900","29.996890"],["-90.058880","29.996896"],["-90.058900","29.996890"],["-90.058910","29.996940"],["-90.058920","29.997061"],["-90.058930","29.997183"],["-90.058940","29.997304"],["-90.058950","29.997425"],["-90.058960","29.997546"],["-90.058970","29.997668"],["-90.058980","29.997789"],["-90.058990","29.997910"],["-90.058999","29.998023"],["-90.059007","29.998135"],["-90.059016","29.998248"],["-90.059025","29.998360"],["-90.059034","29.998473"],["-90.059042","29.998585"],["-90.059051","29.998698"],["-90.059060","29.998810"],["-90.059070","29.998970"],["-90.059080","29.999140"],["-90.059090","29.999310"],["-90.059097","29.999408"],["-90.059105","29.999505"],["-90.059112","29.999603"],["-90.059120","29.999700"],["-90.059120","29.999730"],["-90.059115","29.999733"],["-90.059120","29.999730"],["-90.059130","29.999850"],["-90.059145","29.999980"],["-90.059160","30.000110"],["-90.059149","30.000112"],["-90.059160","30.000110"],["-90.059170","30.000215"],["-90.059180","30.000320"],["-90.059185","30.000510"],["-90.059190","30.000700"],["-90.059200","30.000780"],["-90.059215","30.000885"],["-90.059230","30.000990"],["-90.059240","30.001140"],["-90.059250","30.001265"],["-90.059260","30.001390"],["-90.059260","30.001470"],["-90.059270","30.001620"],["-90.059285","30.001795"],["-90.059292","30.001903"],["-90.059300","30.002010"],["-90.059274","30.001976"],["-90.059300","30.002010"],["-90.059307","30.002115"],["-90.059315","30.002220"],["-90.059322","30.002325"],["-90.059330","30.002430"],["-90.059350","30.002610"],["-90.059360","30.002785"],["-90.059370","30.002960"],["-90.059380","30.003020"],["-90.059380","30.003110"],["-90.059390","30.003238"],["-90.059400","30.003365"],["-90.059410","30.003493"],["-90.059420","30.003620"],["-90.059430","30.003720"],["-90.059440","30.003820"],["-90.059450","30.003920"],["-90.059460","30.004020"],["-90.059467","30.004128"],["-90.059475","30.004235"],["-90.059482","30.004343"],["-90.059490","30.004450"],["-90.059500","30.004585"],["-90.059510","30.004720"],["-90.059520","30.004855"],["-90.059530","30.004990"],["-90.059511","30.004994"],["-90.059530","30.004990"],["-90.059530","30.005030"],["-90.059540","30.005140"],["-90.059560","30.005320"],["-90.059575","30.005500"],["-90.059590","30.005680"],["-90.059605","30.005860"],["-90.059620","30.006040"],["-90.059630","30.006210"],["-90.059613","30.006382"],["-90.059652","30.006450"],["-90.059666","30.006626"],["-90.059679","30.006803"],["-90.059693","30.006980"],["-90.059706","30.007156"],["-90.059720","30.007333"],["-90.059733","30.007510"],["-90.059747","30.007686"],["-90.059761","30.007863"],["-90.059771","30.007985"],["-90.059782","30.008107"],["-90.059738","30.008165"],["-90.059806","30.008245"],["-90.059811","30.008344"],["-90.059815","30.008443"],["-90.059820","30.008542"],["-90.059824","30.008641"],["-90.059835","30.008775"],["-90.059846","30.008909"],["-90.059857","30.009043"],["-90.059869","30.009176"],["-90.059880","30.009310"],["-90.059890","30.009455"],["-90.059900","30.009600"],["-90.059910","30.009745"],["-90.059920","30.009890"],["-90.059904","30.009895"],["-90.059920","30.009890"],["-90.059930","30.009960"],["-90.059945","30.010140"],["-90.059960","30.010320"],["-90.059974","30.010496"],["-90.059987","30.010673"],["-90.060001","30.010849"],["-90.060015","30.011025"],["-90.060029","30.011201"],["-90.060042","30.011378"],["-90.060056","30.011554"],["-90.060070","30.011730"],["-90.060082","30.011885"],["-90.060095","30.012040"],["-90.060107","30.012195"],["-90.060120","30.012350"],["-90.060096","30.012354"],["-90.060120","30.012350"],["-90.060120","30.012390"],["-90.060130","30.012560"],["-90.060145","30.012700"],["-90.060160","30.012840"],["-90.060172","30.013025"],["-90.060185","30.013210"],["-90.060197","30.013395"],["-90.060210","30.013580"],["-90.060221","30.013703"],["-90.060232","30.013825"],["-90.060244","30.013948"],["-90.060255","30.014070"],["-90.060266","30.014193"],["-90.060277","30.014315"],["-90.060289","30.014438"],["-90.060300","30.014560"],["-90.060265","30.014561"],["-90.060300","30.014560"],["-90.060300","30.014610"],["-90.060310","30.014718"],["-90.060320","30.014825"],["-90.060330","30.014933"],["-90.060340","30.015040"],["-90.060350","30.015185"],["-90.060360","30.015330"],["-90.060370","30.015475"],["-90.060380","30.015620"],["-90.060390","30.015740"],["-90.060400","30.015860"],["-90.060410","30.015980"],["-90.060420","30.016100"],["-90.060430","30.016233"],["-90.060440","30.016365"],["-90.060450","30.016498"],["-90.060460","30.016660"],["-90.060433","30.016633"],["-90.060460","30.016660"],["-90.060470","30.016830"],["-90.060480","30.016960"],["-90.060490","30.017090"],["-90.060500","30.017220"],["-90.060510","30.017350"],["-90.060520","30.017480"],["-90.060530","30.017610"],["-90.060540","30.017740"],["-90.060550","30.017870"],["-90.060560","30.017990"],["-90.060570","30.018110"],["-90.060580","30.018230"],["-90.060590","30.018350"],["-90.060602","30.018483"],["-90.060615","30.018615"],["-90.060627","30.018748"],["-90.060640","30.018880"],["-90.060649","30.019000"],["-90.060657","30.019120"],["-90.060666","30.019240"],["-90.060675","30.019360"],["-90.060684","30.019480"],["-90.060692","30.019600"],["-90.060701","30.019720"],["-90.060710","30.019840"],["-90.060702","30.019840"],["-90.060710","30.019840"],["-90.060720","30.019890"],["-90.060730","30.020018"],["-90.060740","30.020145"],["-90.060750","30.020273"],["-90.060760","30.020400"],["-90.060770","30.020528"],["-90.060780","30.020655"],["-90.060790","30.020783"],["-90.060800","30.020910"],["-90.060810","30.021033"],["-90.060820","30.021155"],["-90.060830","30.021278"],["-90.060840","30.021400"],["-90.060850","30.021523"],["-90.060860","30.021645"],["-90.060870","30.021768"],["-90.060880","30.021890"],["-90.060839","30.021894"],["-90.060880","30.021890"],["-90.060880","30.021940"],["-90.060890","30.022120"],["-90.060900","30.022245"],["-90.060910","30.022370"],["-90.060920","30.022495"],["-90.060930","30.022620"],["-90.060940","30.022745"],["-90.060950","30.022870"],["-90.060960","30.022995"],["-90.060970","30.023120"],["-90.060940","30.023119"],["-90.060970","30.023120"],["-90.060980","30.023160"],["-90.060990","30.023285"],["-90.061000","30.023410"],["-90.061010","30.023535"],["-90.061020","30.023660"],["-90.061030","30.023785"],["-90.061040","30.023910"],["-90.061050","30.024035"],["-90.061060","30.024160"],["-90.061070","30.024330"],["-90.061080","30.024435"],["-90.061090","30.024540"],["-90.061095","30.024645"],["-90.061100","30.024750"],["-90.061110","30.024880"],["-90.061120","30.025040"],["-90.061087","30.025010"],["-90.061120","30.025040"],["-90.061125","30.025145"],["-90.061130","30.025250"],["-90.061140","30.025370"],["-90.061150","30.025490"],["-90.061160","30.025610"],["-90.061170","30.025730"],["-90.061180","30.025848"],["-90.061190","30.025965"],["-90.061200","30.026083"],["-90.061210","30.026200"],["-90.061222","30.026370"],["-90.061235","30.026540"],["-90.061247","30.026710"],["-90.061260","30.026880"],["-90.061275","30.027050"],["-90.061290","30.027220"],["-90.061305","30.027390"],["-90.061320","30.027560"],["-90.061332","30.027715"],["-90.061345","30.027870"],["-90.061357","30.028025"],["-90.061370","30.028180"],["-90.061382","30.028335"],["-90.061395","30.028490"],["-90.061407","30.028645"],["-90.061420","30.028800"],["-90.061435","30.028960"],["-90.061450","30.029120"],["-90.061480","30.029120"],["-90.061530","30.029110"],["-90.061650","30.029100"],["-90.061830","30.029080"],["-90.061940","30.029053"],["-90.062050","30.029025"],["-90.062160","30.028998"],["-90.062270","30.028970"],["-90.062380","30.028943"],["-90.062490","30.028915"],["-90.062600","30.028888"],["-90.062710","30.028860"],["-90.062870","30.028820"],["-90.062880","30.028820"],["-90.063080","30.028780"],["-90.063190","30.028760"],["-90.063300","30.028740"],["-90.063450","30.028700"],["-90.063600","30.028660"],["-90.063750","30.028620"],["-90.063900","30.028580"],["-90.064080","30.028540"],["-90.064150","30.028520"],["-90.064293","30.028483"],["-90.064435","30.028445"],["-90.064578","30.028408"],["-90.064720","30.028370"],["-90.064870","30.028305"],["-90.065020","30.028240"],["-90.065145","30.028235"],["-90.065270","30.028230"],["-90.065310","30.028220"],["-90.065340","30.028200"],["-90.065360","30.028170"],["-90.065370","30.028140"],["-90.065380","30.028100"],["-90.065380","30.028060"],["-90.065370","30.028040"],["-90.065380","30.028020"],["-90.065370","30.027990"],["-90.065412","30.027973"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.070671","29.958178"],["-90.067608","29.961198"],["-90.062033","30.028610"],["-90.061763","30.027610"],["-90.056700","29.969527"],["-90.056878","29.971554"],["-90.057002","29.973148"],["-90.057193","29.975599"],["-90.057419","29.978671"],["-90.057498","29.979653"],["-90.057713","29.982500"],["-90.058218","29.988779"],["-90.058428","29.990860"],["-90.058564","29.992851"],["-90.058722","29.994869"],["-90.058880","29.996896"],["-90.059115","29.999733"],["-90.059149","30.000112"],["-90.059274","30.001976"],["-90.059511","30.004994"],["-90.059613","30.006382"],["-90.059738","30.008165"],["-90.059904","30.009895"],["-90.060096","30.012354"],["-90.060265","30.014561"],["-90.060433","30.016633"],["-90.060702","30.019840"],["-90.060839","30.021894"],["-90.060940","30.023119"],["-90.061087","30.025010"],["-90.061408","29.967901"],["-90.057201","29.968461"],["-90.045311","30.028300"],["-90.036334","30.005478"],["-90.032604","30.008895"],["-90.033600","30.011825"],["-90.034801","30.015393"],["-90.035079","30.016279"],["-90.035735","30.018181"],["-90.058898","30.025219"],["-90.056939","30.025489"],["-90.055342","30.025767"],["-90.035102","30.005970"],["-90.037659","30.004976"],["-90.065412","30.027973"],["-90.074706","29.954333"],["-90.056671","29.968337"],["-90.075911","29.951058"],["-90.077310","29.951484"],["-90.034019","30.006378"],["-90.052345","30.026204"],["-90.063593","29.965692"],["-90.044463","30.027453"],["-90.038054","30.022880"],["-90.038552","30.023985"],["-90.038347","30.026825"],["-90.038439","30.028241"],["-90.039026","30.029806"],["-90.041972","30.029077"],["-90.043904","30.027351"],["-90.073384","29.955849"],["-90.075280","29.954073"],["-90.069186","29.959483"],["-90.065324","29.963818"]]},{"type":"LineString","coordinates":[["-90.075280","29.954073"],["-90.075260","29.954070"],["-90.075280","29.954030"],["-90.075290","29.954000"],["-90.075307","29.953926"],["-90.075334","29.953779"],["-90.075393","29.953597"],["-90.075452","29.953416"],["-90.075511","29.953235"],["-90.075570","29.953054"],["-90.075629","29.952872"],["-90.075688","29.952691"],["-90.075747","29.952510"],["-90.075806","29.952328"],["-90.075814","29.952150"],["-90.075821","29.951972"],["-90.075828","29.951793"],["-90.075836","29.951615"],["-90.075843","29.951437"],["-90.075847","29.951308"],["-90.075850","29.951179"],["-90.075911","29.951058"],["-90.075861","29.951007"],["-90.075869","29.950891"],["-90.076004","29.950937"],["-90.076139","29.950984"],["-90.076273","29.951030"],["-90.076408","29.951077"],["-90.076543","29.951123"],["-90.076678","29.951170"],["-90.076812","29.951216"],["-90.076947","29.951263"],["-90.077120","29.951323"],["-90.077293","29.951384"],["-90.077310","29.951484"],["-90.077511","29.951458"],["-90.077609","29.951532"],["-90.077708","29.951606"],["-90.077861","29.951664"],["-90.078015","29.951723"],["-90.078169","29.951782"],["-90.078322","29.951840"],["-90.078276","29.951987"],["-90.078230","29.952133"],["-90.078183","29.952280"],["-90.078137","29.952426"],["-90.078091","29.952572"],["-90.078045","29.952719"],["-90.077998","29.952865"],["-90.077952","29.953012"],["-90.077823","29.952964"],["-90.077694","29.952917"],["-90.077565","29.952870"],["-90.077436","29.952822"],["-90.077307","29.952775"],["-90.077177","29.952728"],["-90.077048","29.952680"],["-90.076919","29.952633"],["-90.076790","29.952586"],["-90.076661","29.952538"],["-90.076532","29.952491"],["-90.076403","29.952443"],["-90.076274","29.952396"],["-90.076145","29.952349"],["-90.076016","29.952301"],["-90.075887","29.952254"],["-90.075688","29.952326"],["-90.075490","29.952398"],["-90.075444","29.952545"],["-90.075399","29.952691"],["-90.075353","29.952837"],["-90.075307","29.952984"],["-90.075273","29.953101"],["-90.075239","29.953217"],["-90.075205","29.953334"],["-90.075171","29.953451"],["-90.075136","29.953568"],["-90.075102","29.953684"],["-90.075068","29.953801"],["-90.075034","29.953918"],["-90.074987","29.954011"],["-90.074940","29.954104"],["-90.074893","29.954197"],["-90.074846","29.954290"],["-90.074706","29.954333"],["-90.074663","29.954451"],["-90.074621","29.954569"],["-90.074488","29.954704"],["-90.074355","29.954838"],["-90.074222","29.954973"],["-90.074090","29.955108"],["-90.074017","29.955192"],["-90.073945","29.955276"],["-90.073872","29.955361"],["-90.073800","29.955445"],["-90.073728","29.955529"],["-90.073655","29.955613"],["-90.073583","29.955698"],["-90.073510","29.955782"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071949","29.957461"],["-90.071797","29.957551"],["-90.071783","29.957652"],["-90.071770","29.957753"],["-90.071681","29.957851"],["-90.071593","29.957948"],["-90.071504","29.958046"],["-90.071416","29.958143"],["-90.071327","29.958241"],["-90.071239","29.958339"],["-90.071150","29.958436"],["-90.071062","29.958534"],["-90.070909","29.958425"],["-90.070756","29.958315"],["-90.070671","29.958178"],["-90.070523","29.958198"],["-90.070375","29.958218"],["-90.070290","29.958315"],["-90.070205","29.958413"],["-90.070120","29.958510"],["-90.070040","29.958598"],["-90.069960","29.958685"],["-90.069880","29.958773"],["-90.069800","29.958860"],["-90.069720","29.958950"],["-90.069650","29.959030"],["-90.069545","29.959150"],["-90.069440","29.959270"],["-90.069335","29.959390"],["-90.069230","29.959510"],["-90.069186","29.959483"],["-90.069230","29.959510"],["-90.069100","29.959650"],["-90.069013","29.959749"],["-90.068925","29.959848"],["-90.068838","29.959946"],["-90.068750","29.960045"],["-90.068663","29.960144"],["-90.068575","29.960243"],["-90.068488","29.960341"],["-90.068400","29.960440"],["-90.068305","29.960545"],["-90.068210","29.960650"],["-90.068115","29.960755"],["-90.068020","29.960860"],["-90.067990","29.960900"],["-90.067860","29.961040"],["-90.067770","29.961140"],["-90.067680","29.961240"],["-90.067608","29.961198"],["-90.067680","29.961240"],["-90.067610","29.961320"],["-90.067529","29.961410"],["-90.067448","29.961500"],["-90.067366","29.961590"],["-90.067285","29.961680"],["-90.067204","29.961770"],["-90.067123","29.961860"],["-90.067041","29.961950"],["-90.066960","29.962040"],["-90.066900","29.962110"],["-90.066810","29.962211"],["-90.066720","29.962313"],["-90.066630","29.962414"],["-90.066540","29.962515"],["-90.066450","29.962616"],["-90.066360","29.962718"],["-90.066270","29.962819"],["-90.066180","29.962920"],["-90.066083","29.963030"],["-90.065985","29.963140"],["-90.065888","29.963250"],["-90.065790","29.963360"],["-90.065710","29.963450"],["-90.065630","29.963540"],["-90.065550","29.963630"],["-90.065470","29.963720"],["-90.065324","29.963818"],["-90.065250","29.963942"],["-90.065176","29.964065"],["-90.065088","29.964163"],["-90.065000","29.964261"],["-90.064912","29.964359"],["-90.064824","29.964457"],["-90.064737","29.964555"],["-90.064649","29.964653"],["-90.064561","29.964751"],["-90.064473","29.964849"],["-90.064385","29.964947"],["-90.064297","29.965045"],["-90.064209","29.965143"],["-90.064121","29.965241"],["-90.064034","29.965339"],["-90.063946","29.965437"],["-90.063858","29.965535"],["-90.063770","29.965633"],["-90.063593","29.965692"],["-90.063660","29.965740"],["-90.063590","29.965810"],["-90.063480","29.965930"],["-90.063360","29.966065"],["-90.063240","29.966200"],["-90.063145","29.966305"],["-90.063050","29.966410"],["-90.062955","29.966515"],["-90.062860","29.966620"],["-90.062795","29.966705"],["-90.062730","29.966790"],["-90.062610","29.966925"],["-90.062490","29.967060"],["-90.062470","29.967090"],["-90.062395","29.967165"],["-90.062320","29.967240"],["-90.062250","29.967310"],["-90.062160","29.967410"],["-90.062100","29.967470"],["-90.062020","29.967540"],["-90.061930","29.967620"],["-90.061870","29.967670"],["-90.061810","29.967710"],["-90.061700","29.967780"],["-90.061590","29.967840"],["-90.061510","29.967890"],["-90.061420","29.967930"],["-90.061408","29.967901"],["-90.061420","29.967930"],["-90.061280","29.967990"],["-90.061170","29.968020"],["-90.061050","29.968060"],["-90.060920","29.968090"],["-90.060790","29.968120"],["-90.060650","29.968140"],["-90.060540","29.968150"],["-90.060400","29.968160"],["-90.060195","29.968173"],["-90.059990","29.968185"],["-90.059785","29.968198"],["-90.059580","29.968210"],["-90.059550","29.968210"],["-90.059450","29.968220"],["-90.059270","29.968240"],["-90.059123","29.968268"],["-90.058975","29.968295"],["-90.058828","29.968323"],["-90.058680","29.968350"],["-90.058490","29.968385"],["-90.058300","29.968420"],["-90.058150","29.968450"],["-90.058050","29.968460"],["-90.057920","29.968468"],["-90.057790","29.968475"],["-90.057660","29.968483"],["-90.057530","29.968490"],["-90.057310","29.968510"],["-90.057210","29.968510"],["-90.057201","29.968461"],["-90.057210","29.968510"],["-90.057095","29.968520"],["-90.056980","29.968530"],["-90.056970","29.968375"],["-90.056960","29.968220"],["-90.056950","29.968110"],["-90.056940","29.968000"],["-90.056930","29.967890"],["-90.056920","29.967780"],["-90.056850","29.967720"],["-90.056810","29.967700"],["-90.056760","29.967700"],["-90.056720","29.967710"],["-90.056680","29.967740"],["-90.056650","29.967780"],["-90.056660","29.967890"],["-90.056670","29.968000"],["-90.056680","29.968110"],["-90.056690","29.968220"],["-90.056700","29.968280"],["-90.056700","29.968330"],["-90.056671","29.968337"],["-90.056700","29.968330"],["-90.056710","29.968445"],["-90.056720","29.968560"],["-90.056760","29.968730"],["-90.056760","29.968900"],["-90.056760","29.969070"],["-90.056760","29.969190"],["-90.056740","29.969250"],["-90.056720","29.969400"],["-90.056720","29.969530"],["-90.056700","29.969527"],["-90.056720","29.969530"],["-90.056730","29.969570"],["-90.056740","29.969698"],["-90.056750","29.969825"],["-90.056760","29.969953"],["-90.056770","29.970080"],["-90.056780","29.970205"],["-90.056790","29.970330"],["-90.056800","29.970455"],["-90.056810","29.970580"],["-90.056820","29.970715"],["-90.056830","29.970850"],["-90.056840","29.970985"],["-90.056850","29.971120"],["-90.056857","29.971228"],["-90.056865","29.971335"],["-90.056872","29.971443"],["-90.056880","29.971550"],["-90.056878","29.971554"],["-90.056880","29.971550"],["-90.056890","29.971610"],["-90.056900","29.971725"],["-90.056910","29.971840"],["-90.056920","29.971955"],["-90.056930","29.972070"],["-90.056940","29.972203"],["-90.056950","29.972335"],["-90.056960","29.972468"],["-90.056970","29.972600"],["-90.056980","29.972738"],["-90.056990","29.972875"],["-90.057000","29.973013"],["-90.057010","29.973150"],["-90.057002","29.973148"],["-90.057010","29.973150"],["-90.057010","29.973200"],["-90.057030","29.973390"],["-90.057040","29.973505"],["-90.057050","29.973620"],["-90.057060","29.973810"],["-90.057075","29.973945"],["-90.057090","29.974080"],["-90.057090","29.974160"],["-90.057105","29.974320"],["-90.057120","29.974480"],["-90.057130","29.974630"],["-90.057140","29.974751"],["-90.057150","29.974873"],["-90.057160","29.974994"],["-90.057170","29.975115"],["-90.057180","29.975236"],["-90.057190","29.975358"],["-90.057200","29.975479"],["-90.057210","29.975600"],["-90.057193","29.975599"],["-90.057210","29.975600"],["-90.057210","29.975640"],["-90.057220","29.975768"],["-90.057230","29.975895"],["-90.057240","29.976023"],["-90.057250","29.976150"],["-90.057260","29.976278"],["-90.057270","29.976405"],["-90.057280","29.976533"],["-90.057290","29.976660"],["-90.057300","29.976786"],["-90.057310","29.976913"],["-90.057320","29.977039"],["-90.057330","29.977165"],["-90.057340","29.977291"],["-90.057350","29.977418"],["-90.057360","29.977544"],["-90.057370","29.977670"],["-90.057380","29.977785"],["-90.057390","29.977900"],["-90.057396","29.977996"],["-90.057402","29.978093"],["-90.057409","29.978189"],["-90.057415","29.978285"],["-90.057421","29.978381"],["-90.057427","29.978478"],["-90.057434","29.978574"],["-90.057450","29.978690"],["-90.057419","29.978671"],["-90.057450","29.978690"],["-90.057460","29.978810"],["-90.057470","29.978930"],["-90.057480","29.979050"],["-90.057490","29.979170"],["-90.057500","29.979290"],["-90.057510","29.979410"],["-90.057520","29.979530"],["-90.057530","29.979650"],["-90.057498","29.979653"],["-90.057530","29.979650"],["-90.057540","29.979700"],["-90.057545","29.979820"],["-90.057550","29.979940"],["-90.057560","29.980068"],["-90.057570","29.980195"],["-90.057580","29.980323"],["-90.057590","29.980450"],["-90.057600","29.980630"],["-90.057610","29.980700"],["-90.057610","29.980740"],["-90.057620","29.980888"],["-90.057630","29.981035"],["-90.057640","29.981183"],["-90.057650","29.981330"],["-90.057670","29.981515"],["-90.057690","29.981700"],["-90.057700","29.981860"],["-90.057720","29.982030"],["-90.057740","29.982200"],["-90.057750","29.982250"],["-90.057750","29.982260"],["-90.057750","29.982280"],["-90.057790","29.982360"],["-90.057790","29.982490"],["-90.057710","29.982490"],["-90.057713","29.982500"],["-90.057710","29.982490"],["-90.057790","29.982490"],["-90.057800","29.982620"],["-90.057815","29.982765"],["-90.057830","29.982910"],["-90.057860","29.983050"],["-90.057860","29.983100"],["-90.057890","29.983260"],["-90.057910","29.983440"],["-90.057920","29.983580"],["-90.057940","29.983760"],["-90.057950","29.983800"],["-90.057950","29.983810"],["-90.057965","29.983985"],["-90.057980","29.984160"],["-90.057980","29.984180"],["-90.057990","29.984365"],["-90.058000","29.984550"],["-90.058005","29.984660"],["-90.058010","29.984770"],["-90.058020","29.984920"],["-90.058020","29.984930"],["-90.058030","29.985110"],["-90.058040","29.985150"],["-90.058050","29.985280"],["-90.058050","29.985370"],["-90.058070","29.985550"],["-90.058080","29.985720"],["-90.058090","29.985890"],["-90.058100","29.985910"],["-90.058100","29.986020"],["-90.058110","29.986150"],["-90.058120","29.986270"],["-90.058130","29.986380"],["-90.058150","29.986560"],["-90.058150","29.986630"],["-90.058160","29.986680"],["-90.058160","29.986690"],["-90.058170","29.986810"],["-90.058190","29.986980"],["-90.058200","29.987140"],["-90.058210","29.987210"],["-90.058220","29.987340"],["-90.058240","29.987490"],["-90.058250","29.987610"],["-90.058260","29.987710"],["-90.058270","29.987810"],["-90.058270","29.987915"],["-90.058270","29.988020"],["-90.058270","29.988070"],["-90.058270","29.988190"],["-90.058260","29.988320"],["-90.058260","29.988430"],["-90.058260","29.988560"],["-90.058260","29.988690"],["-90.058260","29.988780"],["-90.058218","29.988779"],["-90.058260","29.988780"],["-90.058270","29.988830"],["-90.058277","29.988945"],["-90.058285","29.989060"],["-90.058292","29.989175"],["-90.058300","29.989290"],["-90.058310","29.989480"],["-90.058325","29.989665"],["-90.058340","29.989850"],["-90.058345","29.989965"],["-90.058350","29.990080"],["-90.058370","29.990215"],["-90.058390","29.990350"],["-90.058400","29.990450"],["-90.058410","29.990550"],["-90.058410","29.990580"],["-90.058420","29.990720"],["-90.058430","29.990860"],["-90.058428","29.990860"],["-90.058430","29.990860"],["-90.058430","29.990890"],["-90.058440","29.991045"],["-90.058450","29.991200"],["-90.058460","29.991230"],["-90.058460","29.991240"],["-90.058470","29.991355"],["-90.058480","29.991470"],["-90.058480","29.991480"],["-90.058495","29.991660"],["-90.058510","29.991840"],["-90.058522","29.992018"],["-90.058535","29.992195"],["-90.058547","29.992373"],["-90.058560","29.992550"],["-90.058570","29.992680"],["-90.058580","29.992800"],["-90.058590","29.992880"],["-90.058564","29.992851"],["-90.058590","29.992880"],["-90.058600","29.993005"],["-90.058610","29.993130"],["-90.058622","29.993298"],["-90.058635","29.993465"],["-90.058647","29.993633"],["-90.058660","29.993800"],["-90.058660","29.993900"],["-90.058670","29.994021"],["-90.058680","29.994143"],["-90.058690","29.994264"],["-90.058700","29.994385"],["-90.058710","29.994506"],["-90.058720","29.994628"],["-90.058730","29.994749"],["-90.058740","29.994870"],["-90.058722","29.994869"],["-90.058740","29.994870"],["-90.058750","29.994910"],["-90.058760","29.995065"],["-90.058770","29.995220"],["-90.058785","29.995395"],["-90.058800","29.995570"],["-90.058815","29.995745"],["-90.058830","29.995920"],["-90.058839","29.996041"],["-90.058847","29.996163"],["-90.058856","29.996284"],["-90.058865","29.996405"],["-90.058874","29.996526"],["-90.058882","29.996648"],["-90.058891","29.996769"],["-90.058900","29.996890"],["-90.058880","29.996896"],["-90.058900","29.996890"],["-90.058910","29.996940"],["-90.058920","29.997061"],["-90.058930","29.997183"],["-90.058940","29.997304"],["-90.058950","29.997425"],["-90.058960","29.997546"],["-90.058970","29.997668"],["-90.058980","29.997789"],["-90.058990","29.997910"],["-90.058999","29.998023"],["-90.059007","29.998135"],["-90.059016","29.998248"],["-90.059025","29.998360"],["-90.059034","29.998473"],["-90.059042","29.998585"],["-90.059051","29.998698"],["-90.059060","29.998810"],["-90.059070","29.998970"],["-90.059080","29.999140"],["-90.059090","29.999310"],["-90.059097","29.999408"],["-90.059105","29.999505"],["-90.059112","29.999603"],["-90.059120","29.999700"],["-90.059120","29.999730"],["-90.059115","29.999733"],["-90.059120","29.999730"],["-90.059130","29.999850"],["-90.059145","29.999980"],["-90.059160","30.000110"],["-90.059149","30.000112"],["-90.059160","30.000110"],["-90.059170","30.000215"],["-90.059180","30.000320"],["-90.059185","30.000510"],["-90.059190","30.000700"],["-90.059200","30.000780"],["-90.059215","30.000885"],["-90.059230","30.000990"],["-90.059240","30.001140"],["-90.059250","30.001265"],["-90.059260","30.001390"],["-90.059260","30.001470"],["-90.059270","30.001620"],["-90.059285","30.001795"],["-90.059292","30.001903"],["-90.059300","30.002010"],["-90.059274","30.001976"],["-90.059300","30.002010"],["-90.059307","30.002115"],["-90.059315","30.002220"],["-90.059322","30.002325"],["-90.059330","30.002430"],["-90.059350","30.002610"],["-90.059360","30.002785"],["-90.059370","30.002960"],["-90.059380","30.003020"],["-90.059380","30.003110"],["-90.059390","30.003238"],["-90.059400","30.003365"],["-90.059410","30.003493"],["-90.059420","30.003620"],["-90.059430","30.003720"],["-90.059440","30.003820"],["-90.059450","30.003920"],["-90.059460","30.004020"],["-90.059467","30.004128"],["-90.059475","30.004235"],["-90.059482","30.004343"],["-90.059490","30.004450"],["-90.059500","30.004585"],["-90.059510","30.004720"],["-90.059520","30.004855"],["-90.059511","30.004994"],["-90.059530","30.004990"],["-90.059530","30.005030"],["-90.059540","30.005140"],["-90.059560","30.005320"],["-90.059575","30.005500"],["-90.059590","30.005680"],["-90.059605","30.005860"],["-90.059620","30.006040"],["-90.059630","30.006210"],["-90.059613","30.006382"],["-90.059652","30.006450"],["-90.059666","30.006626"],["-90.059679","30.006803"],["-90.059693","30.006980"],["-90.059706","30.007156"],["-90.059720","30.007333"],["-90.059733","30.007510"],["-90.059747","30.007686"],["-90.059761","30.007863"],["-90.059771","30.007985"],["-90.059782","30.008107"],["-90.059738","30.008165"],["-90.059806","30.008245"],["-90.059811","30.008344"],["-90.059815","30.008443"],["-90.059820","30.008542"],["-90.059824","30.008641"],["-90.059835","30.008775"],["-90.059846","30.008909"],["-90.059857","30.009043"],["-90.059869","30.009176"],["-90.059880","30.009310"],["-90.059890","30.009455"],["-90.059900","30.009600"],["-90.059910","30.009745"],["-90.059920","30.009890"],["-90.059904","30.009895"],["-90.059920","30.009890"],["-90.059930","30.009960"],["-90.059945","30.010140"],["-90.059960","30.010320"],["-90.059974","30.010496"],["-90.059987","30.010673"],["-90.060001","30.010849"],["-90.060015","30.011025"],["-90.060029","30.011201"],["-90.060042","30.011378"],["-90.060056","30.011554"],["-90.060070","30.011730"],["-90.060082","30.011885"],["-90.060095","30.012040"],["-90.060107","30.012195"],["-90.060120","30.012350"],["-90.060096","30.012354"],["-90.060120","30.012350"],["-90.060120","30.012390"],["-90.060130","30.012560"],["-90.060145","30.012700"],["-90.060160","30.012840"],["-90.060172","30.013025"],["-90.060185","30.013210"],["-90.060197","30.013395"],["-90.060210","30.013580"],["-90.060221","30.013703"],["-90.060232","30.013825"],["-90.060244","30.013948"],["-90.060255","30.014070"],["-90.060266","30.014193"],["-90.060277","30.014315"],["-90.060289","30.014438"],["-90.060300","30.014560"],["-90.060265","30.014561"],["-90.060300","30.014560"],["-90.060300","30.014610"],["-90.060310","30.014718"],["-90.060320","30.014825"],["-90.060330","30.014933"],["-90.060340","30.015040"],["-90.060350","30.015185"],["-90.060360","30.015330"],["-90.060370","30.015475"],["-90.060380","30.015620"],["-90.060390","30.015740"],["-90.060400","30.015860"],["-90.060410","30.015980"],["-90.060420","30.016100"],["-90.060430","30.016233"],["-90.060440","30.016365"],["-90.060450","30.016498"],["-90.060460","30.016660"],["-90.060433","30.016633"],["-90.060460","30.016660"],["-90.060470","30.016830"],["-90.060480","30.016960"],["-90.060490","30.017090"],["-90.060500","30.017220"],["-90.060510","30.017350"],["-90.060520","30.017480"],["-90.060530","30.017610"],["-90.060540","30.017740"],["-90.060550","30.017870"],["-90.060560","30.017990"],["-90.060570","30.018110"],["-90.060580","30.018230"],["-90.060590","30.018350"],["-90.060602","30.018483"],["-90.060615","30.018615"],["-90.060627","30.018748"],["-90.060640","30.018880"],["-90.060649","30.019000"],["-90.060657","30.019120"],["-90.060666","30.019240"],["-90.060675","30.019360"],["-90.060684","30.019480"],["-90.060692","30.019600"],["-90.060701","30.019720"],["-90.060710","30.019840"],["-90.060702","30.019840"],["-90.060710","30.019840"],["-90.060720","30.019890"],["-90.060730","30.020018"],["-90.060740","30.020145"],["-90.060750","30.020273"],["-90.060760","30.020400"],["-90.060770","30.020528"],["-90.060780","30.020655"],["-90.060790","30.020783"],["-90.060800","30.020910"],["-90.060810","30.021033"],["-90.060820","30.021155"],["-90.060830","30.021278"],["-90.060840","30.021400"],["-90.060850","30.021523"],["-90.060860","30.021645"],["-90.060870","30.021768"],["-90.060880","30.021890"],["-90.060839","30.021894"],["-90.060880","30.021890"],["-90.060880","30.021940"],["-90.060890","30.022120"],["-90.060900","30.022245"],["-90.060910","30.022370"],["-90.060920","30.022495"],["-90.060930","30.022620"],["-90.060940","30.022745"],["-90.060950","30.022870"],["-90.060960","30.022995"],["-90.060970","30.023120"],["-90.060940","30.023119"],["-90.060970","30.023120"],["-90.060980","30.023160"],["-90.060990","30.023285"],["-90.061000","30.023410"],["-90.061010","30.023535"],["-90.061020","30.023660"],["-90.061030","30.023785"],["-90.061040","30.023910"],["-90.061050","30.024035"],["-90.061060","30.024160"],["-90.061070","30.024330"],["-90.061080","30.024435"],["-90.061090","30.024540"],["-90.061095","30.024645"],["-90.061100","30.024750"],["-90.061110","30.024880"],["-90.061120","30.025040"],["-90.061087","30.025010"],["-90.061120","30.025040"],["-90.061125","30.025145"],["-90.061130","30.025250"],["-90.061140","30.025370"],["-90.061150","30.025490"],["-90.061160","30.025610"],["-90.061170","30.025730"],["-90.061180","30.025848"],["-90.061190","30.025965"],["-90.061200","30.026083"],["-90.061210","30.026200"],["-90.061222","30.026370"],["-90.061235","30.026540"],["-90.061247","30.026710"],["-90.061260","30.026880"],["-90.061275","30.027050"],["-90.061290","30.027220"],["-90.061305","30.027390"],["-90.061320","30.027560"],["-90.061332","30.027715"],["-90.061345","30.027870"],["-90.061357","30.028025"],["-90.061370","30.028180"],["-90.061382","30.028335"],["-90.061395","30.028490"],["-90.061407","30.028645"],["-90.061420","30.028800"],["-90.061435","30.028960"],["-90.061450","30.029120"],["-90.061480","30.029120"],["-90.061530","30.029110"],["-90.061650","30.029100"],["-90.061830","30.029080"],["-90.061940","30.029053"],["-90.062050","30.029025"],["-90.062160","30.028998"],["-90.062270","30.028970"],["-90.062380","30.028943"],["-90.062490","30.028915"],["-90.062600","30.028888"],["-90.062710","30.028860"],["-90.062870","30.028820"],["-90.062880","30.028820"],["-90.063080","30.028780"],["-90.063190","30.028760"],["-90.063300","30.028740"],["-90.063450","30.028700"],["-90.063600","30.028660"],["-90.063750","30.028620"],["-90.063900","30.028580"],["-90.064080","30.028540"],["-90.064150","30.028520"],["-90.064293","30.028483"],["-90.064435","30.028445"],["-90.064578","30.028408"],["-90.064720","30.028370"],["-90.064870","30.028305"],["-90.065020","30.028240"],["-90.065145","30.028235"],["-90.065270","30.028230"],["-90.065310","30.028220"],["-90.065340","30.028200"],["-90.065360","30.028170"],["-90.065370","30.028140"],["-90.065380","30.028100"],["-90.065380","30.028060"],["-90.065370","30.028040"],["-90.065380","30.028020"],["-90.065370","30.027990"],["-90.065370","30.027980"],["-90.065412","30.027973"],["-90.065370","30.027980"],["-90.065370","30.027970"],["-90.065350","30.027950"],["-90.065330","30.027930"],["-90.065290","30.027900"],["-90.065250","30.027890"],["-90.065210","30.027890"],["-90.065190","30.027890"],["-90.065160","30.027890"],["-90.065130","30.027900"],["-90.064930","30.027950"],["-90.064808","30.027980"],["-90.064685","30.028010"],["-90.064563","30.028040"],["-90.064440","30.028070"],["-90.064330","30.028100"],["-90.064230","30.028130"],["-90.064060","30.028170"],["-90.063890","30.028210"],["-90.063710","30.028250"],["-90.063530","30.028290"],["-90.063350","30.028330"],["-90.063170","30.028370"],["-90.062975","30.028435"],["-90.062780","30.028500"],["-90.062760","30.028500"],["-90.062585","30.028548"],["-90.062410","30.028595"],["-90.062235","30.028643"],["-90.062060","30.028690"],["-90.062033","30.028610"],["-90.062060","30.028690"],["-90.061970","30.028710"],["-90.061800","30.028750"],["-90.061789","30.028608"],["-90.061777","30.028465"],["-90.061766","30.028323"],["-90.061755","30.028180"],["-90.061744","30.028038"],["-90.061732","30.027895"],["-90.061721","30.027753"],["-90.061763","30.027610"],["-90.061700","30.027610"],["-90.061690","30.027540"],["-90.061677","30.027400"],["-90.061665","30.027260"],["-90.061652","30.027120"],["-90.061640","30.026980"],["-90.061632","30.026879"],["-90.061625","30.026778"],["-90.061617","30.026676"],["-90.061610","30.026575"],["-90.061602","30.026474"],["-90.061595","30.026373"],["-90.061587","30.026271"],["-90.061580","30.026170"],["-90.061570","30.026051"],["-90.061560","30.025933"],["-90.061550","30.025814"],["-90.061540","30.025695"],["-90.061530","30.025576"],["-90.061520","30.025458"],["-90.061510","30.025339"],["-90.061500","30.025220"],["-90.061495","30.025120"],["-90.061490","30.025020"],["-90.061300","30.025030"],["-90.061110","30.025040"],["-90.060950","30.025040"],["-90.060795","30.025065"],["-90.060640","30.025090"],["-90.060450","30.025130"],["-90.060320","30.025150"],["-90.060140","30.025160"],["-90.059995","30.025175"],["-90.059850","30.025190"],["-90.059770","30.025190"],["-90.059710","30.025200"],["-90.059500","30.025210"],["-90.059350","30.025225"],["-90.059200","30.025240"],["-90.059050","30.025255"],["-90.058880","30.025270"],["-90.058898","30.025219"],["-90.058880","30.025270"],["-90.058759","30.025286"],["-90.058639","30.025301"],["-90.058518","30.025317"],["-90.058398","30.025333"],["-90.058277","30.025348"],["-90.058156","30.025364"],["-90.058036","30.025379"],["-90.057915","30.025395"],["-90.057794","30.025411"],["-90.057674","30.025426"],["-90.057553","30.025442"],["-90.057433","30.025458"],["-90.057312","30.025473"],["-90.057191","30.025489"],["-90.057071","30.025504"],["-90.056950","30.025520"],["-90.056939","30.025489"],["-90.056950","30.025520"],["-90.056780","30.025550"],["-90.056640","30.025570"],["-90.056500","30.025590"],["-90.056379","30.025608"],["-90.056187","30.025638"],["-90.055996","30.025667"],["-90.055804","30.025697"],["-90.055626","30.025721"],["-90.055449","30.025746"],["-90.055342","30.025767"],["-90.055202","30.025778"],["-90.055061","30.025790"],["-90.054921","30.025801"],["-90.054781","30.025813"],["-90.054648","30.025833"],["-90.054515","30.025852"],["-90.054383","30.025872"],["-90.054250","30.025892"],["-90.054035","30.025934"],["-90.053820","30.025976"],["-90.053605","30.026018"],["-90.053390","30.026060"],["-90.053175","30.026102"],["-90.052960","30.026144"],["-90.052745","30.026187"],["-90.052530","30.026229"],["-90.052345","30.026204"],["-90.052214","30.026270"],["-90.052057","30.026290"],["-90.051900","30.026310"],["-90.051739","30.026339"],["-90.051579","30.026369"],["-90.051419","30.026399"],["-90.051259","30.026428"],["-90.051098","30.026458"],["-90.050938","30.026488"],["-90.050778","30.026517"],["-90.050618","30.026547"],["-90.050440","30.026578"],["-90.050263","30.026608"],["-90.050086","30.026639"],["-90.049909","30.026670"],["-90.049731","30.026701"],["-90.049554","30.026732"],["-90.049377","30.026763"],["-90.049199","30.026793"],["-90.049074","30.026815"],["-90.048949","30.026836"],["-90.048823","30.026858"],["-90.048698","30.026879"],["-90.048572","30.026901"],["-90.048447","30.026922"],["-90.048322","30.026944"],["-90.048196","30.026965"],["-90.048032","30.027009"],["-90.047868","30.027052"],["-90.047703","30.027096"],["-90.047539","30.027139"],["-90.047359","30.027205"],["-90.047178","30.027271"],["-90.046998","30.027336"],["-90.046818","30.027402"],["-90.046710","30.027461"],["-90.046602","30.027519"],["-90.046494","30.027578"],["-90.046386","30.027636"],["-90.046297","30.027704"],["-90.046208","30.027771"],["-90.046119","30.027838"],["-90.046030","30.027905"],["-90.045941","30.027972"],["-90.045852","30.028039"],["-90.045763","30.028106"],["-90.045674","30.028173"],["-90.045557","30.028270"],["-90.045440","30.028366"],["-90.045311","30.028300"],["-90.045230","30.028350"],["-90.045160","30.028270"],["-90.045030","30.028140"],["-90.044910","30.028020"],["-90.044850","30.027970"],["-90.044830","30.027950"],["-90.044810","30.027930"],["-90.044760","30.027880"],["-90.044630","30.027750"],["-90.044590","30.027710"],["-90.044485","30.027615"],["-90.044380","30.027520"],["-90.044463","30.027453"],["-90.044380","30.027520"],["-90.044370","30.027500"],["-90.044350","30.027480"],["-90.044215","30.027345"],["-90.044080","30.027210"],["-90.043950","30.027300"],["-90.043904","30.027351"],["-90.043900","30.027340"],["-90.043820","30.027410"],["-90.043790","30.027450"],["-90.043770","30.027520"],["-90.043800","30.027700"],["-90.043820","30.027770"],["-90.043840","30.027870"],["-90.043870","30.028050"],["-90.043880","30.028110"],["-90.043870","30.028210"],["-90.043860","30.028230"],["-90.043840","30.028320"],["-90.043810","30.028390"],["-90.043770","30.028450"],["-90.043730","30.028510"],["-90.043690","30.028570"],["-90.043610","30.028630"],["-90.043550","30.028690"],["-90.043520","30.028700"],["-90.043460","30.028740"],["-90.043390","30.028770"],["-90.043370","30.028780"],["-90.043270","30.028810"],["-90.043121","30.028846"],["-90.042973","30.028883"],["-90.042824","30.028919"],["-90.042675","30.028955"],["-90.042526","30.028991"],["-90.042378","30.029028"],["-90.042229","30.029064"],["-90.042080","30.029100"],["-90.041972","30.029077"],["-90.041878","30.029146"],["-90.041765","30.029174"],["-90.041652","30.029202"],["-90.041540","30.029230"],["-90.041427","30.029258"],["-90.041314","30.029286"],["-90.041201","30.029313"],["-90.041089","30.029341"],["-90.040976","30.029369"],["-90.040863","30.029397"],["-90.040751","30.029425"],["-90.040638","30.029453"],["-90.040525","30.029481"],["-90.040412","30.029509"],["-90.040300","30.029537"],["-90.040187","30.029565"],["-90.040074","30.029593"],["-90.039949","30.029622"],["-90.039825","30.029651"],["-90.039700","30.029680"],["-90.039575","30.029709"],["-90.039450","30.029739"],["-90.039325","30.029768"],["-90.039201","30.029797"],["-90.039076","30.029826"],["-90.039026","30.029806"],["-90.038947","30.029843"],["-90.038880","30.029661"],["-90.038813","30.029480"],["-90.038746","30.029298"],["-90.038679","30.029117"],["-90.038612","30.028935"],["-90.038545","30.028754"],["-90.038478","30.028573"],["-90.038411","30.028391"],["-90.038439","30.028241"],["-90.038336","30.028096"],["-90.038257","30.027921"],["-90.038179","30.027746"],["-90.038189","30.027630"],["-90.038199","30.027514"],["-90.038209","30.027398"],["-90.038219","30.027282"],["-90.038229","30.027166"],["-90.038239","30.027049"],["-90.038249","30.026933"],["-90.038259","30.026817"],["-90.038347","30.026825"],["-90.038338","30.026712"],["-90.038329","30.026599"],["-90.038362","30.026442"],["-90.038394","30.026285"],["-90.038427","30.026128"],["-90.038459","30.025971"],["-90.038492","30.025814"],["-90.038524","30.025657"],["-90.038557","30.025500"],["-90.038589","30.025343"],["-90.038605","30.025178"],["-90.038622","30.025013"],["-90.038615","30.024887"],["-90.038609","30.024761"],["-90.038603","30.024636"],["-90.038597","30.024510"],["-90.038577","30.024409"],["-90.038557","30.024307"],["-90.038537","30.024205"],["-90.038517","30.024104"],["-90.038552","30.023985"],["-90.038450","30.023892"],["-90.038397","30.023756"],["-90.038343","30.023620"],["-90.038290","30.023484"],["-90.038236","30.023348"],["-90.038190","30.023231"],["-90.038145","30.023114"],["-90.038099","30.022997"],["-90.038054","30.022880"],["-90.037960","30.022861"],["-90.037853","30.022700"],["-90.037747","30.022538"],["-90.037640","30.022377"],["-90.037534","30.022215"],["-90.037427","30.022053"],["-90.037321","30.021892"],["-90.037215","30.021730"],["-90.037108","30.021569"],["-90.037004","30.021410"],["-90.036900","30.021251"],["-90.036796","30.021091"],["-90.036692","30.020932"],["-90.036639","30.020826"],["-90.036586","30.020720"],["-90.036534","30.020614"],["-90.036481","30.020507"],["-90.036452","30.020392"],["-90.036423","30.020278"],["-90.036419","30.020088"],["-90.036415","30.019899"],["-90.036411","30.019710"],["-90.036407","30.019520"],["-90.036429","30.019376"],["-90.036450","30.019232"],["-90.036337","30.019177"],["-90.036223","30.019121"],["-90.036110","30.019065"],["-90.035996","30.019009"],["-90.035923","30.018840"],["-90.035851","30.018672"],["-90.035778","30.018504"],["-90.035705","30.018335"],["-90.035735","30.018181"],["-90.035614","30.018035"],["-90.035572","30.017914"],["-90.035530","30.017793"],["-90.035487","30.017672"],["-90.035445","30.017551"],["-90.035403","30.017431"],["-90.035361","30.017310"],["-90.035318","30.017189"],["-90.035276","30.017068"],["-90.035218","30.016909"],["-90.035161","30.016750"],["-90.035103","30.016591"],["-90.035045","30.016432"],["-90.035079","30.016279"],["-90.034960","30.016204"],["-90.034906","30.016038"],["-90.034853","30.015871"],["-90.034800","30.015704"],["-90.034746","30.015537"],["-90.034801","30.015393"],["-90.034683","30.015364"],["-90.034648","30.015253"],["-90.034612","30.015142"],["-90.034576","30.015031"],["-90.034541","30.014921"],["-90.034505","30.014810"],["-90.034469","30.014699"],["-90.034433","30.014588"],["-90.034398","30.014478"],["-90.034362","30.014367"],["-90.034326","30.014256"],["-90.034291","30.014145"],["-90.034255","30.014034"],["-90.034219","30.013924"],["-90.034183","30.013813"],["-90.034148","30.013702"],["-90.034112","30.013591"],["-90.034077","30.013485"],["-90.034042","30.013379"],["-90.034007","30.013272"],["-90.033972","30.013166"],["-90.033938","30.013060"],["-90.033903","30.012953"],["-90.033868","30.012847"],["-90.033833","30.012741"],["-90.033790","30.012605"],["-90.033747","30.012469"],["-90.033704","30.012333"],["-90.033661","30.012197"],["-90.033586","30.012018"],["-90.033593","30.011922"],["-90.033600","30.011825"],["-90.033501","30.011722"],["-90.033468","30.011616"],["-90.033436","30.011511"],["-90.033403","30.011406"],["-90.033371","30.011301"],["-90.033338","30.011196"],["-90.033306","30.011091"],["-90.033273","30.010986"],["-90.033241","30.010881"],["-90.033208","30.010776"],["-90.033176","30.010671"],["-90.033143","30.010565"],["-90.033111","30.010460"],["-90.033078","30.010355"],["-90.033046","30.010250"],["-90.033013","30.010145"],["-90.032981","30.010040"],["-90.032962","30.009917"],["-90.032943","30.009794"],["-90.032901","30.009681"],["-90.032858","30.009569"],["-90.032816","30.009457"],["-90.032773","30.009344"],["-90.032731","30.009232"],["-90.032689","30.009120"],["-90.032646","30.009007"],["-90.032604","30.008895"],["-90.032475","30.008829"],["-90.032430","30.008739"],["-90.032385","30.008650"],["-90.032340","30.008560"],["-90.032294","30.008471"],["-90.032249","30.008382"],["-90.032204","30.008292"],["-90.032158","30.008203"],["-90.032113","30.008113"],["-90.032068","30.008024"],["-90.032023","30.007935"],["-90.031977","30.007845"],["-90.031932","30.007756"],["-90.031887","30.007666"],["-90.031842","30.007577"],["-90.031796","30.007487"],["-90.031751","30.007398"],["-90.031722","30.007289"],["-90.031902","30.007222"],["-90.032081","30.007154"],["-90.032261","30.007087"],["-90.032441","30.007020"],["-90.032632","30.006929"],["-90.032822","30.006838"],["-90.032929","30.006752"],["-90.033061","30.006686"],["-90.033192","30.006620"],["-90.033355","30.006561"],["-90.033517","30.006503"],["-90.033679","30.006444"],["-90.033841","30.006386"],["-90.034019","30.006378"],["-90.034053","30.006288"],["-90.034165","30.006245"],["-90.034276","30.006202"],["-90.034387","30.006159"],["-90.034498","30.006116"],["-90.034610","30.006072"],["-90.034721","30.006029"],["-90.034832","30.005986"],["-90.034944","30.005943"],["-90.035102","30.005970"],["-90.035070","30.005910"],["-90.035238","30.005840"],["-90.035405","30.005770"],["-90.035573","30.005700"],["-90.035740","30.005630"],["-90.035883","30.005580"],["-90.036025","30.005530"],["-90.036168","30.005480"],["-90.036310","30.005430"],["-90.036334","30.005478"],["-90.036310","30.005430"],["-90.036380","30.005410"],["-90.036580","30.005330"],["-90.036770","30.005260"],["-90.036960","30.005185"],["-90.037150","30.005110"],["-90.037270","30.005063"],["-90.037390","30.005015"],["-90.037510","30.004968"],["-90.037659","30.004976"]]}]}},{"type":"Feature","properties":{"route_id":"57","agency_id":"1","route_short_name":"57","route_long_name":"Franklin-Freret","route_type":"3","route_color":"#d6ed6b","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.068741","29.969606"],["-90.067279","29.971217"],["-90.070708","29.967388"],["-90.072160","29.965750"],["-90.050724","30.007035"],["-90.043983","30.023205"],["-90.052046","30.026440"],["-90.052336","30.026439"],["-90.052149","30.024709"],["-90.052044","30.022700"],["-90.051864","30.020484"],["-90.051707","30.018448"],["-90.051454","30.016152"],["-90.051359","30.014170"],["-90.051140","30.012314"],["-90.050974","30.010549"],["-90.050839","30.008774"],["-90.050568","30.005252"],["-90.050389","30.002982"],["-90.050324","30.000954"],["-90.050222","29.999396"],["-90.050149","29.997738"],["-90.050004","29.996035"],["-90.049849","29.994468"],["-90.049772","29.993630"],["-90.049481","29.990081"],["-90.048994","29.983297"],["-90.048935","29.982225"],["-90.048704","29.980323"],["-90.048532","29.977225"],["-90.048603","29.975206"],["-90.124089","29.940570"],["-90.087442","29.939359"],["-90.089262","29.938647"],["-90.090863","29.937738"],["-90.093021","29.936520"],["-90.095654","29.936353"],["-90.097785","29.935807"],["-90.100444","29.935511"],["-90.105218","29.935141"],["-90.107147","29.934982"],["-90.109229","29.935038"],["-90.111038","29.935228"],["-90.112142","29.935459"],["-90.114372","29.935944"],["-90.115862","29.936396"],["-90.118261","29.937374"],["-90.120436","29.938534"],["-90.127164","29.936922"],["-90.076537","29.948723"],["-90.077250","29.946349"],["-90.080535","29.944007"],["-90.081487","29.942673"],["-90.133478","29.929003"],["-90.132227","29.930559"],["-90.129812","29.933640"],["-90.128592","29.935190"],["-90.131023","29.932108"],["-90.075911","29.951058"],["-90.052439","30.027988"],["-90.102759","29.935335"],["-90.045042","30.028508"],["-90.048637","29.979279"],["-90.064883","29.973222"],["-90.050234","29.974063"],["-90.052349","29.973927"],["-90.054755","29.973781"],["-90.057015","29.973635"],["-90.059628","29.973479"],["-90.061898","29.973342"],["-90.043904","30.027351"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-90.084922","29.939254"],["-90.082868","29.940706"],["-90.075280","29.954073"],["-90.131798","29.926631"]]},{"type":"LineString","coordinates":[["-90.043983","30.023205"],["-90.043980","30.023180"],["-90.043948","30.023088"],["-90.043912","30.022971"],["-90.043875","30.022924"],["-90.043723","30.022935"],["-90.043734","30.023051"],["-90.043745","30.023167"],["-90.043756","30.023284"],["-90.043767","30.023400"],["-90.043777","30.023516"],["-90.043788","30.023632"],["-90.043799","30.023749"],["-90.043810","30.023865"],["-90.043820","30.023978"],["-90.043830","30.024090"],["-90.043835","30.024240"],["-90.043840","30.024390"],["-90.043840","30.024500"],["-90.043820","30.024660"],["-90.043800","30.024800"],["-90.043760","30.024920"],["-90.043720","30.025040"],["-90.043680","30.025160"],["-90.043640","30.025280"],["-90.043585","30.025365"],["-90.043530","30.025450"],["-90.043440","30.025580"],["-90.043350","30.025710"],["-90.043290","30.025800"],["-90.043230","30.025890"],["-90.043180","30.025990"],["-90.043150","30.026110"],["-90.043140","30.026190"],["-90.043150","30.026300"],["-90.043180","30.026440"],["-90.043220","30.026530"],["-90.043300","30.026650"],["-90.043440","30.026790"],["-90.043575","30.026925"],["-90.043710","30.027060"],["-90.043830","30.027180"],["-90.043950","30.027300"],["-90.043900","30.027340"],["-90.043904","30.027351"],["-90.043900","30.027340"],["-90.043950","30.027300"],["-90.044070","30.027415"],["-90.044190","30.027530"],["-90.044325","30.027670"],["-90.044460","30.027810"],["-90.044480","30.027830"],["-90.044610","30.027960"],["-90.044660","30.028010"],["-90.044690","30.028040"],["-90.044740","30.028100"],["-90.044770","30.028120"],["-90.044860","30.028210"],["-90.044880","30.028230"],["-90.045020","30.028370"],["-90.045042","30.028508"],["-90.045212","30.028611"],["-90.045336","30.028686"],["-90.045472","30.028822"],["-90.045608","30.028958"],["-90.045760","30.028860"],["-90.045914","30.028740"],["-90.046069","30.028619"],["-90.046223","30.028499"],["-90.046378","30.028379"],["-90.046518","30.028246"],["-90.046658","30.028113"],["-90.046798","30.027980"],["-90.046938","30.027848"],["-90.046979","30.027809"],["-90.047123","30.027679"],["-90.047200","30.027610"],["-90.047358","30.027493"],["-90.047430","30.027440"],["-90.047601","30.027338"],["-90.047700","30.027280"],["-90.047889","30.027205"],["-90.048000","30.027160"],["-90.048197","30.027102"],["-90.048309","30.027069"],["-90.048513","30.027033"],["-90.048710","30.026999"],["-90.048914","30.026964"],["-90.049118","30.026930"],["-90.049299","30.026899"],["-90.049503","30.026863"],["-90.049706","30.026827"],["-90.049910","30.026791"],["-90.050113","30.026755"],["-90.050316","30.026718"],["-90.050520","30.026682"],["-90.050724","30.026646"],["-90.050927","30.026610"],["-90.051040","30.026590"],["-90.051243","30.026553"],["-90.051320","30.026539"],["-90.051524","30.026503"],["-90.051640","30.026480"],["-90.051846","30.026460"],["-90.052046","30.026440"],["-90.052090","30.026440"],["-90.052100","30.026585"],["-90.052110","30.026730"],["-90.052120","30.026840"],["-90.052129","30.026958"],["-90.052137","30.027075"],["-90.052146","30.027193"],["-90.052155","30.027310"],["-90.052164","30.027428"],["-90.052172","30.027545"],["-90.052181","30.027663"],["-90.052190","30.027780"],["-90.052205","30.027920"],["-90.052220","30.028060"],["-90.052225","30.028175"],["-90.052230","30.028290"],["-90.052240","30.028425"],["-90.052250","30.028560"],["-90.052450","30.028530"],["-90.052440","30.028408"],["-90.052430","30.028285"],["-90.052420","30.028163"],["-90.052410","30.028040"],["-90.052410","30.027990"],["-90.052439","30.027988"],["-90.052410","30.027990"],["-90.052400","30.027884"],["-90.052390","30.027778"],["-90.052380","30.027671"],["-90.052370","30.027565"],["-90.052360","30.027459"],["-90.052350","30.027353"],["-90.052340","30.027246"],["-90.052330","30.027140"],["-90.052320","30.027090"],["-90.052305","30.026928"],["-90.052290","30.026765"],["-90.052275","30.026603"],["-90.052260","30.026440"],["-90.052336","30.026439"],["-90.052260","30.026440"],["-90.052260","30.026380"],["-90.052270","30.026260"],["-90.052250","30.026070"],["-90.052240","30.025895"],["-90.052230","30.025720"],["-90.052219","30.025594"],["-90.052207","30.025468"],["-90.052196","30.025341"],["-90.052185","30.025215"],["-90.052174","30.025089"],["-90.052162","30.024963"],["-90.052151","30.024836"],["-90.052140","30.024710"],["-90.052149","30.024709"],["-90.052140","30.024710"],["-90.052130","30.024584"],["-90.052120","30.024458"],["-90.052110","30.024331"],["-90.052100","30.024205"],["-90.052090","30.024079"],["-90.052080","30.023953"],["-90.052070","30.023826"],["-90.052060","30.023700"],["-90.052051","30.023575"],["-90.052042","30.023450"],["-90.052034","30.023325"],["-90.052025","30.023200"],["-90.052016","30.023075"],["-90.052007","30.022950"],["-90.051999","30.022825"],["-90.051990","30.022700"],["-90.052044","30.022700"],["-90.051990","30.022700"],["-90.051990","30.022650"],["-90.051970","30.022500"],["-90.051960","30.022395"],["-90.051950","30.022290"],["-90.051941","30.022185"],["-90.051932","30.022080"],["-90.051924","30.021975"],["-90.051915","30.021870"],["-90.051906","30.021765"],["-90.051897","30.021660"],["-90.051889","30.021555"],["-90.051880","30.021450"],["-90.051870","30.021330"],["-90.051860","30.021210"],["-90.051850","30.021090"],["-90.051840","30.020970"],["-90.051830","30.020850"],["-90.051820","30.020730"],["-90.051810","30.020610"],["-90.051800","30.020490"],["-90.051864","30.020484"],["-90.051800","30.020490"],["-90.051800","30.020440"],["-90.051790","30.020313"],["-90.051780","30.020185"],["-90.051770","30.020058"],["-90.051760","30.019930"],["-90.051750","30.019803"],["-90.051740","30.019675"],["-90.051730","30.019548"],["-90.051720","30.019420"],["-90.051710","30.019299"],["-90.051700","30.019178"],["-90.051690","30.019056"],["-90.051680","30.018935"],["-90.051670","30.018814"],["-90.051660","30.018693"],["-90.051650","30.018571"],["-90.051640","30.018450"],["-90.051707","30.018448"],["-90.051640","30.018450"],["-90.051640","30.018400"],["-90.051630","30.018270"],["-90.051620","30.018140"],["-90.051610","30.018010"],["-90.051600","30.017880"],["-90.051590","30.017750"],["-90.051580","30.017620"],["-90.051570","30.017490"],["-90.051560","30.017360"],["-90.051560","30.017190"],["-90.051550","30.017085"],["-90.051540","30.016980"],["-90.051530","30.016875"],["-90.051520","30.016770"],["-90.051510","30.016665"],["-90.051500","30.016560"],["-90.051490","30.016455"],["-90.051480","30.016350"],["-90.051460","30.016160"],["-90.051454","30.016152"],["-90.051460","30.016160"],["-90.051445","30.015975"],["-90.051430","30.015790"],["-90.051415","30.015605"],["-90.051400","30.015420"],["-90.051390","30.015280"],["-90.051380","30.015140"],["-90.051371","30.015019"],["-90.051362","30.014898"],["-90.051354","30.014776"],["-90.051345","30.014655"],["-90.051336","30.014534"],["-90.051327","30.014413"],["-90.051319","30.014291"],["-90.051310","30.014170"],["-90.051359","30.014170"],["-90.051310","30.014170"],["-90.051300","30.014120"],["-90.051290","30.013985"],["-90.051280","30.013850"],["-90.051260","30.013700"],["-90.051240","30.013550"],["-90.051210","30.013370"],["-90.051180","30.013190"],["-90.051150","30.013025"],["-90.051120","30.012860"],["-90.051095","30.012670"],["-90.051070","30.012480"],["-90.051060","30.012375"],["-90.051050","30.012270"],["-90.051140","30.012270"],["-90.051140","30.012314"],["-90.051140","30.012270"],["-90.051050","30.012270"],["-90.051041","30.012163"],["-90.051032","30.012055"],["-90.051024","30.011948"],["-90.051015","30.011840"],["-90.051006","30.011733"],["-90.050997","30.011625"],["-90.050989","30.011518"],["-90.050980","30.011410"],["-90.050971","30.011303"],["-90.050962","30.011195"],["-90.050954","30.011088"],["-90.050945","30.010980"],["-90.050936","30.010873"],["-90.050927","30.010765"],["-90.050919","30.010658"],["-90.050910","30.010550"],["-90.050974","30.010549"],["-90.050910","30.010550"],["-90.050910","30.010500"],["-90.050897","30.010351"],["-90.050885","30.010203"],["-90.050872","30.010054"],["-90.050860","30.009905"],["-90.050847","30.009756"],["-90.050835","30.009608"],["-90.050822","30.009459"],["-90.050810","30.009310"],["-90.050800","30.009178"],["-90.050790","30.009045"],["-90.050780","30.008913"],["-90.050770","30.008780"],["-90.050839","30.008774"],["-90.050770","30.008780"],["-90.050770","30.008730"],["-90.050757","30.008580"],["-90.050745","30.008430"],["-90.050732","30.008280"],["-90.050720","30.008130"],["-90.050710","30.008018"],["-90.050700","30.007905"],["-90.050690","30.007793"],["-90.050680","30.007680"],["-90.050667","30.007520"],["-90.050655","30.007360"],["-90.050642","30.007200"],["-90.050630","30.007040"],["-90.050724","30.007035"],["-90.050630","30.007040"],["-90.050620","30.006970"],["-90.050612","30.006871"],["-90.050605","30.006771"],["-90.050597","30.006672"],["-90.050590","30.006573"],["-90.050582","30.006473"],["-90.050575","30.006374"],["-90.050567","30.006274"],["-90.050560","30.006175"],["-90.050552","30.006076"],["-90.050545","30.005976"],["-90.050537","30.005877"],["-90.050530","30.005778"],["-90.050522","30.005678"],["-90.050515","30.005579"],["-90.050507","30.005479"],["-90.050500","30.005380"],["-90.050480","30.005210"],["-90.050560","30.005200"],["-90.050568","30.005252"],["-90.050560","30.005200"],["-90.050480","30.005210"],["-90.050471","30.005103"],["-90.050462","30.004995"],["-90.050454","30.004888"],["-90.050445","30.004780"],["-90.050436","30.004673"],["-90.050427","30.004565"],["-90.050419","30.004458"],["-90.050410","30.004350"],["-90.050397","30.004179"],["-90.050385","30.004008"],["-90.050372","30.003836"],["-90.050360","30.003665"],["-90.050349","30.003543"],["-90.050338","30.003421"],["-90.050328","30.003299"],["-90.050317","30.003178"],["-90.050353","30.003080"],["-90.050389","30.002982"],["-90.050322","30.002926"],["-90.050318","30.002807"],["-90.050314","30.002688"],["-90.050309","30.002569"],["-90.050305","30.002450"],["-90.050304","30.002348"],["-90.050302","30.002245"],["-90.050301","30.002143"],["-90.050300","30.002040"],["-90.050290","30.002030"],["-90.050285","30.001855"],["-90.050280","30.001680"],["-90.050265","30.001500"],["-90.050250","30.001320"],["-90.050235","30.001140"],["-90.050280","30.001047"],["-90.050324","30.000954"],["-90.050220","30.000960"],["-90.050210","30.000870"],["-90.050200","30.000771"],["-90.050190","30.000673"],["-90.050180","30.000574"],["-90.050170","30.000475"],["-90.050160","30.000376"],["-90.050150","30.000278"],["-90.050140","30.000179"],["-90.050130","30.000080"],["-90.050117","29.999913"],["-90.050105","29.999745"],["-90.050092","29.999578"],["-90.050080","29.999410"],["-90.050222","29.999396"],["-90.050080","29.999410"],["-90.050070","29.999280"],["-90.050062","29.999181"],["-90.050055","29.999083"],["-90.050047","29.998984"],["-90.050040","29.998885"],["-90.050032","29.998786"],["-90.050025","29.998688"],["-90.050017","29.998589"],["-90.050010","29.998490"],["-90.050001","29.998390"],["-90.049992","29.998290"],["-90.049984","29.998190"],["-90.049975","29.998090"],["-90.049966","29.997990"],["-90.049957","29.997890"],["-90.049949","29.997790"],["-90.049940","29.997690"],["-90.050140","29.997680"],["-90.050149","29.997738"],["-90.050140","29.997680"],["-90.049940","29.997690"],["-90.049932","29.997591"],["-90.049925","29.997493"],["-90.049917","29.997394"],["-90.049910","29.997295"],["-90.049902","29.997196"],["-90.049895","29.997098"],["-90.049887","29.996999"],["-90.049880","29.996900"],["-90.049871","29.996800"],["-90.049862","29.996700"],["-90.049854","29.996600"],["-90.049845","29.996500"],["-90.049836","29.996400"],["-90.049827","29.996300"],["-90.049819","29.996200"],["-90.049810","29.996100"],["-90.050010","29.996090"],["-90.050004","29.996035"],["-90.050010","29.996090"],["-90.049810","29.996100"],["-90.049802","29.995980"],["-90.049795","29.995860"],["-90.049787","29.995740"],["-90.049780","29.995620"],["-90.049770","29.995510"],["-90.049760","29.995410"],["-90.049760","29.995310"],["-90.049750","29.995203"],["-90.049740","29.995095"],["-90.049730","29.994988"],["-90.049720","29.994880"],["-90.049710","29.994780"],["-90.049710","29.994690"],["-90.049700","29.994620"],["-90.049690","29.994500"],["-90.049850","29.994490"],["-90.049849","29.994468"],["-90.049850","29.994490"],["-90.049690","29.994500"],["-90.049680","29.994388"],["-90.049670","29.994275"],["-90.049660","29.994163"],["-90.049650","29.994050"],["-90.049650","29.993990"],["-90.049640","29.993910"],["-90.049640","29.993800"],["-90.049630","29.993710"],["-90.049780","29.993700"],["-90.049772","29.993630"],["-90.049780","29.993700"],["-90.049630","29.993710"],["-90.049620","29.993600"],["-90.049615","29.993500"],["-90.049610","29.993400"],["-90.049600","29.993330"],["-90.049595","29.993215"],["-90.049590","29.993100"],["-90.049570","29.992930"],["-90.049560","29.992745"],["-90.049550","29.992560"],["-90.049537","29.992425"],["-90.049525","29.992290"],["-90.049512","29.992155"],["-90.049500","29.992020"],["-90.049490","29.991900"],["-90.049480","29.991780"],["-90.049480","29.991720"],["-90.049480","29.991710"],["-90.049480","29.991700"],["-90.049470","29.991590"],["-90.049460","29.991480"],["-90.049450","29.991370"],["-90.049430","29.991230"],["-90.049420","29.991140"],["-90.049420","29.991070"],["-90.049410","29.990940"],["-90.049400","29.990850"],["-90.049390","29.990710"],["-90.049380","29.990570"],["-90.049370","29.990435"],["-90.049360","29.990300"],["-90.049350","29.990180"],["-90.049340","29.990120"],["-90.049340","29.990090"],["-90.049481","29.990081"],["-90.049340","29.990090"],["-90.049340","29.990020"],["-90.049340","29.989910"],["-90.049340","29.989800"],["-90.049330","29.989710"],["-90.049330","29.989640"],["-90.049330","29.989580"],["-90.049330","29.989540"],["-90.049330","29.989420"],["-90.049330","29.989380"],["-90.049330","29.989340"],["-90.049320","29.989150"],["-90.049310","29.989000"],["-90.049300","29.988960"],["-90.049300","29.988920"],["-90.049290","29.988850"],["-90.049270","29.988760"],["-90.049250","29.988660"],["-90.049230","29.988560"],["-90.049230","29.988520"],["-90.049210","29.988410"],["-90.049210","29.988380"],["-90.049200","29.988230"],["-90.049190","29.988050"],["-90.049180","29.987940"],["-90.049170","29.987870"],["-90.049160","29.987680"],["-90.049145","29.987510"],["-90.049130","29.987340"],["-90.049120","29.987223"],["-90.049110","29.987105"],["-90.049100","29.986988"],["-90.049090","29.986870"],["-90.049080","29.986750"],["-90.049070","29.986630"],["-90.049060","29.986450"],["-90.049060","29.986440"],["-90.049050","29.986340"],["-90.049040","29.986225"],["-90.049030","29.986110"],["-90.049020","29.985993"],["-90.049010","29.985875"],["-90.049000","29.985758"],["-90.048990","29.985640"],["-90.048990","29.985610"],["-90.048980","29.985530"],["-90.048967","29.985368"],["-90.048955","29.985205"],["-90.048942","29.985043"],["-90.048930","29.984880"],["-90.048920","29.984770"],["-90.048910","29.984660"],["-90.048900","29.984550"],["-90.048890","29.984440"],["-90.048880","29.984325"],["-90.048870","29.984210"],["-90.048860","29.984090"],["-90.048855","29.983970"],["-90.048850","29.983850"],["-90.048840","29.983810"],["-90.048840","29.983680"],["-90.048880","29.983550"],["-90.048865","29.983415"],["-90.048850","29.983280"],["-90.048990","29.983270"],["-90.048994","29.983297"],["-90.048990","29.983270"],["-90.048850","29.983280"],["-90.048840","29.983153"],["-90.048830","29.983025"],["-90.048820","29.982898"],["-90.048810","29.982770"],["-90.048800","29.982643"],["-90.048790","29.982515"],["-90.048780","29.982388"],["-90.048770","29.982260"],["-90.048940","29.982250"],["-90.048935","29.982225"],["-90.048940","29.982250"],["-90.048770","29.982260"],["-90.048760","29.982134"],["-90.048750","29.982008"],["-90.048740","29.981881"],["-90.048730","29.981755"],["-90.048720","29.981629"],["-90.048710","29.981503"],["-90.048700","29.981376"],["-90.048690","29.981250"],["-90.048680","29.981135"],["-90.048683","29.981034"],["-90.048686","29.980932"],["-90.048689","29.980831"],["-90.048692","29.980729"],["-90.048695","29.980628"],["-90.048698","29.980526"],["-90.048701","29.980425"],["-90.048704","29.980323"],["-90.048632","29.980229"],["-90.048621","29.980107"],["-90.048610","29.979984"],["-90.048599","29.979861"],["-90.048589","29.979739"],["-90.048578","29.979616"],["-90.048567","29.979494"],["-90.048556","29.979371"],["-90.048546","29.979249"],["-90.048637","29.979279"],["-90.048637","29.979279"],["-90.048530","29.979216"],["-90.048520","29.979109"],["-90.048510","29.979002"],["-90.048500","29.978895"],["-90.048490","29.978788"],["-90.048480","29.978681"],["-90.048470","29.978574"],["-90.048460","29.978467"],["-90.048450","29.978360"],["-90.048440","29.978210"],["-90.048427","29.978038"],["-90.048415","29.977865"],["-90.048402","29.977693"],["-90.048390","29.977520"],["-90.048380","29.977405"],["-90.048370","29.977290"],["-90.048370","29.977190"],["-90.048480","29.977190"],["-90.048530","29.977190"],["-90.048532","29.977225"],["-90.048530","29.977190"],["-90.048480","29.977190"],["-90.048370","29.977190"],["-90.048360","29.977085"],["-90.048350","29.976980"],["-90.048340","29.976875"],["-90.048330","29.976770"],["-90.048310","29.976600"],["-90.048290","29.976430"],["-90.048275","29.976305"],["-90.048260","29.976180"],["-90.048250","29.976050"],["-90.048250","29.975950"],["-90.048250","29.975910"],["-90.048250","29.975880"],["-90.048260","29.975840"],["-90.048290","29.975740"],["-90.048320","29.975640"],["-90.048320","29.975630"],["-90.048360","29.975508"],["-90.048400","29.975385"],["-90.048440","29.975263"],["-90.048480","29.975140"],["-90.048610","29.975140"],["-90.048603","29.975206"],["-90.048600","29.975150"],["-90.048500","29.975150"],["-90.048550","29.974970"],["-90.048600","29.974790"],["-90.048650","29.974650"],["-90.048678","29.974555"],["-90.048705","29.974460"],["-90.048733","29.974365"],["-90.048760","29.974270"],["-90.048810","29.974110"],["-90.048980","29.974105"],["-90.049150","29.974100"],["-90.049285","29.974093"],["-90.049420","29.974085"],["-90.049555","29.974078"],["-90.049690","29.974070"],["-90.049825","29.974063"],["-90.049960","29.974055"],["-90.050095","29.974048"],["-90.050230","29.974040"],["-90.050234","29.974063"],["-90.050230","29.974040"],["-90.050290","29.974030"],["-90.050425","29.974023"],["-90.050560","29.974015"],["-90.050695","29.974008"],["-90.050830","29.974000"],["-90.050950","29.973990"],["-90.051060","29.973980"],["-90.051235","29.973970"],["-90.051410","29.973960"],["-90.051528","29.973954"],["-90.051645","29.973948"],["-90.051763","29.973941"],["-90.051880","29.973935"],["-90.051998","29.973929"],["-90.052115","29.973923"],["-90.052233","29.973916"],["-90.052350","29.973910"],["-90.052349","29.973927"],["-90.052350","29.973910"],["-90.052430","29.973900"],["-90.052510","29.973890"],["-90.052660","29.973890"],["-90.052786","29.973883"],["-90.052913","29.973875"],["-90.053039","29.973868"],["-90.053165","29.973860"],["-90.053291","29.973853"],["-90.053418","29.973845"],["-90.053544","29.973838"],["-90.053670","29.973830"],["-90.053790","29.973823"],["-90.053910","29.973815"],["-90.054030","29.973808"],["-90.054150","29.973800"],["-90.054300","29.973790"],["-90.054450","29.973780"],["-90.054600","29.973770"],["-90.054750","29.973760"],["-90.054755","29.973781"],["-90.054750","29.973760"],["-90.054810","29.973760"],["-90.054951","29.973751"],["-90.055093","29.973743"],["-90.055234","29.973734"],["-90.055375","29.973725"],["-90.055516","29.973716"],["-90.055658","29.973708"],["-90.055799","29.973699"],["-90.055940","29.973690"],["-90.056105","29.973680"],["-90.056270","29.973670"],["-90.056385","29.973665"],["-90.056500","29.973660"],["-90.056628","29.973650"],["-90.056755","29.973640"],["-90.056883","29.973630"],["-90.057010","29.973620"],["-90.057015","29.973635"],["-90.057010","29.973620"],["-90.057050","29.973620"],["-90.057215","29.973605"],["-90.057380","29.973590"],["-90.057515","29.973583"],["-90.057650","29.973575"],["-90.057785","29.973568"],["-90.057920","29.973560"],["-90.058078","29.973550"],["-90.058235","29.973540"],["-90.058393","29.973530"],["-90.058550","29.973520"],["-90.058695","29.973513"],["-90.058840","29.973505"],["-90.058985","29.973498"],["-90.059130","29.973490"],["-90.059300","29.973480"],["-90.059470","29.973470"],["-90.059630","29.973460"],["-90.059628","29.973479"],["-90.059630","29.973460"],["-90.059690","29.973460"],["-90.059885","29.973445"],["-90.060080","29.973430"],["-90.060285","29.973420"],["-90.060490","29.973410"],["-90.060645","29.973400"],["-90.060800","29.973390"],["-90.060958","29.973380"],["-90.061115","29.973370"],["-90.061273","29.973360"],["-90.061430","29.973350"],["-90.061640","29.973340"],["-90.061770","29.973330"],["-90.061900","29.973320"],["-90.061898","29.973342"],["-90.061900","29.973320"],["-90.061960","29.973320"],["-90.062165","29.973305"],["-90.062370","29.973290"],["-90.062555","29.973278"],["-90.062740","29.973265"],["-90.062925","29.973253"],["-90.063110","29.973240"],["-90.063280","29.973235"],["-90.063450","29.973230"],["-90.063660","29.973210"],["-90.063820","29.973200"],["-90.063980","29.973190"],["-90.064140","29.973180"],["-90.064300","29.973170"],["-90.064460","29.973160"],["-90.064620","29.973150"],["-90.064750","29.973145"],["-90.064880","29.973140"],["-90.064883","29.973222"],["-90.064880","29.973140"],["-90.064900","29.973140"],["-90.065015","29.973130"],["-90.065130","29.973120"],["-90.065330","29.973100"],["-90.065420","29.973060"],["-90.065470","29.973040"],["-90.065650","29.972950"],["-90.065700","29.972920"],["-90.065720","29.972900"],["-90.065750","29.972880"],["-90.065800","29.972840"],["-90.065850","29.972800"],["-90.065940","29.972720"],["-90.065960","29.972700"],["-90.065980","29.972670"],["-90.066050","29.972600"],["-90.066110","29.972530"],["-90.066230","29.972393"],["-90.066350","29.972255"],["-90.066470","29.972118"],["-90.066590","29.971980"],["-90.066708","29.971850"],["-90.066825","29.971720"],["-90.066943","29.971590"],["-90.067060","29.971460"],["-90.067120","29.971390"],["-90.067160","29.971350"],["-90.067279","29.971217"],["-90.067280","29.971210"],["-90.067310","29.971170"],["-90.067435","29.971035"],["-90.067560","29.970900"],["-90.067635","29.970815"],["-90.067710","29.970730"],["-90.067785","29.970645"],["-90.067860","29.970560"],["-90.067940","29.970470"],["-90.067980","29.970420"],["-90.068040","29.970360"],["-90.068130","29.970255"],["-90.068220","29.970150"],["-90.068300","29.970055"],["-90.068380","29.969960"],["-90.068520","29.969820"],["-90.068625","29.969710"],["-90.068730","29.969600"],["-90.068741","29.969606"],["-90.068730","29.969600"],["-90.068750","29.969570"],["-90.068860","29.969450"],["-90.068980","29.969310"],["-90.068990","29.969310"],["-90.069083","29.969205"],["-90.069175","29.969100"],["-90.069268","29.968995"],["-90.069360","29.968890"],["-90.069453","29.968785"],["-90.069545","29.968680"],["-90.069638","29.968575"],["-90.069730","29.968470"],["-90.069810","29.968380"],["-90.069890","29.968290"],["-90.069990","29.968170"],["-90.070050","29.968110"],["-90.070120","29.968033"],["-90.070190","29.967955"],["-90.070260","29.967878"],["-90.070330","29.967800"],["-90.070400","29.967723"],["-90.070470","29.967645"],["-90.070540","29.967568"],["-90.070610","29.967490"],["-90.070660","29.967430"],["-90.070700","29.967380"],["-90.070708","29.967388"],["-90.070700","29.967380"],["-90.070740","29.967330"],["-90.070835","29.967225"],["-90.070930","29.967120"],["-90.071060","29.966980"],["-90.071180","29.966840"],["-90.071305","29.966695"],["-90.071430","29.966550"],["-90.071543","29.966428"],["-90.071655","29.966305"],["-90.071768","29.966183"],["-90.071880","29.966060"],["-90.071900","29.966040"],["-90.071930","29.966010"],["-90.072045","29.965880"],["-90.072160","29.965750"],["-90.072160","29.965750"],["-90.072190","29.965720"],["-90.072290","29.965620"],["-90.072400","29.965500"],["-90.072500","29.965375"],["-90.072600","29.965250"],["-90.072685","29.965155"],["-90.072770","29.965060"],["-90.072900","29.964910"],["-90.072980","29.964820"],["-90.073060","29.964730"],["-90.073150","29.964630"],["-90.073240","29.964530"],["-90.073280","29.964480"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962940"],["-90.071350","29.962930"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071180","29.962650"],["-90.071140","29.962510"],["-90.071090","29.962350"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074078","29.955755"],["-90.074000","29.955700"],["-90.074090","29.955605"],["-90.074180","29.955510"],["-90.074280","29.955420"],["-90.074400","29.955280"],["-90.074485","29.955180"],["-90.074570","29.955080"],["-90.074650","29.954988"],["-90.074730","29.954895"],["-90.074810","29.954803"],["-90.074890","29.954710"],["-90.074970","29.954610"],["-90.075060","29.954470"],["-90.075130","29.954360"],["-90.075140","29.954330"],["-90.075210","29.954180"],["-90.075260","29.954070"],["-90.075280","29.954073"],["-90.075260","29.954070"],["-90.075270","29.954030"],["-90.075280","29.954000"],["-90.075330","29.953835"],["-90.075380","29.953670"],["-90.075420","29.953550"],["-90.075440","29.953500"],["-90.075450","29.953450"],["-90.075460","29.953390"],["-90.075515","29.953225"],["-90.075570","29.953060"],["-90.075580","29.952990"],["-90.075620","29.952880"],["-90.075660","29.952745"],["-90.075700","29.952610"],["-90.075735","29.952485"],["-90.075770","29.952360"],["-90.075810","29.952230"],["-90.075830","29.952120"],["-90.075840","29.952030"],["-90.075840","29.951990"],["-90.075850","29.951910"],["-90.075850","29.951830"],["-90.075850","29.951720"],["-90.075850","29.951690"],["-90.075850","29.951570"],["-90.075830","29.951410"],["-90.075830","29.951280"],["-90.075820","29.951160"],["-90.075830","29.951060"],["-90.075911","29.951058"],["-90.075830","29.951060"],["-90.075840","29.950890"],["-90.075870","29.950760"],["-90.075918","29.950618"],["-90.075965","29.950475"],["-90.076013","29.950333"],["-90.076060","29.950190"],["-90.076110","29.950020"],["-90.076165","29.949845"],["-90.076220","29.949670"],["-90.076260","29.949550"],["-90.076280","29.949480"],["-90.076330","29.949310"],["-90.076360","29.949190"],["-90.076400","29.949055"],["-90.076440","29.948920"],["-90.076470","29.948830"],["-90.076490","29.948750"],["-90.076500","29.948710"],["-90.076537","29.948723"],["-90.076500","29.948710"],["-90.076540","29.948570"],["-90.076560","29.948480"],["-90.076605","29.948300"],["-90.076650","29.948120"],["-90.076675","29.948015"],["-90.076700","29.947910"],["-90.076725","29.947805"],["-90.076750","29.947700"],["-90.076795","29.947555"],["-90.076840","29.947410"],["-90.076885","29.947265"],["-90.076930","29.947120"],["-90.076980","29.946950"],["-90.077025","29.946810"],["-90.077070","29.946670"],["-90.077125","29.946500"],["-90.077158","29.946395"],["-90.077190","29.946290"],["-90.077250","29.946349"],["-90.077190","29.946290"],["-90.077190","29.946270"],["-90.077220","29.946190"],["-90.077235","29.946033"],["-90.077289","29.945859"],["-90.077310","29.945790"],["-90.077422","29.945638"],["-90.077450","29.945600"],["-90.077560","29.945448"],["-90.077692","29.945308"],["-90.077820","29.945220"],["-90.078016","29.945161"],["-90.078223","29.945150"],["-90.078431","29.945158"],["-90.078580","29.945180"],["-90.078700","29.945220"],["-90.078876","29.945316"],["-90.079051","29.945412"],["-90.079140","29.945460"],["-90.079250","29.945480"],["-90.079340","29.945450"],["-90.079420","29.945390"],["-90.079520","29.945240"],["-90.079630","29.945087"],["-90.079740","29.944935"],["-90.079815","29.944845"],["-90.079880","29.944750"],["-90.079940","29.944668"],["-90.080000","29.944585"],["-90.080060","29.944503"],["-90.080120","29.944420"],["-90.080180","29.944338"],["-90.080240","29.944255"],["-90.080300","29.944173"],["-90.080360","29.944090"],["-90.080450","29.943960"],["-90.080535","29.944007"],["-90.080450","29.943960"],["-90.080490","29.943900"],["-90.080565","29.943805"],["-90.080640","29.943710"],["-90.080670","29.943670"],["-90.080755","29.943558"],["-90.080840","29.943445"],["-90.080925","29.943333"],["-90.081010","29.943220"],["-90.081078","29.943130"],["-90.081145","29.943040"],["-90.081213","29.942950"],["-90.081280","29.942860"],["-90.081360","29.942755"],["-90.081440","29.942650"],["-90.081487","29.942673"],["-90.081440","29.942650"],["-90.081490","29.942580"],["-90.081555","29.942495"],["-90.081620","29.942410"],["-90.081738","29.942250"],["-90.081855","29.942090"],["-90.081973","29.941930"],["-90.082090","29.941770"],["-90.082200","29.941620"],["-90.082310","29.941470"],["-90.082380","29.941368"],["-90.082450","29.941265"],["-90.082520","29.941163"],["-90.082590","29.941060"],["-90.082655","29.940955"],["-90.082720","29.940850"],["-90.082820","29.940710"],["-90.082830","29.940690"],["-90.082868","29.940706"],["-90.082830","29.940690"],["-90.082860","29.940660"],["-90.082890","29.940620"],["-90.082960","29.940510"],["-90.083040","29.940420"],["-90.083180","29.940320"],["-90.083240","29.940270"],["-90.083334","29.940208"],["-90.083428","29.940145"],["-90.083521","29.940083"],["-90.083615","29.940020"],["-90.083709","29.939958"],["-90.083803","29.939895"],["-90.083896","29.939833"],["-90.083990","29.939770"],["-90.084095","29.939703"],["-90.084200","29.939635"],["-90.084305","29.939568"],["-90.084410","29.939500"],["-90.084545","29.939415"],["-90.084680","29.939330"],["-90.084780","29.939265"],["-90.084880","29.939200"],["-90.084922","29.939254"],["-90.084890","29.939220"],["-90.084970","29.939170"],["-90.085080","29.939120"],["-90.085200","29.939080"],["-90.085270","29.939060"],["-90.085380","29.939040"],["-90.085450","29.939020"],["-90.085480","29.939020"],["-90.085570","29.939000"],["-90.085790","29.938990"],["-90.085850","29.939000"],["-90.085870","29.939000"],["-90.085990","29.939010"],["-90.086140","29.939030"],["-90.086160","29.939030"],["-90.086290","29.939070"],["-90.086420","29.939110"],["-90.086540","29.939160"],["-90.086660","29.939210"],["-90.086850","29.939270"],["-90.086990","29.939300"],["-90.087080","29.939310"],["-90.087160","29.939320"],["-90.087240","29.939330"],["-90.087330","29.939340"],["-90.087440","29.939340"],["-90.087440","29.939330"],["-90.087442","29.939359"],["-90.087440","29.939330"],["-90.087570","29.939330"],["-90.087680","29.939310"],["-90.087790","29.939290"],["-90.088000","29.939250"],["-90.088110","29.939190"],["-90.088230","29.939130"],["-90.088350","29.939065"],["-90.088470","29.939000"],["-90.088510","29.938980"],["-90.088580","29.938950"],["-90.088720","29.938860"],["-90.088870","29.938780"],["-90.089020","29.938700"],["-90.089120","29.938645"],["-90.089262","29.938647"],["-90.089210","29.938580"],["-90.089280","29.938540"],["-90.089385","29.938480"],["-90.089490","29.938420"],["-90.089595","29.938360"],["-90.089700","29.938300"],["-90.089800","29.938245"],["-90.089900","29.938190"],["-90.090000","29.938135"],["-90.090100","29.938080"],["-90.090210","29.938020"],["-90.090320","29.937960"],["-90.090445","29.937890"],["-90.090570","29.937820"],["-90.090695","29.937750"],["-90.090820","29.937680"],["-90.090863","29.937738"],["-90.090820","29.937680"],["-90.090930","29.937620"],["-90.091028","29.937565"],["-90.091125","29.937510"],["-90.091223","29.937455"],["-90.091320","29.937400"],["-90.091465","29.937315"],["-90.091610","29.937230"],["-90.091765","29.937145"],["-90.091920","29.937060"],["-90.092105","29.936955"],["-90.092290","29.936850"],["-90.092445","29.936760"],["-90.092600","29.936670"],["-90.092695","29.936618"],["-90.092790","29.936565"],["-90.092885","29.936513"],["-90.092980","29.936460"],["-90.093021","29.936520"],["-90.092990","29.936480"],["-90.093090","29.936420"],["-90.093140","29.936390"],["-90.093210","29.936350"],["-90.093300","29.936300"],["-90.093370","29.936260"],["-90.093450","29.936210"],["-90.093540","29.936170"],["-90.093600","29.936150"],["-90.093730","29.936080"],["-90.093850","29.936040"],["-90.093960","29.936000"],["-90.094070","29.935960"],["-90.094180","29.935920"],["-90.094290","29.935880"],["-90.094410","29.935835"],["-90.094530","29.935790"],["-90.094580","29.935780"],["-90.094755","29.935715"],["-90.094930","29.935650"],["-90.095015","29.935820"],["-90.095100","29.935990"],["-90.095155","29.936100"],["-90.095210","29.936210"],["-90.095260","29.936310"],["-90.095310","29.936410"],["-90.095430","29.936370"],["-90.095520","29.936330"],["-90.095620","29.936290"],["-90.095654","29.936353"],["-90.095620","29.936290"],["-90.095680","29.936270"],["-90.095860","29.936210"],["-90.095900","29.936190"],["-90.096010","29.936150"],["-90.096190","29.936080"],["-90.096335","29.936030"],["-90.096480","29.935980"],["-90.096490","29.935980"],["-90.096510","29.935980"],["-90.096540","29.935980"],["-90.096670","29.935965"],["-90.096800","29.935950"],["-90.097010","29.935910"],["-90.097170","29.935880"],["-90.097230","29.935860"],["-90.097290","29.935850"],["-90.097380","29.935830"],["-90.097570","29.935800"],["-90.097785","29.935807"],["-90.097770","29.935750"],["-90.097900","29.935720"],["-90.098010","29.935700"],["-90.098138","29.935675"],["-90.098265","29.935650"],["-90.098393","29.935625"],["-90.098520","29.935600"],["-90.098560","29.935600"],["-90.098660","29.935590"],["-90.098858","29.935575"],["-90.099055","29.935560"],["-90.099253","29.935545"],["-90.099450","29.935530"],["-90.099550","29.935540"],["-90.099680","29.935530"],["-90.099810","29.935520"],["-90.099940","29.935510"],["-90.100070","29.935500"],["-90.100255","29.935485"],["-90.100440","29.935470"],["-90.100444","29.935511"],["-90.100440","29.935470"],["-90.100470","29.935460"],["-90.100590","29.935450"],["-90.100725","29.935440"],["-90.100860","29.935430"],["-90.100995","29.935420"],["-90.101130","29.935410"],["-90.101273","29.935398"],["-90.101415","29.935385"],["-90.101558","29.935373"],["-90.101700","29.935360"],["-90.101831","29.935350"],["-90.101963","29.935340"],["-90.102094","29.935330"],["-90.102225","29.935320"],["-90.102356","29.935310"],["-90.102488","29.935300"],["-90.102619","29.935290"],["-90.102750","29.935280"],["-90.102759","29.935335"],["-90.102750","29.935280"],["-90.102840","29.935280"],["-90.102960","29.935270"],["-90.103080","29.935260"],["-90.103223","29.935249"],["-90.103365","29.935238"],["-90.103508","29.935226"],["-90.103650","29.935215"],["-90.103793","29.935204"],["-90.103935","29.935193"],["-90.104078","29.935181"],["-90.104220","29.935170"],["-90.104405","29.935155"],["-90.104590","29.935140"],["-90.104775","29.935125"],["-90.104960","29.935110"],["-90.105085","29.935100"],["-90.105210","29.935090"],["-90.105218","29.935141"],["-90.105210","29.935090"],["-90.105310","29.935080"],["-90.105530","29.935070"],["-90.105730","29.935055"],["-90.105930","29.935040"],["-90.106060","29.935030"],["-90.106190","29.935020"],["-90.106320","29.935010"],["-90.106450","29.935000"],["-90.106623","29.934985"],["-90.106795","29.934970"],["-90.106968","29.934955"],["-90.107140","29.934940"],["-90.107147","29.934982"],["-90.107140","29.934940"],["-90.107290","29.934930"],["-90.107430","29.934940"],["-90.107620","29.934945"],["-90.107810","29.934950"],["-90.108030","29.934960"],["-90.108250","29.934970"],["-90.108390","29.934980"],["-90.108540","29.934980"],["-90.108690","29.934980"],["-90.108840","29.934980"],["-90.109015","29.934990"],["-90.109230","29.935000"],["-90.109229","29.935038"],["-90.109230","29.935000"],["-90.109340","29.935000"],["-90.109490","29.935010"],["-90.109652","29.935015"],["-90.109815","29.935020"],["-90.109977","29.935025"],["-90.110140","29.935030"],["-90.110290","29.935030"],["-90.110480","29.935070"],["-90.110680","29.935110"],["-90.110880","29.935150"],["-90.111050","29.935190"],["-90.111038","29.935228"],["-90.111050","29.935190"],["-90.111160","29.935210"],["-90.111270","29.935230"],["-90.111381","29.935251"],["-90.111492","29.935273"],["-90.111604","29.935294"],["-90.111715","29.935315"],["-90.111826","29.935336"],["-90.111937","29.935358"],["-90.112049","29.935379"],["-90.112160","29.935400"],["-90.112142","29.935459"],["-90.112160","29.935400"],["-90.112260","29.935430"],["-90.112382","29.935454"],["-90.112505","29.935478"],["-90.112627","29.935501"],["-90.112750","29.935525"],["-90.112872","29.935549"],["-90.112995","29.935573"],["-90.113117","29.935596"],["-90.113240","29.935620"],["-90.113435","29.935665"],["-90.113630","29.935710"],["-90.113825","29.935755"],["-90.114020","29.935800"],["-90.114205","29.935845"],["-90.114390","29.935890"],["-90.114372","29.935944"],["-90.114390","29.935890"],["-90.114510","29.935920"],["-90.114635","29.935950"],["-90.114760","29.935980"],["-90.114885","29.936010"],["-90.115010","29.936040"],["-90.115100","29.936070"],["-90.115190","29.936080"],["-90.115290","29.936110"],["-90.115380","29.936140"],["-90.115460","29.936160"],["-90.115530","29.936190"],["-90.115715","29.936260"],["-90.115900","29.936330"],["-90.115862","29.936396"],["-90.115900","29.936330"],["-90.116050","29.936390"],["-90.116190","29.936445"],["-90.116330","29.936500"],["-90.116515","29.936575"],["-90.116700","29.936650"],["-90.116880","29.936723"],["-90.117060","29.936795"],["-90.117240","29.936868"],["-90.117420","29.936940"],["-90.117530","29.936984"],["-90.117640","29.937028"],["-90.117750","29.937071"],["-90.117860","29.937115"],["-90.117970","29.937159"],["-90.118080","29.937203"],["-90.118190","29.937246"],["-90.118300","29.937290"],["-90.118261","29.937374"],["-90.118300","29.937300"],["-90.118410","29.937340"],["-90.118565","29.937405"],["-90.118720","29.937470"],["-90.118885","29.937535"],["-90.119050","29.937600"],["-90.119150","29.937660"],["-90.119250","29.937720"],["-90.119410","29.937810"],["-90.119570","29.937900"],["-90.119640","29.937930"],["-90.119800","29.938030"],["-90.119810","29.938030"],["-90.119910","29.938100"],["-90.120050","29.938190"],["-90.120170","29.938250"],["-90.120280","29.938320"],["-90.120390","29.938385"],["-90.120500","29.938450"],["-90.120436","29.938534"],["-90.120500","29.938450"],["-90.120590","29.938500"],["-90.120750","29.938580"],["-90.120900","29.938660"],["-90.121050","29.938740"],["-90.121200","29.938820"],["-90.121350","29.938900"],["-90.121480","29.938970"],["-90.121610","29.939040"],["-90.121760","29.939125"],["-90.121910","29.939210"],["-90.122025","29.939275"],["-90.122140","29.939340"],["-90.122220","29.939380"],["-90.122327","29.939440"],["-90.122435","29.939500"],["-90.122542","29.939560"],["-90.122650","29.939620"],["-90.122757","29.939680"],["-90.122865","29.939740"],["-90.122972","29.939800"],["-90.123080","29.939860"],["-90.123177","29.939920"],["-90.123275","29.939980"],["-90.123372","29.940040"],["-90.123470","29.940100"],["-90.123640","29.940200"],["-90.123820","29.940310"],["-90.123890","29.940350"],["-90.124020","29.940425"],["-90.124150","29.940500"],["-90.124089","29.940570"],["-90.124150","29.940500"],["-90.124210","29.940530"],["-90.124290","29.940580"],["-90.124400","29.940440"],["-90.124510","29.940300"],["-90.124590","29.940195"],["-90.124670","29.940090"],["-90.124745","29.940000"],["-90.124820","29.939910"],["-90.124900","29.939800"],["-90.125020","29.939660"],["-90.125120","29.939530"],["-90.125180","29.939450"],["-90.125210","29.939420"],["-90.125270","29.939350"],["-90.125380","29.939210"],["-90.125410","29.939160"],["-90.125450","29.939130"],["-90.125470","29.939100"],["-90.125550","29.939020"],["-90.125620","29.938925"],["-90.125690","29.938830"],["-90.125760","29.938735"],["-90.125830","29.938640"],["-90.125900","29.938553"],["-90.125970","29.938465"],["-90.126040","29.938378"],["-90.126110","29.938290"],["-90.126199","29.938176"],["-90.126288","29.938063"],["-90.126376","29.937949"],["-90.126465","29.937835"],["-90.126554","29.937721"],["-90.126643","29.937608"],["-90.126731","29.937494"],["-90.126820","29.937380"],["-90.126860","29.937340"],["-90.126900","29.937290"],["-90.126930","29.937240"],["-90.127050","29.937080"],["-90.127170","29.936920"],["-90.127164","29.936922"],["-90.127170","29.936920"],["-90.127190","29.936890"],["-90.127230","29.936850"],["-90.127298","29.936763"],["-90.127365","29.936675"],["-90.127433","29.936588"],["-90.127500","29.936500"],["-90.127625","29.936345"],["-90.127750","29.936190"],["-90.127875","29.936035"],["-90.128000","29.935880"],["-90.128068","29.935790"],["-90.128135","29.935700"],["-90.128203","29.935610"],["-90.128270","29.935520"],["-90.128343","29.935433"],["-90.128415","29.935345"],["-90.128488","29.935258"],["-90.128592","29.935190"],["-90.128570","29.935180"],["-90.128620","29.935120"],["-90.128740","29.934965"],["-90.128860","29.934810"],["-90.128980","29.934655"],["-90.129100","29.934500"],["-90.129165","29.934415"],["-90.129230","29.934330"],["-90.129300","29.934243"],["-90.129370","29.934155"],["-90.129440","29.934068"],["-90.129510","29.933980"],["-90.129578","29.933890"],["-90.129645","29.933800"],["-90.129713","29.933710"],["-90.129780","29.933620"],["-90.129812","29.933640"],["-90.129780","29.933620"],["-90.129830","29.933570"],["-90.129950","29.933420"],["-90.130060","29.933270"],["-90.130125","29.933190"],["-90.130190","29.933110"],["-90.130310","29.932955"],["-90.130430","29.932800"],["-90.130540","29.932660"],["-90.130650","29.932520"],["-90.130755","29.932375"],["-90.130860","29.932230"],["-90.130980","29.932080"],["-90.131023","29.932108"],["-90.130980","29.932080"],["-90.131030","29.932020"],["-90.131100","29.931933"],["-90.131170","29.931845"],["-90.131240","29.931758"],["-90.131310","29.931670"],["-90.131405","29.931545"],["-90.131500","29.931420"],["-90.131575","29.931330"],["-90.131650","29.931240"],["-90.131740","29.931130"],["-90.131820","29.931020"],["-90.131930","29.930880"],["-90.132040","29.930740"],["-90.132125","29.930645"],["-90.132210","29.930550"],["-90.132227","29.930559"],["-90.132210","29.930550"],["-90.132260","29.930480"],["-90.132355","29.930360"],["-90.132450","29.930240"],["-90.132545","29.930120"],["-90.132640","29.930000"],["-90.132597","29.929972"],["-90.132714","29.929824"],["-90.132820","29.929690"],["-90.132953","29.929552"],["-90.133085","29.929413"],["-90.133218","29.929275"],["-90.133350","29.929136"],["-90.133478","29.929003"],["-90.133440","29.928980"],["-90.133480","29.928920"],["-90.133610","29.928790"],["-90.133600","29.928660"],["-90.133600","29.928610"],["-90.133600","29.928570"],["-90.133600","29.928470"],["-90.133600","29.928370"],["-90.133600","29.928270"],["-90.133600","29.928170"],["-90.133595","29.928010"],["-90.133590","29.927850"],["-90.133580","29.927760"],["-90.133460","29.927675"],["-90.133340","29.927590"],["-90.133200","29.927505"],["-90.133060","29.927420"],["-90.132942","29.927350"],["-90.132825","29.927280"],["-90.132707","29.927210"],["-90.132590","29.927140"],["-90.132485","29.927080"],["-90.132380","29.927020"],["-90.132265","29.926950"],["-90.132150","29.926880"],["-90.132070","29.926830"],["-90.132020","29.926770"],["-90.131930","29.926720"],["-90.131798","29.926631"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.071868","29.965409"],["-90.066285","29.971593"],["-90.043983","30.023205"],["-90.048239","29.975063"],["-90.048116","29.977164"],["-90.048284","29.979182"],["-90.048363","29.980227"],["-90.048510","29.982209"],["-90.048589","29.983209"],["-90.049181","29.990316"],["-90.049482","29.993686"],["-90.049528","29.994478"],["-90.049652","29.996055"],["-90.049786","29.997649"],["-90.049909","29.999235"],["-90.050012","30.000820"],["-90.050108","30.002893"],["-90.050288","30.005163"],["-90.050443","30.006919"],["-90.050568","30.008676"],["-90.050724","30.010478"],["-90.050870","30.012216"],["-90.051068","30.014081"],["-90.051246","30.016117"],["-90.051405","30.018369"],["-90.051563","30.020386"],["-90.051668","30.022378"],["-90.051921","30.024656"],["-90.052044","30.026206"],["-90.045311","30.028300"],["-90.122129","29.939249"],["-90.120747","29.938488"],["-90.118520","29.937309"],["-90.115994","29.936331"],["-90.114643","29.935860"],["-90.111427","29.935211"],["-90.109350","29.934950"],["-90.107412","29.934897"],["-90.105446","29.935018"],["-90.100687","29.935381"],["-90.098013","29.935646"],["-90.095553","29.936253"],["-90.094281","29.935675"],["-90.093030","29.936249"],["-90.090962","29.937408"],["-90.089265","29.938321"],["-90.087537","29.939091"],["-90.084894","29.938899"],["-90.103141","29.935153"],["-90.076903","29.945829"],["-90.074706","29.954333"],["-90.126885","29.937095"],["-90.128542","29.934967"],["-90.129778","29.933426"],["-90.130985","29.931911"],["-90.132204","29.930390"],["-90.133327","29.928869"],["-90.080326","29.943693"],["-90.079697","29.944541"],["-90.076215","29.948286"],["-90.044463","30.027453"],["-90.075579","29.950548"],["-90.070397","29.959116"],["-90.070267","29.961523"],["-90.071273","29.963222"],["-90.061979","29.972954"],["-90.059688","29.973100"],["-90.057448","29.973191"],["-90.052623","29.972844"],["-90.083040","29.940129"],["-90.081189","29.942490"],["-90.131798","29.926631"]]},{"type":"LineString","coordinates":[["-90.131798","29.926631"],["-90.131790","29.926650"],["-90.131740","29.926620"],["-90.131642","29.926573"],["-90.131545","29.926525"],["-90.131447","29.926478"],["-90.131350","29.926430"],["-90.131240","29.926370"],["-90.131142","29.926321"],["-90.131045","29.926271"],["-90.130947","29.926222"],["-90.130850","29.926173"],["-90.130752","29.926123"],["-90.130655","29.926074"],["-90.130557","29.926024"],["-90.130460","29.925975"],["-90.130362","29.925926"],["-90.130265","29.925876"],["-90.130167","29.925827"],["-90.130070","29.925778"],["-90.129972","29.925728"],["-90.129875","29.925679"],["-90.129777","29.925629"],["-90.129680","29.925580"],["-90.129550","29.925515"],["-90.129420","29.925450"],["-90.129305","29.925393"],["-90.129190","29.925335"],["-90.129075","29.925278"],["-90.128960","29.925220"],["-90.128850","29.925165"],["-90.128740","29.925110"],["-90.128630","29.925055"],["-90.128520","29.925000"],["-90.128410","29.924945"],["-90.128300","29.924890"],["-90.128190","29.924835"],["-90.128080","29.924780"],["-90.127970","29.924725"],["-90.127860","29.924670"],["-90.127750","29.924615"],["-90.127640","29.924560"],["-90.127530","29.924505"],["-90.127420","29.924450"],["-90.127310","29.924395"],["-90.127200","29.924340"],["-90.127075","29.924280"],["-90.126950","29.924220"],["-90.126790","29.924130"],["-90.126770","29.924130"],["-90.126750","29.924120"],["-90.126730","29.924120"],["-90.126680","29.924120"],["-90.126555","29.924065"],["-90.126430","29.924010"],["-90.126330","29.923970"],["-90.126145","29.923895"],["-90.125960","29.923820"],["-90.125775","29.923745"],["-90.125590","29.923670"],["-90.125470","29.923620"],["-90.125339","29.923566"],["-90.125207","29.923513"],["-90.125076","29.923459"],["-90.124945","29.923405"],["-90.124814","29.923351"],["-90.124682","29.923298"],["-90.124551","29.923244"],["-90.124420","29.923190"],["-90.124369","29.923298"],["-90.124318","29.923405"],["-90.124266","29.923513"],["-90.124215","29.923620"],["-90.124164","29.923728"],["-90.124113","29.923835"],["-90.124061","29.923943"],["-90.124010","29.924050"],["-90.124139","29.924104"],["-90.124267","29.924158"],["-90.124396","29.924211"],["-90.124525","29.924265"],["-90.124654","29.924319"],["-90.124782","29.924373"],["-90.124911","29.924426"],["-90.125040","29.924480"],["-90.125115","29.924325"],["-90.125190","29.924170"],["-90.125260","29.924030"],["-90.125313","29.923928"],["-90.125365","29.923825"],["-90.125418","29.923723"],["-90.125470","29.923620"],["-90.125590","29.923670"],["-90.125775","29.923745"],["-90.125960","29.923820"],["-90.126145","29.923895"],["-90.126330","29.923970"],["-90.126430","29.924010"],["-90.126555","29.924065"],["-90.126680","29.924120"],["-90.126710","29.924160"],["-90.126720","29.924180"],["-90.126730","29.924180"],["-90.126880","29.924260"],["-90.127030","29.924335"],["-90.127180","29.924410"],["-90.127289","29.924465"],["-90.127397","29.924520"],["-90.127506","29.924575"],["-90.127615","29.924630"],["-90.127724","29.924685"],["-90.127832","29.924740"],["-90.127941","29.924795"],["-90.128050","29.924850"],["-90.128159","29.924905"],["-90.128267","29.924960"],["-90.128376","29.925015"],["-90.128485","29.925070"],["-90.128594","29.925125"],["-90.128702","29.925180"],["-90.128811","29.925235"],["-90.128920","29.925290"],["-90.129032","29.925345"],["-90.129145","29.925400"],["-90.129257","29.925455"],["-90.129370","29.925510"],["-90.129525","29.925590"],["-90.129680","29.925670"],["-90.129809","29.925734"],["-90.129937","29.925798"],["-90.130066","29.925861"],["-90.130195","29.925925"],["-90.130324","29.925989"],["-90.130452","29.926053"],["-90.130581","29.926116"],["-90.130710","29.926180"],["-90.130832","29.926243"],["-90.130955","29.926305"],["-90.131077","29.926368"],["-90.131200","29.926430"],["-90.131310","29.926490"],["-90.131465","29.926568"],["-90.131620","29.926645"],["-90.131775","29.926723"],["-90.131930","29.926800"],["-90.131990","29.926810"],["-90.132070","29.926830"],["-90.132150","29.926880"],["-90.132265","29.926950"],["-90.132380","29.927020"],["-90.132485","29.927080"],["-90.132590","29.927140"],["-90.132707","29.927210"],["-90.132825","29.927280"],["-90.132942","29.927350"],["-90.133060","29.927420"],["-90.133200","29.927505"],["-90.133340","29.927590"],["-90.133460","29.927675"],["-90.133580","29.927760"],["-90.133590","29.927850"],["-90.133595","29.928010"],["-90.133600","29.928170"],["-90.133600","29.928270"],["-90.133600","29.928370"],["-90.133600","29.928470"],["-90.133600","29.928570"],["-90.133600","29.928610"],["-90.133600","29.928660"],["-90.133520","29.928755"],["-90.133440","29.928850"],["-90.133327","29.928869"],["-90.133229","29.929027"],["-90.133131","29.929186"],["-90.133032","29.929344"],["-90.132934","29.929503"],["-90.132836","29.929661"],["-90.132722","29.929811"],["-90.132605","29.929960"],["-90.132488","29.930109"],["-90.132351","29.930244"],["-90.132215","29.930379"],["-90.132204","29.930390"],["-90.132106","29.930548"],["-90.132008","29.930707"],["-90.131976","29.930758"],["-90.131860","29.930907"],["-90.131744","29.931056"],["-90.131628","29.931205"],["-90.131499","29.931346"],["-90.131371","29.931488"],["-90.131242","29.931629"],["-90.131113","29.931770"],["-90.130985","29.931911"],["-90.130894","29.932073"],["-90.130804","29.932235"],["-90.130775","29.932286"],["-90.130657","29.932434"],["-90.130539","29.932582"],["-90.130422","29.932730"],["-90.130390","29.932770"],["-90.130260","29.932910"],["-90.130129","29.933050"],["-90.129999","29.933190"],["-90.129868","29.933329"],["-90.129778","29.933426"],["-90.129706","29.933595"],["-90.129665","29.933690"],["-90.129549","29.933839"],["-90.129434","29.933989"],["-90.129319","29.934138"],["-90.129204","29.934288"],["-90.129086","29.934436"],["-90.128969","29.934585"],["-90.128851","29.934733"],["-90.128695","29.934851"],["-90.128542","29.934967"],["-90.128482","29.935139"],["-90.128443","29.935249"],["-90.128326","29.935397"],["-90.128209","29.935546"],["-90.128092","29.935694"],["-90.127975","29.935843"],["-90.127850","29.935987"],["-90.127725","29.936130"],["-90.127600","29.936274"],["-90.127475","29.936418"],["-90.127350","29.936561"],["-90.127225","29.936705"],["-90.127100","29.936848"],["-90.126975","29.936992"],["-90.126885","29.937095"],["-90.126799","29.937259"],["-90.126713","29.937423"],["-90.126680","29.937486"],["-90.126561","29.937634"],["-90.126442","29.937781"],["-90.126323","29.937928"],["-90.126204","29.938076"],["-90.126085","29.938223"],["-90.126039","29.938280"],["-90.125921","29.938428"],["-90.125802","29.938576"],["-90.125687","29.938725"],["-90.125571","29.938874"],["-90.125489","29.938979"],["-90.125371","29.939127"],["-90.125253","29.939275"],["-90.125135","29.939423"],["-90.125017","29.939571"],["-90.124899","29.939719"],["-90.124850","29.939780"],["-90.124735","29.939930"],["-90.124619","29.940079"],["-90.124504","29.940228"],["-90.124388","29.940378"],["-90.124273","29.940527"],["-90.124240","29.940570"],["-90.124070","29.940466"],["-90.123901","29.940363"],["-90.123731","29.940259"],["-90.123561","29.940156"],["-90.123470","29.940100"],["-90.123298","29.939999"],["-90.123127","29.939898"],["-90.123080","29.939870"],["-90.122914","29.939762"],["-90.122748","29.939654"],["-90.122583","29.939545"],["-90.122417","29.939437"],["-90.122251","29.939329"],["-90.122129","29.939249"],["-90.121936","29.939182"],["-90.121743","29.939116"],["-90.121694","29.939099"],["-90.121526","29.938994"],["-90.121358","29.938888"],["-90.121299","29.938860"],["-90.121135","29.938750"],["-90.120971","29.938639"],["-90.120807","29.938529"],["-90.120747","29.938488"],["-90.120553","29.938424"],["-90.120426","29.938382"],["-90.120279","29.938300"],["-90.120150","29.938220"],["-90.119990","29.938130"],["-90.119815","29.938034"],["-90.119642","29.937934"],["-90.119469","29.937835"],["-90.119296","29.937735"],["-90.119121","29.937638"],["-90.119070","29.937610"],["-90.118895","29.937514"],["-90.118719","29.937418"],["-90.118544","29.937322"],["-90.118520","29.937309"],["-90.118316","29.937277"],["-90.118209","29.937261"],["-90.118018","29.937191"],["-90.117826","29.937122"],["-90.117635","29.937052"],["-90.117490","29.937000"],["-90.117306","29.936918"],["-90.117121","29.936835"],["-90.116937","29.936753"],["-90.116752","29.936670"],["-90.116568","29.936588"],["-90.116383","29.936505"],["-90.116199","29.936423"],["-90.116014","29.936340"],["-90.115994","29.936331"],["-90.115800","29.936268"],["-90.115605","29.936204"],["-90.115409","29.936147"],["-90.115212","29.936089"],["-90.115080","29.936050"],["-90.114972","29.936022"],["-90.114865","29.935993"],["-90.114757","29.935965"],["-90.114650","29.935936"],["-90.114643","29.935860"],["-90.114542","29.935918"],["-90.114383","29.935881"],["-90.114223","29.935845"],["-90.114063","29.935808"],["-90.113903","29.935772"],["-90.113743","29.935735"],["-90.113584","29.935699"],["-90.113424","29.935663"],["-90.113264","29.935626"],["-90.113133","29.935598"],["-90.113003","29.935570"],["-90.112872","29.935542"],["-90.112741","29.935513"],["-90.112585","29.935481"],["-90.112428","29.935449"],["-90.112272","29.935417"],["-90.112116","29.935385"],["-90.111959","29.935352"],["-90.111803","29.935320"],["-90.111647","29.935288"],["-90.111490","29.935256"],["-90.111427","29.935211"],["-90.111273","29.935223"],["-90.111156","29.935200"],["-90.111038","29.935177"],["-90.110921","29.935154"],["-90.110803","29.935130"],["-90.110686","29.935107"],["-90.110569","29.935084"],["-90.110451","29.935061"],["-90.110334","29.935037"],["-90.110116","29.935030"],["-90.109898","29.935023"],["-90.109680","29.935017"],["-90.109462","29.935010"],["-90.109350","29.934950"],["-90.109340","29.934950"],["-90.109340","29.935000"],["-90.109190","29.934990"],["-90.109015","29.934985"],["-90.108840","29.934980"],["-90.108690","29.934975"],["-90.108540","29.934970"],["-90.108390","29.934960"],["-90.108250","29.934960"],["-90.108030","29.934950"],["-90.107810","29.934940"],["-90.107620","29.934935"],["-90.107430","29.934930"],["-90.107412","29.934897"],["-90.107430","29.934930"],["-90.107290","29.934930"],["-90.107083","29.934945"],["-90.106875","29.934960"],["-90.106668","29.934975"],["-90.106460","29.934990"],["-90.106328","29.935000"],["-90.106195","29.935010"],["-90.106063","29.935020"],["-90.105930","29.935030"],["-90.105725","29.935045"],["-90.105520","29.935060"],["-90.105446","29.935018"],["-90.105450","29.935070"],["-90.105330","29.935080"],["-90.105145","29.935095"],["-90.104960","29.935110"],["-90.104775","29.935123"],["-90.104590","29.935135"],["-90.104467","29.935145"],["-90.104343","29.935155"],["-90.104220","29.935166"],["-90.104096","29.935176"],["-90.103973","29.935186"],["-90.103850","29.935196"],["-90.103726","29.935206"],["-90.103603","29.935217"],["-90.103487","29.935201"],["-90.103372","29.935185"],["-90.103256","29.935169"],["-90.103141","29.935153"],["-90.103019","29.935269"],["-90.102868","29.935278"],["-90.102716","29.935287"],["-90.102565","29.935295"],["-90.102413","29.935304"],["-90.102270","29.935315"],["-90.102128","29.935326"],["-90.101985","29.935338"],["-90.101843","29.935349"],["-90.101700","29.935360"],["-90.101558","29.935373"],["-90.101415","29.935385"],["-90.101273","29.935398"],["-90.101130","29.935410"],["-90.100910","29.935425"],["-90.100798","29.935403"],["-90.100687","29.935381"],["-90.100486","29.935425"],["-90.100384","29.935448"],["-90.100177","29.935466"],["-90.099971","29.935484"],["-90.099764","29.935502"],["-90.099558","29.935521"],["-90.099450","29.935530"],["-90.099243","29.935543"],["-90.099036","29.935556"],["-90.098829","29.935568"],["-90.098640","29.935580"],["-90.098434","29.935602"],["-90.098228","29.935623"],["-90.098013","29.935646"],["-90.097818","29.935707"],["-90.097678","29.935751"],["-90.097476","29.935793"],["-90.097274","29.935834"],["-90.097150","29.935860"],["-90.096947","29.935899"],["-90.096745","29.935938"],["-90.096542","29.935978"],["-90.096410","29.936000"],["-90.096214","29.936058"],["-90.096017","29.936116"],["-90.095821","29.936174"],["-90.095624","29.936232"],["-90.095553","29.936253"],["-90.095580","29.936310"],["-90.095520","29.936330"],["-90.095430","29.936370"],["-90.095360","29.936220"],["-90.095280","29.936050"],["-90.095215","29.935915"],["-90.095150","29.935780"],["-90.095100","29.935680"],["-90.095050","29.935580"],["-90.095010","29.935470"],["-90.094870","29.935520"],["-90.094715","29.935575"],["-90.094560","29.935630"],["-90.094435","29.935680"],["-90.094310","29.935730"],["-90.094281","29.935675"],["-90.094310","29.935730"],["-90.094270","29.935740"],["-90.094150","29.935785"],["-90.094030","29.935830"],["-90.093910","29.935875"],["-90.093790","29.935920"],["-90.093670","29.935980"],["-90.093530","29.936045"],["-90.093390","29.936110"],["-90.093330","29.936140"],["-90.093210","29.936210"],["-90.093090","29.936280"],["-90.093060","29.936290"],["-90.093030","29.936249"],["-90.093060","29.936290"],["-90.093010","29.936310"],["-90.092913","29.936368"],["-90.092815","29.936425"],["-90.092718","29.936483"],["-90.092620","29.936540"],["-90.092525","29.936593"],["-90.092430","29.936645"],["-90.092335","29.936698"],["-90.092240","29.936750"],["-90.092140","29.936808"],["-90.092040","29.936865"],["-90.091940","29.936923"],["-90.091840","29.936980"],["-90.091725","29.937045"],["-90.091610","29.937110"],["-90.091495","29.937175"],["-90.091380","29.937240"],["-90.091250","29.937310"],["-90.091120","29.937380"],["-90.091010","29.937440"],["-90.090962","29.937408"],["-90.090812","29.937533"],["-90.090675","29.937647"],["-90.090501","29.937745"],["-90.090327","29.937843"],["-90.090153","29.937941"],["-90.090030","29.938010"],["-90.089855","29.938107"],["-90.089799","29.938139"],["-90.089606","29.938205"],["-90.089413","29.938271"],["-90.089265","29.938321"],["-90.089138","29.938463"],["-90.089054","29.938557"],["-90.088879","29.938653"],["-90.088704","29.938750"],["-90.088650","29.938780"],["-90.088476","29.938878"],["-90.088400","29.938920"],["-90.088223","29.939014"],["-90.088139","29.939059"],["-90.087941","29.939114"],["-90.087734","29.939102"],["-90.087537","29.939091"],["-90.087330","29.939105"],["-90.087123","29.939118"],["-90.087051","29.939123"],["-90.086930","29.939100"],["-90.086738","29.939032"],["-90.086620","29.938990"],["-90.086435","29.938909"],["-90.086390","29.938890"],["-90.086300","29.938860"],["-90.086190","29.938840"],["-90.085983","29.938822"],["-90.085840","29.938810"],["-90.085632","29.938810"],["-90.085428","29.938841"],["-90.085370","29.938850"],["-90.085164","29.938871"],["-90.084958","29.938892"],["-90.084894","29.938899"],["-90.084749","29.939028"],["-90.084668","29.939100"],["-90.084549","29.939169"],["-90.084388","29.939283"],["-90.084350","29.939310"],["-90.084190","29.939424"],["-90.084030","29.939539"],["-90.083869","29.939653"],["-90.083703","29.939761"],["-90.083537","29.939868"],["-90.083370","29.939976"],["-90.083187","29.940061"],["-90.083040","29.940129"],["-90.082914","29.940272"],["-90.082787","29.940414"],["-90.082755","29.940451"],["-90.082709","29.940499"],["-90.082601","29.940653"],["-90.082569","29.940699"],["-90.082480","29.940862"],["-90.082410","29.940990"],["-90.082312","29.941148"],["-90.082230","29.941280"],["-90.082112","29.941428"],["-90.081995","29.941576"],["-90.081929","29.941659"],["-90.081817","29.941811"],["-90.081705","29.941962"],["-90.081593","29.942114"],["-90.081481","29.942265"],["-90.081449","29.942309"],["-90.081287","29.942422"],["-90.081189","29.942490"],["-90.081101","29.942653"],["-90.081014","29.942816"],["-90.080926","29.942979"],["-90.080850","29.943120"],["-90.080721","29.943261"],["-90.080592","29.943402"],["-90.080463","29.943543"],["-90.080334","29.943684"],["-90.080326","29.943693"],["-90.080253","29.943862"],["-90.080214","29.943953"],["-90.080088","29.944096"],["-90.079963","29.944239"],["-90.079837","29.944382"],["-90.079711","29.944525"],["-90.079697","29.944541"],["-90.079628","29.944711"],["-90.079589","29.944806"],["-90.079470","29.944910"],["-90.079276","29.944975"],["-90.079090","29.944970"],["-90.078918","29.944869"],["-90.078717","29.944823"],["-90.078570","29.944790"],["-90.078410","29.944770"],["-90.078207","29.944807"],["-90.078020","29.944870"],["-90.077960","29.944890"],["-90.077782","29.944983"],["-90.077730","29.945010"],["-90.077600","29.945100"],["-90.077476","29.945244"],["-90.077420","29.945310"],["-90.077307","29.945461"],["-90.077270","29.945510"],["-90.077155","29.945660"],["-90.076991","29.945770"],["-90.076903","29.945829"],["-90.076889","29.946008"],["-90.076880","29.946130"],["-90.076833","29.946305"],["-90.076786","29.946480"],["-90.076770","29.946539"],["-90.076731","29.946716"],["-90.076692","29.946892"],["-90.076660","29.947040"],["-90.076636","29.947219"],["-90.076629","29.947269"],["-90.076577","29.947443"],["-90.076539","29.947570"],["-90.076489","29.947745"],["-90.076434","29.947918"],["-90.076390","29.948060"],["-90.076274","29.948209"],["-90.076215","29.948286"],["-90.076219","29.948466"],["-90.076223","29.948635"],["-90.076176","29.948810"],["-90.076140","29.948949"],["-90.076100","29.949110"],["-90.076070","29.949209"],["-90.076024","29.949384"],["-90.075999","29.949479"],["-90.075949","29.949640"],["-90.075900","29.949815"],["-90.075850","29.949989"],["-90.075799","29.950164"],["-90.075707","29.950325"],["-90.075615","29.950486"],["-90.075579","29.950548"],["-90.075586","29.950728"],["-90.075590","29.950840"],["-90.075570","29.951019"],["-90.075550","29.951190"],["-90.075558","29.951370"],["-90.075560","29.951420"],["-90.075581","29.951599"],["-90.075589","29.951669"],["-90.075579","29.951780"],["-90.075580","29.951880"],["-90.075554","29.952058"],["-90.075522","29.952236"],["-90.075499","29.952360"],["-90.075443","29.952533"],["-90.075390","29.952700"],["-90.075350","29.952829"],["-90.075319","29.952939"],["-90.075266","29.953113"],["-90.075219","29.953269"],["-90.075200","29.953340"],["-90.075150","29.953490"],["-90.075099","29.953664"],["-90.075049","29.953839"],["-90.074998","29.954013"],["-90.074949","29.954150"],["-90.074792","29.954268"],["-90.074706","29.954333"],["-90.074780","29.954380"],["-90.074760","29.954410"],["-90.074700","29.954470"],["-90.074600","29.954570"],["-90.074560","29.954620"],["-90.074500","29.954680"],["-90.074425","29.954755"],["-90.074350","29.954830"],["-90.074280","29.954910"],["-90.074200","29.955000"],["-90.074120","29.955090"],["-90.073990","29.955230"],["-90.073858","29.955380"],["-90.073725","29.955530"],["-90.073593","29.955680"],["-90.073460","29.955830"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071990","29.957490"],["-90.071880","29.957610"],["-90.071797","29.957551"],["-90.071880","29.957610"],["-90.071780","29.957720"],["-90.071655","29.957860"],["-90.071530","29.958000"],["-90.071405","29.958140"],["-90.071280","29.958280"],["-90.071170","29.958405"],["-90.071060","29.958530"],["-90.070968","29.958635"],["-90.070875","29.958740"],["-90.070783","29.958845"],["-90.070690","29.958950"],["-90.070590","29.959065"],["-90.070490","29.959180"],["-90.070397","29.959116"],["-90.070490","29.959180"],["-90.070400","29.959270"],["-90.070315","29.959365"],["-90.070230","29.959460"],["-90.070120","29.959600"],["-90.070040","29.959690"],["-90.069970","29.959790"],["-90.069950","29.959820"],["-90.069910","29.959890"],["-90.069890","29.959940"],["-90.069880","29.959960"],["-90.069870","29.959990"],["-90.069860","29.960020"],["-90.069850","29.960090"],["-90.069830","29.960180"],["-90.069820","29.960240"],["-90.069790","29.960310"],["-90.069790","29.960410"],["-90.069800","29.960480"],["-90.069810","29.960540"],["-90.069820","29.960620"],["-90.069830","29.960670"],["-90.069850","29.960730"],["-90.069860","29.960780"],["-90.069880","29.960830"],["-90.069930","29.960940"],["-90.069980","29.961030"],["-90.070030","29.961100"],["-90.070070","29.961160"],["-90.070120","29.961210"],["-90.070230","29.961320"],["-90.070280","29.961370"],["-90.070267","29.961523"],["-90.070458","29.961594"],["-90.070560","29.961632"],["-90.070599","29.961669"],["-90.070712","29.961820"],["-90.070788","29.961987"],["-90.070863","29.962155"],["-90.070913","29.962330"],["-90.070964","29.962504"],["-90.070989","29.962590"],["-90.071053","29.962761"],["-90.071079","29.962829"],["-90.071110","29.962889"],["-90.071130","29.962930"],["-90.071211","29.963096"],["-90.071273","29.963222"],["-90.071330","29.963260"],["-90.071390","29.963190"],["-90.071535","29.963290"],["-90.071680","29.963390"],["-90.071800","29.963473"],["-90.071920","29.963555"],["-90.072040","29.963638"],["-90.072160","29.963720"],["-90.072256","29.963785"],["-90.072352","29.963850"],["-90.072449","29.963915"],["-90.072545","29.963980"],["-90.072641","29.964045"],["-90.072737","29.964110"],["-90.072834","29.964175"],["-90.072930","29.964240"],["-90.072840","29.964350"],["-90.072750","29.964460"],["-90.072660","29.964570"],["-90.072570","29.964680"],["-90.072440","29.964820"],["-90.072310","29.964960"],["-90.072200","29.965080"],["-90.072090","29.965200"],["-90.071990","29.965310"],["-90.071890","29.965420"],["-90.071868","29.965409"],["-90.071890","29.965420"],["-90.071840","29.965480"],["-90.071720","29.965625"],["-90.071600","29.965770"],["-90.071580","29.965780"],["-90.071560","29.965800"],["-90.071530","29.965830"],["-90.071450","29.965910"],["-90.071360","29.966000"],["-90.071340","29.966010"],["-90.071260","29.966100"],["-90.071180","29.966190"],["-90.071100","29.966320"],["-90.071000","29.966430"],["-90.070900","29.966540"],["-90.070820","29.966630"],["-90.070740","29.966720"],["-90.070653","29.966815"],["-90.070565","29.966910"],["-90.070478","29.967005"],["-90.070390","29.967100"],["-90.070320","29.967190"],["-90.070220","29.967305"],["-90.070120","29.967420"],["-90.070030","29.967515"],["-90.069940","29.967610"],["-90.069840","29.967730"],["-90.069770","29.967815"],["-90.069700","29.967900"],["-90.069690","29.967900"],["-90.069620","29.967975"],["-90.069550","29.968050"],["-90.069510","29.968100"],["-90.069490","29.968120"],["-90.069450","29.968160"],["-90.069410","29.968190"],["-90.069400","29.968200"],["-90.069390","29.968200"],["-90.069360","29.968210"],["-90.069275","29.968310"],["-90.069190","29.968410"],["-90.069105","29.968510"],["-90.069020","29.968610"],["-90.068940","29.968705"],["-90.068860","29.968800"],["-90.068770","29.968903"],["-90.068680","29.969005"],["-90.068590","29.969108"],["-90.068500","29.969210"],["-90.068390","29.969330"],["-90.068315","29.969415"],["-90.068240","29.969500"],["-90.068170","29.969580"],["-90.068100","29.969660"],["-90.068080","29.969690"],["-90.068030","29.969740"],["-90.067970","29.969810"],["-90.067950","29.969830"],["-90.067890","29.969900"],["-90.067795","29.970010"],["-90.067700","29.970120"],["-90.067618","29.970213"],["-90.067535","29.970305"],["-90.067453","29.970398"],["-90.067370","29.970490"],["-90.067273","29.970600"],["-90.067175","29.970710"],["-90.067078","29.970820"],["-90.066980","29.970930"],["-90.066901","29.971018"],["-90.066823","29.971105"],["-90.066744","29.971193"],["-90.066665","29.971280"],["-90.066586","29.971368"],["-90.066508","29.971455"],["-90.066429","29.971543"],["-90.066350","29.971630"],["-90.066285","29.971593"],["-90.066350","29.971630"],["-90.066260","29.971730"],["-90.066160","29.971835"],["-90.066060","29.971940"],["-90.065970","29.972045"],["-90.065880","29.972150"],["-90.065798","29.972243"],["-90.065715","29.972335"],["-90.065633","29.972428"],["-90.065550","29.972520"],["-90.065470","29.972620"],["-90.065410","29.972650"],["-90.065350","29.972700"],["-90.065330","29.972710"],["-90.065300","29.972730"],["-90.065260","29.972740"],["-90.065220","29.972760"],["-90.065180","29.972780"],["-90.065120","29.972790"],["-90.065050","29.972800"],["-90.064950","29.972810"],["-90.064830","29.972810"],["-90.064630","29.972820"],["-90.064415","29.972830"],["-90.064200","29.972840"],["-90.064078","29.972848"],["-90.063955","29.972855"],["-90.063833","29.972863"],["-90.063710","29.972870"],["-90.063555","29.972883"],["-90.063400","29.972895"],["-90.063245","29.972908"],["-90.063090","29.972920"],["-90.062900","29.972920"],["-90.062710","29.972920"],["-90.062585","29.972930"],["-90.062460","29.972940"],["-90.062300","29.972950"],["-90.062140","29.972955"],["-90.061980","29.972960"],["-90.061979","29.972954"],["-90.061980","29.972960"],["-90.061930","29.972970"],["-90.061801","29.972978"],["-90.061673","29.972985"],["-90.061544","29.972993"],["-90.061415","29.973000"],["-90.061286","29.973008"],["-90.061158","29.973015"],["-90.061029","29.973023"],["-90.060900","29.973030"],["-90.060790","29.973060"],["-90.060625","29.973070"],["-90.060460","29.973080"],["-90.060295","29.973090"],["-90.060130","29.973100"],["-90.059910","29.973110"],["-90.059785","29.973115"],["-90.059660","29.973120"],["-90.059688","29.973100"],["-90.059660","29.973120"],["-90.059525","29.973128"],["-90.059390","29.973135"],["-90.059255","29.973143"],["-90.059120","29.973150"],["-90.058995","29.973160"],["-90.058870","29.973170"],["-90.058700","29.973180"],["-90.058530","29.973190"],["-90.058375","29.973200"],["-90.058220","29.973210"],["-90.058050","29.973220"],["-90.057880","29.973230"],["-90.057870","29.973230"],["-90.057660","29.973240"],["-90.057450","29.973250"],["-90.057448","29.973191"],["-90.057450","29.973250"],["-90.057350","29.973260"],["-90.057180","29.973230"],["-90.057010","29.973200"],["-90.056890","29.973120"],["-90.056730","29.973030"],["-90.056590","29.972940"],["-90.056560","29.972930"],["-90.056430","29.972850"],["-90.056330","29.972790"],["-90.056310","29.972780"],["-90.056280","29.972770"],["-90.056260","29.972760"],["-90.056125","29.972715"],["-90.055990","29.972670"],["-90.055860","29.972670"],["-90.055719","29.972680"],["-90.055578","29.972690"],["-90.055436","29.972700"],["-90.055295","29.972710"],["-90.055154","29.972720"],["-90.055013","29.972730"],["-90.054871","29.972740"],["-90.054730","29.972750"],["-90.054588","29.972759"],["-90.054445","29.972768"],["-90.054303","29.972776"],["-90.054160","29.972785"],["-90.054018","29.972794"],["-90.053875","29.972803"],["-90.053733","29.972811"],["-90.053590","29.972820"],["-90.053400","29.972830"],["-90.053210","29.972840"],["-90.053020","29.972850"],["-90.052830","29.972860"],["-90.052750","29.972870"],["-90.052670","29.972870"],["-90.052590","29.972880"],["-90.052623","29.972844"],["-90.052590","29.972880"],["-90.052450","29.972880"],["-90.052340","29.972890"],["-90.052180","29.972900"],["-90.051965","29.972913"],["-90.051750","29.972925"],["-90.051535","29.972938"],["-90.051320","29.972950"],["-90.051290","29.972960"],["-90.051145","29.972968"],["-90.051000","29.972975"],["-90.050855","29.972983"],["-90.050710","29.972990"],["-90.050583","29.972998"],["-90.050455","29.973005"],["-90.050328","29.973013"],["-90.050200","29.973020"],["-90.050110","29.973030"],["-90.049925","29.973040"],["-90.049740","29.973050"],["-90.049580","29.973060"],["-90.049540","29.973060"],["-90.049480","29.973050"],["-90.049320","29.973015"],["-90.049160","29.972980"],["-90.049050","29.972955"],["-90.048940","29.972930"],["-90.048910","29.973010"],["-90.048868","29.973148"],["-90.048825","29.973285"],["-90.048783","29.973423"],["-90.048740","29.973560"],["-90.048703","29.973680"],["-90.048665","29.973800"],["-90.048628","29.973920"],["-90.048590","29.974040"],["-90.048555","29.974155"],["-90.048520","29.974270"],["-90.048485","29.974385"],["-90.048450","29.974500"],["-90.048410","29.974610"],["-90.048383","29.974708"],["-90.048355","29.974805"],["-90.048328","29.974903"],["-90.048301","29.975001"],["-90.048239","29.975063"],["-90.048211","29.975198"],["-90.048184","29.975334"],["-90.048156","29.975469"],["-90.048129","29.975605"],["-90.048091","29.975705"],["-90.048054","29.975805"],["-90.048016","29.975904"],["-90.047979","29.976004"],["-90.048008","29.976158"],["-90.048038","29.976311"],["-90.048067","29.976465"],["-90.048097","29.976618"],["-90.048110","29.976770"],["-90.048120","29.976870"],["-90.048130","29.976970"],["-90.048123","29.977067"],["-90.048116","29.977164"],["-90.048147","29.977342"],["-90.048178","29.977520"],["-90.048194","29.977699"],["-90.048206","29.977879"],["-90.048219","29.978058"],["-90.048230","29.978220"],["-90.048240","29.978400"],["-90.048250","29.978579"],["-90.048260","29.978759"],["-90.048270","29.978939"],["-90.048280","29.979118"],["-90.048284","29.979182"],["-90.048307","29.979361"],["-90.048330","29.979540"],["-90.048341","29.979719"],["-90.048349","29.979899"],["-90.048357","29.980079"],["-90.048363","29.980227"],["-90.048390","29.980260"],["-90.048402","29.980415"],["-90.048415","29.980570"],["-90.048427","29.980725"],["-90.048440","29.980880"],["-90.048447","29.980978"],["-90.048455","29.981075"],["-90.048462","29.981173"],["-90.048470","29.981270"],["-90.048490","29.981450"],["-90.048497","29.981563"],["-90.048505","29.981675"],["-90.048512","29.981788"],["-90.048520","29.981900"],["-90.048535","29.982055"],["-90.048550","29.982210"],["-90.048510","29.982209"],["-90.048550","29.982210"],["-90.048550","29.982290"],["-90.048560","29.982405"],["-90.048570","29.982520"],["-90.048580","29.982635"],["-90.048590","29.982750"],["-90.048600","29.982865"],["-90.048610","29.982980"],["-90.048620","29.983095"],["-90.048630","29.983210"],["-90.048589","29.983209"],["-90.048630","29.983210"],["-90.048630","29.983300"],["-90.048650","29.983410"],["-90.048670","29.983520"],["-90.048710","29.983690"],["-90.048730","29.983810"],["-90.048730","29.983860"],["-90.048740","29.983940"],["-90.048750","29.984090"],["-90.048760","29.984220"],["-90.048770","29.984335"],["-90.048780","29.984450"],["-90.048792","29.984598"],["-90.048805","29.984745"],["-90.048817","29.984893"],["-90.048830","29.985040"],["-90.048840","29.985165"],["-90.048850","29.985290"],["-90.048860","29.985415"],["-90.048870","29.985540"],["-90.048870","29.985580"],["-90.048880","29.985660"],["-90.048887","29.985773"],["-90.048895","29.985885"],["-90.048902","29.985998"],["-90.048910","29.986110"],["-90.048930","29.986270"],["-90.048930","29.986300"],["-90.048940","29.986410"],["-90.048940","29.986510"],["-90.048960","29.986680"],["-90.048960","29.986740"],["-90.048970","29.986780"],["-90.048970","29.986870"],["-90.048980","29.986985"],["-90.048990","29.987100"],["-90.049000","29.987220"],["-90.049010","29.987340"],["-90.049020","29.987455"],["-90.049030","29.987570"],["-90.049040","29.987685"],["-90.049050","29.987800"],["-90.049050","29.987850"],["-90.049050","29.987880"],["-90.049070","29.988060"],["-90.049070","29.988080"],["-90.049075","29.988190"],["-90.049080","29.988300"],["-90.049090","29.988400"],["-90.049090","29.988440"],["-90.049090","29.988520"],["-90.049090","29.988640"],["-90.049090","29.988790"],["-90.049080","29.988860"],["-90.049095","29.989015"],["-90.049110","29.989170"],["-90.049130","29.989350"],["-90.049140","29.989450"],["-90.049150","29.989590"],["-90.049170","29.989700"],["-90.049180","29.989760"],["-90.049190","29.989780"],["-90.049210","29.989890"],["-90.049210","29.989930"],["-90.049220","29.989990"],["-90.049230","29.990040"],["-90.049230","29.990070"],["-90.049230","29.990150"],["-90.049240","29.990170"],["-90.049250","29.990310"],["-90.049181","29.990316"],["-90.049250","29.990310"],["-90.049260","29.990430"],["-90.049270","29.990570"],["-90.049270","29.990610"],["-90.049290","29.990770"],["-90.049300","29.990930"],["-90.049300","29.990970"],["-90.049300","29.990990"],["-90.049310","29.991100"],["-90.049310","29.991110"],["-90.049310","29.991150"],["-90.049310","29.991170"],["-90.049320","29.991315"],["-90.049330","29.991460"],["-90.049340","29.991595"],["-90.049350","29.991730"],["-90.049350","29.991790"],["-90.049350","29.991810"],["-90.049360","29.991830"],["-90.049360","29.991890"],["-90.049360","29.991900"],["-90.049360","29.991960"],["-90.049360","29.991970"],["-90.049370","29.992060"],["-90.049370","29.992160"],["-90.049390","29.992290"],["-90.049390","29.992330"],["-90.049390","29.992420"],["-90.049390","29.992450"],["-90.049400","29.992520"],["-90.049410","29.992610"],["-90.049410","29.992660"],["-90.049430","29.992850"],["-90.049440","29.992970"],["-90.049445","29.993070"],["-90.049450","29.993170"],["-90.049460","29.993305"],["-90.049470","29.993440"],["-90.049485","29.993560"],["-90.049500","29.993680"],["-90.049482","29.993686"],["-90.049500","29.993680"],["-90.049500","29.993720"],["-90.049510","29.993820"],["-90.049520","29.993910"],["-90.049532","29.994053"],["-90.049545","29.994195"],["-90.049557","29.994338"],["-90.049570","29.994510"],["-90.049528","29.994478"],["-90.049570","29.994510"],["-90.049590","29.994685"],["-90.049610","29.994860"],["-90.049617","29.994973"],["-90.049625","29.995085"],["-90.049632","29.995198"],["-90.049640","29.995310"],["-90.049655","29.995495"],["-90.049670","29.995680"],["-90.049680","29.995790"],["-90.049690","29.995900"],["-90.049700","29.996030"],["-90.049700","29.996050"],["-90.049652","29.996055"],["-90.049700","29.996050"],["-90.049700","29.996110"],["-90.049705","29.996220"],["-90.049710","29.996330"],["-90.049720","29.996420"],["-90.049730","29.996540"],["-90.049740","29.996650"],["-90.049750","29.996780"],["-90.049760","29.996910"],["-90.049770","29.997010"],["-90.049780","29.997110"],["-90.049790","29.997300"],["-90.049800","29.997490"],["-90.049820","29.997650"],["-90.049786","29.997649"],["-90.049820","29.997650"],["-90.049820","29.997700"],["-90.049830","29.997808"],["-90.049840","29.997915"],["-90.049850","29.998023"],["-90.049860","29.998130"],["-90.049875","29.998315"],["-90.049890","29.998500"],["-90.049897","29.998605"],["-90.049905","29.998710"],["-90.049912","29.998815"],["-90.049920","29.998920"],["-90.049930","29.999075"],["-90.049940","29.999230"],["-90.049909","29.999235"],["-90.049940","29.999230"],["-90.049950","29.999300"],["-90.049957","29.999399"],["-90.049965","29.999498"],["-90.049972","29.999596"],["-90.049980","29.999695"],["-90.049987","29.999794"],["-90.049995","29.999893"],["-90.050002","29.999991"],["-90.050010","30.000090"],["-90.050025","30.000273"],["-90.050040","30.000455"],["-90.050055","30.000638"],["-90.050070","30.000820"],["-90.050012","30.000820"],["-90.050070","30.000820"],["-90.050080","30.000890"],["-90.050087","30.000991"],["-90.050095","30.001093"],["-90.050102","30.001194"],["-90.050110","30.001295"],["-90.050117","30.001396"],["-90.050125","30.001498"],["-90.050132","30.001599"],["-90.050140","30.001700"],["-90.050140","30.001800"],["-90.050145","30.001920"],["-90.050150","30.002040"],["-90.050150","30.002185"],["-90.050150","30.002330"],["-90.050148","30.002463"],["-90.050145","30.002595"],["-90.050143","30.002728"],["-90.050140","30.002890"],["-90.050108","30.002893"],["-90.050140","30.002890"],["-90.050150","30.002970"],["-90.050165","30.003138"],["-90.050180","30.003305"],["-90.050195","30.003473"],["-90.050210","30.003640"],["-90.050225","30.003820"],["-90.050240","30.004000"],["-90.050255","30.004180"],["-90.050270","30.004360"],["-90.050277","30.004460"],["-90.050285","30.004560"],["-90.050292","30.004660"],["-90.050300","30.004760"],["-90.050307","30.004860"],["-90.050315","30.004960"],["-90.050322","30.005060"],["-90.050330","30.005160"],["-90.050288","30.005163"],["-90.050330","30.005160"],["-90.050340","30.005210"],["-90.050350","30.005360"],["-90.050365","30.005540"],["-90.050380","30.005720"],["-90.050395","30.005900"],["-90.050410","30.006080"],["-90.050417","30.006185"],["-90.050425","30.006290"],["-90.050432","30.006395"],["-90.050440","30.006500"],["-90.050447","30.006605"],["-90.050455","30.006710"],["-90.050462","30.006815"],["-90.050470","30.006920"],["-90.050443","30.006919"],["-90.050470","30.006920"],["-90.050480","30.006970"],["-90.050487","30.007071"],["-90.050495","30.007173"],["-90.050502","30.007274"],["-90.050510","30.007375"],["-90.050517","30.007476"],["-90.050525","30.007578"],["-90.050532","30.007679"],["-90.050540","30.007780"],["-90.050560","30.007970"],["-90.050570","30.008130"],["-90.050582","30.008265"],["-90.050595","30.008400"],["-90.050607","30.008535"],["-90.050568","30.008676"],["-90.050612","30.008852"],["-90.050655","30.009028"],["-90.050668","30.009078"],["-90.050682","30.009257"],["-90.050696","30.009437"],["-90.050710","30.009616"],["-90.050724","30.009796"],["-90.050739","30.009975"],["-90.050753","30.010155"],["-90.050737","30.010334"],["-90.050724","30.010478"],["-90.050762","30.010655"],["-90.050799","30.010832"],["-90.050817","30.011011"],["-90.050830","30.011190"],["-90.050844","30.011370"],["-90.050857","30.011549"],["-90.050870","30.011729"],["-90.050883","30.011908"],["-90.050876","30.012088"],["-90.050870","30.012216"],["-90.050890","30.012210"],["-90.050900","30.012280"],["-90.050910","30.012410"],["-90.050920","30.012508"],["-90.050930","30.012605"],["-90.050940","30.012703"],["-90.050950","30.012800"],["-90.050960","30.012898"],["-90.050970","30.012995"],["-90.050980","30.013093"],["-90.050990","30.013190"],["-90.051010","30.013285"],["-90.051030","30.013380"],["-90.051045","30.013508"],["-90.051060","30.013635"],["-90.051075","30.013763"],["-90.051090","30.013890"],["-90.051090","30.014080"],["-90.051068","30.014081"],["-90.051090","30.014080"],["-90.051090","30.014140"],["-90.051090","30.014273"],["-90.051090","30.014405"],["-90.051090","30.014538"],["-90.051090","30.014670"],["-90.051105","30.014793"],["-90.051120","30.014915"],["-90.051135","30.015038"],["-90.051150","30.015160"],["-90.051180","30.015305"],["-90.051210","30.015450"],["-90.051225","30.015618"],["-90.051240","30.015785"],["-90.051255","30.015953"],["-90.051270","30.016120"],["-90.051246","30.016117"],["-90.051270","30.016120"],["-90.051270","30.016170"],["-90.051280","30.016350"],["-90.051292","30.016515"],["-90.051305","30.016680"],["-90.051317","30.016845"],["-90.051330","30.017010"],["-90.051340","30.017110"],["-90.051350","30.017210"],["-90.051350","30.017370"],["-90.051362","30.017495"],["-90.051375","30.017620"],["-90.051387","30.017745"],["-90.051400","30.017870"],["-90.051412","30.017995"],["-90.051425","30.018120"],["-90.051437","30.018245"],["-90.051450","30.018370"],["-90.051405","30.018369"],["-90.051450","30.018370"],["-90.051450","30.018420"],["-90.051460","30.018540"],["-90.051480","30.018720"],["-90.051485","30.018840"],["-90.051490","30.018960"],["-90.051505","30.019100"],["-90.051520","30.019240"],["-90.051530","30.019430"],["-90.051540","30.019549"],["-90.051550","30.019668"],["-90.051560","30.019786"],["-90.051570","30.019905"],["-90.051580","30.020024"],["-90.051590","30.020143"],["-90.051600","30.020261"],["-90.051610","30.020380"],["-90.051563","30.020386"],["-90.051610","30.020380"],["-90.051610","30.020450"],["-90.051620","30.020576"],["-90.051630","30.020703"],["-90.051640","30.020829"],["-90.051650","30.020955"],["-90.051660","30.021081"],["-90.051670","30.021208"],["-90.051680","30.021334"],["-90.051690","30.021460"],["-90.051697","30.021574"],["-90.051705","30.021688"],["-90.051712","30.021801"],["-90.051720","30.021915"],["-90.051727","30.022029"],["-90.051735","30.022143"],["-90.051742","30.022256"],["-90.051750","30.022370"],["-90.051668","30.022378"],["-90.051750","30.022370"],["-90.051760","30.022500"],["-90.051770","30.022660"],["-90.051784","30.022791"],["-90.051797","30.022923"],["-90.051811","30.023054"],["-90.051825","30.023185"],["-90.051839","30.023316"],["-90.051852","30.023448"],["-90.051866","30.023579"],["-90.051880","30.023710"],["-90.051889","30.023828"],["-90.051897","30.023945"],["-90.051906","30.024063"],["-90.051915","30.024180"],["-90.051924","30.024298"],["-90.051932","30.024415"],["-90.051941","30.024533"],["-90.051950","30.024650"],["-90.051921","30.024656"],["-90.051950","30.024650"],["-90.051950","30.024720"],["-90.051961","30.024846"],["-90.051972","30.024973"],["-90.051984","30.025099"],["-90.051995","30.025225"],["-90.052006","30.025351"],["-90.052017","30.025478"],["-90.052029","30.025604"],["-90.052040","30.025730"],["-90.052060","30.025910"],["-90.052075","30.026055"],["-90.052090","30.026200"],["-90.052044","30.026206"],["-90.052090","30.026200"],["-90.052100","30.026290"],["-90.051959","30.026314"],["-90.051818","30.026338"],["-90.051676","30.026361"],["-90.051535","30.026385"],["-90.051394","30.026409"],["-90.051253","30.026433"],["-90.051111","30.026456"],["-90.050970","30.026480"],["-90.050768","30.026516"],["-90.050565","30.026553"],["-90.050363","30.026589"],["-90.050160","30.026625"],["-90.049958","30.026661"],["-90.049755","30.026698"],["-90.049553","30.026734"],["-90.049350","30.026770"],["-90.049240","30.026790"],["-90.049230","30.026790"],["-90.049020","30.026830"],["-90.048868","30.026858"],["-90.048715","30.026885"],["-90.048563","30.026913"],["-90.048410","30.026940"],["-90.048310","30.026960"],["-90.048120","30.026990"],["-90.047950","30.027040"],["-90.047780","30.027090"],["-90.047590","30.027150"],["-90.047450","30.027190"],["-90.047245","30.027255"],["-90.047040","30.027320"],["-90.046930","30.027370"],["-90.046850","30.027400"],["-90.046770","30.027430"],["-90.046640","30.027500"],["-90.046610","30.027520"],["-90.046590","30.027530"],["-90.046560","30.027540"],["-90.046420","30.027630"],["-90.046310","30.027715"],["-90.046200","30.027800"],["-90.046065","30.027900"],["-90.045930","30.028000"],["-90.045790","30.028100"],["-90.045640","30.028220"],["-90.045570","30.028270"],["-90.045450","30.028365"],["-90.045330","30.028460"],["-90.045230","30.028350"],["-90.045311","30.028300"],["-90.045230","30.028350"],["-90.045160","30.028270"],["-90.045030","30.028140"],["-90.044910","30.028020"],["-90.044850","30.027970"],["-90.044830","30.027950"],["-90.044810","30.027930"],["-90.044760","30.027880"],["-90.044630","30.027750"],["-90.044590","30.027710"],["-90.044485","30.027615"],["-90.044380","30.027520"],["-90.044463","30.027453"],["-90.044380","30.027520"],["-90.044370","30.027500"],["-90.044350","30.027480"],["-90.044215","30.027345"],["-90.044080","30.027210"],["-90.043970","30.027095"],["-90.043860","30.026980"],["-90.043725","30.026840"],["-90.043590","30.026700"],["-90.043570","30.026660"],["-90.043530","30.026590"],["-90.043520","30.026550"],["-90.043490","30.026460"],["-90.043470","30.026400"],["-90.043450","30.026320"],["-90.043460","30.026260"],["-90.043470","30.026190"],["-90.043520","30.026040"],["-90.043530","30.026000"],["-90.043568","30.025903"],["-90.043605","30.025805"],["-90.043643","30.025708"],["-90.043680","30.025610"],["-90.043700","30.025570"],["-90.043760","30.025400"],["-90.043790","30.025330"],["-90.043860","30.025160"],["-90.043910","30.025005"],["-90.043960","30.024850"],["-90.043990","30.024690"],["-90.044000","30.024585"],["-90.044010","30.024480"],["-90.044002","30.024310"],["-90.043995","30.024140"],["-90.043987","30.023970"],["-90.043980","30.023800"],["-90.043965","30.023645"],["-90.043950","30.023490"],["-90.043935","30.023335"],["-90.043920","30.023180"],["-90.043983","30.023205"]]}]}},{"type":"Feature","properties":{"route_id":"61","agency_id":"1","route_short_name":"61","route_long_name":"Lake Forest - Village de L'Est","route_type":"3","route_color":"#1f2d84","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.021600","30.016292"],["-90.021412","30.014387"],["-90.021239","30.012418"],["-90.020993","30.010096"],["-89.977580","30.030459"],["-89.987274","30.028456"],["-89.991772","30.027276"],["-89.995302","30.025703"],["-89.997611","30.024675"],["-90.000586","30.023969"],["-89.999975","30.022349"],["-90.001716","30.021910"],["-90.004330","30.021665"],["-90.005720","30.021533"],["-90.009547","30.021174"],["-90.013043","30.020826"],["-90.014162","30.020515"],["-90.017820","30.019571"],["-90.019602","30.019149"],["-90.021552","30.018586"],["-89.947938","30.024136"],["-89.951610","30.022849"],["-89.955369","30.021808"],["-89.958964","30.020925"],["-89.961541","30.020267"],["-89.962959","30.019921"],["-89.965081","30.019390"],["-89.967797","30.018742"],["-89.980534","30.025689"],["-89.928438","30.031135"],["-89.933056","30.029377"],["-90.074818","29.954823"],["-90.033834","30.005525"],["-89.981881","30.029334"],["-89.984225","30.028955"],["-90.073489","29.964347"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-89.972160","30.032174"],["-89.968193","30.021403"],["-89.968426","30.024349"],["-89.969169","30.027743"],["-89.970655","30.029999"]]},{"type":"LineString","coordinates":[["-89.928438","30.031135"],["-89.928360","30.030960"],["-89.928485","30.030915"],["-89.928610","30.030870"],["-89.928735","30.030825"],["-89.928860","30.030780"],["-89.928985","30.030735"],["-89.929110","30.030690"],["-89.929235","30.030645"],["-89.929360","30.030600"],["-89.929470","30.030560"],["-89.929580","30.030520"],["-89.929700","30.030480"],["-89.929833","30.030433"],["-89.929965","30.030385"],["-89.930098","30.030338"],["-89.930230","30.030290"],["-89.930360","30.030245"],["-89.930490","30.030200"],["-89.930615","30.030155"],["-89.930740","30.030110"],["-89.930860","30.030070"],["-89.930920","30.030050"],["-89.931025","30.030013"],["-89.931130","30.029975"],["-89.931235","30.029938"],["-89.931340","30.029900"],["-89.931535","30.029833"],["-89.931730","30.029765"],["-89.931925","30.029698"],["-89.932120","30.029630"],["-89.932268","30.029578"],["-89.932415","30.029525"],["-89.932563","30.029473"],["-89.932710","30.029420"],["-89.932865","30.029360"],["-89.933056","30.029377"],["-89.933020","30.029300"],["-89.933125","30.029263"],["-89.933230","30.029225"],["-89.933335","30.029188"],["-89.933440","30.029150"],["-89.933490","30.029130"],["-89.933625","30.029085"],["-89.933760","30.029040"],["-89.933895","30.028995"],["-89.934030","30.028950"],["-89.934166","30.028903"],["-89.934301","30.028855"],["-89.934437","30.028808"],["-89.934573","30.028760"],["-89.934708","30.028713"],["-89.934844","30.028665"],["-89.934979","30.028618"],["-89.935115","30.028570"],["-89.935251","30.028523"],["-89.935386","30.028475"],["-89.935522","30.028428"],["-89.935658","30.028380"],["-89.935793","30.028333"],["-89.935929","30.028285"],["-89.936064","30.028238"],["-89.936200","30.028190"],["-89.936320","30.028140"],["-89.936521","30.028068"],["-89.936723","30.027995"],["-89.936924","30.027923"],["-89.937125","30.027850"],["-89.937326","30.027778"],["-89.937528","30.027705"],["-89.937729","30.027633"],["-89.937930","30.027560"],["-89.938085","30.027505"],["-89.938240","30.027450"],["-89.938390","30.027398"],["-89.938540","30.027345"],["-89.938690","30.027293"],["-89.938840","30.027240"],["-89.938974","30.027193"],["-89.939108","30.027145"],["-89.939241","30.027098"],["-89.939375","30.027050"],["-89.939509","30.027003"],["-89.939643","30.026955"],["-89.939776","30.026908"],["-89.939910","30.026860"],["-89.940071","30.026804"],["-89.940233","30.026748"],["-89.940394","30.026691"],["-89.940555","30.026635"],["-89.940716","30.026579"],["-89.940878","30.026523"],["-89.941039","30.026466"],["-89.941200","30.026410"],["-89.941398","30.026343"],["-89.941595","30.026275"],["-89.941793","30.026208"],["-89.941990","30.026140"],["-89.942113","30.026096"],["-89.942235","30.026053"],["-89.942358","30.026009"],["-89.942480","30.025965"],["-89.942603","30.025921"],["-89.942725","30.025878"],["-89.942848","30.025834"],["-89.942970","30.025790"],["-89.943143","30.025730"],["-89.943315","30.025670"],["-89.943488","30.025610"],["-89.943660","30.025550"],["-89.943850","30.025475"],["-89.944040","30.025400"],["-89.944145","30.025363"],["-89.944250","30.025325"],["-89.944355","30.025288"],["-89.944460","30.025250"],["-89.944630","30.025190"],["-89.944800","30.025130"],["-89.944970","30.025070"],["-89.945140","30.025010"],["-89.945338","30.024943"],["-89.945535","30.024875"],["-89.945733","30.024808"],["-89.945930","30.024740"],["-89.946128","30.024673"],["-89.946325","30.024605"],["-89.946523","30.024538"],["-89.946720","30.024470"],["-89.946900","30.024410"],["-89.947080","30.024350"],["-89.947090","30.024340"],["-89.947230","30.024290"],["-89.947370","30.024240"],["-89.947510","30.024190"],["-89.947650","30.024140"],["-89.947775","30.024095"],["-89.947900","30.024050"],["-89.947938","30.024136"],["-89.947900","30.024050"],["-89.948074","30.023990"],["-89.948248","30.023930"],["-89.948421","30.023870"],["-89.948595","30.023810"],["-89.948769","30.023750"],["-89.948943","30.023690"],["-89.949116","30.023630"],["-89.949290","30.023570"],["-89.949480","30.023503"],["-89.949670","30.023435"],["-89.949860","30.023368"],["-89.950050","30.023300"],["-89.950120","30.023280"],["-89.950233","30.023243"],["-89.950345","30.023205"],["-89.950458","30.023168"],["-89.950570","30.023130"],["-89.950770","30.023060"],["-89.950975","30.022990"],["-89.951180","30.022920"],["-89.951385","30.022855"],["-89.951590","30.022790"],["-89.951610","30.022849"],["-89.951590","30.022790"],["-89.951650","30.022770"],["-89.951760","30.022735"],["-89.951870","30.022700"],["-89.951980","30.022665"],["-89.952090","30.022630"],["-89.952250","30.022590"],["-89.952379","30.022553"],["-89.952508","30.022515"],["-89.952636","30.022478"],["-89.952765","30.022440"],["-89.952894","30.022403"],["-89.953023","30.022365"],["-89.953151","30.022328"],["-89.953280","30.022290"],["-89.953480","30.022230"],["-89.953615","30.022195"],["-89.953750","30.022160"],["-89.953880","30.022123"],["-89.954010","30.022085"],["-89.954140","30.022048"],["-89.954270","30.022010"],["-89.954410","30.021975"],["-89.954550","30.021940"],["-89.954690","30.021905"],["-89.954830","30.021870"],["-89.954970","30.021835"],["-89.955110","30.021800"],["-89.955225","30.021770"],["-89.955340","30.021740"],["-89.955369","30.021808"],["-89.955340","30.021740"],["-89.955470","30.021700"],["-89.955500","30.021700"],["-89.955700","30.021650"],["-89.955905","30.021600"],["-89.956110","30.021550"],["-89.956235","30.021519"],["-89.956360","30.021488"],["-89.956485","30.021456"],["-89.956610","30.021425"],["-89.956735","30.021394"],["-89.956860","30.021363"],["-89.956985","30.021331"],["-89.957110","30.021300"],["-89.957180","30.021280"],["-89.957295","30.021250"],["-89.957410","30.021220"],["-89.957523","30.021195"],["-89.957635","30.021170"],["-89.957748","30.021145"],["-89.957860","30.021120"],["-89.958020","30.021080"],["-89.958135","30.021051"],["-89.958250","30.021023"],["-89.958365","30.020994"],["-89.958480","30.020965"],["-89.958595","30.020936"],["-89.958710","30.020908"],["-89.958825","30.020879"],["-89.958940","30.020850"],["-89.958964","30.020925"],["-89.958940","30.020850"],["-89.959080","30.020810"],["-89.959260","30.020760"],["-89.959388","30.020730"],["-89.959515","30.020700"],["-89.959643","30.020670"],["-89.959770","30.020640"],["-89.959915","30.020600"],["-89.960060","30.020560"],["-89.960150","30.020540"],["-89.960260","30.020510"],["-89.960443","30.020465"],["-89.960625","30.020420"],["-89.960808","30.020375"],["-89.960990","30.020330"],["-89.961123","30.020298"],["-89.961255","30.020265"],["-89.961388","30.020233"],["-89.961520","30.020200"],["-89.961541","30.020267"],["-89.961520","30.020200"],["-89.961630","30.020170"],["-89.961810","30.020125"],["-89.961990","30.020080"],["-89.962170","30.020035"],["-89.962350","30.019990"],["-89.962495","30.019953"],["-89.962640","30.019915"],["-89.962785","30.019878"],["-89.962930","30.019840"],["-89.962959","30.019921"],["-89.962930","30.019840"],["-89.963040","30.019810"],["-89.963110","30.019800"],["-89.963270","30.019760"],["-89.963430","30.019720"],["-89.963590","30.019680"],["-89.963750","30.019640"],["-89.963925","30.019598"],["-89.964100","30.019555"],["-89.964275","30.019513"],["-89.964450","30.019470"],["-89.964603","30.019433"],["-89.964755","30.019395"],["-89.964908","30.019358"],["-89.965060","30.019320"],["-89.965081","30.019390"],["-89.965060","30.019320"],["-89.965150","30.019300"],["-89.965333","30.019253"],["-89.965515","30.019205"],["-89.965698","30.019158"],["-89.965880","30.019110"],["-89.966058","30.019065"],["-89.966235","30.019020"],["-89.966413","30.018975"],["-89.966590","30.018930"],["-89.966753","30.018893"],["-89.966915","30.018855"],["-89.967078","30.018818"],["-89.967240","30.018780"],["-89.967250","30.018770"],["-89.967370","30.018745"],["-89.967490","30.018720"],["-89.967630","30.018685"],["-89.967770","30.018650"],["-89.967797","30.018742"],["-89.967770","30.018650"],["-89.967960","30.018600"],["-89.967975","30.018740"],["-89.967990","30.018880"],["-89.968005","30.019040"],["-89.968020","30.019200"],["-89.968035","30.019338"],["-89.968050","30.019475"],["-89.968065","30.019613"],["-89.968080","30.019750"],["-89.968095","30.019886"],["-89.968110","30.020023"],["-89.968125","30.020159"],["-89.968140","30.020295"],["-89.968155","30.020431"],["-89.968170","30.020568"],["-89.968185","30.020704"],["-89.968200","30.020840"],["-89.968212","30.020980"],["-89.968225","30.021120"],["-89.968237","30.021260"],["-89.968250","30.021400"],["-89.968193","30.021403"],["-89.968250","30.021400"],["-89.968260","30.021510"],["-89.968277","30.021683"],["-89.968295","30.021855"],["-89.968312","30.022028"],["-89.968330","30.022200"],["-89.968347","30.022370"],["-89.968365","30.022540"],["-89.968382","30.022710"],["-89.968400","30.022880"],["-89.968417","30.023053"],["-89.968435","30.023225"],["-89.968452","30.023398"],["-89.968470","30.023570"],["-89.968487","30.023743"],["-89.968505","30.023915"],["-89.968522","30.024088"],["-89.968540","30.024260"],["-89.968420","30.024270"],["-89.968426","30.024349"],["-89.968420","30.024270"],["-89.968540","30.024260"],["-89.968557","30.024430"],["-89.968575","30.024600"],["-89.968592","30.024770"],["-89.968610","30.024940"],["-89.968627","30.025113"],["-89.968645","30.025285"],["-89.968662","30.025458"],["-89.968680","30.025630"],["-89.968697","30.025803"],["-89.968715","30.025975"],["-89.968732","30.026148"],["-89.968750","30.026320"],["-89.968757","30.026435"],["-89.968765","30.026550"],["-89.968772","30.026665"],["-89.968780","30.026780"],["-89.968790","30.026860"],["-89.968800","30.026900"],["-89.968820","30.026970"],["-89.968860","30.027070"],["-89.968910","30.027160"],["-89.968940","30.027210"],["-89.968960","30.027250"],["-89.969010","30.027340"],["-89.969070","30.027430"],["-89.969160","30.027560"],["-89.969250","30.027700"],["-89.969169","30.027743"],["-89.969250","30.027700"],["-89.969330","30.027810"],["-89.969400","30.027930"],["-89.969470","30.028025"],["-89.969540","30.028120"],["-89.969590","30.028210"],["-89.969685","30.028350"],["-89.969780","30.028490"],["-89.969855","30.028605"],["-89.969930","30.028720"],["-89.970005","30.028835"],["-89.970080","30.028950"],["-89.970100","30.028960"],["-89.970157","30.029043"],["-89.970215","30.029125"],["-89.970272","30.029208"],["-89.970330","30.029290"],["-89.970387","30.029373"],["-89.970445","30.029455"],["-89.970502","30.029538"],["-89.970560","30.029620"],["-89.970675","30.029775"],["-89.970790","30.029930"],["-89.970655","30.029999"],["-89.970790","30.029930"],["-89.970850","30.030018"],["-89.970910","30.030105"],["-89.970970","30.030193"],["-89.971030","30.030280"],["-89.971100","30.030375"],["-89.971170","30.030470"],["-89.971255","30.030580"],["-89.971340","30.030690"],["-89.971390","30.030770"],["-89.971492","30.030913"],["-89.971595","30.031055"],["-89.971697","30.031198"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971945","30.031550"],["-89.972010","30.031650"],["-89.972075","30.031750"],["-89.972140","30.031850"],["-89.972195","30.031935"],["-89.972250","30.032020"],["-89.972300","30.032100"],["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972820","30.032830"],["-89.972930","30.032980"],["-89.973050","30.032915"],["-89.973170","30.032850"],["-89.973355","30.032750"],["-89.973540","30.032650"],["-89.973675","30.032565"],["-89.973810","30.032480"],["-89.973923","30.032410"],["-89.974035","30.032340"],["-89.974148","30.032270"],["-89.974260","30.032200"],["-89.974355","30.032145"],["-89.974450","30.032090"],["-89.974545","30.032035"],["-89.974640","30.031980"],["-89.974735","30.031925"],["-89.974830","30.031870"],["-89.974925","30.031815"],["-89.975020","30.031760"],["-89.975115","30.031709"],["-89.975210","30.031658"],["-89.975305","30.031606"],["-89.975400","30.031555"],["-89.975495","30.031504"],["-89.975590","30.031453"],["-89.975685","30.031401"],["-89.975780","30.031350"],["-89.975880","30.031300"],["-89.975940","30.031260"],["-89.976000","30.031230"],["-89.976125","30.031163"],["-89.976250","30.031095"],["-89.976375","30.031028"],["-89.976500","30.030960"],["-89.976670","30.030870"],["-89.976840","30.030780"],["-89.976940","30.030723"],["-89.977040","30.030665"],["-89.977140","30.030608"],["-89.977240","30.030550"],["-89.977385","30.030470"],["-89.977530","30.030390"],["-89.977580","30.030459"],["-89.977530","30.030390"],["-89.977625","30.030340"],["-89.977720","30.030290"],["-89.977880","30.030210"],["-89.977960","30.030170"],["-89.978145","30.030085"],["-89.978330","30.030000"],["-89.978340","30.030000"],["-89.978530","30.029920"],["-89.978725","30.029855"],["-89.978920","30.029790"],["-89.979115","30.029730"],["-89.979310","30.029670"],["-89.979483","30.029638"],["-89.979655","30.029605"],["-89.979828","30.029573"],["-89.980000","30.029540"],["-89.980205","30.029505"],["-89.980410","30.029470"],["-89.980530","30.029455"],["-89.980650","30.029440"],["-89.980850","30.029410"],["-89.981005","30.029385"],["-89.981160","30.029360"],["-89.981355","30.029340"],["-89.981550","30.029320"],["-89.981695","30.029295"],["-89.981870","30.029270"],["-89.981881","30.029334"],["-89.981870","30.029270"],["-89.982010","30.029250"],["-89.982150","30.029230"],["-89.982263","30.029213"],["-89.982375","30.029195"],["-89.982488","30.029178"],["-89.982600","30.029160"],["-89.982720","30.029140"],["-89.982840","30.029120"],["-89.982790","30.029020"],["-89.982740","30.028920"],["-89.982656","30.028784"],["-89.982572","30.028648"],["-89.982489","30.028511"],["-89.982405","30.028375"],["-89.982321","30.028239"],["-89.982237","30.028103"],["-89.982154","30.027966"],["-89.982070","30.027830"],["-89.981977","30.027676"],["-89.981885","30.027523"],["-89.981792","30.027369"],["-89.981700","30.027215"],["-89.981607","30.027061"],["-89.981515","30.026908"],["-89.981422","30.026754"],["-89.981330","30.026600"],["-89.981275","30.026515"],["-89.981220","30.026430"],["-89.981152","30.026335"],["-89.981085","30.026240"],["-89.981017","30.026145"],["-89.980950","30.026050"],["-89.980882","30.025955"],["-89.980815","30.025860"],["-89.980747","30.025765"],["-89.980680","30.025670"],["-89.980550","30.025720"],["-89.980534","30.025689"],["-89.980550","30.025720"],["-89.980430","30.025760"],["-89.980540","30.025890"],["-89.980650","30.026015"],["-89.980760","30.026140"],["-89.980850","30.026260"],["-89.980935","30.026390"],["-89.981020","30.026520"],["-89.981075","30.026605"],["-89.981130","30.026690"],["-89.981206","30.026814"],["-89.981282","30.026938"],["-89.981359","30.027061"],["-89.981435","30.027185"],["-89.981511","30.027309"],["-89.981587","30.027433"],["-89.981664","30.027556"],["-89.981740","30.027680"],["-89.981800","30.027795"],["-89.981860","30.027910"],["-89.981937","30.028048"],["-89.982015","30.028185"],["-89.982092","30.028323"],["-89.982170","30.028460"],["-89.982242","30.028585"],["-89.982315","30.028710"],["-89.982387","30.028835"],["-89.982460","30.028960"],["-89.982530","30.029060"],["-89.982600","30.029160"],["-89.982720","30.029140"],["-89.982840","30.029120"],["-89.983028","30.029090"],["-89.983215","30.029060"],["-89.983403","30.029030"],["-89.983590","30.029000"],["-89.983745","30.028970"],["-89.983900","30.028940"],["-89.984055","30.028910"],["-89.984210","30.028880"],["-89.984225","30.028955"],["-89.984210","30.028880"],["-89.984310","30.028860"],["-89.984453","30.028838"],["-89.984595","30.028815"],["-89.984738","30.028793"],["-89.984880","30.028770"],["-89.985008","30.028753"],["-89.985135","30.028735"],["-89.985263","30.028718"],["-89.985390","30.028700"],["-89.985540","30.028670"],["-89.985675","30.028650"],["-89.985810","30.028630"],["-89.985933","30.028610"],["-89.986055","30.028590"],["-89.986178","30.028570"],["-89.986300","30.028550"],["-89.986430","30.028530"],["-89.986560","30.028510"],["-89.986735","30.028480"],["-89.986910","30.028450"],["-89.987085","30.028420"],["-89.987260","30.028390"],["-89.987274","30.028456"],["-89.987260","30.028390"],["-89.987420","30.028370"],["-89.987600","30.028340"],["-89.987713","30.028321"],["-89.987825","30.028303"],["-89.987938","30.028284"],["-89.988050","30.028265"],["-89.988163","30.028246"],["-89.988275","30.028228"],["-89.988388","30.028209"],["-89.988500","30.028190"],["-89.988665","30.028165"],["-89.988830","30.028140"],["-89.988995","30.028115"],["-89.989160","30.028090"],["-89.989270","30.028075"],["-89.989380","30.028060"],["-89.989550","30.028020"],["-89.989690","30.027990"],["-89.989820","30.027950"],["-89.989985","30.027895"],["-89.990150","30.027845"],["-89.990315","30.027793"],["-89.990480","30.027740"],["-89.990590","30.027693"],["-89.990700","30.027645"],["-89.990810","30.027598"],["-89.990920","30.027550"],["-89.991120","30.027470"],["-89.991280","30.027410"],["-89.991440","30.027350"],["-89.991590","30.027285"],["-89.991740","30.027220"],["-89.991772","30.027276"],["-89.991740","30.027230"],["-89.991820","30.027190"],["-89.991930","30.027165"],["-89.992040","30.027140"],["-89.992230","30.027050"],["-89.992350","30.026990"],["-89.992480","30.026930"],["-89.992575","30.026875"],["-89.992670","30.026820"],["-89.992800","30.026740"],["-89.992900","30.026665"],["-89.993000","30.026590"],["-89.993155","30.026480"],["-89.993310","30.026370"],["-89.993470","30.026250"],["-89.993580","30.026190"],["-89.993740","30.026090"],["-89.993840","30.026030"],["-89.993940","30.025970"],["-89.994030","30.025930"],["-89.994205","30.025865"],["-89.994380","30.025800"],["-89.994580","30.025720"],["-89.994780","30.025640"],["-89.994950","30.025575"],["-89.995120","30.025510"],["-89.995220","30.025570"],["-89.995320","30.025630"],["-89.995340","30.025640"],["-89.995302","30.025703"],["-89.995340","30.025640"],["-89.995320","30.025630"],["-89.995220","30.025570"],["-89.995120","30.025510"],["-89.995240","30.025460"],["-89.995290","30.025440"],["-89.995485","30.025365"],["-89.995680","30.025290"],["-89.995790","30.025250"],["-89.995900","30.025210"],["-89.995950","30.025190"],["-89.996030","30.025160"],["-89.996090","30.025130"],["-89.996240","30.025075"],["-89.996390","30.025020"],["-89.996498","30.024978"],["-89.996605","30.024935"],["-89.996713","30.024893"],["-89.996820","30.024850"],["-89.996970","30.024790"],["-89.997100","30.024750"],["-89.997250","30.024690"],["-89.997380","30.024650"],["-89.997495","30.024663"],["-89.997611","30.024675"],["-89.997570","30.024590"],["-89.997730","30.024540"],["-89.997910","30.024490"],["-89.998090","30.024450"],["-89.998220","30.024425"],["-89.998350","30.024400"],["-89.998568","30.024370"],["-89.998785","30.024340"],["-89.999003","30.024310"],["-89.999220","30.024280"],["-89.999420","30.024260"],["-89.999510","30.024250"],["-89.999640","30.024220"],["-89.999740","30.024200"],["-89.999880","30.024160"],["-90.000020","30.024110"],["-90.000155","30.024065"],["-90.000290","30.024020"],["-90.000480","30.023930"],["-90.000530","30.023900"],["-90.000586","30.023969"],["-90.000530","30.023900"],["-90.000610","30.023850"],["-90.000710","30.023790"],["-90.000810","30.023730"],["-90.000720","30.023635"],["-90.000630","30.023540"],["-90.000570","30.023470"],["-90.000530","30.023420"],["-90.000420","30.023280"],["-90.000345","30.023180"],["-90.000270","30.023080"],["-90.000195","30.022935"],["-90.000120","30.022790"],["-90.000060","30.022680"],["-90.000000","30.022570"],["-89.999960","30.022490"],["-89.999950","30.022460"],["-89.999910","30.022370"],["-89.999975","30.022349"],["-89.999910","30.022370"],["-89.999845","30.022230"],["-89.999780","30.022090"],["-89.999720","30.022030"],["-89.999860","30.022005"],["-90.000000","30.021980"],["-90.000110","30.021965"],["-90.000220","30.021950"],["-90.000340","30.021940"],["-90.000480","30.021930"],["-90.000510","30.021920"],["-90.000725","30.021905"],["-90.000940","30.021890"],["-90.001095","30.021875"],["-90.001250","30.021860"],["-90.001385","30.021850"],["-90.001520","30.021840"],["-90.001710","30.021820"],["-90.001716","30.021910"],["-90.001710","30.021820"],["-90.001880","30.021810"],["-90.002033","30.021795"],["-90.002185","30.021780"],["-90.002338","30.021765"],["-90.002490","30.021750"],["-90.002670","30.021730"],["-90.002770","30.021720"],["-90.002953","30.021705"],["-90.003135","30.021690"],["-90.003318","30.021675"],["-90.003500","30.021660"],["-90.003705","30.021643"],["-90.003910","30.021625"],["-90.004115","30.021608"],["-90.004243","30.021594"],["-90.004370","30.021580"],["-90.004330","30.021665"],["-90.004370","30.021580"],["-90.004498","30.021569"],["-90.004625","30.021558"],["-90.004753","30.021546"],["-90.004880","30.021535"],["-90.005008","30.021524"],["-90.005135","30.021513"],["-90.005263","30.021501"],["-90.005390","30.021490"],["-90.005590","30.021470"],["-90.005710","30.021460"],["-90.005720","30.021533"],["-90.005710","30.021460"],["-90.005893","30.021443"],["-90.006075","30.021425"],["-90.006258","30.021408"],["-90.006440","30.021390"],["-90.006530","30.021390"],["-90.006650","30.021380"],["-90.006810","30.021370"],["-90.006970","30.021360"],["-90.007095","30.021348"],["-90.007220","30.021335"],["-90.007345","30.021323"],["-90.007470","30.021310"],["-90.007530","30.021300"],["-90.007655","30.021286"],["-90.007780","30.021273"],["-90.007905","30.021259"],["-90.008030","30.021245"],["-90.008155","30.021231"],["-90.008280","30.021218"],["-90.008405","30.021204"],["-90.008530","30.021190"],["-90.008655","30.021176"],["-90.008780","30.021163"],["-90.008905","30.021149"],["-90.009030","30.021135"],["-90.009155","30.021121"],["-90.009280","30.021108"],["-90.009405","30.021094"],["-90.009530","30.021080"],["-90.009547","30.021174"],["-90.009530","30.021080"],["-90.009670","30.021070"],["-90.009850","30.021050"],["-90.009964","30.021040"],["-90.010078","30.021030"],["-90.010191","30.021020"],["-90.010305","30.021010"],["-90.010419","30.021000"],["-90.010533","30.020990"],["-90.010646","30.020980"],["-90.010760","30.020970"],["-90.010873","30.020960"],["-90.010985","30.020950"],["-90.011098","30.020940"],["-90.011210","30.020930"],["-90.011323","30.020920"],["-90.011435","30.020910"],["-90.011548","30.020900"],["-90.011660","30.020890"],["-90.011790","30.020878"],["-90.011920","30.020865"],["-90.012050","30.020853"],["-90.012180","30.020840"],["-90.012373","30.020820"],["-90.012565","30.020800"],["-90.012758","30.020780"],["-90.012950","30.020760"],["-90.013030","30.020750"],["-90.013043","30.020826"],["-90.013030","30.020750"],["-90.013130","30.020730"],["-90.013250","30.020710"],["-90.013365","30.020685"],["-90.013480","30.020660"],["-90.013600","30.020630"],["-90.013730","30.020600"],["-90.013820","30.020570"],["-90.014020","30.020520"],["-90.014030","30.020520"],["-90.014040","30.020510"],["-90.014150","30.020490"],["-90.014162","30.020515"],["-90.014150","30.020490"],["-90.014220","30.020470"],["-90.014340","30.020440"],["-90.014460","30.020410"],["-90.014640","30.020350"],["-90.014840","30.020300"],["-90.015040","30.020250"],["-90.015070","30.020240"],["-90.015235","30.020195"],["-90.015400","30.020150"],["-90.015600","30.020100"],["-90.015750","30.020060"],["-90.015900","30.020020"],["-90.016050","30.019980"],["-90.016200","30.019940"],["-90.016395","30.019890"],["-90.016590","30.019840"],["-90.016785","30.019790"],["-90.016980","30.019740"],["-90.017160","30.019690"],["-90.017335","30.019645"],["-90.017510","30.019600"],["-90.017655","30.019560"],["-90.017820","30.019571"],["-90.017800","30.019520"],["-90.017970","30.019480"],["-90.018170","30.019423"],["-90.018370","30.019365"],["-90.018570","30.019308"],["-90.018770","30.019250"],["-90.018970","30.019200"],["-90.019170","30.019150"],["-90.019370","30.019100"],["-90.019570","30.019050"],["-90.019602","30.019149"],["-90.019570","30.019050"],["-90.019750","30.019000"],["-90.019948","30.018948"],["-90.020145","30.018895"],["-90.020343","30.018843"],["-90.020540","30.018790"],["-90.020664","30.018758"],["-90.020788","30.018725"],["-90.020911","30.018693"],["-90.021035","30.018660"],["-90.021159","30.018628"],["-90.021283","30.018595"],["-90.021406","30.018563"],["-90.021530","30.018530"],["-90.021552","30.018586"],["-90.021530","30.018530"],["-90.021640","30.018500"],["-90.021740","30.018470"],["-90.021720","30.018380"],["-90.021712","30.018275"],["-90.021705","30.018170"],["-90.021697","30.018065"],["-90.021690","30.017960"],["-90.021682","30.017855"],["-90.021675","30.017750"],["-90.021667","30.017645"],["-90.021660","30.017540"],["-90.021645","30.017380"],["-90.021630","30.017220"],["-90.021615","30.017060"],["-90.021600","30.016900"],["-90.021585","30.016750"],["-90.021570","30.016600"],["-90.021555","30.016450"],["-90.021540","30.016300"],["-90.021600","30.016292"],["-90.021540","30.016300"],["-90.021530","30.016220"],["-90.021515","30.016070"],["-90.021500","30.015920"],["-90.021485","30.015770"],["-90.021470","30.015620"],["-90.021455","30.015458"],["-90.021440","30.015295"],["-90.021425","30.015133"],["-90.021410","30.014970"],["-90.021390","30.014785"],["-90.021370","30.014600"],["-90.021360","30.014495"],["-90.021350","30.014390"],["-90.021412","30.014387"],["-90.021350","30.014390"],["-90.021350","30.014320"],["-90.021335","30.014160"],["-90.021320","30.014000"],["-90.021305","30.013840"],["-90.021290","30.013680"],["-90.021272","30.013518"],["-90.021255","30.013355"],["-90.021237","30.013193"],["-90.021220","30.013030"],["-90.021205","30.012875"],["-90.021190","30.012720"],["-90.021175","30.012565"],["-90.021160","30.012410"],["-90.021239","30.012418"],["-90.021160","30.012410"],["-90.021145","30.012253"],["-90.021130","30.012095"],["-90.021115","30.011938"],["-90.021100","30.011780"],["-90.021085","30.011610"],["-90.021070","30.011440"],["-90.021055","30.011270"],["-90.021040","30.011100"],["-90.021030","30.011020"],["-90.021017","30.010880"],["-90.021005","30.010740"],["-90.020992","30.010600"],["-90.020980","30.010460"],["-90.020960","30.010280"],["-90.020940","30.010100"],["-90.020993","30.010096"],["-90.020940","30.010100"],["-90.020940","30.010020"],["-90.020920","30.009890"],["-90.021078","30.009848"],["-90.021235","30.009805"],["-90.021393","30.009763"],["-90.021550","30.009720"],["-90.021750","30.009675"],["-90.021950","30.009630"],["-90.022150","30.009580"],["-90.022350","30.009530"],["-90.022519","30.009489"],["-90.022688","30.009448"],["-90.022856","30.009406"],["-90.023025","30.009365"],["-90.023194","30.009324"],["-90.023363","30.009283"],["-90.023531","30.009241"],["-90.023700","30.009200"],["-90.023830","30.009170"],["-90.023910","30.009150"],["-90.023920","30.009150"],["-90.024030","30.009120"],["-90.024150","30.009090"],["-90.024250","30.009070"],["-90.024310","30.009060"],["-90.024450","30.009020"],["-90.024580","30.008990"],["-90.024730","30.008953"],["-90.024880","30.008915"],["-90.025030","30.008878"],["-90.025180","30.008840"],["-90.025330","30.008803"],["-90.025480","30.008765"],["-90.025630","30.008728"],["-90.025780","30.008690"],["-90.025955","30.008648"],["-90.026130","30.008605"],["-90.026305","30.008563"],["-90.026480","30.008520"],["-90.026598","30.008493"],["-90.026715","30.008465"],["-90.026833","30.008438"],["-90.026950","30.008410"],["-90.027150","30.008365"],["-90.027350","30.008320"],["-90.027498","30.008283"],["-90.027645","30.008245"],["-90.027793","30.008208"],["-90.027940","30.008170"],["-90.028090","30.008138"],["-90.028240","30.008105"],["-90.028390","30.008073"],["-90.028540","30.008040"],["-90.028663","30.008009"],["-90.028785","30.007978"],["-90.028908","30.007946"],["-90.029030","30.007915"],["-90.029153","30.007884"],["-90.029275","30.007853"],["-90.029398","30.007821"],["-90.029520","30.007790"],["-90.029650","30.007760"],["-90.029780","30.007730"],["-90.029930","30.007690"],["-90.030110","30.007640"],["-90.030160","30.007630"],["-90.030268","30.007601"],["-90.030375","30.007573"],["-90.030483","30.007544"],["-90.030590","30.007515"],["-90.030698","30.007486"],["-90.030805","30.007458"],["-90.030913","30.007429"],["-90.031020","30.007400"],["-90.031180","30.007353"],["-90.031340","30.007305"],["-90.031500","30.007258"],["-90.031660","30.007210"],["-90.031700","30.007190"],["-90.031820","30.007150"],["-90.031940","30.007110"],["-90.032105","30.007045"],["-90.032270","30.006980"],["-90.032340","30.006960"],["-90.032510","30.006893"],["-90.032680","30.006825"],["-90.032850","30.006758"],["-90.033020","30.006690"],["-90.033180","30.006635"],["-90.033340","30.006580"],["-90.033440","30.006540"],["-90.033580","30.006490"],["-90.033725","30.006433"],["-90.033870","30.006375"],["-90.034015","30.006318"],["-90.034160","30.006260"],["-90.034100","30.006120"],["-90.034020","30.005970"],["-90.033960","30.005845"],["-90.033900","30.005720"],["-90.033870","30.005670"],["-90.033800","30.005540"],["-90.033834","30.005525"],["-90.033800","30.005540"],["-90.033740","30.005410"],["-90.033660","30.005250"],["-90.033580","30.005080"],["-90.033570","30.005070"],["-90.033683","30.005020"],["-90.033795","30.004970"],["-90.033908","30.004920"],["-90.034020","30.004870"],["-90.034215","30.004785"],["-90.034410","30.004700"],["-90.034470","30.004670"],["-90.034573","30.004618"],["-90.034675","30.004565"],["-90.034778","30.004513"],["-90.034880","30.004460"],["-90.035045","30.004380"],["-90.035210","30.004300"],["-90.035280","30.004260"],["-90.035380","30.004215"],["-90.035480","30.004170"],["-90.035650","30.004080"],["-90.035750","30.004030"],["-90.035905","30.003955"],["-90.036060","30.003880"],["-90.036160","30.003830"],["-90.036270","30.003780"],["-90.036420","30.003700"],["-90.036470","30.003680"],["-90.036650","30.003600"],["-90.036665","30.003475"],["-90.036680","30.003350"],["-90.036700","30.003230"],["-90.036710","30.003170"],["-90.036740","30.003110"],["-90.036790","30.003060"],["-90.036820","30.003030"],["-90.036850","30.002990"],["-90.036950","30.002920"],["-90.037030","30.002870"],["-90.037110","30.002810"],["-90.037220","30.002745"],["-90.037330","30.002680"],["-90.037450","30.002615"],["-90.037570","30.002550"],["-90.037620","30.002520"],["-90.037805","30.002420"],["-90.037990","30.002320"],["-90.038130","30.002240"],["-90.038150","30.002230"],["-90.038280","30.002160"],["-90.038370","30.002100"],["-90.038465","30.002050"],["-90.038560","30.002000"],["-90.038660","30.001940"],["-90.038760","30.001880"],["-90.038870","30.001825"],["-90.038980","30.001770"],["-90.039050","30.001730"],["-90.039160","30.001660"],["-90.039240","30.001620"],["-90.039290","30.001580"],["-90.039300","30.001570"],["-90.039340","30.001490"],["-90.039525","30.001390"],["-90.039710","30.001290"],["-90.039830","30.001220"],["-90.039925","30.001165"],["-90.040020","30.001110"],["-90.040115","30.001055"],["-90.040210","30.001000"],["-90.040340","30.000910"],["-90.040490","30.000820"],["-90.040560","30.000780"],["-90.040665","30.000715"],["-90.040770","30.000650"],["-90.040860","30.000590"],["-90.040950","30.000530"],["-90.041060","30.000450"],["-90.041230","30.000340"],["-90.041270","30.000310"],["-90.041370","30.000250"],["-90.041460","30.000180"],["-90.041550","30.000115"],["-90.041640","30.000050"],["-90.041700","30.000010"],["-90.041730","29.999990"],["-90.041830","29.999910"],["-90.041925","29.999840"],["-90.042020","29.999770"],["-90.042120","29.999700"],["-90.042240","29.999610"],["-90.042310","29.999550"],["-90.042395","29.999480"],["-90.042480","29.999410"],["-90.042530","29.999370"],["-90.042600","29.999320"],["-90.042685","29.999250"],["-90.042770","29.999180"],["-90.042860","29.999110"],["-90.042950","29.999040"],["-90.043040","29.998960"],["-90.043160","29.998860"],["-90.043240","29.998790"],["-90.043330","29.998720"],["-90.043410","29.998650"],["-90.043490","29.998580"],["-90.043580","29.998500"],["-90.043670","29.998420"],["-90.043820","29.998280"],["-90.043840","29.998260"],["-90.043940","29.998170"],["-90.044025","29.998090"],["-90.044110","29.998010"],["-90.044190","29.997930"],["-90.044230","29.997890"],["-90.044280","29.997850"],["-90.044360","29.997770"],["-90.044440","29.997690"],["-90.044530","29.997600"],["-90.044610","29.997520"],["-90.044690","29.997440"],["-90.044770","29.997360"],["-90.044870","29.997260"],["-90.044943","29.997180"],["-90.045015","29.997100"],["-90.045088","29.997020"],["-90.045160","29.996940"],["-90.045235","29.996860"],["-90.045310","29.996780"],["-90.045385","29.996700"],["-90.045460","29.996620"],["-90.045540","29.996535"],["-90.045620","29.996450"],["-90.045750","29.996320"],["-90.045780","29.996280"],["-90.045910","29.996140"],["-90.045960","29.996080"],["-90.046040","29.996000"],["-90.046150","29.995870"],["-90.046180","29.995840"],["-90.046250","29.995760"],["-90.046320","29.995680"],["-90.046370","29.995620"],["-90.046470","29.995508"],["-90.046570","29.995395"],["-90.046670","29.995283"],["-90.046770","29.995170"],["-90.046850","29.995080"],["-90.046930","29.994990"],["-90.047030","29.994878"],["-90.047130","29.994765"],["-90.047230","29.994653"],["-90.047330","29.994540"],["-90.047400","29.994465"],["-90.047470","29.994390"],["-90.047568","29.994280"],["-90.047665","29.994170"],["-90.047763","29.994060"],["-90.047860","29.993950"],["-90.047940","29.993850"],["-90.048015","29.993770"],["-90.048090","29.993690"],["-90.048165","29.993605"],["-90.048240","29.993520"],["-90.048343","29.993405"],["-90.048445","29.993290"],["-90.048548","29.993175"],["-90.048650","29.993060"],["-90.048730","29.992980"],["-90.048810","29.992900"],["-90.048880","29.992810"],["-90.048950","29.992710"],["-90.049080","29.992560"],["-90.049120","29.992520"],["-90.049195","29.992438"],["-90.049270","29.992355"],["-90.049345","29.992273"],["-90.049420","29.992190"],["-90.049510","29.992070"],["-90.049540","29.992040"],["-90.049638","29.991930"],["-90.049735","29.991820"],["-90.049833","29.991710"],["-90.049930","29.991600"],["-90.050015","29.991510"],["-90.050100","29.991420"],["-90.050190","29.991310"],["-90.050295","29.991195"],["-90.050400","29.991080"],["-90.050520","29.990945"],["-90.050640","29.990810"],["-90.050735","29.990705"],["-90.050830","29.990600"],["-90.050925","29.990495"],["-90.051020","29.990390"],["-90.051080","29.990320"],["-90.051160","29.990230"],["-90.051220","29.990160"],["-90.051290","29.990080"],["-90.051405","29.989950"],["-90.051520","29.989820"],["-90.051620","29.989710"],["-90.051640","29.989690"],["-90.051720","29.989590"],["-90.051790","29.989505"],["-90.051860","29.989420"],["-90.051870","29.989410"],["-90.051925","29.989325"],["-90.051980","29.989240"],["-90.052050","29.989150"],["-90.052090","29.989090"],["-90.052140","29.989000"],["-90.052180","29.988940"],["-90.052245","29.988825"],["-90.052310","29.988710"],["-90.052340","29.988630"],["-90.052400","29.988520"],["-90.052450","29.988390"],["-90.052500","29.988280"],["-90.052540","29.988170"],["-90.052580","29.988055"],["-90.052620","29.987940"],["-90.052650","29.987850"],["-90.052680","29.987740"],["-90.052700","29.987650"],["-90.052720","29.987540"],["-90.052760","29.987390"],["-90.052790","29.987230"],["-90.052820","29.987110"],["-90.052860","29.986930"],["-90.052880","29.986830"],["-90.052900","29.986730"],["-90.052920","29.986630"],["-90.052940","29.986530"],["-90.052960","29.986430"],["-90.052990","29.986320"],["-90.053020","29.986170"],["-90.053050","29.986050"],["-90.053070","29.985930"],["-90.053100","29.985770"],["-90.053120","29.985700"],["-90.053160","29.985530"],["-90.053200","29.985400"],["-90.053250","29.985250"],["-90.053310","29.985090"],["-90.053330","29.985040"],["-90.053390","29.984900"],["-90.053460","29.984750"],["-90.053535","29.984615"],["-90.053610","29.984480"],["-90.053610","29.984470"],["-90.053680","29.984350"],["-90.053743","29.984258"],["-90.053805","29.984165"],["-90.053868","29.984073"],["-90.053930","29.983980"],["-90.054000","29.983890"],["-90.054070","29.983800"],["-90.054180","29.983660"],["-90.054230","29.983600"],["-90.054350","29.983470"],["-90.054480","29.983340"],["-90.054610","29.983220"],["-90.054700","29.983140"],["-90.054790","29.983060"],["-90.054920","29.982950"],["-90.055080","29.982820"],["-90.055110","29.982800"],["-90.055240","29.982690"],["-90.055360","29.982590"],["-90.055430","29.982530"],["-90.055520","29.982460"],["-90.055615","29.982385"],["-90.055710","29.982310"],["-90.055845","29.982195"],["-90.055980","29.982080"],["-90.056020","29.982050"],["-90.056160","29.981930"],["-90.056245","29.981860"],["-90.056330","29.981790"],["-90.056480","29.981680"],["-90.056630","29.981560"],["-90.056715","29.981490"],["-90.056800","29.981420"],["-90.056885","29.981350"],["-90.056970","29.981280"],["-90.057068","29.981200"],["-90.057165","29.981120"],["-90.057263","29.981040"],["-90.057360","29.980960"],["-90.057450","29.980888"],["-90.057540","29.980815"],["-90.057630","29.980743"],["-90.057720","29.980670"],["-90.057780","29.980620"],["-90.057840","29.980570"],["-90.057990","29.980450"],["-90.058150","29.980320"],["-90.058250","29.980240"],["-90.058350","29.980160"],["-90.058410","29.980110"],["-90.058490","29.980040"],["-90.058610","29.979950"],["-90.058720","29.979860"],["-90.058845","29.979755"],["-90.058970","29.979650"],["-90.059105","29.979545"],["-90.059240","29.979440"],["-90.059355","29.979345"],["-90.059470","29.979250"],["-90.059620","29.979125"],["-90.059770","29.979000"],["-90.059920","29.978880"],["-90.060010","29.978800"],["-90.060130","29.978710"],["-90.060140","29.978710"],["-90.060280","29.978590"],["-90.060360","29.978520"],["-90.060440","29.978450"],["-90.060530","29.978380"],["-90.060630","29.978290"],["-90.060730","29.978200"],["-90.060820","29.978120"],["-90.060910","29.978040"],["-90.060995","29.977960"],["-90.061080","29.977880"],["-90.061160","29.977805"],["-90.061240","29.977730"],["-90.061370","29.977605"],["-90.061500","29.977480"],["-90.061580","29.977390"],["-90.061655","29.977310"],["-90.061730","29.977230"],["-90.061820","29.977130"],["-90.061900","29.977050"],["-90.061990","29.976955"],["-90.062080","29.976860"],["-90.062165","29.976760"],["-90.062250","29.976660"],["-90.062340","29.976560"],["-90.062430","29.976460"],["-90.062525","29.976355"],["-90.062620","29.976250"],["-90.062700","29.976160"],["-90.062780","29.976070"],["-90.062860","29.975980"],["-90.062940","29.975890"],["-90.063050","29.975770"],["-90.063120","29.975690"],["-90.063190","29.975610"],["-90.063275","29.975515"],["-90.063360","29.975420"],["-90.063490","29.975275"],["-90.063620","29.975130"],["-90.063710","29.975035"],["-90.063800","29.974940"],["-90.063865","29.974860"],["-90.063930","29.974780"],["-90.064015","29.974690"],["-90.064100","29.974600"],["-90.064198","29.974490"],["-90.064295","29.974380"],["-90.064393","29.974270"],["-90.064490","29.974160"],["-90.064620","29.974010"],["-90.064690","29.973930"],["-90.064790","29.973820"],["-90.064890","29.973710"],["-90.064985","29.973605"],["-90.065080","29.973500"],["-90.065180","29.973390"],["-90.065280","29.973270"],["-90.065410","29.973130"],["-90.065530","29.972995"],["-90.065650","29.972860"],["-90.065760","29.972735"],["-90.065870","29.972610"],["-90.065910","29.972560"],["-90.065960","29.972500"],["-90.066040","29.972410"],["-90.066130","29.972300"],["-90.066260","29.972150"],["-90.066290","29.972120"],["-90.066330","29.972070"],["-90.066410","29.971978"],["-90.066490","29.971885"],["-90.066570","29.971793"],["-90.066650","29.971700"],["-90.066720","29.971625"],["-90.066790","29.971550"],["-90.066900","29.971420"],["-90.067020","29.971290"],["-90.067090","29.971200"],["-90.067120","29.971170"],["-90.067225","29.971060"],["-90.067330","29.970950"],["-90.067425","29.970840"],["-90.067520","29.970730"],["-90.067630","29.970610"],["-90.067705","29.970525"],["-90.067780","29.970440"],["-90.067880","29.970330"],["-90.067980","29.970215"],["-90.068080","29.970100"],["-90.068205","29.969960"],["-90.068330","29.969820"],["-90.068425","29.969715"],["-90.068520","29.969610"],["-90.068605","29.969510"],["-90.068690","29.969410"],["-90.068750","29.969340"],["-90.068850","29.969240"],["-90.068880","29.969200"],["-90.068960","29.969110"],["-90.069040","29.969020"],["-90.069120","29.968930"],["-90.069200","29.968840"],["-90.069290","29.968740"],["-90.069380","29.968640"],["-90.069470","29.968540"],["-90.069560","29.968440"],["-90.069665","29.968325"],["-90.069770","29.968210"],["-90.069780","29.968190"],["-90.069880","29.968080"],["-90.070010","29.967940"],["-90.070128","29.967808"],["-90.070245","29.967675"],["-90.070363","29.967543"],["-90.070480","29.967410"],["-90.070500","29.967390"],["-90.070520","29.967360"],["-90.070530","29.967340"],["-90.070590","29.967290"],["-90.070670","29.967200"],["-90.070750","29.967110"],["-90.070840","29.967000"],["-90.070935","29.966895"],["-90.071030","29.966790"],["-90.071115","29.966700"],["-90.071200","29.966610"],["-90.071310","29.966480"],["-90.071370","29.966420"],["-90.071460","29.966320"],["-90.071550","29.966220"],["-90.071640","29.966200"],["-90.071650","29.966200"],["-90.071700","29.966160"],["-90.071740","29.966140"],["-90.071780","29.966110"],["-90.071850","29.966070"],["-90.071910","29.966040"],["-90.071960","29.966020"],["-90.072000","29.966010"],["-90.072040","29.965990"],["-90.072080","29.965990"],["-90.072160","29.965970"],["-90.072380","29.965955"],["-90.072600","29.965940"],["-90.072660","29.965940"],["-90.072850","29.965920"],["-90.072920","29.965920"],["-90.073065","29.965900"],["-90.073210","29.965880"],["-90.073400","29.965800"],["-90.073450","29.965760"],["-90.073480","29.965740"],["-90.073510","29.965710"],["-90.073620","29.965590"],["-90.073730","29.965470"],["-90.073850","29.965320"],["-90.073980","29.965180"],["-90.074040","29.965120"],["-90.074120","29.965010"],["-90.074150","29.964890"],["-90.074010","29.964790"],["-90.073870","29.964690"],["-90.073740","29.964605"],["-90.073610","29.964520"],["-90.073549","29.964434"],["-90.073489","29.964347"],["-90.073450","29.964390"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962950"],["-90.071350","29.962940"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074010","29.955710"],["-90.074078","29.955755"],["-90.074010","29.955710"],["-90.074095","29.955610"],["-90.074180","29.955510"],["-90.074270","29.955410"],["-90.074400","29.955270"],["-90.074485","29.955175"],["-90.074570","29.955080"],["-90.074685","29.954945"],["-90.074818","29.954823"]]},{"type":"MultiPoint","coordinates":[["-90.020829","30.010331"],["-90.020957","30.012361"],["-90.021140","30.014271"],["-90.021389","30.016133"],["-90.021569","30.018240"],["-90.018026","30.019354"],["-90.015342","30.020032"],["-90.013021","30.020664"],["-90.009889","30.020984"],["-90.005698","30.021371"],["-90.004505","30.021484"],["-90.001975","30.021719"],["-89.999633","30.022468"],["-89.999795","30.023576"],["-89.997474","30.024234"],["-89.994636","30.025399"],["-89.992039","30.026779"],["-89.988920","30.027756"],["-89.985395","30.028437"],["-89.975943","30.031078"],["-89.971958","30.031174"],["-89.965235","30.019102"],["-89.963075","30.019634"],["-89.961698","30.019962"],["-89.959351","30.020552"],["-89.955764","30.021438"],["-89.947798","30.023907"],["-89.932558","30.029222"],["-89.911741","30.036607"],["-89.907013","30.037929"],["-89.913517","30.035926"],["-89.917203","30.034696"],["-89.923064","30.032814"],["-89.924527","30.032343"],["-89.926873","30.037572"],["-89.923720","30.038547"],["-89.922057","30.039046"],["-89.917048","30.040547"],["-89.913865","30.041520"],["-89.912695","30.038766"],["-89.980534","30.025689"],["-89.982200","30.028720"],["-89.928438","30.031135"],["-89.951796","30.022557"],["-89.930697","30.029924"],["-90.074818","29.954823"],["-90.077740","29.955981"],["-90.019560","30.018987"],["-90.016296","30.019785"],["-90.011735","30.020796"],["-89.927508","30.031357"],["-89.927935","30.030830"],["-89.909273","30.037165"],["-89.919461","30.039847"],["-89.911378","30.036545"],["-90.033825","30.005795"],["-89.974960","30.029613"],["-89.973520","30.030150"],["-89.929667","30.036645"],["-89.928825","30.033909"],["-89.971184","30.029961"],["-89.969166","30.027130"],["-89.968769","30.024437"],["-89.968473","30.021384"],["-89.971989","30.031165"]]},{"type":"LineString","coordinates":[["-90.074818","29.954823"],["-90.074800","29.954810"],["-90.074900","29.954700"],["-90.075035","29.954763"],["-90.075170","29.954825"],["-90.075305","29.954888"],["-90.075440","29.954950"],["-90.075540","29.955000"],["-90.075640","29.955050"],["-90.075830","29.955140"],["-90.075930","29.955180"],["-90.076090","29.955255"],["-90.076250","29.955330"],["-90.076350","29.955375"],["-90.076450","29.955420"],["-90.076570","29.955480"],["-90.076690","29.955540"],["-90.076850","29.955615"],["-90.077010","29.955690"],["-90.077187","29.955770"],["-90.077365","29.955850"],["-90.077542","29.955930"],["-90.077720","29.956010"],["-90.077740","29.955981"],["-90.077720","29.956010"],["-90.077790","29.956040"],["-90.077940","29.956105"],["-90.078090","29.956170"],["-90.078250","29.956240"],["-90.078440","29.956320"],["-90.078610","29.956390"],["-90.078680","29.956420"],["-90.078770","29.956520"],["-90.078860","29.956620"],["-90.078880","29.956650"],["-90.078930","29.956720"],["-90.078940","29.956740"],["-90.078960","29.956780"],["-90.078970","29.956810"],["-90.078980","29.956840"],["-90.078980","29.956860"],["-90.078990","29.956880"],["-90.078990","29.956900"],["-90.079000","29.956960"],["-90.079000","29.957000"],["-90.079000","29.957050"],["-90.078990","29.957100"],["-90.078990","29.957130"],["-90.078980","29.957140"],["-90.078980","29.957160"],["-90.078960","29.957210"],["-90.078950","29.957250"],["-90.078930","29.957290"],["-90.078900","29.957330"],["-90.078880","29.957360"],["-90.078840","29.957410"],["-90.078780","29.957470"],["-90.078700","29.957570"],["-90.078580","29.957700"],["-90.078510","29.957780"],["-90.078470","29.957860"],["-90.078430","29.957920"],["-90.078410","29.957980"],["-90.078370","29.958085"],["-90.078330","29.958190"],["-90.078310","29.958240"],["-90.078290","29.958260"],["-90.078280","29.958290"],["-90.078250","29.958350"],["-90.078210","29.958420"],["-90.078150","29.958510"],["-90.078090","29.958580"],["-90.078100","29.958680"],["-90.077970","29.958820"],["-90.077840","29.958960"],["-90.077750","29.959065"],["-90.077660","29.959170"],["-90.077580","29.959260"],["-90.077530","29.959320"],["-90.077450","29.959400"],["-90.077380","29.959490"],["-90.077260","29.959610"],["-90.077150","29.959740"],["-90.077080","29.959820"],["-90.077070","29.959830"],["-90.076980","29.959930"],["-90.076890","29.960030"],["-90.076795","29.960135"],["-90.076700","29.960240"],["-90.076625","29.960325"],["-90.076550","29.960410"],["-90.076440","29.960535"],["-90.076330","29.960660"],["-90.076220","29.960785"],["-90.076110","29.960910"],["-90.076060","29.960960"],["-90.075935","29.961100"],["-90.075810","29.961240"],["-90.075695","29.961370"],["-90.075580","29.961500"],["-90.075470","29.961620"],["-90.075420","29.961680"],["-90.075338","29.961773"],["-90.075255","29.961865"],["-90.075173","29.961958"],["-90.075090","29.962050"],["-90.074990","29.962160"],["-90.074915","29.962245"],["-90.074840","29.962330"],["-90.074755","29.962425"],["-90.074670","29.962520"],["-90.074630","29.962560"],["-90.074510","29.962705"],["-90.074390","29.962850"],["-90.074310","29.962930"],["-90.074235","29.963015"],["-90.074160","29.963100"],["-90.074085","29.963185"],["-90.074010","29.963270"],["-90.073920","29.963370"],["-90.073830","29.963480"],["-90.073745","29.963570"],["-90.073660","29.963660"],["-90.073565","29.963765"],["-90.073470","29.963870"],["-90.073375","29.963975"],["-90.073280","29.964080"],["-90.073230","29.964140"],["-90.073160","29.964220"],["-90.073070","29.964320"],["-90.073002","29.964396"],["-90.072934","29.964473"],["-90.072866","29.964549"],["-90.072798","29.964625"],["-90.072729","29.964701"],["-90.072661","29.964778"],["-90.072593","29.964854"],["-90.072525","29.964930"],["-90.072457","29.965006"],["-90.072389","29.965083"],["-90.072321","29.965159"],["-90.072253","29.965235"],["-90.072184","29.965311"],["-90.072116","29.965388"],["-90.072048","29.965464"],["-90.071980","29.965540"],["-90.071910","29.965610"],["-90.071800","29.965750"],["-90.071790","29.965760"],["-90.071700","29.965860"],["-90.071630","29.965940"],["-90.071555","29.966023"],["-90.071480","29.966105"],["-90.071405","29.966188"],["-90.071330","29.966270"],["-90.071210","29.966410"],["-90.071130","29.966490"],["-90.071100","29.966520"],["-90.071025","29.966605"],["-90.070950","29.966690"],["-90.070835","29.966820"],["-90.070720","29.966950"],["-90.070630","29.967050"],["-90.070540","29.967150"],["-90.070510","29.967180"],["-90.070490","29.967210"],["-90.070430","29.967270"],["-90.070410","29.967300"],["-90.070360","29.967350"],["-90.070240","29.967485"],["-90.070120","29.967620"],["-90.070003","29.967750"],["-90.069885","29.967880"],["-90.069768","29.968010"],["-90.069650","29.968140"],["-90.069565","29.968240"],["-90.069480","29.968340"],["-90.069385","29.968450"],["-90.069290","29.968560"],["-90.069175","29.968685"],["-90.069060","29.968810"],["-90.068950","29.968930"],["-90.068920","29.968970"],["-90.068910","29.968970"],["-90.068880","29.969010"],["-90.068830","29.969070"],["-90.068740","29.969160"],["-90.068700","29.969210"],["-90.068580","29.969350"],["-90.068453","29.969493"],["-90.068325","29.969635"],["-90.068198","29.969778"],["-90.068070","29.969920"],["-90.067940","29.970060"],["-90.067840","29.970170"],["-90.067770","29.970260"],["-90.067685","29.970350"],["-90.067600","29.970440"],["-90.067520","29.970530"],["-90.067460","29.970600"],["-90.067354","29.970719"],["-90.067248","29.970838"],["-90.067141","29.970956"],["-90.067035","29.971075"],["-90.066929","29.971194"],["-90.066823","29.971313"],["-90.066716","29.971431"],["-90.066610","29.971550"],["-90.066600","29.971560"],["-90.066520","29.971650"],["-90.066440","29.971740"],["-90.066360","29.971825"],["-90.066280","29.971910"],["-90.066206","29.971990"],["-90.066133","29.972070"],["-90.066059","29.972150"],["-90.065985","29.972230"],["-90.065911","29.972310"],["-90.065838","29.972390"],["-90.065764","29.972470"],["-90.065690","29.972550"],["-90.065600","29.972650"],["-90.065560","29.972690"],["-90.065440","29.972840"],["-90.065400","29.972870"],["-90.065370","29.972910"],["-90.065255","29.973035"],["-90.065140","29.973160"],["-90.065065","29.973240"],["-90.064990","29.973320"],["-90.064940","29.973380"],["-90.064900","29.973430"],["-90.064880","29.973460"],["-90.064810","29.973520"],["-90.064770","29.973570"],["-90.064670","29.973680"],["-90.064620","29.973740"],["-90.064500","29.973875"],["-90.064380","29.974010"],["-90.064250","29.974160"],["-90.064180","29.974235"],["-90.064110","29.974310"],["-90.064038","29.974391"],["-90.063965","29.974473"],["-90.063893","29.974554"],["-90.063820","29.974635"],["-90.063748","29.974716"],["-90.063675","29.974798"],["-90.063603","29.974879"],["-90.063530","29.974960"],["-90.063445","29.975060"],["-90.063360","29.975160"],["-90.063280","29.975240"],["-90.063205","29.975325"],["-90.063130","29.975410"],["-90.063120","29.975420"],["-90.063030","29.975520"],["-90.062940","29.975620"],["-90.062860","29.975720"],["-90.062770","29.975815"],["-90.062680","29.975910"],["-90.062560","29.976050"],["-90.062550","29.976060"],["-90.062435","29.976190"],["-90.062320","29.976320"],["-90.062243","29.976405"],["-90.062165","29.976490"],["-90.062088","29.976575"],["-90.062010","29.976660"],["-90.061925","29.976755"],["-90.061840","29.976850"],["-90.061750","29.976940"],["-90.061660","29.977030"],["-90.061590","29.977110"],["-90.061450","29.977245"],["-90.061310","29.977380"],["-90.061210","29.977480"],["-90.061110","29.977570"],["-90.061020","29.977650"],["-90.060910","29.977760"],["-90.060790","29.977865"],["-90.060670","29.977970"],["-90.060620","29.978010"],["-90.060535","29.978083"],["-90.060450","29.978155"],["-90.060365","29.978228"],["-90.060280","29.978300"],["-90.060210","29.978360"],["-90.060090","29.978450"],["-90.059990","29.978530"],["-90.059885","29.978620"],["-90.059780","29.978710"],["-90.059660","29.978810"],["-90.059630","29.978830"],["-90.059495","29.978940"],["-90.059360","29.979050"],["-90.059255","29.979135"],["-90.059150","29.979220"],["-90.059013","29.979333"],["-90.058875","29.979445"],["-90.058738","29.979558"],["-90.058600","29.979670"],["-90.058470","29.979770"],["-90.058450","29.979790"],["-90.058300","29.979910"],["-90.058290","29.979920"],["-90.058150","29.980030"],["-90.058000","29.980150"],["-90.057990","29.980160"],["-90.057930","29.980220"],["-90.057815","29.980310"],["-90.057700","29.980400"],["-90.057600","29.980480"],["-90.057520","29.980550"],["-90.057395","29.980650"],["-90.057270","29.980750"],["-90.057145","29.980850"],["-90.057020","29.980950"],["-90.056918","29.981035"],["-90.056815","29.981120"],["-90.056713","29.981205"],["-90.056610","29.981290"],["-90.056490","29.981385"],["-90.056370","29.981480"],["-90.056235","29.981590"],["-90.056100","29.981700"],["-90.056020","29.981760"],["-90.055895","29.981870"],["-90.055770","29.981980"],["-90.055645","29.982080"],["-90.055520","29.982180"],["-90.055430","29.982250"],["-90.055270","29.982380"],["-90.055130","29.982490"],["-90.054990","29.982600"],["-90.054870","29.982700"],["-90.054730","29.982810"],["-90.054660","29.982880"],["-90.054515","29.983010"],["-90.054370","29.983140"],["-90.054360","29.983140"],["-90.054300","29.983200"],["-90.054220","29.983280"],["-90.054145","29.983360"],["-90.054070","29.983440"],["-90.053990","29.983530"],["-90.053940","29.983590"],["-90.053850","29.983690"],["-90.053830","29.983720"],["-90.053790","29.983770"],["-90.053710","29.983880"],["-90.053640","29.983980"],["-90.053560","29.984090"],["-90.053505","29.984180"],["-90.053450","29.984270"],["-90.053370","29.984410"],["-90.053320","29.984518"],["-90.053270","29.984625"],["-90.053220","29.984733"],["-90.053170","29.984840"],["-90.053150","29.984880"],["-90.053090","29.985015"],["-90.053030","29.985150"],["-90.053000","29.985230"],["-90.052960","29.985340"],["-90.052940","29.985420"],["-90.052920","29.985480"],["-90.052900","29.985590"],["-90.052880","29.985700"],["-90.052840","29.985820"],["-90.052820","29.985920"],["-90.052790","29.986050"],["-90.052760","29.986200"],["-90.052735","29.986325"],["-90.052710","29.986450"],["-90.052700","29.986530"],["-90.052665","29.986693"],["-90.052630","29.986855"],["-90.052595","29.987018"],["-90.052560","29.987180"],["-90.052530","29.987315"],["-90.052500","29.987450"],["-90.052490","29.987470"],["-90.052480","29.987530"],["-90.052450","29.987650"],["-90.052400","29.987830"],["-90.052370","29.987940"],["-90.052325","29.988050"],["-90.052280","29.988160"],["-90.052240","29.988265"],["-90.052200","29.988370"],["-90.052140","29.988520"],["-90.052100","29.988590"],["-90.052070","29.988650"],["-90.052010","29.988760"],["-90.052000","29.988770"],["-90.051950","29.988870"],["-90.051920","29.988920"],["-90.051880","29.988980"],["-90.051810","29.989090"],["-90.051790","29.989110"],["-90.051730","29.989200"],["-90.051650","29.989320"],["-90.051570","29.989410"],["-90.051510","29.989490"],["-90.051450","29.989560"],["-90.051360","29.989670"],["-90.051258","29.989783"],["-90.051155","29.989895"],["-90.051053","29.990008"],["-90.050950","29.990120"],["-90.050910","29.990180"],["-90.050830","29.990260"],["-90.050750","29.990350"],["-90.050670","29.990440"],["-90.050570","29.990550"],["-90.050550","29.990580"],["-90.050420","29.990710"],["-90.050350","29.990800"],["-90.050270","29.990880"],["-90.050180","29.990990"],["-90.050110","29.991065"],["-90.050040","29.991140"],["-90.049970","29.991215"],["-90.049900","29.991290"],["-90.049770","29.991440"],["-90.049650","29.991580"],["-90.049510","29.991720"],["-90.049400","29.991850"],["-90.049390","29.991860"],["-90.049320","29.991940"],["-90.049250","29.992020"],["-90.049200","29.992080"],["-90.049120","29.992170"],["-90.049040","29.992260"],["-90.048960","29.992350"],["-90.048860","29.992465"],["-90.048760","29.992580"],["-90.048670","29.992675"],["-90.048580","29.992770"],["-90.048490","29.992880"],["-90.048395","29.992985"],["-90.048300","29.993090"],["-90.048260","29.993130"],["-90.048240","29.993170"],["-90.048170","29.993240"],["-90.048090","29.993330"],["-90.048010","29.993420"],["-90.047940","29.993495"],["-90.047870","29.993570"],["-90.047780","29.993680"],["-90.047700","29.993770"],["-90.047605","29.993875"],["-90.047510","29.993980"],["-90.047415","29.994085"],["-90.047320","29.994190"],["-90.047260","29.994260"],["-90.047165","29.994365"],["-90.047070","29.994470"],["-90.047000","29.994550"],["-90.046950","29.994600"],["-90.046815","29.994750"],["-90.046680","29.994900"],["-90.046630","29.994960"],["-90.046540","29.995060"],["-90.046455","29.995155"],["-90.046370","29.995250"],["-90.046290","29.995350"],["-90.046175","29.995475"],["-90.046060","29.995600"],["-90.045970","29.995700"],["-90.045840","29.995850"],["-90.045810","29.995880"],["-90.045740","29.995960"],["-90.045660","29.996050"],["-90.045560","29.996160"],["-90.045510","29.996210"],["-90.045480","29.996240"],["-90.045430","29.996260"],["-90.045345","29.996365"],["-90.045260","29.996470"],["-90.045240","29.996490"],["-90.045110","29.996640"],["-90.045100","29.996650"],["-90.045020","29.996730"],["-90.044940","29.996820"],["-90.044870","29.996900"],["-90.044770","29.997005"],["-90.044670","29.997110"],["-90.044640","29.997130"],["-90.044535","29.997230"],["-90.044430","29.997330"],["-90.044345","29.997415"],["-90.044260","29.997500"],["-90.044250","29.997510"],["-90.044150","29.997603"],["-90.044050","29.997695"],["-90.043950","29.997788"],["-90.043850","29.997880"],["-90.043730","29.998000"],["-90.043630","29.998090"],["-90.043480","29.998230"],["-90.043380","29.998330"],["-90.043280","29.998430"],["-90.043210","29.998490"],["-90.043140","29.998550"],["-90.042985","29.998685"],["-90.042830","29.998820"],["-90.042800","29.998850"],["-90.042705","29.998925"],["-90.042610","29.999000"],["-90.042520","29.999070"],["-90.042430","29.999140"],["-90.042340","29.999210"],["-90.042250","29.999280"],["-90.042163","29.999346"],["-90.042075","29.999413"],["-90.041988","29.999479"],["-90.041900","29.999545"],["-90.041813","29.999611"],["-90.041725","29.999678"],["-90.041638","29.999744"],["-90.041550","29.999810"],["-90.041428","29.999895"],["-90.041305","29.999980"],["-90.041183","30.000065"],["-90.041060","30.000150"],["-90.040975","30.000218"],["-90.040890","30.000285"],["-90.040805","30.000353"],["-90.040720","30.000420"],["-90.040580","30.000520"],["-90.040475","30.000590"],["-90.040370","30.000660"],["-90.040253","30.000738"],["-90.040135","30.000815"],["-90.040018","30.000893"],["-90.039900","30.000970"],["-90.039750","30.001065"],["-90.039600","30.001160"],["-90.039490","30.001175"],["-90.039380","30.001190"],["-90.039210","30.001260"],["-90.039080","30.001320"],["-90.038940","30.001380"],["-90.038840","30.001420"],["-90.038690","30.001470"],["-90.038530","30.001540"],["-90.038430","30.001580"],["-90.038310","30.001630"],["-90.038180","30.001680"],["-90.038050","30.001730"],["-90.037940","30.001775"],["-90.037830","30.001820"],["-90.037730","30.001860"],["-90.037585","30.001915"],["-90.037440","30.001970"],["-90.037360","30.002010"],["-90.037350","30.002010"],["-90.037210","30.002065"],["-90.037070","30.002120"],["-90.037040","30.002130"],["-90.036960","30.002170"],["-90.036840","30.002220"],["-90.036720","30.002260"],["-90.036600","30.002300"],["-90.036495","30.002340"],["-90.036390","30.002380"],["-90.036300","30.002410"],["-90.036120","30.002470"],["-90.036010","30.002500"],["-90.035900","30.002530"],["-90.035710","30.002580"],["-90.035510","30.002650"],["-90.035350","30.002710"],["-90.035310","30.002720"],["-90.035320","30.002830"],["-90.035320","30.002850"],["-90.035320","30.002930"],["-90.035330","30.002940"],["-90.035330","30.002970"],["-90.035340","30.003070"],["-90.035340","30.003110"],["-90.035350","30.003180"],["-90.035370","30.003300"],["-90.035380","30.003360"],["-90.035410","30.003480"],["-90.035440","30.003610"],["-90.035500","30.003730"],["-90.035540","30.003820"],["-90.035580","30.003910"],["-90.035650","30.004080"],["-90.035480","30.004170"],["-90.035380","30.004215"],["-90.035280","30.004260"],["-90.035210","30.004300"],["-90.035045","30.004380"],["-90.034880","30.004460"],["-90.034778","30.004513"],["-90.034675","30.004565"],["-90.034573","30.004618"],["-90.034470","30.004670"],["-90.034410","30.004700"],["-90.034215","30.004785"],["-90.034020","30.004870"],["-90.033908","30.004920"],["-90.033795","30.004970"],["-90.033683","30.005020"],["-90.033570","30.005070"],["-90.033580","30.005080"],["-90.033660","30.005250"],["-90.033740","30.005410"],["-90.033805","30.005540"],["-90.033870","30.005670"],["-90.033900","30.005720"],["-90.033825","30.005795"],["-90.033810","30.005760"],["-90.033900","30.005720"],["-90.033960","30.005845"],["-90.034020","30.005970"],["-90.034100","30.006120"],["-90.033933","30.006185"],["-90.033765","30.006250"],["-90.033598","30.006315"],["-90.033430","30.006380"],["-90.033280","30.006440"],["-90.033080","30.006520"],["-90.032938","30.006578"],["-90.032795","30.006635"],["-90.032653","30.006693"],["-90.032510","30.006750"],["-90.032365","30.006810"],["-90.032220","30.006870"],["-90.032070","30.006930"],["-90.031880","30.007000"],["-90.031710","30.007070"],["-90.031605","30.007105"],["-90.031500","30.007140"],["-90.031305","30.007200"],["-90.031110","30.007260"],["-90.030993","30.007293"],["-90.030875","30.007325"],["-90.030758","30.007358"],["-90.030640","30.007390"],["-90.030508","30.007425"],["-90.030375","30.007460"],["-90.030243","30.007495"],["-90.030110","30.007530"],["-90.030000","30.007555"],["-90.029890","30.007580"],["-90.029880","30.007580"],["-90.029740","30.007620"],["-90.029560","30.007670"],["-90.029520","30.007680"],["-90.029398","30.007710"],["-90.029275","30.007740"],["-90.029153","30.007770"],["-90.029030","30.007800"],["-90.028908","30.007830"],["-90.028785","30.007860"],["-90.028663","30.007890"],["-90.028540","30.007920"],["-90.028430","30.007945"],["-90.028320","30.007970"],["-90.028120","30.008010"],["-90.028000","30.008035"],["-90.027880","30.008060"],["-90.027730","30.008100"],["-90.027530","30.008150"],["-90.027330","30.008190"],["-90.027130","30.008240"],["-90.026980","30.008280"],["-90.026780","30.008320"],["-90.026580","30.008370"],["-90.026540","30.008380"],["-90.026340","30.008430"],["-90.026140","30.008480"],["-90.025940","30.008520"],["-90.025760","30.008570"],["-90.025615","30.008605"],["-90.025470","30.008640"],["-90.025325","30.008675"],["-90.025180","30.008710"],["-90.025035","30.008745"],["-90.024890","30.008780"],["-90.024745","30.008815"],["-90.024600","30.008850"],["-90.024410","30.008900"],["-90.024340","30.008920"],["-90.024290","30.008930"],["-90.024210","30.008950"],["-90.024100","30.008980"],["-90.023980","30.009010"],["-90.023840","30.009040"],["-90.023650","30.009090"],["-90.023500","30.009126"],["-90.023350","30.009163"],["-90.023200","30.009199"],["-90.023050","30.009235"],["-90.022900","30.009271"],["-90.022750","30.009308"],["-90.022600","30.009344"],["-90.022450","30.009380"],["-90.022280","30.009420"],["-90.022110","30.009460"],["-90.021940","30.009500"],["-90.021770","30.009540"],["-90.021625","30.009575"],["-90.021480","30.009610"],["-90.021370","30.009640"],["-90.021190","30.009690"],["-90.021040","30.009720"],["-90.020890","30.009760"],["-90.020780","30.009780"],["-90.020820","30.009900"],["-90.020840","30.010030"],["-90.020860","30.010180"],["-90.020880","30.010330"],["-90.020829","30.010331"],["-90.020880","30.010330"],["-90.020890","30.010470"],["-90.020902","30.010585"],["-90.020915","30.010700"],["-90.020927","30.010815"],["-90.020940","30.010930"],["-90.020960","30.011110"],["-90.020975","30.011278"],["-90.020990","30.011445"],["-90.021005","30.011613"],["-90.021020","30.011780"],["-90.021035","30.011938"],["-90.021050","30.012095"],["-90.021065","30.012253"],["-90.021080","30.012410"],["-90.020960","30.012420"],["-90.020957","30.012361"],["-90.020960","30.012420"],["-90.021080","30.012420"],["-90.021095","30.012575"],["-90.021110","30.012730"],["-90.021125","30.012885"],["-90.021140","30.013040"],["-90.021155","30.013203"],["-90.021170","30.013365"],["-90.021185","30.013528"],["-90.021200","30.013690"],["-90.021215","30.013850"],["-90.021230","30.014010"],["-90.021245","30.014170"],["-90.021260","30.014330"],["-90.021150","30.014330"],["-90.021140","30.014271"],["-90.021150","30.014330"],["-90.021260","30.014330"],["-90.021275","30.014470"],["-90.021290","30.014610"],["-90.021300","30.014720"],["-90.021310","30.014830"],["-90.021330","30.014980"],["-90.021345","30.015140"],["-90.021360","30.015300"],["-90.021375","30.015460"],["-90.021390","30.015620"],["-90.021402","30.015748"],["-90.021415","30.015875"],["-90.021427","30.016003"],["-90.021389","30.016133"],["-90.021440","30.016130"],["-90.021450","30.016230"],["-90.021465","30.016400"],["-90.021480","30.016570"],["-90.021495","30.016740"],["-90.021510","30.016910"],["-90.021525","30.017070"],["-90.021540","30.017230"],["-90.021555","30.017390"],["-90.021570","30.017550"],["-90.021580","30.017723"],["-90.021590","30.017895"],["-90.021600","30.018068"],["-90.021610","30.018240"],["-90.021569","30.018240"],["-90.021610","30.018240"],["-90.021610","30.018340"],["-90.021640","30.018500"],["-90.021503","30.018536"],["-90.021365","30.018573"],["-90.021228","30.018609"],["-90.021090","30.018645"],["-90.020953","30.018681"],["-90.020815","30.018718"],["-90.020678","30.018754"],["-90.020540","30.018790"],["-90.020343","30.018843"],["-90.020145","30.018895"],["-90.019948","30.018948"],["-90.019750","30.019000"],["-90.019580","30.019040"],["-90.019560","30.018987"],["-90.019580","30.019040"],["-90.019378","30.019093"],["-90.019175","30.019145"],["-90.018973","30.019198"],["-90.018770","30.019250"],["-90.018570","30.019308"],["-90.018370","30.019365"],["-90.018170","30.019423"],["-90.017970","30.019480"],["-90.017970","30.019350"],["-90.018026","30.019354"],["-90.017970","30.019350"],["-90.017970","30.019480"],["-90.017855","30.019510"],["-90.017740","30.019540"],["-90.017625","30.019570"],["-90.017510","30.019600"],["-90.017335","30.019645"],["-90.017160","30.019690"],["-90.016980","30.019740"],["-90.016783","30.019790"],["-90.016585","30.019840"],["-90.016388","30.019890"],["-90.016190","30.019940"],["-90.016180","30.019800"],["-90.016296","30.019785"],["-90.016180","30.019800"],["-90.016190","30.019940"],["-90.016043","30.019980"],["-90.015895","30.020020"],["-90.015748","30.020060"],["-90.015600","30.020100"],["-90.015400","30.020150"],["-90.015380","30.020150"],["-90.015342","30.020032"],["-90.015380","30.020150"],["-90.015225","30.020195"],["-90.015070","30.020240"],["-90.015030","30.020250"],["-90.014830","30.020295"],["-90.014630","30.020340"],["-90.014460","30.020410"],["-90.014340","30.020440"],["-90.014220","30.020470"],["-90.014040","30.020510"],["-90.014030","30.020520"],["-90.014020","30.020520"],["-90.013875","30.020560"],["-90.013730","30.020600"],["-90.013600","30.020630"],["-90.013480","30.020660"],["-90.013365","30.020685"],["-90.013250","30.020710"],["-90.013130","30.020730"],["-90.012950","30.020760"],["-90.012940","30.020670"],["-90.013021","30.020664"],["-90.012940","30.020670"],["-90.012950","30.020760"],["-90.012758","30.020780"],["-90.012565","30.020800"],["-90.012373","30.020820"],["-90.012180","30.020840"],["-90.011965","30.020860"],["-90.011750","30.020880"],["-90.011735","30.020796"],["-90.011750","30.020880"],["-90.011660","30.020890"],["-90.011548","30.020900"],["-90.011435","30.020910"],["-90.011323","30.020920"],["-90.011210","30.020930"],["-90.011098","30.020940"],["-90.010985","30.020950"],["-90.010873","30.020960"],["-90.010760","30.020970"],["-90.010646","30.020980"],["-90.010533","30.020990"],["-90.010419","30.021000"],["-90.010305","30.021010"],["-90.010191","30.021020"],["-90.010078","30.021030"],["-90.009964","30.021040"],["-90.009850","30.021050"],["-90.009850","30.020990"],["-90.009889","30.020984"],["-90.009850","30.020990"],["-90.009850","30.021050"],["-90.009670","30.021070"],["-90.009536","30.021084"],["-90.009403","30.021099"],["-90.009269","30.021113"],["-90.009135","30.021128"],["-90.009001","30.021142"],["-90.008868","30.021156"],["-90.008734","30.021171"],["-90.008600","30.021185"],["-90.008466","30.021199"],["-90.008333","30.021214"],["-90.008199","30.021228"],["-90.008065","30.021243"],["-90.007931","30.021257"],["-90.007798","30.021271"],["-90.007664","30.021286"],["-90.007530","30.021300"],["-90.007470","30.021310"],["-90.007345","30.021323"],["-90.007220","30.021335"],["-90.007095","30.021348"],["-90.006970","30.021360"],["-90.006810","30.021370"],["-90.006650","30.021380"],["-90.006530","30.021390"],["-90.006440","30.021390"],["-90.006258","30.021408"],["-90.006075","30.021425"],["-90.005893","30.021443"],["-90.005710","30.021460"],["-90.005698","30.021371"],["-90.005710","30.021460"],["-90.005590","30.021470"],["-90.005390","30.021490"],["-90.005173","30.021510"],["-90.004955","30.021530"],["-90.004738","30.021550"],["-90.004520","30.021570"],["-90.004505","30.021484"],["-90.004520","30.021570"],["-90.004370","30.021580"],["-90.004153","30.021600"],["-90.003935","30.021620"],["-90.003718","30.021640"],["-90.003500","30.021660"],["-90.003318","30.021675"],["-90.003135","30.021690"],["-90.002953","30.021705"],["-90.002770","30.021720"],["-90.002670","30.021730"],["-90.002490","30.021750"],["-90.002363","30.021763"],["-90.002235","30.021775"],["-90.002108","30.021788"],["-90.001980","30.021800"],["-90.001975","30.021719"],["-90.001980","30.021800"],["-90.001880","30.021810"],["-90.001700","30.021825"],["-90.001520","30.021840"],["-90.001385","30.021850"],["-90.001250","30.021860"],["-90.001095","30.021875"],["-90.000940","30.021890"],["-90.000725","30.021905"],["-90.000510","30.021920"],["-90.000480","30.021930"],["-90.000340","30.021940"],["-90.000220","30.021950"],["-90.000110","30.021965"],["-90.000000","30.021980"],["-89.999860","30.022005"],["-89.999720","30.022030"],["-89.999570","30.022070"],["-89.999630","30.022240"],["-89.999631","30.022354"],["-89.999633","30.022468"],["-89.999720","30.022440"],["-89.999760","30.022550"],["-89.999790","30.022630"],["-89.999830","30.022720"],["-89.999890","30.022860"],["-89.999970","30.023010"],["-90.000030","30.023120"],["-90.000130","30.023280"],["-90.000195","30.023375"],["-90.000260","30.023470"],["-90.000240","30.023580"],["-90.000200","30.023670"],["-90.000180","30.023720"],["-90.000150","30.023770"],["-90.000140","30.023810"],["-89.999980","30.023870"],["-89.999930","30.023890"],["-89.999862","30.023733"],["-89.999795","30.023576"],["-89.999862","30.023733"],["-89.999930","30.023890"],["-89.999860","30.023910"],["-89.999770","30.023940"],["-89.999610","30.023980"],["-89.999400","30.024020"],["-89.999285","30.024045"],["-89.999170","30.024070"],["-89.998958","30.024113"],["-89.998745","30.024155"],["-89.998533","30.024198"],["-89.998320","30.024240"],["-89.998155","30.024270"],["-89.997990","30.024300"],["-89.997830","30.024340"],["-89.997670","30.024380"],["-89.997530","30.024420"],["-89.997440","30.024250"],["-89.997474","30.024234"],["-89.997440","30.024250"],["-89.997530","30.024420"],["-89.997405","30.024465"],["-89.997280","30.024510"],["-89.997140","30.024555"],["-89.997000","30.024600"],["-89.996870","30.024650"],["-89.996740","30.024700"],["-89.996628","30.024738"],["-89.996515","30.024775"],["-89.996403","30.024813"],["-89.996290","30.024850"],["-89.996220","30.024880"],["-89.996040","30.024960"],["-89.996010","30.024980"],["-89.995873","30.025033"],["-89.995735","30.025085"],["-89.995598","30.025138"],["-89.995460","30.025190"],["-89.995310","30.025245"],["-89.995160","30.025300"],["-89.995048","30.025345"],["-89.994935","30.025390"],["-89.994823","30.025435"],["-89.994710","30.025480"],["-89.994636","30.025399"],["-89.994670","30.025390"],["-89.994710","30.025470"],["-89.994560","30.025525"],["-89.994410","30.025580"],["-89.994300","30.025630"],["-89.994145","30.025685"],["-89.993990","30.025740"],["-89.993860","30.025800"],["-89.993760","30.025840"],["-89.993610","30.025920"],["-89.993515","30.025975"],["-89.993420","30.026030"],["-89.993330","30.026090"],["-89.993240","30.026150"],["-89.993145","30.026220"],["-89.993050","30.026290"],["-89.992955","30.026360"],["-89.992860","30.026430"],["-89.992760","30.026490"],["-89.992650","30.026560"],["-89.992550","30.026630"],["-89.992420","30.026700"],["-89.992260","30.026780"],["-89.992080","30.026850"],["-89.992039","30.026779"],["-89.992080","30.026850"],["-89.992040","30.026860"],["-89.991935","30.026905"],["-89.991830","30.026950"],["-89.991630","30.027030"],["-89.991445","30.027105"],["-89.991260","30.027180"],["-89.991160","30.027220"],["-89.991010","30.027280"],["-89.990890","30.027330"],["-89.990770","30.027380"],["-89.990650","30.027430"],["-89.990520","30.027490"],["-89.990380","30.027550"],["-89.990230","30.027600"],["-89.990040","30.027670"],["-89.989850","30.027740"],["-89.989740","30.027770"],["-89.989540","30.027830"],["-89.989340","30.027880"],["-89.989140","30.027930"],["-89.988980","30.027960"],["-89.988940","30.027870"],["-89.988900","30.027780"],["-89.988920","30.027756"],["-89.988900","30.027780"],["-89.988940","30.027870"],["-89.988980","30.027960"],["-89.988810","30.027990"],["-89.988640","30.028020"],["-89.988460","30.028050"],["-89.988280","30.028080"],["-89.988100","30.028110"],["-89.988030","30.028120"],["-89.987920","30.028130"],["-89.987780","30.028150"],["-89.987650","30.028175"],["-89.987520","30.028200"],["-89.987361","30.028225"],["-89.987203","30.028250"],["-89.987044","30.028275"],["-89.986885","30.028300"],["-89.986726","30.028325"],["-89.986568","30.028350"],["-89.986409","30.028375"],["-89.986250","30.028400"],["-89.986045","30.028435"],["-89.985840","30.028470"],["-89.985718","30.028490"],["-89.985556","30.028464"],["-89.985395","30.028437"],["-89.985253","30.028510"],["-89.985111","30.028582"],["-89.984961","30.028603"],["-89.984812","30.028623"],["-89.984662","30.028643"],["-89.984512","30.028664"],["-89.984363","30.028684"],["-89.984213","30.028704"],["-89.984064","30.028725"],["-89.983914","30.028745"],["-89.983765","30.028765"],["-89.983615","30.028786"],["-89.983466","30.028806"],["-89.983316","30.028826"],["-89.983167","30.028847"],["-89.983017","30.028867"],["-89.982868","30.028887"],["-89.982718","30.028908"],["-89.982656","30.028807"],["-89.982594","30.028707"],["-89.982532","30.028607"],["-89.982470","30.028507"],["-89.982408","30.028407"],["-89.982346","30.028307"],["-89.982284","30.028206"],["-89.982222","30.028106"],["-89.982160","30.028006"],["-89.982098","30.027906"],["-89.982036","30.027806"],["-89.981974","30.027706"],["-89.981912","30.027606"],["-89.981850","30.027505"],["-89.981788","30.027405"],["-89.981726","30.027305"],["-89.981664","30.027205"],["-89.981602","30.027105"],["-89.981540","30.027005"],["-89.981478","30.026905"],["-89.981416","30.026804"],["-89.981353","30.026704"],["-89.981291","30.026604"],["-89.981229","30.026504"],["-89.981167","30.026404"],["-89.981105","30.026304"],["-89.981043","30.026204"],["-89.980981","30.026103"],["-89.980919","30.026003"],["-89.980857","30.025903"],["-89.980795","30.025803"],["-89.980733","30.025703"],["-89.980534","30.025689"],["-89.980518","30.025784"],["-89.980503","30.025879"],["-89.980626","30.025986"],["-89.980729","30.026148"],["-89.980831","30.026310"],["-89.980934","30.026472"],["-89.981036","30.026634"],["-89.981139","30.026796"],["-89.981242","30.026958"],["-89.981344","30.027120"],["-89.981447","30.027282"],["-89.981549","30.027444"],["-89.981652","30.027606"],["-89.981754","30.027768"],["-89.981857","30.027930"],["-89.981911","30.028016"],["-89.981965","30.028103"],["-89.982018","30.028189"],["-89.982072","30.028276"],["-89.982126","30.028362"],["-89.982180","30.028449"],["-89.982233","30.028535"],["-89.982287","30.028621"],["-89.982200","30.028720"],["-89.982305","30.028780"],["-89.982409","30.028840"],["-89.982463","30.028961"],["-89.982300","30.028989"],["-89.982137","30.029017"],["-89.981975","30.029044"],["-89.981812","30.029072"],["-89.981650","30.029100"],["-89.981487","30.029128"],["-89.981324","30.029156"],["-89.981162","30.029184"],["-89.980999","30.029212"],["-89.980837","30.029239"],["-89.980674","30.029267"],["-89.980511","30.029295"],["-89.980349","30.029323"],["-89.980186","30.029351"],["-89.980024","30.029379"],["-89.979861","30.029407"],["-89.979701","30.029447"],["-89.979542","30.029487"],["-89.979382","30.029527"],["-89.979223","30.029567"],["-89.979063","30.029607"],["-89.978903","30.029647"],["-89.978744","30.029687"],["-89.978584","30.029727"],["-89.978439","30.029792"],["-89.978295","30.029857"],["-89.978150","30.029922"],["-89.978005","30.029987"],["-89.977885","30.030051"],["-89.977765","30.030115"],["-89.977645","30.030179"],["-89.977525","30.030243"],["-89.977405","30.030306"],["-89.977285","30.030370"],["-89.977165","30.030434"],["-89.977045","30.030498"],["-89.976925","30.030562"],["-89.976805","30.030626"],["-89.976685","30.030690"],["-89.976565","30.030754"],["-89.976444","30.030817"],["-89.976324","30.030881"],["-89.976204","30.030945"],["-89.976092","30.031005"],["-89.975979","30.031064"],["-89.975943","30.031078"],["-89.975880","30.031042"],["-89.975822","30.030957"],["-89.975765","30.030872"],["-89.975707","30.030786"],["-89.975649","30.030701"],["-89.975591","30.030616"],["-89.975533","30.030531"],["-89.975476","30.030446"],["-89.975418","30.030361"],["-89.975360","30.030275"],["-89.975302","30.030190"],["-89.975244","30.030105"],["-89.975187","30.030020"],["-89.975129","30.029935"],["-89.975071","30.029850"],["-89.975013","30.029764"],["-89.974955","30.029679"],["-89.974960","30.029613"],["-89.974920","30.029570"],["-89.975020","30.029500"],["-89.974880","30.029380"],["-89.974760","30.029500"],["-89.974630","30.029580"],["-89.974510","30.029650"],["-89.974390","30.029730"],["-89.974370","30.029740"],["-89.974240","30.029820"],["-89.974060","30.029933"],["-89.973880","30.030045"],["-89.973700","30.030158"],["-89.973520","30.030270"],["-89.973430","30.030150"],["-89.973490","30.030110"],["-89.973520","30.030150"],["-89.973490","30.030110"],["-89.973430","30.030150"],["-89.973520","30.030270"],["-89.973350","30.030375"],["-89.973200","30.030469"],["-89.973049","30.030562"],["-89.972899","30.030656"],["-89.972749","30.030750"],["-89.972599","30.030843"],["-89.972448","30.030937"],["-89.972298","30.031031"],["-89.972148","30.031124"],["-89.971989","30.031165"],["-89.971958","30.031174"],["-89.971958","30.031174"],["-89.971902","30.031135"],["-89.971833","30.031041"],["-89.971764","30.030946"],["-89.971695","30.030852"],["-89.971626","30.030758"],["-89.971557","30.030663"],["-89.971488","30.030569"],["-89.971419","30.030474"],["-89.971350","30.030380"],["-89.971245","30.030235"],["-89.971140","30.030090"],["-89.971240","30.030030"],["-89.971184","30.029961"],["-89.971240","30.030030"],["-89.971140","30.030090"],["-89.971082","30.030005"],["-89.971025","30.029920"],["-89.970967","30.029835"],["-89.970910","30.029750"],["-89.970829","30.029639"],["-89.970747","30.029528"],["-89.970666","30.029416"],["-89.970585","30.029305"],["-89.970504","30.029194"],["-89.970422","30.029083"],["-89.970341","30.028971"],["-89.970260","30.028860"],["-89.970170","30.028735"],["-89.970080","30.028610"],["-89.970017","30.028515"],["-89.969955","30.028420"],["-89.969892","30.028325"],["-89.969830","30.028230"],["-89.969720","30.028070"],["-89.969655","30.027985"],["-89.969590","30.027900"],["-89.969525","30.027815"],["-89.969460","30.027730"],["-89.969380","30.027605"],["-89.969300","30.027480"],["-89.969280","30.027450"],["-89.969215","30.027355"],["-89.969150","30.027260"],["-89.969090","30.027150"],["-89.969166","30.027130"],["-89.969090","30.027150"],["-89.969080","30.027150"],["-89.969050","30.027080"],["-89.968990","30.026940"],["-89.968950","30.026820"],["-89.968940","30.026800"],["-89.968940","30.026770"],["-89.968940","30.026740"],["-89.968927","30.026635"],["-89.968915","30.026530"],["-89.968902","30.026425"],["-89.968890","30.026320"],["-89.968875","30.026210"],["-89.968860","30.026100"],["-89.968847","30.025978"],["-89.968835","30.025855"],["-89.968822","30.025733"],["-89.968810","30.025610"],["-89.968795","30.025440"],["-89.968780","30.025270"],["-89.968765","30.025100"],["-89.968750","30.024930"],["-89.968737","30.024808"],["-89.968725","30.024685"],["-89.968712","30.024563"],["-89.968700","30.024440"],["-89.968769","30.024437"],["-89.968700","30.024440"],["-89.968680","30.024250"],["-89.968667","30.024120"],["-89.968655","30.023990"],["-89.968642","30.023860"],["-89.968627","30.023733"],["-89.968610","30.023560"],["-89.968595","30.023388"],["-89.968580","30.023215"],["-89.968565","30.023043"],["-89.968550","30.022870"],["-89.968527","30.022700"],["-89.968505","30.022530"],["-89.968482","30.022360"],["-89.968460","30.022190"],["-89.968445","30.022018"],["-89.968430","30.021845"],["-89.968415","30.021673"],["-89.968400","30.021500"],["-89.968390","30.021390"],["-89.968473","30.021384"],["-89.968390","30.021390"],["-89.968375","30.021250"],["-89.968360","30.021110"],["-89.968345","30.020970"],["-89.968330","30.020830"],["-89.968316","30.020693"],["-89.968302","30.020555"],["-89.968289","30.020418"],["-89.968275","30.020280"],["-89.968261","30.020143"],["-89.968247","30.020005"],["-89.968234","30.019868"],["-89.968220","30.019730"],["-89.968207","30.019598"],["-89.968195","30.019465"],["-89.968182","30.019333"],["-89.968170","30.019200"],["-89.968150","30.019035"],["-89.968130","30.018870"],["-89.968115","30.018720"],["-89.968100","30.018570"],["-89.968090","30.018450"],["-89.967940","30.018490"],["-89.967795","30.018525"],["-89.967650","30.018560"],["-89.967530","30.018590"],["-89.967410","30.018620"],["-89.967290","30.018650"],["-89.967170","30.018680"],["-89.967038","30.018710"],["-89.966905","30.018740"],["-89.966773","30.018770"],["-89.966640","30.018800"],["-89.966560","30.018820"],["-89.966450","30.018850"],["-89.966305","30.018888"],["-89.966160","30.018925"],["-89.966015","30.018963"],["-89.965870","30.019000"],["-89.965660","30.019050"],["-89.965455","30.019100"],["-89.965250","30.019150"],["-89.965235","30.019102"],["-89.965250","30.019150"],["-89.965110","30.019190"],["-89.964935","30.019233"],["-89.964760","30.019275"],["-89.964585","30.019318"],["-89.964410","30.019360"],["-89.964265","30.019398"],["-89.964120","30.019435"],["-89.963975","30.019473"],["-89.963830","30.019510"],["-89.963720","30.019540"],["-89.963563","30.019578"],["-89.963405","30.019615"],["-89.963248","30.019653"],["-89.963090","30.019690"],["-89.963075","30.019634"],["-89.963090","30.019690"],["-89.963040","30.019700"],["-89.962860","30.019740"],["-89.962723","30.019775"],["-89.962585","30.019810"],["-89.962448","30.019845"],["-89.962310","30.019880"],["-89.962163","30.019918"],["-89.962015","30.019955"],["-89.961868","30.019993"],["-89.961720","30.020030"],["-89.961698","30.019962"],["-89.961720","30.020030"],["-89.961610","30.020060"],["-89.961499","30.020090"],["-89.961388","30.020120"],["-89.961276","30.020150"],["-89.961165","30.020180"],["-89.961054","30.020210"],["-89.960943","30.020240"],["-89.960831","30.020270"],["-89.960720","30.020300"],["-89.960620","30.020320"],["-89.960475","30.020355"],["-89.960330","30.020390"],["-89.960125","30.020440"],["-89.959920","30.020490"],["-89.959805","30.020520"],["-89.959690","30.020550"],["-89.959590","30.020570"],["-89.959480","30.020595"],["-89.959370","30.020620"],["-89.959351","30.020552"],["-89.959370","30.020620"],["-89.959230","30.020650"],["-89.959080","30.020690"],["-89.958965","30.020720"],["-89.958850","30.020750"],["-89.958730","30.020780"],["-89.958610","30.020810"],["-89.958490","30.020840"],["-89.958370","30.020870"],["-89.958250","30.020900"],["-89.958130","30.020930"],["-89.958010","30.020960"],["-89.957890","30.020990"],["-89.957690","30.021040"],["-89.957490","30.021090"],["-89.957305","30.021135"],["-89.957120","30.021180"],["-89.956990","30.021214"],["-89.956860","30.021248"],["-89.956730","30.021281"],["-89.956600","30.021315"],["-89.956470","30.021349"],["-89.956340","30.021383"],["-89.956210","30.021416"],["-89.956080","30.021450"],["-89.955970","30.021470"],["-89.955790","30.021520"],["-89.955764","30.021438"],["-89.955790","30.021520"],["-89.955670","30.021550"],["-89.955555","30.021575"],["-89.955440","30.021600"],["-89.955390","30.021610"],["-89.955240","30.021648"],["-89.955090","30.021685"],["-89.954940","30.021723"],["-89.954790","30.021760"],["-89.954658","30.021795"],["-89.954525","30.021830"],["-89.954393","30.021865"],["-89.954260","30.021900"],["-89.954128","30.021935"],["-89.953995","30.021970"],["-89.953863","30.022005"],["-89.953730","30.022040"],["-89.953596","30.022079"],["-89.953463","30.022118"],["-89.953329","30.022156"],["-89.953195","30.022195"],["-89.953061","30.022234"],["-89.952928","30.022273"],["-89.952794","30.022311"],["-89.952660","30.022350"],["-89.952545","30.022385"],["-89.952430","30.022420"],["-89.952315","30.022455"],["-89.952200","30.022490"],["-89.952005","30.022545"],["-89.951810","30.022600"],["-89.951796","30.022557"],["-89.951810","30.022600"],["-89.951610","30.022660"],["-89.951480","30.022703"],["-89.951350","30.022745"],["-89.951220","30.022788"],["-89.951090","30.022830"],["-89.950935","30.022880"],["-89.950780","30.022930"],["-89.950635","30.022980"],["-89.950490","30.023030"],["-89.950373","30.023070"],["-89.950255","30.023110"],["-89.950138","30.023150"],["-89.950020","30.023190"],["-89.949890","30.023233"],["-89.949760","30.023275"],["-89.949630","30.023318"],["-89.949500","30.023360"],["-89.949390","30.023400"],["-89.949200","30.023470"],["-89.949010","30.023540"],["-89.948820","30.023610"],["-89.948640","30.023675"],["-89.948460","30.023740"],["-89.948360","30.023780"],["-89.948228","30.023828"],["-89.948095","30.023875"],["-89.947963","30.023923"],["-89.947830","30.023970"],["-89.947798","30.023907"],["-89.947830","30.023970"],["-89.947650","30.024040"],["-89.947460","30.024100"],["-89.947360","30.024140"],["-89.947210","30.024180"],["-89.947075","30.024225"],["-89.946940","30.024270"],["-89.946805","30.024315"],["-89.946670","30.024360"],["-89.946565","30.024405"],["-89.946460","30.024450"],["-89.946450","30.024460"],["-89.946248","30.024530"],["-89.946045","30.024600"],["-89.945843","30.024670"],["-89.945640","30.024740"],["-89.945503","30.024785"],["-89.945365","30.024830"],["-89.945228","30.024875"],["-89.945090","30.024920"],["-89.944930","30.024975"],["-89.944770","30.025030"],["-89.944610","30.025085"],["-89.944450","30.025140"],["-89.944265","30.025205"],["-89.944080","30.025270"],["-89.943960","30.025314"],["-89.943840","30.025358"],["-89.943720","30.025401"],["-89.943600","30.025445"],["-89.943480","30.025489"],["-89.943360","30.025533"],["-89.943240","30.025576"],["-89.943120","30.025620"],["-89.943040","30.025640"],["-89.942905","30.025690"],["-89.942770","30.025740"],["-89.942635","30.025790"],["-89.942500","30.025840"],["-89.942330","30.025895"],["-89.942160","30.025950"],["-89.941970","30.026020"],["-89.941838","30.026068"],["-89.941705","30.026115"],["-89.941573","30.026163"],["-89.941440","30.026210"],["-89.941285","30.026265"],["-89.941130","30.026320"],["-89.940973","30.026375"],["-89.940815","30.026430"],["-89.940658","30.026485"],["-89.940500","30.026540"],["-89.940343","30.026595"],["-89.940185","30.026650"],["-89.940028","30.026705"],["-89.939870","30.026760"],["-89.939730","30.026810"],["-89.939550","30.026870"],["-89.939425","30.026915"],["-89.939300","30.026960"],["-89.939250","30.026980"],["-89.939240","30.026980"],["-89.939100","30.027030"],["-89.938920","30.027095"],["-89.938740","30.027160"],["-89.938535","30.027230"],["-89.938330","30.027300"],["-89.938140","30.027365"],["-89.937950","30.027430"],["-89.937758","30.027498"],["-89.937565","30.027565"],["-89.937373","30.027633"],["-89.937180","30.027700"],["-89.937025","30.027753"],["-89.936870","30.027805"],["-89.936715","30.027858"],["-89.936560","30.027910"],["-89.936420","30.027965"],["-89.936280","30.028020"],["-89.936150","30.028060"],["-89.936008","30.028113"],["-89.935865","30.028165"],["-89.935723","30.028218"],["-89.935580","30.028270"],["-89.935460","30.028313"],["-89.935340","30.028355"],["-89.935220","30.028398"],["-89.935100","30.028440"],["-89.934908","30.028508"],["-89.934715","30.028575"],["-89.934523","30.028643"],["-89.934330","30.028710"],["-89.934205","30.028760"],["-89.934080","30.028810"],["-89.933908","30.028865"],["-89.933735","30.028920"],["-89.933563","30.028975"],["-89.933390","30.029030"],["-89.933285","30.029068"],["-89.933180","30.029105"],["-89.933075","30.029143"],["-89.932970","30.029180"],["-89.932785","30.029245"],["-89.932600","30.029310"],["-89.932558","30.029222"],["-89.932600","30.029310"],["-89.932485","30.029350"],["-89.932370","30.029390"],["-89.932200","30.029450"],["-89.932030","30.029510"],["-89.931898","30.029560"],["-89.931765","30.029610"],["-89.931633","30.029660"],["-89.931500","30.029710"],["-89.931310","30.029780"],["-89.931185","30.029825"],["-89.931060","30.029870"],["-89.930930","30.029910"],["-89.930800","30.029950"],["-89.930720","30.029980"],["-89.930697","30.029924"],["-89.930720","30.029980"],["-89.930583","30.030025"],["-89.930445","30.030070"],["-89.930308","30.030115"],["-89.930170","30.030160"],["-89.930048","30.030205"],["-89.929925","30.030250"],["-89.929803","30.030295"],["-89.929680","30.030340"],["-89.929560","30.030380"],["-89.929365","30.030445"],["-89.929170","30.030510"],["-89.929008","30.030570"],["-89.928845","30.030630"],["-89.928683","30.030690"],["-89.928520","30.030750"],["-89.928395","30.030795"],["-89.928270","30.030840"],["-89.928180","30.030870"],["-89.927990","30.030940"],["-89.927935","30.030830"],["-89.927990","30.030940"],["-89.927875","30.030980"],["-89.927760","30.031020"],["-89.927600","30.031070"],["-89.927660","30.031180"],["-89.927702","30.031275"],["-89.927745","30.031370"],["-89.927787","30.031465"],["-89.927830","30.031560"],["-89.927880","30.031670"],["-89.927910","30.031740"],["-89.927940","30.031780"],["-89.927980","30.031870"],["-89.928035","30.031995"],["-89.928090","30.032120"],["-89.928180","30.032290"],["-89.928235","30.032410"],["-89.928290","30.032530"],["-89.928332","30.032623"],["-89.928375","30.032715"],["-89.928417","30.032808"],["-89.928460","30.032900"],["-89.928515","30.033025"],["-89.928570","30.033150"],["-89.928627","30.033288"],["-89.928685","30.033425"],["-89.928742","30.033563"],["-89.928800","30.033700"],["-89.928820","30.033730"],["-89.928890","30.033890"],["-89.928825","30.033909"],["-89.928890","30.033890"],["-89.928960","30.034055"],["-89.929030","30.034220"],["-89.929080","30.034320"],["-89.929140","30.034475"],["-89.929200","30.034630"],["-89.929260","30.034785"],["-89.929320","30.034940"],["-89.929370","30.035100"],["-89.929420","30.035260"],["-89.929460","30.035370"],["-89.929485","30.035470"],["-89.929510","30.035570"],["-89.929550","30.035725"],["-89.929590","30.035880"],["-89.929630","30.036035"],["-89.929670","30.036190"],["-89.929692","30.036300"],["-89.929715","30.036410"],["-89.929737","30.036520"],["-89.929760","30.036630"],["-89.929667","30.036645"],["-89.929760","30.036630"],["-89.929780","30.036750"],["-89.929625","30.036798"],["-89.929470","30.036845"],["-89.929315","30.036893"],["-89.929160","30.036940"],["-89.929048","30.036974"],["-89.928936","30.037009"],["-89.928824","30.037043"],["-89.928713","30.037078"],["-89.928601","30.037112"],["-89.928489","30.037146"],["-89.928377","30.037181"],["-89.928265","30.037215"],["-89.928153","30.037249"],["-89.928041","30.037284"],["-89.927929","30.037318"],["-89.927818","30.037353"],["-89.927706","30.037387"],["-89.927594","30.037421"],["-89.927482","30.037456"],["-89.927370","30.037490"],["-89.927253","30.037525"],["-89.927135","30.037560"],["-89.927018","30.037595"],["-89.926900","30.037630"],["-89.926873","30.037572"],["-89.926900","30.037630"],["-89.926750","30.037670"],["-89.926600","30.037715"],["-89.926450","30.037760"],["-89.926339","30.037794"],["-89.926228","30.037828"],["-89.926116","30.037861"],["-89.926005","30.037895"],["-89.925894","30.037929"],["-89.925783","30.037963"],["-89.925671","30.037996"],["-89.925560","30.038030"],["-89.925446","30.038066"],["-89.925333","30.038101"],["-89.925219","30.038137"],["-89.925105","30.038173"],["-89.924991","30.038208"],["-89.924878","30.038244"],["-89.924764","30.038279"],["-89.924650","30.038315"],["-89.924536","30.038351"],["-89.924423","30.038386"],["-89.924309","30.038422"],["-89.924195","30.038458"],["-89.924081","30.038493"],["-89.923968","30.038529"],["-89.923854","30.038564"],["-89.923740","30.038600"],["-89.923720","30.038547"],["-89.923740","30.038600"],["-89.923630","30.038630"],["-89.923436","30.038688"],["-89.923243","30.038745"],["-89.923049","30.038803"],["-89.922855","30.038860"],["-89.922661","30.038918"],["-89.922468","30.038975"],["-89.922274","30.039033"],["-89.922080","30.039090"],["-89.922057","30.039046"],["-89.922080","30.039090"],["-89.921930","30.039140"],["-89.921773","30.039195"],["-89.921615","30.039250"],["-89.921458","30.039305"],["-89.921300","30.039360"],["-89.921140","30.039400"],["-89.920980","30.039440"],["-89.920820","30.039480"],["-89.920660","30.039520"],["-89.920545","30.039555"],["-89.920430","30.039590"],["-89.920315","30.039625"],["-89.920200","30.039660"],["-89.920085","30.039695"],["-89.919970","30.039730"],["-89.919855","30.039765"],["-89.919740","30.039800"],["-89.919610","30.039845"],["-89.919480","30.039890"],["-89.919461","30.039847"],["-89.919480","30.039890"],["-89.919310","30.039940"],["-89.919178","30.039978"],["-89.919045","30.040015"],["-89.918913","30.040053"],["-89.918780","30.040090"],["-89.918620","30.040140"],["-89.918415","30.040203"],["-89.918210","30.040265"],["-89.918005","30.040328"],["-89.917800","30.040390"],["-89.917618","30.040445"],["-89.917435","30.040500"],["-89.917253","30.040555"],["-89.917070","30.040610"],["-89.917048","30.040547"],["-89.917070","30.040610"],["-89.916980","30.040640"],["-89.916873","30.040673"],["-89.916765","30.040705"],["-89.916658","30.040738"],["-89.916550","30.040770"],["-89.916345","30.040835"],["-89.916140","30.040900"],["-89.916010","30.040940"],["-89.915880","30.040980"],["-89.915750","30.041010"],["-89.915550","30.041070"],["-89.915420","30.041110"],["-89.915290","30.041150"],["-89.915125","30.041200"],["-89.914960","30.041250"],["-89.914930","30.041260"],["-89.914760","30.041310"],["-89.914560","30.041370"],["-89.914393","30.041423"],["-89.914225","30.041475"],["-89.914058","30.041528"],["-89.913890","30.041580"],["-89.913865","30.041520"],["-89.913890","30.041580"],["-89.913750","30.041620"],["-89.913680","30.041445"],["-89.913610","30.041270"],["-89.913540","30.041100"],["-89.913470","30.040930"],["-89.913414","30.040791"],["-89.913357","30.040653"],["-89.913301","30.040514"],["-89.913245","30.040375"],["-89.913189","30.040236"],["-89.913132","30.040098"],["-89.913076","30.039959"],["-89.913020","30.039820"],["-89.912970","30.039691"],["-89.912920","30.039563"],["-89.912870","30.039434"],["-89.912820","30.039305"],["-89.912770","30.039176"],["-89.912720","30.039048"],["-89.912670","30.038919"],["-89.912620","30.038790"],["-89.912695","30.038766"],["-89.912620","30.038790"],["-89.912590","30.038720"],["-89.912537","30.038596"],["-89.912485","30.038473"],["-89.912432","30.038349"],["-89.912380","30.038225"],["-89.912327","30.038101"],["-89.912275","30.037978"],["-89.912222","30.037854"],["-89.912170","30.037730"],["-89.912160","30.037700"],["-89.912115","30.037585"],["-89.912070","30.037470"],["-89.912020","30.037350"],["-89.911970","30.037230"],["-89.911950","30.037200"],["-89.911900","30.037080"],["-89.911840","30.036950"],["-89.911800","30.036845"],["-89.911760","30.036740"],["-89.911710","30.036620"],["-89.911741","30.036607"],["-89.911710","30.036620"],["-89.911690","30.036580"],["-89.911620","30.036410"],["-89.911570","30.036290"],["-89.911450","30.036320"],["-89.911400","30.036340"],["-89.911270","30.036380"],["-89.911140","30.036420"],["-89.910970","30.036470"],["-89.910813","30.036520"],["-89.910655","30.036570"],["-89.910498","30.036620"],["-89.910340","30.036670"],["-89.910230","30.036705"],["-89.910120","30.036740"],["-89.909925","30.036805"],["-89.909730","30.036870"],["-89.909596","30.036913"],["-89.909463","30.036955"],["-89.909329","30.036998"],["-89.909195","30.037040"],["-89.909061","30.037083"],["-89.908928","30.037125"],["-89.908794","30.037168"],["-89.908660","30.037210"],["-89.908505","30.037260"],["-89.908350","30.037310"],["-89.908226","30.037350"],["-89.908103","30.037390"],["-89.907979","30.037430"],["-89.907855","30.037470"],["-89.907731","30.037510"],["-89.907608","30.037550"],["-89.907484","30.037590"],["-89.907360","30.037630"],["-89.907238","30.037669"],["-89.907116","30.037708"],["-89.906994","30.037746"],["-89.906873","30.037785"],["-89.906751","30.037824"],["-89.906629","30.037863"],["-89.906507","30.037901"],["-89.906385","30.037940"],["-89.906263","30.037979"],["-89.906141","30.038018"],["-89.906019","30.038056"],["-89.905898","30.038095"],["-89.905776","30.038134"],["-89.905654","30.038173"],["-89.905532","30.038211"],["-89.905410","30.038250"],["-89.905460","30.038370"],["-89.905655","30.038310"],["-89.905850","30.038250"],["-89.906045","30.038190"],["-89.906240","30.038130"],["-89.906360","30.038093"],["-89.906480","30.038055"],["-89.906600","30.038018"],["-89.906720","30.037980"],["-89.906860","30.037935"],["-89.907000","30.037890"],["-89.907013","30.037929"],["-89.907000","30.037890"],["-89.907100","30.037860"],["-89.907308","30.037793"],["-89.907515","30.037725"],["-89.907723","30.037658"],["-89.907930","30.037590"],["-89.908050","30.037553"],["-89.908170","30.037515"],["-89.908290","30.037478"],["-89.908410","30.037440"],["-89.908490","30.037410"],["-89.908685","30.037348"],["-89.908880","30.037285"],["-89.909075","30.037223"],["-89.909270","30.037160"],["-89.909273","30.037165"],["-89.909270","30.037160"],["-89.909400","30.037120"],["-89.909530","30.037080"],["-89.909660","30.037040"],["-89.909790","30.037000"],["-89.909899","30.036965"],["-89.910008","30.036930"],["-89.910116","30.036895"],["-89.910225","30.036860"],["-89.910334","30.036825"],["-89.910443","30.036790"],["-89.910551","30.036755"],["-89.910660","30.036720"],["-89.910835","30.036665"],["-89.911010","30.036610"],["-89.911185","30.036555"],["-89.911378","30.036545"],["-89.911350","30.036490"],["-89.911440","30.036460"],["-89.911530","30.036430"],["-89.911620","30.036410"],["-89.911735","30.036370"],["-89.911850","30.036330"],["-89.912030","30.036260"],["-89.912148","30.036225"],["-89.912265","30.036190"],["-89.912383","30.036155"],["-89.912500","30.036120"],["-89.912705","30.036055"],["-89.912910","30.035990"],["-89.913120","30.035930"],["-89.913200","30.035900"],["-89.913320","30.035860"],["-89.913440","30.035820"],["-89.913470","30.035810"],["-89.913517","30.035926"],["-89.913470","30.035810"],["-89.913623","30.035760"],["-89.913775","30.035710"],["-89.913928","30.035660"],["-89.914080","30.035610"],["-89.914185","30.035575"],["-89.914290","30.035540"],["-89.914480","30.035485"],["-89.914670","30.035430"],["-89.914780","30.035395"],["-89.914890","30.035360"],["-89.915063","30.035305"],["-89.915235","30.035250"],["-89.915408","30.035195"],["-89.915580","30.035140"],["-89.915779","30.035074"],["-89.915978","30.035008"],["-89.916176","30.034941"],["-89.916375","30.034875"],["-89.916574","30.034809"],["-89.916773","30.034743"],["-89.916971","30.034676"],["-89.917170","30.034610"],["-89.917203","30.034696"],["-89.917170","30.034610"],["-89.917260","30.034580"],["-89.917448","30.034521"],["-89.917635","30.034463"],["-89.917823","30.034404"],["-89.918010","30.034345"],["-89.918198","30.034286"],["-89.918385","30.034228"],["-89.918573","30.034169"],["-89.918760","30.034110"],["-89.918900","30.034060"],["-89.919000","30.034040"],["-89.919140","30.034000"],["-89.919280","30.033960"],["-89.919393","30.033923"],["-89.919505","30.033885"],["-89.919618","30.033848"],["-89.919730","30.033810"],["-89.919910","30.033750"],["-89.920020","30.033720"],["-89.920143","30.033680"],["-89.920265","30.033640"],["-89.920388","30.033600"],["-89.920510","30.033560"],["-89.920640","30.033518"],["-89.920770","30.033475"],["-89.920900","30.033433"],["-89.921030","30.033390"],["-89.921218","30.033330"],["-89.921405","30.033270"],["-89.921593","30.033210"],["-89.921780","30.033150"],["-89.921860","30.033120"],["-89.922065","30.033058"],["-89.922270","30.032995"],["-89.922475","30.032933"],["-89.922680","30.032870"],["-89.922860","30.032810"],["-89.923040","30.032750"],["-89.923064","30.032814"],["-89.923040","30.032750"],["-89.923130","30.032720"],["-89.923239","30.032684"],["-89.923348","30.032648"],["-89.923456","30.032611"],["-89.923565","30.032575"],["-89.923674","30.032539"],["-89.923783","30.032503"],["-89.923891","30.032466"],["-89.924000","30.032430"],["-89.924130","30.032390"],["-89.924260","30.032350"],["-89.924380","30.032310"],["-89.924500","30.032270"],["-89.924527","30.032343"],["-89.924500","30.032270"],["-89.924700","30.032200"],["-89.924878","30.032140"],["-89.925055","30.032080"],["-89.925233","30.032020"],["-89.925410","30.031960"],["-89.925588","30.031900"],["-89.925765","30.031840"],["-89.925943","30.031780"],["-89.926120","30.031720"],["-89.926280","30.031660"],["-89.926440","30.031600"],["-89.926580","30.031555"],["-89.926720","30.031510"],["-89.926920","30.031440"],["-89.927090","30.031375"],["-89.927260","30.031310"],["-89.927330","30.031290"],["-89.927460","30.031250"],["-89.927508","30.031357"],["-89.927460","30.031260"],["-89.927470","30.031260"],["-89.927660","30.031200"],["-89.927830","30.031150"],["-89.927963","30.031103"],["-89.928095","30.031055"],["-89.928228","30.031008"],["-89.928333","30.031071"],["-89.928438","30.031135"]]}]}},{"type":"Feature","properties":{"route_id":"62","agency_id":"1","route_short_name":"62","route_long_name":"Morrison-Bullard","route_type":"3","route_color":"#00b6de","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-89.967611","30.050069"],["-89.970305","30.048446"],["-89.972310","30.047294"],["-89.976700","30.045060"],["-89.983068","30.042017"],["-89.986878","30.040127"],["-89.993246","30.037047"],["-89.996592","30.035889"],["-89.999401","30.034649"],["-90.001760","30.033786"],["-90.003345","30.033185"],["-90.004816","30.032656"],["-90.006743","30.031936"],["-90.009685","30.030906"],["-90.012394","30.029969"],["-90.014255","30.029333"],["-90.016277","30.028719"],["-90.020801","30.027416"],["-90.023661","30.026566"],["-90.024266","30.025257"],["-90.023672","30.023602"],["-90.023153","30.022186"],["-90.022361","30.019997"],["-90.021836","30.018586"],["-90.021600","30.016292"],["-90.021412","30.014387"],["-90.021239","30.012418"],["-90.020993","30.010096"],["-89.968094","30.032694"],["-89.965605","30.033109"],["-89.961367","30.034540"],["-89.959163","30.035954"],["-89.957683","30.036851"],["-89.955169","30.038474"],["-89.958473","30.043282"],["-89.962650","30.048223"],["-89.985444","30.040786"],["-89.987190","30.036296"],["-90.074818","29.954823"],["-90.033834","30.005525"],["-89.968906","30.049249"],["-89.978722","30.044055"],["-89.979983","30.043452"],["-89.966111","30.051048"],["-89.994600","30.032166"],["-89.996330","30.035385"],["-90.073489","29.964347"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-90.074078","29.955755"],["-89.972160","30.032174"],["-89.965073","30.051187"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972600","30.032820"],["-89.972490","30.032880"],["-89.972420","30.032910"],["-89.972320","30.032950"],["-89.972220","30.032980"],["-89.972110","30.033020"],["-89.972030","30.033050"],["-89.971890","30.033080"],["-89.971790","30.033090"],["-89.971700","30.033100"],["-89.971520","30.033120"],["-89.971390","30.033130"],["-89.971260","30.033140"],["-89.971170","30.033140"],["-89.971070","30.033130"],["-89.970950","30.033120"],["-89.970790","30.033100"],["-89.970630","30.033070"],["-89.970450","30.033030"],["-89.970290","30.032990"],["-89.970120","30.032940"],["-89.969930","30.032900"],["-89.969735","30.032860"],["-89.969540","30.032820"],["-89.969370","30.032790"],["-89.969180","30.032770"],["-89.968970","30.032760"],["-89.968800","30.032750"],["-89.968680","30.032745"],["-89.968560","30.032740"],["-89.968340","30.032750"],["-89.968170","30.032750"],["-89.968100","30.032760"],["-89.968094","30.032694"],["-89.968100","30.032760"],["-89.968000","30.032760"],["-89.967870","30.032780"],["-89.967745","30.032795"],["-89.967620","30.032810"],["-89.967460","30.032840"],["-89.967300","30.032870"],["-89.967170","30.032900"],["-89.967040","30.032930"],["-89.966860","30.032960"],["-89.966650","30.033000"],["-89.966510","30.033030"],["-89.966310","30.033060"],["-89.966160","30.033090"],["-89.966010","30.033120"],["-89.965860","30.033150"],["-89.965745","30.033170"],["-89.965630","30.033190"],["-89.965605","30.033109"],["-89.965630","30.033190"],["-89.965440","30.033225"],["-89.965250","30.033260"],["-89.965130","30.033290"],["-89.965003","30.033315"],["-89.964875","30.033340"],["-89.964748","30.033365"],["-89.964620","30.033390"],["-89.964505","30.033410"],["-89.964390","30.033430"],["-89.964275","30.033450"],["-89.964160","30.033470"],["-89.963960","30.033520"],["-89.963800","30.033560"],["-89.963680","30.033580"],["-89.963540","30.033625"],["-89.963400","30.033670"],["-89.963250","30.033710"],["-89.963130","30.033760"],["-89.963100","30.033770"],["-89.963050","30.033790"],["-89.962920","30.033830"],["-89.962770","30.033880"],["-89.962710","30.033910"],["-89.962540","30.033990"],["-89.962370","30.034060"],["-89.962220","30.034130"],["-89.962160","30.034170"],["-89.962070","30.034220"],["-89.962030","30.034240"],["-89.961930","30.034295"],["-89.961830","30.034350"],["-89.961710","30.034420"],["-89.961590","30.034490"],["-89.961490","30.034560"],["-89.961420","30.034590"],["-89.961410","30.034590"],["-89.961367","30.034540"],["-89.961410","30.034590"],["-89.961270","30.034690"],["-89.961160","30.034755"],["-89.961050","30.034820"],["-89.960950","30.034885"],["-89.960850","30.034950"],["-89.960760","30.035010"],["-89.960670","30.035070"],["-89.960590","30.035120"],["-89.960425","30.035230"],["-89.960260","30.035340"],["-89.960240","30.035360"],["-89.960080","30.035470"],["-89.959940","30.035570"],["-89.959815","30.035655"],["-89.959690","30.035740"],["-89.959565","30.035823"],["-89.959440","30.035905"],["-89.959315","30.035988"],["-89.959190","30.036070"],["-89.959080","30.035970"],["-89.959140","30.035930"],["-89.959163","30.035954"],["-89.959140","30.035930"],["-89.959080","30.035970"],["-89.959190","30.036070"],["-89.959038","30.036168"],["-89.958885","30.036265"],["-89.958733","30.036363"],["-89.958580","30.036460"],["-89.958450","30.036540"],["-89.958308","30.036625"],["-89.958165","30.036710"],["-89.958023","30.036795"],["-89.957880","30.036880"],["-89.957770","30.036950"],["-89.957683","30.036851"],["-89.957790","30.036780"],["-89.957890","30.036900"],["-89.957755","30.036985"],["-89.957620","30.037070"],["-89.957485","30.037155"],["-89.957350","30.037240"],["-89.957215","30.037325"],["-89.957080","30.037410"],["-89.956945","30.037495"],["-89.956810","30.037580"],["-89.956655","30.037680"],["-89.956500","30.037780"],["-89.956340","30.037875"],["-89.956180","30.037970"],["-89.956025","30.038060"],["-89.955870","30.038150"],["-89.955775","30.038210"],["-89.955680","30.038270"],["-89.955620","30.038310"],["-89.955440","30.038420"],["-89.955290","30.038520"],["-89.955230","30.038440"],["-89.955169","30.038474"],["-89.955230","30.038440"],["-89.955290","30.038520"],["-89.955180","30.038590"],["-89.955070","30.038660"],["-89.954950","30.038720"],["-89.954830","30.038780"],["-89.954905","30.038875"],["-89.954980","30.038970"],["-89.955090","30.039110"],["-89.955160","30.039190"],["-89.955230","30.039270"],["-89.955340","30.039395"],["-89.955450","30.039520"],["-89.955470","30.039550"],["-89.955565","30.039663"],["-89.955660","30.039775"],["-89.955755","30.039888"],["-89.955850","30.040000"],["-89.955970","30.040150"],["-89.956036","30.040229"],["-89.956102","30.040308"],["-89.956169","30.040386"],["-89.956235","30.040465"],["-89.956301","30.040544"],["-89.956367","30.040623"],["-89.956434","30.040701"],["-89.956500","30.040780"],["-89.956567","30.040863"],["-89.956635","30.040945"],["-89.956702","30.041028"],["-89.956770","30.041110"],["-89.956900","30.041260"],["-89.956970","30.041350"],["-89.957020","30.041410"],["-89.957100","30.041500"],["-89.957170","30.041585"],["-89.957240","30.041670"],["-89.957345","30.041795"],["-89.957450","30.041920"],["-89.957500","30.041990"],["-89.957550","30.042050"],["-89.957560","30.042060"],["-89.957635","30.042150"],["-89.957710","30.042240"],["-89.957785","30.042330"],["-89.957860","30.042420"],["-89.957955","30.042533"],["-89.958050","30.042645"],["-89.958145","30.042758"],["-89.958240","30.042870"],["-89.958315","30.042963"],["-89.958390","30.043055"],["-89.958465","30.043148"],["-89.958540","30.043240"],["-89.958473","30.043282"],["-89.958540","30.043240"],["-89.958630","30.043350"],["-89.958760","30.043500"],["-89.958845","30.043600"],["-89.958930","30.043700"],["-89.958990","30.043770"],["-89.959060","30.043850"],["-89.959130","30.043930"],["-89.959210","30.044040"],["-89.959330","30.044180"],["-89.959400","30.044260"],["-89.959470","30.044340"],["-89.959565","30.044455"],["-89.959660","30.044570"],["-89.959765","30.044700"],["-89.959870","30.044830"],["-89.959930","30.044900"],["-89.959990","30.044970"],["-89.960120","30.045120"],["-89.960205","30.045230"],["-89.960290","30.045340"],["-89.960365","30.045430"],["-89.960440","30.045520"],["-89.960555","30.045665"],["-89.960670","30.045810"],["-89.960690","30.045830"],["-89.960810","30.045980"],["-89.960910","30.046110"],["-89.960950","30.046150"],["-89.960960","30.046170"],["-89.960970","30.046180"],["-89.961030","30.046260"],["-89.961090","30.046330"],["-89.961100","30.046340"],["-89.961210","30.046480"],["-89.961305","30.046605"],["-89.961400","30.046730"],["-89.961530","30.046875"],["-89.961660","30.047020"],["-89.961765","30.047145"],["-89.961870","30.047270"],["-89.961980","30.047400"],["-89.962060","30.047500"],["-89.962140","30.047600"],["-89.962230","30.047690"],["-89.962325","30.047800"],["-89.962420","30.047910"],["-89.962490","30.047990"],["-89.962580","30.048100"],["-89.962630","30.048160"],["-89.962670","30.048210"],["-89.962650","30.048223"],["-89.962670","30.048210"],["-89.962720","30.048270"],["-89.962820","30.048400"],["-89.962885","30.048480"],["-89.962950","30.048560"],["-89.963015","30.048640"],["-89.963080","30.048720"],["-89.963204","30.048875"],["-89.963329","30.049030"],["-89.963453","30.049185"],["-89.963577","30.049340"],["-89.963702","30.049495"],["-89.963826","30.049650"],["-89.963951","30.049805"],["-89.964075","30.049960"],["-89.964199","30.050115"],["-89.964324","30.050270"],["-89.964448","30.050425"],["-89.964572","30.050580"],["-89.964697","30.050735"],["-89.964821","30.050890"],["-89.964946","30.051045"],["-89.965073","30.051187"],["-89.965070","30.051190"],["-89.965140","30.051265"],["-89.965210","30.051340"],["-89.965320","30.051480"],["-89.965450","30.051395"],["-89.965580","30.051310"],["-89.965700","30.051230"],["-89.965820","30.051150"],["-89.965940","30.051070"],["-89.966060","30.050990"],["-89.966111","30.051048"],["-89.966060","30.050990"],["-89.966225","30.050885"],["-89.966390","30.050780"],["-89.966555","30.050675"],["-89.966720","30.050570"],["-89.966890","30.050450"],["-89.966960","30.050410"],["-89.967040","30.050360"],["-89.967170","30.050270"],["-89.967270","30.050208"],["-89.967370","30.050145"],["-89.967470","30.050083"],["-89.967570","30.050020"],["-89.967611","30.050069"],["-89.967570","30.050020"],["-89.967650","30.049970"],["-89.967818","30.049863"],["-89.967985","30.049755"],["-89.968153","30.049648"],["-89.968320","30.049540"],["-89.968455","30.049453"],["-89.968590","30.049365"],["-89.968725","30.049278"],["-89.968860","30.049190"],["-89.968906","30.049249"],["-89.968860","30.049190"],["-89.968940","30.049140"],["-89.969115","30.049035"],["-89.969295","30.048939"],["-89.969441","30.048857"],["-89.969586","30.048774"],["-89.969732","30.048692"],["-89.969877","30.048609"],["-89.970023","30.048527"],["-89.970169","30.048445"],["-89.970305","30.048446"],["-89.970260","30.048380"],["-89.970390","30.048310"],["-89.970486","30.048256"],["-89.970583","30.048203"],["-89.970679","30.048149"],["-89.970775","30.048095"],["-89.970871","30.048041"],["-89.970968","30.047988"],["-89.971064","30.047934"],["-89.971160","30.047880"],["-89.971255","30.047825"],["-89.971350","30.047770"],["-89.971445","30.047715"],["-89.971540","30.047660"],["-89.971635","30.047605"],["-89.971730","30.047550"],["-89.971825","30.047495"],["-89.971920","30.047440"],["-89.972095","30.047340"],["-89.972270","30.047240"],["-89.972310","30.047294"],["-89.972270","30.047240"],["-89.972340","30.047210"],["-89.972450","30.047140"],["-89.972560","30.047070"],["-89.972700","30.046993"],["-89.972840","30.046915"],["-89.972980","30.046838"],["-89.973120","30.046760"],["-89.973260","30.046683"],["-89.973400","30.046605"],["-89.973540","30.046528"],["-89.973680","30.046450"],["-89.973793","30.046393"],["-89.973905","30.046335"],["-89.974018","30.046278"],["-89.974130","30.046220"],["-89.974265","30.046153"],["-89.974400","30.046085"],["-89.974535","30.046018"],["-89.974670","30.045950"],["-89.974785","30.045893"],["-89.974900","30.045835"],["-89.975015","30.045778"],["-89.975130","30.045720"],["-89.975245","30.045663"],["-89.975360","30.045605"],["-89.975475","30.045548"],["-89.975590","30.045490"],["-89.975730","30.045425"],["-89.975870","30.045360"],["-89.976010","30.045295"],["-89.976150","30.045230"],["-89.976320","30.045160"],["-89.976490","30.045080"],["-89.976660","30.045000"],["-89.976700","30.045060"],["-89.976660","30.045000"],["-89.976750","30.044960"],["-89.976871","30.044900"],["-89.976993","30.044840"],["-89.977114","30.044780"],["-89.977235","30.044720"],["-89.977356","30.044660"],["-89.977478","30.044600"],["-89.977599","30.044540"],["-89.977720","30.044480"],["-89.977841","30.044420"],["-89.977963","30.044360"],["-89.978084","30.044300"],["-89.978205","30.044240"],["-89.978326","30.044180"],["-89.978448","30.044120"],["-89.978569","30.044060"],["-89.978690","30.044000"],["-89.978722","30.044055"],["-89.978690","30.044000"],["-89.978760","30.043970"],["-89.978880","30.043908"],["-89.979000","30.043845"],["-89.979120","30.043783"],["-89.979240","30.043720"],["-89.979400","30.043640"],["-89.979525","30.043580"],["-89.979650","30.043520"],["-89.979775","30.043460"],["-89.979900","30.043400"],["-89.979930","30.043380"],["-89.979940","30.043380"],["-89.979983","30.043452"],["-89.979940","30.043380"],["-89.979950","30.043370"],["-89.979990","30.043360"],["-89.980020","30.043360"],["-89.980060","30.043360"],["-89.980190","30.043305"],["-89.980320","30.043250"],["-89.980500","30.043160"],["-89.980680","30.043070"],["-89.980860","30.042980"],["-89.981040","30.042890"],["-89.981218","30.042805"],["-89.981395","30.042720"],["-89.981573","30.042635"],["-89.981750","30.042550"],["-89.981920","30.042470"],["-89.982090","30.042390"],["-89.982260","30.042310"],["-89.982430","30.042230"],["-89.982580","30.042160"],["-89.982730","30.042090"],["-89.982880","30.042020"],["-89.983030","30.041950"],["-89.983068","30.042017"],["-89.983030","30.041950"],["-89.983120","30.041910"],["-89.983225","30.041855"],["-89.983330","30.041800"],["-89.983460","30.041730"],["-89.983620","30.041630"],["-89.983780","30.041530"],["-89.983875","30.041475"],["-89.983970","30.041420"],["-89.984090","30.041340"],["-89.984110","30.041340"],["-89.984260","30.041250"],["-89.984270","30.041250"],["-89.984450","30.041160"],["-89.984631","30.041079"],["-89.984811","30.040997"],["-89.984992","30.040916"],["-89.985172","30.040835"],["-89.985308","30.040810"],["-89.985444","30.040786"],["-89.985525","30.040708"],["-89.985607","30.040630"],["-89.985748","30.040565"],["-89.985890","30.040499"],["-89.986031","30.040434"],["-89.986173","30.040368"],["-89.986314","30.040302"],["-89.986455","30.040237"],["-89.986597","30.040171"],["-89.986738","30.040106"],["-89.986878","30.040127"],["-89.986953","30.040044"],["-89.987028","30.039962"],["-89.987203","30.039878"],["-89.987378","30.039795"],["-89.987553","30.039711"],["-89.987728","30.039628"],["-89.987902","30.039544"],["-89.988077","30.039461"],["-89.988252","30.039377"],["-89.988427","30.039294"],["-89.988320","30.039152"],["-89.988212","30.039011"],["-89.988162","30.038911"],["-89.988111","30.038811"],["-89.988060","30.038711"],["-89.988009","30.038611"],["-89.987979","30.038483"],["-89.987950","30.038355"],["-89.987920","30.038226"],["-89.987891","30.038098"],["-89.987862","30.037970"],["-89.987832","30.037841"],["-89.987803","30.037713"],["-89.987774","30.037585"],["-89.987735","30.037480"],["-89.987696","30.037376"],["-89.987657","30.037271"],["-89.987618","30.037167"],["-89.987529","30.037006"],["-89.987441","30.036846"],["-89.987352","30.036686"],["-89.987264","30.036526"],["-89.987227","30.036411"],["-89.987190","30.036296"],["-89.987106","30.036193"],["-89.987023","30.036089"],["-89.986956","30.035981"],["-89.986890","30.035873"],["-89.986823","30.035765"],["-89.986757","30.035657"],["-89.986664","30.035497"],["-89.986571","30.035337"],["-89.986478","30.035177"],["-89.986385","30.035017"],["-89.986292","30.034857"],["-89.986200","30.034697"],["-89.986107","30.034537"],["-89.986014","30.034377"],["-89.985921","30.034217"],["-89.985828","30.034057"],["-89.985735","30.033898"],["-89.985642","30.033738"],["-89.985549","30.033578"],["-89.985670","30.033528"],["-89.985792","30.033479"],["-89.985913","30.033430"],["-89.986034","30.033380"],["-89.986155","30.033331"],["-89.986276","30.033282"],["-89.986397","30.033232"],["-89.986518","30.033183"],["-89.986639","30.033134"],["-89.986760","30.033084"],["-89.986881","30.033035"],["-89.987002","30.032986"],["-89.987123","30.032936"],["-89.987244","30.032887"],["-89.987365","30.032837"],["-89.987486","30.032788"],["-89.987607","30.032739"],["-89.987728","30.032689"],["-89.987849","30.032640"],["-89.987970","30.032591"],["-89.988091","30.032541"],["-89.988212","30.032492"],["-89.988333","30.032443"],["-89.988454","30.032393"],["-89.988575","30.032344"],["-89.988696","30.032295"],["-89.988817","30.032245"],["-89.988938","30.032196"],["-89.989059","30.032147"],["-89.989180","30.032097"],["-89.989302","30.032048"],["-89.989423","30.031999"],["-89.989559","30.031956"],["-89.989696","30.031913"],["-89.989833","30.031870"],["-89.989970","30.031827"],["-89.990107","30.031784"],["-89.990243","30.031741"],["-89.990380","30.031698"],["-89.990517","30.031655"],["-89.990654","30.031612"],["-89.990790","30.031569"],["-89.990927","30.031526"],["-89.991064","30.031483"],["-89.991201","30.031440"],["-89.991338","30.031397"],["-89.991474","30.031354"],["-89.991611","30.031311"],["-89.991795","30.031265"],["-89.991979","30.031218"],["-89.992162","30.031172"],["-89.992346","30.031126"],["-89.992530","30.031079"],["-89.992714","30.031033"],["-89.992897","30.030986"],["-89.993081","30.030940"],["-89.993242","30.030949"],["-89.993403","30.030958"],["-89.993591","30.031060"],["-89.993778","30.031163"],["-89.993864","30.031293"],["-89.994020","30.031269"],["-89.994175","30.031246"],["-89.994228","30.031340"],["-89.994280","30.031434"],["-89.994332","30.031528"],["-89.994385","30.031622"],["-89.994437","30.031716"],["-89.994489","30.031811"],["-89.994542","30.031905"],["-89.994594","30.031999"],["-89.994600","30.032166"],["-89.994702","30.032222"],["-89.994803","30.032277"],["-89.994874","30.032410"],["-89.994944","30.032543"],["-89.995015","30.032675"],["-89.995086","30.032808"],["-89.995156","30.032941"],["-89.995227","30.033074"],["-89.995297","30.033206"],["-89.995368","30.033339"],["-89.995439","30.033472"],["-89.995509","30.033605"],["-89.995580","30.033737"],["-89.995651","30.033870"],["-89.995721","30.034003"],["-89.995792","30.034136"],["-89.995862","30.034268"],["-89.995933","30.034401"],["-89.996020","30.034569"],["-89.996107","30.034736"],["-89.996194","30.034903"],["-89.996282","30.035070"],["-89.996306","30.035228"],["-89.996330","30.035385"],["-89.996435","30.035427"],["-89.996539","30.035470"],["-89.996382","30.035539"],["-89.996225","30.035609"],["-89.996068","30.035679"],["-89.995911","30.035748"],["-89.995755","30.035818"],["-89.995598","30.035888"],["-89.995441","30.035957"],["-89.995284","30.036027"],["-89.995127","30.036097"],["-89.994970","30.036166"],["-89.994813","30.036236"],["-89.994656","30.036306"],["-89.994499","30.036375"],["-89.994342","30.036445"],["-89.994185","30.036515"],["-89.994029","30.036584"],["-89.993917","30.036628"],["-89.993806","30.036672"],["-89.993695","30.036717"],["-89.993583","30.036761"],["-89.993472","30.036805"],["-89.993361","30.036849"],["-89.993249","30.036893"],["-89.993138","30.036937"],["-89.993246","30.037047"],["-89.993412","30.037085"],["-89.993531","30.037040"],["-89.993649","30.036994"],["-89.993768","30.036949"],["-89.993887","30.036904"],["-89.994046","30.036836"],["-89.994206","30.036769"],["-89.994366","30.036701"],["-89.994526","30.036634"],["-89.994685","30.036566"],["-89.994845","30.036499"],["-89.995005","30.036431"],["-89.995165","30.036364"],["-89.995324","30.036296"],["-89.995484","30.036228"],["-89.995644","30.036161"],["-89.995804","30.036093"],["-89.995963","30.036026"],["-89.996123","30.035958"],["-89.996283","30.035891"],["-89.996442","30.035823"],["-89.996592","30.035889"],["-89.996654","30.035793"],["-89.996716","30.035698"],["-89.996870","30.035634"],["-89.997024","30.035569"],["-89.997178","30.035505"],["-89.997332","30.035440"],["-89.997486","30.035376"],["-89.997639","30.035311"],["-89.997793","30.035247"],["-89.997947","30.035182"],["-89.998101","30.035118"],["-89.998255","30.035054"],["-89.998409","30.034989"],["-89.998563","30.034925"],["-89.998717","30.034860"],["-89.998871","30.034796"],["-89.999024","30.034731"],["-89.999178","30.034667"],["-89.999290","30.034658"],["-89.999401","30.034649"],["-89.999430","30.034560"],["-89.999580","30.034505"],["-89.999729","30.034450"],["-89.999878","30.034395"],["-90.000028","30.034340"],["-90.000177","30.034285"],["-90.000326","30.034230"],["-90.000476","30.034175"],["-90.000625","30.034120"],["-90.000750","30.034070"],["-90.000900","30.034010"],["-90.001050","30.033960"],["-90.001205","30.033905"],["-90.001360","30.033850"],["-90.001520","30.033790"],["-90.001650","30.033740"],["-90.001780","30.033690"],["-90.001820","30.033760"],["-90.001760","30.033786"],["-90.001820","30.033760"],["-90.001780","30.033690"],["-90.001890","30.033650"],["-90.002000","30.033610"],["-90.002125","30.033565"],["-90.002250","30.033520"],["-90.002440","30.033445"],["-90.002630","30.033370"],["-90.002800","30.033308"],["-90.002970","30.033245"],["-90.003140","30.033183"],["-90.003310","30.033120"],["-90.003345","30.033185"],["-90.003310","30.033120"],["-90.003390","30.033090"],["-90.003578","30.033023"],["-90.003765","30.032955"],["-90.003953","30.032888"],["-90.004140","30.032820"],["-90.004275","30.032768"],["-90.004410","30.032715"],["-90.004545","30.032663"],["-90.004680","30.032610"],["-90.004780","30.032570"],["-90.004816","30.032656"],["-90.004780","30.032570"],["-90.004870","30.032540"],["-90.004980","30.032500"],["-90.005090","30.032460"],["-90.005198","30.032423"],["-90.005305","30.032385"],["-90.005413","30.032348"],["-90.005520","30.032310"],["-90.005625","30.032270"],["-90.005730","30.032230"],["-90.005835","30.032190"],["-90.005940","30.032150"],["-90.006103","30.032085"],["-90.006265","30.032020"],["-90.006428","30.031955"],["-90.006590","30.031890"],["-90.006770","30.031820"],["-90.006820","30.031910"],["-90.006743","30.031936"],["-90.006820","30.031910"],["-90.006770","30.031820"],["-90.006965","30.031745"],["-90.007160","30.031670"],["-90.007273","30.031630"],["-90.007385","30.031590"],["-90.007498","30.031550"],["-90.007610","30.031510"],["-90.007716","30.031474"],["-90.007823","30.031438"],["-90.007929","30.031401"],["-90.008035","30.031365"],["-90.008141","30.031329"],["-90.008248","30.031293"],["-90.008354","30.031256"],["-90.008460","30.031220"],["-90.008603","30.031173"],["-90.008745","30.031125"],["-90.008888","30.031078"],["-90.009030","30.031030"],["-90.009155","30.030990"],["-90.009280","30.030950"],["-90.009465","30.030890"],["-90.009650","30.030830"],["-90.009685","30.030906"],["-90.009650","30.030830"],["-90.009730","30.030800"],["-90.009850","30.030760"],["-90.009970","30.030720"],["-90.010090","30.030680"],["-90.010210","30.030640"],["-90.010320","30.030603"],["-90.010430","30.030565"],["-90.010540","30.030528"],["-90.010650","30.030490"],["-90.010760","30.030453"],["-90.010870","30.030415"],["-90.010980","30.030378"],["-90.011090","30.030340"],["-90.011180","30.030310"],["-90.011329","30.030260"],["-90.011478","30.030210"],["-90.011626","30.030160"],["-90.011775","30.030110"],["-90.011924","30.030060"],["-90.012073","30.030010"],["-90.012221","30.029960"],["-90.012370","30.029910"],["-90.012394","30.029969"],["-90.012370","30.029910"],["-90.012550","30.029850"],["-90.012728","30.029790"],["-90.012905","30.029730"],["-90.013083","30.029670"],["-90.013260","30.029610"],["-90.013383","30.029570"],["-90.013505","30.029530"],["-90.013628","30.029490"],["-90.013750","30.029450"],["-90.013873","30.029410"],["-90.013995","30.029370"],["-90.014118","30.029330"],["-90.014240","30.029290"],["-90.014255","30.029333"],["-90.014240","30.029290"],["-90.014400","30.029240"],["-90.014520","30.029203"],["-90.014640","30.029165"],["-90.014760","30.029128"],["-90.014880","30.029090"],["-90.014985","30.029056"],["-90.015090","30.029023"],["-90.015195","30.028989"],["-90.015300","30.028955"],["-90.015405","30.028921"],["-90.015510","30.028888"],["-90.015615","30.028854"],["-90.015720","30.028820"],["-90.015855","30.028783"],["-90.015990","30.028745"],["-90.016125","30.028708"],["-90.016260","30.028670"],["-90.016277","30.028719"],["-90.016260","30.028670"],["-90.016360","30.028640"],["-90.016540","30.028588"],["-90.016720","30.028535"],["-90.016900","30.028483"],["-90.017080","30.028430"],["-90.017200","30.028400"],["-90.017320","30.028370"],["-90.017485","30.028328"],["-90.017650","30.028285"],["-90.017815","30.028243"],["-90.017980","30.028200"],["-90.018150","30.028150"],["-90.018320","30.028100"],["-90.018490","30.028045"],["-90.018660","30.027990"],["-90.018771","30.027955"],["-90.018883","30.027920"],["-90.018994","30.027885"],["-90.019105","30.027850"],["-90.019216","30.027815"],["-90.019328","30.027780"],["-90.019439","30.027745"],["-90.019550","30.027710"],["-90.019748","30.027653"],["-90.019945","30.027595"],["-90.020143","30.027538"],["-90.020340","30.027480"],["-90.020448","30.027445"],["-90.020555","30.027410"],["-90.020663","30.027375"],["-90.020800","30.027330"],["-90.020801","30.027416"],["-90.020800","30.027330"],["-90.020948","30.027288"],["-90.021095","30.027245"],["-90.021243","30.027203"],["-90.021390","30.027160"],["-90.021513","30.027121"],["-90.021635","30.027083"],["-90.021758","30.027044"],["-90.021880","30.027005"],["-90.022003","30.026966"],["-90.022125","30.026928"],["-90.022248","30.026889"],["-90.022370","30.026850"],["-90.022503","30.026813"],["-90.022635","30.026775"],["-90.022768","30.026738"],["-90.022900","30.026700"],["-90.023083","30.026648"],["-90.023265","30.026595"],["-90.023448","30.026543"],["-90.023630","30.026490"],["-90.023661","30.026566"],["-90.023630","30.026490"],["-90.023720","30.026460"],["-90.023860","30.026425"],["-90.024000","30.026390"],["-90.024190","30.026345"],["-90.024380","30.026300"],["-90.024470","30.026240"],["-90.024560","30.026220"],["-90.024510","30.026100"],["-90.024460","30.025970"],["-90.024420","30.025860"],["-90.024380","30.025745"],["-90.024340","30.025630"],["-90.024275","30.025450"],["-90.024237","30.025340"],["-90.024200","30.025230"],["-90.024266","30.025257"],["-90.024200","30.025230"],["-90.024152","30.025103"],["-90.024105","30.024975"],["-90.024057","30.024848"],["-90.024010","30.024720"],["-90.023975","30.024624"],["-90.023940","30.024528"],["-90.023905","30.024431"],["-90.023870","30.024335"],["-90.023835","30.024239"],["-90.023800","30.024143"],["-90.023765","30.024046"],["-90.023730","30.023950"],["-90.023670","30.023785"],["-90.023610","30.023620"],["-90.023672","30.023602"],["-90.023610","30.023620"],["-90.023545","30.023448"],["-90.023480","30.023275"],["-90.023415","30.023103"],["-90.023350","30.022930"],["-90.023300","30.022795"],["-90.023250","30.022660"],["-90.023207","30.022548"],["-90.023165","30.022435"],["-90.023122","30.022323"],["-90.023080","30.022210"],["-90.023153","30.022186"],["-90.023080","30.022210"],["-90.023030","30.022070"],["-90.022994","30.021968"],["-90.022957","30.021865"],["-90.022921","30.021763"],["-90.022885","30.021660"],["-90.022849","30.021558"],["-90.022812","30.021455"],["-90.022776","30.021353"],["-90.022740","30.021250"],["-90.022682","30.021096"],["-90.022625","30.020943"],["-90.022567","30.020789"],["-90.022510","30.020635"],["-90.022452","30.020481"],["-90.022395","30.020328"],["-90.022337","30.020174"],["-90.022280","30.020020"],["-90.022361","30.019997"],["-90.022280","30.020020"],["-90.022250","30.019930"],["-90.022192","30.019764"],["-90.022135","30.019598"],["-90.022077","30.019431"],["-90.022020","30.019265"],["-90.021962","30.019099"],["-90.021905","30.018933"],["-90.021847","30.018766"],["-90.021790","30.018600"],["-90.021836","30.018586"],["-90.021790","30.018600"],["-90.021740","30.018470"],["-90.021720","30.018380"],["-90.021710","30.018250"],["-90.021700","30.018120"],["-90.021690","30.017990"],["-90.021682","30.017855"],["-90.021675","30.017750"],["-90.021667","30.017645"],["-90.021660","30.017540"],["-90.021645","30.017380"],["-90.021630","30.017220"],["-90.021615","30.017060"],["-90.021600","30.016900"],["-90.021585","30.016750"],["-90.021570","30.016600"],["-90.021555","30.016450"],["-90.021540","30.016300"],["-90.021600","30.016292"],["-90.021540","30.016300"],["-90.021530","30.016220"],["-90.021515","30.016070"],["-90.021500","30.015920"],["-90.021485","30.015770"],["-90.021470","30.015620"],["-90.021455","30.015458"],["-90.021440","30.015295"],["-90.021425","30.015133"],["-90.021410","30.014970"],["-90.021390","30.014785"],["-90.021370","30.014600"],["-90.021360","30.014495"],["-90.021350","30.014390"],["-90.021412","30.014387"],["-90.021350","30.014390"],["-90.021350","30.014320"],["-90.021335","30.014160"],["-90.021320","30.014000"],["-90.021305","30.013840"],["-90.021290","30.013680"],["-90.021272","30.013518"],["-90.021255","30.013355"],["-90.021237","30.013193"],["-90.021220","30.013030"],["-90.021205","30.012875"],["-90.021190","30.012720"],["-90.021175","30.012565"],["-90.021160","30.012410"],["-90.021239","30.012418"],["-90.021160","30.012410"],["-90.021145","30.012253"],["-90.021130","30.012095"],["-90.021115","30.011938"],["-90.021100","30.011780"],["-90.021085","30.011610"],["-90.021070","30.011440"],["-90.021055","30.011270"],["-90.021040","30.011100"],["-90.021030","30.011020"],["-90.021017","30.010880"],["-90.021005","30.010740"],["-90.020992","30.010600"],["-90.020980","30.010460"],["-90.020960","30.010280"],["-90.020940","30.010100"],["-90.020993","30.010096"],["-90.020940","30.010100"],["-90.020940","30.010020"],["-90.020920","30.009890"],["-90.021078","30.009848"],["-90.021235","30.009805"],["-90.021393","30.009763"],["-90.021550","30.009720"],["-90.021750","30.009675"],["-90.021950","30.009630"],["-90.022150","30.009580"],["-90.022350","30.009530"],["-90.022519","30.009489"],["-90.022688","30.009448"],["-90.022856","30.009406"],["-90.023025","30.009365"],["-90.023194","30.009324"],["-90.023363","30.009283"],["-90.023531","30.009241"],["-90.023700","30.009200"],["-90.023830","30.009170"],["-90.023910","30.009150"],["-90.023920","30.009150"],["-90.024030","30.009120"],["-90.024150","30.009090"],["-90.024250","30.009070"],["-90.024310","30.009060"],["-90.024450","30.009020"],["-90.024580","30.008990"],["-90.024730","30.008953"],["-90.024880","30.008915"],["-90.025030","30.008878"],["-90.025180","30.008840"],["-90.025330","30.008803"],["-90.025480","30.008765"],["-90.025630","30.008728"],["-90.025780","30.008690"],["-90.025955","30.008648"],["-90.026130","30.008605"],["-90.026305","30.008563"],["-90.026480","30.008520"],["-90.026598","30.008493"],["-90.026715","30.008465"],["-90.026833","30.008438"],["-90.026950","30.008410"],["-90.027150","30.008365"],["-90.027350","30.008320"],["-90.027498","30.008283"],["-90.027645","30.008245"],["-90.027793","30.008208"],["-90.027940","30.008170"],["-90.028090","30.008138"],["-90.028240","30.008105"],["-90.028390","30.008073"],["-90.028540","30.008040"],["-90.028663","30.008009"],["-90.028785","30.007978"],["-90.028908","30.007946"],["-90.029030","30.007915"],["-90.029153","30.007884"],["-90.029275","30.007853"],["-90.029398","30.007821"],["-90.029520","30.007790"],["-90.029650","30.007760"],["-90.029780","30.007730"],["-90.029930","30.007690"],["-90.030110","30.007640"],["-90.030160","30.007630"],["-90.030268","30.007601"],["-90.030375","30.007573"],["-90.030483","30.007544"],["-90.030590","30.007515"],["-90.030698","30.007486"],["-90.030805","30.007458"],["-90.030913","30.007429"],["-90.031020","30.007400"],["-90.031180","30.007353"],["-90.031340","30.007305"],["-90.031500","30.007258"],["-90.031660","30.007210"],["-90.031700","30.007190"],["-90.031820","30.007150"],["-90.031940","30.007110"],["-90.032105","30.007045"],["-90.032270","30.006980"],["-90.032340","30.006960"],["-90.032510","30.006893"],["-90.032680","30.006825"],["-90.032850","30.006758"],["-90.033020","30.006690"],["-90.033180","30.006635"],["-90.033340","30.006580"],["-90.033440","30.006540"],["-90.033580","30.006490"],["-90.033725","30.006433"],["-90.033870","30.006375"],["-90.034015","30.006318"],["-90.034160","30.006260"],["-90.034100","30.006120"],["-90.034020","30.005970"],["-90.033960","30.005845"],["-90.033900","30.005720"],["-90.033870","30.005670"],["-90.033800","30.005540"],["-90.033834","30.005525"],["-90.033800","30.005540"],["-90.033740","30.005410"],["-90.033660","30.005250"],["-90.033580","30.005080"],["-90.033570","30.005070"],["-90.033683","30.005020"],["-90.033795","30.004970"],["-90.033908","30.004920"],["-90.034020","30.004870"],["-90.034215","30.004785"],["-90.034410","30.004700"],["-90.034470","30.004670"],["-90.034573","30.004618"],["-90.034675","30.004565"],["-90.034778","30.004513"],["-90.034880","30.004460"],["-90.035045","30.004380"],["-90.035210","30.004300"],["-90.035280","30.004260"],["-90.035380","30.004215"],["-90.035480","30.004170"],["-90.035650","30.004080"],["-90.035750","30.004030"],["-90.035905","30.003955"],["-90.036060","30.003880"],["-90.036160","30.003830"],["-90.036270","30.003780"],["-90.036420","30.003700"],["-90.036470","30.003680"],["-90.036650","30.003600"],["-90.036665","30.003475"],["-90.036680","30.003350"],["-90.036700","30.003230"],["-90.036710","30.003170"],["-90.036740","30.003110"],["-90.036790","30.003060"],["-90.036820","30.003030"],["-90.036850","30.002990"],["-90.036950","30.002920"],["-90.037030","30.002870"],["-90.037110","30.002810"],["-90.037220","30.002745"],["-90.037330","30.002680"],["-90.037450","30.002615"],["-90.037570","30.002550"],["-90.037620","30.002520"],["-90.037805","30.002420"],["-90.037990","30.002320"],["-90.038130","30.002240"],["-90.038150","30.002230"],["-90.038280","30.002160"],["-90.038370","30.002100"],["-90.038465","30.002050"],["-90.038560","30.002000"],["-90.038660","30.001940"],["-90.038760","30.001880"],["-90.038870","30.001825"],["-90.038980","30.001770"],["-90.039050","30.001730"],["-90.039160","30.001660"],["-90.039240","30.001620"],["-90.039290","30.001580"],["-90.039300","30.001570"],["-90.039340","30.001490"],["-90.039525","30.001390"],["-90.039710","30.001290"],["-90.039830","30.001220"],["-90.039925","30.001165"],["-90.040020","30.001110"],["-90.040115","30.001055"],["-90.040210","30.001000"],["-90.040340","30.000910"],["-90.040490","30.000820"],["-90.040560","30.000780"],["-90.040665","30.000715"],["-90.040770","30.000650"],["-90.040860","30.000590"],["-90.040950","30.000530"],["-90.041060","30.000450"],["-90.041230","30.000340"],["-90.041270","30.000310"],["-90.041370","30.000250"],["-90.041460","30.000180"],["-90.041550","30.000115"],["-90.041640","30.000050"],["-90.041700","30.000010"],["-90.041730","29.999990"],["-90.041830","29.999910"],["-90.041925","29.999840"],["-90.042020","29.999770"],["-90.042120","29.999700"],["-90.042240","29.999610"],["-90.042310","29.999550"],["-90.042395","29.999480"],["-90.042480","29.999410"],["-90.042530","29.999370"],["-90.042600","29.999320"],["-90.042685","29.999250"],["-90.042770","29.999180"],["-90.042860","29.999110"],["-90.042950","29.999040"],["-90.043040","29.998960"],["-90.043160","29.998860"],["-90.043240","29.998790"],["-90.043330","29.998720"],["-90.043410","29.998650"],["-90.043490","29.998580"],["-90.043580","29.998500"],["-90.043670","29.998420"],["-90.043820","29.998280"],["-90.043840","29.998260"],["-90.043940","29.998170"],["-90.044025","29.998090"],["-90.044110","29.998010"],["-90.044190","29.997930"],["-90.044230","29.997890"],["-90.044280","29.997850"],["-90.044360","29.997770"],["-90.044440","29.997690"],["-90.044530","29.997600"],["-90.044610","29.997520"],["-90.044690","29.997440"],["-90.044770","29.997360"],["-90.044870","29.997260"],["-90.044943","29.997180"],["-90.045015","29.997100"],["-90.045088","29.997020"],["-90.045160","29.996940"],["-90.045235","29.996860"],["-90.045310","29.996780"],["-90.045385","29.996700"],["-90.045460","29.996620"],["-90.045540","29.996535"],["-90.045620","29.996450"],["-90.045750","29.996320"],["-90.045780","29.996280"],["-90.045910","29.996140"],["-90.045960","29.996080"],["-90.046040","29.996000"],["-90.046150","29.995870"],["-90.046180","29.995840"],["-90.046250","29.995760"],["-90.046320","29.995680"],["-90.046370","29.995620"],["-90.046470","29.995508"],["-90.046570","29.995395"],["-90.046670","29.995283"],["-90.046770","29.995170"],["-90.046850","29.995080"],["-90.046930","29.994990"],["-90.047030","29.994878"],["-90.047130","29.994765"],["-90.047230","29.994653"],["-90.047330","29.994540"],["-90.047400","29.994465"],["-90.047470","29.994390"],["-90.047568","29.994280"],["-90.047665","29.994170"],["-90.047763","29.994060"],["-90.047860","29.993950"],["-90.047940","29.993850"],["-90.048015","29.993770"],["-90.048090","29.993690"],["-90.048165","29.993605"],["-90.048240","29.993520"],["-90.048343","29.993405"],["-90.048445","29.993290"],["-90.048548","29.993175"],["-90.048650","29.993060"],["-90.048730","29.992980"],["-90.048810","29.992900"],["-90.048880","29.992810"],["-90.048950","29.992710"],["-90.049080","29.992560"],["-90.049120","29.992520"],["-90.049195","29.992438"],["-90.049270","29.992355"],["-90.049345","29.992273"],["-90.049420","29.992190"],["-90.049510","29.992070"],["-90.049540","29.992040"],["-90.049638","29.991930"],["-90.049735","29.991820"],["-90.049833","29.991710"],["-90.049930","29.991600"],["-90.050015","29.991510"],["-90.050100","29.991420"],["-90.050190","29.991310"],["-90.050295","29.991195"],["-90.050400","29.991080"],["-90.050520","29.990945"],["-90.050640","29.990810"],["-90.050735","29.990705"],["-90.050830","29.990600"],["-90.050925","29.990495"],["-90.051020","29.990390"],["-90.051080","29.990320"],["-90.051160","29.990230"],["-90.051220","29.990160"],["-90.051290","29.990080"],["-90.051405","29.989950"],["-90.051520","29.989820"],["-90.051620","29.989710"],["-90.051640","29.989690"],["-90.051720","29.989590"],["-90.051790","29.989505"],["-90.051860","29.989420"],["-90.051870","29.989410"],["-90.051925","29.989325"],["-90.051980","29.989240"],["-90.052050","29.989150"],["-90.052090","29.989090"],["-90.052140","29.989000"],["-90.052180","29.988940"],["-90.052245","29.988825"],["-90.052310","29.988710"],["-90.052340","29.988630"],["-90.052400","29.988520"],["-90.052450","29.988390"],["-90.052500","29.988280"],["-90.052540","29.988170"],["-90.052580","29.988055"],["-90.052620","29.987940"],["-90.052650","29.987850"],["-90.052680","29.987740"],["-90.052700","29.987650"],["-90.052720","29.987540"],["-90.052760","29.987390"],["-90.052790","29.987230"],["-90.052820","29.987110"],["-90.052860","29.986930"],["-90.052880","29.986830"],["-90.052900","29.986730"],["-90.052920","29.986630"],["-90.052940","29.986530"],["-90.052960","29.986430"],["-90.052990","29.986320"],["-90.053020","29.986170"],["-90.053050","29.986050"],["-90.053070","29.985930"],["-90.053100","29.985770"],["-90.053120","29.985700"],["-90.053160","29.985530"],["-90.053200","29.985400"],["-90.053250","29.985250"],["-90.053310","29.985090"],["-90.053330","29.985040"],["-90.053390","29.984900"],["-90.053460","29.984750"],["-90.053535","29.984615"],["-90.053610","29.984480"],["-90.053610","29.984470"],["-90.053680","29.984350"],["-90.053743","29.984258"],["-90.053805","29.984165"],["-90.053868","29.984073"],["-90.053930","29.983980"],["-90.054000","29.983890"],["-90.054070","29.983800"],["-90.054180","29.983660"],["-90.054230","29.983600"],["-90.054350","29.983470"],["-90.054480","29.983340"],["-90.054610","29.983220"],["-90.054700","29.983140"],["-90.054790","29.983060"],["-90.054920","29.982950"],["-90.055080","29.982820"],["-90.055110","29.982800"],["-90.055240","29.982690"],["-90.055360","29.982590"],["-90.055430","29.982530"],["-90.055520","29.982460"],["-90.055615","29.982385"],["-90.055710","29.982310"],["-90.055845","29.982195"],["-90.055980","29.982080"],["-90.056020","29.982050"],["-90.056160","29.981930"],["-90.056245","29.981860"],["-90.056330","29.981790"],["-90.056480","29.981680"],["-90.056630","29.981560"],["-90.056715","29.981490"],["-90.056800","29.981420"],["-90.056885","29.981350"],["-90.056970","29.981280"],["-90.057068","29.981200"],["-90.057165","29.981120"],["-90.057263","29.981040"],["-90.057360","29.980960"],["-90.057450","29.980888"],["-90.057540","29.980815"],["-90.057630","29.980743"],["-90.057720","29.980670"],["-90.057780","29.980620"],["-90.057840","29.980570"],["-90.057990","29.980450"],["-90.058150","29.980320"],["-90.058250","29.980240"],["-90.058350","29.980160"],["-90.058410","29.980110"],["-90.058490","29.980040"],["-90.058610","29.979950"],["-90.058720","29.979860"],["-90.058845","29.979755"],["-90.058970","29.979650"],["-90.059105","29.979545"],["-90.059240","29.979440"],["-90.059355","29.979345"],["-90.059470","29.979250"],["-90.059620","29.979125"],["-90.059770","29.979000"],["-90.059920","29.978880"],["-90.060010","29.978800"],["-90.060130","29.978710"],["-90.060140","29.978710"],["-90.060280","29.978590"],["-90.060360","29.978520"],["-90.060440","29.978450"],["-90.060530","29.978380"],["-90.060630","29.978290"],["-90.060730","29.978200"],["-90.060820","29.978120"],["-90.060910","29.978040"],["-90.060995","29.977960"],["-90.061080","29.977880"],["-90.061160","29.977805"],["-90.061240","29.977730"],["-90.061370","29.977605"],["-90.061500","29.977480"],["-90.061580","29.977390"],["-90.061655","29.977310"],["-90.061730","29.977230"],["-90.061820","29.977130"],["-90.061900","29.977050"],["-90.061990","29.976955"],["-90.062080","29.976860"],["-90.062165","29.976760"],["-90.062250","29.976660"],["-90.062340","29.976560"],["-90.062430","29.976460"],["-90.062525","29.976355"],["-90.062620","29.976250"],["-90.062700","29.976160"],["-90.062780","29.976070"],["-90.062860","29.975980"],["-90.062940","29.975890"],["-90.063050","29.975770"],["-90.063120","29.975690"],["-90.063190","29.975610"],["-90.063275","29.975515"],["-90.063360","29.975420"],["-90.063490","29.975275"],["-90.063620","29.975130"],["-90.063710","29.975035"],["-90.063800","29.974940"],["-90.063865","29.974860"],["-90.063930","29.974780"],["-90.064015","29.974690"],["-90.064100","29.974600"],["-90.064198","29.974490"],["-90.064295","29.974380"],["-90.064393","29.974270"],["-90.064490","29.974160"],["-90.064620","29.974010"],["-90.064690","29.973930"],["-90.064790","29.973820"],["-90.064890","29.973710"],["-90.064985","29.973605"],["-90.065080","29.973500"],["-90.065180","29.973390"],["-90.065280","29.973270"],["-90.065410","29.973130"],["-90.065530","29.972995"],["-90.065650","29.972860"],["-90.065760","29.972735"],["-90.065870","29.972610"],["-90.065910","29.972560"],["-90.065960","29.972500"],["-90.066040","29.972410"],["-90.066130","29.972300"],["-90.066260","29.972150"],["-90.066290","29.972120"],["-90.066330","29.972070"],["-90.066410","29.971978"],["-90.066490","29.971885"],["-90.066570","29.971793"],["-90.066650","29.971700"],["-90.066720","29.971625"],["-90.066790","29.971550"],["-90.066900","29.971420"],["-90.067020","29.971290"],["-90.067090","29.971200"],["-90.067120","29.971170"],["-90.067225","29.971060"],["-90.067330","29.970950"],["-90.067425","29.970840"],["-90.067520","29.970730"],["-90.067630","29.970610"],["-90.067705","29.970525"],["-90.067780","29.970440"],["-90.067880","29.970330"],["-90.067980","29.970215"],["-90.068080","29.970100"],["-90.068205","29.969960"],["-90.068330","29.969820"],["-90.068425","29.969715"],["-90.068520","29.969610"],["-90.068605","29.969510"],["-90.068690","29.969410"],["-90.068750","29.969340"],["-90.068850","29.969240"],["-90.068880","29.969200"],["-90.068960","29.969110"],["-90.069040","29.969020"],["-90.069120","29.968930"],["-90.069200","29.968840"],["-90.069290","29.968740"],["-90.069380","29.968640"],["-90.069470","29.968540"],["-90.069560","29.968440"],["-90.069665","29.968325"],["-90.069770","29.968210"],["-90.069780","29.968190"],["-90.069880","29.968080"],["-90.070010","29.967940"],["-90.070128","29.967808"],["-90.070245","29.967675"],["-90.070363","29.967543"],["-90.070480","29.967410"],["-90.070500","29.967390"],["-90.070520","29.967360"],["-90.070530","29.967340"],["-90.070590","29.967290"],["-90.070670","29.967200"],["-90.070750","29.967110"],["-90.070840","29.967000"],["-90.070935","29.966895"],["-90.071030","29.966790"],["-90.071115","29.966700"],["-90.071200","29.966610"],["-90.071310","29.966480"],["-90.071370","29.966420"],["-90.071460","29.966320"],["-90.071550","29.966220"],["-90.071640","29.966200"],["-90.071650","29.966200"],["-90.071700","29.966160"],["-90.071740","29.966140"],["-90.071780","29.966110"],["-90.071850","29.966070"],["-90.071910","29.966040"],["-90.071960","29.966020"],["-90.072000","29.966010"],["-90.072040","29.965990"],["-90.072080","29.965990"],["-90.072160","29.965970"],["-90.072380","29.965955"],["-90.072600","29.965940"],["-90.072660","29.965940"],["-90.072850","29.965920"],["-90.072920","29.965920"],["-90.073065","29.965900"],["-90.073210","29.965880"],["-90.073400","29.965800"],["-90.073450","29.965760"],["-90.073480","29.965740"],["-90.073510","29.965710"],["-90.073620","29.965590"],["-90.073730","29.965470"],["-90.073850","29.965320"],["-90.073980","29.965180"],["-90.074040","29.965120"],["-90.074120","29.965010"],["-90.074150","29.964890"],["-90.074010","29.964790"],["-90.073870","29.964690"],["-90.073740","29.964605"],["-90.073610","29.964520"],["-90.073549","29.964434"],["-90.073489","29.964347"],["-90.073450","29.964390"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962950"],["-90.071350","29.962940"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074010","29.955710"],["-90.074078","29.955755"],["-90.074010","29.955710"],["-90.074095","29.955610"],["-90.074180","29.955510"],["-90.074270","29.955410"],["-90.074400","29.955270"],["-90.074485","29.955175"],["-90.074570","29.955080"],["-90.074685","29.954945"],["-90.074818","29.954823"]]},{"type":"MultiPoint","coordinates":[["-89.980166","30.042767"],["-90.020829","30.010331"],["-90.020957","30.012361"],["-90.021389","30.016133"],["-90.021569","30.018240"],["-90.022090","30.019908"],["-90.022858","30.022017"],["-90.023584","30.023980"],["-90.024261","30.025901"],["-90.020798","30.026987"],["-90.018124","30.027527"],["-90.016250","30.028337"],["-90.012532","30.029538"],["-90.008582","30.030856"],["-90.005065","30.032123"],["-90.001488","30.033483"],["-89.996859","30.035264"],["-89.976665","30.044312"],["-89.972418","30.046743"],["-89.970328","30.047922"],["-89.968806","30.048771"],["-89.966877","30.049994"],["-89.965342","30.050898"],["-89.972415","30.033263"],["-90.074818","29.954823"],["-90.077740","29.955981"],["-89.987945","30.039013"],["-89.982921","30.041567"],["-89.987120","30.036774"],["-90.033825","30.005795"],["-89.959222","30.043676"],["-89.995549","30.033055"],["-89.955431","30.038995"],["-89.957965","30.037094"],["-89.961308","30.035108"],["-89.965140","30.033552"],["-89.967795","30.033065"],["-89.974960","30.029613"],["-89.962511","30.047538"],["-89.963389","30.048625"],["-89.973520","30.030150"],["-89.972160","30.032174"],["-89.971999","30.031174"]]},{"type":"LineString","coordinates":[["-90.074818","29.954823"],["-90.074800","29.954810"],["-90.074900","29.954700"],["-90.075035","29.954763"],["-90.075170","29.954825"],["-90.075305","29.954888"],["-90.075440","29.954950"],["-90.075540","29.955000"],["-90.075640","29.955050"],["-90.075830","29.955140"],["-90.075930","29.955180"],["-90.076090","29.955255"],["-90.076250","29.955330"],["-90.076350","29.955375"],["-90.076450","29.955420"],["-90.076570","29.955480"],["-90.076690","29.955540"],["-90.076850","29.955615"],["-90.077010","29.955690"],["-90.077187","29.955770"],["-90.077365","29.955850"],["-90.077542","29.955930"],["-90.077720","29.956010"],["-90.077740","29.955981"],["-90.077720","29.956010"],["-90.077790","29.956040"],["-90.077940","29.956105"],["-90.078090","29.956170"],["-90.078250","29.956240"],["-90.078440","29.956320"],["-90.078610","29.956390"],["-90.078680","29.956420"],["-90.078770","29.956520"],["-90.078860","29.956620"],["-90.078880","29.956650"],["-90.078930","29.956720"],["-90.078940","29.956740"],["-90.078960","29.956780"],["-90.078970","29.956810"],["-90.078980","29.956840"],["-90.078980","29.956860"],["-90.078990","29.956880"],["-90.078990","29.956900"],["-90.079000","29.956960"],["-90.079000","29.957000"],["-90.079000","29.957050"],["-90.078990","29.957100"],["-90.078990","29.957130"],["-90.078980","29.957140"],["-90.078980","29.957160"],["-90.078960","29.957210"],["-90.078950","29.957250"],["-90.078930","29.957290"],["-90.078900","29.957330"],["-90.078880","29.957360"],["-90.078840","29.957410"],["-90.078780","29.957470"],["-90.078700","29.957570"],["-90.078580","29.957700"],["-90.078510","29.957780"],["-90.078470","29.957860"],["-90.078430","29.957920"],["-90.078410","29.957980"],["-90.078370","29.958085"],["-90.078330","29.958190"],["-90.078310","29.958240"],["-90.078290","29.958260"],["-90.078280","29.958290"],["-90.078250","29.958350"],["-90.078210","29.958420"],["-90.078150","29.958510"],["-90.078090","29.958580"],["-90.078100","29.958680"],["-90.077970","29.958820"],["-90.077840","29.958960"],["-90.077750","29.959065"],["-90.077660","29.959170"],["-90.077580","29.959260"],["-90.077530","29.959320"],["-90.077450","29.959400"],["-90.077380","29.959490"],["-90.077260","29.959610"],["-90.077150","29.959740"],["-90.077080","29.959820"],["-90.077070","29.959830"],["-90.076980","29.959930"],["-90.076890","29.960030"],["-90.076795","29.960135"],["-90.076700","29.960240"],["-90.076625","29.960325"],["-90.076550","29.960410"],["-90.076440","29.960535"],["-90.076330","29.960660"],["-90.076220","29.960785"],["-90.076110","29.960910"],["-90.076060","29.960960"],["-90.075935","29.961100"],["-90.075810","29.961240"],["-90.075695","29.961370"],["-90.075580","29.961500"],["-90.075470","29.961620"],["-90.075420","29.961680"],["-90.075338","29.961773"],["-90.075255","29.961865"],["-90.075173","29.961958"],["-90.075090","29.962050"],["-90.074990","29.962160"],["-90.074915","29.962245"],["-90.074840","29.962330"],["-90.074755","29.962425"],["-90.074670","29.962520"],["-90.074630","29.962560"],["-90.074510","29.962705"],["-90.074390","29.962850"],["-90.074310","29.962930"],["-90.074235","29.963015"],["-90.074160","29.963100"],["-90.074085","29.963185"],["-90.074010","29.963270"],["-90.073920","29.963370"],["-90.073830","29.963480"],["-90.073745","29.963570"],["-90.073660","29.963660"],["-90.073565","29.963765"],["-90.073470","29.963870"],["-90.073375","29.963975"],["-90.073280","29.964080"],["-90.073230","29.964140"],["-90.073160","29.964220"],["-90.073070","29.964320"],["-90.073002","29.964396"],["-90.072934","29.964473"],["-90.072866","29.964549"],["-90.072798","29.964625"],["-90.072729","29.964701"],["-90.072661","29.964778"],["-90.072593","29.964854"],["-90.072525","29.964930"],["-90.072457","29.965006"],["-90.072389","29.965083"],["-90.072321","29.965159"],["-90.072253","29.965235"],["-90.072184","29.965311"],["-90.072116","29.965388"],["-90.072048","29.965464"],["-90.071980","29.965540"],["-90.071910","29.965610"],["-90.071800","29.965750"],["-90.071790","29.965760"],["-90.071700","29.965860"],["-90.071630","29.965940"],["-90.071555","29.966023"],["-90.071480","29.966105"],["-90.071405","29.966188"],["-90.071330","29.966270"],["-90.071210","29.966410"],["-90.071130","29.966490"],["-90.071100","29.966520"],["-90.071025","29.966605"],["-90.070950","29.966690"],["-90.070835","29.966820"],["-90.070720","29.966950"],["-90.070630","29.967050"],["-90.070540","29.967150"],["-90.070510","29.967180"],["-90.070490","29.967210"],["-90.070430","29.967270"],["-90.070410","29.967300"],["-90.070360","29.967350"],["-90.070240","29.967485"],["-90.070120","29.967620"],["-90.070003","29.967750"],["-90.069885","29.967880"],["-90.069768","29.968010"],["-90.069650","29.968140"],["-90.069565","29.968240"],["-90.069480","29.968340"],["-90.069385","29.968450"],["-90.069290","29.968560"],["-90.069175","29.968685"],["-90.069060","29.968810"],["-90.068950","29.968930"],["-90.068920","29.968970"],["-90.068910","29.968970"],["-90.068880","29.969010"],["-90.068830","29.969070"],["-90.068740","29.969160"],["-90.068700","29.969210"],["-90.068580","29.969350"],["-90.068453","29.969493"],["-90.068325","29.969635"],["-90.068198","29.969778"],["-90.068070","29.969920"],["-90.067940","29.970060"],["-90.067840","29.970170"],["-90.067770","29.970260"],["-90.067685","29.970350"],["-90.067600","29.970440"],["-90.067520","29.970530"],["-90.067460","29.970600"],["-90.067354","29.970719"],["-90.067248","29.970838"],["-90.067141","29.970956"],["-90.067035","29.971075"],["-90.066929","29.971194"],["-90.066823","29.971313"],["-90.066716","29.971431"],["-90.066610","29.971550"],["-90.066600","29.971560"],["-90.066520","29.971650"],["-90.066440","29.971740"],["-90.066360","29.971825"],["-90.066280","29.971910"],["-90.066206","29.971990"],["-90.066133","29.972070"],["-90.066059","29.972150"],["-90.065985","29.972230"],["-90.065911","29.972310"],["-90.065838","29.972390"],["-90.065764","29.972470"],["-90.065690","29.972550"],["-90.065600","29.972650"],["-90.065560","29.972690"],["-90.065440","29.972840"],["-90.065400","29.972870"],["-90.065370","29.972910"],["-90.065255","29.973035"],["-90.065140","29.973160"],["-90.065065","29.973240"],["-90.064990","29.973320"],["-90.064940","29.973380"],["-90.064900","29.973430"],["-90.064880","29.973460"],["-90.064810","29.973520"],["-90.064770","29.973570"],["-90.064670","29.973680"],["-90.064620","29.973740"],["-90.064500","29.973875"],["-90.064380","29.974010"],["-90.064250","29.974160"],["-90.064180","29.974235"],["-90.064110","29.974310"],["-90.064038","29.974391"],["-90.063965","29.974473"],["-90.063893","29.974554"],["-90.063820","29.974635"],["-90.063748","29.974716"],["-90.063675","29.974798"],["-90.063603","29.974879"],["-90.063530","29.974960"],["-90.063445","29.975060"],["-90.063360","29.975160"],["-90.063280","29.975240"],["-90.063205","29.975325"],["-90.063130","29.975410"],["-90.063120","29.975420"],["-90.063030","29.975520"],["-90.062940","29.975620"],["-90.062860","29.975720"],["-90.062770","29.975815"],["-90.062680","29.975910"],["-90.062560","29.976050"],["-90.062550","29.976060"],["-90.062435","29.976190"],["-90.062320","29.976320"],["-90.062243","29.976405"],["-90.062165","29.976490"],["-90.062088","29.976575"],["-90.062010","29.976660"],["-90.061925","29.976755"],["-90.061840","29.976850"],["-90.061750","29.976940"],["-90.061660","29.977030"],["-90.061590","29.977110"],["-90.061450","29.977245"],["-90.061310","29.977380"],["-90.061210","29.977480"],["-90.061110","29.977570"],["-90.061020","29.977650"],["-90.060910","29.977760"],["-90.060790","29.977865"],["-90.060670","29.977970"],["-90.060620","29.978010"],["-90.060535","29.978083"],["-90.060450","29.978155"],["-90.060365","29.978228"],["-90.060280","29.978300"],["-90.060210","29.978360"],["-90.060090","29.978450"],["-90.059990","29.978530"],["-90.059885","29.978620"],["-90.059780","29.978710"],["-90.059660","29.978810"],["-90.059630","29.978830"],["-90.059495","29.978940"],["-90.059360","29.979050"],["-90.059255","29.979135"],["-90.059150","29.979220"],["-90.059013","29.979333"],["-90.058875","29.979445"],["-90.058738","29.979558"],["-90.058600","29.979670"],["-90.058470","29.979770"],["-90.058450","29.979790"],["-90.058300","29.979910"],["-90.058290","29.979920"],["-90.058150","29.980030"],["-90.058000","29.980150"],["-90.057990","29.980160"],["-90.057930","29.980220"],["-90.057815","29.980310"],["-90.057700","29.980400"],["-90.057600","29.980480"],["-90.057520","29.980550"],["-90.057395","29.980650"],["-90.057270","29.980750"],["-90.057145","29.980850"],["-90.057020","29.980950"],["-90.056918","29.981035"],["-90.056815","29.981120"],["-90.056713","29.981205"],["-90.056610","29.981290"],["-90.056490","29.981385"],["-90.056370","29.981480"],["-90.056235","29.981590"],["-90.056100","29.981700"],["-90.056020","29.981760"],["-90.055895","29.981870"],["-90.055770","29.981980"],["-90.055645","29.982080"],["-90.055520","29.982180"],["-90.055430","29.982250"],["-90.055270","29.982380"],["-90.055130","29.982490"],["-90.054990","29.982600"],["-90.054870","29.982700"],["-90.054730","29.982810"],["-90.054660","29.982880"],["-90.054515","29.983010"],["-90.054370","29.983140"],["-90.054360","29.983140"],["-90.054300","29.983200"],["-90.054220","29.983280"],["-90.054145","29.983360"],["-90.054070","29.983440"],["-90.053990","29.983530"],["-90.053940","29.983590"],["-90.053850","29.983690"],["-90.053830","29.983720"],["-90.053790","29.983770"],["-90.053710","29.983880"],["-90.053640","29.983980"],["-90.053560","29.984090"],["-90.053505","29.984180"],["-90.053450","29.984270"],["-90.053370","29.984410"],["-90.053320","29.984518"],["-90.053270","29.984625"],["-90.053220","29.984733"],["-90.053170","29.984840"],["-90.053150","29.984880"],["-90.053090","29.985015"],["-90.053030","29.985150"],["-90.053000","29.985230"],["-90.052960","29.985340"],["-90.052940","29.985420"],["-90.052920","29.985480"],["-90.052900","29.985590"],["-90.052880","29.985700"],["-90.052840","29.985820"],["-90.052820","29.985920"],["-90.052790","29.986050"],["-90.052760","29.986200"],["-90.052735","29.986325"],["-90.052710","29.986450"],["-90.052700","29.986530"],["-90.052665","29.986693"],["-90.052630","29.986855"],["-90.052595","29.987018"],["-90.052560","29.987180"],["-90.052530","29.987315"],["-90.052500","29.987450"],["-90.052490","29.987470"],["-90.052480","29.987530"],["-90.052450","29.987650"],["-90.052400","29.987830"],["-90.052370","29.987940"],["-90.052325","29.988050"],["-90.052280","29.988160"],["-90.052240","29.988265"],["-90.052200","29.988370"],["-90.052140","29.988520"],["-90.052100","29.988590"],["-90.052070","29.988650"],["-90.052010","29.988760"],["-90.052000","29.988770"],["-90.051950","29.988870"],["-90.051920","29.988920"],["-90.051880","29.988980"],["-90.051810","29.989090"],["-90.051790","29.989110"],["-90.051730","29.989200"],["-90.051650","29.989320"],["-90.051570","29.989410"],["-90.051510","29.989490"],["-90.051450","29.989560"],["-90.051360","29.989670"],["-90.051258","29.989783"],["-90.051155","29.989895"],["-90.051053","29.990008"],["-90.050950","29.990120"],["-90.050910","29.990180"],["-90.050830","29.990260"],["-90.050750","29.990350"],["-90.050670","29.990440"],["-90.050570","29.990550"],["-90.050550","29.990580"],["-90.050420","29.990710"],["-90.050350","29.990800"],["-90.050270","29.990880"],["-90.050180","29.990990"],["-90.050110","29.991065"],["-90.050040","29.991140"],["-90.049970","29.991215"],["-90.049900","29.991290"],["-90.049770","29.991440"],["-90.049650","29.991580"],["-90.049510","29.991720"],["-90.049400","29.991850"],["-90.049390","29.991860"],["-90.049320","29.991940"],["-90.049250","29.992020"],["-90.049200","29.992080"],["-90.049120","29.992170"],["-90.049040","29.992260"],["-90.048960","29.992350"],["-90.048860","29.992465"],["-90.048760","29.992580"],["-90.048670","29.992675"],["-90.048580","29.992770"],["-90.048490","29.992880"],["-90.048395","29.992985"],["-90.048300","29.993090"],["-90.048260","29.993130"],["-90.048240","29.993170"],["-90.048170","29.993240"],["-90.048090","29.993330"],["-90.048010","29.993420"],["-90.047940","29.993495"],["-90.047870","29.993570"],["-90.047780","29.993680"],["-90.047700","29.993770"],["-90.047605","29.993875"],["-90.047510","29.993980"],["-90.047415","29.994085"],["-90.047320","29.994190"],["-90.047260","29.994260"],["-90.047165","29.994365"],["-90.047070","29.994470"],["-90.047000","29.994550"],["-90.046950","29.994600"],["-90.046815","29.994750"],["-90.046680","29.994900"],["-90.046630","29.994960"],["-90.046540","29.995060"],["-90.046455","29.995155"],["-90.046370","29.995250"],["-90.046290","29.995350"],["-90.046175","29.995475"],["-90.046060","29.995600"],["-90.045970","29.995700"],["-90.045840","29.995850"],["-90.045810","29.995880"],["-90.045740","29.995960"],["-90.045660","29.996050"],["-90.045560","29.996160"],["-90.045510","29.996210"],["-90.045480","29.996240"],["-90.045430","29.996260"],["-90.045345","29.996365"],["-90.045260","29.996470"],["-90.045240","29.996490"],["-90.045110","29.996640"],["-90.045100","29.996650"],["-90.045020","29.996730"],["-90.044940","29.996820"],["-90.044870","29.996900"],["-90.044770","29.997005"],["-90.044670","29.997110"],["-90.044640","29.997130"],["-90.044535","29.997230"],["-90.044430","29.997330"],["-90.044345","29.997415"],["-90.044260","29.997500"],["-90.044250","29.997510"],["-90.044150","29.997603"],["-90.044050","29.997695"],["-90.043950","29.997788"],["-90.043850","29.997880"],["-90.043730","29.998000"],["-90.043630","29.998090"],["-90.043480","29.998230"],["-90.043380","29.998330"],["-90.043280","29.998430"],["-90.043210","29.998490"],["-90.043140","29.998550"],["-90.042985","29.998685"],["-90.042830","29.998820"],["-90.042800","29.998850"],["-90.042705","29.998925"],["-90.042610","29.999000"],["-90.042520","29.999070"],["-90.042430","29.999140"],["-90.042340","29.999210"],["-90.042250","29.999280"],["-90.042163","29.999346"],["-90.042075","29.999413"],["-90.041988","29.999479"],["-90.041900","29.999545"],["-90.041813","29.999611"],["-90.041725","29.999678"],["-90.041638","29.999744"],["-90.041550","29.999810"],["-90.041428","29.999895"],["-90.041305","29.999980"],["-90.041183","30.000065"],["-90.041060","30.000150"],["-90.040975","30.000218"],["-90.040890","30.000285"],["-90.040805","30.000353"],["-90.040720","30.000420"],["-90.040580","30.000520"],["-90.040475","30.000590"],["-90.040370","30.000660"],["-90.040253","30.000738"],["-90.040135","30.000815"],["-90.040018","30.000893"],["-90.039900","30.000970"],["-90.039750","30.001065"],["-90.039600","30.001160"],["-90.039490","30.001175"],["-90.039380","30.001190"],["-90.039210","30.001260"],["-90.039080","30.001320"],["-90.038940","30.001380"],["-90.038840","30.001420"],["-90.038690","30.001470"],["-90.038530","30.001540"],["-90.038430","30.001580"],["-90.038310","30.001630"],["-90.038180","30.001680"],["-90.038050","30.001730"],["-90.037940","30.001775"],["-90.037830","30.001820"],["-90.037730","30.001860"],["-90.037585","30.001915"],["-90.037440","30.001970"],["-90.037360","30.002010"],["-90.037350","30.002010"],["-90.037210","30.002065"],["-90.037070","30.002120"],["-90.037040","30.002130"],["-90.036960","30.002170"],["-90.036840","30.002220"],["-90.036720","30.002260"],["-90.036600","30.002300"],["-90.036495","30.002340"],["-90.036390","30.002380"],["-90.036300","30.002410"],["-90.036120","30.002470"],["-90.036010","30.002500"],["-90.035900","30.002530"],["-90.035710","30.002580"],["-90.035510","30.002650"],["-90.035350","30.002710"],["-90.035310","30.002720"],["-90.035320","30.002830"],["-90.035320","30.002850"],["-90.035320","30.002930"],["-90.035330","30.002940"],["-90.035330","30.002970"],["-90.035340","30.003070"],["-90.035340","30.003110"],["-90.035350","30.003180"],["-90.035370","30.003300"],["-90.035380","30.003360"],["-90.035410","30.003480"],["-90.035440","30.003610"],["-90.035500","30.003730"],["-90.035540","30.003820"],["-90.035580","30.003910"],["-90.035650","30.004080"],["-90.035480","30.004170"],["-90.035380","30.004215"],["-90.035280","30.004260"],["-90.035210","30.004300"],["-90.035045","30.004380"],["-90.034880","30.004460"],["-90.034778","30.004513"],["-90.034675","30.004565"],["-90.034573","30.004618"],["-90.034470","30.004670"],["-90.034410","30.004700"],["-90.034215","30.004785"],["-90.034020","30.004870"],["-90.033908","30.004920"],["-90.033795","30.004970"],["-90.033683","30.005020"],["-90.033570","30.005070"],["-90.033580","30.005080"],["-90.033660","30.005250"],["-90.033740","30.005410"],["-90.033805","30.005540"],["-90.033870","30.005670"],["-90.033900","30.005720"],["-90.033825","30.005795"],["-90.033810","30.005760"],["-90.033900","30.005720"],["-90.033960","30.005845"],["-90.034020","30.005970"],["-90.034100","30.006120"],["-90.033933","30.006185"],["-90.033765","30.006250"],["-90.033598","30.006315"],["-90.033430","30.006380"],["-90.033280","30.006440"],["-90.033080","30.006520"],["-90.032938","30.006578"],["-90.032795","30.006635"],["-90.032653","30.006693"],["-90.032510","30.006750"],["-90.032365","30.006810"],["-90.032220","30.006870"],["-90.032070","30.006930"],["-90.031880","30.007000"],["-90.031710","30.007070"],["-90.031605","30.007105"],["-90.031500","30.007140"],["-90.031305","30.007200"],["-90.031110","30.007260"],["-90.030993","30.007293"],["-90.030875","30.007325"],["-90.030758","30.007358"],["-90.030640","30.007390"],["-90.030508","30.007425"],["-90.030375","30.007460"],["-90.030243","30.007495"],["-90.030110","30.007530"],["-90.030000","30.007555"],["-90.029890","30.007580"],["-90.029880","30.007580"],["-90.029740","30.007620"],["-90.029560","30.007670"],["-90.029520","30.007680"],["-90.029398","30.007710"],["-90.029275","30.007740"],["-90.029153","30.007770"],["-90.029030","30.007800"],["-90.028908","30.007830"],["-90.028785","30.007860"],["-90.028663","30.007890"],["-90.028540","30.007920"],["-90.028430","30.007945"],["-90.028320","30.007970"],["-90.028120","30.008010"],["-90.028000","30.008035"],["-90.027880","30.008060"],["-90.027730","30.008100"],["-90.027530","30.008150"],["-90.027330","30.008190"],["-90.027130","30.008240"],["-90.026980","30.008280"],["-90.026780","30.008320"],["-90.026580","30.008370"],["-90.026540","30.008380"],["-90.026340","30.008430"],["-90.026140","30.008480"],["-90.025940","30.008520"],["-90.025760","30.008570"],["-90.025615","30.008605"],["-90.025470","30.008640"],["-90.025325","30.008675"],["-90.025180","30.008710"],["-90.025035","30.008745"],["-90.024890","30.008780"],["-90.024745","30.008815"],["-90.024600","30.008850"],["-90.024410","30.008900"],["-90.024340","30.008920"],["-90.024290","30.008930"],["-90.024210","30.008950"],["-90.024100","30.008980"],["-90.023980","30.009010"],["-90.023840","30.009040"],["-90.023650","30.009090"],["-90.023500","30.009126"],["-90.023350","30.009163"],["-90.023200","30.009199"],["-90.023050","30.009235"],["-90.022900","30.009271"],["-90.022750","30.009308"],["-90.022600","30.009344"],["-90.022450","30.009380"],["-90.022280","30.009420"],["-90.022110","30.009460"],["-90.021940","30.009500"],["-90.021770","30.009540"],["-90.021625","30.009575"],["-90.021480","30.009610"],["-90.021370","30.009640"],["-90.021190","30.009690"],["-90.021040","30.009720"],["-90.020890","30.009760"],["-90.020780","30.009780"],["-90.020820","30.009900"],["-90.020840","30.010030"],["-90.020860","30.010180"],["-90.020880","30.010330"],["-90.020829","30.010331"],["-90.020880","30.010330"],["-90.020890","30.010470"],["-90.020902","30.010585"],["-90.020915","30.010700"],["-90.020927","30.010815"],["-90.020940","30.010930"],["-90.020960","30.011110"],["-90.020975","30.011278"],["-90.020990","30.011445"],["-90.021005","30.011613"],["-90.021020","30.011780"],["-90.021035","30.011938"],["-90.021050","30.012095"],["-90.021065","30.012253"],["-90.021080","30.012410"],["-90.020960","30.012420"],["-90.020957","30.012361"],["-90.020960","30.012420"],["-90.021080","30.012410"],["-90.021095","30.012568"],["-90.021110","30.012725"],["-90.021125","30.012883"],["-90.021140","30.013040"],["-90.021155","30.013200"],["-90.021170","30.013360"],["-90.021185","30.013520"],["-90.021200","30.013680"],["-90.021217","30.013840"],["-90.021235","30.014000"],["-90.021252","30.014160"],["-90.021270","30.014320"],["-90.021280","30.014465"],["-90.021290","30.014610"],["-90.021310","30.014790"],["-90.021330","30.014970"],["-90.021345","30.015133"],["-90.021360","30.015295"],["-90.021375","30.015458"],["-90.021390","30.015620"],["-90.021402","30.015748"],["-90.021415","30.015875"],["-90.021427","30.016003"],["-90.021440","30.016130"],["-90.021389","30.016133"],["-90.021440","30.016130"],["-90.021450","30.016230"],["-90.021465","30.016400"],["-90.021480","30.016570"],["-90.021495","30.016740"],["-90.021510","30.016910"],["-90.021525","30.017070"],["-90.021540","30.017230"],["-90.021555","30.017390"],["-90.021570","30.017550"],["-90.021580","30.017723"],["-90.021590","30.017895"],["-90.021600","30.018068"],["-90.021610","30.018240"],["-90.021569","30.018240"],["-90.021610","30.018240"],["-90.021610","30.018340"],["-90.021640","30.018500"],["-90.021685","30.018620"],["-90.021730","30.018740"],["-90.021775","30.018860"],["-90.021820","30.018980"],["-90.021855","30.019080"],["-90.021890","30.019180"],["-90.021955","30.019358"],["-90.022020","30.019535"],["-90.022085","30.019713"],["-90.022150","30.019890"],["-90.022090","30.019908"],["-90.022150","30.019890"],["-90.022170","30.019950"],["-90.022231","30.020115"],["-90.022292","30.020280"],["-90.022354","30.020445"],["-90.022415","30.020610"],["-90.022476","30.020775"],["-90.022537","30.020940"],["-90.022599","30.021105"],["-90.022660","30.021270"],["-90.022725","30.021453"],["-90.022790","30.021635"],["-90.022855","30.021818"],["-90.022920","30.022000"],["-90.022858","30.022017"],["-90.022920","30.022000"],["-90.022960","30.022090"],["-90.023012","30.022238"],["-90.023065","30.022385"],["-90.023117","30.022533"],["-90.023170","30.022680"],["-90.023220","30.022820"],["-90.023270","30.022960"],["-90.023317","30.023086"],["-90.023365","30.023213"],["-90.023412","30.023339"],["-90.023460","30.023465"],["-90.023507","30.023591"],["-90.023555","30.023718"],["-90.023602","30.023844"],["-90.023650","30.023970"],["-90.023584","30.023980"],["-90.023650","30.023970"],["-90.023685","30.024066"],["-90.023720","30.024163"],["-90.023755","30.024259"],["-90.023790","30.024355"],["-90.023825","30.024451"],["-90.023860","30.024548"],["-90.023895","30.024644"],["-90.023930","30.024740"],["-90.023975","30.024870"],["-90.024020","30.025000"],["-90.024065","30.025130"],["-90.024110","30.025260"],["-90.024167","30.025415"],["-90.024225","30.025570"],["-90.024282","30.025725"],["-90.024340","30.025880"],["-90.024261","30.025901"],["-90.024340","30.025880"],["-90.024380","30.025990"],["-90.024185","30.026045"],["-90.023990","30.026100"],["-90.023795","30.026160"],["-90.023600","30.026220"],["-90.023400","30.026280"],["-90.023253","30.026323"],["-90.023105","30.026365"],["-90.022958","30.026408"],["-90.022810","30.026450"],["-90.022613","30.026510"],["-90.022415","30.026570"],["-90.022218","30.026630"],["-90.022020","30.026690"],["-90.021870","30.026734"],["-90.021720","30.026778"],["-90.021570","30.026821"],["-90.021420","30.026865"],["-90.021270","30.026909"],["-90.021120","30.026953"],["-90.020970","30.026996"],["-90.020820","30.027040"],["-90.020798","30.026987"],["-90.020820","30.027040"],["-90.020680","30.027080"],["-90.020505","30.027135"],["-90.020330","30.027190"],["-90.020155","30.027245"],["-90.019980","30.027300"],["-90.019780","30.027355"],["-90.019580","30.027410"],["-90.019460","30.027435"],["-90.019340","30.027460"],["-90.019140","30.027500"],["-90.019015","30.027520"],["-90.018890","30.027540"],["-90.018670","30.027565"],["-90.018450","30.027590"],["-90.018390","30.027590"],["-90.018275","30.027595"],["-90.018160","30.027600"],["-90.018130","30.027600"],["-90.018124","30.027527"],["-90.017926","30.027581"],["-90.017820","30.027610"],["-90.017670","30.027630"],["-90.017488","30.027716"],["-90.017380","30.027790"],["-90.017310","30.027860"],["-90.017199","30.028012"],["-90.017058","30.028144"],["-90.017020","30.028180"],["-90.016870","30.028260"],["-90.016672","30.028315"],["-90.016465","30.028326"],["-90.016250","30.028337"],["-90.016057","30.028404"],["-90.015864","30.028471"],["-90.015672","30.028538"],["-90.015479","30.028605"],["-90.015286","30.028672"],["-90.015093","30.028738"],["-90.014900","30.028805"],["-90.014707","30.028872"],["-90.014514","30.028939"],["-90.014322","30.029006"],["-90.014140","30.029069"],["-90.013943","30.029126"],["-90.013746","30.029184"],["-90.013549","30.029241"],["-90.013353","30.029299"],["-90.013156","30.029356"],["-90.012959","30.029414"],["-90.012762","30.029471"],["-90.012565","30.029528"],["-90.012532","30.029538"],["-90.012361","30.029640"],["-90.012266","30.029696"],["-90.012072","30.029761"],["-90.011879","30.029827"],["-90.011686","30.029893"],["-90.011492","30.029959"],["-90.011299","30.030024"],["-90.011105","30.030090"],["-90.010912","30.030156"],["-90.010719","30.030222"],["-90.010525","30.030287"],["-90.010332","30.030353"],["-90.010139","30.030419"],["-90.009945","30.030485"],["-90.009752","30.030550"],["-90.009579","30.030609"],["-90.009383","30.030669"],["-90.009188","30.030730"],["-90.009060","30.030769"],["-90.008857","30.030806"],["-90.008653","30.030843"],["-90.008582","30.030856"],["-90.008400","30.030943"],["-90.008218","30.031029"],["-90.008136","30.031068"],["-90.007944","30.031137"],["-90.007752","30.031206"],["-90.007561","30.031275"],["-90.007370","30.031347"],["-90.007180","30.031419"],["-90.006989","30.031491"],["-90.006799","30.031563"],["-90.006609","30.031635"],["-90.006416","30.031703"],["-90.006223","30.031770"],["-90.006031","30.031838"],["-90.005838","30.031905"],["-90.005740","30.031940"],["-90.005542","30.031994"],["-90.005343","30.032048"],["-90.005145","30.032101"],["-90.005065","30.032123"],["-90.005100","30.032190"],["-90.005000","30.032230"],["-90.004875","30.032275"],["-90.004750","30.032320"],["-90.004609","30.032374"],["-90.004468","30.032428"],["-90.004326","30.032481"],["-90.004185","30.032535"],["-90.004044","30.032589"],["-90.003903","30.032643"],["-90.003761","30.032696"],["-90.003620","30.032750"],["-90.003510","30.032790"],["-90.003430","30.032820"],["-90.003295","30.032870"],["-90.003160","30.032920"],["-90.003000","30.032980"],["-90.002828","30.033048"],["-90.002655","30.033115"],["-90.002483","30.033183"],["-90.002310","30.033250"],["-90.002160","30.033300"],["-90.002015","30.033355"],["-90.001870","30.033410"],["-90.001680","30.033480"],["-90.001520","30.033540"],["-90.001488","30.033483"],["-90.001520","30.033540"],["-90.001410","30.033580"],["-90.001230","30.033650"],["-90.001080","30.033705"],["-90.000930","30.033760"],["-90.000819","30.033803"],["-90.000708","30.033845"],["-90.000596","30.033888"],["-90.000485","30.033930"],["-90.000374","30.033973"],["-90.000263","30.034015"],["-90.000151","30.034058"],["-90.000040","30.034100"],["-89.999860","30.034155"],["-89.999680","30.034210"],["-89.999565","30.034254"],["-89.999450","30.034298"],["-89.999335","30.034341"],["-89.999220","30.034385"],["-89.999105","30.034429"],["-89.998990","30.034473"],["-89.998875","30.034516"],["-89.998760","30.034560"],["-89.998585","30.034630"],["-89.998410","30.034700"],["-89.998295","30.034745"],["-89.998180","30.034790"],["-89.998010","30.034860"],["-89.997840","30.034930"],["-89.997721","30.034980"],["-89.997603","30.035030"],["-89.997484","30.035080"],["-89.997365","30.035130"],["-89.997246","30.035180"],["-89.997128","30.035230"],["-89.997009","30.035280"],["-89.996890","30.035330"],["-89.996859","30.035264"],["-89.996890","30.035330"],["-89.996770","30.035380"],["-89.996720","30.035288"],["-89.996670","30.035195"],["-89.996620","30.035103"],["-89.996570","30.035010"],["-89.996510","30.034915"],["-89.996450","30.034820"],["-89.996392","30.034725"],["-89.996338","30.034631"],["-89.996283","30.034536"],["-89.996229","30.034442"],["-89.996174","30.034348"],["-89.996120","30.034253"],["-89.996065","30.034159"],["-89.996011","30.034065"],["-89.995957","30.033971"],["-89.995902","30.033876"],["-89.995848","30.033782"],["-89.995793","30.033688"],["-89.995739","30.033593"],["-89.995684","30.033499"],["-89.995630","30.033405"],["-89.995576","30.033310"],["-89.995521","30.033216"],["-89.995549","30.033055"],["-89.995470","30.033090"],["-89.995390","30.032935"],["-89.995310","30.032780"],["-89.995245","30.032665"],["-89.995180","30.032550"],["-89.995115","30.032435"],["-89.995050","30.032320"],["-89.994980","30.032220"],["-89.994915","30.032098"],["-89.994850","30.031975"],["-89.994785","30.031853"],["-89.994720","30.031730"],["-89.994665","30.031635"],["-89.994610","30.031540"],["-89.994560","30.031443"],["-89.994510","30.031345"],["-89.994460","30.031248"],["-89.994410","30.031150"],["-89.994230","30.031230"],["-89.994140","30.031250"],["-89.994090","30.031270"],["-89.994040","30.031290"],["-89.993980","30.031300"],["-89.993930","30.031310"],["-89.993890","30.031300"],["-89.993860","30.031290"],["-89.993850","30.031280"],["-89.993760","30.031180"],["-89.993720","30.031130"],["-89.993600","30.031040"],["-89.993540","30.031000"],["-89.993470","30.030960"],["-89.993420","30.030940"],["-89.993390","30.030940"],["-89.993320","30.030920"],["-89.993280","30.030920"],["-89.993250","30.030920"],["-89.993200","30.030920"],["-89.993170","30.030920"],["-89.993110","30.030930"],["-89.993020","30.030950"],["-89.992913","30.030978"],["-89.992805","30.031005"],["-89.992698","30.031033"],["-89.992590","30.031060"],["-89.992438","30.031098"],["-89.992285","30.031135"],["-89.992133","30.031173"],["-89.991980","30.031210"],["-89.991810","30.031255"],["-89.991640","30.031300"],["-89.991470","30.031345"],["-89.991300","30.031390"],["-89.991115","30.031445"],["-89.990930","30.031500"],["-89.990815","30.031535"],["-89.990700","30.031570"],["-89.990540","30.031620"],["-89.990433","30.031656"],["-89.990325","30.031693"],["-89.990218","30.031729"],["-89.990110","30.031765"],["-89.990003","30.031801"],["-89.989895","30.031838"],["-89.989788","30.031874"],["-89.989680","30.031910"],["-89.989510","30.031980"],["-89.989340","30.032050"],["-89.989235","30.032090"],["-89.989130","30.032130"],["-89.988990","30.032185"],["-89.988850","30.032240"],["-89.988673","30.032313"],["-89.988495","30.032385"],["-89.988318","30.032458"],["-89.988140","30.032530"],["-89.988029","30.032575"],["-89.987918","30.032620"],["-89.987806","30.032665"],["-89.987695","30.032710"],["-89.987584","30.032755"],["-89.987473","30.032800"],["-89.987361","30.032845"],["-89.987250","30.032890"],["-89.987104","30.032950"],["-89.986958","30.033010"],["-89.986811","30.033070"],["-89.986665","30.033130"],["-89.986519","30.033190"],["-89.986373","30.033250"],["-89.986226","30.033310"],["-89.986080","30.033370"],["-89.985948","30.033425"],["-89.985815","30.033480"],["-89.985683","30.033535"],["-89.985550","30.033590"],["-89.985405","30.033645"],["-89.985260","30.033700"],["-89.985312","30.033790"],["-89.985365","30.033880"],["-89.985417","30.033970"],["-89.985470","30.034060"],["-89.985522","30.034150"],["-89.985575","30.034240"],["-89.985627","30.034330"],["-89.985680","30.034420"],["-89.985739","30.034518"],["-89.985797","30.034615"],["-89.985856","30.034713"],["-89.985915","30.034810"],["-89.985974","30.034908"],["-89.986032","30.035005"],["-89.986091","30.035103"],["-89.986150","30.035200"],["-89.986210","30.035300"],["-89.986292","30.035435"],["-89.986375","30.035570"],["-89.986457","30.035705"],["-89.986540","30.035840"],["-89.986622","30.035970"],["-89.986705","30.036100"],["-89.986787","30.036230"],["-89.986870","30.036360"],["-89.986970","30.036515"],["-89.987070","30.036670"],["-89.987130","30.036770"],["-89.987120","30.036774"],["-89.987130","30.036770"],["-89.987170","30.036830"],["-89.987270","30.036980"],["-89.987330","30.037090"],["-89.987390","30.037200"],["-89.987430","30.037280"],["-89.987480","30.037400"],["-89.987510","30.037460"],["-89.987540","30.037555"],["-89.987570","30.037650"],["-89.987600","30.037750"],["-89.987640","30.037900"],["-89.987650","30.037980"],["-89.987680","30.038140"],["-89.987705","30.038240"],["-89.987730","30.038340"],["-89.987750","30.038390"],["-89.987770","30.038450"],["-89.987780","30.038490"],["-89.987810","30.038560"],["-89.987830","30.038610"],["-89.987880","30.038730"],["-89.987940","30.038850"],["-89.987990","30.038950"],["-89.988010","30.038980"],["-89.987945","30.039013"],["-89.988010","30.038980"],["-89.988080","30.039090"],["-89.987970","30.039140"],["-89.987860","30.039190"],["-89.987790","30.039220"],["-89.987610","30.039300"],["-89.987510","30.039340"],["-89.987450","30.039340"],["-89.987360","30.039380"],["-89.987250","30.039435"],["-89.987140","30.039490"],["-89.987030","30.039545"],["-89.986920","30.039600"],["-89.986774","30.039671"],["-89.986629","30.039743"],["-89.986483","30.039814"],["-89.986338","30.039885"],["-89.986192","30.039956"],["-89.986046","30.040028"],["-89.985901","30.040099"],["-89.985755","30.040170"],["-89.985609","30.040241"],["-89.985464","30.040313"],["-89.985318","30.040384"],["-89.985173","30.040455"],["-89.985027","30.040526"],["-89.984881","30.040598"],["-89.984736","30.040669"],["-89.984590","30.040740"],["-89.984484","30.040791"],["-89.984379","30.040843"],["-89.984273","30.040894"],["-89.984168","30.040945"],["-89.984062","30.040996"],["-89.983956","30.041048"],["-89.983851","30.041099"],["-89.983745","30.041150"],["-89.983639","30.041201"],["-89.983534","30.041253"],["-89.983428","30.041304"],["-89.983323","30.041355"],["-89.983217","30.041406"],["-89.983111","30.041458"],["-89.983006","30.041509"],["-89.982900","30.041560"],["-89.982921","30.041567"],["-89.982900","30.041560"],["-89.982724","30.041646"],["-89.982548","30.041733"],["-89.982371","30.041819"],["-89.982195","30.041905"],["-89.982019","30.041991"],["-89.981843","30.042078"],["-89.981666","30.042164"],["-89.981490","30.042250"],["-89.981308","30.042340"],["-89.981125","30.042430"],["-89.980943","30.042520"],["-89.980760","30.042610"],["-89.980655","30.042660"],["-89.980550","30.042710"],["-89.980450","30.042760"],["-89.980350","30.042810"],["-89.980270","30.042650"],["-89.980130","30.042700"],["-89.980166","30.042767"],["-89.980130","30.042700"],["-89.980270","30.042650"],["-89.980350","30.042810"],["-89.980235","30.042865"],["-89.980120","30.042920"],["-89.979985","30.042980"],["-89.979850","30.043040"],["-89.979690","30.043120"],["-89.979530","30.043200"],["-89.979390","30.043270"],["-89.979230","30.043350"],["-89.979130","30.043400"],["-89.979030","30.043450"],["-89.978930","30.043500"],["-89.978830","30.043550"],["-89.978730","30.043600"],["-89.978560","30.043680"],["-89.978403","30.043760"],["-89.978245","30.043840"],["-89.978088","30.043920"],["-89.977930","30.044000"],["-89.977765","30.044080"],["-89.977600","30.044160"],["-89.977435","30.044240"],["-89.977270","30.044320"],["-89.977148","30.044383"],["-89.977025","30.044445"],["-89.976903","30.044508"],["-89.976780","30.044570"],["-89.976690","30.044460"],["-89.976600","30.044350"],["-89.976665","30.044312"],["-89.976600","30.044350"],["-89.976690","30.044460"],["-89.976780","30.044570"],["-89.976600","30.044658"],["-89.976420","30.044745"],["-89.976240","30.044833"],["-89.976060","30.044920"],["-89.975895","30.045000"],["-89.975730","30.045080"],["-89.975570","30.045160"],["-89.975410","30.045240"],["-89.975250","30.045320"],["-89.975090","30.045400"],["-89.974930","30.045480"],["-89.974760","30.045565"],["-89.974590","30.045650"],["-89.974420","30.045735"],["-89.974250","30.045820"],["-89.974093","30.045900"],["-89.973935","30.045980"],["-89.973778","30.046060"],["-89.973620","30.046140"],["-89.973520","30.046193"],["-89.973420","30.046245"],["-89.973320","30.046298"],["-89.973220","30.046350"],["-89.973095","30.046420"],["-89.972970","30.046490"],["-89.972845","30.046560"],["-89.972720","30.046630"],["-89.972585","30.046710"],["-89.972418","30.046743"],["-89.972260","30.046860"],["-89.972139","30.046950"],["-89.971962","30.047045"],["-89.971786","30.047140"],["-89.971609","30.047234"],["-89.971433","30.047329"],["-89.971256","30.047424"],["-89.971079","30.047519"],["-89.970903","30.047613"],["-89.970726","30.047708"],["-89.970550","30.047803"],["-89.970373","30.047898"],["-89.970328","30.047922"],["-89.970163","30.048031"],["-89.969997","30.048140"],["-89.969935","30.048181"],["-89.969763","30.048282"],["-89.969591","30.048383"],["-89.969460","30.048460"],["-89.969278","30.048547"],["-89.969096","30.048633"],["-89.968914","30.048720"],["-89.968806","30.048771"],["-89.968658","30.048897"],["-89.968580","30.048963"],["-89.968409","30.049066"],["-89.968239","30.049169"],["-89.968069","30.049272"],["-89.967899","30.049375"],["-89.967729","30.049479"],["-89.967558","30.049582"],["-89.967388","30.049685"],["-89.967218","30.049788"],["-89.967048","30.049891"],["-89.966877","30.049994"],["-89.966726","30.050118"],["-89.966644","30.050186"],["-89.966468","30.050282"],["-89.966293","30.050378"],["-89.966117","30.050474"],["-89.965941","30.050570"],["-89.965791","30.050652"],["-89.965642","30.050734"],["-89.965492","30.050816"],["-89.965342","30.050898"],["-89.965280","30.050940"],["-89.965199","30.050849"],["-89.965117","30.050758"],["-89.965036","30.050666"],["-89.964955","30.050575"],["-89.964874","30.050484"],["-89.964792","30.050393"],["-89.964711","30.050301"],["-89.964630","30.050210"],["-89.964505","30.050075"],["-89.964380","30.049940"],["-89.964262","30.049795"],["-89.964145","30.049650"],["-89.964027","30.049505"],["-89.963910","30.049360"],["-89.963837","30.049273"],["-89.963765","30.049185"],["-89.963692","30.049098"],["-89.963620","30.049010"],["-89.963547","30.048923"],["-89.963475","30.048835"],["-89.963402","30.048748"],["-89.963330","30.048660"],["-89.963389","30.048625"],["-89.963330","30.048660"],["-89.963280","30.048590"],["-89.963190","30.048478"],["-89.963100","30.048365"],["-89.963010","30.048253"],["-89.962920","30.048140"],["-89.962805","30.048000"],["-89.962690","30.047860"],["-89.962570","30.047720"],["-89.962495","30.047635"],["-89.962420","30.047550"],["-89.962511","30.047538"],["-89.962500","30.047510"],["-89.962410","30.047550"],["-89.962300","30.047405"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957975","30.042198"],["-89.957900","30.042105"],["-89.957825","30.042013"],["-89.957750","30.041920"],["-89.957675","30.041828"],["-89.957600","30.041735"],["-89.957525","30.041643"],["-89.957450","30.041550"],["-89.957330","30.041400"],["-89.957230","30.041290"],["-89.957210","30.041260"],["-89.957115","30.041145"],["-89.957020","30.041030"],["-89.956910","30.040898"],["-89.956800","30.040765"],["-89.956690","30.040633"],["-89.956580","30.040500"],["-89.956457","30.040350"],["-89.956335","30.040200"],["-89.956212","30.040050"],["-89.956090","30.039900"],["-89.955987","30.039778"],["-89.955885","30.039655"],["-89.955782","30.039533"],["-89.955680","30.039410"],["-89.955580","30.039290"],["-89.955480","30.039160"],["-89.955380","30.039030"],["-89.955431","30.038995"],["-89.955380","30.039030"],["-89.955300","30.038930"],["-89.955220","30.038830"],["-89.955319","30.038766"],["-89.955418","30.038703"],["-89.955516","30.038639"],["-89.955615","30.038575"],["-89.955714","30.038511"],["-89.955813","30.038448"],["-89.955911","30.038384"],["-89.956010","30.038320"],["-89.956163","30.038220"],["-89.956315","30.038120"],["-89.956468","30.038020"],["-89.956620","30.037920"],["-89.956798","30.037810"],["-89.956975","30.037700"],["-89.957153","30.037590"],["-89.957330","30.037480"],["-89.957488","30.037380"],["-89.957645","30.037280"],["-89.957803","30.037180"],["-89.957960","30.037080"],["-89.957965","30.037094"],["-89.957960","30.037080"],["-89.958050","30.037030"],["-89.958183","30.036945"],["-89.958315","30.036860"],["-89.958448","30.036775"],["-89.958580","30.036690"],["-89.958690","30.036620"],["-89.958845","30.036523"],["-89.959000","30.036425"],["-89.959155","30.036328"],["-89.959310","30.036230"],["-89.959440","30.036150"],["-89.959535","30.036090"],["-89.959630","30.036030"],["-89.959795","30.035920"],["-89.959960","30.035810"],["-89.959990","30.035800"],["-89.960130","30.035720"],["-89.960280","30.035640"],["-89.960430","30.035560"],["-89.960580","30.035480"],["-89.960730","30.035400"],["-89.960800","30.035360"],["-89.960890","30.035310"],["-89.961020","30.035230"],["-89.961200","30.035120"],["-89.961308","30.035108"],["-89.961436","30.034966"],["-89.961504","30.034890"],["-89.961549","30.034860"],["-89.961720","30.034758"],["-89.961891","30.034656"],["-89.962062","30.034554"],["-89.962234","30.034452"],["-89.962412","30.034360"],["-89.962530","30.034299"],["-89.962706","30.034204"],["-89.962883","30.034109"],["-89.963030","30.034029"],["-89.963221","30.033958"],["-89.963412","30.033887"],["-89.963510","30.033850"],["-89.963705","30.033788"],["-89.963760","30.033770"],["-89.963964","30.033738"],["-89.964169","30.033705"],["-89.964373","30.033673"],["-89.964578","30.033641"],["-89.964782","30.033609"],["-89.964986","30.033576"],["-89.965140","30.033552"],["-89.965324","30.033468"],["-89.965423","30.033423"],["-89.965626","30.033385"],["-89.965829","30.033348"],["-89.966033","30.033311"],["-89.966236","30.033274"],["-89.966310","30.033260"],["-89.966515","30.033233"],["-89.966721","30.033206"],["-89.966926","30.033179"],["-89.967132","30.033152"],["-89.967337","30.033125"],["-89.967542","30.033098"],["-89.967748","30.033071"],["-89.967795","30.033065"],["-89.967992","30.033008"],["-89.968189","30.032951"],["-89.968380","30.032930"],["-89.968588","30.032935"],["-89.968795","30.032939"],["-89.969002","30.032954"],["-89.969210","30.032968"],["-89.969390","30.032980"],["-89.969593","30.033017"],["-89.969770","30.033050"],["-89.969970","30.033100"],["-89.970169","30.033150"],["-89.970369","30.033199"],["-89.970569","30.033249"],["-89.970689","30.033279"],["-89.970893","30.033311"],["-89.971010","30.033330"],["-89.971217","30.033340"],["-89.971425","30.033335"],["-89.971633","30.033331"],["-89.971839","30.033311"],["-89.972042","30.033273"],["-89.972250","30.033267"],["-89.972415","30.033263"],["-89.972390","30.033180"],["-89.972580","30.033120"],["-89.972730","30.033070"],["-89.972880","30.032996"],["-89.973030","30.032922"],["-89.973180","30.032848"],["-89.973330","30.032774"],["-89.973435","30.032709"],["-89.973539","30.032644"],["-89.973643","30.032578"],["-89.973748","30.032513"],["-89.973852","30.032448"],["-89.973956","30.032382"],["-89.974061","30.032317"],["-89.974165","30.032252"],["-89.974334","30.032157"],["-89.974503","30.032062"],["-89.974672","30.031967"],["-89.974841","30.031872"],["-89.975010","30.031777"],["-89.975179","30.031682"],["-89.975348","30.031587"],["-89.975517","30.031492"],["-89.975643","30.031423"],["-89.975768","30.031355"],["-89.975893","30.031286"],["-89.976019","30.031218"],["-89.975949","30.031117"],["-89.975879","30.031016"],["-89.975809","30.030916"],["-89.975740","30.030815"],["-89.975670","30.030715"],["-89.975600","30.030614"],["-89.975530","30.030514"],["-89.975460","30.030413"],["-89.975391","30.030313"],["-89.975333","30.030230"],["-89.975276","30.030147"],["-89.975218","30.030064"],["-89.975161","30.029982"],["-89.975103","30.029899"],["-89.975046","30.029816"],["-89.974988","30.029733"],["-89.974931","30.029650"],["-89.974960","30.029613"],["-89.974920","30.029570"],["-89.975020","30.029500"],["-89.974880","30.029380"],["-89.974760","30.029500"],["-89.974630","30.029580"],["-89.974510","30.029650"],["-89.974390","30.029730"],["-89.974370","30.029740"],["-89.974240","30.029820"],["-89.974060","30.029933"],["-89.973880","30.030045"],["-89.973700","30.030158"],["-89.973520","30.030270"],["-89.973430","30.030150"],["-89.973520","30.030150"],["-89.973490","30.030110"],["-89.973430","30.030150"],["-89.973520","30.030270"],["-89.973350","30.030375"],["-89.973180","30.030480"],["-89.973035","30.030570"],["-89.972890","30.030660"],["-89.972745","30.030750"],["-89.972600","30.030840"],["-89.972455","30.030930"],["-89.972310","30.031020"],["-89.972165","30.031110"],["-89.972020","30.031200"],["-89.971999","30.031174"],["-89.972020","30.031200"],["-89.971970","30.031240"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971947","30.031550"],["-89.972015","30.031650"],["-89.972082","30.031750"],["-89.972150","30.031850"],["-89.972260","30.032010"],["-89.972160","30.032174"]]},{"type":"MultiPoint","coordinates":[["-89.968512","30.057779"],["-89.966607","30.058952"],["-89.964351","30.060362"],["-89.962065","30.061865"],["-89.959685","30.063503"],["-89.956112","30.066028"],["-89.953509","30.067955"],["-89.951896","30.066489"],["-89.950834","30.065398"],["-89.949129","30.066541"],["-89.947857","30.067520"],["-89.967611","30.050069"],["-89.970305","30.048446"],["-89.972310","30.047294"],["-89.976700","30.045060"],["-89.980166","30.042767"],["-89.983068","30.042017"],["-89.986878","30.040127"],["-89.993246","30.037047"],["-89.996592","30.035889"],["-89.999401","30.034649"],["-90.001760","30.033786"],["-90.003345","30.033185"],["-90.004816","30.032656"],["-90.006743","30.031936"],["-90.009685","30.030906"],["-90.012394","30.029969"],["-90.014255","30.029333"],["-90.016277","30.028719"],["-90.020801","30.027416"],["-90.023661","30.026566"],["-90.024266","30.025257"],["-90.023672","30.023602"],["-90.023153","30.022186"],["-90.022361","30.019997"],["-90.021836","30.018586"],["-90.021600","30.016292"],["-90.021412","30.014387"],["-90.021239","30.012418"],["-90.020993","30.010096"],["-90.020829","30.010331"],["-90.020957","30.012361"],["-90.021140","30.014271"],["-90.021389","30.016133"],["-90.021569","30.018240"],["-90.022090","30.019908"],["-90.022858","30.022017"],["-90.023584","30.023980"],["-90.024261","30.025901"],["-90.020798","30.026987"],["-90.018124","30.027527"],["-90.016250","30.028337"],["-90.014385","30.028895"],["-90.012532","30.029538"],["-90.008582","30.030856"],["-90.005065","30.032123"],["-90.003455","30.032737"],["-90.001488","30.033483"],["-89.996859","30.035264"],["-89.976665","30.044312"],["-89.972418","30.046743"],["-89.970328","30.047922"],["-89.968806","30.048771"],["-89.966877","30.049994"],["-89.965342","30.050898"],["-89.972415","30.033263"],["-89.968094","30.032694"],["-89.965605","30.033109"],["-89.961367","30.034540"],["-89.959163","30.035954"],["-89.957683","30.036851"],["-89.955169","30.038474"],["-89.958473","30.043282"],["-89.962650","30.048223"],["-89.967395","30.054034"],["-89.968632","30.055525"],["-89.969701","30.056883"],["-89.945660","30.069221"],["-89.944047","30.070538"],["-89.942262","30.071794"],["-89.940773","30.071972"],["-89.940506","30.069888"],["-89.940372","30.068109"],["-89.944969","30.056861"],["-89.948040","30.054936"],["-89.950632","30.053304"],["-89.952930","30.051854"],["-89.956532","30.049579"],["-89.959109","30.048110"],["-89.985444","30.040786"],["-89.987190","30.036296"],["-90.074818","29.954823"],["-90.077740","29.955981"],["-90.033834","30.005525"],["-89.968906","30.049249"],["-89.978722","30.044055"],["-89.987945","30.039013"],["-89.982921","30.041567"],["-89.979983","30.043452"],["-89.987120","30.036774"],["-90.033825","30.005795"],["-89.966111","30.051048"],["-89.959222","30.043676"],["-89.994600","30.032166"],["-89.996330","30.035385"],["-89.955431","30.038995"],["-89.957965","30.037094"],["-89.961308","30.035108"],["-89.965140","30.033552"],["-89.967795","30.033065"],["-89.974960","30.029613"],["-90.073489","29.964347"],["-89.946749","30.068330"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-89.972160","30.032174"],["-89.965073","30.051187"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972600","30.032820"],["-89.972490","30.032880"],["-89.972420","30.032910"],["-89.972320","30.032950"],["-89.972220","30.032980"],["-89.972110","30.033020"],["-89.972030","30.033050"],["-89.971890","30.033080"],["-89.971790","30.033090"],["-89.971700","30.033100"],["-89.971520","30.033120"],["-89.971390","30.033130"],["-89.971260","30.033140"],["-89.971170","30.033140"],["-89.971070","30.033130"],["-89.970950","30.033120"],["-89.970790","30.033100"],["-89.970630","30.033070"],["-89.970450","30.033030"],["-89.970290","30.032990"],["-89.970120","30.032940"],["-89.969930","30.032900"],["-89.969735","30.032860"],["-89.969540","30.032820"],["-89.969370","30.032790"],["-89.969180","30.032770"],["-89.968970","30.032760"],["-89.968800","30.032750"],["-89.968680","30.032745"],["-89.968560","30.032740"],["-89.968340","30.032750"],["-89.968170","30.032750"],["-89.968100","30.032760"],["-89.968094","30.032694"],["-89.968100","30.032760"],["-89.968000","30.032760"],["-89.967870","30.032780"],["-89.967745","30.032795"],["-89.967620","30.032810"],["-89.967460","30.032840"],["-89.967300","30.032870"],["-89.967170","30.032900"],["-89.967040","30.032930"],["-89.966860","30.032960"],["-89.966650","30.033000"],["-89.966510","30.033030"],["-89.966310","30.033060"],["-89.966160","30.033090"],["-89.966010","30.033120"],["-89.965860","30.033150"],["-89.965745","30.033170"],["-89.965630","30.033190"],["-89.965605","30.033109"],["-89.965630","30.033190"],["-89.965440","30.033225"],["-89.965250","30.033260"],["-89.965130","30.033290"],["-89.965003","30.033315"],["-89.964875","30.033340"],["-89.964748","30.033365"],["-89.964620","30.033390"],["-89.964505","30.033410"],["-89.964390","30.033430"],["-89.964275","30.033450"],["-89.964160","30.033470"],["-89.963960","30.033520"],["-89.963800","30.033560"],["-89.963680","30.033580"],["-89.963540","30.033625"],["-89.963400","30.033670"],["-89.963250","30.033710"],["-89.963130","30.033760"],["-89.963100","30.033770"],["-89.963050","30.033790"],["-89.962920","30.033830"],["-89.962770","30.033880"],["-89.962710","30.033910"],["-89.962540","30.033990"],["-89.962370","30.034060"],["-89.962220","30.034130"],["-89.962160","30.034170"],["-89.962070","30.034220"],["-89.962030","30.034240"],["-89.961930","30.034295"],["-89.961830","30.034350"],["-89.961710","30.034420"],["-89.961590","30.034490"],["-89.961490","30.034560"],["-89.961420","30.034590"],["-89.961410","30.034590"],["-89.961367","30.034540"],["-89.961410","30.034590"],["-89.961270","30.034690"],["-89.961160","30.034755"],["-89.961050","30.034820"],["-89.960950","30.034885"],["-89.960850","30.034950"],["-89.960760","30.035010"],["-89.960670","30.035070"],["-89.960590","30.035120"],["-89.960425","30.035230"],["-89.960260","30.035340"],["-89.960240","30.035360"],["-89.960080","30.035470"],["-89.959940","30.035570"],["-89.959815","30.035655"],["-89.959690","30.035740"],["-89.959565","30.035823"],["-89.959440","30.035905"],["-89.959315","30.035988"],["-89.959190","30.036070"],["-89.959080","30.035970"],["-89.959140","30.035930"],["-89.959163","30.035954"],["-89.959140","30.035930"],["-89.959080","30.035970"],["-89.959190","30.036070"],["-89.959038","30.036168"],["-89.958885","30.036265"],["-89.958733","30.036363"],["-89.958580","30.036460"],["-89.958450","30.036540"],["-89.958308","30.036625"],["-89.958165","30.036710"],["-89.958023","30.036795"],["-89.957880","30.036880"],["-89.957770","30.036950"],["-89.957683","30.036851"],["-89.957790","30.036780"],["-89.957890","30.036900"],["-89.957755","30.036985"],["-89.957620","30.037070"],["-89.957485","30.037155"],["-89.957350","30.037240"],["-89.957215","30.037325"],["-89.957080","30.037410"],["-89.956945","30.037495"],["-89.956810","30.037580"],["-89.956655","30.037680"],["-89.956500","30.037780"],["-89.956340","30.037875"],["-89.956180","30.037970"],["-89.956025","30.038060"],["-89.955870","30.038150"],["-89.955775","30.038210"],["-89.955680","30.038270"],["-89.955620","30.038310"],["-89.955440","30.038420"],["-89.955290","30.038520"],["-89.955230","30.038440"],["-89.955169","30.038474"],["-89.955230","30.038440"],["-89.955290","30.038520"],["-89.955180","30.038590"],["-89.955070","30.038660"],["-89.954950","30.038720"],["-89.954830","30.038780"],["-89.954905","30.038875"],["-89.954980","30.038970"],["-89.955090","30.039110"],["-89.955160","30.039190"],["-89.955230","30.039270"],["-89.955340","30.039395"],["-89.955450","30.039520"],["-89.955470","30.039550"],["-89.955565","30.039663"],["-89.955660","30.039775"],["-89.955755","30.039888"],["-89.955850","30.040000"],["-89.955970","30.040150"],["-89.956036","30.040229"],["-89.956102","30.040308"],["-89.956169","30.040386"],["-89.956235","30.040465"],["-89.956301","30.040544"],["-89.956367","30.040623"],["-89.956434","30.040701"],["-89.956500","30.040780"],["-89.956567","30.040863"],["-89.956635","30.040945"],["-89.956702","30.041028"],["-89.956770","30.041110"],["-89.956900","30.041260"],["-89.956970","30.041350"],["-89.957020","30.041410"],["-89.957100","30.041500"],["-89.957170","30.041585"],["-89.957240","30.041670"],["-89.957345","30.041795"],["-89.957450","30.041920"],["-89.957500","30.041990"],["-89.957550","30.042050"],["-89.957560","30.042060"],["-89.957635","30.042150"],["-89.957710","30.042240"],["-89.957785","30.042330"],["-89.957860","30.042420"],["-89.957955","30.042533"],["-89.958050","30.042645"],["-89.958145","30.042758"],["-89.958240","30.042870"],["-89.958315","30.042963"],["-89.958390","30.043055"],["-89.958465","30.043148"],["-89.958540","30.043240"],["-89.958473","30.043282"],["-89.958540","30.043240"],["-89.958630","30.043350"],["-89.958760","30.043500"],["-89.958845","30.043600"],["-89.958930","30.043700"],["-89.958990","30.043770"],["-89.959060","30.043850"],["-89.959130","30.043930"],["-89.959210","30.044040"],["-89.959330","30.044180"],["-89.959400","30.044260"],["-89.959470","30.044340"],["-89.959565","30.044455"],["-89.959660","30.044570"],["-89.959765","30.044700"],["-89.959870","30.044830"],["-89.959930","30.044900"],["-89.959990","30.044970"],["-89.960120","30.045120"],["-89.960205","30.045230"],["-89.960290","30.045340"],["-89.960365","30.045430"],["-89.960440","30.045520"],["-89.960555","30.045665"],["-89.960670","30.045810"],["-89.960690","30.045830"],["-89.960810","30.045980"],["-89.960910","30.046110"],["-89.960950","30.046150"],["-89.960960","30.046170"],["-89.960970","30.046180"],["-89.961030","30.046260"],["-89.961090","30.046330"],["-89.961100","30.046340"],["-89.961210","30.046480"],["-89.961305","30.046605"],["-89.961400","30.046730"],["-89.961530","30.046875"],["-89.961660","30.047020"],["-89.961765","30.047145"],["-89.961870","30.047270"],["-89.961980","30.047400"],["-89.962060","30.047500"],["-89.962140","30.047600"],["-89.962230","30.047690"],["-89.962325","30.047800"],["-89.962420","30.047910"],["-89.962490","30.047990"],["-89.962580","30.048100"],["-89.962630","30.048160"],["-89.962670","30.048210"],["-89.962650","30.048223"],["-89.962670","30.048210"],["-89.962720","30.048270"],["-89.962820","30.048400"],["-89.962885","30.048480"],["-89.962950","30.048560"],["-89.963015","30.048640"],["-89.963080","30.048720"],["-89.963204","30.048875"],["-89.963329","30.049030"],["-89.963453","30.049185"],["-89.963577","30.049340"],["-89.963702","30.049495"],["-89.963826","30.049650"],["-89.963951","30.049805"],["-89.964075","30.049960"],["-89.964199","30.050115"],["-89.964324","30.050270"],["-89.964448","30.050425"],["-89.964572","30.050580"],["-89.964697","30.050735"],["-89.964821","30.050890"],["-89.964946","30.051045"],["-89.965073","30.051187"],["-89.965070","30.051190"],["-89.965140","30.051265"],["-89.965210","30.051340"],["-89.965320","30.051480"],["-89.965450","30.051395"],["-89.965580","30.051310"],["-89.965700","30.051230"],["-89.965820","30.051150"],["-89.965940","30.051070"],["-89.966060","30.050990"],["-89.966111","30.051048"],["-89.966060","30.050990"],["-89.966225","30.050885"],["-89.966390","30.050780"],["-89.966555","30.050675"],["-89.966720","30.050570"],["-89.966890","30.050450"],["-89.966960","30.050410"],["-89.967040","30.050360"],["-89.967170","30.050270"],["-89.967270","30.050208"],["-89.967370","30.050145"],["-89.967470","30.050083"],["-89.967570","30.050020"],["-89.967611","30.050069"],["-89.967570","30.050020"],["-89.967650","30.049970"],["-89.967818","30.049863"],["-89.967985","30.049755"],["-89.968153","30.049648"],["-89.968320","30.049540"],["-89.968455","30.049453"],["-89.968590","30.049365"],["-89.968725","30.049278"],["-89.968860","30.049190"],["-89.968906","30.049249"],["-89.968860","30.049190"],["-89.968940","30.049140"],["-89.969115","30.049035"],["-89.969295","30.048939"],["-89.969441","30.048857"],["-89.969586","30.048774"],["-89.969732","30.048692"],["-89.969877","30.048609"],["-89.970023","30.048527"],["-89.970169","30.048445"],["-89.970305","30.048446"],["-89.970404","30.048299"],["-89.970513","30.048237"],["-89.970621","30.048176"],["-89.970730","30.048115"],["-89.970839","30.048053"],["-89.970947","30.047992"],["-89.971056","30.047931"],["-89.971165","30.047869"],["-89.971273","30.047808"],["-89.971382","30.047746"],["-89.971490","30.047685"],["-89.971599","30.047624"],["-89.971708","30.047562"],["-89.971816","30.047501"],["-89.971925","30.047439"],["-89.972034","30.047378"],["-89.972142","30.047317"],["-89.972310","30.047294"],["-89.972419","30.047149"],["-89.972542","30.047083"],["-89.972666","30.047017"],["-89.972789","30.046952"],["-89.972913","30.046886"],["-89.973036","30.046820"],["-89.973160","30.046754"],["-89.973283","30.046688"],["-89.973406","30.046623"],["-89.973530","30.046557"],["-89.973653","30.046491"],["-89.973777","30.046425"],["-89.973900","30.046360"],["-89.974024","30.046294"],["-89.974147","30.046228"],["-89.974271","30.046162"],["-89.974394","30.046096"],["-89.974567","30.046007"],["-89.974740","30.045918"],["-89.974913","30.045828"],["-89.975086","30.045739"],["-89.975259","30.045649"],["-89.975432","30.045560"],["-89.975605","30.045471"],["-89.975778","30.045381"],["-89.975962","30.045295"],["-89.976085","30.045241"],["-89.976208","30.045187"],["-89.976330","30.045133"],["-89.976453","30.045079"],["-89.976577","30.045069"],["-89.976700","30.045060"],["-89.976786","30.044958"],["-89.976976","30.044863"],["-89.977167","30.044767"],["-89.977357","30.044672"],["-89.977548","30.044577"],["-89.977738","30.044482"],["-89.977929","30.044386"],["-89.978119","30.044291"],["-89.978310","30.044196"],["-89.978479","30.044105"],["-89.978648","30.044015"],["-89.978722","30.044055"],["-89.978809","30.043938"],["-89.978938","30.043875"],["-89.979067","30.043811"],["-89.979196","30.043748"],["-89.979325","30.043684"],["-89.979455","30.043621"],["-89.979584","30.043557"],["-89.979713","30.043494"],["-89.979842","30.043430"],["-89.979983","30.043452"],["-89.979983","30.043452"],["-89.980041","30.043351"],["-89.980149","30.043306"],["-89.980257","30.043261"],["-89.980366","30.043216"],["-89.980474","30.043171"],["-89.980635","30.043093"],["-89.980736","30.043042"],["-89.980837","30.042991"],["-89.980939","30.042941"],["-89.981040","30.042890"],["-89.981218","30.042805"],["-89.981395","30.042720"],["-89.981573","30.042635"],["-89.981750","30.042550"],["-89.981920","30.042470"],["-89.982090","30.042390"],["-89.982260","30.042310"],["-89.982430","30.042230"],["-89.982580","30.042160"],["-89.982730","30.042090"],["-89.982880","30.042020"],["-89.983030","30.041950"],["-89.983068","30.042017"],["-89.983030","30.041950"],["-89.983120","30.041910"],["-89.983225","30.041855"],["-89.983330","30.041800"],["-89.983460","30.041730"],["-89.983620","30.041630"],["-89.983780","30.041530"],["-89.983875","30.041475"],["-89.983970","30.041420"],["-89.984090","30.041340"],["-89.984110","30.041340"],["-89.984260","30.041250"],["-89.984270","30.041250"],["-89.984450","30.041160"],["-89.984580","30.041100"],["-89.984754","30.041024"],["-89.984928","30.040949"],["-89.985101","30.040873"],["-89.985275","30.040798"],["-89.985444","30.040786"],["-89.985537","30.040708"],["-89.985629","30.040631"],["-89.985763","30.040566"],["-89.985898","30.040501"],["-89.986032","30.040436"],["-89.986166","30.040371"],["-89.986300","30.040306"],["-89.986434","30.040240"],["-89.986568","30.040175"],["-89.986702","30.040110"],["-89.986878","30.040127"],["-89.986983","30.040028"],["-89.987088","30.039929"],["-89.987257","30.039854"],["-89.987425","30.039778"],["-89.987593","30.039703"],["-89.987762","30.039628"],["-89.987930","30.039552"],["-89.988098","30.039477"],["-89.988267","30.039401"],["-89.988435","30.039326"],["-89.988351","30.039213"],["-89.988266","30.039100"],["-89.988218","30.039009"],["-89.988170","30.038918"],["-89.988121","30.038826"],["-89.988073","30.038735"],["-89.988023","30.038597"],["-89.987973","30.038459"],["-89.987934","30.038284"],["-89.987896","30.038109"],["-89.987858","30.037934"],["-89.987820","30.037759"],["-89.987770","30.037619"],["-89.987720","30.037479"],["-89.987671","30.037339"],["-89.987621","30.037199"],["-89.987562","30.037087"],["-89.987502","30.036975"],["-89.987442","30.036863"],["-89.987383","30.036751"],["-89.987297","30.036629"],["-89.987211","30.036507"],["-89.987200","30.036402"],["-89.987190","30.036296"],["-89.987103","30.036194"],["-89.987015","30.036092"],["-89.986924","30.035945"],["-89.986834","30.035798"],["-89.986743","30.035651"],["-89.986652","30.035504"],["-89.986577","30.035373"],["-89.986502","30.035242"],["-89.986427","30.035111"],["-89.986352","30.034979"],["-89.986276","30.034848"],["-89.986187","30.034691"],["-89.986098","30.034535"],["-89.986009","30.034378"],["-89.985920","30.034221"],["-89.985831","30.034065"],["-89.985741","30.033908"],["-89.985652","30.033751"],["-89.985563","30.033594"],["-89.985671","30.033549"],["-89.985778","30.033505"],["-89.985886","30.033460"],["-89.985994","30.033415"],["-89.986101","30.033370"],["-89.986209","30.033325"],["-89.986316","30.033280"],["-89.986424","30.033235"],["-89.986532","30.033191"],["-89.986639","30.033146"],["-89.986747","30.033101"],["-89.986855","30.033056"],["-89.986962","30.033011"],["-89.987070","30.032966"],["-89.987178","30.032921"],["-89.987285","30.032877"],["-89.987393","30.032832"],["-89.987500","30.032787"],["-89.987608","30.032742"],["-89.987716","30.032697"],["-89.987823","30.032652"],["-89.987931","30.032607"],["-89.988039","30.032563"],["-89.988146","30.032518"],["-89.988254","30.032473"],["-89.988362","30.032428"],["-89.988469","30.032383"],["-89.988577","30.032338"],["-89.988685","30.032293"],["-89.988792","30.032249"],["-89.988900","30.032204"],["-89.989007","30.032159"],["-89.989120","30.032115"],["-89.989233","30.032072"],["-89.989346","30.032029"],["-89.989459","30.031985"],["-89.989572","30.031942"],["-89.989685","30.031898"],["-89.989798","30.031855"],["-89.989911","30.031811"],["-89.990068","30.031764"],["-89.990226","30.031717"],["-89.990384","30.031670"],["-89.990541","30.031623"],["-89.990699","30.031576"],["-89.990856","30.031529"],["-89.991014","30.031482"],["-89.991171","30.031435"],["-89.991371","30.031379"],["-89.991571","30.031324"],["-89.991771","30.031268"],["-89.991971","30.031212"],["-89.992095","30.031183"],["-89.992219","30.031153"],["-89.992343","30.031123"],["-89.992467","30.031094"],["-89.992591","30.031064"],["-89.992715","30.031035"],["-89.992839","30.031005"],["-89.992963","30.030975"],["-89.993095","30.030945"],["-89.993226","30.030915"],["-89.993398","30.030952"],["-89.993569","30.030989"],["-89.993642","30.031065"],["-89.993714","30.031140"],["-89.993787","30.031216"],["-89.993859","30.031291"],["-89.994009","30.031273"],["-89.994159","30.031254"],["-89.994245","30.031240"],["-89.994298","30.031336"],["-89.994351","30.031433"],["-89.994404","30.031529"],["-89.994457","30.031626"],["-89.994510","30.031722"],["-89.994563","30.031818"],["-89.994616","30.031915"],["-89.994669","30.032011"],["-89.994600","30.032166"],["-89.994705","30.032296"],["-89.994810","30.032426"],["-89.994916","30.032555"],["-89.995021","30.032685"],["-89.995068","30.032774"],["-89.995115","30.032862"],["-89.995162","30.032951"],["-89.995209","30.033040"],["-89.995256","30.033129"],["-89.995303","30.033218"],["-89.995350","30.033306"],["-89.995397","30.033395"],["-89.995444","30.033484"],["-89.995491","30.033573"],["-89.995538","30.033662"],["-89.995585","30.033751"],["-89.995631","30.033839"],["-89.995678","30.033928"],["-89.995725","30.034017"],["-89.995772","30.034106"],["-89.995819","30.034195"],["-89.995866","30.034283"],["-89.995913","30.034372"],["-89.995960","30.034461"],["-89.996007","30.034550"],["-89.996054","30.034639"],["-89.996101","30.034728"],["-89.996148","30.034816"],["-89.996195","30.034905"],["-89.996242","30.034994"],["-89.996289","30.035083"],["-89.996336","30.035172"],["-89.996333","30.035278"],["-89.996330","30.035385"],["-89.996435","30.035459"],["-89.996539","30.035534"],["-89.996434","30.035578"],["-89.996330","30.035622"],["-89.996225","30.035666"],["-89.996120","30.035710"],["-89.996015","30.035754"],["-89.995910","30.035799"],["-89.995805","30.035843"],["-89.995700","30.035887"],["-89.995595","30.035931"],["-89.995490","30.035975"],["-89.995385","30.036019"],["-89.995280","30.036063"],["-89.995175","30.036107"],["-89.995070","30.036152"],["-89.994965","30.036196"],["-89.994860","30.036240"],["-89.994755","30.036284"],["-89.994650","30.036328"],["-89.994546","30.036372"],["-89.994441","30.036416"],["-89.994336","30.036460"],["-89.994231","30.036504"],["-89.994126","30.036549"],["-89.994021","30.036593"],["-89.993916","30.036637"],["-89.993811","30.036681"],["-89.993706","30.036725"],["-89.993601","30.036769"],["-89.993496","30.036813"],["-89.993391","30.036857"],["-89.993286","30.036902"],["-89.993181","30.036946"],["-89.993246","30.037047"],["-89.993364","30.037085"],["-89.993482","30.037122"],["-89.993657","30.037048"],["-89.993832","30.036974"],["-89.994007","30.036899"],["-89.994182","30.036825"],["-89.994357","30.036751"],["-89.994532","30.036676"],["-89.994707","30.036602"],["-89.994882","30.036528"],["-89.995057","30.036453"],["-89.995232","30.036379"],["-89.995407","30.036305"],["-89.995582","30.036230"],["-89.995757","30.036156"],["-89.995932","30.036082"],["-89.996107","30.036008"],["-89.996282","30.035933"],["-89.996437","30.035911"],["-89.996592","30.035889"],["-89.996737","30.035781"],["-89.996883","30.035673"],["-89.997001","30.035636"],["-89.997119","30.035599"],["-89.997226","30.035546"],["-89.997333","30.035493"],["-89.997441","30.035440"],["-89.997548","30.035388"],["-89.997655","30.035335"],["-89.997762","30.035282"],["-89.997870","30.035229"],["-89.997977","30.035176"],["-89.998084","30.035123"],["-89.998192","30.035071"],["-89.998299","30.035018"],["-89.998406","30.034965"],["-89.998514","30.034912"],["-89.998621","30.034859"],["-89.998728","30.034806"],["-89.998835","30.034754"],["-89.998977","30.034728"],["-89.999118","30.034701"],["-89.999260","30.034675"],["-89.999401","30.034649"],["-89.999521","30.034571"],["-89.999640","30.034494"],["-89.999810","30.034428"],["-89.999980","30.034362"],["-90.000150","30.034296"],["-90.000320","30.034230"],["-90.000500","30.034170"],["-90.000625","30.034120"],["-90.000750","30.034070"],["-90.000900","30.034010"],["-90.001050","30.033960"],["-90.001205","30.033905"],["-90.001360","30.033850"],["-90.001520","30.033790"],["-90.001650","30.033740"],["-90.001780","30.033690"],["-90.001820","30.033760"],["-90.001760","30.033786"],["-90.001820","30.033760"],["-90.001780","30.033690"],["-90.001890","30.033650"],["-90.002000","30.033610"],["-90.002125","30.033565"],["-90.002250","30.033520"],["-90.002440","30.033445"],["-90.002630","30.033370"],["-90.002800","30.033308"],["-90.002970","30.033245"],["-90.003140","30.033183"],["-90.003310","30.033120"],["-90.003345","30.033185"],["-90.003310","30.033120"],["-90.003390","30.033090"],["-90.003578","30.033023"],["-90.003765","30.032955"],["-90.003953","30.032888"],["-90.004140","30.032820"],["-90.004275","30.032768"],["-90.004410","30.032715"],["-90.004545","30.032663"],["-90.004680","30.032610"],["-90.004780","30.032570"],["-90.004816","30.032656"],["-90.004780","30.032570"],["-90.004870","30.032540"],["-90.004980","30.032500"],["-90.005090","30.032460"],["-90.005198","30.032423"],["-90.005305","30.032385"],["-90.005413","30.032348"],["-90.005520","30.032310"],["-90.005625","30.032270"],["-90.005730","30.032230"],["-90.005835","30.032190"],["-90.005940","30.032150"],["-90.006103","30.032085"],["-90.006265","30.032020"],["-90.006428","30.031955"],["-90.006590","30.031890"],["-90.006770","30.031820"],["-90.006820","30.031910"],["-90.006743","30.031936"],["-90.006820","30.031910"],["-90.006770","30.031820"],["-90.006965","30.031745"],["-90.007160","30.031670"],["-90.007273","30.031630"],["-90.007385","30.031590"],["-90.007498","30.031550"],["-90.007610","30.031510"],["-90.007716","30.031474"],["-90.007823","30.031438"],["-90.007929","30.031401"],["-90.008035","30.031365"],["-90.008141","30.031329"],["-90.008248","30.031293"],["-90.008354","30.031256"],["-90.008460","30.031220"],["-90.008603","30.031173"],["-90.008745","30.031125"],["-90.008888","30.031078"],["-90.009030","30.031030"],["-90.009155","30.030990"],["-90.009280","30.030950"],["-90.009465","30.030890"],["-90.009650","30.030830"],["-90.009685","30.030906"],["-90.009650","30.030830"],["-90.009730","30.030800"],["-90.009850","30.030760"],["-90.009970","30.030720"],["-90.010090","30.030680"],["-90.010210","30.030640"],["-90.010320","30.030603"],["-90.010430","30.030565"],["-90.010540","30.030528"],["-90.010650","30.030490"],["-90.010760","30.030453"],["-90.010870","30.030415"],["-90.010980","30.030378"],["-90.011090","30.030340"],["-90.011180","30.030310"],["-90.011329","30.030260"],["-90.011478","30.030210"],["-90.011626","30.030160"],["-90.011775","30.030110"],["-90.011924","30.030060"],["-90.012073","30.030010"],["-90.012221","30.029960"],["-90.012370","30.029910"],["-90.012394","30.029969"],["-90.012370","30.029910"],["-90.012550","30.029850"],["-90.012728","30.029790"],["-90.012905","30.029730"],["-90.013083","30.029670"],["-90.013260","30.029610"],["-90.013383","30.029570"],["-90.013505","30.029530"],["-90.013628","30.029490"],["-90.013750","30.029450"],["-90.013873","30.029410"],["-90.013995","30.029370"],["-90.014118","30.029330"],["-90.014240","30.029290"],["-90.014255","30.029333"],["-90.014240","30.029290"],["-90.014400","30.029240"],["-90.014520","30.029203"],["-90.014640","30.029165"],["-90.014760","30.029128"],["-90.014880","30.029090"],["-90.014985","30.029056"],["-90.015090","30.029023"],["-90.015195","30.028989"],["-90.015300","30.028955"],["-90.015405","30.028921"],["-90.015510","30.028888"],["-90.015615","30.028854"],["-90.015720","30.028820"],["-90.015855","30.028783"],["-90.015990","30.028745"],["-90.016125","30.028708"],["-90.016260","30.028670"],["-90.016277","30.028719"],["-90.016260","30.028670"],["-90.016360","30.028640"],["-90.016540","30.028588"],["-90.016720","30.028535"],["-90.016900","30.028483"],["-90.017080","30.028430"],["-90.017200","30.028400"],["-90.017320","30.028370"],["-90.017485","30.028328"],["-90.017650","30.028285"],["-90.017815","30.028243"],["-90.017980","30.028200"],["-90.018150","30.028150"],["-90.018320","30.028100"],["-90.018490","30.028045"],["-90.018660","30.027990"],["-90.018771","30.027955"],["-90.018883","30.027920"],["-90.018994","30.027885"],["-90.019105","30.027850"],["-90.019216","30.027815"],["-90.019328","30.027780"],["-90.019439","30.027745"],["-90.019550","30.027710"],["-90.019748","30.027653"],["-90.019945","30.027595"],["-90.020143","30.027538"],["-90.020340","30.027480"],["-90.020448","30.027445"],["-90.020555","30.027410"],["-90.020663","30.027375"],["-90.020800","30.027330"],["-90.020801","30.027416"],["-90.020800","30.027330"],["-90.020948","30.027288"],["-90.021095","30.027245"],["-90.021243","30.027203"],["-90.021390","30.027160"],["-90.021513","30.027121"],["-90.021635","30.027083"],["-90.021758","30.027044"],["-90.021880","30.027005"],["-90.022003","30.026966"],["-90.022125","30.026928"],["-90.022248","30.026889"],["-90.022370","30.026850"],["-90.022503","30.026813"],["-90.022635","30.026775"],["-90.022768","30.026738"],["-90.022900","30.026700"],["-90.023083","30.026648"],["-90.023265","30.026595"],["-90.023448","30.026543"],["-90.023630","30.026490"],["-90.023661","30.026566"],["-90.023630","30.026490"],["-90.023720","30.026460"],["-90.023860","30.026425"],["-90.024000","30.026390"],["-90.024190","30.026345"],["-90.024380","30.026300"],["-90.024470","30.026240"],["-90.024560","30.026220"],["-90.024510","30.026100"],["-90.024460","30.025970"],["-90.024420","30.025860"],["-90.024380","30.025745"],["-90.024340","30.025630"],["-90.024275","30.025450"],["-90.024237","30.025340"],["-90.024200","30.025230"],["-90.024266","30.025257"],["-90.024200","30.025230"],["-90.024152","30.025103"],["-90.024105","30.024975"],["-90.024057","30.024848"],["-90.024010","30.024720"],["-90.023975","30.024624"],["-90.023940","30.024528"],["-90.023905","30.024431"],["-90.023870","30.024335"],["-90.023835","30.024239"],["-90.023800","30.024143"],["-90.023765","30.024046"],["-90.023730","30.023950"],["-90.023670","30.023785"],["-90.023610","30.023620"],["-90.023672","30.023602"],["-90.023610","30.023620"],["-90.023545","30.023448"],["-90.023480","30.023275"],["-90.023415","30.023103"],["-90.023350","30.022930"],["-90.023300","30.022795"],["-90.023250","30.022660"],["-90.023207","30.022548"],["-90.023165","30.022435"],["-90.023122","30.022323"],["-90.023080","30.022210"],["-90.023153","30.022186"],["-90.023080","30.022210"],["-90.023030","30.022070"],["-90.022994","30.021968"],["-90.022957","30.021865"],["-90.022921","30.021763"],["-90.022885","30.021660"],["-90.022849","30.021558"],["-90.022812","30.021455"],["-90.022776","30.021353"],["-90.022740","30.021250"],["-90.022682","30.021096"],["-90.022625","30.020943"],["-90.022567","30.020789"],["-90.022510","30.020635"],["-90.022452","30.020481"],["-90.022395","30.020328"],["-90.022337","30.020174"],["-90.022280","30.020020"],["-90.022361","30.019997"],["-90.022280","30.020020"],["-90.022250","30.019930"],["-90.022192","30.019764"],["-90.022135","30.019598"],["-90.022077","30.019431"],["-90.022020","30.019265"],["-90.021962","30.019099"],["-90.021905","30.018933"],["-90.021847","30.018766"],["-90.021790","30.018600"],["-90.021836","30.018586"],["-90.021790","30.018600"],["-90.021740","30.018470"],["-90.021720","30.018380"],["-90.021710","30.018250"],["-90.021700","30.018120"],["-90.021690","30.017990"],["-90.021682","30.017855"],["-90.021675","30.017750"],["-90.021667","30.017645"],["-90.021660","30.017540"],["-90.021645","30.017380"],["-90.021630","30.017220"],["-90.021615","30.017060"],["-90.021600","30.016900"],["-90.021585","30.016750"],["-90.021570","30.016600"],["-90.021555","30.016450"],["-90.021540","30.016300"],["-90.021600","30.016292"],["-90.021540","30.016300"],["-90.021530","30.016220"],["-90.021515","30.016070"],["-90.021500","30.015920"],["-90.021485","30.015770"],["-90.021470","30.015620"],["-90.021455","30.015458"],["-90.021440","30.015295"],["-90.021425","30.015133"],["-90.021410","30.014970"],["-90.021390","30.014785"],["-90.021370","30.014600"],["-90.021360","30.014495"],["-90.021350","30.014390"],["-90.021412","30.014387"],["-90.021350","30.014390"],["-90.021350","30.014320"],["-90.021335","30.014160"],["-90.021320","30.014000"],["-90.021305","30.013840"],["-90.021290","30.013680"],["-90.021272","30.013518"],["-90.021255","30.013355"],["-90.021237","30.013193"],["-90.021220","30.013030"],["-90.021205","30.012875"],["-90.021190","30.012720"],["-90.021175","30.012565"],["-90.021160","30.012410"],["-90.021239","30.012418"],["-90.021160","30.012410"],["-90.021145","30.012253"],["-90.021130","30.012095"],["-90.021115","30.011938"],["-90.021100","30.011780"],["-90.021085","30.011610"],["-90.021070","30.011440"],["-90.021055","30.011270"],["-90.021040","30.011100"],["-90.021030","30.011020"],["-90.021017","30.010880"],["-90.021005","30.010740"],["-90.020992","30.010600"],["-90.020980","30.010460"],["-90.020960","30.010280"],["-90.020940","30.010100"],["-90.020993","30.010096"],["-90.020940","30.010100"],["-90.020940","30.010020"],["-90.020920","30.009890"],["-90.021078","30.009848"],["-90.021235","30.009805"],["-90.021393","30.009763"],["-90.021550","30.009720"],["-90.021750","30.009675"],["-90.021950","30.009630"],["-90.022150","30.009580"],["-90.022350","30.009530"],["-90.022519","30.009489"],["-90.022688","30.009448"],["-90.022856","30.009406"],["-90.023025","30.009365"],["-90.023194","30.009324"],["-90.023363","30.009283"],["-90.023531","30.009241"],["-90.023700","30.009200"],["-90.023830","30.009170"],["-90.023910","30.009150"],["-90.023920","30.009150"],["-90.024030","30.009120"],["-90.024150","30.009090"],["-90.024250","30.009070"],["-90.024310","30.009060"],["-90.024450","30.009020"],["-90.024580","30.008990"],["-90.024730","30.008953"],["-90.024880","30.008915"],["-90.025030","30.008878"],["-90.025180","30.008840"],["-90.025330","30.008803"],["-90.025480","30.008765"],["-90.025630","30.008728"],["-90.025780","30.008690"],["-90.025955","30.008648"],["-90.026130","30.008605"],["-90.026305","30.008563"],["-90.026480","30.008520"],["-90.026598","30.008493"],["-90.026715","30.008465"],["-90.026833","30.008438"],["-90.026950","30.008410"],["-90.027150","30.008365"],["-90.027350","30.008320"],["-90.027498","30.008283"],["-90.027645","30.008245"],["-90.027793","30.008208"],["-90.027940","30.008170"],["-90.028090","30.008138"],["-90.028240","30.008105"],["-90.028390","30.008073"],["-90.028540","30.008040"],["-90.028663","30.008009"],["-90.028785","30.007978"],["-90.028908","30.007946"],["-90.029030","30.007915"],["-90.029153","30.007884"],["-90.029275","30.007853"],["-90.029398","30.007821"],["-90.029520","30.007790"],["-90.029650","30.007760"],["-90.029780","30.007730"],["-90.029930","30.007690"],["-90.030110","30.007640"],["-90.030160","30.007630"],["-90.030268","30.007601"],["-90.030375","30.007573"],["-90.030483","30.007544"],["-90.030590","30.007515"],["-90.030698","30.007486"],["-90.030805","30.007458"],["-90.030913","30.007429"],["-90.031020","30.007400"],["-90.031180","30.007353"],["-90.031340","30.007305"],["-90.031500","30.007258"],["-90.031660","30.007210"],["-90.031700","30.007190"],["-90.031820","30.007150"],["-90.031940","30.007110"],["-90.032105","30.007045"],["-90.032270","30.006980"],["-90.032340","30.006960"],["-90.032510","30.006893"],["-90.032680","30.006825"],["-90.032850","30.006758"],["-90.033020","30.006690"],["-90.033180","30.006635"],["-90.033340","30.006580"],["-90.033440","30.006540"],["-90.033580","30.006490"],["-90.033725","30.006433"],["-90.033870","30.006375"],["-90.034015","30.006318"],["-90.034160","30.006260"],["-90.034100","30.006120"],["-90.034020","30.005970"],["-90.033960","30.005845"],["-90.033900","30.005720"],["-90.033870","30.005670"],["-90.033800","30.005540"],["-90.033834","30.005525"],["-90.033800","30.005540"],["-90.033740","30.005410"],["-90.033660","30.005250"],["-90.033580","30.005080"],["-90.033570","30.005070"],["-90.033683","30.005020"],["-90.033795","30.004970"],["-90.033908","30.004920"],["-90.034020","30.004870"],["-90.034215","30.004785"],["-90.034410","30.004700"],["-90.034470","30.004670"],["-90.034573","30.004618"],["-90.034675","30.004565"],["-90.034778","30.004513"],["-90.034880","30.004460"],["-90.035045","30.004380"],["-90.035210","30.004300"],["-90.035280","30.004260"],["-90.035380","30.004215"],["-90.035480","30.004170"],["-90.035650","30.004080"],["-90.035750","30.004030"],["-90.035905","30.003955"],["-90.036060","30.003880"],["-90.036160","30.003830"],["-90.036270","30.003780"],["-90.036420","30.003700"],["-90.036470","30.003680"],["-90.036650","30.003600"],["-90.036665","30.003475"],["-90.036680","30.003350"],["-90.036700","30.003230"],["-90.036710","30.003170"],["-90.036740","30.003110"],["-90.036790","30.003060"],["-90.036820","30.003030"],["-90.036850","30.002990"],["-90.036950","30.002920"],["-90.037030","30.002870"],["-90.037110","30.002810"],["-90.037220","30.002745"],["-90.037330","30.002680"],["-90.037450","30.002615"],["-90.037570","30.002550"],["-90.037620","30.002520"],["-90.037805","30.002420"],["-90.037990","30.002320"],["-90.038130","30.002240"],["-90.038150","30.002230"],["-90.038280","30.002160"],["-90.038370","30.002100"],["-90.038465","30.002050"],["-90.038560","30.002000"],["-90.038660","30.001940"],["-90.038760","30.001880"],["-90.038870","30.001825"],["-90.038980","30.001770"],["-90.039050","30.001730"],["-90.039160","30.001660"],["-90.039240","30.001620"],["-90.039290","30.001580"],["-90.039300","30.001570"],["-90.039340","30.001490"],["-90.039525","30.001390"],["-90.039710","30.001290"],["-90.039830","30.001220"],["-90.039925","30.001165"],["-90.040020","30.001110"],["-90.040115","30.001055"],["-90.040210","30.001000"],["-90.040340","30.000910"],["-90.040490","30.000820"],["-90.040560","30.000780"],["-90.040665","30.000715"],["-90.040770","30.000650"],["-90.040860","30.000590"],["-90.040950","30.000530"],["-90.041060","30.000450"],["-90.041230","30.000340"],["-90.041270","30.000310"],["-90.041370","30.000250"],["-90.041460","30.000180"],["-90.041550","30.000115"],["-90.041640","30.000050"],["-90.041700","30.000010"],["-90.041730","29.999990"],["-90.041830","29.999910"],["-90.041925","29.999840"],["-90.042020","29.999770"],["-90.042120","29.999700"],["-90.042240","29.999610"],["-90.042310","29.999550"],["-90.042395","29.999480"],["-90.042480","29.999410"],["-90.042530","29.999370"],["-90.042600","29.999320"],["-90.042685","29.999250"],["-90.042770","29.999180"],["-90.042860","29.999110"],["-90.042950","29.999040"],["-90.043040","29.998960"],["-90.043160","29.998860"],["-90.043240","29.998790"],["-90.043330","29.998720"],["-90.043410","29.998650"],["-90.043490","29.998580"],["-90.043580","29.998500"],["-90.043670","29.998420"],["-90.043820","29.998280"],["-90.043840","29.998260"],["-90.043940","29.998170"],["-90.044025","29.998090"],["-90.044110","29.998010"],["-90.044190","29.997930"],["-90.044230","29.997890"],["-90.044280","29.997850"],["-90.044360","29.997770"],["-90.044440","29.997690"],["-90.044530","29.997600"],["-90.044610","29.997520"],["-90.044690","29.997440"],["-90.044770","29.997360"],["-90.044870","29.997260"],["-90.044943","29.997180"],["-90.045015","29.997100"],["-90.045088","29.997020"],["-90.045160","29.996940"],["-90.045235","29.996860"],["-90.045310","29.996780"],["-90.045385","29.996700"],["-90.045460","29.996620"],["-90.045540","29.996535"],["-90.045620","29.996450"],["-90.045750","29.996320"],["-90.045780","29.996280"],["-90.045910","29.996140"],["-90.045960","29.996080"],["-90.046040","29.996000"],["-90.046150","29.995870"],["-90.046180","29.995840"],["-90.046250","29.995760"],["-90.046320","29.995680"],["-90.046370","29.995620"],["-90.046470","29.995508"],["-90.046570","29.995395"],["-90.046670","29.995283"],["-90.046770","29.995170"],["-90.046850","29.995080"],["-90.046930","29.994990"],["-90.047030","29.994878"],["-90.047130","29.994765"],["-90.047230","29.994653"],["-90.047330","29.994540"],["-90.047400","29.994465"],["-90.047470","29.994390"],["-90.047568","29.994280"],["-90.047665","29.994170"],["-90.047763","29.994060"],["-90.047860","29.993950"],["-90.047940","29.993850"],["-90.048015","29.993770"],["-90.048090","29.993690"],["-90.048165","29.993605"],["-90.048240","29.993520"],["-90.048343","29.993405"],["-90.048445","29.993290"],["-90.048548","29.993175"],["-90.048650","29.993060"],["-90.048730","29.992980"],["-90.048810","29.992900"],["-90.048880","29.992810"],["-90.048950","29.992710"],["-90.049080","29.992560"],["-90.049120","29.992520"],["-90.049195","29.992438"],["-90.049270","29.992355"],["-90.049345","29.992273"],["-90.049420","29.992190"],["-90.049510","29.992070"],["-90.049540","29.992040"],["-90.049638","29.991930"],["-90.049735","29.991820"],["-90.049833","29.991710"],["-90.049930","29.991600"],["-90.050015","29.991510"],["-90.050100","29.991420"],["-90.050190","29.991310"],["-90.050295","29.991195"],["-90.050400","29.991080"],["-90.050520","29.990945"],["-90.050640","29.990810"],["-90.050735","29.990705"],["-90.050830","29.990600"],["-90.050925","29.990495"],["-90.051020","29.990390"],["-90.051080","29.990320"],["-90.051160","29.990230"],["-90.051220","29.990160"],["-90.051290","29.990080"],["-90.051405","29.989950"],["-90.051520","29.989820"],["-90.051620","29.989710"],["-90.051640","29.989690"],["-90.051720","29.989590"],["-90.051790","29.989505"],["-90.051860","29.989420"],["-90.051870","29.989410"],["-90.051925","29.989325"],["-90.051980","29.989240"],["-90.052050","29.989150"],["-90.052090","29.989090"],["-90.052140","29.989000"],["-90.052180","29.988940"],["-90.052245","29.988825"],["-90.052310","29.988710"],["-90.052340","29.988630"],["-90.052400","29.988520"],["-90.052450","29.988390"],["-90.052500","29.988280"],["-90.052540","29.988170"],["-90.052580","29.988055"],["-90.052620","29.987940"],["-90.052650","29.987850"],["-90.052680","29.987740"],["-90.052700","29.987650"],["-90.052720","29.987540"],["-90.052760","29.987390"],["-90.052790","29.987230"],["-90.052820","29.987110"],["-90.052860","29.986930"],["-90.052880","29.986830"],["-90.052900","29.986730"],["-90.052920","29.986630"],["-90.052940","29.986530"],["-90.052960","29.986430"],["-90.052990","29.986320"],["-90.053020","29.986170"],["-90.053050","29.986050"],["-90.053070","29.985930"],["-90.053100","29.985770"],["-90.053120","29.985700"],["-90.053160","29.985530"],["-90.053200","29.985400"],["-90.053250","29.985250"],["-90.053310","29.985090"],["-90.053330","29.985040"],["-90.053390","29.984900"],["-90.053460","29.984750"],["-90.053535","29.984615"],["-90.053610","29.984480"],["-90.053610","29.984470"],["-90.053680","29.984350"],["-90.053743","29.984258"],["-90.053805","29.984165"],["-90.053868","29.984073"],["-90.053930","29.983980"],["-90.054000","29.983890"],["-90.054070","29.983800"],["-90.054180","29.983660"],["-90.054230","29.983600"],["-90.054350","29.983470"],["-90.054480","29.983340"],["-90.054610","29.983220"],["-90.054700","29.983140"],["-90.054790","29.983060"],["-90.054920","29.982950"],["-90.055080","29.982820"],["-90.055110","29.982800"],["-90.055240","29.982690"],["-90.055360","29.982590"],["-90.055430","29.982530"],["-90.055520","29.982460"],["-90.055615","29.982385"],["-90.055710","29.982310"],["-90.055845","29.982195"],["-90.055980","29.982080"],["-90.056020","29.982050"],["-90.056160","29.981930"],["-90.056245","29.981860"],["-90.056330","29.981790"],["-90.056480","29.981680"],["-90.056630","29.981560"],["-90.056715","29.981490"],["-90.056800","29.981420"],["-90.056885","29.981350"],["-90.056970","29.981280"],["-90.057068","29.981200"],["-90.057165","29.981120"],["-90.057263","29.981040"],["-90.057360","29.980960"],["-90.057450","29.980888"],["-90.057540","29.980815"],["-90.057630","29.980743"],["-90.057720","29.980670"],["-90.057780","29.980620"],["-90.057840","29.980570"],["-90.057990","29.980450"],["-90.058150","29.980320"],["-90.058250","29.980240"],["-90.058350","29.980160"],["-90.058410","29.980110"],["-90.058490","29.980040"],["-90.058610","29.979950"],["-90.058720","29.979860"],["-90.058845","29.979755"],["-90.058970","29.979650"],["-90.059105","29.979545"],["-90.059240","29.979440"],["-90.059355","29.979345"],["-90.059470","29.979250"],["-90.059620","29.979125"],["-90.059770","29.979000"],["-90.059920","29.978880"],["-90.060010","29.978800"],["-90.060130","29.978710"],["-90.060140","29.978710"],["-90.060280","29.978590"],["-90.060360","29.978520"],["-90.060440","29.978450"],["-90.060530","29.978380"],["-90.060630","29.978290"],["-90.060730","29.978200"],["-90.060820","29.978120"],["-90.060910","29.978040"],["-90.060995","29.977960"],["-90.061080","29.977880"],["-90.061160","29.977805"],["-90.061240","29.977730"],["-90.061370","29.977605"],["-90.061500","29.977480"],["-90.061580","29.977390"],["-90.061655","29.977310"],["-90.061730","29.977230"],["-90.061820","29.977130"],["-90.061900","29.977050"],["-90.061990","29.976955"],["-90.062080","29.976860"],["-90.062165","29.976760"],["-90.062250","29.976660"],["-90.062340","29.976560"],["-90.062430","29.976460"],["-90.062525","29.976355"],["-90.062620","29.976250"],["-90.062700","29.976160"],["-90.062780","29.976070"],["-90.062860","29.975980"],["-90.062940","29.975890"],["-90.063050","29.975770"],["-90.063120","29.975690"],["-90.063190","29.975610"],["-90.063275","29.975515"],["-90.063360","29.975420"],["-90.063490","29.975275"],["-90.063620","29.975130"],["-90.063710","29.975035"],["-90.063800","29.974940"],["-90.063865","29.974860"],["-90.063930","29.974780"],["-90.064015","29.974690"],["-90.064100","29.974600"],["-90.064198","29.974490"],["-90.064295","29.974380"],["-90.064393","29.974270"],["-90.064490","29.974160"],["-90.064620","29.974010"],["-90.064690","29.973930"],["-90.064790","29.973820"],["-90.064890","29.973710"],["-90.064985","29.973605"],["-90.065080","29.973500"],["-90.065180","29.973390"],["-90.065280","29.973270"],["-90.065410","29.973130"],["-90.065530","29.972995"],["-90.065650","29.972860"],["-90.065760","29.972735"],["-90.065870","29.972610"],["-90.065910","29.972560"],["-90.065960","29.972500"],["-90.066040","29.972410"],["-90.066130","29.972300"],["-90.066260","29.972150"],["-90.066290","29.972120"],["-90.066330","29.972070"],["-90.066410","29.971978"],["-90.066490","29.971885"],["-90.066570","29.971793"],["-90.066650","29.971700"],["-90.066720","29.971625"],["-90.066790","29.971550"],["-90.066900","29.971420"],["-90.067020","29.971290"],["-90.067090","29.971200"],["-90.067120","29.971170"],["-90.067225","29.971060"],["-90.067330","29.970950"],["-90.067425","29.970840"],["-90.067520","29.970730"],["-90.067630","29.970610"],["-90.067705","29.970525"],["-90.067780","29.970440"],["-90.067880","29.970330"],["-90.067980","29.970215"],["-90.068080","29.970100"],["-90.068205","29.969960"],["-90.068330","29.969820"],["-90.068425","29.969715"],["-90.068520","29.969610"],["-90.068605","29.969510"],["-90.068690","29.969410"],["-90.068750","29.969340"],["-90.068850","29.969240"],["-90.068880","29.969200"],["-90.068960","29.969110"],["-90.069040","29.969020"],["-90.069120","29.968930"],["-90.069200","29.968840"],["-90.069290","29.968740"],["-90.069380","29.968640"],["-90.069470","29.968540"],["-90.069560","29.968440"],["-90.069665","29.968325"],["-90.069770","29.968210"],["-90.069780","29.968190"],["-90.069880","29.968080"],["-90.070010","29.967940"],["-90.070128","29.967808"],["-90.070245","29.967675"],["-90.070363","29.967543"],["-90.070480","29.967410"],["-90.070500","29.967390"],["-90.070520","29.967360"],["-90.070530","29.967340"],["-90.070590","29.967290"],["-90.070670","29.967200"],["-90.070750","29.967110"],["-90.070840","29.967000"],["-90.070935","29.966895"],["-90.071030","29.966790"],["-90.071115","29.966700"],["-90.071200","29.966610"],["-90.071310","29.966480"],["-90.071370","29.966420"],["-90.071460","29.966320"],["-90.071550","29.966220"],["-90.071640","29.966200"],["-90.071650","29.966200"],["-90.071700","29.966160"],["-90.071740","29.966140"],["-90.071780","29.966110"],["-90.071850","29.966070"],["-90.071910","29.966040"],["-90.071960","29.966020"],["-90.072000","29.966010"],["-90.072040","29.965990"],["-90.072080","29.965990"],["-90.072160","29.965970"],["-90.072380","29.965955"],["-90.072600","29.965940"],["-90.072660","29.965940"],["-90.072850","29.965920"],["-90.072920","29.965920"],["-90.073065","29.965900"],["-90.073210","29.965880"],["-90.073400","29.965800"],["-90.073450","29.965760"],["-90.073480","29.965740"],["-90.073510","29.965710"],["-90.073620","29.965590"],["-90.073730","29.965470"],["-90.073850","29.965320"],["-90.073980","29.965180"],["-90.074040","29.965120"],["-90.074120","29.965010"],["-90.074150","29.964890"],["-90.074010","29.964790"],["-90.073870","29.964690"],["-90.073740","29.964605"],["-90.073610","29.964520"],["-90.073549","29.964434"],["-90.073489","29.964347"],["-90.073450","29.964390"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962950"],["-90.071350","29.962940"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073835","29.955908"],["-90.073950","29.955775"],["-90.074065","29.955643"],["-90.074180","29.955510"],["-90.074270","29.955410"],["-90.074400","29.955270"],["-90.074485","29.955175"],["-90.074570","29.955080"],["-90.074685","29.954945"],["-90.074818","29.954823"],["-90.074818","29.954823"],["-90.074800","29.954810"],["-90.074900","29.954700"],["-90.075035","29.954763"],["-90.075170","29.954825"],["-90.075305","29.954888"],["-90.075440","29.954950"],["-90.075540","29.955000"],["-90.075640","29.955050"],["-90.075830","29.955140"],["-90.075930","29.955180"],["-90.076090","29.955255"],["-90.076250","29.955330"],["-90.076350","29.955375"],["-90.076450","29.955420"],["-90.076570","29.955480"],["-90.076690","29.955540"],["-90.076850","29.955615"],["-90.077010","29.955690"],["-90.077187","29.955770"],["-90.077365","29.955850"],["-90.077542","29.955930"],["-90.077720","29.956010"],["-90.077740","29.955981"],["-90.077720","29.956010"],["-90.077790","29.956040"],["-90.077940","29.956105"],["-90.078090","29.956170"],["-90.078250","29.956240"],["-90.078440","29.956320"],["-90.078610","29.956390"],["-90.078680","29.956420"],["-90.078770","29.956520"],["-90.078860","29.956620"],["-90.078880","29.956650"],["-90.078930","29.956720"],["-90.078940","29.956740"],["-90.078960","29.956780"],["-90.078970","29.956810"],["-90.078980","29.956840"],["-90.078980","29.956860"],["-90.078990","29.956880"],["-90.078990","29.956900"],["-90.079000","29.956960"],["-90.079000","29.957000"],["-90.079000","29.957050"],["-90.078990","29.957100"],["-90.078990","29.957130"],["-90.078980","29.957140"],["-90.078980","29.957160"],["-90.078960","29.957210"],["-90.078950","29.957250"],["-90.078930","29.957290"],["-90.078900","29.957330"],["-90.078880","29.957360"],["-90.078840","29.957410"],["-90.078780","29.957470"],["-90.078700","29.957570"],["-90.078580","29.957700"],["-90.078510","29.957780"],["-90.078470","29.957860"],["-90.078430","29.957920"],["-90.078410","29.957980"],["-90.078370","29.958085"],["-90.078330","29.958190"],["-90.078310","29.958240"],["-90.078290","29.958260"],["-90.078280","29.958290"],["-90.078250","29.958350"],["-90.078210","29.958420"],["-90.078150","29.958510"],["-90.078090","29.958580"],["-90.078100","29.958680"],["-90.077970","29.958820"],["-90.077840","29.958960"],["-90.077750","29.959065"],["-90.077660","29.959170"],["-90.077580","29.959260"],["-90.077530","29.959320"],["-90.077450","29.959400"],["-90.077380","29.959490"],["-90.077260","29.959610"],["-90.077150","29.959740"],["-90.077080","29.959820"],["-90.077070","29.959830"],["-90.076980","29.959930"],["-90.076890","29.960030"],["-90.076795","29.960135"],["-90.076700","29.960240"],["-90.076625","29.960325"],["-90.076550","29.960410"],["-90.076440","29.960535"],["-90.076330","29.960660"],["-90.076220","29.960785"],["-90.076110","29.960910"],["-90.076060","29.960960"],["-90.075935","29.961100"],["-90.075810","29.961240"],["-90.075695","29.961370"],["-90.075580","29.961500"],["-90.075470","29.961620"],["-90.075420","29.961680"],["-90.075338","29.961773"],["-90.075255","29.961865"],["-90.075173","29.961958"],["-90.075090","29.962050"],["-90.074990","29.962160"],["-90.074915","29.962245"],["-90.074840","29.962330"],["-90.074755","29.962425"],["-90.074670","29.962520"],["-90.074630","29.962560"],["-90.074510","29.962705"],["-90.074390","29.962850"],["-90.074310","29.962930"],["-90.074235","29.963015"],["-90.074160","29.963100"],["-90.074085","29.963185"],["-90.074010","29.963270"],["-90.073920","29.963370"],["-90.073830","29.963480"],["-90.073745","29.963570"],["-90.073660","29.963660"],["-90.073565","29.963765"],["-90.073470","29.963870"],["-90.073375","29.963975"],["-90.073280","29.964080"],["-90.073230","29.964140"],["-90.073160","29.964220"],["-90.073070","29.964320"],["-90.073002","29.964396"],["-90.072934","29.964473"],["-90.072866","29.964549"],["-90.072798","29.964625"],["-90.072729","29.964701"],["-90.072661","29.964778"],["-90.072593","29.964854"],["-90.072525","29.964930"],["-90.072457","29.965006"],["-90.072389","29.965083"],["-90.072321","29.965159"],["-90.072253","29.965235"],["-90.072184","29.965311"],["-90.072116","29.965388"],["-90.072048","29.965464"],["-90.071980","29.965540"],["-90.071910","29.965610"],["-90.071800","29.965750"],["-90.071790","29.965760"],["-90.071700","29.965860"],["-90.071630","29.965940"],["-90.071555","29.966023"],["-90.071480","29.966105"],["-90.071405","29.966188"],["-90.071330","29.966270"],["-90.071210","29.966410"],["-90.071130","29.966490"],["-90.071100","29.966520"],["-90.071025","29.966605"],["-90.070950","29.966690"],["-90.070835","29.966820"],["-90.070720","29.966950"],["-90.070630","29.967050"],["-90.070540","29.967150"],["-90.070510","29.967180"],["-90.070490","29.967210"],["-90.070430","29.967270"],["-90.070410","29.967300"],["-90.070360","29.967350"],["-90.070240","29.967485"],["-90.070120","29.967620"],["-90.070003","29.967750"],["-90.069885","29.967880"],["-90.069768","29.968010"],["-90.069650","29.968140"],["-90.069565","29.968240"],["-90.069480","29.968340"],["-90.069385","29.968450"],["-90.069290","29.968560"],["-90.069175","29.968685"],["-90.069060","29.968810"],["-90.068950","29.968930"],["-90.068920","29.968970"],["-90.068910","29.968970"],["-90.068880","29.969010"],["-90.068830","29.969070"],["-90.068740","29.969160"],["-90.068700","29.969210"],["-90.068580","29.969350"],["-90.068453","29.969493"],["-90.068325","29.969635"],["-90.068198","29.969778"],["-90.068070","29.969920"],["-90.067940","29.970060"],["-90.067840","29.970170"],["-90.067770","29.970260"],["-90.067685","29.970350"],["-90.067600","29.970440"],["-90.067520","29.970530"],["-90.067460","29.970600"],["-90.067354","29.970719"],["-90.067248","29.970838"],["-90.067141","29.970956"],["-90.067035","29.971075"],["-90.066929","29.971194"],["-90.066823","29.971313"],["-90.066716","29.971431"],["-90.066610","29.971550"],["-90.066600","29.971560"],["-90.066520","29.971650"],["-90.066440","29.971740"],["-90.066360","29.971825"],["-90.066280","29.971910"],["-90.066206","29.971990"],["-90.066133","29.972070"],["-90.066059","29.972150"],["-90.065985","29.972230"],["-90.065911","29.972310"],["-90.065838","29.972390"],["-90.065764","29.972470"],["-90.065690","29.972550"],["-90.065600","29.972650"],["-90.065560","29.972690"],["-90.065440","29.972840"],["-90.065400","29.972870"],["-90.065370","29.972910"],["-90.065255","29.973035"],["-90.065140","29.973160"],["-90.065065","29.973240"],["-90.064990","29.973320"],["-90.064940","29.973380"],["-90.064900","29.973430"],["-90.064880","29.973460"],["-90.064810","29.973520"],["-90.064770","29.973570"],["-90.064670","29.973680"],["-90.064620","29.973740"],["-90.064500","29.973875"],["-90.064380","29.974010"],["-90.064250","29.974160"],["-90.064180","29.974235"],["-90.064110","29.974310"],["-90.064038","29.974391"],["-90.063965","29.974473"],["-90.063893","29.974554"],["-90.063820","29.974635"],["-90.063748","29.974716"],["-90.063675","29.974798"],["-90.063603","29.974879"],["-90.063530","29.974960"],["-90.063445","29.975060"],["-90.063360","29.975160"],["-90.063280","29.975240"],["-90.063205","29.975325"],["-90.063130","29.975410"],["-90.063120","29.975420"],["-90.063030","29.975520"],["-90.062940","29.975620"],["-90.062860","29.975720"],["-90.062770","29.975815"],["-90.062680","29.975910"],["-90.062560","29.976050"],["-90.062550","29.976060"],["-90.062435","29.976190"],["-90.062320","29.976320"],["-90.062243","29.976405"],["-90.062165","29.976490"],["-90.062088","29.976575"],["-90.062010","29.976660"],["-90.061925","29.976755"],["-90.061840","29.976850"],["-90.061750","29.976940"],["-90.061660","29.977030"],["-90.061590","29.977110"],["-90.061450","29.977245"],["-90.061310","29.977380"],["-90.061210","29.977480"],["-90.061110","29.977570"],["-90.061020","29.977650"],["-90.060910","29.977760"],["-90.060790","29.977865"],["-90.060670","29.977970"],["-90.060620","29.978010"],["-90.060535","29.978083"],["-90.060450","29.978155"],["-90.060365","29.978228"],["-90.060280","29.978300"],["-90.060210","29.978360"],["-90.060090","29.978450"],["-90.059990","29.978530"],["-90.059885","29.978620"],["-90.059780","29.978710"],["-90.059660","29.978810"],["-90.059630","29.978830"],["-90.059495","29.978940"],["-90.059360","29.979050"],["-90.059255","29.979135"],["-90.059150","29.979220"],["-90.059013","29.979333"],["-90.058875","29.979445"],["-90.058738","29.979558"],["-90.058600","29.979670"],["-90.058470","29.979770"],["-90.058450","29.979790"],["-90.058300","29.979910"],["-90.058290","29.979920"],["-90.058150","29.980030"],["-90.058000","29.980150"],["-90.057990","29.980160"],["-90.057930","29.980220"],["-90.057815","29.980310"],["-90.057700","29.980400"],["-90.057600","29.980480"],["-90.057520","29.980550"],["-90.057395","29.980650"],["-90.057270","29.980750"],["-90.057145","29.980850"],["-90.057020","29.980950"],["-90.056918","29.981035"],["-90.056815","29.981120"],["-90.056713","29.981205"],["-90.056610","29.981290"],["-90.056490","29.981385"],["-90.056370","29.981480"],["-90.056235","29.981590"],["-90.056100","29.981700"],["-90.056020","29.981760"],["-90.055895","29.981870"],["-90.055770","29.981980"],["-90.055645","29.982080"],["-90.055520","29.982180"],["-90.055430","29.982250"],["-90.055270","29.982380"],["-90.055130","29.982490"],["-90.054990","29.982600"],["-90.054870","29.982700"],["-90.054730","29.982810"],["-90.054660","29.982880"],["-90.054515","29.983010"],["-90.054370","29.983140"],["-90.054360","29.983140"],["-90.054300","29.983200"],["-90.054220","29.983280"],["-90.054145","29.983360"],["-90.054070","29.983440"],["-90.053990","29.983530"],["-90.053940","29.983590"],["-90.053850","29.983690"],["-90.053830","29.983720"],["-90.053790","29.983770"],["-90.053710","29.983880"],["-90.053640","29.983980"],["-90.053560","29.984090"],["-90.053505","29.984180"],["-90.053450","29.984270"],["-90.053370","29.984410"],["-90.053320","29.984518"],["-90.053270","29.984625"],["-90.053220","29.984733"],["-90.053170","29.984840"],["-90.053150","29.984880"],["-90.053090","29.985015"],["-90.053030","29.985150"],["-90.053000","29.985230"],["-90.052960","29.985340"],["-90.052940","29.985420"],["-90.052920","29.985480"],["-90.052900","29.985590"],["-90.052880","29.985700"],["-90.052840","29.985820"],["-90.052820","29.985920"],["-90.052790","29.986050"],["-90.052760","29.986200"],["-90.052735","29.986325"],["-90.052710","29.986450"],["-90.052700","29.986530"],["-90.052665","29.986693"],["-90.052630","29.986855"],["-90.052595","29.987018"],["-90.052560","29.987180"],["-90.052530","29.987315"],["-90.052500","29.987450"],["-90.052490","29.987470"],["-90.052480","29.987530"],["-90.052450","29.987650"],["-90.052400","29.987830"],["-90.052370","29.987940"],["-90.052325","29.988050"],["-90.052280","29.988160"],["-90.052240","29.988265"],["-90.052200","29.988370"],["-90.052140","29.988520"],["-90.052100","29.988590"],["-90.052070","29.988650"],["-90.052010","29.988760"],["-90.052000","29.988770"],["-90.051950","29.988870"],["-90.051920","29.988920"],["-90.051880","29.988980"],["-90.051810","29.989090"],["-90.051790","29.989110"],["-90.051730","29.989200"],["-90.051650","29.989320"],["-90.051570","29.989410"],["-90.051510","29.989490"],["-90.051450","29.989560"],["-90.051360","29.989670"],["-90.051258","29.989783"],["-90.051155","29.989895"],["-90.051053","29.990008"],["-90.050950","29.990120"],["-90.050910","29.990180"],["-90.050830","29.990260"],["-90.050750","29.990350"],["-90.050670","29.990440"],["-90.050570","29.990550"],["-90.050550","29.990580"],["-90.050420","29.990710"],["-90.050350","29.990800"],["-90.050270","29.990880"],["-90.050180","29.990990"],["-90.050110","29.991065"],["-90.050040","29.991140"],["-90.049970","29.991215"],["-90.049900","29.991290"],["-90.049770","29.991440"],["-90.049650","29.991580"],["-90.049510","29.991720"],["-90.049400","29.991850"],["-90.049390","29.991860"],["-90.049320","29.991940"],["-90.049250","29.992020"],["-90.049200","29.992080"],["-90.049120","29.992170"],["-90.049040","29.992260"],["-90.048960","29.992350"],["-90.048860","29.992465"],["-90.048760","29.992580"],["-90.048670","29.992675"],["-90.048580","29.992770"],["-90.048490","29.992880"],["-90.048395","29.992985"],["-90.048300","29.993090"],["-90.048260","29.993130"],["-90.048240","29.993170"],["-90.048170","29.993240"],["-90.048090","29.993330"],["-90.048010","29.993420"],["-90.047940","29.993495"],["-90.047870","29.993570"],["-90.047780","29.993680"],["-90.047700","29.993770"],["-90.047605","29.993875"],["-90.047510","29.993980"],["-90.047415","29.994085"],["-90.047320","29.994190"],["-90.047260","29.994260"],["-90.047165","29.994365"],["-90.047070","29.994470"],["-90.047000","29.994550"],["-90.046950","29.994600"],["-90.046815","29.994750"],["-90.046680","29.994900"],["-90.046630","29.994960"],["-90.046540","29.995060"],["-90.046455","29.995155"],["-90.046370","29.995250"],["-90.046290","29.995350"],["-90.046175","29.995475"],["-90.046060","29.995600"],["-90.045970","29.995700"],["-90.045840","29.995850"],["-90.045810","29.995880"],["-90.045740","29.995960"],["-90.045660","29.996050"],["-90.045560","29.996160"],["-90.045510","29.996210"],["-90.045480","29.996240"],["-90.045430","29.996260"],["-90.045345","29.996365"],["-90.045260","29.996470"],["-90.045240","29.996490"],["-90.045110","29.996640"],["-90.045100","29.996650"],["-90.045020","29.996730"],["-90.044940","29.996820"],["-90.044870","29.996900"],["-90.044770","29.997005"],["-90.044670","29.997110"],["-90.044640","29.997130"],["-90.044535","29.997230"],["-90.044430","29.997330"],["-90.044345","29.997415"],["-90.044260","29.997500"],["-90.044250","29.997510"],["-90.044150","29.997603"],["-90.044050","29.997695"],["-90.043950","29.997788"],["-90.043850","29.997880"],["-90.043730","29.998000"],["-90.043630","29.998090"],["-90.043480","29.998230"],["-90.043380","29.998330"],["-90.043280","29.998430"],["-90.043210","29.998490"],["-90.043140","29.998550"],["-90.042985","29.998685"],["-90.042830","29.998820"],["-90.042800","29.998850"],["-90.042705","29.998925"],["-90.042610","29.999000"],["-90.042520","29.999070"],["-90.042430","29.999140"],["-90.042340","29.999210"],["-90.042250","29.999280"],["-90.042163","29.999346"],["-90.042075","29.999413"],["-90.041988","29.999479"],["-90.041900","29.999545"],["-90.041813","29.999611"],["-90.041725","29.999678"],["-90.041638","29.999744"],["-90.041550","29.999810"],["-90.041428","29.999895"],["-90.041305","29.999980"],["-90.041183","30.000065"],["-90.041060","30.000150"],["-90.040975","30.000218"],["-90.040890","30.000285"],["-90.040805","30.000353"],["-90.040720","30.000420"],["-90.040580","30.000520"],["-90.040475","30.000590"],["-90.040370","30.000660"],["-90.040253","30.000738"],["-90.040135","30.000815"],["-90.040018","30.000893"],["-90.039900","30.000970"],["-90.039750","30.001065"],["-90.039600","30.001160"],["-90.039490","30.001175"],["-90.039380","30.001190"],["-90.039210","30.001260"],["-90.039080","30.001320"],["-90.038940","30.001380"],["-90.038840","30.001420"],["-90.038690","30.001470"],["-90.038530","30.001540"],["-90.038430","30.001580"],["-90.038310","30.001630"],["-90.038180","30.001680"],["-90.038050","30.001730"],["-90.037940","30.001775"],["-90.037830","30.001820"],["-90.037730","30.001860"],["-90.037585","30.001915"],["-90.037440","30.001970"],["-90.037360","30.002010"],["-90.037350","30.002010"],["-90.037210","30.002065"],["-90.037070","30.002120"],["-90.037040","30.002130"],["-90.036960","30.002170"],["-90.036840","30.002220"],["-90.036720","30.002260"],["-90.036600","30.002300"],["-90.036495","30.002340"],["-90.036390","30.002380"],["-90.036300","30.002410"],["-90.036120","30.002470"],["-90.036010","30.002500"],["-90.035900","30.002530"],["-90.035710","30.002580"],["-90.035510","30.002650"],["-90.035350","30.002710"],["-90.035310","30.002720"],["-90.035320","30.002830"],["-90.035320","30.002850"],["-90.035320","30.002930"],["-90.035330","30.002940"],["-90.035330","30.002970"],["-90.035340","30.003070"],["-90.035340","30.003110"],["-90.035350","30.003180"],["-90.035370","30.003300"],["-90.035380","30.003360"],["-90.035410","30.003480"],["-90.035440","30.003610"],["-90.035500","30.003730"],["-90.035540","30.003820"],["-90.035580","30.003910"],["-90.035650","30.004080"],["-90.035480","30.004170"],["-90.035380","30.004215"],["-90.035280","30.004260"],["-90.035210","30.004300"],["-90.035045","30.004380"],["-90.034880","30.004460"],["-90.034778","30.004513"],["-90.034675","30.004565"],["-90.034573","30.004618"],["-90.034470","30.004670"],["-90.034410","30.004700"],["-90.034215","30.004785"],["-90.034020","30.004870"],["-90.033908","30.004920"],["-90.033795","30.004970"],["-90.033683","30.005020"],["-90.033570","30.005070"],["-90.033580","30.005080"],["-90.033660","30.005250"],["-90.033740","30.005410"],["-90.033805","30.005540"],["-90.033870","30.005670"],["-90.033900","30.005720"],["-90.033825","30.005795"],["-90.033993","30.005894"],["-90.034047","30.006020"],["-90.034100","30.006145"],["-90.033973","30.006192"],["-90.033845","30.006239"],["-90.033718","30.006286"],["-90.033590","30.006333"],["-90.033463","30.006379"],["-90.033335","30.006426"],["-90.033208","30.006473"],["-90.033080","30.006520"],["-90.032938","30.006578"],["-90.032795","30.006635"],["-90.032653","30.006693"],["-90.032510","30.006750"],["-90.032365","30.006810"],["-90.032220","30.006870"],["-90.032070","30.006930"],["-90.031880","30.007000"],["-90.031710","30.007070"],["-90.031605","30.007105"],["-90.031500","30.007140"],["-90.031305","30.007200"],["-90.031110","30.007260"],["-90.030993","30.007293"],["-90.030875","30.007325"],["-90.030758","30.007358"],["-90.030640","30.007390"],["-90.030508","30.007425"],["-90.030375","30.007460"],["-90.030243","30.007495"],["-90.030110","30.007530"],["-90.030000","30.007555"],["-90.029890","30.007580"],["-90.029880","30.007580"],["-90.029740","30.007620"],["-90.029560","30.007670"],["-90.029520","30.007680"],["-90.029398","30.007710"],["-90.029275","30.007740"],["-90.029153","30.007770"],["-90.029030","30.007800"],["-90.028908","30.007830"],["-90.028785","30.007860"],["-90.028663","30.007890"],["-90.028540","30.007920"],["-90.028430","30.007945"],["-90.028320","30.007970"],["-90.028120","30.008010"],["-90.028000","30.008035"],["-90.027880","30.008060"],["-90.027730","30.008100"],["-90.027530","30.008150"],["-90.027330","30.008190"],["-90.027130","30.008240"],["-90.026980","30.008280"],["-90.026780","30.008320"],["-90.026580","30.008370"],["-90.026540","30.008380"],["-90.026340","30.008430"],["-90.026140","30.008480"],["-90.025940","30.008520"],["-90.025760","30.008570"],["-90.025615","30.008605"],["-90.025470","30.008640"],["-90.025325","30.008675"],["-90.025180","30.008710"],["-90.025035","30.008745"],["-90.024890","30.008780"],["-90.024745","30.008815"],["-90.024600","30.008850"],["-90.024410","30.008900"],["-90.024340","30.008920"],["-90.024290","30.008930"],["-90.024210","30.008950"],["-90.024100","30.008980"],["-90.023980","30.009010"],["-90.023840","30.009040"],["-90.023650","30.009090"],["-90.023500","30.009126"],["-90.023350","30.009163"],["-90.023200","30.009199"],["-90.023050","30.009235"],["-90.022900","30.009271"],["-90.022750","30.009308"],["-90.022600","30.009344"],["-90.022450","30.009380"],["-90.022280","30.009420"],["-90.022110","30.009460"],["-90.021940","30.009500"],["-90.021770","30.009540"],["-90.021625","30.009575"],["-90.021480","30.009610"],["-90.021370","30.009640"],["-90.021190","30.009690"],["-90.021040","30.009720"],["-90.020890","30.009760"],["-90.020780","30.009780"],["-90.020820","30.009900"],["-90.020840","30.010030"],["-90.020860","30.010180"],["-90.020880","30.010330"],["-90.020829","30.010331"],["-90.020880","30.010330"],["-90.020890","30.010470"],["-90.020902","30.010585"],["-90.020915","30.010700"],["-90.020927","30.010815"],["-90.020940","30.010930"],["-90.020960","30.011110"],["-90.020975","30.011278"],["-90.020990","30.011445"],["-90.021005","30.011613"],["-90.021020","30.011780"],["-90.021035","30.011938"],["-90.021050","30.012095"],["-90.021068","30.012218"],["-90.021087","30.012341"],["-90.020957","30.012361"],["-90.021105","30.012501"],["-90.021140","30.012630"],["-90.021175","30.012758"],["-90.021197","30.012937"],["-90.021210","30.013040"],["-90.021226","30.013219"],["-90.021243","30.013399"],["-90.021259","30.013578"],["-90.021270","30.013700"],["-90.021230","30.013876"],["-90.021190","30.014053"],["-90.021149","30.014229"],["-90.021140","30.014271"],["-90.021258","30.014419"],["-90.021330","30.014509"],["-90.021349","30.014688"],["-90.021369","30.014867"],["-90.021380","30.014970"],["-90.021397","30.015149"],["-90.021414","30.015329"],["-90.021430","30.015508"],["-90.021440","30.015610"],["-90.021423","30.015789"],["-90.021405","30.015968"],["-90.021389","30.016133"],["-90.021440","30.016130"],["-90.021450","30.016230"],["-90.021465","30.016400"],["-90.021480","30.016570"],["-90.021495","30.016740"],["-90.021510","30.016910"],["-90.021525","30.017070"],["-90.021540","30.017230"],["-90.021555","30.017390"],["-90.021570","30.017550"],["-90.021580","30.017723"],["-90.021590","30.017895"],["-90.021600","30.018068"],["-90.021610","30.018240"],["-90.021569","30.018240"],["-90.021610","30.018240"],["-90.021610","30.018340"],["-90.021640","30.018500"],["-90.021685","30.018620"],["-90.021730","30.018740"],["-90.021775","30.018860"],["-90.021820","30.018980"],["-90.021855","30.019080"],["-90.021890","30.019180"],["-90.021955","30.019358"],["-90.022020","30.019535"],["-90.022085","30.019713"],["-90.022150","30.019890"],["-90.022090","30.019908"],["-90.022150","30.019890"],["-90.022170","30.019950"],["-90.022231","30.020115"],["-90.022292","30.020280"],["-90.022354","30.020445"],["-90.022415","30.020610"],["-90.022476","30.020775"],["-90.022537","30.020940"],["-90.022599","30.021105"],["-90.022660","30.021270"],["-90.022725","30.021453"],["-90.022790","30.021635"],["-90.022855","30.021818"],["-90.022920","30.022000"],["-90.022858","30.022017"],["-90.022920","30.022000"],["-90.022960","30.022090"],["-90.023012","30.022238"],["-90.023065","30.022385"],["-90.023117","30.022533"],["-90.023170","30.022680"],["-90.023220","30.022820"],["-90.023270","30.022960"],["-90.023317","30.023086"],["-90.023365","30.023213"],["-90.023412","30.023339"],["-90.023460","30.023465"],["-90.023507","30.023591"],["-90.023555","30.023718"],["-90.023602","30.023844"],["-90.023650","30.023970"],["-90.023584","30.023980"],["-90.023650","30.023970"],["-90.023685","30.024066"],["-90.023720","30.024163"],["-90.023755","30.024259"],["-90.023790","30.024355"],["-90.023825","30.024451"],["-90.023860","30.024548"],["-90.023895","30.024644"],["-90.023930","30.024740"],["-90.023975","30.024870"],["-90.024020","30.025000"],["-90.024065","30.025130"],["-90.024110","30.025260"],["-90.024167","30.025415"],["-90.024225","30.025570"],["-90.024282","30.025725"],["-90.024340","30.025880"],["-90.024261","30.025901"],["-90.024340","30.025880"],["-90.024380","30.025990"],["-90.024185","30.026045"],["-90.023990","30.026100"],["-90.023795","30.026160"],["-90.023600","30.026220"],["-90.023400","30.026280"],["-90.023253","30.026323"],["-90.023105","30.026365"],["-90.022958","30.026408"],["-90.022810","30.026450"],["-90.022613","30.026510"],["-90.022415","30.026570"],["-90.022218","30.026630"],["-90.022020","30.026690"],["-90.021870","30.026734"],["-90.021720","30.026778"],["-90.021570","30.026821"],["-90.021420","30.026865"],["-90.021270","30.026909"],["-90.021120","30.026953"],["-90.020970","30.026996"],["-90.020820","30.027040"],["-90.020798","30.026987"],["-90.020820","30.027040"],["-90.020680","30.027080"],["-90.020505","30.027135"],["-90.020330","30.027190"],["-90.020155","30.027245"],["-90.019980","30.027300"],["-90.019780","30.027355"],["-90.019580","30.027410"],["-90.019460","30.027435"],["-90.019340","30.027460"],["-90.019140","30.027500"],["-90.019015","30.027520"],["-90.018890","30.027540"],["-90.018670","30.027565"],["-90.018450","30.027590"],["-90.018390","30.027590"],["-90.018275","30.027595"],["-90.018160","30.027600"],["-90.018130","30.027600"],["-90.018124","30.027527"],["-90.017926","30.027581"],["-90.017820","30.027610"],["-90.017670","30.027630"],["-90.017488","30.027716"],["-90.017380","30.027790"],["-90.017310","30.027860"],["-90.017199","30.028012"],["-90.017058","30.028144"],["-90.017020","30.028180"],["-90.016870","30.028260"],["-90.016672","30.028315"],["-90.016465","30.028326"],["-90.016250","30.028337"],["-90.016054","30.028395"],["-90.015857","30.028454"],["-90.015661","30.028513"],["-90.015465","30.028572"],["-90.015268","30.028631"],["-90.015072","30.028689"],["-90.014875","30.028748"],["-90.014679","30.028807"],["-90.014483","30.028866"],["-90.014385","30.028895"],["-90.014225","30.029009"],["-90.014140","30.029070"],["-90.013943","30.029127"],["-90.013746","30.029185"],["-90.013549","30.029242"],["-90.013352","30.029299"],["-90.013156","30.029357"],["-90.012958","30.029414"],["-90.012762","30.029471"],["-90.012565","30.029529"],["-90.012532","30.029538"],["-90.012361","30.029640"],["-90.012266","30.029696"],["-90.012072","30.029761"],["-90.011879","30.029827"],["-90.011686","30.029893"],["-90.011492","30.029959"],["-90.011299","30.030024"],["-90.011105","30.030090"],["-90.010912","30.030156"],["-90.010719","30.030222"],["-90.010525","30.030287"],["-90.010332","30.030353"],["-90.010139","30.030419"],["-90.009945","30.030485"],["-90.009752","30.030550"],["-90.009579","30.030609"],["-90.009383","30.030669"],["-90.009188","30.030730"],["-90.009060","30.030769"],["-90.008857","30.030806"],["-90.008653","30.030843"],["-90.008582","30.030856"],["-90.008400","30.030943"],["-90.008218","30.031029"],["-90.008136","30.031068"],["-90.007944","30.031137"],["-90.007752","30.031206"],["-90.007561","30.031275"],["-90.007370","30.031347"],["-90.007180","30.031419"],["-90.006989","30.031491"],["-90.006799","30.031563"],["-90.006609","30.031635"],["-90.006416","30.031703"],["-90.006223","30.031770"],["-90.006031","30.031838"],["-90.005838","30.031905"],["-90.005740","30.031940"],["-90.005542","30.031994"],["-90.005343","30.032048"],["-90.005145","30.032101"],["-90.005065","30.032123"],["-90.004905","30.032237"],["-90.004815","30.032301"],["-90.004750","30.032330"],["-90.004559","30.032400"],["-90.004367","30.032470"],["-90.004176","30.032540"],["-90.003985","30.032610"],["-90.003930","30.032630"],["-90.003729","30.032675"],["-90.003528","30.032721"],["-90.003455","30.032737"],["-90.003490","30.032800"],["-90.003430","30.032820"],["-90.003295","30.032870"],["-90.003160","30.032920"],["-90.003000","30.032980"],["-90.002828","30.033048"],["-90.002655","30.033115"],["-90.002483","30.033183"],["-90.002310","30.033250"],["-90.002160","30.033300"],["-90.002015","30.033355"],["-90.001870","30.033410"],["-90.001680","30.033480"],["-90.001520","30.033540"],["-90.001488","30.033483"],["-90.001520","30.033540"],["-90.001410","30.033580"],["-90.001230","30.033650"],["-90.001080","30.033705"],["-90.000930","30.033760"],["-90.000819","30.033803"],["-90.000708","30.033845"],["-90.000596","30.033888"],["-90.000485","30.033930"],["-90.000374","30.033973"],["-90.000263","30.034015"],["-90.000151","30.034058"],["-90.000040","30.034100"],["-89.999860","30.034155"],["-89.999680","30.034210"],["-89.999565","30.034254"],["-89.999450","30.034298"],["-89.999335","30.034341"],["-89.999220","30.034385"],["-89.999105","30.034429"],["-89.998990","30.034473"],["-89.998875","30.034516"],["-89.998760","30.034560"],["-89.998585","30.034630"],["-89.998410","30.034700"],["-89.998295","30.034745"],["-89.998180","30.034790"],["-89.998010","30.034860"],["-89.997840","30.034930"],["-89.997740","30.034973"],["-89.997640","30.035015"],["-89.997539","30.035058"],["-89.997439","30.035101"],["-89.997339","30.035143"],["-89.997239","30.035186"],["-89.997139","30.035228"],["-89.997038","30.035271"],["-89.996859","30.035264"],["-89.996900","30.035330"],["-89.996790","30.035380"],["-89.996740","30.035288"],["-89.996690","30.035195"],["-89.996640","30.035103"],["-89.996590","30.035010"],["-89.996530","30.034910"],["-89.996470","30.034810"],["-89.996410","30.034715"],["-89.996350","30.034620"],["-89.996290","30.034525"],["-89.996230","30.034430"],["-89.996140","30.034270"],["-89.996060","30.034160"],["-89.996040","30.034110"],["-89.995970","30.034000"],["-89.995940","30.033950"],["-89.995887","30.033858"],["-89.995835","30.033765"],["-89.995782","30.033673"],["-89.995730","30.033580"],["-89.995680","30.033480"],["-89.995590","30.033310"],["-89.995520","30.033178"],["-89.995450","30.033045"],["-89.995380","30.032913"],["-89.995310","30.032780"],["-89.995245","30.032665"],["-89.995180","30.032550"],["-89.995115","30.032435"],["-89.995050","30.032320"],["-89.994980","30.032220"],["-89.994915","30.032098"],["-89.994850","30.031975"],["-89.994785","30.031853"],["-89.994720","30.031730"],["-89.994665","30.031635"],["-89.994610","30.031540"],["-89.994560","30.031443"],["-89.994510","30.031345"],["-89.994460","30.031248"],["-89.994410","30.031150"],["-89.994230","30.031230"],["-89.994140","30.031250"],["-89.994090","30.031270"],["-89.994040","30.031290"],["-89.993980","30.031300"],["-89.993930","30.031310"],["-89.993890","30.031300"],["-89.993860","30.031290"],["-89.993850","30.031280"],["-89.993760","30.031180"],["-89.993720","30.031130"],["-89.993600","30.031040"],["-89.993540","30.031000"],["-89.993470","30.030960"],["-89.993420","30.030940"],["-89.993390","30.030940"],["-89.993320","30.030920"],["-89.993280","30.030920"],["-89.993250","30.030920"],["-89.993200","30.030920"],["-89.993170","30.030920"],["-89.993110","30.030930"],["-89.993020","30.030950"],["-89.992913","30.030978"],["-89.992805","30.031005"],["-89.992698","30.031033"],["-89.992590","30.031060"],["-89.992438","30.031098"],["-89.992285","30.031135"],["-89.992133","30.031173"],["-89.991980","30.031210"],["-89.991810","30.031255"],["-89.991640","30.031300"],["-89.991470","30.031345"],["-89.991300","30.031390"],["-89.991115","30.031445"],["-89.990930","30.031500"],["-89.990815","30.031535"],["-89.990700","30.031570"],["-89.990540","30.031620"],["-89.990433","30.031656"],["-89.990325","30.031693"],["-89.990218","30.031729"],["-89.990110","30.031765"],["-89.990003","30.031801"],["-89.989895","30.031838"],["-89.989788","30.031874"],["-89.989680","30.031910"],["-89.989510","30.031980"],["-89.989340","30.032050"],["-89.989235","30.032090"],["-89.989130","30.032130"],["-89.988990","30.032185"],["-89.988850","30.032240"],["-89.988673","30.032313"],["-89.988495","30.032385"],["-89.988318","30.032458"],["-89.988140","30.032530"],["-89.988029","30.032575"],["-89.987918","30.032620"],["-89.987806","30.032665"],["-89.987695","30.032710"],["-89.987584","30.032755"],["-89.987473","30.032800"],["-89.987361","30.032845"],["-89.987250","30.032890"],["-89.987104","30.032950"],["-89.986958","30.033010"],["-89.986811","30.033070"],["-89.986665","30.033130"],["-89.986519","30.033190"],["-89.986373","30.033250"],["-89.986226","30.033310"],["-89.986080","30.033370"],["-89.985948","30.033425"],["-89.985815","30.033480"],["-89.985683","30.033535"],["-89.985550","30.033590"],["-89.985405","30.033645"],["-89.985260","30.033700"],["-89.985312","30.033790"],["-89.985365","30.033880"],["-89.985417","30.033970"],["-89.985470","30.034060"],["-89.985522","30.034150"],["-89.985575","30.034240"],["-89.985627","30.034330"],["-89.985680","30.034420"],["-89.985739","30.034518"],["-89.985797","30.034615"],["-89.985856","30.034713"],["-89.985915","30.034810"],["-89.985974","30.034908"],["-89.986032","30.035005"],["-89.986091","30.035103"],["-89.986150","30.035200"],["-89.986210","30.035300"],["-89.986292","30.035435"],["-89.986375","30.035570"],["-89.986457","30.035705"],["-89.986540","30.035840"],["-89.986622","30.035970"],["-89.986705","30.036100"],["-89.986787","30.036230"],["-89.986870","30.036360"],["-89.986970","30.036515"],["-89.987070","30.036670"],["-89.987130","30.036770"],["-89.987120","30.036774"],["-89.987130","30.036770"],["-89.987170","30.036830"],["-89.987270","30.036980"],["-89.987330","30.037090"],["-89.987390","30.037200"],["-89.987430","30.037280"],["-89.987480","30.037400"],["-89.987510","30.037460"],["-89.987540","30.037555"],["-89.987570","30.037650"],["-89.987600","30.037750"],["-89.987640","30.037900"],["-89.987650","30.037980"],["-89.987680","30.038140"],["-89.987705","30.038240"],["-89.987730","30.038340"],["-89.987750","30.038390"],["-89.987770","30.038450"],["-89.987780","30.038490"],["-89.987810","30.038560"],["-89.987830","30.038610"],["-89.987880","30.038730"],["-89.987940","30.038850"],["-89.987990","30.038950"],["-89.988010","30.038980"],["-89.987945","30.039013"],["-89.988010","30.038980"],["-89.988080","30.039090"],["-89.987970","30.039140"],["-89.987860","30.039190"],["-89.987790","30.039220"],["-89.987610","30.039300"],["-89.987510","30.039340"],["-89.987450","30.039340"],["-89.987360","30.039380"],["-89.987250","30.039435"],["-89.987140","30.039490"],["-89.987030","30.039545"],["-89.986920","30.039600"],["-89.986774","30.039671"],["-89.986629","30.039743"],["-89.986483","30.039814"],["-89.986338","30.039885"],["-89.986192","30.039956"],["-89.986046","30.040028"],["-89.985901","30.040099"],["-89.985755","30.040170"],["-89.985609","30.040241"],["-89.985464","30.040313"],["-89.985318","30.040384"],["-89.985173","30.040455"],["-89.985027","30.040526"],["-89.984881","30.040598"],["-89.984736","30.040669"],["-89.984590","30.040740"],["-89.984484","30.040791"],["-89.984379","30.040843"],["-89.984273","30.040894"],["-89.984168","30.040945"],["-89.984062","30.040996"],["-89.983956","30.041048"],["-89.983851","30.041099"],["-89.983745","30.041150"],["-89.983639","30.041201"],["-89.983534","30.041253"],["-89.983428","30.041304"],["-89.983323","30.041355"],["-89.983217","30.041406"],["-89.983111","30.041458"],["-89.983006","30.041509"],["-89.982900","30.041560"],["-89.982921","30.041567"],["-89.982900","30.041560"],["-89.982724","30.041646"],["-89.982548","30.041733"],["-89.982371","30.041819"],["-89.982195","30.041905"],["-89.982019","30.041991"],["-89.981843","30.042078"],["-89.981666","30.042164"],["-89.981490","30.042250"],["-89.981308","30.042340"],["-89.981125","30.042430"],["-89.980943","30.042520"],["-89.980760","30.042610"],["-89.980655","30.042660"],["-89.980550","30.042710"],["-89.980450","30.042760"],["-89.980350","30.042810"],["-89.980270","30.042650"],["-89.980130","30.042700"],["-89.980166","30.042767"],["-89.980130","30.042700"],["-89.980270","30.042650"],["-89.980350","30.042810"],["-89.980235","30.042865"],["-89.980120","30.042920"],["-89.979985","30.042980"],["-89.979850","30.043040"],["-89.979690","30.043120"],["-89.979530","30.043200"],["-89.979390","30.043270"],["-89.979230","30.043350"],["-89.979130","30.043400"],["-89.979030","30.043450"],["-89.978930","30.043500"],["-89.978830","30.043550"],["-89.978730","30.043600"],["-89.978560","30.043680"],["-89.978403","30.043760"],["-89.978245","30.043840"],["-89.978088","30.043920"],["-89.977930","30.044000"],["-89.977765","30.044080"],["-89.977600","30.044160"],["-89.977435","30.044240"],["-89.977270","30.044320"],["-89.977148","30.044383"],["-89.977025","30.044445"],["-89.976903","30.044508"],["-89.976780","30.044570"],["-89.976690","30.044460"],["-89.976665","30.044312"],["-89.976600","30.044350"],["-89.976690","30.044460"],["-89.976780","30.044570"],["-89.976600","30.044658"],["-89.976420","30.044745"],["-89.976240","30.044833"],["-89.976060","30.044920"],["-89.975895","30.045000"],["-89.975730","30.045080"],["-89.975570","30.045160"],["-89.975410","30.045240"],["-89.975250","30.045320"],["-89.975090","30.045400"],["-89.974930","30.045480"],["-89.974760","30.045565"],["-89.974590","30.045650"],["-89.974420","30.045735"],["-89.974250","30.045820"],["-89.974093","30.045900"],["-89.973935","30.045980"],["-89.973778","30.046060"],["-89.973620","30.046140"],["-89.973520","30.046193"],["-89.973420","30.046245"],["-89.973320","30.046298"],["-89.973220","30.046350"],["-89.973095","30.046420"],["-89.972970","30.046490"],["-89.972845","30.046560"],["-89.972720","30.046630"],["-89.972585","30.046710"],["-89.972418","30.046743"],["-89.972260","30.046860"],["-89.972139","30.046950"],["-89.971962","30.047045"],["-89.971786","30.047140"],["-89.971609","30.047234"],["-89.971433","30.047329"],["-89.971256","30.047424"],["-89.971079","30.047519"],["-89.970903","30.047613"],["-89.970726","30.047708"],["-89.970550","30.047803"],["-89.970373","30.047898"],["-89.970328","30.047922"],["-89.970163","30.048031"],["-89.969997","30.048140"],["-89.969935","30.048181"],["-89.969763","30.048282"],["-89.969591","30.048383"],["-89.969460","30.048460"],["-89.969278","30.048547"],["-89.969096","30.048633"],["-89.968914","30.048720"],["-89.968806","30.048771"],["-89.968658","30.048897"],["-89.968580","30.048963"],["-89.968409","30.049066"],["-89.968239","30.049169"],["-89.968069","30.049272"],["-89.967899","30.049375"],["-89.967729","30.049479"],["-89.967558","30.049582"],["-89.967388","30.049685"],["-89.967218","30.049788"],["-89.967048","30.049891"],["-89.966877","30.049994"],["-89.966726","30.050118"],["-89.966644","30.050186"],["-89.966468","30.050282"],["-89.966293","30.050378"],["-89.966117","30.050474"],["-89.965941","30.050570"],["-89.965791","30.050652"],["-89.965642","30.050734"],["-89.965492","30.050816"],["-89.965342","30.050898"],["-89.965333","30.051006"],["-89.965243","30.051066"],["-89.965153","30.051125"],["-89.965137","30.051257"],["-89.965227","30.051365"],["-89.965317","30.051473"],["-89.965407","30.051580"],["-89.965498","30.051688"],["-89.965588","30.051796"],["-89.965678","30.051903"],["-89.965768","30.052011"],["-89.965858","30.052119"],["-89.965935","30.052210"],["-89.966011","30.052302"],["-89.966087","30.052394"],["-89.966163","30.052486"],["-89.966240","30.052578"],["-89.966316","30.052670"],["-89.966392","30.052761"],["-89.966469","30.052853"],["-89.966579","30.052986"],["-89.966690","30.053118"],["-89.966801","30.053251"],["-89.966898","30.053366"],["-89.966995","30.053481"],["-89.967092","30.053595"],["-89.967190","30.053710"],["-89.967292","30.053872"],["-89.967395","30.054034"],["-89.967529","30.054105"],["-89.967600","30.054189"],["-89.967671","30.054274"],["-89.967742","30.054358"],["-89.967813","30.054443"],["-89.967885","30.054530"],["-89.967960","30.054620"],["-89.968035","30.054710"],["-89.968110","30.054800"],["-89.968182","30.054886"],["-89.968255","30.054973"],["-89.968327","30.055059"],["-89.968400","30.055145"],["-89.968472","30.055231"],["-89.968545","30.055318"],["-89.968617","30.055404"],["-89.968710","30.055510"],["-89.968632","30.055525"],["-89.968710","30.055510"],["-89.968770","30.055580"],["-89.968835","30.055663"],["-89.968900","30.055745"],["-89.968965","30.055828"],["-89.969030","30.055910"],["-89.969095","30.055993"],["-89.969160","30.056075"],["-89.969225","30.056158"],["-89.969290","30.056240"],["-89.969377","30.056353"],["-89.969465","30.056465"],["-89.969552","30.056578"],["-89.969640","30.056690"],["-89.969770","30.056840"],["-89.969701","30.056883"],["-89.969770","30.056840"],["-89.969840","30.056925"],["-89.969910","30.057010"],["-89.969740","30.057115"],["-89.969570","30.057220"],["-89.969415","30.057320"],["-89.969260","30.057420"],["-89.969090","30.057525"],["-89.968920","30.057630"],["-89.968770","30.057720"],["-89.968620","30.057810"],["-89.968580","30.057840"],["-89.968570","30.057840"],["-89.968512","30.057779"],["-89.968570","30.057840"],["-89.968410","30.057940"],["-89.968265","30.058030"],["-89.968120","30.058120"],["-89.968110","30.058120"],["-89.967945","30.058225"],["-89.967780","30.058330"],["-89.967610","30.058430"],["-89.967435","30.058540"],["-89.967260","30.058650"],["-89.967155","30.058715"],["-89.967050","30.058780"],["-89.966953","30.058840"],["-89.966855","30.058900"],["-89.966758","30.058960"],["-89.966607","30.058952"],["-89.966650","30.059000"],["-89.966530","30.059080"],["-89.966435","30.059140"],["-89.966340","30.059200"],["-89.966245","30.059260"],["-89.966150","30.059320"],["-89.966055","30.059380"],["-89.965960","30.059440"],["-89.965865","30.059500"],["-89.965770","30.059560"],["-89.965598","30.059673"],["-89.965425","30.059785"],["-89.965253","30.059898"],["-89.965080","30.060010"],["-89.964988","30.060070"],["-89.964895","30.060130"],["-89.964803","30.060190"],["-89.964710","30.060250"],["-89.964560","30.060340"],["-89.964410","30.060430"],["-89.964351","30.060362"],["-89.964410","30.060430"],["-89.964255","30.060525"],["-89.964100","30.060620"],["-89.963940","30.060730"],["-89.963780","30.060840"],["-89.963640","30.060925"],["-89.963500","30.061010"],["-89.963329","30.061126"],["-89.963158","30.061243"],["-89.962986","30.061359"],["-89.962815","30.061475"],["-89.962644","30.061591"],["-89.962473","30.061708"],["-89.962301","30.061824"],["-89.962130","30.061940"],["-89.962065","30.061865"],["-89.962130","30.061940"],["-89.962010","30.062010"],["-89.961865","30.062108"],["-89.961720","30.062205"],["-89.961575","30.062303"],["-89.961430","30.062400"],["-89.961285","30.062498"],["-89.961140","30.062595"],["-89.960995","30.062693"],["-89.960850","30.062790"],["-89.960711","30.062886"],["-89.960573","30.062983"],["-89.960434","30.063079"],["-89.960295","30.063175"],["-89.960156","30.063271"],["-89.960018","30.063368"],["-89.959879","30.063464"],["-89.959740","30.063560"],["-89.959685","30.063503"],["-89.959740","30.063560"],["-89.959620","30.063640"],["-89.959533","30.063701"],["-89.959446","30.063763"],["-89.959359","30.063824"],["-89.959273","30.063885"],["-89.959186","30.063946"],["-89.959099","30.064008"],["-89.959012","30.064069"],["-89.958925","30.064130"],["-89.958838","30.064191"],["-89.958751","30.064253"],["-89.958664","30.064314"],["-89.958578","30.064375"],["-89.958491","30.064436"],["-89.958404","30.064498"],["-89.958317","30.064559"],["-89.958230","30.064620"],["-89.958133","30.064688"],["-89.958035","30.064755"],["-89.957938","30.064823"],["-89.957840","30.064890"],["-89.957743","30.064958"],["-89.957645","30.065025"],["-89.957548","30.065093"],["-89.957450","30.065160"],["-89.957355","30.065228"],["-89.957260","30.065295"],["-89.957165","30.065363"],["-89.957070","30.065430"],["-89.956975","30.065498"],["-89.956880","30.065565"],["-89.956785","30.065633"],["-89.956690","30.065700"],["-89.956558","30.065795"],["-89.956425","30.065890"],["-89.956293","30.065985"],["-89.956160","30.066080"],["-89.956112","30.066028"],["-89.956160","30.066080"],["-89.956070","30.066150"],["-89.955930","30.066250"],["-89.955790","30.066350"],["-89.955650","30.066450"],["-89.955510","30.066550"],["-89.955389","30.066640"],["-89.955268","30.066730"],["-89.955146","30.066820"],["-89.955025","30.066910"],["-89.954904","30.067000"],["-89.954783","30.067090"],["-89.954661","30.067180"],["-89.954540","30.067270"],["-89.954420","30.067364"],["-89.954300","30.067458"],["-89.954180","30.067551"],["-89.954060","30.067645"],["-89.953940","30.067739"],["-89.953820","30.067833"],["-89.953700","30.067926"],["-89.953580","30.068020"],["-89.953509","30.067955"],["-89.953580","30.068020"],["-89.953460","30.068120"],["-89.953355","30.068015"],["-89.953250","30.067910"],["-89.953155","30.067815"],["-89.953060","30.067720"],["-89.952986","30.067645"],["-89.952912","30.067570"],["-89.952839","30.067495"],["-89.952765","30.067420"],["-89.952691","30.067345"],["-89.952617","30.067270"],["-89.952544","30.067195"],["-89.952470","30.067120"],["-89.952325","30.066985"],["-89.952180","30.066850"],["-89.952102","30.066765"],["-89.952025","30.066680"],["-89.951947","30.066595"],["-89.951870","30.066510"],["-89.951896","30.066489"],["-89.951870","30.066510"],["-89.951810","30.066450"],["-89.951730","30.066380"],["-89.951630","30.066280"],["-89.951542","30.066195"],["-89.951455","30.066110"],["-89.951367","30.066025"],["-89.951280","30.065940"],["-89.951157","30.065813"],["-89.951035","30.065685"],["-89.950912","30.065558"],["-89.950790","30.065430"],["-89.950834","30.065398"],["-89.950790","30.065430"],["-89.950750","30.065380"],["-89.950608","30.065488"],["-89.950465","30.065595"],["-89.950323","30.065703"],["-89.950180","30.065810"],["-89.950048","30.065910"],["-89.949915","30.066010"],["-89.949783","30.066110"],["-89.949650","30.066210"],["-89.949530","30.066303"],["-89.949410","30.066395"],["-89.949290","30.066488"],["-89.949170","30.066580"],["-89.949129","30.066541"],["-89.949170","30.066580"],["-89.949100","30.066640"],["-89.948985","30.066728"],["-89.948870","30.066815"],["-89.948755","30.066903"],["-89.948640","30.066990"],["-89.948515","30.067088"],["-89.948390","30.067185"],["-89.948265","30.067283"],["-89.948140","30.067380"],["-89.948025","30.067470"],["-89.947910","30.067560"],["-89.947900","30.067560"],["-89.947857","30.067520"],["-89.947900","30.067560"],["-89.947830","30.067620"],["-89.947695","30.067725"],["-89.947560","30.067830"],["-89.947425","30.067935"],["-89.947290","30.068040"],["-89.947170","30.068130"],["-89.947050","30.068220"],["-89.946930","30.068310"],["-89.946810","30.068400"],["-89.946749","30.068330"],["-89.946810","30.068400"],["-89.946720","30.068460"],["-89.946638","30.068528"],["-89.946555","30.068595"],["-89.946473","30.068663"],["-89.946390","30.068730"],["-89.946275","30.068820"],["-89.946160","30.068910"],["-89.946045","30.069000"],["-89.945930","30.069090"],["-89.945820","30.069180"],["-89.945710","30.069270"],["-89.945660","30.069221"],["-89.945710","30.069270"],["-89.945630","30.069340"],["-89.945525","30.069425"],["-89.945420","30.069510"],["-89.945315","30.069595"],["-89.945210","30.069680"],["-89.945060","30.069798"],["-89.944910","30.069915"],["-89.944760","30.070033"],["-89.944610","30.070150"],["-89.944478","30.070255"],["-89.944345","30.070360"],["-89.944213","30.070465"],["-89.944080","30.070570"],["-89.944047","30.070538"],["-89.944080","30.070570"],["-89.944030","30.070610"],["-89.943888","30.070725"],["-89.943745","30.070840"],["-89.943603","30.070955"],["-89.943460","30.071070"],["-89.943315","30.071185"],["-89.943170","30.071300"],["-89.943085","30.071370"],["-89.943000","30.071440"],["-89.942930","30.071490"],["-89.942880","30.071550"],["-89.942790","30.071610"],["-89.942700","30.071670"],["-89.942600","30.071720"],["-89.942510","30.071760"],["-89.942390","30.071800"],["-89.942320","30.071820"],["-89.942240","30.071840"],["-89.942262","30.071794"],["-89.942240","30.071840"],["-89.942130","30.071870"],["-89.942020","30.071900"],["-89.941870","30.071940"],["-89.941760","30.071960"],["-89.941590","30.071990"],["-89.941510","30.072000"],["-89.941440","30.072000"],["-89.941220","30.072020"],["-89.941170","30.072020"],["-89.941050","30.072025"],["-89.940930","30.072030"],["-89.940810","30.072010"],["-89.940690","30.071990"],["-89.940773","30.071972"],["-89.940690","30.071990"],["-89.940660","30.071890"],["-89.940620","30.071750"],["-89.940600","30.071640"],["-89.940590","30.071520"],["-89.940580","30.071400"],["-89.940570","30.071290"],["-89.940560","30.071135"],["-89.940550","30.070980"],["-89.940540","30.070890"],["-89.940527","30.070765"],["-89.940515","30.070640"],["-89.940502","30.070515"],["-89.940490","30.070390"],["-89.940477","30.070265"],["-89.940465","30.070140"],["-89.940452","30.070015"],["-89.940440","30.069890"],["-89.940506","30.069888"],["-89.940440","30.069890"],["-89.940430","30.069810"],["-89.940421","30.069708"],["-89.940412","30.069606"],["-89.940404","30.069504"],["-89.940395","30.069403"],["-89.940386","30.069301"],["-89.940377","30.069199"],["-89.940369","30.069097"],["-89.940360","30.068995"],["-89.940351","30.068893"],["-89.940342","30.068791"],["-89.940334","30.068689"],["-89.940325","30.068588"],["-89.940316","30.068486"],["-89.940307","30.068384"],["-89.940299","30.068282"],["-89.940290","30.068180"],["-89.940290","30.068110"],["-89.940372","30.068109"],["-89.940290","30.068110"],["-89.940275","30.067925"],["-89.940260","30.067740"],["-89.940245","30.067600"],["-89.940230","30.067460"],["-89.940220","30.067355"],["-89.940210","30.067250"],["-89.940200","30.067145"],["-89.940190","30.067040"],["-89.940180","30.066935"],["-89.940170","30.066830"],["-89.940157","30.066720"],["-89.940145","30.066610"],["-89.940132","30.066500"],["-89.940120","30.066390"],["-89.940102","30.066233"],["-89.940085","30.066075"],["-89.940067","30.065918"],["-89.940050","30.065760"],["-89.940037","30.065663"],["-89.940025","30.065565"],["-89.940012","30.065468"],["-89.940000","30.065370"],["-89.939990","30.065265"],["-89.939980","30.065160"],["-89.939966","30.065031"],["-89.939952","30.064903"],["-89.939939","30.064774"],["-89.939925","30.064645"],["-89.939911","30.064516"],["-89.939897","30.064388"],["-89.939884","30.064259"],["-89.939870","30.064130"],["-89.940020","30.064100"],["-89.940070","30.064090"],["-89.940110","30.064070"],["-89.940140","30.064060"],["-89.940170","30.064030"],["-89.940190","30.063990"],["-89.940200","30.063970"],["-89.940200","30.063950"],["-89.940200","30.063920"],["-89.940200","30.063890"],["-89.940190","30.063750"],["-89.940175","30.063620"],["-89.940160","30.063490"],["-89.940145","30.063370"],["-89.940130","30.063250"],["-89.940120","30.063150"],["-89.940110","30.063050"],["-89.940110","30.062960"],["-89.940110","30.062850"],["-89.940110","30.062800"],["-89.940120","30.062740"],["-89.940130","30.062670"],["-89.940140","30.062620"],["-89.940150","30.062570"],["-89.940170","30.062510"],["-89.940210","30.062380"],["-89.940250","30.062280"],["-89.940320","30.062160"],["-89.940390","30.062055"],["-89.940460","30.061950"],["-89.940540","30.061833"],["-89.940620","30.061715"],["-89.940700","30.061598"],["-89.940780","30.061480"],["-89.940860","30.061363"],["-89.940940","30.061245"],["-89.941020","30.061128"],["-89.941100","30.061010"],["-89.941203","30.060863"],["-89.941305","30.060715"],["-89.941408","30.060568"],["-89.941510","30.060420"],["-89.941575","30.060320"],["-89.941640","30.060220"],["-89.941720","30.060100"],["-89.941785","30.060010"],["-89.941850","30.059920"],["-89.941960","30.059755"],["-89.942070","30.059590"],["-89.942130","30.059503"],["-89.942190","30.059415"],["-89.942250","30.059328"],["-89.942310","30.059240"],["-89.942370","30.059150"],["-89.942440","30.059040"],["-89.942560","30.058880"],["-89.942630","30.058760"],["-89.942710","30.058660"],["-89.942780","30.058560"],["-89.942850","30.058460"],["-89.942900","30.058390"],["-89.942910","30.058390"],["-89.942970","30.058320"],["-89.943030","30.058240"],["-89.943080","30.058180"],["-89.943200","30.058060"],["-89.943250","30.058000"],["-89.943330","30.057930"],["-89.943440","30.057830"],["-89.943500","30.057780"],["-89.943590","30.057720"],["-89.943710","30.057630"],["-89.943830","30.057540"],["-89.943970","30.057440"],["-89.944100","30.057360"],["-89.944230","30.057280"],["-89.944385","30.057180"],["-89.944540","30.057080"],["-89.944640","30.057015"],["-89.944740","30.056950"],["-89.944840","30.056885"],["-89.944940","30.056820"],["-89.944969","30.056861"],["-89.945118","30.056736"],["-89.945263","30.056614"],["-89.945434","30.056511"],["-89.945604","30.056408"],["-89.945774","30.056305"],["-89.945945","30.056202"],["-89.946115","30.056099"],["-89.946285","30.055996"],["-89.946456","30.055893"],["-89.946626","30.055790"],["-89.946796","30.055687"],["-89.946967","30.055584"],["-89.947137","30.055481"],["-89.947308","30.055378"],["-89.947478","30.055275"],["-89.947648","30.055172"],["-89.947819","30.055070"],["-89.947989","30.054967"],["-89.948040","30.054936"],["-89.948000","30.054890"],["-89.948120","30.054810"],["-89.948260","30.054725"],["-89.948400","30.054640"],["-89.948540","30.054555"],["-89.948680","30.054470"],["-89.948779","30.054408"],["-89.948878","30.054345"],["-89.948976","30.054283"],["-89.949075","30.054220"],["-89.949174","30.054158"],["-89.949273","30.054095"],["-89.949371","30.054033"],["-89.949470","30.053970"],["-89.949611","30.053881"],["-89.949753","30.053793"],["-89.949894","30.053704"],["-89.950035","30.053615"],["-89.950176","30.053526"],["-89.950318","30.053438"],["-89.950459","30.053349"],["-89.950600","30.053260"],["-89.950632","30.053304"],["-89.950600","30.053260"],["-89.950740","30.053170"],["-89.950885","30.053085"],["-89.951030","30.053000"],["-89.951147","30.052926"],["-89.951264","30.052853"],["-89.951381","30.052779"],["-89.951498","30.052705"],["-89.951614","30.052631"],["-89.951731","30.052558"],["-89.951848","30.052484"],["-89.951965","30.052410"],["-89.952082","30.052336"],["-89.952199","30.052263"],["-89.952316","30.052189"],["-89.952433","30.052115"],["-89.952549","30.052041"],["-89.952666","30.051968"],["-89.952783","30.051894"],["-89.952930","30.051854"],["-89.953062","30.051715"],["-89.953138","30.051634"],["-89.953306","30.051528"],["-89.953430","30.051450"],["-89.953599","30.051345"],["-89.953768","30.051240"],["-89.953936","30.051135"],["-89.954105","30.051030"],["-89.954274","30.050926"],["-89.954443","30.050821"],["-89.954612","30.050716"],["-89.954780","30.050611"],["-89.954949","30.050506"],["-89.955118","30.050401"],["-89.955287","30.050296"],["-89.955456","30.050191"],["-89.955629","30.050092"],["-89.955803","30.049994"],["-89.955977","30.049895"],["-89.956150","30.049796"],["-89.956324","30.049697"],["-89.956498","30.049599"],["-89.956532","30.049579"],["-89.956677","30.049450"],["-89.956822","30.049321"],["-89.956889","30.049261"],["-89.957058","30.049157"],["-89.957228","30.049053"],["-89.957397","30.048948"],["-89.957566","30.048844"],["-89.957670","30.048780"],["-89.957845","30.048683"],["-89.957970","30.048616"],["-89.958095","30.048549"],["-89.958221","30.048482"],["-89.958346","30.048415"],["-89.958471","30.048347"],["-89.958596","30.048280"],["-89.958722","30.048213"],["-89.958847","30.048146"],["-89.958978","30.048128"],["-89.959109","30.048110"],["-89.959080","30.048060"],["-89.959230","30.047990"],["-89.959360","30.047930"],["-89.959490","30.047870"],["-89.959580","30.047820"],["-89.959765","30.047740"],["-89.959950","30.047660"],["-89.960140","30.047570"],["-89.960220","30.047540"],["-89.960370","30.047470"],["-89.960520","30.047400"],["-89.960560","30.047390"],["-89.960670","30.047340"],["-89.960780","30.047290"],["-89.960950","30.047250"],["-89.961030","30.047230"],["-89.961090","30.047230"],["-89.961140","30.047240"],["-89.961200","30.047250"],["-89.961270","30.047280"],["-89.961310","30.047300"],["-89.961380","30.047340"],["-89.961430","30.047370"],["-89.961480","30.047410"],["-89.961550","30.047470"],["-89.961570","30.047480"],["-89.961600","30.047500"],["-89.961620","30.047510"],["-89.961650","30.047520"],["-89.961670","30.047520"],["-89.961700","30.047530"],["-89.961730","30.047520"],["-89.961740","30.047520"],["-89.961810","30.047510"],["-89.961980","30.047400"],["-89.962085","30.047330"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957975","30.042198"],["-89.957900","30.042105"],["-89.957825","30.042013"],["-89.957750","30.041920"],["-89.957675","30.041828"],["-89.957600","30.041735"],["-89.957525","30.041643"],["-89.957450","30.041550"],["-89.957330","30.041400"],["-89.957230","30.041290"],["-89.957210","30.041260"],["-89.957115","30.041145"],["-89.957020","30.041030"],["-89.956910","30.040898"],["-89.956800","30.040765"],["-89.956690","30.040633"],["-89.956580","30.040500"],["-89.956457","30.040350"],["-89.956335","30.040200"],["-89.956212","30.040050"],["-89.956090","30.039900"],["-89.955987","30.039778"],["-89.955885","30.039655"],["-89.955782","30.039533"],["-89.955680","30.039410"],["-89.955580","30.039290"],["-89.955480","30.039160"],["-89.955380","30.039030"],["-89.955431","30.038995"],["-89.955380","30.039030"],["-89.955300","30.038930"],["-89.955220","30.038830"],["-89.955319","30.038766"],["-89.955418","30.038703"],["-89.955516","30.038639"],["-89.955615","30.038575"],["-89.955714","30.038511"],["-89.955813","30.038448"],["-89.955911","30.038384"],["-89.956010","30.038320"],["-89.956163","30.038220"],["-89.956315","30.038120"],["-89.956468","30.038020"],["-89.956620","30.037920"],["-89.956798","30.037810"],["-89.956975","30.037700"],["-89.957153","30.037590"],["-89.957330","30.037480"],["-89.957488","30.037380"],["-89.957645","30.037280"],["-89.957803","30.037180"],["-89.957960","30.037080"],["-89.957965","30.037094"],["-89.957960","30.037080"],["-89.958050","30.037030"],["-89.958183","30.036945"],["-89.958315","30.036860"],["-89.958448","30.036775"],["-89.958580","30.036690"],["-89.958690","30.036620"],["-89.958845","30.036523"],["-89.959000","30.036425"],["-89.959155","30.036328"],["-89.959310","30.036230"],["-89.959440","30.036150"],["-89.959535","30.036090"],["-89.959630","30.036030"],["-89.959795","30.035920"],["-89.959960","30.035810"],["-89.959990","30.035800"],["-89.960130","30.035720"],["-89.960280","30.035640"],["-89.960430","30.035560"],["-89.960580","30.035480"],["-89.960730","30.035400"],["-89.960800","30.035360"],["-89.960890","30.035310"],["-89.961020","30.035230"],["-89.961200","30.035120"],["-89.961270","30.035070"],["-89.961308","30.035108"],["-89.961270","30.035070"],["-89.961350","30.035020"],["-89.961445","30.034950"],["-89.961540","30.034880"],["-89.961650","30.034815"],["-89.961760","30.034750"],["-89.961770","30.034750"],["-89.961920","30.034660"],["-89.962060","30.034570"],["-89.962200","30.034480"],["-89.962370","30.034370"],["-89.962530","30.034285"],["-89.962690","30.034200"],["-89.962730","30.034180"],["-89.962845","30.034125"],["-89.962960","30.034070"],["-89.963120","30.034000"],["-89.963240","30.033950"],["-89.963375","30.033900"],["-89.963510","30.033850"],["-89.963620","30.033815"],["-89.963730","30.033780"],["-89.963860","30.033740"],["-89.964065","30.033695"],["-89.964270","30.033650"],["-89.964450","30.033610"],["-89.964655","30.033570"],["-89.964860","30.033530"],["-89.965015","30.033500"],["-89.965170","30.033470"],["-89.965190","30.033540"],["-89.965140","30.033552"],["-89.965190","30.033540"],["-89.965240","30.033710"],["-89.965280","30.033870"],["-89.965330","30.033990"],["-89.965380","30.034120"],["-89.965420","30.034200"],["-89.965540","30.034160"],["-89.965500","30.034070"],["-89.965460","30.033980"],["-89.965390","30.033810"],["-89.965350","30.033625"],["-89.965310","30.033440"],["-89.965433","30.033418"],["-89.965555","30.033395"],["-89.965678","30.033373"],["-89.965800","30.033350"],["-89.965923","30.033328"],["-89.966045","30.033305"],["-89.966168","30.033283"],["-89.966290","30.033260"],["-89.966390","30.033240"],["-89.966503","30.033219"],["-89.966615","30.033198"],["-89.966728","30.033176"],["-89.966840","30.033155"],["-89.966953","30.033134"],["-89.967065","30.033113"],["-89.967178","30.033091"],["-89.967290","30.033070"],["-89.967475","30.033040"],["-89.967660","30.033010"],["-89.967780","30.032990"],["-89.967795","30.033065"],["-89.967780","30.032990"],["-89.967900","30.032970"],["-89.967960","30.032960"],["-89.968030","30.032950"],["-89.968120","30.032950"],["-89.968290","30.032940"],["-89.968440","30.032935"],["-89.968590","30.032930"],["-89.968740","30.032935"],["-89.968890","30.032940"],["-89.969005","30.032950"],["-89.969120","30.032960"],["-89.969290","30.032980"],["-89.969480","30.033000"],["-89.969690","30.033040"],["-89.969880","30.033080"],["-89.970042","30.033120"],["-89.970205","30.033160"],["-89.970367","30.033200"],["-89.970530","30.033240"],["-89.970670","30.033270"],["-89.970810","30.033300"],["-89.970900","30.033310"],["-89.971090","30.033320"],["-89.971250","30.033330"],["-89.971350","30.033340"],["-89.971500","30.033330"],["-89.971640","30.033330"],["-89.971710","30.033320"],["-89.971820","30.033310"],["-89.971830","30.033310"],["-89.972040","30.033280"],["-89.972230","30.033240"],["-89.972390","30.033190"],["-89.972415","30.033263"],["-89.972390","30.033190"],["-89.972400","30.033190"],["-89.972540","30.033140"],["-89.972580","30.033130"],["-89.972730","30.033080"],["-89.972850","30.033030"],["-89.972940","30.032980"],["-89.973060","30.032920"],["-89.973180","30.032860"],["-89.973365","30.032760"],["-89.973550","30.032660"],["-89.973685","30.032575"],["-89.973820","30.032490"],["-89.973933","30.032420"],["-89.974045","30.032350"],["-89.974158","30.032280"],["-89.974270","30.032210"],["-89.974365","30.032155"],["-89.974460","30.032100"],["-89.974555","30.032045"],["-89.974650","30.031990"],["-89.974745","30.031935"],["-89.974840","30.031880"],["-89.974935","30.031825"],["-89.975030","30.031770"],["-89.975125","30.031719"],["-89.975220","30.031668"],["-89.975315","30.031616"],["-89.975410","30.031565"],["-89.975505","30.031514"],["-89.975600","30.031463"],["-89.975695","30.031411"],["-89.975790","30.031360"],["-89.975890","30.031300"],["-89.975950","30.031270"],["-89.976000","30.031230"],["-89.975920","30.031120"],["-89.975845","30.031005"],["-89.975770","30.030890"],["-89.975695","30.030775"],["-89.975620","30.030660"],["-89.975537","30.030540"],["-89.975455","30.030420"],["-89.975372","30.030300"],["-89.975290","30.030180"],["-89.975220","30.030075"],["-89.975150","30.029970"],["-89.975070","30.029840"],["-89.974990","30.029730"],["-89.974920","30.029640"],["-89.974960","30.029613"],["-89.974838","30.029583"],["-89.974716","30.029553"],["-89.974624","30.029610"],["-89.974532","30.029667"],["-89.974440","30.029723"],["-89.974348","30.029780"],["-89.974256","30.029836"],["-89.974164","30.029893"],["-89.974073","30.029950"],["-89.973981","30.030006"],["-89.973889","30.030063"],["-89.973797","30.030119"],["-89.973705","30.030176"],["-89.973613","30.030233"],["-89.973521","30.030289"],["-89.973430","30.030346"],["-89.973338","30.030402"],["-89.973246","30.030459"],["-89.973154","30.030516"],["-89.973062","30.030572"],["-89.972970","30.030629"],["-89.972878","30.030685"],["-89.972786","30.030742"],["-89.972695","30.030799"],["-89.972603","30.030855"],["-89.972511","30.030912"],["-89.972419","30.030968"],["-89.972327","30.031025"],["-89.972235","30.031082"],["-89.972143","30.031138"],["-89.972052","30.031195"],["-89.971960","30.031251"],["-89.971868","30.031308"],["-89.971776","30.031365"],["-89.971889","30.031520"],["-89.972001","30.031676"],["-89.972114","30.031831"],["-89.972227","30.031987"],["-89.972193","30.032080"],["-89.972160","30.032174"],["-89.972160","30.032174"]]},{"type":"MultiPoint","coordinates":[["-89.968512","30.057779"],["-89.966607","30.058952"],["-89.964351","30.060362"],["-89.962065","30.061865"],["-89.959685","30.063503"],["-89.956112","30.066028"],["-89.953509","30.067955"],["-89.951896","30.066489"],["-89.950834","30.065398"],["-89.949129","30.066541"],["-89.947857","30.067520"],["-89.967611","30.050069"],["-89.970305","30.048446"],["-89.972310","30.047294"],["-89.976700","30.045060"],["-89.980166","30.042767"],["-89.983068","30.042017"],["-89.986878","30.040127"],["-89.993246","30.037047"],["-89.996592","30.035889"],["-89.999401","30.034649"],["-90.001760","30.033786"],["-90.003345","30.033185"],["-90.004816","30.032656"],["-90.006743","30.031936"],["-90.009685","30.030906"],["-90.012394","30.029969"],["-90.014255","30.029333"],["-90.016277","30.028719"],["-90.020801","30.027416"],["-90.023661","30.026566"],["-90.024266","30.025257"],["-90.023672","30.023602"],["-90.023153","30.022186"],["-90.022361","30.019997"],["-90.021836","30.018586"],["-90.021600","30.016292"],["-90.021412","30.014387"],["-90.021239","30.012418"],["-90.020993","30.010096"],["-90.020829","30.010331"],["-90.020957","30.012361"],["-90.021140","30.014271"],["-90.021389","30.016133"],["-90.021569","30.018240"],["-90.022090","30.019908"],["-90.022858","30.022017"],["-90.023584","30.023980"],["-90.024261","30.025901"],["-90.020798","30.026987"],["-90.018124","30.027527"],["-90.016250","30.028337"],["-90.014385","30.028895"],["-90.012532","30.029538"],["-90.008582","30.030856"],["-90.005065","30.032123"],["-90.003455","30.032737"],["-90.001488","30.033483"],["-89.996859","30.035264"],["-89.976665","30.044312"],["-89.972418","30.046743"],["-89.970328","30.047922"],["-89.968806","30.048771"],["-89.966877","30.049994"],["-89.965342","30.050898"],["-89.972415","30.033263"],["-89.968094","30.032694"],["-89.965605","30.033109"],["-89.961367","30.034540"],["-89.959163","30.035954"],["-89.957683","30.036851"],["-89.955169","30.038474"],["-89.958473","30.043282"],["-89.962650","30.048223"],["-89.967395","30.054034"],["-89.968632","30.055525"],["-89.969701","30.056883"],["-89.945660","30.069221"],["-89.944047","30.070538"],["-89.942262","30.071794"],["-89.940773","30.071972"],["-89.940506","30.069888"],["-89.940372","30.068109"],["-89.944969","30.056861"],["-89.948040","30.054936"],["-89.950632","30.053304"],["-89.952930","30.051854"],["-89.956532","30.049579"],["-89.959109","30.048110"],["-89.985444","30.040786"],["-89.987190","30.036296"],["-90.074818","29.954823"],["-90.077740","29.955981"],["-90.033834","30.005525"],["-89.968906","30.049249"],["-89.978722","30.044055"],["-89.987945","30.039013"],["-89.982921","30.041567"],["-89.979983","30.043452"],["-89.987120","30.036774"],["-90.033825","30.005795"],["-89.966111","30.051048"],["-89.959222","30.043676"],["-89.994600","30.032166"],["-89.996330","30.035385"],["-89.955431","30.038995"],["-89.957965","30.037094"],["-89.961308","30.035108"],["-89.965140","30.033552"],["-89.967795","30.033065"],["-89.974960","30.029613"],["-90.073489","29.964347"],["-89.946749","30.068330"],["-90.072395","29.963577"],["-90.071311","29.962708"],["-90.070659","29.959576"],["-90.072028","29.957991"],["-89.972160","30.032174"],["-89.965073","30.051187"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972600","30.032820"],["-89.972490","30.032880"],["-89.972420","30.032910"],["-89.972320","30.032950"],["-89.972220","30.032980"],["-89.972110","30.033020"],["-89.972030","30.033050"],["-89.971890","30.033080"],["-89.971790","30.033090"],["-89.971700","30.033100"],["-89.971520","30.033120"],["-89.971390","30.033130"],["-89.971260","30.033140"],["-89.971170","30.033140"],["-89.971070","30.033130"],["-89.970950","30.033120"],["-89.970790","30.033100"],["-89.970630","30.033070"],["-89.970450","30.033030"],["-89.970290","30.032990"],["-89.970120","30.032940"],["-89.969930","30.032900"],["-89.969735","30.032860"],["-89.969540","30.032820"],["-89.969370","30.032790"],["-89.969180","30.032770"],["-89.968970","30.032760"],["-89.968800","30.032750"],["-89.968680","30.032745"],["-89.968560","30.032740"],["-89.968340","30.032750"],["-89.968170","30.032750"],["-89.968100","30.032760"],["-89.968094","30.032694"],["-89.968100","30.032760"],["-89.968000","30.032760"],["-89.967870","30.032780"],["-89.967745","30.032795"],["-89.967620","30.032810"],["-89.967460","30.032840"],["-89.967300","30.032870"],["-89.967170","30.032900"],["-89.967040","30.032930"],["-89.966860","30.032960"],["-89.966650","30.033000"],["-89.966510","30.033030"],["-89.966310","30.033060"],["-89.966160","30.033090"],["-89.966010","30.033120"],["-89.965860","30.033150"],["-89.965745","30.033170"],["-89.965630","30.033190"],["-89.965605","30.033109"],["-89.965630","30.033190"],["-89.965440","30.033225"],["-89.965250","30.033260"],["-89.965130","30.033290"],["-89.965003","30.033315"],["-89.964875","30.033340"],["-89.964748","30.033365"],["-89.964620","30.033390"],["-89.964505","30.033410"],["-89.964390","30.033430"],["-89.964275","30.033450"],["-89.964160","30.033470"],["-89.963960","30.033520"],["-89.963800","30.033560"],["-89.963680","30.033580"],["-89.963540","30.033625"],["-89.963400","30.033670"],["-89.963250","30.033710"],["-89.963130","30.033760"],["-89.963100","30.033770"],["-89.963050","30.033790"],["-89.962920","30.033830"],["-89.962770","30.033880"],["-89.962710","30.033910"],["-89.962540","30.033990"],["-89.962370","30.034060"],["-89.962220","30.034130"],["-89.962160","30.034170"],["-89.962070","30.034220"],["-89.962030","30.034240"],["-89.961930","30.034295"],["-89.961830","30.034350"],["-89.961710","30.034420"],["-89.961590","30.034490"],["-89.961490","30.034560"],["-89.961420","30.034590"],["-89.961410","30.034590"],["-89.961367","30.034540"],["-89.961410","30.034590"],["-89.961270","30.034690"],["-89.961160","30.034755"],["-89.961050","30.034820"],["-89.960950","30.034885"],["-89.960850","30.034950"],["-89.960760","30.035010"],["-89.960670","30.035070"],["-89.960590","30.035120"],["-89.960425","30.035230"],["-89.960260","30.035340"],["-89.960240","30.035360"],["-89.960080","30.035470"],["-89.959940","30.035570"],["-89.959815","30.035655"],["-89.959690","30.035740"],["-89.959565","30.035823"],["-89.959440","30.035905"],["-89.959315","30.035988"],["-89.959190","30.036070"],["-89.959080","30.035970"],["-89.959140","30.035930"],["-89.959163","30.035954"],["-89.959140","30.035930"],["-89.959080","30.035970"],["-89.959190","30.036070"],["-89.959038","30.036168"],["-89.958885","30.036265"],["-89.958733","30.036363"],["-89.958580","30.036460"],["-89.958450","30.036540"],["-89.958308","30.036625"],["-89.958165","30.036710"],["-89.958023","30.036795"],["-89.957880","30.036880"],["-89.957770","30.036950"],["-89.957683","30.036851"],["-89.957790","30.036780"],["-89.957890","30.036900"],["-89.957755","30.036985"],["-89.957620","30.037070"],["-89.957485","30.037155"],["-89.957350","30.037240"],["-89.957215","30.037325"],["-89.957080","30.037410"],["-89.956945","30.037495"],["-89.956810","30.037580"],["-89.956655","30.037680"],["-89.956500","30.037780"],["-89.956340","30.037875"],["-89.956180","30.037970"],["-89.956025","30.038060"],["-89.955870","30.038150"],["-89.955775","30.038210"],["-89.955680","30.038270"],["-89.955620","30.038310"],["-89.955440","30.038420"],["-89.955290","30.038520"],["-89.955230","30.038440"],["-89.955169","30.038474"],["-89.955230","30.038440"],["-89.955290","30.038520"],["-89.955180","30.038590"],["-89.955070","30.038660"],["-89.954950","30.038720"],["-89.954830","30.038780"],["-89.954905","30.038875"],["-89.954980","30.038970"],["-89.955090","30.039110"],["-89.955160","30.039190"],["-89.955230","30.039270"],["-89.955340","30.039395"],["-89.955450","30.039520"],["-89.955470","30.039550"],["-89.955565","30.039663"],["-89.955660","30.039775"],["-89.955755","30.039888"],["-89.955850","30.040000"],["-89.955970","30.040150"],["-89.956036","30.040229"],["-89.956102","30.040308"],["-89.956169","30.040386"],["-89.956235","30.040465"],["-89.956301","30.040544"],["-89.956367","30.040623"],["-89.956434","30.040701"],["-89.956500","30.040780"],["-89.956567","30.040863"],["-89.956635","30.040945"],["-89.956702","30.041028"],["-89.956770","30.041110"],["-89.956900","30.041260"],["-89.956970","30.041350"],["-89.957020","30.041410"],["-89.957100","30.041500"],["-89.957170","30.041585"],["-89.957240","30.041670"],["-89.957345","30.041795"],["-89.957450","30.041920"],["-89.957500","30.041990"],["-89.957550","30.042050"],["-89.957560","30.042060"],["-89.957635","30.042150"],["-89.957710","30.042240"],["-89.957785","30.042330"],["-89.957860","30.042420"],["-89.957955","30.042533"],["-89.958050","30.042645"],["-89.958145","30.042758"],["-89.958240","30.042870"],["-89.958315","30.042963"],["-89.958390","30.043055"],["-89.958465","30.043148"],["-89.958540","30.043240"],["-89.958473","30.043282"],["-89.958540","30.043240"],["-89.958630","30.043350"],["-89.958760","30.043500"],["-89.958845","30.043600"],["-89.958930","30.043700"],["-89.958990","30.043770"],["-89.959060","30.043850"],["-89.959130","30.043930"],["-89.959210","30.044040"],["-89.959330","30.044180"],["-89.959400","30.044260"],["-89.959470","30.044340"],["-89.959565","30.044455"],["-89.959660","30.044570"],["-89.959765","30.044700"],["-89.959870","30.044830"],["-89.959930","30.044900"],["-89.959990","30.044970"],["-89.960120","30.045120"],["-89.960205","30.045230"],["-89.960290","30.045340"],["-89.960365","30.045430"],["-89.960440","30.045520"],["-89.960555","30.045665"],["-89.960670","30.045810"],["-89.960690","30.045830"],["-89.960810","30.045980"],["-89.960910","30.046110"],["-89.960950","30.046150"],["-89.960960","30.046170"],["-89.960970","30.046180"],["-89.961030","30.046260"],["-89.961090","30.046330"],["-89.961100","30.046340"],["-89.961210","30.046480"],["-89.961305","30.046605"],["-89.961400","30.046730"],["-89.961530","30.046875"],["-89.961660","30.047020"],["-89.961765","30.047145"],["-89.961870","30.047270"],["-89.961980","30.047400"],["-89.962060","30.047500"],["-89.962140","30.047600"],["-89.962230","30.047690"],["-89.962325","30.047800"],["-89.962420","30.047910"],["-89.962490","30.047990"],["-89.962580","30.048100"],["-89.962630","30.048160"],["-89.962670","30.048210"],["-89.962650","30.048223"],["-89.962670","30.048210"],["-89.962720","30.048270"],["-89.962820","30.048400"],["-89.962885","30.048480"],["-89.962950","30.048560"],["-89.963015","30.048640"],["-89.963080","30.048720"],["-89.963204","30.048875"],["-89.963329","30.049030"],["-89.963453","30.049185"],["-89.963577","30.049340"],["-89.963702","30.049495"],["-89.963826","30.049650"],["-89.963951","30.049805"],["-89.964075","30.049960"],["-89.964199","30.050115"],["-89.964324","30.050270"],["-89.964448","30.050425"],["-89.964572","30.050580"],["-89.964697","30.050735"],["-89.964821","30.050890"],["-89.964946","30.051045"],["-89.965073","30.051187"],["-89.965070","30.051190"],["-89.965140","30.051265"],["-89.965210","30.051340"],["-89.965320","30.051480"],["-89.965450","30.051395"],["-89.965580","30.051310"],["-89.965700","30.051230"],["-89.965820","30.051150"],["-89.965940","30.051070"],["-89.966060","30.050990"],["-89.966111","30.051048"],["-89.966060","30.050990"],["-89.966225","30.050885"],["-89.966390","30.050780"],["-89.966555","30.050675"],["-89.966720","30.050570"],["-89.966890","30.050450"],["-89.966960","30.050410"],["-89.967040","30.050360"],["-89.967170","30.050270"],["-89.967270","30.050208"],["-89.967370","30.050145"],["-89.967470","30.050083"],["-89.967570","30.050020"],["-89.967611","30.050069"],["-89.967570","30.050020"],["-89.967650","30.049970"],["-89.967818","30.049863"],["-89.967985","30.049755"],["-89.968153","30.049648"],["-89.968320","30.049540"],["-89.968455","30.049453"],["-89.968590","30.049365"],["-89.968725","30.049278"],["-89.968860","30.049190"],["-89.968906","30.049249"],["-89.968860","30.049190"],["-89.968940","30.049140"],["-89.969115","30.049035"],["-89.969295","30.048939"],["-89.969441","30.048857"],["-89.969586","30.048774"],["-89.969732","30.048692"],["-89.969877","30.048609"],["-89.970023","30.048527"],["-89.970169","30.048445"],["-89.970305","30.048446"],["-89.970404","30.048299"],["-89.970513","30.048237"],["-89.970621","30.048176"],["-89.970730","30.048115"],["-89.970839","30.048053"],["-89.970947","30.047992"],["-89.971056","30.047931"],["-89.971165","30.047869"],["-89.971273","30.047808"],["-89.971382","30.047746"],["-89.971490","30.047685"],["-89.971599","30.047624"],["-89.971708","30.047562"],["-89.971816","30.047501"],["-89.971925","30.047439"],["-89.972034","30.047378"],["-89.972142","30.047317"],["-89.972310","30.047294"],["-89.972419","30.047149"],["-89.972542","30.047083"],["-89.972666","30.047017"],["-89.972789","30.046952"],["-89.972913","30.046886"],["-89.973036","30.046820"],["-89.973160","30.046754"],["-89.973283","30.046688"],["-89.973406","30.046623"],["-89.973530","30.046557"],["-89.973653","30.046491"],["-89.973777","30.046425"],["-89.973900","30.046360"],["-89.974024","30.046294"],["-89.974147","30.046228"],["-89.974271","30.046162"],["-89.974394","30.046096"],["-89.974567","30.046007"],["-89.974740","30.045918"],["-89.974913","30.045828"],["-89.975086","30.045739"],["-89.975259","30.045649"],["-89.975432","30.045560"],["-89.975605","30.045471"],["-89.975778","30.045381"],["-89.975962","30.045295"],["-89.976085","30.045241"],["-89.976208","30.045187"],["-89.976330","30.045133"],["-89.976453","30.045079"],["-89.976577","30.045069"],["-89.976700","30.045060"],["-89.976786","30.044958"],["-89.976976","30.044863"],["-89.977167","30.044767"],["-89.977357","30.044672"],["-89.977548","30.044577"],["-89.977738","30.044482"],["-89.977929","30.044386"],["-89.978119","30.044291"],["-89.978310","30.044196"],["-89.978479","30.044105"],["-89.978648","30.044015"],["-89.978722","30.044055"],["-89.978809","30.043938"],["-89.978938","30.043875"],["-89.979067","30.043811"],["-89.979196","30.043748"],["-89.979325","30.043684"],["-89.979455","30.043621"],["-89.979584","30.043557"],["-89.979713","30.043494"],["-89.979842","30.043430"],["-89.979983","30.043452"],["-89.979983","30.043452"],["-89.980041","30.043351"],["-89.980149","30.043306"],["-89.980257","30.043261"],["-89.980366","30.043216"],["-89.980474","30.043171"],["-89.980635","30.043093"],["-89.980736","30.043042"],["-89.980837","30.042991"],["-89.980939","30.042941"],["-89.981040","30.042890"],["-89.981218","30.042805"],["-89.981395","30.042720"],["-89.981573","30.042635"],["-89.981750","30.042550"],["-89.981920","30.042470"],["-89.982090","30.042390"],["-89.982260","30.042310"],["-89.982430","30.042230"],["-89.982580","30.042160"],["-89.982730","30.042090"],["-89.982880","30.042020"],["-89.983030","30.041950"],["-89.983068","30.042017"],["-89.983030","30.041950"],["-89.983120","30.041910"],["-89.983225","30.041855"],["-89.983330","30.041800"],["-89.983460","30.041730"],["-89.983620","30.041630"],["-89.983780","30.041530"],["-89.983875","30.041475"],["-89.983970","30.041420"],["-89.984090","30.041340"],["-89.984110","30.041340"],["-89.984260","30.041250"],["-89.984270","30.041250"],["-89.984450","30.041160"],["-89.984580","30.041100"],["-89.984754","30.041024"],["-89.984928","30.040949"],["-89.985101","30.040873"],["-89.985275","30.040798"],["-89.985444","30.040786"],["-89.985537","30.040708"],["-89.985629","30.040631"],["-89.985763","30.040566"],["-89.985898","30.040501"],["-89.986032","30.040436"],["-89.986166","30.040371"],["-89.986300","30.040306"],["-89.986434","30.040240"],["-89.986568","30.040175"],["-89.986702","30.040110"],["-89.986878","30.040127"],["-89.986983","30.040028"],["-89.987088","30.039929"],["-89.987257","30.039854"],["-89.987425","30.039778"],["-89.987593","30.039703"],["-89.987762","30.039628"],["-89.987930","30.039552"],["-89.988098","30.039477"],["-89.988267","30.039401"],["-89.988435","30.039326"],["-89.988351","30.039213"],["-89.988266","30.039100"],["-89.988218","30.039009"],["-89.988170","30.038918"],["-89.988121","30.038826"],["-89.988073","30.038735"],["-89.988023","30.038597"],["-89.987973","30.038459"],["-89.987934","30.038284"],["-89.987896","30.038109"],["-89.987858","30.037934"],["-89.987820","30.037759"],["-89.987770","30.037619"],["-89.987720","30.037479"],["-89.987671","30.037339"],["-89.987621","30.037199"],["-89.987562","30.037087"],["-89.987502","30.036975"],["-89.987442","30.036863"],["-89.987383","30.036751"],["-89.987297","30.036629"],["-89.987211","30.036507"],["-89.987200","30.036402"],["-89.987190","30.036296"],["-89.987103","30.036194"],["-89.987015","30.036092"],["-89.986924","30.035945"],["-89.986834","30.035798"],["-89.986743","30.035651"],["-89.986652","30.035504"],["-89.986577","30.035373"],["-89.986502","30.035242"],["-89.986427","30.035111"],["-89.986352","30.034979"],["-89.986276","30.034848"],["-89.986187","30.034691"],["-89.986098","30.034535"],["-89.986009","30.034378"],["-89.985920","30.034221"],["-89.985831","30.034065"],["-89.985741","30.033908"],["-89.985652","30.033751"],["-89.985563","30.033594"],["-89.985671","30.033549"],["-89.985778","30.033505"],["-89.985886","30.033460"],["-89.985994","30.033415"],["-89.986101","30.033370"],["-89.986209","30.033325"],["-89.986316","30.033280"],["-89.986424","30.033235"],["-89.986532","30.033191"],["-89.986639","30.033146"],["-89.986747","30.033101"],["-89.986855","30.033056"],["-89.986962","30.033011"],["-89.987070","30.032966"],["-89.987178","30.032921"],["-89.987285","30.032877"],["-89.987393","30.032832"],["-89.987500","30.032787"],["-89.987608","30.032742"],["-89.987716","30.032697"],["-89.987823","30.032652"],["-89.987931","30.032607"],["-89.988039","30.032563"],["-89.988146","30.032518"],["-89.988254","30.032473"],["-89.988362","30.032428"],["-89.988469","30.032383"],["-89.988577","30.032338"],["-89.988685","30.032293"],["-89.988792","30.032249"],["-89.988900","30.032204"],["-89.989007","30.032159"],["-89.989120","30.032115"],["-89.989233","30.032072"],["-89.989346","30.032029"],["-89.989459","30.031985"],["-89.989572","30.031942"],["-89.989685","30.031898"],["-89.989798","30.031855"],["-89.989911","30.031811"],["-89.990068","30.031764"],["-89.990226","30.031717"],["-89.990384","30.031670"],["-89.990541","30.031623"],["-89.990699","30.031576"],["-89.990856","30.031529"],["-89.991014","30.031482"],["-89.991171","30.031435"],["-89.991371","30.031379"],["-89.991571","30.031324"],["-89.991771","30.031268"],["-89.991971","30.031212"],["-89.992095","30.031183"],["-89.992219","30.031153"],["-89.992343","30.031123"],["-89.992467","30.031094"],["-89.992591","30.031064"],["-89.992715","30.031035"],["-89.992839","30.031005"],["-89.992963","30.030975"],["-89.993095","30.030945"],["-89.993226","30.030915"],["-89.993398","30.030952"],["-89.993569","30.030989"],["-89.993642","30.031065"],["-89.993714","30.031140"],["-89.993787","30.031216"],["-89.993859","30.031291"],["-89.994009","30.031273"],["-89.994159","30.031254"],["-89.994245","30.031240"],["-89.994298","30.031336"],["-89.994351","30.031433"],["-89.994404","30.031529"],["-89.994457","30.031626"],["-89.994510","30.031722"],["-89.994563","30.031818"],["-89.994616","30.031915"],["-89.994669","30.032011"],["-89.994600","30.032166"],["-89.994705","30.032296"],["-89.994810","30.032426"],["-89.994916","30.032555"],["-89.995021","30.032685"],["-89.995068","30.032774"],["-89.995115","30.032862"],["-89.995162","30.032951"],["-89.995209","30.033040"],["-89.995256","30.033129"],["-89.995303","30.033218"],["-89.995350","30.033306"],["-89.995397","30.033395"],["-89.995444","30.033484"],["-89.995491","30.033573"],["-89.995538","30.033662"],["-89.995585","30.033751"],["-89.995631","30.033839"],["-89.995678","30.033928"],["-89.995725","30.034017"],["-89.995772","30.034106"],["-89.995819","30.034195"],["-89.995866","30.034283"],["-89.995913","30.034372"],["-89.995960","30.034461"],["-89.996007","30.034550"],["-89.996054","30.034639"],["-89.996101","30.034728"],["-89.996148","30.034816"],["-89.996195","30.034905"],["-89.996242","30.034994"],["-89.996289","30.035083"],["-89.996336","30.035172"],["-89.996333","30.035278"],["-89.996330","30.035385"],["-89.996435","30.035459"],["-89.996539","30.035534"],["-89.996434","30.035578"],["-89.996330","30.035622"],["-89.996225","30.035666"],["-89.996120","30.035710"],["-89.996015","30.035754"],["-89.995910","30.035799"],["-89.995805","30.035843"],["-89.995700","30.035887"],["-89.995595","30.035931"],["-89.995490","30.035975"],["-89.995385","30.036019"],["-89.995280","30.036063"],["-89.995175","30.036107"],["-89.995070","30.036152"],["-89.994965","30.036196"],["-89.994860","30.036240"],["-89.994755","30.036284"],["-89.994650","30.036328"],["-89.994546","30.036372"],["-89.994441","30.036416"],["-89.994336","30.036460"],["-89.994231","30.036504"],["-89.994126","30.036549"],["-89.994021","30.036593"],["-89.993916","30.036637"],["-89.993811","30.036681"],["-89.993706","30.036725"],["-89.993601","30.036769"],["-89.993496","30.036813"],["-89.993391","30.036857"],["-89.993286","30.036902"],["-89.993181","30.036946"],["-89.993246","30.037047"],["-89.993364","30.037085"],["-89.993482","30.037122"],["-89.993657","30.037048"],["-89.993832","30.036974"],["-89.994007","30.036899"],["-89.994182","30.036825"],["-89.994357","30.036751"],["-89.994532","30.036676"],["-89.994707","30.036602"],["-89.994882","30.036528"],["-89.995057","30.036453"],["-89.995232","30.036379"],["-89.995407","30.036305"],["-89.995582","30.036230"],["-89.995757","30.036156"],["-89.995932","30.036082"],["-89.996107","30.036008"],["-89.996282","30.035933"],["-89.996437","30.035911"],["-89.996592","30.035889"],["-89.996737","30.035781"],["-89.996883","30.035673"],["-89.997001","30.035636"],["-89.997119","30.035599"],["-89.997226","30.035546"],["-89.997333","30.035493"],["-89.997441","30.035440"],["-89.997548","30.035388"],["-89.997655","30.035335"],["-89.997762","30.035282"],["-89.997870","30.035229"],["-89.997977","30.035176"],["-89.998084","30.035123"],["-89.998192","30.035071"],["-89.998299","30.035018"],["-89.998406","30.034965"],["-89.998514","30.034912"],["-89.998621","30.034859"],["-89.998728","30.034806"],["-89.998835","30.034754"],["-89.998977","30.034728"],["-89.999118","30.034701"],["-89.999260","30.034675"],["-89.999401","30.034649"],["-89.999521","30.034571"],["-89.999640","30.034494"],["-89.999810","30.034428"],["-89.999980","30.034362"],["-90.000150","30.034296"],["-90.000320","30.034230"],["-90.000500","30.034170"],["-90.000625","30.034120"],["-90.000750","30.034070"],["-90.000900","30.034010"],["-90.001050","30.033960"],["-90.001205","30.033905"],["-90.001360","30.033850"],["-90.001520","30.033790"],["-90.001650","30.033740"],["-90.001780","30.033690"],["-90.001820","30.033760"],["-90.001760","30.033786"],["-90.001820","30.033760"],["-90.001780","30.033690"],["-90.001890","30.033650"],["-90.002000","30.033610"],["-90.002125","30.033565"],["-90.002250","30.033520"],["-90.002440","30.033445"],["-90.002630","30.033370"],["-90.002800","30.033308"],["-90.002970","30.033245"],["-90.003140","30.033183"],["-90.003310","30.033120"],["-90.003345","30.033185"],["-90.003310","30.033120"],["-90.003390","30.033090"],["-90.003578","30.033023"],["-90.003765","30.032955"],["-90.003953","30.032888"],["-90.004140","30.032820"],["-90.004275","30.032768"],["-90.004410","30.032715"],["-90.004545","30.032663"],["-90.004680","30.032610"],["-90.004780","30.032570"],["-90.004816","30.032656"],["-90.004780","30.032570"],["-90.004870","30.032540"],["-90.004980","30.032500"],["-90.005090","30.032460"],["-90.005198","30.032423"],["-90.005305","30.032385"],["-90.005413","30.032348"],["-90.005520","30.032310"],["-90.005625","30.032270"],["-90.005730","30.032230"],["-90.005835","30.032190"],["-90.005940","30.032150"],["-90.006103","30.032085"],["-90.006265","30.032020"],["-90.006428","30.031955"],["-90.006590","30.031890"],["-90.006770","30.031820"],["-90.006820","30.031910"],["-90.006743","30.031936"],["-90.006820","30.031910"],["-90.006770","30.031820"],["-90.006965","30.031745"],["-90.007160","30.031670"],["-90.007273","30.031630"],["-90.007385","30.031590"],["-90.007498","30.031550"],["-90.007610","30.031510"],["-90.007716","30.031474"],["-90.007823","30.031438"],["-90.007929","30.031401"],["-90.008035","30.031365"],["-90.008141","30.031329"],["-90.008248","30.031293"],["-90.008354","30.031256"],["-90.008460","30.031220"],["-90.008603","30.031173"],["-90.008745","30.031125"],["-90.008888","30.031078"],["-90.009030","30.031030"],["-90.009155","30.030990"],["-90.009280","30.030950"],["-90.009465","30.030890"],["-90.009650","30.030830"],["-90.009685","30.030906"],["-90.009650","30.030830"],["-90.009730","30.030800"],["-90.009850","30.030760"],["-90.009970","30.030720"],["-90.010090","30.030680"],["-90.010210","30.030640"],["-90.010320","30.030603"],["-90.010430","30.030565"],["-90.010540","30.030528"],["-90.010650","30.030490"],["-90.010760","30.030453"],["-90.010870","30.030415"],["-90.010980","30.030378"],["-90.011090","30.030340"],["-90.011180","30.030310"],["-90.011329","30.030260"],["-90.011478","30.030210"],["-90.011626","30.030160"],["-90.011775","30.030110"],["-90.011924","30.030060"],["-90.012073","30.030010"],["-90.012221","30.029960"],["-90.012370","30.029910"],["-90.012394","30.029969"],["-90.012370","30.029910"],["-90.012550","30.029850"],["-90.012728","30.029790"],["-90.012905","30.029730"],["-90.013083","30.029670"],["-90.013260","30.029610"],["-90.013383","30.029570"],["-90.013505","30.029530"],["-90.013628","30.029490"],["-90.013750","30.029450"],["-90.013873","30.029410"],["-90.013995","30.029370"],["-90.014118","30.029330"],["-90.014240","30.029290"],["-90.014255","30.029333"],["-90.014240","30.029290"],["-90.014400","30.029240"],["-90.014520","30.029203"],["-90.014640","30.029165"],["-90.014760","30.029128"],["-90.014880","30.029090"],["-90.014985","30.029056"],["-90.015090","30.029023"],["-90.015195","30.028989"],["-90.015300","30.028955"],["-90.015405","30.028921"],["-90.015510","30.028888"],["-90.015615","30.028854"],["-90.015720","30.028820"],["-90.015855","30.028783"],["-90.015990","30.028745"],["-90.016125","30.028708"],["-90.016260","30.028670"],["-90.016277","30.028719"],["-90.016260","30.028670"],["-90.016360","30.028640"],["-90.016540","30.028588"],["-90.016720","30.028535"],["-90.016900","30.028483"],["-90.017080","30.028430"],["-90.017200","30.028400"],["-90.017320","30.028370"],["-90.017485","30.028328"],["-90.017650","30.028285"],["-90.017815","30.028243"],["-90.017980","30.028200"],["-90.018150","30.028150"],["-90.018320","30.028100"],["-90.018490","30.028045"],["-90.018660","30.027990"],["-90.018771","30.027955"],["-90.018883","30.027920"],["-90.018994","30.027885"],["-90.019105","30.027850"],["-90.019216","30.027815"],["-90.019328","30.027780"],["-90.019439","30.027745"],["-90.019550","30.027710"],["-90.019748","30.027653"],["-90.019945","30.027595"],["-90.020143","30.027538"],["-90.020340","30.027480"],["-90.020448","30.027445"],["-90.020555","30.027410"],["-90.020663","30.027375"],["-90.020800","30.027330"],["-90.020801","30.027416"],["-90.020800","30.027330"],["-90.020948","30.027288"],["-90.021095","30.027245"],["-90.021243","30.027203"],["-90.021390","30.027160"],["-90.021513","30.027121"],["-90.021635","30.027083"],["-90.021758","30.027044"],["-90.021880","30.027005"],["-90.022003","30.026966"],["-90.022125","30.026928"],["-90.022248","30.026889"],["-90.022370","30.026850"],["-90.022503","30.026813"],["-90.022635","30.026775"],["-90.022768","30.026738"],["-90.022900","30.026700"],["-90.023083","30.026648"],["-90.023265","30.026595"],["-90.023448","30.026543"],["-90.023630","30.026490"],["-90.023661","30.026566"],["-90.023630","30.026490"],["-90.023720","30.026460"],["-90.023860","30.026425"],["-90.024000","30.026390"],["-90.024190","30.026345"],["-90.024380","30.026300"],["-90.024470","30.026240"],["-90.024560","30.026220"],["-90.024510","30.026100"],["-90.024460","30.025970"],["-90.024420","30.025860"],["-90.024380","30.025745"],["-90.024340","30.025630"],["-90.024275","30.025450"],["-90.024237","30.025340"],["-90.024200","30.025230"],["-90.024266","30.025257"],["-90.024200","30.025230"],["-90.024152","30.025103"],["-90.024105","30.024975"],["-90.024057","30.024848"],["-90.024010","30.024720"],["-90.023975","30.024624"],["-90.023940","30.024528"],["-90.023905","30.024431"],["-90.023870","30.024335"],["-90.023835","30.024239"],["-90.023800","30.024143"],["-90.023765","30.024046"],["-90.023730","30.023950"],["-90.023670","30.023785"],["-90.023610","30.023620"],["-90.023672","30.023602"],["-90.023610","30.023620"],["-90.023545","30.023448"],["-90.023480","30.023275"],["-90.023415","30.023103"],["-90.023350","30.022930"],["-90.023300","30.022795"],["-90.023250","30.022660"],["-90.023207","30.022548"],["-90.023165","30.022435"],["-90.023122","30.022323"],["-90.023080","30.022210"],["-90.023153","30.022186"],["-90.023080","30.022210"],["-90.023030","30.022070"],["-90.022994","30.021968"],["-90.022957","30.021865"],["-90.022921","30.021763"],["-90.022885","30.021660"],["-90.022849","30.021558"],["-90.022812","30.021455"],["-90.022776","30.021353"],["-90.022740","30.021250"],["-90.022682","30.021096"],["-90.022625","30.020943"],["-90.022567","30.020789"],["-90.022510","30.020635"],["-90.022452","30.020481"],["-90.022395","30.020328"],["-90.022337","30.020174"],["-90.022280","30.020020"],["-90.022361","30.019997"],["-90.022280","30.020020"],["-90.022250","30.019930"],["-90.022192","30.019764"],["-90.022135","30.019598"],["-90.022077","30.019431"],["-90.022020","30.019265"],["-90.021962","30.019099"],["-90.021905","30.018933"],["-90.021847","30.018766"],["-90.021790","30.018600"],["-90.021836","30.018586"],["-90.021790","30.018600"],["-90.021740","30.018470"],["-90.021720","30.018380"],["-90.021710","30.018250"],["-90.021700","30.018120"],["-90.021690","30.017990"],["-90.021682","30.017855"],["-90.021675","30.017750"],["-90.021667","30.017645"],["-90.021660","30.017540"],["-90.021645","30.017380"],["-90.021630","30.017220"],["-90.021615","30.017060"],["-90.021600","30.016900"],["-90.021585","30.016750"],["-90.021570","30.016600"],["-90.021555","30.016450"],["-90.021540","30.016300"],["-90.021600","30.016292"],["-90.021540","30.016300"],["-90.021530","30.016220"],["-90.021515","30.016070"],["-90.021500","30.015920"],["-90.021485","30.015770"],["-90.021470","30.015620"],["-90.021455","30.015458"],["-90.021440","30.015295"],["-90.021425","30.015133"],["-90.021410","30.014970"],["-90.021390","30.014785"],["-90.021370","30.014600"],["-90.021360","30.014495"],["-90.021350","30.014390"],["-90.021412","30.014387"],["-90.021350","30.014390"],["-90.021350","30.014320"],["-90.021335","30.014160"],["-90.021320","30.014000"],["-90.021305","30.013840"],["-90.021290","30.013680"],["-90.021272","30.013518"],["-90.021255","30.013355"],["-90.021237","30.013193"],["-90.021220","30.013030"],["-90.021205","30.012875"],["-90.021190","30.012720"],["-90.021175","30.012565"],["-90.021160","30.012410"],["-90.021239","30.012418"],["-90.021160","30.012410"],["-90.021145","30.012253"],["-90.021130","30.012095"],["-90.021115","30.011938"],["-90.021100","30.011780"],["-90.021085","30.011610"],["-90.021070","30.011440"],["-90.021055","30.011270"],["-90.021040","30.011100"],["-90.021030","30.011020"],["-90.021017","30.010880"],["-90.021005","30.010740"],["-90.020992","30.010600"],["-90.020980","30.010460"],["-90.020960","30.010280"],["-90.020940","30.010100"],["-90.020993","30.010096"],["-90.020940","30.010100"],["-90.020940","30.010020"],["-90.020920","30.009890"],["-90.021078","30.009848"],["-90.021235","30.009805"],["-90.021393","30.009763"],["-90.021550","30.009720"],["-90.021750","30.009675"],["-90.021950","30.009630"],["-90.022150","30.009580"],["-90.022350","30.009530"],["-90.022519","30.009489"],["-90.022688","30.009448"],["-90.022856","30.009406"],["-90.023025","30.009365"],["-90.023194","30.009324"],["-90.023363","30.009283"],["-90.023531","30.009241"],["-90.023700","30.009200"],["-90.023830","30.009170"],["-90.023910","30.009150"],["-90.023920","30.009150"],["-90.024030","30.009120"],["-90.024150","30.009090"],["-90.024250","30.009070"],["-90.024310","30.009060"],["-90.024450","30.009020"],["-90.024580","30.008990"],["-90.024730","30.008953"],["-90.024880","30.008915"],["-90.025030","30.008878"],["-90.025180","30.008840"],["-90.025330","30.008803"],["-90.025480","30.008765"],["-90.025630","30.008728"],["-90.025780","30.008690"],["-90.025955","30.008648"],["-90.026130","30.008605"],["-90.026305","30.008563"],["-90.026480","30.008520"],["-90.026598","30.008493"],["-90.026715","30.008465"],["-90.026833","30.008438"],["-90.026950","30.008410"],["-90.027150","30.008365"],["-90.027350","30.008320"],["-90.027498","30.008283"],["-90.027645","30.008245"],["-90.027793","30.008208"],["-90.027940","30.008170"],["-90.028090","30.008138"],["-90.028240","30.008105"],["-90.028390","30.008073"],["-90.028540","30.008040"],["-90.028663","30.008009"],["-90.028785","30.007978"],["-90.028908","30.007946"],["-90.029030","30.007915"],["-90.029153","30.007884"],["-90.029275","30.007853"],["-90.029398","30.007821"],["-90.029520","30.007790"],["-90.029650","30.007760"],["-90.029780","30.007730"],["-90.029930","30.007690"],["-90.030110","30.007640"],["-90.030160","30.007630"],["-90.030268","30.007601"],["-90.030375","30.007573"],["-90.030483","30.007544"],["-90.030590","30.007515"],["-90.030698","30.007486"],["-90.030805","30.007458"],["-90.030913","30.007429"],["-90.031020","30.007400"],["-90.031180","30.007353"],["-90.031340","30.007305"],["-90.031500","30.007258"],["-90.031660","30.007210"],["-90.031700","30.007190"],["-90.031820","30.007150"],["-90.031940","30.007110"],["-90.032105","30.007045"],["-90.032270","30.006980"],["-90.032340","30.006960"],["-90.032510","30.006893"],["-90.032680","30.006825"],["-90.032850","30.006758"],["-90.033020","30.006690"],["-90.033180","30.006635"],["-90.033340","30.006580"],["-90.033440","30.006540"],["-90.033580","30.006490"],["-90.033725","30.006433"],["-90.033870","30.006375"],["-90.034015","30.006318"],["-90.034160","30.006260"],["-90.034100","30.006120"],["-90.034020","30.005970"],["-90.033960","30.005845"],["-90.033900","30.005720"],["-90.033870","30.005670"],["-90.033800","30.005540"],["-90.033834","30.005525"],["-90.033800","30.005540"],["-90.033740","30.005410"],["-90.033660","30.005250"],["-90.033580","30.005080"],["-90.033570","30.005070"],["-90.033683","30.005020"],["-90.033795","30.004970"],["-90.033908","30.004920"],["-90.034020","30.004870"],["-90.034215","30.004785"],["-90.034410","30.004700"],["-90.034470","30.004670"],["-90.034573","30.004618"],["-90.034675","30.004565"],["-90.034778","30.004513"],["-90.034880","30.004460"],["-90.035045","30.004380"],["-90.035210","30.004300"],["-90.035280","30.004260"],["-90.035380","30.004215"],["-90.035480","30.004170"],["-90.035650","30.004080"],["-90.035750","30.004030"],["-90.035905","30.003955"],["-90.036060","30.003880"],["-90.036160","30.003830"],["-90.036270","30.003780"],["-90.036420","30.003700"],["-90.036470","30.003680"],["-90.036650","30.003600"],["-90.036665","30.003475"],["-90.036680","30.003350"],["-90.036700","30.003230"],["-90.036710","30.003170"],["-90.036740","30.003110"],["-90.036790","30.003060"],["-90.036820","30.003030"],["-90.036850","30.002990"],["-90.036950","30.002920"],["-90.037030","30.002870"],["-90.037110","30.002810"],["-90.037220","30.002745"],["-90.037330","30.002680"],["-90.037450","30.002615"],["-90.037570","30.002550"],["-90.037620","30.002520"],["-90.037805","30.002420"],["-90.037990","30.002320"],["-90.038130","30.002240"],["-90.038150","30.002230"],["-90.038280","30.002160"],["-90.038370","30.002100"],["-90.038465","30.002050"],["-90.038560","30.002000"],["-90.038660","30.001940"],["-90.038760","30.001880"],["-90.038870","30.001825"],["-90.038980","30.001770"],["-90.039050","30.001730"],["-90.039160","30.001660"],["-90.039240","30.001620"],["-90.039290","30.001580"],["-90.039300","30.001570"],["-90.039340","30.001490"],["-90.039525","30.001390"],["-90.039710","30.001290"],["-90.039830","30.001220"],["-90.039925","30.001165"],["-90.040020","30.001110"],["-90.040115","30.001055"],["-90.040210","30.001000"],["-90.040340","30.000910"],["-90.040490","30.000820"],["-90.040560","30.000780"],["-90.040665","30.000715"],["-90.040770","30.000650"],["-90.040860","30.000590"],["-90.040950","30.000530"],["-90.041060","30.000450"],["-90.041230","30.000340"],["-90.041270","30.000310"],["-90.041370","30.000250"],["-90.041460","30.000180"],["-90.041550","30.000115"],["-90.041640","30.000050"],["-90.041700","30.000010"],["-90.041730","29.999990"],["-90.041830","29.999910"],["-90.041925","29.999840"],["-90.042020","29.999770"],["-90.042120","29.999700"],["-90.042240","29.999610"],["-90.042310","29.999550"],["-90.042395","29.999480"],["-90.042480","29.999410"],["-90.042530","29.999370"],["-90.042600","29.999320"],["-90.042685","29.999250"],["-90.042770","29.999180"],["-90.042860","29.999110"],["-90.042950","29.999040"],["-90.043040","29.998960"],["-90.043160","29.998860"],["-90.043240","29.998790"],["-90.043330","29.998720"],["-90.043410","29.998650"],["-90.043490","29.998580"],["-90.043580","29.998500"],["-90.043670","29.998420"],["-90.043820","29.998280"],["-90.043840","29.998260"],["-90.043940","29.998170"],["-90.044025","29.998090"],["-90.044110","29.998010"],["-90.044190","29.997930"],["-90.044230","29.997890"],["-90.044280","29.997850"],["-90.044360","29.997770"],["-90.044440","29.997690"],["-90.044530","29.997600"],["-90.044610","29.997520"],["-90.044690","29.997440"],["-90.044770","29.997360"],["-90.044870","29.997260"],["-90.044943","29.997180"],["-90.045015","29.997100"],["-90.045088","29.997020"],["-90.045160","29.996940"],["-90.045235","29.996860"],["-90.045310","29.996780"],["-90.045385","29.996700"],["-90.045460","29.996620"],["-90.045540","29.996535"],["-90.045620","29.996450"],["-90.045750","29.996320"],["-90.045780","29.996280"],["-90.045910","29.996140"],["-90.045960","29.996080"],["-90.046040","29.996000"],["-90.046150","29.995870"],["-90.046180","29.995840"],["-90.046250","29.995760"],["-90.046320","29.995680"],["-90.046370","29.995620"],["-90.046470","29.995508"],["-90.046570","29.995395"],["-90.046670","29.995283"],["-90.046770","29.995170"],["-90.046850","29.995080"],["-90.046930","29.994990"],["-90.047030","29.994878"],["-90.047130","29.994765"],["-90.047230","29.994653"],["-90.047330","29.994540"],["-90.047400","29.994465"],["-90.047470","29.994390"],["-90.047568","29.994280"],["-90.047665","29.994170"],["-90.047763","29.994060"],["-90.047860","29.993950"],["-90.047940","29.993850"],["-90.048015","29.993770"],["-90.048090","29.993690"],["-90.048165","29.993605"],["-90.048240","29.993520"],["-90.048343","29.993405"],["-90.048445","29.993290"],["-90.048548","29.993175"],["-90.048650","29.993060"],["-90.048730","29.992980"],["-90.048810","29.992900"],["-90.048880","29.992810"],["-90.048950","29.992710"],["-90.049080","29.992560"],["-90.049120","29.992520"],["-90.049195","29.992438"],["-90.049270","29.992355"],["-90.049345","29.992273"],["-90.049420","29.992190"],["-90.049510","29.992070"],["-90.049540","29.992040"],["-90.049638","29.991930"],["-90.049735","29.991820"],["-90.049833","29.991710"],["-90.049930","29.991600"],["-90.050015","29.991510"],["-90.050100","29.991420"],["-90.050190","29.991310"],["-90.050295","29.991195"],["-90.050400","29.991080"],["-90.050520","29.990945"],["-90.050640","29.990810"],["-90.050735","29.990705"],["-90.050830","29.990600"],["-90.050925","29.990495"],["-90.051020","29.990390"],["-90.051080","29.990320"],["-90.051160","29.990230"],["-90.051220","29.990160"],["-90.051290","29.990080"],["-90.051405","29.989950"],["-90.051520","29.989820"],["-90.051620","29.989710"],["-90.051640","29.989690"],["-90.051720","29.989590"],["-90.051790","29.989505"],["-90.051860","29.989420"],["-90.051870","29.989410"],["-90.051925","29.989325"],["-90.051980","29.989240"],["-90.052050","29.989150"],["-90.052090","29.989090"],["-90.052140","29.989000"],["-90.052180","29.988940"],["-90.052245","29.988825"],["-90.052310","29.988710"],["-90.052340","29.988630"],["-90.052400","29.988520"],["-90.052450","29.988390"],["-90.052500","29.988280"],["-90.052540","29.988170"],["-90.052580","29.988055"],["-90.052620","29.987940"],["-90.052650","29.987850"],["-90.052680","29.987740"],["-90.052700","29.987650"],["-90.052720","29.987540"],["-90.052760","29.987390"],["-90.052790","29.987230"],["-90.052820","29.987110"],["-90.052860","29.986930"],["-90.052880","29.986830"],["-90.052900","29.986730"],["-90.052920","29.986630"],["-90.052940","29.986530"],["-90.052960","29.986430"],["-90.052990","29.986320"],["-90.053020","29.986170"],["-90.053050","29.986050"],["-90.053070","29.985930"],["-90.053100","29.985770"],["-90.053120","29.985700"],["-90.053160","29.985530"],["-90.053200","29.985400"],["-90.053250","29.985250"],["-90.053310","29.985090"],["-90.053330","29.985040"],["-90.053390","29.984900"],["-90.053460","29.984750"],["-90.053535","29.984615"],["-90.053610","29.984480"],["-90.053610","29.984470"],["-90.053680","29.984350"],["-90.053743","29.984258"],["-90.053805","29.984165"],["-90.053868","29.984073"],["-90.053930","29.983980"],["-90.054000","29.983890"],["-90.054070","29.983800"],["-90.054180","29.983660"],["-90.054230","29.983600"],["-90.054350","29.983470"],["-90.054480","29.983340"],["-90.054610","29.983220"],["-90.054700","29.983140"],["-90.054790","29.983060"],["-90.054920","29.982950"],["-90.055080","29.982820"],["-90.055110","29.982800"],["-90.055240","29.982690"],["-90.055360","29.982590"],["-90.055430","29.982530"],["-90.055520","29.982460"],["-90.055615","29.982385"],["-90.055710","29.982310"],["-90.055845","29.982195"],["-90.055980","29.982080"],["-90.056020","29.982050"],["-90.056160","29.981930"],["-90.056245","29.981860"],["-90.056330","29.981790"],["-90.056480","29.981680"],["-90.056630","29.981560"],["-90.056715","29.981490"],["-90.056800","29.981420"],["-90.056885","29.981350"],["-90.056970","29.981280"],["-90.057068","29.981200"],["-90.057165","29.981120"],["-90.057263","29.981040"],["-90.057360","29.980960"],["-90.057450","29.980888"],["-90.057540","29.980815"],["-90.057630","29.980743"],["-90.057720","29.980670"],["-90.057780","29.980620"],["-90.057840","29.980570"],["-90.057990","29.980450"],["-90.058150","29.980320"],["-90.058250","29.980240"],["-90.058350","29.980160"],["-90.058410","29.980110"],["-90.058490","29.980040"],["-90.058610","29.979950"],["-90.058720","29.979860"],["-90.058845","29.979755"],["-90.058970","29.979650"],["-90.059105","29.979545"],["-90.059240","29.979440"],["-90.059355","29.979345"],["-90.059470","29.979250"],["-90.059620","29.979125"],["-90.059770","29.979000"],["-90.059920","29.978880"],["-90.060010","29.978800"],["-90.060130","29.978710"],["-90.060140","29.978710"],["-90.060280","29.978590"],["-90.060360","29.978520"],["-90.060440","29.978450"],["-90.060530","29.978380"],["-90.060630","29.978290"],["-90.060730","29.978200"],["-90.060820","29.978120"],["-90.060910","29.978040"],["-90.060995","29.977960"],["-90.061080","29.977880"],["-90.061160","29.977805"],["-90.061240","29.977730"],["-90.061370","29.977605"],["-90.061500","29.977480"],["-90.061580","29.977390"],["-90.061655","29.977310"],["-90.061730","29.977230"],["-90.061820","29.977130"],["-90.061900","29.977050"],["-90.061990","29.976955"],["-90.062080","29.976860"],["-90.062165","29.976760"],["-90.062250","29.976660"],["-90.062340","29.976560"],["-90.062430","29.976460"],["-90.062525","29.976355"],["-90.062620","29.976250"],["-90.062700","29.976160"],["-90.062780","29.976070"],["-90.062860","29.975980"],["-90.062940","29.975890"],["-90.063050","29.975770"],["-90.063120","29.975690"],["-90.063190","29.975610"],["-90.063275","29.975515"],["-90.063360","29.975420"],["-90.063490","29.975275"],["-90.063620","29.975130"],["-90.063710","29.975035"],["-90.063800","29.974940"],["-90.063865","29.974860"],["-90.063930","29.974780"],["-90.064015","29.974690"],["-90.064100","29.974600"],["-90.064198","29.974490"],["-90.064295","29.974380"],["-90.064393","29.974270"],["-90.064490","29.974160"],["-90.064620","29.974010"],["-90.064690","29.973930"],["-90.064790","29.973820"],["-90.064890","29.973710"],["-90.064985","29.973605"],["-90.065080","29.973500"],["-90.065180","29.973390"],["-90.065280","29.973270"],["-90.065410","29.973130"],["-90.065530","29.972995"],["-90.065650","29.972860"],["-90.065760","29.972735"],["-90.065870","29.972610"],["-90.065910","29.972560"],["-90.065960","29.972500"],["-90.066040","29.972410"],["-90.066130","29.972300"],["-90.066260","29.972150"],["-90.066290","29.972120"],["-90.066330","29.972070"],["-90.066410","29.971978"],["-90.066490","29.971885"],["-90.066570","29.971793"],["-90.066650","29.971700"],["-90.066720","29.971625"],["-90.066790","29.971550"],["-90.066900","29.971420"],["-90.067020","29.971290"],["-90.067090","29.971200"],["-90.067120","29.971170"],["-90.067225","29.971060"],["-90.067330","29.970950"],["-90.067425","29.970840"],["-90.067520","29.970730"],["-90.067630","29.970610"],["-90.067705","29.970525"],["-90.067780","29.970440"],["-90.067880","29.970330"],["-90.067980","29.970215"],["-90.068080","29.970100"],["-90.068205","29.969960"],["-90.068330","29.969820"],["-90.068425","29.969715"],["-90.068520","29.969610"],["-90.068605","29.969510"],["-90.068690","29.969410"],["-90.068750","29.969340"],["-90.068850","29.969240"],["-90.068880","29.969200"],["-90.068960","29.969110"],["-90.069040","29.969020"],["-90.069120","29.968930"],["-90.069200","29.968840"],["-90.069290","29.968740"],["-90.069380","29.968640"],["-90.069470","29.968540"],["-90.069560","29.968440"],["-90.069665","29.968325"],["-90.069770","29.968210"],["-90.069780","29.968190"],["-90.069880","29.968080"],["-90.070010","29.967940"],["-90.070128","29.967808"],["-90.070245","29.967675"],["-90.070363","29.967543"],["-90.070480","29.967410"],["-90.070500","29.967390"],["-90.070520","29.967360"],["-90.070530","29.967340"],["-90.070590","29.967290"],["-90.070670","29.967200"],["-90.070750","29.967110"],["-90.070840","29.967000"],["-90.070935","29.966895"],["-90.071030","29.966790"],["-90.071115","29.966700"],["-90.071200","29.966610"],["-90.071310","29.966480"],["-90.071370","29.966420"],["-90.071460","29.966320"],["-90.071550","29.966220"],["-90.071640","29.966200"],["-90.071650","29.966200"],["-90.071700","29.966160"],["-90.071740","29.966140"],["-90.071780","29.966110"],["-90.071850","29.966070"],["-90.071910","29.966040"],["-90.071960","29.966020"],["-90.072000","29.966010"],["-90.072040","29.965990"],["-90.072080","29.965990"],["-90.072160","29.965970"],["-90.072380","29.965955"],["-90.072600","29.965940"],["-90.072660","29.965940"],["-90.072850","29.965920"],["-90.072920","29.965920"],["-90.073065","29.965900"],["-90.073210","29.965880"],["-90.073400","29.965800"],["-90.073450","29.965760"],["-90.073480","29.965740"],["-90.073510","29.965710"],["-90.073620","29.965590"],["-90.073730","29.965470"],["-90.073850","29.965320"],["-90.073980","29.965180"],["-90.074040","29.965120"],["-90.074120","29.965010"],["-90.074150","29.964890"],["-90.074010","29.964790"],["-90.073870","29.964690"],["-90.073740","29.964605"],["-90.073610","29.964520"],["-90.073549","29.964434"],["-90.073489","29.964347"],["-90.073450","29.964390"],["-90.073400","29.964360"],["-90.073230","29.964245"],["-90.073060","29.964130"],["-90.072910","29.964030"],["-90.072760","29.963930"],["-90.072650","29.963860"],["-90.072540","29.963790"],["-90.072435","29.963720"],["-90.072330","29.963650"],["-90.072395","29.963577"],["-90.072330","29.963650"],["-90.072270","29.963600"],["-90.072170","29.963540"],["-90.072060","29.963470"],["-90.071920","29.963375"],["-90.071780","29.963280"],["-90.071635","29.963185"],["-90.071490","29.963090"],["-90.071420","29.963010"],["-90.071380","29.962970"],["-90.071360","29.962950"],["-90.071350","29.962940"],["-90.071330","29.962910"],["-90.071310","29.962880"],["-90.071280","29.962850"],["-90.071250","29.962790"],["-90.071230","29.962760"],["-90.071311","29.962708"],["-90.071230","29.962760"],["-90.071210","29.962720"],["-90.071200","29.962690"],["-90.071190","29.962660"],["-90.071140","29.962530"],["-90.071090","29.962360"],["-90.071040","29.962190"],["-90.070970","29.962020"],["-90.070960","29.961990"],["-90.070930","29.961910"],["-90.070890","29.961810"],["-90.070860","29.961740"],["-90.070850","29.961700"],["-90.070820","29.961620"],["-90.070720","29.961460"],["-90.070640","29.961360"],["-90.070570","29.961280"],["-90.070500","29.961200"],["-90.070405","29.961085"],["-90.070310","29.960970"],["-90.070250","29.960890"],["-90.070230","29.960870"],["-90.070210","29.960840"],["-90.070170","29.960790"],["-90.070130","29.960720"],["-90.070100","29.960640"],["-90.070090","29.960580"],["-90.070070","29.960520"],["-90.070070","29.960480"],["-90.070070","29.960450"],["-90.070060","29.960420"],["-90.070070","29.960360"],["-90.070090","29.960300"],["-90.070090","29.960260"],["-90.070110","29.960200"],["-90.070110","29.960160"],["-90.070120","29.960110"],["-90.070150","29.960050"],["-90.070170","29.960030"],["-90.070220","29.959930"],["-90.070230","29.959920"],["-90.070280","29.959870"],["-90.070340","29.959790"],["-90.070370","29.959750"],["-90.070490","29.959610"],["-90.070590","29.959520"],["-90.070659","29.959576"],["-90.070590","29.959520"],["-90.070670","29.959440"],["-90.070743","29.959359"],["-90.070815","29.959278"],["-90.070888","29.959196"],["-90.070960","29.959115"],["-90.071033","29.959034"],["-90.071105","29.958953"],["-90.071178","29.958871"],["-90.071250","29.958790"],["-90.071320","29.958710"],["-90.071403","29.958620"],["-90.071485","29.958530"],["-90.071568","29.958440"],["-90.071650","29.958350"],["-90.071735","29.958255"],["-90.071820","29.958160"],["-90.071905","29.958065"],["-90.071990","29.957970"],["-90.072028","29.957991"],["-90.071990","29.957970"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073835","29.955908"],["-90.073950","29.955775"],["-90.074065","29.955643"],["-90.074180","29.955510"],["-90.074270","29.955410"],["-90.074400","29.955270"],["-90.074485","29.955175"],["-90.074570","29.955080"],["-90.074685","29.954945"],["-90.074818","29.954823"],["-90.074818","29.954823"],["-90.074800","29.954810"],["-90.074900","29.954700"],["-90.075035","29.954763"],["-90.075170","29.954825"],["-90.075305","29.954888"],["-90.075440","29.954950"],["-90.075540","29.955000"],["-90.075640","29.955050"],["-90.075830","29.955140"],["-90.075930","29.955180"],["-90.076090","29.955255"],["-90.076250","29.955330"],["-90.076350","29.955375"],["-90.076450","29.955420"],["-90.076570","29.955480"],["-90.076690","29.955540"],["-90.076850","29.955615"],["-90.077010","29.955690"],["-90.077187","29.955770"],["-90.077365","29.955850"],["-90.077542","29.955930"],["-90.077720","29.956010"],["-90.077740","29.955981"],["-90.077720","29.956010"],["-90.077790","29.956040"],["-90.077940","29.956105"],["-90.078090","29.956170"],["-90.078250","29.956240"],["-90.078440","29.956320"],["-90.078610","29.956390"],["-90.078680","29.956420"],["-90.078770","29.956520"],["-90.078860","29.956620"],["-90.078880","29.956650"],["-90.078930","29.956720"],["-90.078940","29.956740"],["-90.078960","29.956780"],["-90.078970","29.956810"],["-90.078980","29.956840"],["-90.078980","29.956860"],["-90.078990","29.956880"],["-90.078990","29.956900"],["-90.079000","29.956960"],["-90.079000","29.957000"],["-90.079000","29.957050"],["-90.078990","29.957100"],["-90.078990","29.957130"],["-90.078980","29.957140"],["-90.078980","29.957160"],["-90.078960","29.957210"],["-90.078950","29.957250"],["-90.078930","29.957290"],["-90.078900","29.957330"],["-90.078880","29.957360"],["-90.078840","29.957410"],["-90.078780","29.957470"],["-90.078700","29.957570"],["-90.078580","29.957700"],["-90.078510","29.957780"],["-90.078470","29.957860"],["-90.078430","29.957920"],["-90.078410","29.957980"],["-90.078370","29.958085"],["-90.078330","29.958190"],["-90.078310","29.958240"],["-90.078290","29.958260"],["-90.078280","29.958290"],["-90.078250","29.958350"],["-90.078210","29.958420"],["-90.078150","29.958510"],["-90.078090","29.958580"],["-90.078100","29.958680"],["-90.077970","29.958820"],["-90.077840","29.958960"],["-90.077750","29.959065"],["-90.077660","29.959170"],["-90.077580","29.959260"],["-90.077530","29.959320"],["-90.077450","29.959400"],["-90.077380","29.959490"],["-90.077260","29.959610"],["-90.077150","29.959740"],["-90.077080","29.959820"],["-90.077070","29.959830"],["-90.076980","29.959930"],["-90.076890","29.960030"],["-90.076795","29.960135"],["-90.076700","29.960240"],["-90.076625","29.960325"],["-90.076550","29.960410"],["-90.076440","29.960535"],["-90.076330","29.960660"],["-90.076220","29.960785"],["-90.076110","29.960910"],["-90.076060","29.960960"],["-90.075935","29.961100"],["-90.075810","29.961240"],["-90.075695","29.961370"],["-90.075580","29.961500"],["-90.075470","29.961620"],["-90.075420","29.961680"],["-90.075338","29.961773"],["-90.075255","29.961865"],["-90.075173","29.961958"],["-90.075090","29.962050"],["-90.074990","29.962160"],["-90.074915","29.962245"],["-90.074840","29.962330"],["-90.074755","29.962425"],["-90.074670","29.962520"],["-90.074630","29.962560"],["-90.074510","29.962705"],["-90.074390","29.962850"],["-90.074310","29.962930"],["-90.074235","29.963015"],["-90.074160","29.963100"],["-90.074085","29.963185"],["-90.074010","29.963270"],["-90.073920","29.963370"],["-90.073830","29.963480"],["-90.073745","29.963570"],["-90.073660","29.963660"],["-90.073565","29.963765"],["-90.073470","29.963870"],["-90.073375","29.963975"],["-90.073280","29.964080"],["-90.073230","29.964140"],["-90.073160","29.964220"],["-90.073070","29.964320"],["-90.073002","29.964396"],["-90.072934","29.964473"],["-90.072866","29.964549"],["-90.072798","29.964625"],["-90.072729","29.964701"],["-90.072661","29.964778"],["-90.072593","29.964854"],["-90.072525","29.964930"],["-90.072457","29.965006"],["-90.072389","29.965083"],["-90.072321","29.965159"],["-90.072253","29.965235"],["-90.072184","29.965311"],["-90.072116","29.965388"],["-90.072048","29.965464"],["-90.071980","29.965540"],["-90.071910","29.965610"],["-90.071800","29.965750"],["-90.071790","29.965760"],["-90.071700","29.965860"],["-90.071630","29.965940"],["-90.071555","29.966023"],["-90.071480","29.966105"],["-90.071405","29.966188"],["-90.071330","29.966270"],["-90.071210","29.966410"],["-90.071130","29.966490"],["-90.071100","29.966520"],["-90.071025","29.966605"],["-90.070950","29.966690"],["-90.070835","29.966820"],["-90.070720","29.966950"],["-90.070630","29.967050"],["-90.070540","29.967150"],["-90.070510","29.967180"],["-90.070490","29.967210"],["-90.070430","29.967270"],["-90.070410","29.967300"],["-90.070360","29.967350"],["-90.070240","29.967485"],["-90.070120","29.967620"],["-90.070003","29.967750"],["-90.069885","29.967880"],["-90.069768","29.968010"],["-90.069650","29.968140"],["-90.069565","29.968240"],["-90.069480","29.968340"],["-90.069385","29.968450"],["-90.069290","29.968560"],["-90.069175","29.968685"],["-90.069060","29.968810"],["-90.068950","29.968930"],["-90.068920","29.968970"],["-90.068910","29.968970"],["-90.068880","29.969010"],["-90.068830","29.969070"],["-90.068740","29.969160"],["-90.068700","29.969210"],["-90.068580","29.969350"],["-90.068453","29.969493"],["-90.068325","29.969635"],["-90.068198","29.969778"],["-90.068070","29.969920"],["-90.067940","29.970060"],["-90.067840","29.970170"],["-90.067770","29.970260"],["-90.067685","29.970350"],["-90.067600","29.970440"],["-90.067520","29.970530"],["-90.067460","29.970600"],["-90.067354","29.970719"],["-90.067248","29.970838"],["-90.067141","29.970956"],["-90.067035","29.971075"],["-90.066929","29.971194"],["-90.066823","29.971313"],["-90.066716","29.971431"],["-90.066610","29.971550"],["-90.066600","29.971560"],["-90.066520","29.971650"],["-90.066440","29.971740"],["-90.066360","29.971825"],["-90.066280","29.971910"],["-90.066206","29.971990"],["-90.066133","29.972070"],["-90.066059","29.972150"],["-90.065985","29.972230"],["-90.065911","29.972310"],["-90.065838","29.972390"],["-90.065764","29.972470"],["-90.065690","29.972550"],["-90.065600","29.972650"],["-90.065560","29.972690"],["-90.065440","29.972840"],["-90.065400","29.972870"],["-90.065370","29.972910"],["-90.065255","29.973035"],["-90.065140","29.973160"],["-90.065065","29.973240"],["-90.064990","29.973320"],["-90.064940","29.973380"],["-90.064900","29.973430"],["-90.064880","29.973460"],["-90.064810","29.973520"],["-90.064770","29.973570"],["-90.064670","29.973680"],["-90.064620","29.973740"],["-90.064500","29.973875"],["-90.064380","29.974010"],["-90.064250","29.974160"],["-90.064180","29.974235"],["-90.064110","29.974310"],["-90.064038","29.974391"],["-90.063965","29.974473"],["-90.063893","29.974554"],["-90.063820","29.974635"],["-90.063748","29.974716"],["-90.063675","29.974798"],["-90.063603","29.974879"],["-90.063530","29.974960"],["-90.063445","29.975060"],["-90.063360","29.975160"],["-90.063280","29.975240"],["-90.063205","29.975325"],["-90.063130","29.975410"],["-90.063120","29.975420"],["-90.063030","29.975520"],["-90.062940","29.975620"],["-90.062860","29.975720"],["-90.062770","29.975815"],["-90.062680","29.975910"],["-90.062560","29.976050"],["-90.062550","29.976060"],["-90.062435","29.976190"],["-90.062320","29.976320"],["-90.062243","29.976405"],["-90.062165","29.976490"],["-90.062088","29.976575"],["-90.062010","29.976660"],["-90.061925","29.976755"],["-90.061840","29.976850"],["-90.061750","29.976940"],["-90.061660","29.977030"],["-90.061590","29.977110"],["-90.061450","29.977245"],["-90.061310","29.977380"],["-90.061210","29.977480"],["-90.061110","29.977570"],["-90.061020","29.977650"],["-90.060910","29.977760"],["-90.060790","29.977865"],["-90.060670","29.977970"],["-90.060620","29.978010"],["-90.060535","29.978083"],["-90.060450","29.978155"],["-90.060365","29.978228"],["-90.060280","29.978300"],["-90.060210","29.978360"],["-90.060090","29.978450"],["-90.059990","29.978530"],["-90.059885","29.978620"],["-90.059780","29.978710"],["-90.059660","29.978810"],["-90.059630","29.978830"],["-90.059495","29.978940"],["-90.059360","29.979050"],["-90.059255","29.979135"],["-90.059150","29.979220"],["-90.059013","29.979333"],["-90.058875","29.979445"],["-90.058738","29.979558"],["-90.058600","29.979670"],["-90.058470","29.979770"],["-90.058450","29.979790"],["-90.058300","29.979910"],["-90.058290","29.979920"],["-90.058150","29.980030"],["-90.058000","29.980150"],["-90.057990","29.980160"],["-90.057930","29.980220"],["-90.057815","29.980310"],["-90.057700","29.980400"],["-90.057600","29.980480"],["-90.057520","29.980550"],["-90.057395","29.980650"],["-90.057270","29.980750"],["-90.057145","29.980850"],["-90.057020","29.980950"],["-90.056918","29.981035"],["-90.056815","29.981120"],["-90.056713","29.981205"],["-90.056610","29.981290"],["-90.056490","29.981385"],["-90.056370","29.981480"],["-90.056235","29.981590"],["-90.056100","29.981700"],["-90.056020","29.981760"],["-90.055895","29.981870"],["-90.055770","29.981980"],["-90.055645","29.982080"],["-90.055520","29.982180"],["-90.055430","29.982250"],["-90.055270","29.982380"],["-90.055130","29.982490"],["-90.054990","29.982600"],["-90.054870","29.982700"],["-90.054730","29.982810"],["-90.054660","29.982880"],["-90.054515","29.983010"],["-90.054370","29.983140"],["-90.054360","29.983140"],["-90.054300","29.983200"],["-90.054220","29.983280"],["-90.054145","29.983360"],["-90.054070","29.983440"],["-90.053990","29.983530"],["-90.053940","29.983590"],["-90.053850","29.983690"],["-90.053830","29.983720"],["-90.053790","29.983770"],["-90.053710","29.983880"],["-90.053640","29.983980"],["-90.053560","29.984090"],["-90.053505","29.984180"],["-90.053450","29.984270"],["-90.053370","29.984410"],["-90.053320","29.984518"],["-90.053270","29.984625"],["-90.053220","29.984733"],["-90.053170","29.984840"],["-90.053150","29.984880"],["-90.053090","29.985015"],["-90.053030","29.985150"],["-90.053000","29.985230"],["-90.052960","29.985340"],["-90.052940","29.985420"],["-90.052920","29.985480"],["-90.052900","29.985590"],["-90.052880","29.985700"],["-90.052840","29.985820"],["-90.052820","29.985920"],["-90.052790","29.986050"],["-90.052760","29.986200"],["-90.052735","29.986325"],["-90.052710","29.986450"],["-90.052700","29.986530"],["-90.052665","29.986693"],["-90.052630","29.986855"],["-90.052595","29.987018"],["-90.052560","29.987180"],["-90.052530","29.987315"],["-90.052500","29.987450"],["-90.052490","29.987470"],["-90.052480","29.987530"],["-90.052450","29.987650"],["-90.052400","29.987830"],["-90.052370","29.987940"],["-90.052325","29.988050"],["-90.052280","29.988160"],["-90.052240","29.988265"],["-90.052200","29.988370"],["-90.052140","29.988520"],["-90.052100","29.988590"],["-90.052070","29.988650"],["-90.052010","29.988760"],["-90.052000","29.988770"],["-90.051950","29.988870"],["-90.051920","29.988920"],["-90.051880","29.988980"],["-90.051810","29.989090"],["-90.051790","29.989110"],["-90.051730","29.989200"],["-90.051650","29.989320"],["-90.051570","29.989410"],["-90.051510","29.989490"],["-90.051450","29.989560"],["-90.051360","29.989670"],["-90.051258","29.989783"],["-90.051155","29.989895"],["-90.051053","29.990008"],["-90.050950","29.990120"],["-90.050910","29.990180"],["-90.050830","29.990260"],["-90.050750","29.990350"],["-90.050670","29.990440"],["-90.050570","29.990550"],["-90.050550","29.990580"],["-90.050420","29.990710"],["-90.050350","29.990800"],["-90.050270","29.990880"],["-90.050180","29.990990"],["-90.050110","29.991065"],["-90.050040","29.991140"],["-90.049970","29.991215"],["-90.049900","29.991290"],["-90.049770","29.991440"],["-90.049650","29.991580"],["-90.049510","29.991720"],["-90.049400","29.991850"],["-90.049390","29.991860"],["-90.049320","29.991940"],["-90.049250","29.992020"],["-90.049200","29.992080"],["-90.049120","29.992170"],["-90.049040","29.992260"],["-90.048960","29.992350"],["-90.048860","29.992465"],["-90.048760","29.992580"],["-90.048670","29.992675"],["-90.048580","29.992770"],["-90.048490","29.992880"],["-90.048395","29.992985"],["-90.048300","29.993090"],["-90.048260","29.993130"],["-90.048240","29.993170"],["-90.048170","29.993240"],["-90.048090","29.993330"],["-90.048010","29.993420"],["-90.047940","29.993495"],["-90.047870","29.993570"],["-90.047780","29.993680"],["-90.047700","29.993770"],["-90.047605","29.993875"],["-90.047510","29.993980"],["-90.047415","29.994085"],["-90.047320","29.994190"],["-90.047260","29.994260"],["-90.047165","29.994365"],["-90.047070","29.994470"],["-90.047000","29.994550"],["-90.046950","29.994600"],["-90.046815","29.994750"],["-90.046680","29.994900"],["-90.046630","29.994960"],["-90.046540","29.995060"],["-90.046455","29.995155"],["-90.046370","29.995250"],["-90.046290","29.995350"],["-90.046175","29.995475"],["-90.046060","29.995600"],["-90.045970","29.995700"],["-90.045840","29.995850"],["-90.045810","29.995880"],["-90.045740","29.995960"],["-90.045660","29.996050"],["-90.045560","29.996160"],["-90.045510","29.996210"],["-90.045480","29.996240"],["-90.045430","29.996260"],["-90.045345","29.996365"],["-90.045260","29.996470"],["-90.045240","29.996490"],["-90.045110","29.996640"],["-90.045100","29.996650"],["-90.045020","29.996730"],["-90.044940","29.996820"],["-90.044870","29.996900"],["-90.044770","29.997005"],["-90.044670","29.997110"],["-90.044640","29.997130"],["-90.044535","29.997230"],["-90.044430","29.997330"],["-90.044345","29.997415"],["-90.044260","29.997500"],["-90.044250","29.997510"],["-90.044150","29.997603"],["-90.044050","29.997695"],["-90.043950","29.997788"],["-90.043850","29.997880"],["-90.043730","29.998000"],["-90.043630","29.998090"],["-90.043480","29.998230"],["-90.043380","29.998330"],["-90.043280","29.998430"],["-90.043210","29.998490"],["-90.043140","29.998550"],["-90.042985","29.998685"],["-90.042830","29.998820"],["-90.042800","29.998850"],["-90.042705","29.998925"],["-90.042610","29.999000"],["-90.042520","29.999070"],["-90.042430","29.999140"],["-90.042340","29.999210"],["-90.042250","29.999280"],["-90.042163","29.999346"],["-90.042075","29.999413"],["-90.041988","29.999479"],["-90.041900","29.999545"],["-90.041813","29.999611"],["-90.041725","29.999678"],["-90.041638","29.999744"],["-90.041550","29.999810"],["-90.041428","29.999895"],["-90.041305","29.999980"],["-90.041183","30.000065"],["-90.041060","30.000150"],["-90.040975","30.000218"],["-90.040890","30.000285"],["-90.040805","30.000353"],["-90.040720","30.000420"],["-90.040580","30.000520"],["-90.040475","30.000590"],["-90.040370","30.000660"],["-90.040253","30.000738"],["-90.040135","30.000815"],["-90.040018","30.000893"],["-90.039900","30.000970"],["-90.039750","30.001065"],["-90.039600","30.001160"],["-90.039490","30.001175"],["-90.039380","30.001190"],["-90.039210","30.001260"],["-90.039080","30.001320"],["-90.038940","30.001380"],["-90.038840","30.001420"],["-90.038690","30.001470"],["-90.038530","30.001540"],["-90.038430","30.001580"],["-90.038310","30.001630"],["-90.038180","30.001680"],["-90.038050","30.001730"],["-90.037940","30.001775"],["-90.037830","30.001820"],["-90.037730","30.001860"],["-90.037585","30.001915"],["-90.037440","30.001970"],["-90.037360","30.002010"],["-90.037350","30.002010"],["-90.037210","30.002065"],["-90.037070","30.002120"],["-90.037040","30.002130"],["-90.036960","30.002170"],["-90.036840","30.002220"],["-90.036720","30.002260"],["-90.036600","30.002300"],["-90.036495","30.002340"],["-90.036390","30.002380"],["-90.036300","30.002410"],["-90.036120","30.002470"],["-90.036010","30.002500"],["-90.035900","30.002530"],["-90.035710","30.002580"],["-90.035510","30.002650"],["-90.035350","30.002710"],["-90.035310","30.002720"],["-90.035320","30.002830"],["-90.035320","30.002850"],["-90.035320","30.002930"],["-90.035330","30.002940"],["-90.035330","30.002970"],["-90.035340","30.003070"],["-90.035340","30.003110"],["-90.035350","30.003180"],["-90.035370","30.003300"],["-90.035380","30.003360"],["-90.035410","30.003480"],["-90.035440","30.003610"],["-90.035500","30.003730"],["-90.035540","30.003820"],["-90.035580","30.003910"],["-90.035650","30.004080"],["-90.035480","30.004170"],["-90.035380","30.004215"],["-90.035280","30.004260"],["-90.035210","30.004300"],["-90.035045","30.004380"],["-90.034880","30.004460"],["-90.034778","30.004513"],["-90.034675","30.004565"],["-90.034573","30.004618"],["-90.034470","30.004670"],["-90.034410","30.004700"],["-90.034215","30.004785"],["-90.034020","30.004870"],["-90.033908","30.004920"],["-90.033795","30.004970"],["-90.033683","30.005020"],["-90.033570","30.005070"],["-90.033580","30.005080"],["-90.033660","30.005250"],["-90.033740","30.005410"],["-90.033805","30.005540"],["-90.033870","30.005670"],["-90.033900","30.005720"],["-90.033825","30.005795"],["-90.033993","30.005894"],["-90.034047","30.006020"],["-90.034100","30.006145"],["-90.033973","30.006192"],["-90.033845","30.006239"],["-90.033718","30.006286"],["-90.033590","30.006333"],["-90.033463","30.006379"],["-90.033335","30.006426"],["-90.033208","30.006473"],["-90.033080","30.006520"],["-90.032938","30.006578"],["-90.032795","30.006635"],["-90.032653","30.006693"],["-90.032510","30.006750"],["-90.032365","30.006810"],["-90.032220","30.006870"],["-90.032070","30.006930"],["-90.031880","30.007000"],["-90.031710","30.007070"],["-90.031605","30.007105"],["-90.031500","30.007140"],["-90.031305","30.007200"],["-90.031110","30.007260"],["-90.030993","30.007293"],["-90.030875","30.007325"],["-90.030758","30.007358"],["-90.030640","30.007390"],["-90.030508","30.007425"],["-90.030375","30.007460"],["-90.030243","30.007495"],["-90.030110","30.007530"],["-90.030000","30.007555"],["-90.029890","30.007580"],["-90.029880","30.007580"],["-90.029740","30.007620"],["-90.029560","30.007670"],["-90.029520","30.007680"],["-90.029398","30.007710"],["-90.029275","30.007740"],["-90.029153","30.007770"],["-90.029030","30.007800"],["-90.028908","30.007830"],["-90.028785","30.007860"],["-90.028663","30.007890"],["-90.028540","30.007920"],["-90.028430","30.007945"],["-90.028320","30.007970"],["-90.028120","30.008010"],["-90.028000","30.008035"],["-90.027880","30.008060"],["-90.027730","30.008100"],["-90.027530","30.008150"],["-90.027330","30.008190"],["-90.027130","30.008240"],["-90.026980","30.008280"],["-90.026780","30.008320"],["-90.026580","30.008370"],["-90.026540","30.008380"],["-90.026340","30.008430"],["-90.026140","30.008480"],["-90.025940","30.008520"],["-90.025760","30.008570"],["-90.025615","30.008605"],["-90.025470","30.008640"],["-90.025325","30.008675"],["-90.025180","30.008710"],["-90.025035","30.008745"],["-90.024890","30.008780"],["-90.024745","30.008815"],["-90.024600","30.008850"],["-90.024410","30.008900"],["-90.024340","30.008920"],["-90.024290","30.008930"],["-90.024210","30.008950"],["-90.024100","30.008980"],["-90.023980","30.009010"],["-90.023840","30.009040"],["-90.023650","30.009090"],["-90.023500","30.009126"],["-90.023350","30.009163"],["-90.023200","30.009199"],["-90.023050","30.009235"],["-90.022900","30.009271"],["-90.022750","30.009308"],["-90.022600","30.009344"],["-90.022450","30.009380"],["-90.022280","30.009420"],["-90.022110","30.009460"],["-90.021940","30.009500"],["-90.021770","30.009540"],["-90.021625","30.009575"],["-90.021480","30.009610"],["-90.021370","30.009640"],["-90.021190","30.009690"],["-90.021040","30.009720"],["-90.020890","30.009760"],["-90.020780","30.009780"],["-90.020820","30.009900"],["-90.020840","30.010030"],["-90.020860","30.010180"],["-90.020880","30.010330"],["-90.020829","30.010331"],["-90.020880","30.010330"],["-90.020890","30.010470"],["-90.020902","30.010585"],["-90.020915","30.010700"],["-90.020927","30.010815"],["-90.020940","30.010930"],["-90.020960","30.011110"],["-90.020975","30.011278"],["-90.020990","30.011445"],["-90.021005","30.011613"],["-90.021020","30.011780"],["-90.021035","30.011938"],["-90.021050","30.012095"],["-90.021068","30.012218"],["-90.021087","30.012341"],["-90.020957","30.012361"],["-90.021105","30.012501"],["-90.021140","30.012630"],["-90.021175","30.012758"],["-90.021197","30.012937"],["-90.021210","30.013040"],["-90.021226","30.013219"],["-90.021243","30.013399"],["-90.021259","30.013578"],["-90.021270","30.013700"],["-90.021230","30.013876"],["-90.021190","30.014053"],["-90.021149","30.014229"],["-90.021140","30.014271"],["-90.021258","30.014419"],["-90.021330","30.014509"],["-90.021349","30.014688"],["-90.021369","30.014867"],["-90.021380","30.014970"],["-90.021397","30.015149"],["-90.021414","30.015329"],["-90.021430","30.015508"],["-90.021440","30.015610"],["-90.021423","30.015789"],["-90.021405","30.015968"],["-90.021389","30.016133"],["-90.021440","30.016130"],["-90.021450","30.016230"],["-90.021465","30.016400"],["-90.021480","30.016570"],["-90.021495","30.016740"],["-90.021510","30.016910"],["-90.021525","30.017070"],["-90.021540","30.017230"],["-90.021555","30.017390"],["-90.021570","30.017550"],["-90.021580","30.017723"],["-90.021590","30.017895"],["-90.021600","30.018068"],["-90.021610","30.018240"],["-90.021569","30.018240"],["-90.021610","30.018240"],["-90.021610","30.018340"],["-90.021640","30.018500"],["-90.021685","30.018620"],["-90.021730","30.018740"],["-90.021775","30.018860"],["-90.021820","30.018980"],["-90.021855","30.019080"],["-90.021890","30.019180"],["-90.021955","30.019358"],["-90.022020","30.019535"],["-90.022085","30.019713"],["-90.022150","30.019890"],["-90.022090","30.019908"],["-90.022150","30.019890"],["-90.022170","30.019950"],["-90.022231","30.020115"],["-90.022292","30.020280"],["-90.022354","30.020445"],["-90.022415","30.020610"],["-90.022476","30.020775"],["-90.022537","30.020940"],["-90.022599","30.021105"],["-90.022660","30.021270"],["-90.022725","30.021453"],["-90.022790","30.021635"],["-90.022855","30.021818"],["-90.022920","30.022000"],["-90.022858","30.022017"],["-90.022920","30.022000"],["-90.022960","30.022090"],["-90.023012","30.022238"],["-90.023065","30.022385"],["-90.023117","30.022533"],["-90.023170","30.022680"],["-90.023220","30.022820"],["-90.023270","30.022960"],["-90.023317","30.023086"],["-90.023365","30.023213"],["-90.023412","30.023339"],["-90.023460","30.023465"],["-90.023507","30.023591"],["-90.023555","30.023718"],["-90.023602","30.023844"],["-90.023650","30.023970"],["-90.023584","30.023980"],["-90.023650","30.023970"],["-90.023685","30.024066"],["-90.023720","30.024163"],["-90.023755","30.024259"],["-90.023790","30.024355"],["-90.023825","30.024451"],["-90.023860","30.024548"],["-90.023895","30.024644"],["-90.023930","30.024740"],["-90.023975","30.024870"],["-90.024020","30.025000"],["-90.024065","30.025130"],["-90.024110","30.025260"],["-90.024167","30.025415"],["-90.024225","30.025570"],["-90.024282","30.025725"],["-90.024340","30.025880"],["-90.024261","30.025901"],["-90.024340","30.025880"],["-90.024380","30.025990"],["-90.024185","30.026045"],["-90.023990","30.026100"],["-90.023795","30.026160"],["-90.023600","30.026220"],["-90.023400","30.026280"],["-90.023253","30.026323"],["-90.023105","30.026365"],["-90.022958","30.026408"],["-90.022810","30.026450"],["-90.022613","30.026510"],["-90.022415","30.026570"],["-90.022218","30.026630"],["-90.022020","30.026690"],["-90.021870","30.026734"],["-90.021720","30.026778"],["-90.021570","30.026821"],["-90.021420","30.026865"],["-90.021270","30.026909"],["-90.021120","30.026953"],["-90.020970","30.026996"],["-90.020820","30.027040"],["-90.020798","30.026987"],["-90.020820","30.027040"],["-90.020680","30.027080"],["-90.020505","30.027135"],["-90.020330","30.027190"],["-90.020155","30.027245"],["-90.019980","30.027300"],["-90.019780","30.027355"],["-90.019580","30.027410"],["-90.019460","30.027435"],["-90.019340","30.027460"],["-90.019140","30.027500"],["-90.019015","30.027520"],["-90.018890","30.027540"],["-90.018670","30.027565"],["-90.018450","30.027590"],["-90.018390","30.027590"],["-90.018275","30.027595"],["-90.018160","30.027600"],["-90.018130","30.027600"],["-90.018124","30.027527"],["-90.017926","30.027581"],["-90.017820","30.027610"],["-90.017670","30.027630"],["-90.017488","30.027716"],["-90.017380","30.027790"],["-90.017310","30.027860"],["-90.017199","30.028012"],["-90.017058","30.028144"],["-90.017020","30.028180"],["-90.016870","30.028260"],["-90.016672","30.028315"],["-90.016465","30.028326"],["-90.016250","30.028337"],["-90.016054","30.028395"],["-90.015857","30.028454"],["-90.015661","30.028513"],["-90.015465","30.028572"],["-90.015268","30.028631"],["-90.015072","30.028689"],["-90.014875","30.028748"],["-90.014679","30.028807"],["-90.014483","30.028866"],["-90.014385","30.028895"],["-90.014225","30.029009"],["-90.014140","30.029070"],["-90.013943","30.029127"],["-90.013746","30.029185"],["-90.013549","30.029242"],["-90.013352","30.029299"],["-90.013156","30.029357"],["-90.012958","30.029414"],["-90.012762","30.029471"],["-90.012565","30.029529"],["-90.012532","30.029538"],["-90.012361","30.029640"],["-90.012266","30.029696"],["-90.012072","30.029761"],["-90.011879","30.029827"],["-90.011686","30.029893"],["-90.011492","30.029959"],["-90.011299","30.030024"],["-90.011105","30.030090"],["-90.010912","30.030156"],["-90.010719","30.030222"],["-90.010525","30.030287"],["-90.010332","30.030353"],["-90.010139","30.030419"],["-90.009945","30.030485"],["-90.009752","30.030550"],["-90.009579","30.030609"],["-90.009383","30.030669"],["-90.009188","30.030730"],["-90.009060","30.030769"],["-90.008857","30.030806"],["-90.008653","30.030843"],["-90.008582","30.030856"],["-90.008400","30.030943"],["-90.008218","30.031029"],["-90.008136","30.031068"],["-90.007944","30.031137"],["-90.007752","30.031206"],["-90.007561","30.031275"],["-90.007370","30.031347"],["-90.007180","30.031419"],["-90.006989","30.031491"],["-90.006799","30.031563"],["-90.006609","30.031635"],["-90.006416","30.031703"],["-90.006223","30.031770"],["-90.006031","30.031838"],["-90.005838","30.031905"],["-90.005740","30.031940"],["-90.005542","30.031994"],["-90.005343","30.032048"],["-90.005145","30.032101"],["-90.005065","30.032123"],["-90.004905","30.032237"],["-90.004815","30.032301"],["-90.004750","30.032330"],["-90.004559","30.032400"],["-90.004367","30.032470"],["-90.004176","30.032540"],["-90.003985","30.032610"],["-90.003930","30.032630"],["-90.003729","30.032675"],["-90.003528","30.032721"],["-90.003455","30.032737"],["-90.003490","30.032800"],["-90.003430","30.032820"],["-90.003295","30.032870"],["-90.003160","30.032920"],["-90.003000","30.032980"],["-90.002828","30.033048"],["-90.002655","30.033115"],["-90.002483","30.033183"],["-90.002310","30.033250"],["-90.002160","30.033300"],["-90.002015","30.033355"],["-90.001870","30.033410"],["-90.001680","30.033480"],["-90.001520","30.033540"],["-90.001488","30.033483"],["-90.001520","30.033540"],["-90.001410","30.033580"],["-90.001230","30.033650"],["-90.001080","30.033705"],["-90.000930","30.033760"],["-90.000819","30.033803"],["-90.000708","30.033845"],["-90.000596","30.033888"],["-90.000485","30.033930"],["-90.000374","30.033973"],["-90.000263","30.034015"],["-90.000151","30.034058"],["-90.000040","30.034100"],["-89.999860","30.034155"],["-89.999680","30.034210"],["-89.999565","30.034254"],["-89.999450","30.034298"],["-89.999335","30.034341"],["-89.999220","30.034385"],["-89.999105","30.034429"],["-89.998990","30.034473"],["-89.998875","30.034516"],["-89.998760","30.034560"],["-89.998585","30.034630"],["-89.998410","30.034700"],["-89.998295","30.034745"],["-89.998180","30.034790"],["-89.998010","30.034860"],["-89.997840","30.034930"],["-89.997740","30.034973"],["-89.997640","30.035015"],["-89.997539","30.035058"],["-89.997439","30.035101"],["-89.997339","30.035143"],["-89.997239","30.035186"],["-89.997139","30.035228"],["-89.997038","30.035271"],["-89.996859","30.035264"],["-89.996900","30.035330"],["-89.996790","30.035380"],["-89.996740","30.035288"],["-89.996690","30.035195"],["-89.996640","30.035103"],["-89.996590","30.035010"],["-89.996530","30.034910"],["-89.996470","30.034810"],["-89.996410","30.034715"],["-89.996350","30.034620"],["-89.996290","30.034525"],["-89.996230","30.034430"],["-89.996140","30.034270"],["-89.996060","30.034160"],["-89.996040","30.034110"],["-89.995970","30.034000"],["-89.995940","30.033950"],["-89.995887","30.033858"],["-89.995835","30.033765"],["-89.995782","30.033673"],["-89.995730","30.033580"],["-89.995680","30.033480"],["-89.995590","30.033310"],["-89.995520","30.033178"],["-89.995450","30.033045"],["-89.995380","30.032913"],["-89.995310","30.032780"],["-89.995245","30.032665"],["-89.995180","30.032550"],["-89.995115","30.032435"],["-89.995050","30.032320"],["-89.994980","30.032220"],["-89.994915","30.032098"],["-89.994850","30.031975"],["-89.994785","30.031853"],["-89.994720","30.031730"],["-89.994665","30.031635"],["-89.994610","30.031540"],["-89.994560","30.031443"],["-89.994510","30.031345"],["-89.994460","30.031248"],["-89.994410","30.031150"],["-89.994230","30.031230"],["-89.994140","30.031250"],["-89.994090","30.031270"],["-89.994040","30.031290"],["-89.993980","30.031300"],["-89.993930","30.031310"],["-89.993890","30.031300"],["-89.993860","30.031290"],["-89.993850","30.031280"],["-89.993760","30.031180"],["-89.993720","30.031130"],["-89.993600","30.031040"],["-89.993540","30.031000"],["-89.993470","30.030960"],["-89.993420","30.030940"],["-89.993390","30.030940"],["-89.993320","30.030920"],["-89.993280","30.030920"],["-89.993250","30.030920"],["-89.993200","30.030920"],["-89.993170","30.030920"],["-89.993110","30.030930"],["-89.993020","30.030950"],["-89.992913","30.030978"],["-89.992805","30.031005"],["-89.992698","30.031033"],["-89.992590","30.031060"],["-89.992438","30.031098"],["-89.992285","30.031135"],["-89.992133","30.031173"],["-89.991980","30.031210"],["-89.991810","30.031255"],["-89.991640","30.031300"],["-89.991470","30.031345"],["-89.991300","30.031390"],["-89.991115","30.031445"],["-89.990930","30.031500"],["-89.990815","30.031535"],["-89.990700","30.031570"],["-89.990540","30.031620"],["-89.990433","30.031656"],["-89.990325","30.031693"],["-89.990218","30.031729"],["-89.990110","30.031765"],["-89.990003","30.031801"],["-89.989895","30.031838"],["-89.989788","30.031874"],["-89.989680","30.031910"],["-89.989510","30.031980"],["-89.989340","30.032050"],["-89.989235","30.032090"],["-89.989130","30.032130"],["-89.988990","30.032185"],["-89.988850","30.032240"],["-89.988673","30.032313"],["-89.988495","30.032385"],["-89.988318","30.032458"],["-89.988140","30.032530"],["-89.988029","30.032575"],["-89.987918","30.032620"],["-89.987806","30.032665"],["-89.987695","30.032710"],["-89.987584","30.032755"],["-89.987473","30.032800"],["-89.987361","30.032845"],["-89.987250","30.032890"],["-89.987104","30.032950"],["-89.986958","30.033010"],["-89.986811","30.033070"],["-89.986665","30.033130"],["-89.986519","30.033190"],["-89.986373","30.033250"],["-89.986226","30.033310"],["-89.986080","30.033370"],["-89.985948","30.033425"],["-89.985815","30.033480"],["-89.985683","30.033535"],["-89.985550","30.033590"],["-89.985405","30.033645"],["-89.985260","30.033700"],["-89.985312","30.033790"],["-89.985365","30.033880"],["-89.985417","30.033970"],["-89.985470","30.034060"],["-89.985522","30.034150"],["-89.985575","30.034240"],["-89.985627","30.034330"],["-89.985680","30.034420"],["-89.985739","30.034518"],["-89.985797","30.034615"],["-89.985856","30.034713"],["-89.985915","30.034810"],["-89.985974","30.034908"],["-89.986032","30.035005"],["-89.986091","30.035103"],["-89.986150","30.035200"],["-89.986210","30.035300"],["-89.986292","30.035435"],["-89.986375","30.035570"],["-89.986457","30.035705"],["-89.986540","30.035840"],["-89.986622","30.035970"],["-89.986705","30.036100"],["-89.986787","30.036230"],["-89.986870","30.036360"],["-89.986970","30.036515"],["-89.987070","30.036670"],["-89.987130","30.036770"],["-89.987120","30.036774"],["-89.987130","30.036770"],["-89.987170","30.036830"],["-89.987270","30.036980"],["-89.987330","30.037090"],["-89.987390","30.037200"],["-89.987430","30.037280"],["-89.987480","30.037400"],["-89.987510","30.037460"],["-89.987540","30.037555"],["-89.987570","30.037650"],["-89.987600","30.037750"],["-89.987640","30.037900"],["-89.987650","30.037980"],["-89.987680","30.038140"],["-89.987705","30.038240"],["-89.987730","30.038340"],["-89.987750","30.038390"],["-89.987770","30.038450"],["-89.987780","30.038490"],["-89.987810","30.038560"],["-89.987830","30.038610"],["-89.987880","30.038730"],["-89.987940","30.038850"],["-89.987990","30.038950"],["-89.988010","30.038980"],["-89.987945","30.039013"],["-89.988010","30.038980"],["-89.988080","30.039090"],["-89.987970","30.039140"],["-89.987860","30.039190"],["-89.987790","30.039220"],["-89.987610","30.039300"],["-89.987510","30.039340"],["-89.987450","30.039340"],["-89.987360","30.039380"],["-89.987250","30.039435"],["-89.987140","30.039490"],["-89.987030","30.039545"],["-89.986920","30.039600"],["-89.986774","30.039671"],["-89.986629","30.039743"],["-89.986483","30.039814"],["-89.986338","30.039885"],["-89.986192","30.039956"],["-89.986046","30.040028"],["-89.985901","30.040099"],["-89.985755","30.040170"],["-89.985609","30.040241"],["-89.985464","30.040313"],["-89.985318","30.040384"],["-89.985173","30.040455"],["-89.985027","30.040526"],["-89.984881","30.040598"],["-89.984736","30.040669"],["-89.984590","30.040740"],["-89.984484","30.040791"],["-89.984379","30.040843"],["-89.984273","30.040894"],["-89.984168","30.040945"],["-89.984062","30.040996"],["-89.983956","30.041048"],["-89.983851","30.041099"],["-89.983745","30.041150"],["-89.983639","30.041201"],["-89.983534","30.041253"],["-89.983428","30.041304"],["-89.983323","30.041355"],["-89.983217","30.041406"],["-89.983111","30.041458"],["-89.983006","30.041509"],["-89.982900","30.041560"],["-89.982921","30.041567"],["-89.982900","30.041560"],["-89.982724","30.041646"],["-89.982548","30.041733"],["-89.982371","30.041819"],["-89.982195","30.041905"],["-89.982019","30.041991"],["-89.981843","30.042078"],["-89.981666","30.042164"],["-89.981490","30.042250"],["-89.981308","30.042340"],["-89.981125","30.042430"],["-89.980943","30.042520"],["-89.980760","30.042610"],["-89.980655","30.042660"],["-89.980550","30.042710"],["-89.980450","30.042760"],["-89.980350","30.042810"],["-89.980270","30.042650"],["-89.980130","30.042700"],["-89.980166","30.042767"],["-89.980130","30.042700"],["-89.980270","30.042650"],["-89.980350","30.042810"],["-89.980235","30.042865"],["-89.980120","30.042920"],["-89.979985","30.042980"],["-89.979850","30.043040"],["-89.979690","30.043120"],["-89.979530","30.043200"],["-89.979390","30.043270"],["-89.979230","30.043350"],["-89.979130","30.043400"],["-89.979030","30.043450"],["-89.978930","30.043500"],["-89.978830","30.043550"],["-89.978730","30.043600"],["-89.978560","30.043680"],["-89.978403","30.043760"],["-89.978245","30.043840"],["-89.978088","30.043920"],["-89.977930","30.044000"],["-89.977765","30.044080"],["-89.977600","30.044160"],["-89.977435","30.044240"],["-89.977270","30.044320"],["-89.977148","30.044383"],["-89.977025","30.044445"],["-89.976903","30.044508"],["-89.976780","30.044570"],["-89.976690","30.044460"],["-89.976665","30.044312"],["-89.976600","30.044350"],["-89.976690","30.044460"],["-89.976780","30.044570"],["-89.976600","30.044658"],["-89.976420","30.044745"],["-89.976240","30.044833"],["-89.976060","30.044920"],["-89.975895","30.045000"],["-89.975730","30.045080"],["-89.975570","30.045160"],["-89.975410","30.045240"],["-89.975250","30.045320"],["-89.975090","30.045400"],["-89.974930","30.045480"],["-89.974760","30.045565"],["-89.974590","30.045650"],["-89.974420","30.045735"],["-89.974250","30.045820"],["-89.974093","30.045900"],["-89.973935","30.045980"],["-89.973778","30.046060"],["-89.973620","30.046140"],["-89.973520","30.046193"],["-89.973420","30.046245"],["-89.973320","30.046298"],["-89.973220","30.046350"],["-89.973095","30.046420"],["-89.972970","30.046490"],["-89.972845","30.046560"],["-89.972720","30.046630"],["-89.972585","30.046710"],["-89.972418","30.046743"],["-89.972260","30.046860"],["-89.972139","30.046950"],["-89.971962","30.047045"],["-89.971786","30.047140"],["-89.971609","30.047234"],["-89.971433","30.047329"],["-89.971256","30.047424"],["-89.971079","30.047519"],["-89.970903","30.047613"],["-89.970726","30.047708"],["-89.970550","30.047803"],["-89.970373","30.047898"],["-89.970328","30.047922"],["-89.970163","30.048031"],["-89.969997","30.048140"],["-89.969935","30.048181"],["-89.969763","30.048282"],["-89.969591","30.048383"],["-89.969460","30.048460"],["-89.969278","30.048547"],["-89.969096","30.048633"],["-89.968914","30.048720"],["-89.968806","30.048771"],["-89.968658","30.048897"],["-89.968580","30.048963"],["-89.968409","30.049066"],["-89.968239","30.049169"],["-89.968069","30.049272"],["-89.967899","30.049375"],["-89.967729","30.049479"],["-89.967558","30.049582"],["-89.967388","30.049685"],["-89.967218","30.049788"],["-89.967048","30.049891"],["-89.966877","30.049994"],["-89.966726","30.050118"],["-89.966644","30.050186"],["-89.966468","30.050282"],["-89.966293","30.050378"],["-89.966117","30.050474"],["-89.965941","30.050570"],["-89.965791","30.050652"],["-89.965642","30.050734"],["-89.965492","30.050816"],["-89.965342","30.050898"],["-89.965333","30.051006"],["-89.965243","30.051066"],["-89.965153","30.051125"],["-89.965137","30.051257"],["-89.965227","30.051365"],["-89.965317","30.051473"],["-89.965407","30.051580"],["-89.965498","30.051688"],["-89.965588","30.051796"],["-89.965678","30.051903"],["-89.965768","30.052011"],["-89.965858","30.052119"],["-89.965935","30.052210"],["-89.966011","30.052302"],["-89.966087","30.052394"],["-89.966163","30.052486"],["-89.966240","30.052578"],["-89.966316","30.052670"],["-89.966392","30.052761"],["-89.966469","30.052853"],["-89.966579","30.052986"],["-89.966690","30.053118"],["-89.966801","30.053251"],["-89.966898","30.053366"],["-89.966995","30.053481"],["-89.967092","30.053595"],["-89.967190","30.053710"],["-89.967292","30.053872"],["-89.967395","30.054034"],["-89.967529","30.054105"],["-89.967600","30.054189"],["-89.967671","30.054274"],["-89.967742","30.054358"],["-89.967813","30.054443"],["-89.967885","30.054530"],["-89.967960","30.054620"],["-89.968035","30.054710"],["-89.968110","30.054800"],["-89.968182","30.054886"],["-89.968255","30.054973"],["-89.968327","30.055059"],["-89.968400","30.055145"],["-89.968472","30.055231"],["-89.968545","30.055318"],["-89.968617","30.055404"],["-89.968710","30.055510"],["-89.968632","30.055525"],["-89.968710","30.055510"],["-89.968770","30.055580"],["-89.968835","30.055663"],["-89.968900","30.055745"],["-89.968965","30.055828"],["-89.969030","30.055910"],["-89.969095","30.055993"],["-89.969160","30.056075"],["-89.969225","30.056158"],["-89.969290","30.056240"],["-89.969377","30.056353"],["-89.969465","30.056465"],["-89.969552","30.056578"],["-89.969640","30.056690"],["-89.969770","30.056840"],["-89.969701","30.056883"],["-89.969770","30.056840"],["-89.969840","30.056925"],["-89.969910","30.057010"],["-89.969740","30.057115"],["-89.969570","30.057220"],["-89.969415","30.057320"],["-89.969260","30.057420"],["-89.969090","30.057525"],["-89.968920","30.057630"],["-89.968770","30.057720"],["-89.968620","30.057810"],["-89.968580","30.057840"],["-89.968570","30.057840"],["-89.968512","30.057779"],["-89.968570","30.057840"],["-89.968410","30.057940"],["-89.968265","30.058030"],["-89.968120","30.058120"],["-89.968110","30.058120"],["-89.967945","30.058225"],["-89.967780","30.058330"],["-89.967610","30.058430"],["-89.967435","30.058540"],["-89.967260","30.058650"],["-89.967155","30.058715"],["-89.967050","30.058780"],["-89.966953","30.058840"],["-89.966855","30.058900"],["-89.966758","30.058960"],["-89.966607","30.058952"],["-89.966650","30.059000"],["-89.966530","30.059080"],["-89.966435","30.059140"],["-89.966340","30.059200"],["-89.966245","30.059260"],["-89.966150","30.059320"],["-89.966055","30.059380"],["-89.965960","30.059440"],["-89.965865","30.059500"],["-89.965770","30.059560"],["-89.965598","30.059673"],["-89.965425","30.059785"],["-89.965253","30.059898"],["-89.965080","30.060010"],["-89.964988","30.060070"],["-89.964895","30.060130"],["-89.964803","30.060190"],["-89.964710","30.060250"],["-89.964560","30.060340"],["-89.964410","30.060430"],["-89.964351","30.060362"],["-89.964410","30.060430"],["-89.964255","30.060525"],["-89.964100","30.060620"],["-89.963940","30.060730"],["-89.963780","30.060840"],["-89.963640","30.060925"],["-89.963500","30.061010"],["-89.963329","30.061126"],["-89.963158","30.061243"],["-89.962986","30.061359"],["-89.962815","30.061475"],["-89.962644","30.061591"],["-89.962473","30.061708"],["-89.962301","30.061824"],["-89.962130","30.061940"],["-89.962065","30.061865"],["-89.962130","30.061940"],["-89.962010","30.062010"],["-89.961865","30.062108"],["-89.961720","30.062205"],["-89.961575","30.062303"],["-89.961430","30.062400"],["-89.961285","30.062498"],["-89.961140","30.062595"],["-89.960995","30.062693"],["-89.960850","30.062790"],["-89.960711","30.062886"],["-89.960573","30.062983"],["-89.960434","30.063079"],["-89.960295","30.063175"],["-89.960156","30.063271"],["-89.960018","30.063368"],["-89.959879","30.063464"],["-89.959740","30.063560"],["-89.959685","30.063503"],["-89.959740","30.063560"],["-89.959620","30.063640"],["-89.959533","30.063701"],["-89.959446","30.063763"],["-89.959359","30.063824"],["-89.959273","30.063885"],["-89.959186","30.063946"],["-89.959099","30.064008"],["-89.959012","30.064069"],["-89.958925","30.064130"],["-89.958838","30.064191"],["-89.958751","30.064253"],["-89.958664","30.064314"],["-89.958578","30.064375"],["-89.958491","30.064436"],["-89.958404","30.064498"],["-89.958317","30.064559"],["-89.958230","30.064620"],["-89.958133","30.064688"],["-89.958035","30.064755"],["-89.957938","30.064823"],["-89.957840","30.064890"],["-89.957743","30.064958"],["-89.957645","30.065025"],["-89.957548","30.065093"],["-89.957450","30.065160"],["-89.957355","30.065228"],["-89.957260","30.065295"],["-89.957165","30.065363"],["-89.957070","30.065430"],["-89.956975","30.065498"],["-89.956880","30.065565"],["-89.956785","30.065633"],["-89.956690","30.065700"],["-89.956558","30.065795"],["-89.956425","30.065890"],["-89.956293","30.065985"],["-89.956160","30.066080"],["-89.956112","30.066028"],["-89.956160","30.066080"],["-89.956070","30.066150"],["-89.955930","30.066250"],["-89.955790","30.066350"],["-89.955650","30.066450"],["-89.955510","30.066550"],["-89.955389","30.066640"],["-89.955268","30.066730"],["-89.955146","30.066820"],["-89.955025","30.066910"],["-89.954904","30.067000"],["-89.954783","30.067090"],["-89.954661","30.067180"],["-89.954540","30.067270"],["-89.954420","30.067364"],["-89.954300","30.067458"],["-89.954180","30.067551"],["-89.954060","30.067645"],["-89.953940","30.067739"],["-89.953820","30.067833"],["-89.953700","30.067926"],["-89.953580","30.068020"],["-89.953509","30.067955"],["-89.953580","30.068020"],["-89.953460","30.068120"],["-89.953355","30.068015"],["-89.953250","30.067910"],["-89.953155","30.067815"],["-89.953060","30.067720"],["-89.952986","30.067645"],["-89.952912","30.067570"],["-89.952839","30.067495"],["-89.952765","30.067420"],["-89.952691","30.067345"],["-89.952617","30.067270"],["-89.952544","30.067195"],["-89.952470","30.067120"],["-89.952325","30.066985"],["-89.952180","30.066850"],["-89.952102","30.066765"],["-89.952025","30.066680"],["-89.951947","30.066595"],["-89.951870","30.066510"],["-89.951896","30.066489"],["-89.951870","30.066510"],["-89.951810","30.066450"],["-89.951730","30.066380"],["-89.951630","30.066280"],["-89.951542","30.066195"],["-89.951455","30.066110"],["-89.951367","30.066025"],["-89.951280","30.065940"],["-89.951157","30.065813"],["-89.951035","30.065685"],["-89.950912","30.065558"],["-89.950790","30.065430"],["-89.950834","30.065398"],["-89.950790","30.065430"],["-89.950750","30.065380"],["-89.950608","30.065488"],["-89.950465","30.065595"],["-89.950323","30.065703"],["-89.950180","30.065810"],["-89.950048","30.065910"],["-89.949915","30.066010"],["-89.949783","30.066110"],["-89.949650","30.066210"],["-89.949530","30.066303"],["-89.949410","30.066395"],["-89.949290","30.066488"],["-89.949170","30.066580"],["-89.949129","30.066541"],["-89.949170","30.066580"],["-89.949100","30.066640"],["-89.948985","30.066728"],["-89.948870","30.066815"],["-89.948755","30.066903"],["-89.948640","30.066990"],["-89.948515","30.067088"],["-89.948390","30.067185"],["-89.948265","30.067283"],["-89.948140","30.067380"],["-89.948025","30.067470"],["-89.947910","30.067560"],["-89.947900","30.067560"],["-89.947857","30.067520"],["-89.947900","30.067560"],["-89.947830","30.067620"],["-89.947695","30.067725"],["-89.947560","30.067830"],["-89.947425","30.067935"],["-89.947290","30.068040"],["-89.947170","30.068130"],["-89.947050","30.068220"],["-89.946930","30.068310"],["-89.946810","30.068400"],["-89.946749","30.068330"],["-89.946810","30.068400"],["-89.946720","30.068460"],["-89.946638","30.068528"],["-89.946555","30.068595"],["-89.946473","30.068663"],["-89.946390","30.068730"],["-89.946275","30.068820"],["-89.946160","30.068910"],["-89.946045","30.069000"],["-89.945930","30.069090"],["-89.945820","30.069180"],["-89.945710","30.069270"],["-89.945660","30.069221"],["-89.945710","30.069270"],["-89.945630","30.069340"],["-89.945525","30.069425"],["-89.945420","30.069510"],["-89.945315","30.069595"],["-89.945210","30.069680"],["-89.945060","30.069798"],["-89.944910","30.069915"],["-89.944760","30.070033"],["-89.944610","30.070150"],["-89.944478","30.070255"],["-89.944345","30.070360"],["-89.944213","30.070465"],["-89.944080","30.070570"],["-89.944047","30.070538"],["-89.944080","30.070570"],["-89.944030","30.070610"],["-89.943888","30.070725"],["-89.943745","30.070840"],["-89.943603","30.070955"],["-89.943460","30.071070"],["-89.943315","30.071185"],["-89.943170","30.071300"],["-89.943085","30.071370"],["-89.943000","30.071440"],["-89.942930","30.071490"],["-89.942880","30.071550"],["-89.942790","30.071610"],["-89.942700","30.071670"],["-89.942600","30.071720"],["-89.942510","30.071760"],["-89.942390","30.071800"],["-89.942320","30.071820"],["-89.942240","30.071840"],["-89.942262","30.071794"],["-89.942240","30.071840"],["-89.942130","30.071870"],["-89.942020","30.071900"],["-89.941870","30.071940"],["-89.941760","30.071960"],["-89.941590","30.071990"],["-89.941510","30.072000"],["-89.941440","30.072000"],["-89.941220","30.072020"],["-89.941170","30.072020"],["-89.941050","30.072025"],["-89.940930","30.072030"],["-89.940810","30.072010"],["-89.940690","30.071990"],["-89.940773","30.071972"],["-89.940690","30.071990"],["-89.940660","30.071890"],["-89.940620","30.071750"],["-89.940600","30.071640"],["-89.940590","30.071520"],["-89.940580","30.071400"],["-89.940570","30.071290"],["-89.940560","30.071135"],["-89.940550","30.070980"],["-89.940540","30.070890"],["-89.940527","30.070765"],["-89.940515","30.070640"],["-89.940502","30.070515"],["-89.940490","30.070390"],["-89.940477","30.070265"],["-89.940465","30.070140"],["-89.940452","30.070015"],["-89.940440","30.069890"],["-89.940506","30.069888"],["-89.940440","30.069890"],["-89.940430","30.069810"],["-89.940421","30.069708"],["-89.940412","30.069606"],["-89.940404","30.069504"],["-89.940395","30.069403"],["-89.940386","30.069301"],["-89.940377","30.069199"],["-89.940369","30.069097"],["-89.940360","30.068995"],["-89.940351","30.068893"],["-89.940342","30.068791"],["-89.940334","30.068689"],["-89.940325","30.068588"],["-89.940316","30.068486"],["-89.940307","30.068384"],["-89.940299","30.068282"],["-89.940290","30.068180"],["-89.940290","30.068110"],["-89.940372","30.068109"],["-89.940290","30.068110"],["-89.940275","30.067925"],["-89.940260","30.067740"],["-89.940245","30.067600"],["-89.940230","30.067460"],["-89.940220","30.067355"],["-89.940210","30.067250"],["-89.940200","30.067145"],["-89.940190","30.067040"],["-89.940180","30.066935"],["-89.940170","30.066830"],["-89.940157","30.066720"],["-89.940145","30.066610"],["-89.940132","30.066500"],["-89.940120","30.066390"],["-89.940102","30.066233"],["-89.940085","30.066075"],["-89.940067","30.065918"],["-89.940050","30.065760"],["-89.940037","30.065663"],["-89.940025","30.065565"],["-89.940012","30.065468"],["-89.940000","30.065370"],["-89.939990","30.065265"],["-89.939980","30.065160"],["-89.939966","30.065031"],["-89.939952","30.064903"],["-89.939939","30.064774"],["-89.939925","30.064645"],["-89.939911","30.064516"],["-89.939897","30.064388"],["-89.939884","30.064259"],["-89.939870","30.064130"],["-89.940020","30.064100"],["-89.940070","30.064090"],["-89.940110","30.064070"],["-89.940140","30.064060"],["-89.940170","30.064030"],["-89.940190","30.063990"],["-89.940200","30.063970"],["-89.940200","30.063950"],["-89.940200","30.063920"],["-89.940200","30.063890"],["-89.940190","30.063750"],["-89.940175","30.063620"],["-89.940160","30.063490"],["-89.940145","30.063370"],["-89.940130","30.063250"],["-89.940120","30.063150"],["-89.940110","30.063050"],["-89.940110","30.062960"],["-89.940110","30.062850"],["-89.940110","30.062800"],["-89.940120","30.062740"],["-89.940130","30.062670"],["-89.940140","30.062620"],["-89.940150","30.062570"],["-89.940170","30.062510"],["-89.940210","30.062380"],["-89.940250","30.062280"],["-89.940320","30.062160"],["-89.940390","30.062055"],["-89.940460","30.061950"],["-89.940540","30.061833"],["-89.940620","30.061715"],["-89.940700","30.061598"],["-89.940780","30.061480"],["-89.940860","30.061363"],["-89.940940","30.061245"],["-89.941020","30.061128"],["-89.941100","30.061010"],["-89.941203","30.060863"],["-89.941305","30.060715"],["-89.941408","30.060568"],["-89.941510","30.060420"],["-89.941575","30.060320"],["-89.941640","30.060220"],["-89.941720","30.060100"],["-89.941785","30.060010"],["-89.941850","30.059920"],["-89.941960","30.059755"],["-89.942070","30.059590"],["-89.942130","30.059503"],["-89.942190","30.059415"],["-89.942250","30.059328"],["-89.942310","30.059240"],["-89.942370","30.059150"],["-89.942440","30.059040"],["-89.942560","30.058880"],["-89.942630","30.058760"],["-89.942710","30.058660"],["-89.942780","30.058560"],["-89.942850","30.058460"],["-89.942900","30.058390"],["-89.942910","30.058390"],["-89.942970","30.058320"],["-89.943030","30.058240"],["-89.943080","30.058180"],["-89.943200","30.058060"],["-89.943250","30.058000"],["-89.943330","30.057930"],["-89.943440","30.057830"],["-89.943500","30.057780"],["-89.943590","30.057720"],["-89.943710","30.057630"],["-89.943830","30.057540"],["-89.943970","30.057440"],["-89.944100","30.057360"],["-89.944230","30.057280"],["-89.944385","30.057180"],["-89.944540","30.057080"],["-89.944640","30.057015"],["-89.944740","30.056950"],["-89.944840","30.056885"],["-89.944940","30.056820"],["-89.944969","30.056861"],["-89.945118","30.056736"],["-89.945263","30.056614"],["-89.945434","30.056511"],["-89.945604","30.056408"],["-89.945774","30.056305"],["-89.945945","30.056202"],["-89.946115","30.056099"],["-89.946285","30.055996"],["-89.946456","30.055893"],["-89.946626","30.055790"],["-89.946796","30.055687"],["-89.946967","30.055584"],["-89.947137","30.055481"],["-89.947308","30.055378"],["-89.947478","30.055275"],["-89.947648","30.055172"],["-89.947819","30.055070"],["-89.947989","30.054967"],["-89.948040","30.054936"],["-89.948000","30.054890"],["-89.948120","30.054810"],["-89.948260","30.054725"],["-89.948400","30.054640"],["-89.948540","30.054555"],["-89.948680","30.054470"],["-89.948779","30.054408"],["-89.948878","30.054345"],["-89.948976","30.054283"],["-89.949075","30.054220"],["-89.949174","30.054158"],["-89.949273","30.054095"],["-89.949371","30.054033"],["-89.949470","30.053970"],["-89.949611","30.053881"],["-89.949753","30.053793"],["-89.949894","30.053704"],["-89.950035","30.053615"],["-89.950176","30.053526"],["-89.950318","30.053438"],["-89.950459","30.053349"],["-89.950600","30.053260"],["-89.950632","30.053304"],["-89.950600","30.053260"],["-89.950740","30.053170"],["-89.950885","30.053085"],["-89.951030","30.053000"],["-89.951147","30.052926"],["-89.951264","30.052853"],["-89.951381","30.052779"],["-89.951498","30.052705"],["-89.951614","30.052631"],["-89.951731","30.052558"],["-89.951848","30.052484"],["-89.951965","30.052410"],["-89.952082","30.052336"],["-89.952199","30.052263"],["-89.952316","30.052189"],["-89.952433","30.052115"],["-89.952549","30.052041"],["-89.952666","30.051968"],["-89.952783","30.051894"],["-89.952930","30.051854"],["-89.953062","30.051715"],["-89.953138","30.051634"],["-89.953306","30.051528"],["-89.953430","30.051450"],["-89.953599","30.051345"],["-89.953768","30.051240"],["-89.953936","30.051135"],["-89.954105","30.051030"],["-89.954274","30.050926"],["-89.954443","30.050821"],["-89.954612","30.050716"],["-89.954780","30.050611"],["-89.954949","30.050506"],["-89.955118","30.050401"],["-89.955287","30.050296"],["-89.955456","30.050191"],["-89.955629","30.050092"],["-89.955803","30.049994"],["-89.955977","30.049895"],["-89.956150","30.049796"],["-89.956324","30.049697"],["-89.956498","30.049599"],["-89.956532","30.049579"],["-89.956677","30.049450"],["-89.956822","30.049321"],["-89.956889","30.049261"],["-89.957058","30.049157"],["-89.957228","30.049053"],["-89.957397","30.048948"],["-89.957566","30.048844"],["-89.957670","30.048780"],["-89.957845","30.048683"],["-89.957970","30.048616"],["-89.958095","30.048549"],["-89.958221","30.048482"],["-89.958346","30.048415"],["-89.958471","30.048347"],["-89.958596","30.048280"],["-89.958722","30.048213"],["-89.958847","30.048146"],["-89.958978","30.048128"],["-89.959109","30.048110"],["-89.959080","30.048060"],["-89.959230","30.047990"],["-89.959360","30.047930"],["-89.959490","30.047870"],["-89.959580","30.047820"],["-89.959765","30.047740"],["-89.959950","30.047660"],["-89.960140","30.047570"],["-89.960220","30.047540"],["-89.960370","30.047470"],["-89.960520","30.047400"],["-89.960560","30.047390"],["-89.960670","30.047340"],["-89.960780","30.047290"],["-89.960950","30.047250"],["-89.961030","30.047230"],["-89.961090","30.047230"],["-89.961140","30.047240"],["-89.961200","30.047250"],["-89.961270","30.047280"],["-89.961310","30.047300"],["-89.961380","30.047340"],["-89.961430","30.047370"],["-89.961480","30.047410"],["-89.961550","30.047470"],["-89.961570","30.047480"],["-89.961600","30.047500"],["-89.961620","30.047510"],["-89.961650","30.047520"],["-89.961670","30.047520"],["-89.961700","30.047530"],["-89.961730","30.047520"],["-89.961740","30.047520"],["-89.961810","30.047510"],["-89.961980","30.047400"],["-89.962085","30.047330"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957975","30.042198"],["-89.957900","30.042105"],["-89.957825","30.042013"],["-89.957750","30.041920"],["-89.957675","30.041828"],["-89.957600","30.041735"],["-89.957525","30.041643"],["-89.957450","30.041550"],["-89.957330","30.041400"],["-89.957230","30.041290"],["-89.957210","30.041260"],["-89.957115","30.041145"],["-89.957020","30.041030"],["-89.956910","30.040898"],["-89.956800","30.040765"],["-89.956690","30.040633"],["-89.956580","30.040500"],["-89.956457","30.040350"],["-89.956335","30.040200"],["-89.956212","30.040050"],["-89.956090","30.039900"],["-89.955987","30.039778"],["-89.955885","30.039655"],["-89.955782","30.039533"],["-89.955680","30.039410"],["-89.955580","30.039290"],["-89.955480","30.039160"],["-89.955380","30.039030"],["-89.955431","30.038995"],["-89.955380","30.039030"],["-89.955300","30.038930"],["-89.955220","30.038830"],["-89.955319","30.038766"],["-89.955418","30.038703"],["-89.955516","30.038639"],["-89.955615","30.038575"],["-89.955714","30.038511"],["-89.955813","30.038448"],["-89.955911","30.038384"],["-89.956010","30.038320"],["-89.956163","30.038220"],["-89.956315","30.038120"],["-89.956468","30.038020"],["-89.956620","30.037920"],["-89.956798","30.037810"],["-89.956975","30.037700"],["-89.957153","30.037590"],["-89.957330","30.037480"],["-89.957488","30.037380"],["-89.957645","30.037280"],["-89.957803","30.037180"],["-89.957960","30.037080"],["-89.957965","30.037094"],["-89.957960","30.037080"],["-89.958050","30.037030"],["-89.958183","30.036945"],["-89.958315","30.036860"],["-89.958448","30.036775"],["-89.958580","30.036690"],["-89.958690","30.036620"],["-89.958845","30.036523"],["-89.959000","30.036425"],["-89.959155","30.036328"],["-89.959310","30.036230"],["-89.959440","30.036150"],["-89.959535","30.036090"],["-89.959630","30.036030"],["-89.959795","30.035920"],["-89.959960","30.035810"],["-89.959990","30.035800"],["-89.960130","30.035720"],["-89.960280","30.035640"],["-89.960430","30.035560"],["-89.960580","30.035480"],["-89.960730","30.035400"],["-89.960800","30.035360"],["-89.960890","30.035310"],["-89.961020","30.035230"],["-89.961200","30.035120"],["-89.961270","30.035070"],["-89.961308","30.035108"],["-89.961270","30.035070"],["-89.961350","30.035020"],["-89.961445","30.034950"],["-89.961540","30.034880"],["-89.961650","30.034815"],["-89.961760","30.034750"],["-89.961770","30.034750"],["-89.961920","30.034660"],["-89.962060","30.034570"],["-89.962200","30.034480"],["-89.962370","30.034370"],["-89.962530","30.034285"],["-89.962690","30.034200"],["-89.962730","30.034180"],["-89.962845","30.034125"],["-89.962960","30.034070"],["-89.963120","30.034000"],["-89.963240","30.033950"],["-89.963375","30.033900"],["-89.963510","30.033850"],["-89.963620","30.033815"],["-89.963730","30.033780"],["-89.963860","30.033740"],["-89.964065","30.033695"],["-89.964270","30.033650"],["-89.964450","30.033610"],["-89.964655","30.033570"],["-89.964860","30.033530"],["-89.965015","30.033500"],["-89.965170","30.033470"],["-89.965190","30.033540"],["-89.965140","30.033552"],["-89.965190","30.033540"],["-89.965240","30.033710"],["-89.965280","30.033870"],["-89.965330","30.033990"],["-89.965380","30.034120"],["-89.965420","30.034200"],["-89.965540","30.034160"],["-89.965500","30.034070"],["-89.965460","30.033980"],["-89.965390","30.033810"],["-89.965350","30.033625"],["-89.965310","30.033440"],["-89.965433","30.033418"],["-89.965555","30.033395"],["-89.965678","30.033373"],["-89.965800","30.033350"],["-89.965923","30.033328"],["-89.966045","30.033305"],["-89.966168","30.033283"],["-89.966290","30.033260"],["-89.966390","30.033240"],["-89.966503","30.033219"],["-89.966615","30.033198"],["-89.966728","30.033176"],["-89.966840","30.033155"],["-89.966953","30.033134"],["-89.967065","30.033113"],["-89.967178","30.033091"],["-89.967290","30.033070"],["-89.967475","30.033040"],["-89.967660","30.033010"],["-89.967780","30.032990"],["-89.967795","30.033065"],["-89.967780","30.032990"],["-89.967900","30.032970"],["-89.967960","30.032960"],["-89.968030","30.032950"],["-89.968120","30.032950"],["-89.968290","30.032940"],["-89.968440","30.032935"],["-89.968590","30.032930"],["-89.968740","30.032935"],["-89.968890","30.032940"],["-89.969005","30.032950"],["-89.969120","30.032960"],["-89.969290","30.032980"],["-89.969480","30.033000"],["-89.969690","30.033040"],["-89.969880","30.033080"],["-89.970042","30.033120"],["-89.970205","30.033160"],["-89.970367","30.033200"],["-89.970530","30.033240"],["-89.970670","30.033270"],["-89.970810","30.033300"],["-89.970900","30.033310"],["-89.971090","30.033320"],["-89.971250","30.033330"],["-89.971350","30.033340"],["-89.971500","30.033330"],["-89.971640","30.033330"],["-89.971710","30.033320"],["-89.971820","30.033310"],["-89.971830","30.033310"],["-89.972040","30.033280"],["-89.972230","30.033240"],["-89.972390","30.033190"],["-89.972415","30.033263"],["-89.972390","30.033190"],["-89.972400","30.033190"],["-89.972540","30.033140"],["-89.972580","30.033130"],["-89.972730","30.033080"],["-89.972850","30.033030"],["-89.972940","30.032980"],["-89.973060","30.032920"],["-89.973180","30.032860"],["-89.973365","30.032760"],["-89.973550","30.032660"],["-89.973685","30.032575"],["-89.973820","30.032490"],["-89.973933","30.032420"],["-89.974045","30.032350"],["-89.974158","30.032280"],["-89.974270","30.032210"],["-89.974365","30.032155"],["-89.974460","30.032100"],["-89.974555","30.032045"],["-89.974650","30.031990"],["-89.974745","30.031935"],["-89.974840","30.031880"],["-89.974935","30.031825"],["-89.975030","30.031770"],["-89.975125","30.031719"],["-89.975220","30.031668"],["-89.975315","30.031616"],["-89.975410","30.031565"],["-89.975505","30.031514"],["-89.975600","30.031463"],["-89.975695","30.031411"],["-89.975790","30.031360"],["-89.975890","30.031300"],["-89.975950","30.031270"],["-89.976000","30.031230"],["-89.975920","30.031120"],["-89.975845","30.031005"],["-89.975770","30.030890"],["-89.975695","30.030775"],["-89.975620","30.030660"],["-89.975537","30.030540"],["-89.975455","30.030420"],["-89.975372","30.030300"],["-89.975290","30.030180"],["-89.975220","30.030075"],["-89.975150","30.029970"],["-89.975070","30.029840"],["-89.974990","30.029730"],["-89.974920","30.029640"],["-89.974960","30.029613"],["-89.974838","30.029583"],["-89.974716","30.029553"],["-89.974624","30.029610"],["-89.974532","30.029667"],["-89.974440","30.029723"],["-89.974348","30.029780"],["-89.974256","30.029836"],["-89.974164","30.029893"],["-89.974073","30.029950"],["-89.973981","30.030006"],["-89.973889","30.030063"],["-89.973797","30.030119"],["-89.973705","30.030176"],["-89.973613","30.030233"],["-89.973521","30.030289"],["-89.973430","30.030346"],["-89.973338","30.030402"],["-89.973246","30.030459"],["-89.973154","30.030516"],["-89.973062","30.030572"],["-89.972970","30.030629"],["-89.972878","30.030685"],["-89.972786","30.030742"],["-89.972695","30.030799"],["-89.972603","30.030855"],["-89.972511","30.030912"],["-89.972419","30.030968"],["-89.972327","30.031025"],["-89.972235","30.031082"],["-89.972143","30.031138"],["-89.972052","30.031195"],["-89.971960","30.031251"],["-89.971868","30.031308"],["-89.971776","30.031365"],["-89.971889","30.031520"],["-89.972001","30.031676"],["-89.972114","30.031831"],["-89.972227","30.031987"],["-89.972193","30.032080"],["-89.972160","30.032174"],["-89.972160","30.032174"]]}]}},{"type":"Feature","properties":{"route_id":"62-O","agency_id":"1","route_short_name":"62-O","route_long_name":"Morrison OWL","route_type":"3","route_color":"#1f2d84","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[]},{"type":"LineString","coordinates":[]},{"type":"MultiPoint","coordinates":[]},{"type":"LineString","coordinates":[]}]}},{"type":"Feature","properties":{"route_id":"66","agency_id":"1","route_short_name":"66","route_long_name":"Hayne Loop","route_type":"3","route_color":"#af7022","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.062033","30.028610"],["-90.052046","30.026440"],["-90.045311","30.028300"],["-90.045461","30.029128"],["-90.021668","30.034390"],["-90.019620","30.034946"],["-90.017330","30.035640"],["-90.013662","30.036791"],["-90.010751","30.037939"],["-90.007830","30.038933"],["-90.002267","30.041038"],["-89.998673","30.042513"],["-89.996799","30.043349"],["-89.993661","30.044732"],["-89.990078","30.046350"],["-89.987779","30.047413"],["-89.985480","30.048522"],["-89.984061","30.049131"],["-89.980437","30.050921"],["-89.978738","30.051765"],["-89.977051","30.052781"],["-89.975592","30.053562"],["-89.973977","30.054604"],["-89.971275","30.056110"],["-89.983068","30.042017"],["-89.986878","30.040127"],["-89.989819","30.038773"],["-89.996592","30.035889"],["-90.001760","30.033786"],["-90.004816","30.032656"],["-90.006743","30.031936"],["-90.012394","30.029969"],["-90.016277","30.028719"],["-90.020801","30.027416"],["-90.023661","30.026566"],["-89.993143","30.037282"],["-89.977783","30.039649"],["-89.979731","30.042904"],["-90.025735","30.029882"],["-90.065412","30.027973"],["-89.985444","30.040786"],["-90.052345","30.026204"],["-90.026841","30.032689"],["-89.959222","30.043676"],["-89.962511","30.047538"],["-89.963389","30.048625"],["-89.972160","30.032174"],["-89.965666","30.051320"],["-89.969280","30.055757"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972302","30.032306"],["-89.972443","30.032437"],["-89.972585","30.032569"],["-89.972727","30.032700"],["-89.972790","30.032759"],["-89.972896","30.032914"],["-89.972949","30.032990"],["-89.973065","30.033139"],["-89.973181","30.033288"],["-89.973297","30.033438"],["-89.973416","30.033585"],["-89.973500","30.033690"],["-89.973613","30.033841"],["-89.973709","30.033970"],["-89.973759","30.034029"],["-89.973876","30.034178"],["-89.973992","30.034327"],["-89.974108","30.034476"],["-89.974180","30.034569"],["-89.974298","30.034717"],["-89.974379","30.034819"],["-89.974494","30.034969"],["-89.974610","30.035118"],["-89.974725","30.035268"],["-89.974820","30.035390"],["-89.974923","30.035546"],["-89.974959","30.035600"],["-89.975069","30.035753"],["-89.975178","30.035906"],["-89.975210","30.035950"],["-89.975314","30.036106"],["-89.975350","30.036159"],["-89.975409","30.036249"],["-89.975520","30.036401"],["-89.975631","30.036553"],["-89.975710","30.036660"],["-89.975820","30.036813"],["-89.975930","30.036965"],["-89.975969","30.037020"],["-89.976079","30.037173"],["-89.976188","30.037326"],["-89.976297","30.037479"],["-89.976340","30.037539"],["-89.976455","30.037689"],["-89.976571","30.037838"],["-89.976610","30.037889"],["-89.976721","30.038041"],["-89.976832","30.038193"],["-89.976910","30.038300"],["-89.977012","30.038457"],["-89.977113","30.038614"],["-89.977215","30.038771"],["-89.977316","30.038928"],["-89.977418","30.039085"],["-89.977519","30.039242"],["-89.977621","30.039398"],["-89.977722","30.039555"],["-89.977783","30.039649"],["-89.977940","30.039766"],["-89.978030","30.039833"],["-89.978140","30.039985"],["-89.978250","30.040138"],["-89.978361","30.040290"],["-89.978471","30.040443"],["-89.978581","30.040595"],["-89.978691","30.040748"],["-89.978801","30.040900"],["-89.978911","30.041053"],["-89.978960","30.041120"],["-89.979065","30.041275"],["-89.979170","30.041431"],["-89.979230","30.041520"],["-89.979290","30.041620"],["-89.979375","30.041784"],["-89.979419","30.041870"],["-89.979469","30.041990"],["-89.979509","30.042070"],["-89.979569","30.042242"],["-89.979630","30.042414"],["-89.979660","30.042500"],["-89.979691","30.042678"],["-89.979723","30.042856"],["-89.979731","30.042904"],["-89.979859","30.043045"],["-89.979980","30.043178"],["-89.980070","30.043320"],["-89.980254","30.043237"],["-89.980438","30.043152"],["-89.980621","30.043068"],["-89.980750","30.043009"],["-89.980937","30.042930"],["-89.981030","30.042890"],["-89.981214","30.042806"],["-89.981397","30.042722"],["-89.981581","30.042638"],["-89.981750","30.042560"],["-89.981932","30.042473"],["-89.982114","30.042386"],["-89.982296","30.042299"],["-89.982440","30.042230"],["-89.982633","30.042164"],["-89.982827","30.042099"],["-89.983020","30.042033"],["-89.983068","30.042017"],["-89.983212","30.041887"],["-89.983295","30.041812"],["-89.983470","30.041715"],["-89.983644","30.041617"],["-89.983800","30.041530"],["-89.983974","30.041432"],["-89.984148","30.041334"],["-89.984323","30.041236"],["-89.984440","30.041170"],["-89.984623","30.041085"],["-89.984806","30.041000"],["-89.984988","30.040913"],["-89.985080","30.040869"],["-89.985281","30.040823"],["-89.985444","30.040786"],["-89.985611","30.040679"],["-89.985778","30.040572"],["-89.985850","30.040526"],["-89.986035","30.040444"],["-89.986180","30.040380"],["-89.986372","30.040311"],["-89.986563","30.040241"],["-89.986755","30.040172"],["-89.986878","30.040127"],["-89.987047","30.040022"],["-89.987216","30.039918"],["-89.987284","30.039876"],["-89.987466","30.039789"],["-89.987610","30.039720"],["-89.987792","30.039633"],["-89.987974","30.039546"],["-89.988155","30.039458"],["-89.988300","30.039389"],["-89.988419","30.039339"],["-89.988603","30.039255"],["-89.988786","30.039171"],["-89.988970","30.039087"],["-89.989154","30.039003"],["-89.989347","30.038936"],["-89.989540","30.038870"],["-89.989733","30.038803"],["-89.989819","30.038773"],["-89.989972","30.038651"],["-89.990054","30.038586"],["-89.990238","30.038502"],["-89.990422","30.038419"],["-89.990550","30.038360"],["-89.990735","30.038279"],["-89.990921","30.038198"],["-89.991106","30.038117"],["-89.991292","30.038036"],["-89.991477","30.037955"],["-89.991663","30.037874"],["-89.991848","30.037793"],["-89.992034","30.037712"],["-89.992219","30.037631"],["-89.992290","30.037600"],["-89.992475","30.037518"],["-89.992660","30.037437"],["-89.992855","30.037374"],["-89.993050","30.037312"],["-89.993143","30.037282"],["-89.993313","30.037179"],["-89.993410","30.037120"],["-89.993596","30.037039"],["-89.993782","30.036959"],["-89.993967","30.036878"],["-89.994010","30.036860"],["-89.994197","30.036781"],["-89.994383","30.036702"],["-89.994570","30.036623"],["-89.994756","30.036544"],["-89.994943","30.036464"],["-89.995129","30.036385"],["-89.995260","30.036330"],["-89.995454","30.036266"],["-89.995648","30.036202"],["-89.995842","30.036137"],["-89.996036","30.036073"],["-89.996230","30.036009"],["-89.996424","30.035945"],["-89.996592","30.035889"],["-89.996747","30.035769"],["-89.996836","30.035700"],["-89.996930","30.035660"],["-89.997114","30.035577"],["-89.997299","30.035494"],["-89.997483","30.035411"],["-89.997667","30.035328"],["-89.997819","30.035259"],["-89.998003","30.035176"],["-89.998188","30.035093"],["-89.998372","30.035010"],["-89.998556","30.034927"],["-89.998740","30.034844"],["-89.998840","30.034799"],["-89.999032","30.034730"],["-89.999224","30.034661"],["-89.999415","30.034591"],["-89.999560","30.034539"],["-89.999748","30.034463"],["-89.999930","30.034389"],["-90.000122","30.034321"],["-90.000315","30.034253"],["-90.000505","30.034181"],["-90.000695","30.034109"],["-90.000886","30.034037"],["-90.001077","30.033966"],["-90.001267","30.033894"],["-90.001330","30.033870"],["-90.001533","30.033830"],["-90.001735","30.033791"],["-90.001760","30.033786"],["-90.001934","30.033687"],["-90.002107","30.033589"],["-90.002172","30.033552"],["-90.002364","30.033484"],["-90.002557","30.033416"],["-90.002660","30.033380"],["-90.002850","30.033307"],["-90.003040","30.033235"],["-90.003230","30.033162"],["-90.003420","30.033090"],["-90.003612","30.033020"],["-90.003804","30.032951"],["-90.003995","30.032881"],["-90.004187","30.032811"],["-90.004386","30.032762"],["-90.004586","30.032713"],["-90.004786","30.032663"],["-90.004816","30.032656"],["-90.004978","30.032543"],["-90.005071","30.032479"],["-90.005120","30.032460"],["-90.005312","30.032392"],["-90.005505","30.032324"],["-90.005697","30.032256"],["-90.005889","30.032188"],["-90.005970","30.032160"],["-90.006167","30.032103"],["-90.006364","30.032046"],["-90.006561","30.031989"],["-90.006743","30.031936"],["-90.006901","30.031819"],["-90.006992","30.031752"],["-90.007184","30.031684"],["-90.007377","30.031616"],["-90.007569","30.031548"],["-90.007620","30.031530"],["-90.007812","30.031462"],["-90.008005","30.031394"],["-90.008197","30.031326"],["-90.008389","30.031258"],["-90.008440","30.031240"],["-90.008633","30.031173"],["-90.008826","30.031106"],["-90.008930","30.031070"],["-90.009127","30.031012"],["-90.009321","30.030949"],["-90.009410","30.030920"],["-90.009602","30.030852"],["-90.009749","30.030800"],["-90.009944","30.030739"],["-90.010140","30.030677"],["-90.010335","30.030616"],["-90.010530","30.030555"],["-90.010725","30.030493"],["-90.010921","30.030432"],["-90.011116","30.030371"],["-90.011311","30.030309"],["-90.011507","30.030248"],["-90.011702","30.030186"],["-90.011897","30.030125"],["-90.012092","30.030064"],["-90.012288","30.030002"],["-90.012394","30.029969"],["-90.012572","30.029876"],["-90.012744","30.029786"],["-90.012939","30.029724"],["-90.013134","30.029661"],["-90.013328","30.029598"],["-90.013523","30.029535"],["-90.013718","30.029473"],["-90.013912","30.029410"],["-90.014107","30.029347"],["-90.014302","30.029285"],["-90.014497","30.029222"],["-90.014691","30.029159"],["-90.014886","30.029096"],["-90.015081","30.029034"],["-90.015275","30.028971"],["-90.015340","30.028950"],["-90.015540","30.028901"],["-90.015740","30.028851"],["-90.015939","30.028802"],["-90.016139","30.028753"],["-90.016277","30.028719"],["-90.016461","30.028636"],["-90.016577","30.028584"],["-90.016774","30.028527"],["-90.016972","30.028471"],["-90.017169","30.028414"],["-90.017366","30.028358"],["-90.017563","30.028301"],["-90.017760","30.028245"],["-90.017957","30.028188"],["-90.018155","30.028132"],["-90.018352","30.028075"],["-90.018549","30.028019"],["-90.018746","30.027962"],["-90.018943","30.027905"],["-90.019140","30.027848"],["-90.019338","30.027791"],["-90.019535","30.027734"],["-90.019730","30.027674"],["-90.019926","30.027613"],["-90.020122","30.027553"],["-90.020317","30.027492"],["-90.020390","30.027470"],["-90.020595","30.027443"],["-90.020801","30.027416"],["-90.020987","30.027336"],["-90.021173","30.027256"],["-90.021359","30.027176"],["-90.021420","30.027150"],["-90.021616","30.027090"],["-90.021812","30.027030"],["-90.022008","30.026971"],["-90.022204","30.026911"],["-90.022370","30.026860"],["-90.022567","30.026804"],["-90.022765","30.026748"],["-90.022900","30.026710"],["-90.023103","30.026672"],["-90.023306","30.026633"],["-90.023509","30.026595"],["-90.023661","30.026566"],["-90.023831","30.026463"],["-90.023928","30.026404"],["-90.023979","30.026390"],["-90.024050","30.026369"],["-90.024247","30.026311"],["-90.024443","30.026253"],["-90.024520","30.026230"],["-90.024581","30.026402"],["-90.024642","30.026574"],["-90.024703","30.026746"],["-90.024764","30.026918"],["-90.024800","30.027020"],["-90.024864","30.027191"],["-90.024928","30.027362"],["-90.024992","30.027533"],["-90.025056","30.027705"],["-90.025080","30.027770"],["-90.025143","30.027941"],["-90.025207","30.028113"],["-90.025270","30.028284"],["-90.025334","30.028455"],["-90.025380","30.028580"],["-90.025442","30.028752"],["-90.025503","30.028924"],["-90.025565","30.029095"],["-90.025626","30.029267"],["-90.025670","30.029390"],["-90.025730","30.029562"],["-90.025733","30.029742"],["-90.025735","30.029882"],["-90.025847","30.030034"],["-90.025940","30.030160"],["-90.026005","30.030331"],["-90.026069","30.030502"],["-90.026134","30.030673"],["-90.026199","30.030844"],["-90.026264","30.031015"],["-90.026328","30.031186"],["-90.026387","30.031358"],["-90.026446","30.031531"],["-90.026505","30.031703"],["-90.026564","30.031876"],["-90.026622","30.032048"],["-90.026681","30.032221"],["-90.026740","30.032393"],["-90.026799","30.032566"],["-90.026841","30.032689"],["-90.026920","30.032855"],["-90.026962","30.032945"],["-90.027005","30.033121"],["-90.027047","30.033297"],["-90.027154","30.033451"],["-90.027209","30.033520"],["-90.027370","30.033590"],["-90.027470","30.033640"],["-90.027619","30.033600"],["-90.027817","30.033545"],["-90.028015","30.033490"],["-90.028159","30.033450"],["-90.028356","30.033394"],["-90.028479","30.033360"],["-90.028659","30.033309"],["-90.028820","30.033270"],["-90.029017","30.033214"],["-90.029215","30.033158"],["-90.029412","30.033102"],["-90.029610","30.033046"],["-90.029807","30.032990"],["-90.030005","30.032934"],["-90.030202","30.032878"],["-90.030269","30.032859"],["-90.030449","30.032819"],["-90.030649","30.032771"],["-90.030740","30.032749"],["-90.030940","30.032700"],["-90.031140","30.032652"],["-90.031340","30.032603"],["-90.031540","30.032555"],["-90.031740","30.032506"],["-90.031940","30.032457"],["-90.032140","30.032409"],["-90.032340","30.032360"],["-90.032540","30.032312"],["-90.032670","30.032280"],["-90.032870","30.032231"],["-90.033070","30.032182"],["-90.033270","30.032133"],["-90.033470","30.032084"],["-90.033669","30.032035"],["-90.033869","30.031986"],["-90.034069","30.031937"],["-90.034220","30.031900"],["-90.034419","30.031849"],["-90.034619","30.031799"],["-90.034818","30.031748"],["-90.035017","30.031697"],["-90.035217","30.031647"],["-90.035400","30.031600"],["-90.035599","30.031549"],["-90.035799","30.031499"],["-90.035950","30.031460"],["-90.036151","30.031413"],["-90.036351","30.031367"],["-90.036552","30.031320"],["-90.036753","30.031274"],["-90.036953","30.031227"],["-90.037154","30.031181"],["-90.037355","30.031134"],["-90.037555","30.031087"],["-90.037630","30.031070"],["-90.037830","30.031021"],["-90.038030","30.030972"],["-90.038230","30.030924"],["-90.038430","30.030875"],["-90.038490","30.030860"],["-90.038690","30.030810"],["-90.038810","30.030779"],["-90.039010","30.030730"],["-90.039210","30.030681"],["-90.039410","30.030633"],["-90.039610","30.030584"],["-90.039810","30.030535"],["-90.040010","30.030486"],["-90.040210","30.030438"],["-90.040410","30.030390"],["-90.040610","30.030342"],["-90.040811","30.030295"],["-90.041010","30.030245"],["-90.041210","30.030195"],["-90.041410","30.030145"],["-90.041609","30.030095"],["-90.041809","30.030045"],["-90.042008","30.029995"],["-90.042208","30.029945"],["-90.042408","30.029896"],["-90.042607","30.029846"],["-90.042815","30.029834"],["-90.043022","30.029823"],["-90.043070","30.029820"],["-90.043210","30.029800"],["-90.043415","30.029773"],["-90.043621","30.029746"],["-90.043670","30.029740"],["-90.043876","30.029718"],["-90.044050","30.029700"],["-90.044254","30.029666"],["-90.044451","30.029610"],["-90.044649","30.029554"],["-90.044700","30.029540"],["-90.044884","30.029456"],["-90.045030","30.029390"],["-90.045196","30.029282"],["-90.045369","30.029182"],["-90.045461","30.029128"],["-90.045605","30.028999"],["-90.045750","30.028869"],["-90.045903","30.028748"],["-90.046058","30.028628"],["-90.046212","30.028507"],["-90.046367","30.028388"],["-90.046508","30.028255"],["-90.046648","30.028123"],["-90.046788","30.027990"],["-90.046928","30.027857"],["-90.046979","30.027809"],["-90.047123","30.027679"],["-90.047200","30.027610"],["-90.047358","30.027493"],["-90.047430","30.027440"],["-90.047601","30.027338"],["-90.047700","30.027280"],["-90.047889","30.027205"],["-90.048000","30.027160"],["-90.048197","30.027102"],["-90.048309","30.027069"],["-90.048513","30.027033"],["-90.048710","30.026999"],["-90.048914","30.026964"],["-90.049118","30.026930"],["-90.049299","30.026899"],["-90.049503","30.026863"],["-90.049706","30.026827"],["-90.049910","30.026791"],["-90.050113","30.026755"],["-90.050316","30.026718"],["-90.050520","30.026682"],["-90.050724","30.026646"],["-90.050927","30.026610"],["-90.051040","30.026590"],["-90.051243","30.026553"],["-90.051320","30.026539"],["-90.051524","30.026503"],["-90.051640","30.026480"],["-90.051846","30.026460"],["-90.052046","30.026440"],["-90.052030","30.026390"],["-90.052080","30.026380"],["-90.052260","30.026380"],["-90.052395","30.026358"],["-90.052530","30.026335"],["-90.052665","30.026313"],["-90.052800","30.026290"],["-90.052960","30.026265"],["-90.053120","30.026240"],["-90.053320","30.026205"],["-90.053520","30.026170"],["-90.053620","30.026130"],["-90.053750","30.026110"],["-90.053918","30.026078"],["-90.054085","30.026045"],["-90.054253","30.026013"],["-90.054420","30.025980"],["-90.054460","30.025970"],["-90.054583","30.025953"],["-90.054705","30.025935"],["-90.054828","30.025918"],["-90.054950","30.025900"],["-90.055098","30.025880"],["-90.055245","30.025860"],["-90.055393","30.025840"],["-90.055540","30.025820"],["-90.055663","30.025804"],["-90.055785","30.025788"],["-90.055908","30.025771"],["-90.056030","30.025755"],["-90.056153","30.025739"],["-90.056275","30.025723"],["-90.056398","30.025706"],["-90.056520","30.025690"],["-90.056665","30.025670"],["-90.056810","30.025650"],["-90.057005","30.025620"],["-90.057200","30.025590"],["-90.057410","30.025560"],["-90.057620","30.025530"],["-90.057805","30.025505"],["-90.057990","30.025480"],["-90.058175","30.025455"],["-90.058360","30.025430"],["-90.058495","30.025413"],["-90.058630","30.025395"],["-90.058765","30.025378"],["-90.058900","30.025360"],["-90.059053","30.025345"],["-90.059205","30.025330"],["-90.059358","30.025315"],["-90.059510","30.025300"],["-90.059685","30.025285"],["-90.059860","30.025270"],["-90.060065","30.025255"],["-90.060270","30.025240"],["-90.060350","30.025240"],["-90.060480","30.025250"],["-90.060680","30.025260"],["-90.060800","30.025265"],["-90.060920","30.025270"],["-90.061130","30.025250"],["-90.061140","30.025370"],["-90.061150","30.025490"],["-90.061160","30.025610"],["-90.061170","30.025730"],["-90.061180","30.025848"],["-90.061190","30.025965"],["-90.061200","30.026083"],["-90.061210","30.026200"],["-90.061222","30.026370"],["-90.061235","30.026540"],["-90.061247","30.026710"],["-90.061260","30.026880"],["-90.061275","30.027050"],["-90.061290","30.027220"],["-90.061305","30.027390"],["-90.061320","30.027560"],["-90.061332","30.027715"],["-90.061345","30.027870"],["-90.061357","30.028025"],["-90.061370","30.028180"],["-90.061382","30.028335"],["-90.061395","30.028490"],["-90.061407","30.028645"],["-90.061420","30.028800"],["-90.061435","30.028960"],["-90.061450","30.029120"],["-90.061480","30.029120"],["-90.061530","30.029110"],["-90.061650","30.029100"],["-90.061830","30.029080"],["-90.061940","30.029053"],["-90.062050","30.029025"],["-90.062160","30.028998"],["-90.062270","30.028970"],["-90.062380","30.028943"],["-90.062490","30.028915"],["-90.062600","30.028888"],["-90.062710","30.028860"],["-90.062870","30.028820"],["-90.062880","30.028820"],["-90.063080","30.028780"],["-90.063190","30.028760"],["-90.063300","30.028740"],["-90.063450","30.028700"],["-90.063600","30.028660"],["-90.063750","30.028620"],["-90.063900","30.028580"],["-90.064080","30.028540"],["-90.064150","30.028520"],["-90.064293","30.028483"],["-90.064435","30.028445"],["-90.064578","30.028408"],["-90.064720","30.028370"],["-90.064870","30.028305"],["-90.065020","30.028240"],["-90.065145","30.028235"],["-90.065270","30.028230"],["-90.065310","30.028220"],["-90.065340","30.028200"],["-90.065360","30.028170"],["-90.065370","30.028140"],["-90.065380","30.028100"],["-90.065380","30.028060"],["-90.065370","30.028040"],["-90.065380","30.028020"],["-90.065370","30.027990"],["-90.065370","30.027980"],["-90.065412","30.027973"],["-90.065370","30.027980"],["-90.065370","30.027970"],["-90.065350","30.027950"],["-90.065330","30.027930"],["-90.065290","30.027900"],["-90.065250","30.027890"],["-90.065210","30.027890"],["-90.065190","30.027890"],["-90.065160","30.027890"],["-90.065130","30.027900"],["-90.064930","30.027950"],["-90.064808","30.027980"],["-90.064685","30.028010"],["-90.064563","30.028040"],["-90.064440","30.028070"],["-90.064330","30.028100"],["-90.064230","30.028130"],["-90.064060","30.028170"],["-90.063890","30.028210"],["-90.063710","30.028250"],["-90.063530","30.028290"],["-90.063350","30.028330"],["-90.063170","30.028370"],["-90.062975","30.028435"],["-90.062780","30.028500"],["-90.062760","30.028500"],["-90.062585","30.028548"],["-90.062410","30.028595"],["-90.062235","30.028643"],["-90.062060","30.028690"],["-90.062033","30.028610"],["-90.062060","30.028690"],["-90.061970","30.028710"],["-90.061800","30.028750"],["-90.061787","30.028599"],["-90.061775","30.028448"],["-90.061762","30.028296"],["-90.061750","30.028145"],["-90.061737","30.027994"],["-90.061725","30.027843"],["-90.061712","30.027691"],["-90.061700","30.027540"],["-90.061690","30.027400"],["-90.061680","30.027260"],["-90.061670","30.027120"],["-90.061660","30.026980"],["-90.061651","30.026879"],["-90.061642","30.026778"],["-90.061634","30.026676"],["-90.061625","30.026575"],["-90.061616","30.026474"],["-90.061607","30.026373"],["-90.061599","30.026271"],["-90.061590","30.026170"],["-90.061581","30.026051"],["-90.061572","30.025933"],["-90.061564","30.025814"],["-90.061555","30.025695"],["-90.061546","30.025576"],["-90.061537","30.025458"],["-90.061529","30.025339"],["-90.061520","30.025220"],["-90.061510","30.025120"],["-90.061500","30.025020"],["-90.061310","30.025030"],["-90.061120","30.025040"],["-90.060950","30.025050"],["-90.060795","30.025070"],["-90.060640","30.025090"],["-90.060450","30.025130"],["-90.060320","30.025150"],["-90.060140","30.025160"],["-90.059995","30.025170"],["-90.059850","30.025180"],["-90.059760","30.025190"],["-90.059710","30.025190"],["-90.059500","30.025210"],["-90.059345","30.025225"],["-90.059190","30.025240"],["-90.059035","30.025255"],["-90.058880","30.025270"],["-90.058749","30.025288"],["-90.058619","30.025305"],["-90.058488","30.025323"],["-90.058358","30.025340"],["-90.058227","30.025358"],["-90.058096","30.025375"],["-90.057966","30.025393"],["-90.057835","30.025410"],["-90.057704","30.025428"],["-90.057574","30.025445"],["-90.057443","30.025463"],["-90.057313","30.025480"],["-90.057182","30.025498"],["-90.057051","30.025515"],["-90.056921","30.025533"],["-90.056790","30.025550"],["-90.056650","30.025570"],["-90.056510","30.025590"],["-90.056388","30.025609"],["-90.056265","30.025628"],["-90.056143","30.025646"],["-90.056020","30.025665"],["-90.055898","30.025684"],["-90.055775","30.025703"],["-90.055653","30.025721"],["-90.055530","30.025740"],["-90.055383","30.025758"],["-90.055235","30.025775"],["-90.055088","30.025793"],["-90.054940","30.025810"],["-90.054825","30.025825"],["-90.054710","30.025840"],["-90.054595","30.025855"],["-90.054480","30.025870"],["-90.054400","30.025880"],["-90.054285","30.025900"],["-90.054170","30.025920"],["-90.054055","30.025940"],["-90.053940","30.025960"],["-90.053795","30.025985"],["-90.053650","30.026010"],["-90.053600","30.026020"],["-90.053500","30.026030"],["-90.053313","30.026065"],["-90.053125","30.026100"],["-90.052938","30.026135"],["-90.052750","30.026170"],["-90.052610","30.026195"],["-90.052470","30.026220"],["-90.052345","30.026204"],["-90.052145","30.026253"],["-90.051945","30.026301"],["-90.051742","30.026340"],["-90.051539","30.026377"],["-90.051336","30.026414"],["-90.051199","30.026439"],["-90.050995","30.026475"],["-90.050792","30.026512"],["-90.050589","30.026548"],["-90.050385","30.026585"],["-90.050182","30.026621"],["-90.049978","30.026657"],["-90.049775","30.026694"],["-90.049571","30.026730"],["-90.049368","30.026767"],["-90.049164","30.026802"],["-90.048961","30.026837"],["-90.048757","30.026872"],["-90.048553","30.026907"],["-90.048420","30.026930"],["-90.048218","30.026972"],["-90.048016","30.027015"],["-90.047820","30.027075"],["-90.047625","30.027136"],["-90.047429","30.027196"],["-90.047289","30.027240"],["-90.047094","30.027301"],["-90.046940","30.027349"],["-90.046753","30.027428"],["-90.046630","30.027480"],["-90.046457","30.027580"],["-90.046389","30.027619"],["-90.046227","30.027732"],["-90.046159","30.027779"],["-90.046007","30.027902"],["-90.045856","30.028025"],["-90.045676","30.028116"],["-90.045497","30.028206"],["-90.045311","30.028300"],["-90.045201","30.028452"],["-90.045090","30.028605"],["-90.045044","30.028669"],["-90.044889","30.028788"],["-90.044733","30.028907"],["-90.044577","30.029027"],["-90.044415","30.029139"],["-90.044340","30.029190"],["-90.044167","30.029290"],["-90.043994","30.029389"],["-90.043940","30.029420"],["-90.043752","30.029496"],["-90.043556","30.029557"],["-90.043361","30.029619"],["-90.043166","30.029680"],["-90.042970","30.029739"],["-90.042773","30.029797"],["-90.042630","30.029840"],["-90.042430","30.029890"],["-90.042231","30.029940"],["-90.042031","30.029990"],["-90.041832","30.030040"],["-90.041632","30.030089"],["-90.041432","30.030139"],["-90.041233","30.030189"],["-90.041033","30.030239"],["-90.040834","30.030289"],["-90.040633","30.030336"],["-90.040433","30.030384"],["-90.040233","30.030432"],["-90.040039","30.030479"],["-90.039839","30.030528"],["-90.039639","30.030577"],["-90.039439","30.030626"],["-90.039239","30.030675"],["-90.039039","30.030724"],["-90.038840","30.030773"],["-90.038640","30.030823"],["-90.038490","30.030860"],["-90.038290","30.030909"],["-90.038090","30.030958"],["-90.037890","30.031006"],["-90.037690","30.031055"],["-90.037630","30.031070"],["-90.037429","30.031117"],["-90.037229","30.031163"],["-90.037028","30.031210"],["-90.036827","30.031256"],["-90.036627","30.031303"],["-90.036426","30.031349"],["-90.036225","30.031396"],["-90.036025","30.031443"],["-90.035950","30.031460"],["-90.035751","30.031511"],["-90.035551","30.031561"],["-90.035400","30.031600"],["-90.035201","30.031651"],["-90.035001","30.031701"],["-90.034802","30.031752"],["-90.034603","30.031803"],["-90.034403","30.031853"],["-90.034220","30.031900"],["-90.034020","30.031949"],["-90.033820","30.031998"],["-90.033620","30.032047"],["-90.033420","30.032096"],["-90.033220","30.032144"],["-90.033020","30.032193"],["-90.032820","30.032242"],["-90.032670","30.032279"],["-90.032470","30.032328"],["-90.032270","30.032376"],["-90.032070","30.032425"],["-90.031870","30.032474"],["-90.031670","30.032523"],["-90.031470","30.032571"],["-90.031270","30.032620"],["-90.031070","30.032669"],["-90.030870","30.032717"],["-90.030740","30.032749"],["-90.030540","30.032797"],["-90.030449","30.032819"],["-90.030270","30.032860"],["-90.030073","30.032916"],["-90.029875","30.032971"],["-90.029677","30.033027"],["-90.029480","30.033083"],["-90.029282","30.033139"],["-90.029085","30.033194"],["-90.028887","30.033250"],["-90.028820","30.033269"],["-90.028659","30.033309"],["-90.028479","30.033360"],["-90.028282","30.033416"],["-90.028159","30.033450"],["-90.027961","30.033505"],["-90.027763","30.033560"],["-90.027620","30.033600"],["-90.027470","30.033640"],["-90.027370","30.033590"],["-90.027240","30.033540"],["-90.027159","30.033459"],["-90.027048","30.033307"],["-90.027006","30.033131"],["-90.026964","30.032955"],["-90.026922","30.032778"],["-90.026725","30.032835"],["-90.026527","30.032891"],["-90.026390","30.032930"],["-90.026200","30.033002"],["-90.026020","30.033070"],["-90.025837","30.033155"],["-90.025654","30.033241"],["-90.025530","30.033299"],["-90.025346","30.033382"],["-90.025148","30.033437"],["-90.025022","30.033475"],["-90.024896","30.033512"],["-90.024770","30.033550"],["-90.024644","30.033588"],["-90.024518","30.033626"],["-90.024392","30.033663"],["-90.024266","30.033701"],["-90.024140","30.033739"],["-90.024014","30.033777"],["-90.023888","30.033814"],["-90.023762","30.033852"],["-90.023636","30.033890"],["-90.023510","30.033928"],["-90.023383","30.033965"],["-90.023257","30.034003"],["-90.023131","30.034041"],["-90.022948","30.034084"],["-90.022766","30.034128"],["-90.022583","30.034172"],["-90.022400","30.034215"],["-90.022217","30.034259"],["-90.022034","30.034303"],["-90.021851","30.034346"],["-90.021668","30.034390"],["-90.021536","30.034459"],["-90.021404","30.034528"],["-90.021215","30.034592"],["-90.021026","30.034656"],["-90.020837","30.034720"],["-90.020648","30.034784"],["-90.020459","30.034848"],["-90.020269","30.034912"],["-90.020080","30.034975"],["-90.019891","30.035039"],["-90.019756","30.034993"],["-90.019620","30.034946"],["-90.019466","30.035067"],["-90.019312","30.035188"],["-90.019205","30.035220"],["-90.019097","30.035253"],["-90.018990","30.035285"],["-90.018883","30.035318"],["-90.018775","30.035350"],["-90.018668","30.035383"],["-90.018561","30.035415"],["-90.018454","30.035448"],["-90.018346","30.035480"],["-90.018239","30.035513"],["-90.018132","30.035545"],["-90.018024","30.035578"],["-90.017917","30.035610"],["-90.017810","30.035643"],["-90.017703","30.035675"],["-90.017595","30.035708"],["-90.017463","30.035674"],["-90.017330","30.035640"],["-90.017211","30.035755"],["-90.017091","30.035871"],["-90.016958","30.035918"],["-90.016826","30.035965"],["-90.016693","30.036012"],["-90.016560","30.036059"],["-90.016427","30.036106"],["-90.016294","30.036153"],["-90.016162","30.036200"],["-90.016029","30.036247"],["-90.015890","30.036293"],["-90.015752","30.036340"],["-90.015613","30.036386"],["-90.015475","30.036432"],["-90.015337","30.036479"],["-90.015198","30.036525"],["-90.015060","30.036572"],["-90.014921","30.036618"],["-90.014783","30.036665"],["-90.014644","30.036711"],["-90.014506","30.036758"],["-90.014367","30.036804"],["-90.014229","30.036850"],["-90.014090","30.036897"],["-90.013952","30.036943"],["-90.013813","30.036990"],["-90.013738","30.036890"],["-90.013662","30.036791"],["-90.013596","30.036934"],["-90.013529","30.037078"],["-90.013394","30.037126"],["-90.013260","30.037173"],["-90.013125","30.037221"],["-90.012990","30.037268"],["-90.012855","30.037316"],["-90.012720","30.037364"],["-90.012586","30.037411"],["-90.012451","30.037459"],["-90.012316","30.037506"],["-90.012181","30.037554"],["-90.012046","30.037602"],["-90.011912","30.037649"],["-90.011777","30.037697"],["-90.011642","30.037744"],["-90.011507","30.037792"],["-90.011373","30.037840"],["-90.011217","30.037864"],["-90.011062","30.037889"],["-90.010906","30.037914"],["-90.010751","30.037939"],["-90.010625","30.038036"],["-90.010498","30.038132"],["-90.010386","30.038173"],["-90.010273","30.038213"],["-90.010160","30.038253"],["-90.010048","30.038294"],["-90.009935","30.038334"],["-90.009822","30.038374"],["-90.009710","30.038415"],["-90.009597","30.038455"],["-90.009484","30.038495"],["-90.009372","30.038536"],["-90.009259","30.038576"],["-90.009146","30.038616"],["-90.009034","30.038657"],["-90.008921","30.038697"],["-90.008808","30.038737"],["-90.008696","30.038778"],["-90.008544","30.038833"],["-90.008393","30.038889"],["-90.008241","30.038945"],["-90.008090","30.039001"],["-90.007960","30.038967"],["-90.007830","30.038933"],["-90.007756","30.039032"],["-90.007682","30.039131"],["-90.007572","30.039174"],["-90.007463","30.039217"],["-90.007353","30.039260"],["-90.007243","30.039304"],["-90.007134","30.039347"],["-90.007024","30.039390"],["-90.006914","30.039433"],["-90.006805","30.039477"],["-90.006695","30.039520"],["-90.006586","30.039563"],["-90.006476","30.039606"],["-90.006366","30.039650"],["-90.006257","30.039693"],["-90.006147","30.039736"],["-90.006037","30.039779"],["-90.005928","30.039823"],["-90.005759","30.039892"],["-90.005590","30.039962"],["-90.005479","30.039992"],["-90.005368","30.040022"],["-90.005258","30.040052"],["-90.005147","30.040083"],["-90.005037","30.040113"],["-90.004926","30.040143"],["-90.004815","30.040173"],["-90.004705","30.040203"],["-90.004556","30.040267"],["-90.004407","30.040331"],["-90.004258","30.040395"],["-90.004109","30.040459"],["-90.003960","30.040523"],["-90.003811","30.040586"],["-90.003663","30.040650"],["-90.003514","30.040714"],["-90.003382","30.040766"],["-90.003250","30.040819"],["-90.003117","30.040871"],["-90.002985","30.040923"],["-90.002853","30.040975"],["-90.002721","30.041028"],["-90.002589","30.041080"],["-90.002457","30.041132"],["-90.002267","30.041038"],["-90.002177","30.041157"],["-90.002087","30.041276"],["-90.001957","30.041329"],["-90.001828","30.041382"],["-90.001698","30.041435"],["-90.001569","30.041488"],["-90.001439","30.041540"],["-90.001310","30.041593"],["-90.001180","30.041646"],["-90.001051","30.041699"],["-90.000950","30.041739"],["-90.000762","30.041816"],["-90.000575","30.041893"],["-90.000387","30.041971"],["-90.000269","30.042019"],["-90.000080","30.042093"],["-89.999989","30.042129"],["-89.999800","30.042204"],["-89.999611","30.042279"],["-89.999422","30.042354"],["-89.999309","30.042399"],["-89.999106","30.042435"],["-89.998902","30.042472"],["-89.998699","30.042508"],["-89.998673","30.042513"],["-89.998522","30.042637"],["-89.998372","30.042761"],["-89.998313","30.042809"],["-89.998127","30.042889"],["-89.998009","30.042939"],["-89.997822","30.043018"],["-89.997636","30.043097"],["-89.997449","30.043177"],["-89.997300","30.043240"],["-89.997098","30.043284"],["-89.996897","30.043328"],["-89.996799","30.043349"],["-89.996640","30.043465"],["-89.996481","30.043580"],["-89.996298","30.043666"],["-89.996112","30.043746"],["-89.995926","30.043826"],["-89.995740","30.043906"],["-89.995554","30.043986"],["-89.995368","30.044066"],["-89.995240","30.044120"],["-89.995050","30.044194"],["-89.994861","30.044267"],["-89.994671","30.044341"],["-89.994481","30.044414"],["-89.994292","30.044488"],["-89.994102","30.044561"],["-89.993913","30.044635"],["-89.993723","30.044708"],["-89.993661","30.044732"],["-89.993506","30.044852"],["-89.993404","30.044932"],["-89.993219","30.045013"],["-89.993033","30.045095"],["-89.992910","30.045149"],["-89.992726","30.045233"],["-89.992542","30.045316"],["-89.992358","30.045400"],["-89.992249","30.045449"],["-89.992070","30.045530"],["-89.991887","30.045616"],["-89.991705","30.045702"],["-89.991522","30.045787"],["-89.991410","30.045840"],["-89.991226","30.045924"],["-89.991043","30.046009"],["-89.990859","30.046093"],["-89.990676","30.046177"],["-89.990479","30.046234"],["-89.990282","30.046291"],["-89.990078","30.046350"],["-89.989923","30.046470"],["-89.989769","30.046590"],["-89.989585","30.046675"],["-89.989402","30.046759"],["-89.989218","30.046843"],["-89.989034","30.046926"],["-89.988919","30.046979"],["-89.988736","30.047064"],["-89.988553","30.047150"],["-89.988370","30.047235"],["-89.988187","30.047320"],["-89.987986","30.047366"],["-89.987779","30.047413"],["-89.987609","30.047516"],["-89.987439","30.047620"],["-89.987269","30.047723"],["-89.987099","30.047827"],["-89.986929","30.047930"],["-89.986830","30.047990"],["-89.986641","30.048065"],["-89.986452","30.048139"],["-89.986263","30.048214"],["-89.986074","30.048288"],["-89.985885","30.048363"],["-89.985695","30.048437"],["-89.985506","30.048512"],["-89.985480","30.048522"],["-89.985322","30.048639"],["-89.985165","30.048757"],["-89.985093","30.048810"],["-89.984909","30.048894"],["-89.984790","30.048950"],["-89.984590","30.049000"],["-89.984391","30.049049"],["-89.984191","30.049099"],["-89.984061","30.049131"],["-89.984000","30.049160"],["-89.983930","30.049045"],["-89.983860","30.048930"],["-89.983715","30.049000"],["-89.983570","30.049070"],["-89.983632","30.049168"],["-89.983695","30.049265"],["-89.983757","30.049363"],["-89.983820","30.049460"],["-89.983720","30.049510"],["-89.983620","30.049560"],["-89.983520","30.049610"],["-89.983420","30.049660"],["-89.983270","30.049740"],["-89.983120","30.049820"],["-89.982985","30.049885"],["-89.982850","30.049950"],["-89.982715","30.050015"],["-89.982580","30.050080"],["-89.982445","30.050145"],["-89.982310","30.050210"],["-89.982175","30.050275"],["-89.982040","30.050340"],["-89.981943","30.050390"],["-89.981845","30.050440"],["-89.981748","30.050490"],["-89.981650","30.050540"],["-89.981553","30.050590"],["-89.981455","30.050640"],["-89.981358","30.050690"],["-89.981189","30.050778"],["-89.981021","30.050867"],["-89.980852","30.050955"],["-89.980684","30.051043"],["-89.980560","30.050982"],["-89.980437","30.050921"],["-89.980397","30.051073"],["-89.980357","30.051224"],["-89.980199","30.051310"],["-89.980041","30.051395"],["-89.979884","30.051480"],["-89.979726","30.051566"],["-89.979569","30.051651"],["-89.979411","30.051736"],["-89.979254","30.051822"],["-89.979096","30.051907"],["-89.978917","30.051836"],["-89.978738","30.051765"],["-89.978716","30.051929"],["-89.978694","30.052093"],["-89.978518","30.052187"],["-89.978342","30.052281"],["-89.978167","30.052375"],["-89.977991","30.052469"],["-89.977815","30.052563"],["-89.977640","30.052657"],["-89.977464","30.052751"],["-89.977288","30.052845"],["-89.977170","30.052813"],["-89.977051","30.052781"],["-89.976966","30.052924"],["-89.976880","30.053068"],["-89.976745","30.053141"],["-89.976610","30.053214"],["-89.976474","30.053287"],["-89.976339","30.053360"],["-89.976203","30.053433"],["-89.976068","30.053506"],["-89.975932","30.053580"],["-89.975797","30.053653"],["-89.975694","30.053607"],["-89.975592","30.053562"],["-89.975533","30.053700"],["-89.975475","30.053838"],["-89.975370","30.053896"],["-89.975266","30.053953"],["-89.975161","30.054011"],["-89.975056","30.054068"],["-89.974952","30.054126"],["-89.974847","30.054183"],["-89.974743","30.054241"],["-89.974638","30.054298"],["-89.974541","30.054351"],["-89.974445","30.054405"],["-89.974349","30.054459"],["-89.974253","30.054513"],["-89.974156","30.054566"],["-89.974060","30.054620"],["-89.974010","30.054650"],["-89.973977","30.054604"],["-89.974010","30.054650"],["-89.973850","30.054740"],["-89.973690","30.054830"],["-89.973530","30.054920"],["-89.973370","30.055010"],["-89.973193","30.055113"],["-89.973015","30.055215"],["-89.972838","30.055318"],["-89.972660","30.055420"],["-89.972568","30.055474"],["-89.972475","30.055528"],["-89.972383","30.055581"],["-89.972290","30.055635"],["-89.972198","30.055689"],["-89.972105","30.055743"],["-89.972013","30.055796"],["-89.971920","30.055850"],["-89.971773","30.055935"],["-89.971625","30.056020"],["-89.971478","30.056105"],["-89.971275","30.056110"],["-89.971147","30.056252"],["-89.971058","30.056351"],["-89.970886","30.056452"],["-89.970718","30.056558"],["-89.970620","30.056619"],["-89.970449","30.056721"],["-89.970369","30.056769"],["-89.970199","30.056873"],["-89.970074","30.056729"],["-89.969949","30.056585"],["-89.969910","30.056540"],["-89.969785","30.056396"],["-89.969660","30.056253"],["-89.969630","30.056219"],["-89.969511","30.056071"],["-89.969400","30.055920"],["-89.969288","30.055768"],["-89.969280","30.055757"],["-89.969152","30.055616"],["-89.969023","30.055474"],["-89.968929","30.055370"],["-89.968806","30.055225"],["-89.968683","30.055080"],["-89.968561","30.054935"],["-89.968438","30.054790"],["-89.968315","30.054644"],["-89.968269","30.054590"],["-89.968145","30.054446"],["-89.968021","30.054301"],["-89.967897","30.054157"],["-89.967773","30.054013"],["-89.967719","30.053950"],["-89.967597","30.053804"],["-89.967475","30.053659"],["-89.967359","30.053520"],["-89.967236","30.053375"],["-89.967113","30.053230"],["-89.966990","30.053085"],["-89.966868","30.052940"],["-89.966748","30.052793"],["-89.966628","30.052646"],["-89.966549","30.052549"],["-89.966429","30.052402"],["-89.966369","30.052330"],["-89.966251","30.052182"],["-89.966133","30.052034"],["-89.966049","30.051929"],["-89.965950","30.051771"],["-89.965850","30.051613"],["-89.965751","30.051455"],["-89.965666","30.051320"],["-89.965517","30.051195"],["-89.965368","30.051070"],["-89.965318","30.051028"],["-89.965194","30.050883"],["-89.965070","30.050739"],["-89.964945","30.050595"],["-89.964821","30.050451"],["-89.964697","30.050307"],["-89.964573","30.050162"],["-89.964449","30.050019"],["-89.964380","30.049939"],["-89.964266","30.049788"],["-89.964153","30.049638"],["-89.964039","30.049487"],["-89.963926","30.049337"],["-89.963812","30.049186"],["-89.963698","30.049035"],["-89.963585","30.048885"],["-89.963471","30.048734"],["-89.963389","30.048625"],["-89.963226","30.048513"],["-89.963138","30.048453"],["-89.963018","30.048306"],["-89.962920","30.048180"],["-89.962819","30.048059"],["-89.962700","30.047912"],["-89.962617","30.047747"],["-89.962533","30.047582"],["-89.962511","30.047538"],["-89.962500","30.047510"],["-89.962410","30.047550"],["-89.962300","30.047405"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957975","30.042198"],["-89.957900","30.042105"],["-89.957825","30.042013"],["-89.957750","30.041920"],["-89.957675","30.041828"],["-89.957600","30.041735"],["-89.957525","30.041643"],["-89.957450","30.041550"],["-89.957330","30.041400"],["-89.957230","30.041290"],["-89.957210","30.041260"],["-89.957115","30.041145"],["-89.957020","30.041030"],["-89.956910","30.040898"],["-89.956800","30.040765"],["-89.956690","30.040633"],["-89.956580","30.040500"],["-89.956457","30.040350"],["-89.956335","30.040200"],["-89.956212","30.040050"],["-89.956090","30.039900"],["-89.955987","30.039778"],["-89.955885","30.039655"],["-89.955782","30.039533"],["-89.955680","30.039410"],["-89.955580","30.039290"],["-89.955490","30.039175"],["-89.955400","30.039060"],["-89.955310","30.038945"],["-89.955220","30.038830"],["-89.955319","30.038766"],["-89.955418","30.038703"],["-89.955516","30.038639"],["-89.955615","30.038575"],["-89.955714","30.038511"],["-89.955813","30.038448"],["-89.955911","30.038384"],["-89.956010","30.038320"],["-89.956163","30.038220"],["-89.956315","30.038120"],["-89.956468","30.038020"],["-89.956620","30.037920"],["-89.956798","30.037810"],["-89.956975","30.037700"],["-89.957153","30.037590"],["-89.957330","30.037480"],["-89.957505","30.037368"],["-89.957680","30.037255"],["-89.957855","30.037143"],["-89.958030","30.037030"],["-89.958165","30.036945"],["-89.958300","30.036860"],["-89.958435","30.036775"],["-89.958570","30.036690"],["-89.958690","30.036620"],["-89.958845","30.036523"],["-89.959000","30.036425"],["-89.959155","30.036328"],["-89.959310","30.036230"],["-89.959440","30.036150"],["-89.959535","30.036090"],["-89.959630","30.036030"],["-89.959795","30.035920"],["-89.959960","30.035810"],["-89.959990","30.035800"],["-89.960140","30.035720"],["-89.960288","30.035640"],["-89.960435","30.035560"],["-89.960583","30.035480"],["-89.960730","30.035400"],["-89.960800","30.035360"],["-89.960890","30.035310"],["-89.961020","30.035230"],["-89.961110","30.035170"],["-89.961200","30.035110"],["-89.961350","30.035020"],["-89.961445","30.034950"],["-89.961540","30.034880"],["-89.961470","30.034830"],["-89.961360","30.034765"],["-89.961250","30.034700"],["-89.961130","30.034630"],["-89.961035","30.034570"],["-89.960940","30.034510"],["-89.960845","30.034450"],["-89.960750","30.034390"],["-89.960650","30.034310"],["-89.960550","30.034230"],["-89.960435","30.034145"],["-89.960320","30.034060"],["-89.960210","30.033995"],["-89.960100","30.033930"],["-89.960010","30.033870"],["-89.959940","30.033820"],["-89.959840","30.033740"],["-89.959740","30.033660"],["-89.959615","30.033545"],["-89.959490","30.033430"],["-89.959400","30.033330"],["-89.959310","30.033230"],["-89.959240","30.033140"],["-89.959170","30.033050"],["-89.959107","30.032960"],["-89.959045","30.032870"],["-89.958982","30.032780"],["-89.958920","30.032690"],["-89.958845","30.032550"],["-89.958770","30.032410"],["-89.958720","30.032290"],["-89.958670","30.032165"],["-89.958620","30.032040"],["-89.958575","30.031853"],["-89.958530","30.031665"],["-89.958485","30.031478"],["-89.958440","30.031290"],["-89.958416","30.031189"],["-89.958392","30.031088"],["-89.958369","30.030986"],["-89.958345","30.030885"],["-89.958321","30.030784"],["-89.958297","30.030683"],["-89.958274","30.030581"],["-89.958250","30.030480"],["-89.958220","30.030360"],["-89.958170","30.030180"],["-89.958120","30.030000"],["-89.958060","30.029820"],["-89.958020","30.029730"],["-89.957980","30.029640"],["-89.957915","30.029530"],["-89.957850","30.029420"],["-89.957750","30.029250"],["-89.957650","30.029100"],["-89.957565","30.029005"],["-89.957480","30.028910"],["-89.957382","30.028793"],["-89.957285","30.028675"],["-89.957187","30.028558"],["-89.957090","30.028440"],["-89.957240","30.028435"],["-89.957390","30.028430"],["-89.957606","30.028429"],["-89.957823","30.028428"],["-89.958039","30.028426"],["-89.958255","30.028425"],["-89.958471","30.028424"],["-89.958688","30.028423"],["-89.958904","30.028421"],["-89.959120","30.028420"],["-89.959338","30.028418"],["-89.959555","30.028415"],["-89.959773","30.028413"],["-89.959990","30.028410"],["-89.960130","30.028410"],["-89.960200","30.028410"],["-89.960405","30.028405"],["-89.960610","30.028400"],["-89.960815","30.028395"],["-89.961020","30.028390"],["-89.961160","30.028390"],["-89.961240","30.028390"],["-89.961435","30.028375"],["-89.961630","30.028360"],["-89.961815","30.028340"],["-89.962000","30.028320"],["-89.962060","30.028310"],["-89.962260","30.028280"],["-89.962395","30.028253"],["-89.962530","30.028225"],["-89.962665","30.028198"],["-89.962800","30.028170"],["-89.962935","30.028140"],["-89.963070","30.028110"],["-89.963205","30.028085"],["-89.963340","30.028060"],["-89.963481","30.028033"],["-89.963623","30.028005"],["-89.963764","30.027978"],["-89.963905","30.027950"],["-89.964046","30.027923"],["-89.964188","30.027895"],["-89.964329","30.027868"],["-89.964470","30.027840"],["-89.964618","30.027810"],["-89.964765","30.027780"],["-89.964913","30.027750"],["-89.965060","30.027720"],["-89.965208","30.027690"],["-89.965355","30.027660"],["-89.965503","30.027630"],["-89.965650","30.027600"],["-89.965775","30.027576"],["-89.965900","30.027553"],["-89.966025","30.027529"],["-89.966150","30.027505"],["-89.966275","30.027481"],["-89.966400","30.027458"],["-89.966525","30.027434"],["-89.966650","30.027410"],["-89.966786","30.027383"],["-89.966923","30.027355"],["-89.967059","30.027328"],["-89.967195","30.027300"],["-89.967331","30.027273"],["-89.967468","30.027245"],["-89.967604","30.027218"],["-89.967740","30.027190"],["-89.967903","30.027158"],["-89.968065","30.027125"],["-89.968228","30.027093"],["-89.968390","30.027060"],["-89.968500","30.027040"],["-89.968610","30.027020"],["-89.968720","30.027000"],["-89.968830","30.026980"],["-89.968870","30.027060"],["-89.968900","30.027150"],["-89.968920","30.027200"],["-89.968950","30.027240"],["-89.969010","30.027340"],["-89.969070","30.027430"],["-89.969150","30.027560"],["-89.969240","30.027695"],["-89.969330","30.027830"],["-89.969390","30.027930"],["-89.969460","30.028030"],["-89.969530","30.028130"],["-89.969590","30.028220"],["-89.969680","30.028355"],["-89.969770","30.028490"],["-89.969845","30.028603"],["-89.969920","30.028715"],["-89.969995","30.028828"],["-89.970070","30.028940"],["-89.970080","30.028960"],["-89.970140","30.029043"],["-89.970200","30.029125"],["-89.970260","30.029208"],["-89.970320","30.029290"],["-89.970380","30.029373"],["-89.970440","30.029455"],["-89.970500","30.029538"],["-89.970560","30.029620"],["-89.970619","30.029703"],["-89.970677","30.029785"],["-89.970736","30.029868"],["-89.970795","30.029950"],["-89.970854","30.030033"],["-89.970912","30.030115"],["-89.970971","30.030198"],["-89.971030","30.030280"],["-89.971100","30.030375"],["-89.971170","30.030470"],["-89.971255","30.030580"],["-89.971340","30.030690"],["-89.971390","30.030770"],["-89.971492","30.030913"],["-89.971595","30.031055"],["-89.971697","30.031198"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971947","30.031550"],["-89.972015","30.031650"],["-89.972082","30.031750"],["-89.972150","30.031850"],["-89.972260","30.032010"],["-89.972160","30.032174"]]}]}},{"type":"Feature","properties":{"route_id":"67","agency_id":"1","route_short_name":"67","route_long_name":"Michoud Loop","route_type":"3","route_color":"#00b1b0","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-89.930119","30.040284"],["-89.907013","30.037929"],["-89.930480","30.058377"],["-89.930453","30.043822"],["-89.930208","30.058080"],["-89.928311","30.062050"],["-89.930647","30.049232"],["-89.931043","30.053173"],["-89.926833","30.063922"],["-89.909273","30.037165"],["-89.911378","30.036545"],["-89.955431","30.038995"],["-89.957965","30.037094"],["-89.961308","30.035108"],["-89.967795","30.033065"],["-89.974960","30.029613"],["-89.973520","30.030150"],["-89.912303","30.038720"],["-89.916939","30.040869"],["-89.923603","30.038871"],["-89.929655","30.037035"],["-89.919294","30.040214"],["-89.972160","30.032174"],["-89.971999","30.031174"]]},{"type":"LineString","coordinates":[["-89.907013","30.037929"],["-89.907000","30.037890"],["-89.907100","30.037860"],["-89.907308","30.037793"],["-89.907515","30.037725"],["-89.907723","30.037658"],["-89.907930","30.037590"],["-89.908050","30.037553"],["-89.908170","30.037515"],["-89.908290","30.037478"],["-89.908410","30.037440"],["-89.908490","30.037410"],["-89.908685","30.037348"],["-89.908880","30.037285"],["-89.909075","30.037223"],["-89.909270","30.037160"],["-89.909273","30.037165"],["-89.909270","30.037160"],["-89.909400","30.037120"],["-89.909530","30.037080"],["-89.909660","30.037040"],["-89.909790","30.037000"],["-89.909899","30.036965"],["-89.910008","30.036930"],["-89.910116","30.036895"],["-89.910225","30.036860"],["-89.910334","30.036825"],["-89.910443","30.036790"],["-89.910551","30.036755"],["-89.910660","30.036720"],["-89.910835","30.036665"],["-89.911010","30.036610"],["-89.911185","30.036555"],["-89.911378","30.036545"],["-89.911350","30.036490"],["-89.911440","30.036460"],["-89.911520","30.036630"],["-89.911600","30.036800"],["-89.911670","30.036970"],["-89.911740","30.037140"],["-89.911807","30.037295"],["-89.911875","30.037450"],["-89.911942","30.037605"],["-89.912010","30.037760"],["-89.912062","30.037888"],["-89.912115","30.038015"],["-89.912167","30.038143"],["-89.912220","30.038270"],["-89.912265","30.038375"],["-89.912310","30.038480"],["-89.912355","30.038585"],["-89.912400","30.038690"],["-89.912303","30.038720"],["-89.912400","30.038690"],["-89.912440","30.038770"],["-89.912500","30.038940"],["-89.912567","30.039108"],["-89.912635","30.039275"],["-89.912702","30.039443"],["-89.912770","30.039610"],["-89.912825","30.039745"],["-89.912880","30.039880"],["-89.912932","30.040015"],["-89.912985","30.040150"],["-89.913037","30.040285"],["-89.913090","30.040420"],["-89.913145","30.040558"],["-89.913200","30.040695"],["-89.913255","30.040833"],["-89.913310","30.040970"],["-89.913360","30.041090"],["-89.913370","30.041100"],["-89.913440","30.041270"],["-89.913475","30.041370"],["-89.913510","30.041470"],["-89.913545","30.041570"],["-89.913580","30.041670"],["-89.913640","30.041840"],["-89.913830","30.041780"],["-89.914030","30.041725"],["-89.914230","30.041670"],["-89.914430","30.041615"],["-89.914630","30.041560"],["-89.914780","30.041515"],["-89.914930","30.041470"],["-89.915090","30.041410"],["-89.915170","30.041390"],["-89.915330","30.041340"],["-89.915525","30.041280"],["-89.915720","30.041220"],["-89.915871","30.041174"],["-89.916023","30.041128"],["-89.916174","30.041081"],["-89.916325","30.041035"],["-89.916476","30.040989"],["-89.916628","30.040943"],["-89.916779","30.040896"],["-89.916930","30.040850"],["-89.916939","30.040869"],["-89.916930","30.040850"],["-89.917050","30.040820"],["-89.917200","30.040770"],["-89.917315","30.040735"],["-89.917430","30.040700"],["-89.917543","30.040668"],["-89.917655","30.040635"],["-89.917768","30.040603"],["-89.917880","30.040570"],["-89.918028","30.040525"],["-89.918175","30.040480"],["-89.918323","30.040435"],["-89.918470","30.040390"],["-89.918670","30.040330"],["-89.918700","30.040320"],["-89.918823","30.040285"],["-89.918945","30.040250"],["-89.919068","30.040215"],["-89.919190","30.040180"],["-89.919260","30.040150"],["-89.919294","30.040214"],["-89.919260","30.040150"],["-89.919380","30.040110"],["-89.919529","30.040064"],["-89.919678","30.040018"],["-89.919826","30.039971"],["-89.919975","30.039925"],["-89.920124","30.039879"],["-89.920273","30.039833"],["-89.920421","30.039786"],["-89.920570","30.039740"],["-89.920710","30.039700"],["-89.920830","30.039660"],["-89.920950","30.039620"],["-89.921070","30.039580"],["-89.921190","30.039540"],["-89.921320","30.039500"],["-89.921430","30.039470"],["-89.921570","30.039430"],["-89.921710","30.039390"],["-89.921850","30.039350"],["-89.921990","30.039310"],["-89.922190","30.039251"],["-89.922390","30.039193"],["-89.922590","30.039134"],["-89.922790","30.039075"],["-89.922990","30.039016"],["-89.923190","30.038958"],["-89.923390","30.038899"],["-89.923590","30.038840"],["-89.923603","30.038871"],["-89.923590","30.038840"],["-89.923700","30.038800"],["-89.923895","30.038741"],["-89.924090","30.038683"],["-89.924285","30.038624"],["-89.924480","30.038565"],["-89.924675","30.038506"],["-89.924870","30.038448"],["-89.925065","30.038389"],["-89.925260","30.038330"],["-89.925455","30.038271"],["-89.925650","30.038213"],["-89.925845","30.038154"],["-89.926040","30.038095"],["-89.926235","30.038036"],["-89.926430","30.037978"],["-89.926625","30.037919"],["-89.926820","30.037860"],["-89.926926","30.037828"],["-89.927031","30.037796"],["-89.927137","30.037764"],["-89.927243","30.037733"],["-89.927348","30.037701"],["-89.927454","30.037669"],["-89.927559","30.037637"],["-89.927665","30.037605"],["-89.927771","30.037573"],["-89.927876","30.037541"],["-89.927982","30.037509"],["-89.928088","30.037478"],["-89.928193","30.037446"],["-89.928299","30.037414"],["-89.928404","30.037382"],["-89.928510","30.037350"],["-89.928651","30.037308"],["-89.928793","30.037265"],["-89.928934","30.037223"],["-89.929075","30.037180"],["-89.929216","30.037138"],["-89.929358","30.037095"],["-89.929499","30.037053"],["-89.929640","30.037010"],["-89.929655","30.037035"],["-89.929640","30.037010"],["-89.929810","30.036950"],["-89.929840","30.037090"],["-89.929855","30.037220"],["-89.929870","30.037350"],["-89.929885","30.037480"],["-89.929900","30.037610"],["-89.929920","30.037798"],["-89.929940","30.037985"],["-89.929960","30.038173"],["-89.929980","30.038360"],["-89.930000","30.038550"],["-89.930020","30.038715"],["-89.930040","30.038880"],["-89.930040","30.038940"],["-89.930050","30.039040"],["-89.930060","30.039140"],["-89.930075","30.039310"],["-89.930090","30.039480"],["-89.930110","30.039670"],["-89.930130","30.039860"],["-89.930140","30.039965"],["-89.930150","30.040070"],["-89.930160","30.040175"],["-89.930170","30.040280"],["-89.930119","30.040284"],["-89.930170","30.040280"],["-89.930180","30.040390"],["-89.930190","30.040570"],["-89.930207","30.040710"],["-89.930225","30.040850"],["-89.930242","30.040990"],["-89.930260","30.041130"],["-89.930270","30.041248"],["-89.930280","30.041365"],["-89.930290","30.041483"],["-89.930300","30.041600"],["-89.930320","30.041750"],["-89.930330","30.041850"],["-89.930340","30.041950"],["-89.930350","30.042050"],["-89.930360","30.042150"],["-89.930370","30.042250"],["-89.930380","30.042350"],["-89.930390","30.042450"],["-89.930400","30.042550"],["-89.930412","30.042663"],["-89.930425","30.042775"],["-89.930437","30.042888"],["-89.930450","30.043000"],["-89.930465","30.043115"],["-89.930480","30.043230"],["-89.930490","30.043375"],["-89.930500","30.043520"],["-89.930505","30.043670"],["-89.930510","30.043820"],["-89.930453","30.043822"],["-89.930510","30.043820"],["-89.930510","30.043940"],["-89.930510","30.044050"],["-89.930510","30.044160"],["-89.930510","30.044270"],["-89.930510","30.044380"],["-89.930490","30.044550"],["-89.930470","30.044720"],["-89.930460","30.044760"],["-89.930440","30.044950"],["-89.930418","30.045083"],["-89.930395","30.045215"],["-89.930373","30.045348"],["-89.930350","30.045480"],["-89.930340","30.045540"],["-89.930340","30.045580"],["-89.930320","30.045710"],["-89.930295","30.045848"],["-89.930270","30.045985"],["-89.930245","30.046123"],["-89.930220","30.046260"],["-89.930210","30.046370"],["-89.930195","30.046500"],["-89.930180","30.046630"],["-89.930165","30.046765"],["-89.930150","30.046900"],["-89.930150","30.047080"],["-89.930140","30.047260"],["-89.930140","30.047350"],["-89.930140","30.047450"],["-89.930140","30.047550"],["-89.930140","30.047620"],["-89.930150","30.047725"],["-89.930160","30.047830"],["-89.930160","30.047910"],["-89.930172","30.048048"],["-89.930185","30.048185"],["-89.930197","30.048323"],["-89.930210","30.048460"],["-89.930222","30.048598"],["-89.930235","30.048735"],["-89.930247","30.048873"],["-89.930260","30.049010"],["-89.930270","30.049115"],["-89.930280","30.049220"],["-89.930292","30.049340"],["-89.930305","30.049460"],["-89.930317","30.049580"],["-89.930330","30.049700"],["-89.930342","30.049820"],["-89.930355","30.049940"],["-89.930367","30.050060"],["-89.930380","30.050180"],["-89.930400","30.050320"],["-89.930415","30.050475"],["-89.930430","30.050630"],["-89.930445","30.050785"],["-89.930460","30.050940"],["-89.930475","30.051045"],["-89.930490","30.051150"],["-89.930507","30.051309"],["-89.930525","30.051468"],["-89.930542","30.051626"],["-89.930560","30.051785"],["-89.930577","30.051944"],["-89.930595","30.052103"],["-89.930612","30.052261"],["-89.930630","30.052420"],["-89.930642","30.052535"],["-89.930655","30.052650"],["-89.930667","30.052765"],["-89.930680","30.052880"],["-89.930695","30.053035"],["-89.930710","30.053190"],["-89.930730","30.053340"],["-89.930740","30.053495"],["-89.930750","30.053650"],["-89.930760","30.053805"],["-89.930770","30.053960"],["-89.930770","30.054090"],["-89.930770","30.054220"],["-89.930772","30.054345"],["-89.930775","30.054470"],["-89.930777","30.054595"],["-89.930780","30.054720"],["-89.930775","30.054890"],["-89.930770","30.055060"],["-89.930765","30.055170"],["-89.930760","30.055280"],["-89.930755","30.055390"],["-89.930750","30.055500"],["-89.930740","30.055630"],["-89.930730","30.055760"],["-89.930710","30.055915"],["-89.930690","30.056070"],["-89.930676","30.056168"],["-89.930663","30.056265"],["-89.930649","30.056363"],["-89.930635","30.056460"],["-89.930621","30.056558"],["-89.930608","30.056655"],["-89.930594","30.056753"],["-89.930580","30.056850"],["-89.930545","30.057020"],["-89.930510","30.057190"],["-89.930475","30.057340"],["-89.930440","30.057490"],["-89.930415","30.057595"],["-89.930390","30.057700"],["-89.930365","30.057800"],["-89.930340","30.057900"],["-89.930315","30.058000"],["-89.930290","30.058100"],["-89.930208","30.058080"],["-89.930290","30.058100"],["-89.930260","30.058180"],["-89.930230","30.058280"],["-89.930200","30.058380"],["-89.930170","30.058480"],["-89.930140","30.058580"],["-89.930090","30.058740"],["-89.930060","30.058820"],["-89.930020","30.058910"],["-89.929955","30.059080"],["-89.929890","30.059250"],["-89.929825","30.059420"],["-89.929760","30.059590"],["-89.929715","30.059695"],["-89.929670","30.059800"],["-89.929595","30.059965"],["-89.929520","30.060130"],["-89.929458","30.060253"],["-89.929395","30.060375"],["-89.929333","30.060498"],["-89.929270","30.060620"],["-89.929220","30.060720"],["-89.929148","30.060850"],["-89.929075","30.060980"],["-89.929003","30.061110"],["-89.928930","30.061240"],["-89.928840","30.061380"],["-89.928750","30.061520"],["-89.928663","30.061653"],["-89.928575","30.061785"],["-89.928488","30.061918"],["-89.928400","30.062050"],["-89.928380","30.062080"],["-89.928311","30.062050"],["-89.928380","30.062080"],["-89.928290","30.062230"],["-89.928180","30.062378"],["-89.928070","30.062525"],["-89.927960","30.062673"],["-89.927850","30.062820"],["-89.927768","30.062920"],["-89.927685","30.063020"],["-89.927603","30.063120"],["-89.927520","30.063220"],["-89.927435","30.063315"],["-89.927350","30.063410"],["-89.927230","30.063545"],["-89.927110","30.063680"],["-89.926990","30.063815"],["-89.926915","30.063898"],["-89.926840","30.063980"],["-89.926833","30.063922"],["-89.926840","30.063980"],["-89.926735","30.064100"],["-89.926630","30.064220"],["-89.926525","30.064340"],["-89.926420","30.064460"],["-89.926350","30.064545"],["-89.926280","30.064630"],["-89.926440","30.064740"],["-89.926515","30.064655"],["-89.926590","30.064570"],["-89.926695","30.064450"],["-89.926800","30.064330"],["-89.926905","30.064210"],["-89.927010","30.064090"],["-89.927135","30.063948"],["-89.927260","30.063805"],["-89.927385","30.063663"],["-89.927510","30.063520"],["-89.927620","30.063400"],["-89.927703","30.063303"],["-89.927785","30.063205"],["-89.927868","30.063108"],["-89.927950","30.063010"],["-89.928013","30.062930"],["-89.928075","30.062850"],["-89.928138","30.062770"],["-89.928200","30.062690"],["-89.928268","30.062595"],["-89.928335","30.062500"],["-89.928403","30.062405"],["-89.928470","30.062310"],["-89.928555","30.062190"],["-89.928640","30.062070"],["-89.928715","30.061960"],["-89.928790","30.061850"],["-89.928865","30.061730"],["-89.928940","30.061610"],["-89.929015","30.061488"],["-89.929090","30.061365"],["-89.929165","30.061243"],["-89.929240","30.061120"],["-89.929310","30.060995"],["-89.929380","30.060870"],["-89.929458","30.060718"],["-89.929535","30.060565"],["-89.929613","30.060413"],["-89.929690","30.060260"],["-89.929770","30.060085"],["-89.929850","30.059910"],["-89.929870","30.059860"],["-89.929935","30.059705"],["-89.930000","30.059550"],["-89.930065","30.059395"],["-89.930130","30.059240"],["-89.930195","30.059060"],["-89.930260","30.058880"],["-89.930303","30.058750"],["-89.930345","30.058620"],["-89.930388","30.058490"],["-89.930430","30.058360"],["-89.930480","30.058377"],["-89.930430","30.058360"],["-89.930470","30.058240"],["-89.930495","30.058138"],["-89.930520","30.058035"],["-89.930545","30.057933"],["-89.930570","30.057830"],["-89.930595","30.057728"],["-89.930620","30.057625"],["-89.930645","30.057523"],["-89.930670","30.057420"],["-89.930705","30.057265"],["-89.930740","30.057110"],["-89.930770","30.056970"],["-89.930790","30.056875"],["-89.930810","30.056780"],["-89.930830","30.056613"],["-89.930850","30.056445"],["-89.930870","30.056278"],["-89.930890","30.056110"],["-89.930890","30.056090"],["-89.930920","30.055920"],["-89.930920","30.055820"],["-89.930940","30.055670"],["-89.930950","30.055555"],["-89.930960","30.055440"],["-89.930965","30.055260"],["-89.930970","30.055080"],["-89.930975","30.054900"],["-89.930980","30.054720"],["-89.930977","30.054605"],["-89.930975","30.054490"],["-89.930972","30.054375"],["-89.930970","30.054260"],["-89.930970","30.054250"],["-89.930965","30.054065"],["-89.930960","30.053880"],["-89.930945","30.053710"],["-89.930930","30.053540"],["-89.930920","30.053435"],["-89.930910","30.053330"],["-89.930900","30.053230"],["-89.930890","30.053180"],["-89.931043","30.053173"],["-89.930890","30.053180"],["-89.930890","30.053160"],["-89.930872","30.052970"],["-89.930855","30.052780"],["-89.930837","30.052590"],["-89.930820","30.052400"],["-89.930805","30.052235"],["-89.930790","30.052070"],["-89.930779","30.051953"],["-89.930767","30.051835"],["-89.930756","30.051718"],["-89.930745","30.051600"],["-89.930734","30.051483"],["-89.930722","30.051365"],["-89.930711","30.051248"],["-89.930700","30.051130"],["-89.930690","30.051024"],["-89.930680","30.050918"],["-89.930670","30.050812"],["-89.930659","30.050706"],["-89.930649","30.050599"],["-89.930639","30.050493"],["-89.930629","30.050387"],["-89.930619","30.050281"],["-89.930609","30.050175"],["-89.930599","30.050069"],["-89.930588","30.049963"],["-89.930578","30.049857"],["-89.930568","30.049751"],["-89.930558","30.049645"],["-89.930548","30.049538"],["-89.930538","30.049432"],["-89.930592","30.049332"],["-89.930647","30.049232"],["-89.930559","30.049154"],["-89.930664","30.049114"],["-89.930768","30.049075"],["-89.930873","30.049035"],["-89.930978","30.048996"],["-89.931163","30.048909"],["-89.931348","30.048822"],["-89.931533","30.048735"],["-89.931718","30.048648"],["-89.931824","30.048570"],["-89.931930","30.048492"],["-89.932036","30.048414"],["-89.932142","30.048337"],["-89.932266","30.048244"],["-89.932391","30.048151"],["-89.932516","30.048058"],["-89.932641","30.047965"],["-89.932811","30.047844"],["-89.932982","30.047723"],["-89.933153","30.047601"],["-89.933324","30.047480"],["-89.933427","30.047409"],["-89.933529","30.047337"],["-89.933632","30.047266"],["-89.933734","30.047195"],["-89.933837","30.047123"],["-89.933940","30.047052"],["-89.934042","30.046980"],["-89.934145","30.046909"],["-89.934294","30.046804"],["-89.934443","30.046700"],["-89.934591","30.046595"],["-89.934740","30.046490"],["-89.934889","30.046385"],["-89.935038","30.046280"],["-89.935187","30.046176"],["-89.935336","30.046071"],["-89.935485","30.045966"],["-89.935633","30.045861"],["-89.935782","30.045757"],["-89.935931","30.045652"],["-89.936080","30.045547"],["-89.936229","30.045442"],["-89.936378","30.045338"],["-89.936527","30.045233"],["-89.936667","30.045131"],["-89.936808","30.045029"],["-89.936949","30.044927"],["-89.937089","30.044825"],["-89.937230","30.044723"],["-89.937370","30.044622"],["-89.937511","30.044520"],["-89.937652","30.044418"],["-89.937792","30.044316"],["-89.937933","30.044214"],["-89.938074","30.044112"],["-89.938214","30.044010"],["-89.938355","30.043909"],["-89.938495","30.043807"],["-89.938636","30.043705"],["-89.938777","30.043603"],["-89.938948","30.043484"],["-89.939120","30.043365"],["-89.939292","30.043246"],["-89.939463","30.043127"],["-89.939635","30.043008"],["-89.939807","30.042889"],["-89.939978","30.042770"],["-89.940150","30.042651"],["-89.940322","30.042532"],["-89.940493","30.042413"],["-89.940665","30.042294"],["-89.940837","30.042175"],["-89.941008","30.042056"],["-89.941180","30.041937"],["-89.941352","30.041818"],["-89.941523","30.041699"],["-89.941611","30.041637"],["-89.941699","30.041575"],["-89.941787","30.041513"],["-89.941875","30.041451"],["-89.941963","30.041389"],["-89.942050","30.041326"],["-89.942138","30.041264"],["-89.942226","30.041202"],["-89.942380","30.041086"],["-89.942535","30.040970"],["-89.942689","30.040854"],["-89.942843","30.040738"],["-89.942928","30.040675"],["-89.943013","30.040611"],["-89.943098","30.040548"],["-89.943184","30.040485"],["-89.943269","30.040422"],["-89.943354","30.040358"],["-89.943439","30.040295"],["-89.943524","30.040232"],["-89.943687","30.040140"],["-89.943849","30.040048"],["-89.944011","30.039957"],["-89.944173","30.039865"],["-89.944368","30.039786"],["-89.944562","30.039707"],["-89.944757","30.039628"],["-89.944951","30.039549"],["-89.945167","30.039511"],["-89.945383","30.039472"],["-89.945599","30.039434"],["-89.945815","30.039396"],["-89.945980","30.039412"],["-89.946146","30.039428"],["-89.946312","30.039445"],["-89.946477","30.039461"],["-89.946643","30.039477"],["-89.946809","30.039493"],["-89.946974","30.039510"],["-89.947140","30.039526"],["-89.947306","30.039542"],["-89.947471","30.039558"],["-89.947637","30.039575"],["-89.947802","30.039591"],["-89.947968","30.039607"],["-89.948134","30.039623"],["-89.948299","30.039640"],["-89.948465","30.039656"],["-89.948634","30.039677"],["-89.948804","30.039699"],["-89.948973","30.039720"],["-89.949142","30.039742"],["-89.949311","30.039763"],["-89.949481","30.039785"],["-89.949650","30.039806"],["-89.949819","30.039828"],["-89.949989","30.039849"],["-89.950158","30.039871"],["-89.950327","30.039892"],["-89.950497","30.039914"],["-89.950666","30.039935"],["-89.950835","30.039957"],["-89.951005","30.039978"],["-89.951174","30.040000"],["-89.951336","30.040004"],["-89.951498","30.040009"],["-89.951661","30.040013"],["-89.951823","30.040018"],["-89.951985","30.040023"],["-89.952148","30.040027"],["-89.952310","30.040032"],["-89.952472","30.040037"],["-89.952681","30.040006"],["-89.952891","30.039976"],["-89.953100","30.039946"],["-89.953309","30.039916"],["-89.953414","30.039859"],["-89.953518","30.039802"],["-89.953623","30.039745"],["-89.953727","30.039688"],["-89.953832","30.039631"],["-89.953937","30.039575"],["-89.954041","30.039518"],["-89.954146","30.039461"],["-89.954250","30.039404"],["-89.954355","30.039347"],["-89.954460","30.039290"],["-89.954564","30.039233"],["-89.954669","30.039176"],["-89.954773","30.039120"],["-89.954878","30.039063"],["-89.954983","30.039006"],["-89.955095","30.039003"],["-89.955207","30.039000"],["-89.955319","30.038998"],["-89.955431","30.038995"],["-89.955380","30.039030"],["-89.955300","30.038930"],["-89.955220","30.038830"],["-89.955319","30.038766"],["-89.955418","30.038703"],["-89.955516","30.038639"],["-89.955615","30.038575"],["-89.955714","30.038511"],["-89.955813","30.038448"],["-89.955911","30.038384"],["-89.956010","30.038320"],["-89.956163","30.038220"],["-89.956315","30.038120"],["-89.956468","30.038020"],["-89.956620","30.037920"],["-89.956798","30.037810"],["-89.956975","30.037700"],["-89.957153","30.037590"],["-89.957330","30.037480"],["-89.957488","30.037380"],["-89.957645","30.037280"],["-89.957803","30.037180"],["-89.957965","30.037094"],["-89.957960","30.037080"],["-89.958050","30.037030"],["-89.958183","30.036945"],["-89.958315","30.036860"],["-89.958448","30.036775"],["-89.958580","30.036690"],["-89.958690","30.036620"],["-89.958845","30.036523"],["-89.959000","30.036425"],["-89.959155","30.036328"],["-89.959310","30.036230"],["-89.959440","30.036150"],["-89.959535","30.036090"],["-89.959630","30.036030"],["-89.959795","30.035920"],["-89.959960","30.035810"],["-89.959990","30.035800"],["-89.960130","30.035720"],["-89.960280","30.035640"],["-89.960430","30.035560"],["-89.960580","30.035480"],["-89.960730","30.035400"],["-89.960800","30.035360"],["-89.960890","30.035310"],["-89.961020","30.035230"],["-89.961200","30.035120"],["-89.961308","30.035108"],["-89.961260","30.035050"],["-89.961340","30.035000"],["-89.961440","30.034940"],["-89.961540","30.034880"],["-89.961650","30.034800"],["-89.961760","30.034720"],["-89.961770","30.034710"],["-89.961890","30.034630"],["-89.962035","30.034545"],["-89.962180","30.034460"],["-89.962360","30.034360"],["-89.962520","30.034275"],["-89.962680","30.034190"],["-89.962730","30.034170"],["-89.962845","30.034115"],["-89.962960","30.034060"],["-89.963120","30.034000"],["-89.963240","30.033940"],["-89.963375","30.033890"],["-89.963510","30.033840"],["-89.963620","30.033810"],["-89.963730","30.033780"],["-89.963850","30.033740"],["-89.964060","30.033690"],["-89.964270","30.033640"],["-89.964450","30.033610"],["-89.964655","30.033570"],["-89.964860","30.033530"],["-89.965015","30.033500"],["-89.965170","30.033470"],["-89.965300","30.033450"],["-89.965424","30.033426"],["-89.965548","30.033403"],["-89.965671","30.033379"],["-89.965795","30.033355"],["-89.965919","30.033331"],["-89.966043","30.033308"],["-89.966166","30.033284"],["-89.966290","30.033260"],["-89.966415","30.033235"],["-89.966540","30.033210"],["-89.966665","30.033185"],["-89.966790","30.033160"],["-89.966915","30.033135"],["-89.967040","30.033110"],["-89.967165","30.033085"],["-89.967290","30.033060"],["-89.967470","30.033025"],["-89.967650","30.032990"],["-89.967780","30.032980"],["-89.967795","30.033065"],["-89.967780","30.032980"],["-89.967890","30.032960"],["-89.967950","30.032950"],["-89.968020","30.032950"],["-89.968120","30.032940"],["-89.968290","30.032930"],["-89.968440","30.032925"],["-89.968590","30.032920"],["-89.968740","30.032925"],["-89.968890","30.032930"],["-89.969005","30.032935"],["-89.969120","30.032940"],["-89.969290","30.032960"],["-89.969480","30.032990"],["-89.969690","30.033030"],["-89.969880","30.033070"],["-89.970042","30.033113"],["-89.970205","30.033155"],["-89.970367","30.033198"],["-89.970530","30.033240"],["-89.970675","30.033270"],["-89.970820","30.033300"],["-89.970910","30.033310"],["-89.971100","30.033330"],["-89.971225","30.033335"],["-89.971350","30.033340"],["-89.971495","30.033335"],["-89.971640","30.033330"],["-89.971830","30.033310"],["-89.971840","30.033310"],["-89.972040","30.033270"],["-89.972230","30.033220"],["-89.972390","30.033180"],["-89.972580","30.033120"],["-89.972730","30.033070"],["-89.972840","30.033020"],["-89.972930","30.032980"],["-89.973050","30.032915"],["-89.973170","30.032850"],["-89.973355","30.032750"],["-89.973540","30.032650"],["-89.973675","30.032565"],["-89.973810","30.032480"],["-89.973923","30.032410"],["-89.974035","30.032340"],["-89.974148","30.032270"],["-89.974260","30.032200"],["-89.974355","30.032145"],["-89.974450","30.032090"],["-89.974545","30.032035"],["-89.974640","30.031980"],["-89.974735","30.031925"],["-89.974830","30.031870"],["-89.974925","30.031815"],["-89.975020","30.031760"],["-89.975115","30.031709"],["-89.975210","30.031658"],["-89.975305","30.031606"],["-89.975400","30.031555"],["-89.975495","30.031504"],["-89.975590","30.031453"],["-89.975685","30.031401"],["-89.975780","30.031350"],["-89.975880","30.031300"],["-89.975940","30.031260"],["-89.976000","30.031230"],["-89.975910","30.031100"],["-89.975837","30.030990"],["-89.975765","30.030880"],["-89.975692","30.030770"],["-89.975620","30.030660"],["-89.975540","30.030540"],["-89.975460","30.030420"],["-89.975380","30.030300"],["-89.975300","30.030180"],["-89.975225","30.030075"],["-89.975150","30.029970"],["-89.975070","30.029840"],["-89.974990","30.029730"],["-89.974920","30.029570"],["-89.974960","30.029613"],["-89.974920","30.029570"],["-89.975020","30.029500"],["-89.974880","30.029380"],["-89.974760","30.029500"],["-89.974630","30.029580"],["-89.974510","30.029650"],["-89.974390","30.029730"],["-89.974370","30.029740"],["-89.974240","30.029820"],["-89.974060","30.029933"],["-89.973880","30.030045"],["-89.973700","30.030158"],["-89.973520","30.030270"],["-89.973430","30.030150"],["-89.973520","30.030150"],["-89.973490","30.030110"],["-89.973430","30.030150"],["-89.973520","30.030270"],["-89.973350","30.030375"],["-89.973180","30.030480"],["-89.973035","30.030570"],["-89.972890","30.030660"],["-89.972745","30.030750"],["-89.972600","30.030840"],["-89.972455","30.030930"],["-89.972310","30.031020"],["-89.972165","30.031110"],["-89.972020","30.031200"],["-89.971999","30.031174"],["-89.972020","30.031200"],["-89.971970","30.031240"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971947","30.031550"],["-89.972015","30.031650"],["-89.972082","30.031750"],["-89.972150","30.031850"],["-89.972260","30.032010"],["-89.972160","30.032174"]]},{"type":"MultiPoint","coordinates":[["-89.958473","30.043282"],["-89.930119","30.040284"],["-89.907013","30.037929"],["-89.930480","30.058377"],["-89.930453","30.043822"],["-89.930208","30.058080"],["-89.928311","30.062050"],["-89.930647","30.049232"],["-89.931043","30.053173"],["-89.926833","30.063922"],["-89.909273","30.037165"],["-89.911378","30.036545"],["-89.959222","30.043676"],["-89.955431","30.038995"],["-89.957965","30.037094"],["-89.961308","30.035108"],["-89.967795","30.033065"],["-89.974960","30.029613"],["-89.962511","30.047538"],["-89.973520","30.030150"],["-89.912303","30.038720"],["-89.916939","30.040869"],["-89.923603","30.038871"],["-89.929655","30.037035"],["-89.919294","30.040214"],["-89.972160","30.032174"],["-89.971999","30.031174"]]},{"type":"LineString","coordinates":[["-89.907013","30.037929"],["-89.907000","30.037890"],["-89.907100","30.037860"],["-89.907308","30.037793"],["-89.907515","30.037725"],["-89.907723","30.037658"],["-89.907930","30.037590"],["-89.908050","30.037553"],["-89.908170","30.037515"],["-89.908290","30.037478"],["-89.908410","30.037440"],["-89.908490","30.037410"],["-89.908685","30.037348"],["-89.908880","30.037285"],["-89.909075","30.037223"],["-89.909270","30.037160"],["-89.909273","30.037165"],["-89.909270","30.037160"],["-89.909400","30.037120"],["-89.909530","30.037080"],["-89.909660","30.037040"],["-89.909790","30.037000"],["-89.909899","30.036965"],["-89.910008","30.036930"],["-89.910116","30.036895"],["-89.910225","30.036860"],["-89.910334","30.036825"],["-89.910443","30.036790"],["-89.910551","30.036755"],["-89.910660","30.036720"],["-89.910835","30.036665"],["-89.911010","30.036610"],["-89.911185","30.036555"],["-89.911360","30.036500"],["-89.911378","30.036545"],["-89.911360","30.036500"],["-89.911450","30.036470"],["-89.911530","30.036635"],["-89.911610","30.036800"],["-89.911675","30.036970"],["-89.911740","30.037140"],["-89.911807","30.037295"],["-89.911875","30.037450"],["-89.911942","30.037605"],["-89.912010","30.037760"],["-89.912062","30.037888"],["-89.912115","30.038015"],["-89.912167","30.038143"],["-89.912220","30.038270"],["-89.912265","30.038375"],["-89.912310","30.038480"],["-89.912355","30.038585"],["-89.912400","30.038690"],["-89.912303","30.038720"],["-89.912400","30.038690"],["-89.912440","30.038770"],["-89.912500","30.038940"],["-89.912567","30.039108"],["-89.912635","30.039275"],["-89.912702","30.039443"],["-89.912770","30.039610"],["-89.912825","30.039745"],["-89.912880","30.039880"],["-89.912932","30.040015"],["-89.912985","30.040150"],["-89.913037","30.040285"],["-89.913090","30.040420"],["-89.913145","30.040558"],["-89.913200","30.040695"],["-89.913255","30.040833"],["-89.913310","30.040970"],["-89.913360","30.041090"],["-89.913360","30.041100"],["-89.913430","30.041270"],["-89.913467","30.041370"],["-89.913505","30.041470"],["-89.913542","30.041570"],["-89.913580","30.041670"],["-89.913640","30.041840"],["-89.913830","30.041790"],["-89.914030","30.041730"],["-89.914230","30.041670"],["-89.914430","30.041610"],["-89.914630","30.041550"],["-89.914775","30.041510"],["-89.914920","30.041470"],["-89.915080","30.041420"],["-89.915160","30.041390"],["-89.915330","30.041340"],["-89.915525","30.041280"],["-89.915720","30.041220"],["-89.915871","30.041174"],["-89.916023","30.041128"],["-89.916174","30.041081"],["-89.916325","30.041035"],["-89.916476","30.040989"],["-89.916628","30.040943"],["-89.916779","30.040896"],["-89.916930","30.040850"],["-89.916939","30.040869"],["-89.916930","30.040850"],["-89.917050","30.040820"],["-89.917200","30.040770"],["-89.917315","30.040740"],["-89.917430","30.040710"],["-89.917543","30.040675"],["-89.917655","30.040640"],["-89.917768","30.040605"],["-89.917880","30.040570"],["-89.918028","30.040525"],["-89.918175","30.040480"],["-89.918323","30.040435"],["-89.918470","30.040390"],["-89.918670","30.040330"],["-89.918700","30.040320"],["-89.918823","30.040283"],["-89.918945","30.040245"],["-89.919068","30.040208"],["-89.919190","30.040170"],["-89.919260","30.040150"],["-89.919294","30.040214"],["-89.919260","30.040150"],["-89.919390","30.040110"],["-89.919538","30.040065"],["-89.919685","30.040020"],["-89.919833","30.039975"],["-89.919980","30.039930"],["-89.920128","30.039885"],["-89.920275","30.039840"],["-89.920423","30.039795"],["-89.920570","30.039750"],["-89.920710","30.039700"],["-89.920830","30.039660"],["-89.920950","30.039620"],["-89.921070","30.039580"],["-89.921190","30.039540"],["-89.921320","30.039500"],["-89.921430","30.039470"],["-89.921570","30.039430"],["-89.921710","30.039390"],["-89.921850","30.039350"],["-89.921990","30.039310"],["-89.922190","30.039251"],["-89.922390","30.039193"],["-89.922590","30.039134"],["-89.922790","30.039075"],["-89.922990","30.039016"],["-89.923190","30.038958"],["-89.923390","30.038899"],["-89.923590","30.038840"],["-89.923603","30.038871"],["-89.923590","30.038840"],["-89.923700","30.038800"],["-89.923895","30.038741"],["-89.924090","30.038683"],["-89.924285","30.038624"],["-89.924480","30.038565"],["-89.924675","30.038506"],["-89.924870","30.038448"],["-89.925065","30.038389"],["-89.925260","30.038330"],["-89.925455","30.038271"],["-89.925650","30.038213"],["-89.925845","30.038154"],["-89.926040","30.038095"],["-89.926235","30.038036"],["-89.926430","30.037978"],["-89.926625","30.037919"],["-89.926820","30.037860"],["-89.926926","30.037828"],["-89.927031","30.037796"],["-89.927137","30.037764"],["-89.927243","30.037733"],["-89.927348","30.037701"],["-89.927454","30.037669"],["-89.927559","30.037637"],["-89.927665","30.037605"],["-89.927771","30.037573"],["-89.927876","30.037541"],["-89.927982","30.037509"],["-89.928088","30.037478"],["-89.928193","30.037446"],["-89.928299","30.037414"],["-89.928404","30.037382"],["-89.928510","30.037350"],["-89.928651","30.037308"],["-89.928793","30.037265"],["-89.928934","30.037223"],["-89.929075","30.037180"],["-89.929216","30.037138"],["-89.929358","30.037095"],["-89.929499","30.037053"],["-89.929640","30.037010"],["-89.929655","30.037035"],["-89.929640","30.037010"],["-89.929830","30.036950"],["-89.929850","30.037080"],["-89.929865","30.037213"],["-89.929880","30.037345"],["-89.929895","30.037478"],["-89.929910","30.037610"],["-89.929930","30.037798"],["-89.929950","30.037985"],["-89.929970","30.038173"],["-89.929990","30.038360"],["-89.930010","30.038550"],["-89.930025","30.038715"],["-89.930040","30.038880"],["-89.930050","30.038940"],["-89.930060","30.039040"],["-89.930070","30.039140"],["-89.930085","30.039310"],["-89.930100","30.039480"],["-89.930120","30.039670"],["-89.930140","30.039860"],["-89.930150","30.039965"],["-89.930160","30.040070"],["-89.930170","30.040175"],["-89.930180","30.040280"],["-89.930119","30.040284"],["-89.930180","30.040280"],["-89.930190","30.040390"],["-89.930210","30.040560"],["-89.930225","30.040703"],["-89.930240","30.040845"],["-89.930255","30.040988"],["-89.930270","30.041130"],["-89.930280","30.041248"],["-89.930290","30.041365"],["-89.930300","30.041483"],["-89.930310","30.041600"],["-89.930320","30.041750"],["-89.930330","30.041850"],["-89.930340","30.041950"],["-89.930350","30.042050"],["-89.930360","30.042150"],["-89.930370","30.042250"],["-89.930380","30.042350"],["-89.930390","30.042450"],["-89.930400","30.042550"],["-89.930412","30.042663"],["-89.930425","30.042775"],["-89.930437","30.042888"],["-89.930450","30.043000"],["-89.930465","30.043115"],["-89.930480","30.043230"],["-89.930490","30.043375"],["-89.930500","30.043520"],["-89.930505","30.043670"],["-89.930510","30.043820"],["-89.930453","30.043822"],["-89.930510","30.043820"],["-89.930510","30.043940"],["-89.930510","30.044050"],["-89.930510","30.044160"],["-89.930510","30.044270"],["-89.930510","30.044380"],["-89.930495","30.044550"],["-89.930480","30.044720"],["-89.930470","30.044760"],["-89.930450","30.044950"],["-89.930428","30.045083"],["-89.930405","30.045215"],["-89.930383","30.045348"],["-89.930360","30.045480"],["-89.930350","30.045540"],["-89.930340","30.045580"],["-89.930330","30.045660"],["-89.930320","30.045710"],["-89.930298","30.045848"],["-89.930275","30.045985"],["-89.930253","30.046123"],["-89.930230","30.046260"],["-89.930210","30.046370"],["-89.930190","30.046550"],["-89.930180","30.046630"],["-89.930170","30.046765"],["-89.930160","30.046900"],["-89.930150","30.047080"],["-89.930150","30.047260"],["-89.930150","30.047350"],["-89.930150","30.047450"],["-89.930150","30.047550"],["-89.930150","30.047620"],["-89.930155","30.047725"],["-89.930160","30.047830"],["-89.930170","30.047910"],["-89.930184","30.048048"],["-89.930197","30.048185"],["-89.930211","30.048323"],["-89.930225","30.048460"],["-89.930239","30.048598"],["-89.930252","30.048735"],["-89.930266","30.048873"],["-89.930280","30.049010"],["-89.930280","30.049115"],["-89.930280","30.049220"],["-89.930292","30.049340"],["-89.930305","30.049460"],["-89.930317","30.049580"],["-89.930330","30.049700"],["-89.930342","30.049820"],["-89.930355","30.049940"],["-89.930367","30.050060"],["-89.930380","30.050180"],["-89.930400","30.050320"],["-89.930415","30.050475"],["-89.930430","30.050630"],["-89.930445","30.050785"],["-89.930460","30.050940"],["-89.930475","30.051045"],["-89.930490","30.051150"],["-89.930507","30.051309"],["-89.930525","30.051468"],["-89.930542","30.051626"],["-89.930560","30.051785"],["-89.930577","30.051944"],["-89.930595","30.052103"],["-89.930612","30.052261"],["-89.930630","30.052420"],["-89.930642","30.052535"],["-89.930655","30.052650"],["-89.930667","30.052765"],["-89.930680","30.052880"],["-89.930695","30.053035"],["-89.930710","30.053190"],["-89.930730","30.053340"],["-89.930740","30.053495"],["-89.930750","30.053650"],["-89.930760","30.053805"],["-89.930770","30.053960"],["-89.930770","30.054090"],["-89.930770","30.054220"],["-89.930775","30.054345"],["-89.930780","30.054470"],["-89.930785","30.054595"],["-89.930790","30.054720"],["-89.930785","30.054890"],["-89.930780","30.055060"],["-89.930773","30.055170"],["-89.930765","30.055280"],["-89.930758","30.055390"],["-89.930750","30.055500"],["-89.930740","30.055630"],["-89.930730","30.055760"],["-89.930715","30.055915"],["-89.930700","30.056070"],["-89.930686","30.056168"],["-89.930673","30.056265"],["-89.930659","30.056363"],["-89.930645","30.056460"],["-89.930631","30.056558"],["-89.930618","30.056655"],["-89.930604","30.056753"],["-89.930590","30.056850"],["-89.930555","30.057020"],["-89.930520","30.057190"],["-89.930485","30.057340"],["-89.930450","30.057490"],["-89.930425","30.057600"],["-89.930400","30.057710"],["-89.930373","30.057808"],["-89.930345","30.057905"],["-89.930318","30.058003"],["-89.930290","30.058100"],["-89.930208","30.058080"],["-89.930290","30.058100"],["-89.930270","30.058190"],["-89.930238","30.058288"],["-89.930205","30.058385"],["-89.930173","30.058483"],["-89.930140","30.058580"],["-89.930090","30.058740"],["-89.930060","30.058820"],["-89.930030","30.058910"],["-89.929963","30.059080"],["-89.929895","30.059250"],["-89.929828","30.059420"],["-89.929760","30.059590"],["-89.929720","30.059695"],["-89.929680","30.059800"],["-89.929600","30.059965"],["-89.929520","30.060130"],["-89.929460","30.060255"],["-89.929400","30.060380"],["-89.929340","30.060505"],["-89.929280","30.060630"],["-89.929230","30.060720"],["-89.929155","30.060850"],["-89.929080","30.060980"],["-89.929005","30.061110"],["-89.928930","30.061240"],["-89.928845","30.061385"],["-89.928760","30.061530"],["-89.928673","30.061660"],["-89.928585","30.061790"],["-89.928498","30.061920"],["-89.928410","30.062050"],["-89.928390","30.062090"],["-89.928311","30.062050"],["-89.928390","30.062090"],["-89.928290","30.062230"],["-89.928180","30.062378"],["-89.928070","30.062525"],["-89.927960","30.062673"],["-89.927850","30.062820"],["-89.927768","30.062920"],["-89.927685","30.063020"],["-89.927603","30.063120"],["-89.927520","30.063220"],["-89.927435","30.063315"],["-89.927350","30.063410"],["-89.927233","30.063545"],["-89.927115","30.063680"],["-89.926998","30.063815"],["-89.926880","30.063950"],["-89.926833","30.063922"],["-89.926880","30.063950"],["-89.926850","30.063990"],["-89.926745","30.064110"],["-89.926640","30.064230"],["-89.926535","30.064350"],["-89.926430","30.064470"],["-89.926355","30.064550"],["-89.926280","30.064630"],["-89.926450","30.064740"],["-89.926525","30.064655"],["-89.926600","30.064570"],["-89.926705","30.064453"],["-89.926810","30.064335"],["-89.926915","30.064218"],["-89.927020","30.064100"],["-89.927145","30.063955"],["-89.927270","30.063810"],["-89.927395","30.063665"],["-89.927520","30.063520"],["-89.927630","30.063410"],["-89.927710","30.063310"],["-89.927790","30.063210"],["-89.927870","30.063110"],["-89.927950","30.063010"],["-89.928013","30.062930"],["-89.928075","30.062850"],["-89.928138","30.062770"],["-89.928200","30.062690"],["-89.928270","30.062595"],["-89.928340","30.062500"],["-89.928410","30.062405"],["-89.928480","30.062310"],["-89.928565","30.062190"],["-89.928650","30.062070"],["-89.928720","30.061960"],["-89.928790","30.061850"],["-89.928870","30.061730"],["-89.928950","30.061610"],["-89.929025","30.061488"],["-89.929100","30.061365"],["-89.929175","30.061243"],["-89.929250","30.061120"],["-89.929315","30.060995"],["-89.929380","30.060870"],["-89.929450","30.060740"],["-89.929510","30.060620"],["-89.929570","30.060500"],["-89.929630","30.060380"],["-89.929690","30.060260"],["-89.929770","30.060090"],["-89.929850","30.059920"],["-89.929880","30.059860"],["-89.929943","30.059705"],["-89.930005","30.059550"],["-89.930068","30.059395"],["-89.930130","30.059240"],["-89.930200","30.059060"],["-89.930270","30.058880"],["-89.930313","30.058753"],["-89.930355","30.058625"],["-89.930398","30.058498"],["-89.930440","30.058370"],["-89.930480","30.058377"],["-89.930440","30.058370"],["-89.930480","30.058240"],["-89.930505","30.058138"],["-89.930530","30.058035"],["-89.930555","30.057933"],["-89.930580","30.057830"],["-89.930605","30.057728"],["-89.930630","30.057625"],["-89.930655","30.057523"],["-89.930680","30.057420"],["-89.930715","30.057265"],["-89.930750","30.057110"],["-89.930780","30.056970"],["-89.930810","30.056780"],["-89.930835","30.056615"],["-89.930860","30.056450"],["-89.930885","30.056285"],["-89.930910","30.056120"],["-89.930910","30.056090"],["-89.930930","30.055920"],["-89.930940","30.055820"],["-89.930950","30.055670"],["-89.930960","30.055555"],["-89.930970","30.055440"],["-89.930980","30.055260"],["-89.930990","30.055080"],["-89.930995","30.054900"],["-89.931000","30.054720"],["-89.930992","30.054605"],["-89.930985","30.054490"],["-89.930977","30.054375"],["-89.930970","30.054260"],["-89.930970","30.054250"],["-89.930965","30.054065"],["-89.930960","30.053880"],["-89.930945","30.053710"],["-89.930930","30.053540"],["-89.930920","30.053435"],["-89.930910","30.053330"],["-89.930900","30.053230"],["-89.930890","30.053180"],["-89.931043","30.053173"],["-89.930890","30.053180"],["-89.930890","30.053160"],["-89.930872","30.052970"],["-89.930855","30.052780"],["-89.930837","30.052590"],["-89.930820","30.052400"],["-89.930805","30.052235"],["-89.930790","30.052070"],["-89.930779","30.051953"],["-89.930767","30.051835"],["-89.930756","30.051718"],["-89.930745","30.051600"],["-89.930734","30.051483"],["-89.930722","30.051365"],["-89.930711","30.051248"],["-89.930700","30.051130"],["-89.930690","30.051029"],["-89.930680","30.050928"],["-89.930670","30.050826"],["-89.930660","30.050725"],["-89.930650","30.050624"],["-89.930640","30.050523"],["-89.930630","30.050421"],["-89.930620","30.050320"],["-89.930610","30.050198"],["-89.930600","30.050075"],["-89.930590","30.049953"],["-89.930580","30.049830"],["-89.930570","30.049685"],["-89.930560","30.049540"],["-89.930545","30.049390"],["-89.930573","30.049260"],["-89.930600","30.049130"],["-89.930647","30.049232"],["-89.930600","30.049130"],["-89.930700","30.049090"],["-89.930860","30.049040"],["-89.931010","30.048980"],["-89.931180","30.048900"],["-89.931370","30.048820"],["-89.931500","30.048740"],["-89.931635","30.048670"],["-89.931770","30.048600"],["-89.931865","30.048535"],["-89.931960","30.048470"],["-89.932110","30.048370"],["-89.932200","30.048305"],["-89.932290","30.048240"],["-89.932390","30.048170"],["-89.932490","30.048100"],["-89.932580","30.048030"],["-89.932710","30.047950"],["-89.932815","30.047875"],["-89.932920","30.047800"],["-89.933060","30.047680"],["-89.933120","30.047630"],["-89.933220","30.047570"],["-89.933320","30.047510"],["-89.933450","30.047420"],["-89.933580","30.047330"],["-89.933735","30.047215"],["-89.933890","30.047100"],["-89.933995","30.047025"],["-89.934100","30.046950"],["-89.934260","30.046840"],["-89.934420","30.046730"],["-89.934520","30.046659"],["-89.934620","30.046588"],["-89.934720","30.046516"],["-89.934820","30.046445"],["-89.934920","30.046374"],["-89.935020","30.046303"],["-89.935120","30.046231"],["-89.935220","30.046160"],["-89.935290","30.046110"],["-89.935440","30.046000"],["-89.935588","30.045895"],["-89.935735","30.045790"],["-89.935883","30.045685"],["-89.936030","30.045580"],["-89.936190","30.045470"],["-89.936340","30.045350"],["-89.936460","30.045265"],["-89.936580","30.045180"],["-89.936700","30.045095"],["-89.936820","30.045010"],["-89.936930","30.044940"],["-89.937033","30.044868"],["-89.937135","30.044795"],["-89.937238","30.044723"],["-89.937340","30.044650"],["-89.937443","30.044578"],["-89.937545","30.044505"],["-89.937648","30.044433"],["-89.937750","30.044360"],["-89.937905","30.044253"],["-89.938060","30.044145"],["-89.938215","30.044038"],["-89.938370","30.043930"],["-89.938530","30.043810"],["-89.938690","30.043690"],["-89.938850","30.043575"],["-89.939010","30.043460"],["-89.939030","30.043440"],["-89.939110","30.043390"],["-89.939220","30.043315"],["-89.939330","30.043240"],["-89.939340","30.043230"],["-89.939500","30.043110"],["-89.939645","30.043010"],["-89.939790","30.042910"],["-89.939935","30.042810"],["-89.940080","30.042710"],["-89.940199","30.042624"],["-89.940318","30.042538"],["-89.940436","30.042451"],["-89.940555","30.042365"],["-89.940674","30.042279"],["-89.940793","30.042193"],["-89.940911","30.042106"],["-89.941030","30.042020"],["-89.941118","30.041958"],["-89.941205","30.041895"],["-89.941293","30.041833"],["-89.941380","30.041770"],["-89.941483","30.041703"],["-89.941585","30.041635"],["-89.941688","30.041568"],["-89.941790","30.041500"],["-89.941950","30.041390"],["-89.942100","30.041280"],["-89.942110","30.041270"],["-89.942270","30.041160"],["-89.942430","30.041040"],["-89.942590","30.040930"],["-89.942750","30.040810"],["-89.942910","30.040690"],["-89.943040","30.040595"],["-89.943170","30.040500"],["-89.943300","30.040405"],["-89.943430","30.040310"],["-89.943595","30.040200"],["-89.943760","30.040090"],["-89.943840","30.040040"],["-89.943980","30.039950"],["-89.944110","30.039880"],["-89.944225","30.039825"],["-89.944340","30.039770"],["-89.944460","30.039720"],["-89.944510","30.039700"],["-89.944630","30.039660"],["-89.944680","30.039640"],["-89.944750","30.039620"],["-89.944880","30.039570"],["-89.945000","30.039540"],["-89.945120","30.039510"],["-89.945310","30.039470"],["-89.945470","30.039440"],["-89.945650","30.039420"],["-89.945660","30.039420"],["-89.945820","30.039400"],["-89.945970","30.039400"],["-89.946150","30.039390"],["-89.946270","30.039390"],["-89.946390","30.039400"],["-89.946580","30.039410"],["-89.946690","30.039425"],["-89.946800","30.039440"],["-89.946925","30.039458"],["-89.947050","30.039475"],["-89.947175","30.039493"],["-89.947300","30.039510"],["-89.947480","30.039530"],["-89.947606","30.039546"],["-89.947732","30.039563"],["-89.947859","30.039579"],["-89.947985","30.039595"],["-89.948111","30.039611"],["-89.948237","30.039628"],["-89.948364","30.039644"],["-89.948490","30.039660"],["-89.948700","30.039690"],["-89.948855","30.039710"],["-89.949010","30.039730"],["-89.949165","30.039750"],["-89.949320","30.039770"],["-89.949520","30.039790"],["-89.949725","30.039820"],["-89.949930","30.039850"],["-89.950140","30.039870"],["-89.950305","30.039890"],["-89.950470","30.039910"],["-89.950610","30.039930"],["-89.950750","30.039950"],["-89.950865","30.039965"],["-89.950980","30.039980"],["-89.951117","30.039998"],["-89.951255","30.040015"],["-89.951392","30.040033"],["-89.951530","30.040050"],["-89.951540","30.040050"],["-89.951725","30.040065"],["-89.951910","30.040080"],["-89.952055","30.040080"],["-89.952200","30.040080"],["-89.952315","30.040075"],["-89.952430","30.040070"],["-89.952570","30.040050"],["-89.952600","30.040050"],["-89.952750","30.040020"],["-89.952880","30.040000"],["-89.952980","30.039980"],["-89.953100","30.039950"],["-89.953240","30.039910"],["-89.953345","30.039875"],["-89.953450","30.039840"],["-89.953630","30.039780"],["-89.953740","30.039725"],["-89.953850","30.039670"],["-89.953910","30.039630"],["-89.953930","30.039620"],["-89.953950","30.039610"],["-89.954075","30.039535"],["-89.954200","30.039460"],["-89.954298","30.039400"],["-89.954395","30.039340"],["-89.954493","30.039280"],["-89.954590","30.039220"],["-89.954695","30.039155"],["-89.954800","30.039090"],["-89.954890","30.039030"],["-89.954980","30.038970"],["-89.955090","30.039110"],["-89.955160","30.039190"],["-89.955230","30.039270"],["-89.955340","30.039395"],["-89.955450","30.039520"],["-89.955470","30.039550"],["-89.955565","30.039663"],["-89.955660","30.039775"],["-89.955755","30.039888"],["-89.955850","30.040000"],["-89.955970","30.040150"],["-89.956036","30.040229"],["-89.956102","30.040308"],["-89.956169","30.040386"],["-89.956235","30.040465"],["-89.956301","30.040544"],["-89.956367","30.040623"],["-89.956434","30.040701"],["-89.956500","30.040780"],["-89.956567","30.040863"],["-89.956635","30.040945"],["-89.956702","30.041028"],["-89.956770","30.041110"],["-89.956900","30.041260"],["-89.956970","30.041350"],["-89.957020","30.041410"],["-89.957100","30.041500"],["-89.957170","30.041585"],["-89.957240","30.041670"],["-89.957345","30.041795"],["-89.957450","30.041920"],["-89.957500","30.041990"],["-89.957550","30.042050"],["-89.957560","30.042060"],["-89.957635","30.042150"],["-89.957710","30.042240"],["-89.957785","30.042330"],["-89.957860","30.042420"],["-89.957955","30.042533"],["-89.958050","30.042645"],["-89.958145","30.042758"],["-89.958240","30.042870"],["-89.958315","30.042963"],["-89.958390","30.043055"],["-89.958465","30.043148"],["-89.958540","30.043240"],["-89.958473","30.043282"],["-89.958540","30.043240"],["-89.958630","30.043350"],["-89.958760","30.043500"],["-89.958845","30.043600"],["-89.958930","30.043700"],["-89.958990","30.043770"],["-89.959060","30.043850"],["-89.959130","30.043930"],["-89.959210","30.044040"],["-89.959330","30.044180"],["-89.959400","30.044260"],["-89.959470","30.044340"],["-89.959565","30.044455"],["-89.959660","30.044570"],["-89.959765","30.044700"],["-89.959870","30.044830"],["-89.959930","30.044900"],["-89.959990","30.044970"],["-89.960120","30.045120"],["-89.960205","30.045230"],["-89.960290","30.045340"],["-89.960365","30.045430"],["-89.960440","30.045520"],["-89.960555","30.045665"],["-89.960670","30.045810"],["-89.960690","30.045830"],["-89.960810","30.045980"],["-89.960910","30.046110"],["-89.960950","30.046150"],["-89.960960","30.046170"],["-89.960970","30.046180"],["-89.961030","30.046260"],["-89.961090","30.046330"],["-89.961100","30.046340"],["-89.961210","30.046480"],["-89.961305","30.046605"],["-89.961400","30.046730"],["-89.961530","30.046875"],["-89.961660","30.047020"],["-89.961765","30.047145"],["-89.961870","30.047270"],["-89.961980","30.047400"],["-89.962060","30.047500"],["-89.962140","30.047600"],["-89.962230","30.047690"],["-89.962325","30.047800"],["-89.962420","30.047910"],["-89.962490","30.047990"],["-89.962590","30.047925"],["-89.962690","30.047860"],["-89.962610","30.047800"],["-89.962510","30.047675"],["-89.962410","30.047550"],["-89.962500","30.047510"],["-89.962511","30.047538"],["-89.962500","30.047510"],["-89.962410","30.047550"],["-89.962300","30.047405"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957975","30.042198"],["-89.957900","30.042105"],["-89.957825","30.042013"],["-89.957750","30.041920"],["-89.957675","30.041828"],["-89.957600","30.041735"],["-89.957525","30.041643"],["-89.957450","30.041550"],["-89.957330","30.041400"],["-89.957230","30.041290"],["-89.957210","30.041260"],["-89.957115","30.041145"],["-89.957020","30.041030"],["-89.956910","30.040898"],["-89.956800","30.040765"],["-89.956690","30.040633"],["-89.956580","30.040500"],["-89.956457","30.040350"],["-89.956335","30.040200"],["-89.956212","30.040050"],["-89.956090","30.039900"],["-89.955987","30.039778"],["-89.955885","30.039655"],["-89.955782","30.039533"],["-89.955680","30.039410"],["-89.955580","30.039290"],["-89.955480","30.039160"],["-89.955380","30.039030"],["-89.955431","30.038995"],["-89.955380","30.039030"],["-89.955300","30.038930"],["-89.955220","30.038830"],["-89.955319","30.038766"],["-89.955418","30.038703"],["-89.955516","30.038639"],["-89.955615","30.038575"],["-89.955714","30.038511"],["-89.955813","30.038448"],["-89.955911","30.038384"],["-89.956010","30.038320"],["-89.956163","30.038220"],["-89.956315","30.038120"],["-89.956468","30.038020"],["-89.956620","30.037920"],["-89.956798","30.037810"],["-89.956975","30.037700"],["-89.957153","30.037590"],["-89.957330","30.037480"],["-89.957488","30.037380"],["-89.957645","30.037280"],["-89.957803","30.037180"],["-89.957960","30.037080"],["-89.957965","30.037094"],["-89.957960","30.037080"],["-89.958030","30.037030"],["-89.958165","30.036945"],["-89.958300","30.036860"],["-89.958435","30.036775"],["-89.958570","30.036690"],["-89.958690","30.036620"],["-89.958845","30.036523"],["-89.959000","30.036425"],["-89.959155","30.036328"],["-89.959310","30.036230"],["-89.959440","30.036150"],["-89.959535","30.036090"],["-89.959630","30.036030"],["-89.959795","30.035920"],["-89.959960","30.035810"],["-89.959990","30.035800"],["-89.960140","30.035720"],["-89.960288","30.035640"],["-89.960435","30.035560"],["-89.960583","30.035480"],["-89.960730","30.035400"],["-89.960800","30.035360"],["-89.960890","30.035310"],["-89.961020","30.035230"],["-89.961110","30.035170"],["-89.961200","30.035110"],["-89.961270","30.035070"],["-89.961308","30.035108"],["-89.961270","30.035070"],["-89.961350","30.035020"],["-89.961445","30.034950"],["-89.961540","30.034880"],["-89.961660","30.034810"],["-89.961780","30.034740"],["-89.961790","30.034740"],["-89.961920","30.034660"],["-89.962060","30.034570"],["-89.962200","30.034480"],["-89.962370","30.034370"],["-89.962530","30.034285"],["-89.962690","30.034200"],["-89.962730","30.034180"],["-89.962845","30.034125"],["-89.962960","30.034070"],["-89.963120","30.034000"],["-89.963240","30.033950"],["-89.963375","30.033900"],["-89.963510","30.033850"],["-89.963620","30.033810"],["-89.963730","30.033770"],["-89.963860","30.033740"],["-89.964065","30.033695"],["-89.964270","30.033650"],["-89.964450","30.033610"],["-89.964655","30.033570"],["-89.964860","30.033530"],["-89.965015","30.033500"],["-89.965170","30.033470"],["-89.965310","30.033440"],["-89.965433","30.033418"],["-89.965555","30.033395"],["-89.965678","30.033373"],["-89.965800","30.033350"],["-89.965923","30.033328"],["-89.966045","30.033305"],["-89.966168","30.033283"],["-89.966290","30.033260"],["-89.966390","30.033240"],["-89.966503","30.033219"],["-89.966615","30.033198"],["-89.966728","30.033176"],["-89.966840","30.033155"],["-89.966953","30.033134"],["-89.967065","30.033113"],["-89.967178","30.033091"],["-89.967290","30.033070"],["-89.967475","30.033040"],["-89.967660","30.033010"],["-89.967780","30.032990"],["-89.967795","30.033065"],["-89.967780","30.032990"],["-89.967900","30.032970"],["-89.967960","30.032960"],["-89.968030","30.032950"],["-89.968120","30.032950"],["-89.968290","30.032940"],["-89.968440","30.032935"],["-89.968590","30.032930"],["-89.968740","30.032935"],["-89.968890","30.032940"],["-89.969005","30.032950"],["-89.969120","30.032960"],["-89.969290","30.032980"],["-89.969470","30.033010"],["-89.969680","30.033040"],["-89.969870","30.033090"],["-89.970035","30.033128"],["-89.970200","30.033165"],["-89.970365","30.033203"],["-89.970530","30.033240"],["-89.970670","30.033265"],["-89.970810","30.033290"],["-89.970900","30.033300"],["-89.971090","30.033320"],["-89.971250","30.033330"],["-89.971350","30.033340"],["-89.971500","30.033330"],["-89.971640","30.033330"],["-89.971710","30.033320"],["-89.971820","30.033310"],["-89.971830","30.033300"],["-89.972040","30.033260"],["-89.972230","30.033230"],["-89.972400","30.033180"],["-89.972540","30.033140"],["-89.972580","30.033130"],["-89.972730","30.033080"],["-89.972850","30.033030"],["-89.972940","30.032980"],["-89.973060","30.032920"],["-89.973180","30.032860"],["-89.973365","30.032760"],["-89.973550","30.032660"],["-89.973685","30.032575"],["-89.973820","30.032490"],["-89.973933","30.032420"],["-89.974045","30.032350"],["-89.974158","30.032280"],["-89.974270","30.032210"],["-89.974365","30.032155"],["-89.974460","30.032100"],["-89.974555","30.032045"],["-89.974650","30.031990"],["-89.974745","30.031935"],["-89.974840","30.031880"],["-89.974935","30.031825"],["-89.975030","30.031770"],["-89.975125","30.031719"],["-89.975220","30.031668"],["-89.975315","30.031616"],["-89.975410","30.031565"],["-89.975505","30.031514"],["-89.975600","30.031463"],["-89.975695","30.031411"],["-89.975790","30.031360"],["-89.975890","30.031300"],["-89.975950","30.031270"],["-89.976000","30.031230"],["-89.975920","30.031120"],["-89.975845","30.031005"],["-89.975770","30.030890"],["-89.975695","30.030775"],["-89.975620","30.030660"],["-89.975537","30.030540"],["-89.975455","30.030420"],["-89.975372","30.030300"],["-89.975290","30.030180"],["-89.975220","30.030075"],["-89.975150","30.029970"],["-89.975070","30.029840"],["-89.974990","30.029730"],["-89.974920","30.029640"],["-89.974920","30.029570"],["-89.974960","30.029613"],["-89.974920","30.029570"],["-89.975020","30.029500"],["-89.974880","30.029380"],["-89.974760","30.029500"],["-89.974630","30.029580"],["-89.974510","30.029650"],["-89.974390","30.029730"],["-89.974370","30.029740"],["-89.974240","30.029820"],["-89.974060","30.029933"],["-89.973880","30.030045"],["-89.973700","30.030158"],["-89.973520","30.030270"],["-89.973430","30.030150"],["-89.973490","30.030110"],["-89.973520","30.030150"],["-89.973490","30.030110"],["-89.973430","30.030150"],["-89.973520","30.030270"],["-89.973350","30.030375"],["-89.973180","30.030480"],["-89.973035","30.030570"],["-89.972890","30.030660"],["-89.972745","30.030750"],["-89.972600","30.030840"],["-89.972455","30.030930"],["-89.972310","30.031020"],["-89.972165","30.031110"],["-89.972020","30.031200"],["-89.971999","30.031174"],["-89.972020","30.031200"],["-89.971970","30.031240"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971947","30.031550"],["-89.972015","30.031650"],["-89.972082","30.031750"],["-89.972150","30.031850"],["-89.972260","30.032010"],["-89.972160","30.032174"]]},{"type":"MultiPoint","coordinates":[["-89.968094","30.032694"],["-89.961367","30.034540"],["-89.955169","30.038474"],["-89.958473","30.043282"],["-89.951160","30.033740"],["-89.948581","30.030541"],["-89.948178","30.028785"],["-89.908391","30.034789"],["-89.907013","30.037929"],["-89.926430","30.020995"],["-89.920839","30.023871"],["-89.918973","30.025208"],["-89.954533","30.037953"],["-89.949553","30.031907"],["-89.959222","30.043676"],["-89.955431","30.038995"],["-89.962511","30.047538"],["-89.947960","30.026614"],["-89.972160","30.032174"],["-89.913426","30.030212"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972600","30.032820"],["-89.972490","30.032880"],["-89.972420","30.032910"],["-89.972320","30.032950"],["-89.972220","30.032980"],["-89.972110","30.033020"],["-89.972030","30.033050"],["-89.971890","30.033080"],["-89.971790","30.033090"],["-89.971700","30.033100"],["-89.971520","30.033120"],["-89.971390","30.033130"],["-89.971260","30.033140"],["-89.971170","30.033140"],["-89.971070","30.033130"],["-89.970950","30.033120"],["-89.970790","30.033100"],["-89.970630","30.033070"],["-89.970450","30.033030"],["-89.970290","30.032990"],["-89.970120","30.032940"],["-89.969930","30.032900"],["-89.969735","30.032860"],["-89.969540","30.032820"],["-89.969370","30.032790"],["-89.969180","30.032770"],["-89.968970","30.032760"],["-89.968800","30.032750"],["-89.968680","30.032745"],["-89.968560","30.032740"],["-89.968340","30.032750"],["-89.968170","30.032750"],["-89.968100","30.032760"],["-89.968094","30.032694"],["-89.968100","30.032760"],["-89.968000","30.032760"],["-89.967870","30.032780"],["-89.967745","30.032795"],["-89.967620","30.032810"],["-89.967460","30.032840"],["-89.967300","30.032870"],["-89.967170","30.032900"],["-89.967040","30.032930"],["-89.966860","30.032960"],["-89.966650","30.033000"],["-89.966510","30.033030"],["-89.966310","30.033060"],["-89.966160","30.033090"],["-89.966010","30.033120"],["-89.965860","30.033150"],["-89.965708","30.033178"],["-89.965555","30.033205"],["-89.965403","30.033233"],["-89.965250","30.033260"],["-89.965130","30.033290"],["-89.965003","30.033315"],["-89.964875","30.033340"],["-89.964748","30.033365"],["-89.964620","30.033390"],["-89.964505","30.033410"],["-89.964390","30.033430"],["-89.964275","30.033450"],["-89.964160","30.033470"],["-89.963960","30.033520"],["-89.963800","30.033560"],["-89.963680","30.033580"],["-89.963540","30.033625"],["-89.963400","30.033670"],["-89.963250","30.033710"],["-89.963130","30.033760"],["-89.963100","30.033770"],["-89.963050","30.033790"],["-89.962920","30.033830"],["-89.962770","30.033880"],["-89.962710","30.033910"],["-89.962540","30.033990"],["-89.962370","30.034060"],["-89.962220","30.034130"],["-89.962160","30.034170"],["-89.962070","30.034220"],["-89.962030","30.034240"],["-89.961930","30.034295"],["-89.961830","30.034350"],["-89.961710","30.034420"],["-89.961590","30.034490"],["-89.961490","30.034560"],["-89.961420","30.034590"],["-89.961410","30.034590"],["-89.961367","30.034540"],["-89.961410","30.034590"],["-89.961250","30.034700"],["-89.961150","30.034765"],["-89.961050","30.034830"],["-89.960950","30.034895"],["-89.960850","30.034960"],["-89.960755","30.035015"],["-89.960660","30.035070"],["-89.960580","30.035110"],["-89.960425","30.035230"],["-89.960270","30.035350"],["-89.960250","30.035370"],["-89.960090","30.035480"],["-89.959940","30.035590"],["-89.959820","30.035670"],["-89.959700","30.035750"],["-89.959575","30.035833"],["-89.959450","30.035915"],["-89.959325","30.035998"],["-89.959200","30.036080"],["-89.959045","30.036178"],["-89.958890","30.036275"],["-89.958735","30.036373"],["-89.958580","30.036470"],["-89.958450","30.036540"],["-89.958310","30.036630"],["-89.958170","30.036720"],["-89.958030","30.036810"],["-89.957890","30.036900"],["-89.957755","30.036985"],["-89.957620","30.037070"],["-89.957485","30.037155"],["-89.957350","30.037240"],["-89.957215","30.037325"],["-89.957080","30.037410"],["-89.956945","30.037495"],["-89.956810","30.037580"],["-89.956655","30.037680"],["-89.956500","30.037780"],["-89.956340","30.037875"],["-89.956180","30.037970"],["-89.956025","30.038060"],["-89.955870","30.038150"],["-89.955775","30.038210"],["-89.955680","30.038270"],["-89.955620","30.038310"],["-89.955440","30.038420"],["-89.955290","30.038520"],["-89.955230","30.038440"],["-89.955169","30.038474"],["-89.955230","30.038440"],["-89.955290","30.038520"],["-89.955180","30.038590"],["-89.955070","30.038660"],["-89.954950","30.038720"],["-89.954830","30.038780"],["-89.954905","30.038875"],["-89.954980","30.038970"],["-89.955090","30.039110"],["-89.955160","30.039190"],["-89.955230","30.039270"],["-89.955340","30.039395"],["-89.955450","30.039520"],["-89.955470","30.039550"],["-89.955565","30.039663"],["-89.955660","30.039775"],["-89.955755","30.039888"],["-89.955850","30.040000"],["-89.955970","30.040150"],["-89.956036","30.040229"],["-89.956102","30.040308"],["-89.956169","30.040386"],["-89.956235","30.040465"],["-89.956301","30.040544"],["-89.956367","30.040623"],["-89.956434","30.040701"],["-89.956500","30.040780"],["-89.956567","30.040863"],["-89.956635","30.040945"],["-89.956702","30.041028"],["-89.956770","30.041110"],["-89.956900","30.041260"],["-89.956970","30.041350"],["-89.957020","30.041410"],["-89.957100","30.041500"],["-89.957170","30.041585"],["-89.957240","30.041670"],["-89.957345","30.041795"],["-89.957450","30.041920"],["-89.957500","30.041990"],["-89.957550","30.042050"],["-89.957560","30.042060"],["-89.957635","30.042150"],["-89.957710","30.042240"],["-89.957785","30.042330"],["-89.957860","30.042420"],["-89.957955","30.042533"],["-89.958050","30.042645"],["-89.958145","30.042758"],["-89.958240","30.042870"],["-89.958315","30.042963"],["-89.958390","30.043055"],["-89.958465","30.043148"],["-89.958540","30.043240"],["-89.958473","30.043282"],["-89.958540","30.043240"],["-89.958630","30.043350"],["-89.958760","30.043500"],["-89.958845","30.043600"],["-89.958930","30.043700"],["-89.958990","30.043770"],["-89.959060","30.043850"],["-89.959130","30.043930"],["-89.959210","30.044040"],["-89.959330","30.044180"],["-89.959400","30.044260"],["-89.959470","30.044340"],["-89.959565","30.044455"],["-89.959660","30.044570"],["-89.959765","30.044700"],["-89.959870","30.044830"],["-89.959930","30.044900"],["-89.959990","30.044970"],["-89.960120","30.045120"],["-89.960205","30.045230"],["-89.960290","30.045340"],["-89.960365","30.045430"],["-89.960440","30.045520"],["-89.960555","30.045665"],["-89.960670","30.045810"],["-89.960690","30.045830"],["-89.960810","30.045980"],["-89.960910","30.046110"],["-89.960950","30.046150"],["-89.960960","30.046170"],["-89.960970","30.046180"],["-89.961030","30.046260"],["-89.961090","30.046330"],["-89.961100","30.046340"],["-89.961210","30.046480"],["-89.961305","30.046605"],["-89.961400","30.046730"],["-89.961530","30.046875"],["-89.961660","30.047020"],["-89.961765","30.047145"],["-89.961870","30.047270"],["-89.961980","30.047400"],["-89.962060","30.047500"],["-89.962140","30.047600"],["-89.962230","30.047690"],["-89.962325","30.047800"],["-89.962420","30.047910"],["-89.962490","30.047990"],["-89.962590","30.047925"],["-89.962690","30.047860"],["-89.962610","30.047800"],["-89.962510","30.047675"],["-89.962410","30.047550"],["-89.962500","30.047510"],["-89.962511","30.047538"],["-89.962500","30.047510"],["-89.962410","30.047550"],["-89.962300","30.047405"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957975","30.042198"],["-89.957900","30.042105"],["-89.957825","30.042013"],["-89.957750","30.041920"],["-89.957675","30.041828"],["-89.957600","30.041735"],["-89.957525","30.041643"],["-89.957450","30.041550"],["-89.957330","30.041400"],["-89.957230","30.041290"],["-89.957210","30.041260"],["-89.957115","30.041145"],["-89.957020","30.041030"],["-89.956910","30.040898"],["-89.956800","30.040765"],["-89.956690","30.040633"],["-89.956580","30.040500"],["-89.956457","30.040350"],["-89.956335","30.040200"],["-89.956212","30.040050"],["-89.956090","30.039900"],["-89.955987","30.039778"],["-89.955885","30.039655"],["-89.955782","30.039533"],["-89.955680","30.039410"],["-89.955580","30.039290"],["-89.955480","30.039160"],["-89.955380","30.039030"],["-89.955431","30.038995"],["-89.955380","30.039030"],["-89.955300","30.038930"],["-89.955220","30.038830"],["-89.955145","30.038745"],["-89.955070","30.038660"],["-89.954995","30.038568"],["-89.954920","30.038475"],["-89.954845","30.038383"],["-89.954770","30.038290"],["-89.954665","30.038170"],["-89.954560","30.038050"],["-89.954500","30.037980"],["-89.954533","30.037953"],["-89.954500","30.037980"],["-89.954410","30.037880"],["-89.954337","30.037793"],["-89.954265","30.037705"],["-89.954192","30.037618"],["-89.954120","30.037530"],["-89.954047","30.037443"],["-89.953975","30.037355"],["-89.953902","30.037268"],["-89.953830","30.037180"],["-89.953757","30.037093"],["-89.953685","30.037005"],["-89.953612","30.036918"],["-89.953540","30.036830"],["-89.953467","30.036743"],["-89.953395","30.036655"],["-89.953322","30.036568"],["-89.953250","30.036480"],["-89.953155","30.036366"],["-89.953060","30.036251"],["-89.952965","30.036137"],["-89.952870","30.036023"],["-89.952775","30.035908"],["-89.952680","30.035794"],["-89.952585","30.035679"],["-89.952490","30.035565"],["-89.952395","30.035451"],["-89.952300","30.035336"],["-89.952205","30.035222"],["-89.952110","30.035108"],["-89.952015","30.034993"],["-89.951920","30.034879"],["-89.951825","30.034764"],["-89.951730","30.034650"],["-89.951620","30.034520"],["-89.951510","30.034390"],["-89.951382","30.034235"],["-89.951255","30.034080"],["-89.951127","30.033925"],["-89.951000","30.033770"],["-89.951160","30.033740"],["-89.950973","30.033662"],["-89.950857","30.033613"],["-89.950735","30.033468"],["-89.950613","30.033322"],["-89.950491","30.033177"],["-89.950460","30.033140"],["-89.950341","30.032993"],["-89.950222","30.032845"],["-89.950102","30.032698"],["-89.949983","30.032551"],["-89.949950","30.032510"],["-89.949847","30.032354"],["-89.949744","30.032197"],["-89.949641","30.032041"],["-89.949553","30.031907"],["-89.949403","30.031783"],["-89.949252","30.031659"],["-89.949182","30.031601"],["-89.949129","30.031540"],["-89.949012","30.031392"],["-89.948894","30.031243"],["-89.948860","30.031200"],["-89.948750","30.031047"],["-89.948679","30.030949"],["-89.948637","30.030773"],["-89.948594","30.030597"],["-89.948581","30.030541"],["-89.948452","30.030400"],["-89.948379","30.030319"],["-89.948329","30.030200"],["-89.948319","30.030149"],["-89.948270","30.029974"],["-89.948229","30.029830"],["-89.948200","30.029652"],["-89.948189","30.029580"],["-89.948160","30.029402"],["-89.948165","30.029222"],["-89.948170","30.029042"],["-89.948176","30.028862"],["-89.948178","30.028785"],["-89.948120","30.028790"],["-89.948110","30.028710"],["-89.948110","30.028620"],["-89.948100","30.028490"],["-89.948077","30.028300"],["-89.948055","30.028110"],["-89.948032","30.027920"],["-89.948010","30.027730"],["-89.947987","30.027540"],["-89.947965","30.027350"],["-89.947942","30.027160"],["-89.947920","30.026970"],["-89.947900","30.026850"],["-89.947890","30.026735"],["-89.947880","30.026620"],["-89.947960","30.026614"],["-89.947880","30.026620"],["-89.947870","30.026465"],["-89.947860","30.026310"],["-89.947847","30.026178"],["-89.947835","30.026045"],["-89.947822","30.025913"],["-89.947810","30.025780"],["-89.947790","30.025600"],["-89.947770","30.025420"],["-89.947755","30.025245"],["-89.947740","30.025070"],["-89.947725","30.024895"],["-89.947710","30.024720"],["-89.947695","30.024575"],["-89.947680","30.024430"],["-89.947665","30.024285"],["-89.947650","30.024140"],["-89.947650","30.024040"],["-89.947460","30.024100"],["-89.947360","30.024140"],["-89.947210","30.024180"],["-89.947075","30.024225"],["-89.946940","30.024270"],["-89.946805","30.024315"],["-89.946670","30.024360"],["-89.946565","30.024405"],["-89.946460","30.024450"],["-89.946450","30.024460"],["-89.946248","30.024530"],["-89.946045","30.024600"],["-89.945843","30.024670"],["-89.945640","30.024740"],["-89.945503","30.024785"],["-89.945365","30.024830"],["-89.945228","30.024875"],["-89.945090","30.024920"],["-89.944930","30.024975"],["-89.944770","30.025030"],["-89.944610","30.025085"],["-89.944450","30.025140"],["-89.944265","30.025205"],["-89.944080","30.025270"],["-89.944030","30.025260"],["-89.944020","30.025250"],["-89.944010","30.025250"],["-89.944000","30.025250"],["-89.943990","30.025250"],["-89.943970","30.025260"],["-89.943870","30.025280"],["-89.943750","30.025310"],["-89.943640","30.025330"],["-89.943580","30.025350"],["-89.943460","30.025370"],["-89.943360","30.025400"],["-89.943250","30.025420"],["-89.943180","30.025430"],["-89.943110","30.025430"],["-89.943040","30.025440"],["-89.942970","30.025440"],["-89.942950","30.025440"],["-89.942850","30.025430"],["-89.942770","30.025420"],["-89.942560","30.025400"],["-89.942550","30.025400"],["-89.942360","30.025370"],["-89.942330","30.025360"],["-89.942150","30.025340"],["-89.942040","30.025320"],["-89.941950","30.025300"],["-89.941755","30.025270"],["-89.941560","30.025240"],["-89.941540","30.025240"],["-89.941340","30.025200"],["-89.941140","30.025150"],["-89.941090","30.025140"],["-89.941010","30.025110"],["-89.940940","30.025090"],["-89.940920","30.025080"],["-89.940850","30.025050"],["-89.940750","30.025000"],["-89.940670","30.024960"],["-89.940580","30.024910"],["-89.940500","30.024860"],["-89.940490","30.024860"],["-89.940480","30.024850"],["-89.940430","30.024820"],["-89.940330","30.024750"],["-89.940280","30.024700"],["-89.940230","30.024650"],["-89.940100","30.024550"],["-89.940060","30.024510"],["-89.940000","30.024440"],["-89.939980","30.024420"],["-89.939890","30.024300"],["-89.939860","30.024250"],["-89.939820","30.024170"],["-89.939740","30.024050"],["-89.939690","30.023880"],["-89.939640","30.023730"],["-89.939630","30.023660"],["-89.939620","30.023590"],["-89.939620","30.023580"],["-89.939550","30.023480"],["-89.939550","30.023350"],["-89.939550","30.023220"],["-89.939550","30.023090"],["-89.939550","30.022960"],["-89.939550","30.022830"],["-89.939550","30.022700"],["-89.939550","30.022570"],["-89.939550","30.022440"],["-89.939550","30.022260"],["-89.939550","30.022080"],["-89.939550","30.021900"],["-89.939550","30.021720"],["-89.939550","30.021630"],["-89.939550","30.021520"],["-89.939550","30.021410"],["-89.939550","30.021300"],["-89.939550","30.021190"],["-89.939550","30.021080"],["-89.939550","30.020970"],["-89.939550","30.020860"],["-89.939550","30.020680"],["-89.939555","30.020550"],["-89.939560","30.020420"],["-89.939560","30.020350"],["-89.939630","30.020220"],["-89.939640","30.020120"],["-89.939680","30.020000"],["-89.939750","30.019870"],["-89.939810","30.019730"],["-89.939860","30.019660"],["-89.939920","30.019570"],["-89.939980","30.019490"],["-89.940030","30.019430"],["-89.940080","30.019370"],["-89.940160","30.019290"],["-89.940260","30.019180"],["-89.940270","30.019170"],["-89.940350","30.019100"],["-89.940480","30.019000"],["-89.940520","30.018970"],["-89.940618","30.018900"],["-89.940715","30.018830"],["-89.940813","30.018760"],["-89.940910","30.018690"],["-89.941065","30.018580"],["-89.941220","30.018470"],["-89.941380","30.018350"],["-89.941450","30.018310"],["-89.941450","30.018300"],["-89.941540","30.018240"],["-89.941700","30.018125"],["-89.941860","30.018010"],["-89.942015","30.017890"],["-89.942170","30.017770"],["-89.942220","30.017640"],["-89.942230","30.017560"],["-89.942230","30.017490"],["-89.942220","30.017440"],["-89.942180","30.017380"],["-89.942140","30.017300"],["-89.942095","30.017210"],["-89.942050","30.017120"],["-89.941925","30.017170"],["-89.941800","30.017220"],["-89.941730","30.017250"],["-89.941690","30.017260"],["-89.941560","30.017310"],["-89.941520","30.017320"],["-89.941390","30.017360"],["-89.941340","30.017370"],["-89.941180","30.017420"],["-89.941140","30.017430"],["-89.941040","30.017450"],["-89.940860","30.017500"],["-89.940690","30.017530"],["-89.940540","30.017560"],["-89.940440","30.017580"],["-89.940330","30.017590"],["-89.940130","30.017620"],["-89.940010","30.017640"],["-89.939850","30.017660"],["-89.939800","30.017660"],["-89.939640","30.017680"],["-89.939620","30.017680"],["-89.939590","30.017680"],["-89.939390","30.017700"],["-89.939380","30.017700"],["-89.939180","30.017710"],["-89.939150","30.017710"],["-89.938970","30.017720"],["-89.938760","30.017720"],["-89.938565","30.017710"],["-89.938370","30.017700"],["-89.938240","30.017695"],["-89.938110","30.017690"],["-89.938090","30.017690"],["-89.937870","30.017670"],["-89.937705","30.017655"],["-89.937540","30.017640"],["-89.937470","30.017630"],["-89.937260","30.017610"],["-89.937190","30.017600"],["-89.937020","30.017570"],["-89.936850","30.017540"],["-89.936740","30.017520"],["-89.936550","30.017475"],["-89.936360","30.017430"],["-89.936220","30.017395"],["-89.936080","30.017360"],["-89.935890","30.017310"],["-89.935762","30.017273"],["-89.935635","30.017235"],["-89.935507","30.017198"],["-89.935380","30.017160"],["-89.935210","30.017110"],["-89.935020","30.017055"],["-89.934830","30.017000"],["-89.934710","30.016960"],["-89.934610","30.016940"],["-89.934460","30.016900"],["-89.934300","30.016880"],["-89.934180","30.016870"],["-89.934040","30.016860"],["-89.933910","30.016850"],["-89.933810","30.016840"],["-89.933760","30.016840"],["-89.933610","30.016840"],["-89.933480","30.016850"],["-89.933390","30.016860"],["-89.933330","30.016870"],["-89.933200","30.016880"],["-89.933080","30.016905"],["-89.932960","30.016930"],["-89.932890","30.016940"],["-89.932870","30.016950"],["-89.932770","30.016980"],["-89.932700","30.017010"],["-89.932560","30.017120"],["-89.932370","30.017190"],["-89.932180","30.017280"],["-89.932000","30.017390"],["-89.931840","30.017500"],["-89.931740","30.017570"],["-89.931660","30.017630"],["-89.931550","30.017725"],["-89.931440","30.017820"],["-89.931325","30.017920"],["-89.931210","30.018020"],["-89.931105","30.018115"],["-89.931000","30.018210"],["-89.930970","30.018240"],["-89.930880","30.018320"],["-89.930790","30.018400"],["-89.930660","30.018515"],["-89.930530","30.018630"],["-89.930430","30.018715"],["-89.930330","30.018800"],["-89.930170","30.018930"],["-89.930060","30.019010"],["-89.929950","30.019090"],["-89.929850","30.019159"],["-89.929749","30.019228"],["-89.929649","30.019298"],["-89.929549","30.019367"],["-89.929448","30.019436"],["-89.929348","30.019505"],["-89.929247","30.019574"],["-89.929147","30.019644"],["-89.929037","30.019706"],["-89.928927","30.019769"],["-89.928817","30.019832"],["-89.928707","30.019894"],["-89.928597","30.019957"],["-89.928487","30.020020"],["-89.928377","30.020083"],["-89.928267","30.020145"],["-89.928152","30.020201"],["-89.928037","30.020257"],["-89.927921","30.020312"],["-89.927806","30.020368"],["-89.927691","30.020424"],["-89.927575","30.020480"],["-89.927460","30.020535"],["-89.927345","30.020591"],["-89.927176","30.020677"],["-89.927007","30.020763"],["-89.926838","30.020849"],["-89.926669","30.020935"],["-89.926523","30.020996"],["-89.926430","30.020995"],["-89.926399","30.021049"],["-89.926286","30.021106"],["-89.926173","30.021163"],["-89.926060","30.021219"],["-89.925947","30.021276"],["-89.925833","30.021333"],["-89.925720","30.021390"],["-89.925607","30.021447"],["-89.925494","30.021503"],["-89.925381","30.021560"],["-89.925267","30.021617"],["-89.925154","30.021674"],["-89.925041","30.021730"],["-89.924928","30.021787"],["-89.924815","30.021844"],["-89.924701","30.021901"],["-89.924588","30.021957"],["-89.924448","30.022027"],["-89.924307","30.022097"],["-89.924167","30.022167"],["-89.924027","30.022236"],["-89.923886","30.022306"],["-89.923746","30.022376"],["-89.923605","30.022446"],["-89.923465","30.022515"],["-89.923324","30.022585"],["-89.923184","30.022655"],["-89.923044","30.022725"],["-89.922903","30.022795"],["-89.922763","30.022864"],["-89.922622","30.022934"],["-89.922482","30.023004"],["-89.922341","30.023074"],["-89.922199","30.023154"],["-89.922057","30.023233"],["-89.921915","30.023313"],["-89.921773","30.023393"],["-89.921631","30.023473"],["-89.921488","30.023553"],["-89.921346","30.023633"],["-89.921204","30.023713"],["-89.921090","30.023783"],["-89.920976","30.023852"],["-89.920839","30.023871"],["-89.920863","30.023938"],["-89.920721","30.024034"],["-89.920579","30.024130"],["-89.920437","30.024225"],["-89.920295","30.024321"],["-89.920177","30.024411"],["-89.920060","30.024500"],["-89.919945","30.024585"],["-89.919830","30.024670"],["-89.919820","30.024680"],["-89.919733","30.024749"],["-89.919603","30.024855"],["-89.919472","30.024961"],["-89.919342","30.025068"],["-89.919211","30.025174"],["-89.919092","30.025191"],["-89.918973","30.025208"],["-89.918924","30.025299"],["-89.918875","30.025391"],["-89.918826","30.025482"],["-89.918777","30.025573"],["-89.918699","30.025644"],["-89.918621","30.025714"],["-89.918543","30.025785"],["-89.918465","30.025855"],["-89.918387","30.025926"],["-89.918308","30.025997"],["-89.918230","30.026067"],["-89.918152","30.026138"],["-89.918074","30.026208"],["-89.917996","30.026279"],["-89.917918","30.026349"],["-89.917840","30.026420"],["-89.917762","30.026490"],["-89.917684","30.026561"],["-89.917606","30.026631"],["-89.917528","30.026702"],["-89.917450","30.026772"],["-89.917372","30.026843"],["-89.917293","30.026914"],["-89.917215","30.026984"],["-89.917137","30.027055"],["-89.917059","30.027125"],["-89.916981","30.027196"],["-89.916903","30.027266"],["-89.916825","30.027337"],["-89.916747","30.027407"],["-89.916669","30.027478"],["-89.916591","30.027548"],["-89.916513","30.027619"],["-89.916435","30.027689"],["-89.916356","30.027760"],["-89.916278","30.027831"],["-89.916194","30.027906"],["-89.916109","30.027981"],["-89.916025","30.028056"],["-89.915940","30.028131"],["-89.915856","30.028206"],["-89.915771","30.028281"],["-89.915687","30.028356"],["-89.915602","30.028431"],["-89.915518","30.028506"],["-89.915433","30.028581"],["-89.915349","30.028656"],["-89.915264","30.028731"],["-89.915180","30.028806"],["-89.915096","30.028881"],["-89.915011","30.028956"],["-89.914927","30.029031"],["-89.914842","30.029106"],["-89.914758","30.029181"],["-89.914673","30.029256"],["-89.914589","30.029331"],["-89.914504","30.029406"],["-89.914420","30.029481"],["-89.914335","30.029556"],["-89.914251","30.029631"],["-89.914166","30.029706"],["-89.914082","30.029781"],["-89.913997","30.029856"],["-89.913913","30.029931"],["-89.913828","30.030006"],["-89.913744","30.030081"],["-89.913659","30.030156"],["-89.913575","30.030231"],["-89.913426","30.030212"],["-89.913398","30.030398"],["-89.913282","30.030504"],["-89.913166","30.030610"],["-89.913050","30.030715"],["-89.912934","30.030821"],["-89.912818","30.030926"],["-89.912702","30.031032"],["-89.912586","30.031137"],["-89.912470","30.031243"],["-89.912354","30.031348"],["-89.912238","30.031454"],["-89.912122","30.031559"],["-89.912006","30.031665"],["-89.911890","30.031770"],["-89.911773","30.031876"],["-89.911657","30.031981"],["-89.911541","30.032087"],["-89.911393","30.032220"],["-89.911245","30.032354"],["-89.911097","30.032487"],["-89.910948","30.032621"],["-89.910800","30.032754"],["-89.910652","30.032888"],["-89.910504","30.033021"],["-89.910355","30.033155"],["-89.910207","30.033288"],["-89.910059","30.033422"],["-89.909910","30.033555"],["-89.909762","30.033689"],["-89.909614","30.033822"],["-89.909466","30.033956"],["-89.909317","30.034089"],["-89.909169","30.034223"],["-89.909086","30.034299"],["-89.909004","30.034375"],["-89.908921","30.034451"],["-89.908839","30.034526"],["-89.908756","30.034602"],["-89.908673","30.034678"],["-89.908591","30.034754"],["-89.908508","30.034830"],["-89.908391","30.034789"],["-89.908376","30.034886"],["-89.908361","30.034983"],["-89.908271","30.035061"],["-89.908181","30.035139"],["-89.908092","30.035216"],["-89.908002","30.035294"],["-89.907912","30.035372"],["-89.907822","30.035450"],["-89.907733","30.035527"],["-89.907643","30.035605"],["-89.907534","30.035703"],["-89.907425","30.035800"],["-89.907316","30.035898"],["-89.907208","30.035995"],["-89.907099","30.036093"],["-89.906990","30.036190"],["-89.906840","30.036320"],["-89.906770","30.036390"],["-89.906640","30.036500"],["-89.906540","30.036588"],["-89.906440","30.036675"],["-89.906340","30.036763"],["-89.906240","30.036850"],["-89.906200","30.036870"],["-89.906080","30.036980"],["-89.905965","30.037080"],["-89.905850","30.037180"],["-89.905735","30.037280"],["-89.905620","30.037380"],["-89.905510","30.037480"],["-89.905400","30.037580"],["-89.905360","30.037640"],["-89.905330","30.037680"],["-89.905320","30.037710"],["-89.905300","30.037760"],["-89.905290","30.037810"],["-89.905280","30.037860"],["-89.905280","30.037910"],["-89.905280","30.037950"],["-89.905290","30.037990"],["-89.905290","30.038020"],["-89.905300","30.038050"],["-89.905320","30.038100"],["-89.905400","30.038250"],["-89.905450","30.038360"],["-89.905645","30.038298"],["-89.905840","30.038235"],["-89.906035","30.038173"],["-89.906230","30.038110"],["-89.906350","30.038073"],["-89.906470","30.038035"],["-89.906590","30.037998"],["-89.906710","30.037960"],["-89.906850","30.037915"],["-89.907013","30.037929"]]}]}},{"type":"Feature","properties":{"route_id":"68","agency_id":"1","route_short_name":"68","route_long_name":"Little Woods Loop","route_type":"3","route_color":"#71c167","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-89.980437","30.050921"],["-89.978738","30.051765"],["-89.977051","30.052781"],["-89.975592","30.053562"],["-89.973977","30.054604"],["-89.972631","30.055240"],["-89.971275","30.056110"],["-89.968512","30.057779"],["-89.966607","30.058952"],["-89.964351","30.060362"],["-89.962065","30.061865"],["-89.959685","30.063503"],["-89.956112","30.066028"],["-89.953509","30.067955"],["-89.951896","30.066489"],["-89.950834","30.065398"],["-89.949129","30.066541"],["-89.947857","30.067520"],["-89.958473","30.043282"],["-89.968205","30.042281"],["-89.977783","30.039649"],["-89.979352","30.041977"],["-89.979731","30.042904"],["-89.980704","30.044450"],["-89.981751","30.046113"],["-89.945660","30.069221"],["-89.944047","30.070538"],["-89.942262","30.071794"],["-89.940773","30.071972"],["-89.940506","30.069888"],["-89.940372","30.068109"],["-89.944969","30.056861"],["-89.948040","30.054936"],["-89.950632","30.053304"],["-89.952930","30.051854"],["-89.956532","30.049579"],["-89.959109","30.048110"],["-89.972178","30.039725"],["-89.976375","30.038393"],["-89.969992","30.056908"],["-89.975067","30.038407"],["-89.965907","30.043669"],["-89.962381","30.046367"],["-89.959222","30.043676"],["-89.974960","30.029613"],["-89.982620","30.047533"],["-89.973520","30.030150"],["-89.946749","30.068330"],["-89.975062","30.035281"],["-89.972160","30.032174"],["-89.973326","30.032917"],["-89.971999","30.031174"],["-89.983595","30.049322"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972820","30.032830"],["-89.972930","30.032980"],["-89.972995","30.033063"],["-89.973060","30.033145"],["-89.973125","30.033228"],["-89.973190","30.033310"],["-89.973310","30.033460"],["-89.973430","30.033610"],["-89.973510","30.033710"],["-89.973540","30.033740"],["-89.973605","30.033825"],["-89.973670","30.033910"],["-89.973750","30.034020"],["-89.973830","30.034120"],["-89.973920","30.034220"],["-89.974035","30.034380"],["-89.974150","30.034540"],["-89.974240","30.034660"],["-89.974330","30.034780"],["-89.974390","30.034850"],["-89.974480","30.034960"],["-89.974570","30.035070"],["-89.974635","30.035155"],["-89.974700","30.035240"],["-89.974770","30.035350"],["-89.974855","30.035465"],["-89.974940","30.035580"],["-89.975010","30.035690"],["-89.975080","30.035800"],["-89.975140","30.035885"],["-89.975200","30.035970"],["-89.975265","30.036055"],["-89.975330","30.036140"],["-89.975415","30.036260"],["-89.975500","30.036380"],["-89.975610","30.036520"],["-89.975720","30.036660"],["-89.975820","30.036800"],["-89.975880","30.036890"],["-89.975960","30.037000"],["-89.975980","30.037030"],["-89.976040","30.037110"],["-89.976100","30.037190"],["-89.976110","30.037210"],["-89.976150","30.037260"],["-89.976240","30.037380"],["-89.976350","30.037540"],["-89.976465","30.037695"],["-89.976580","30.037850"],["-89.976665","30.037960"],["-89.976750","30.038070"],["-89.976835","30.038180"],["-89.976920","30.038290"],["-89.976990","30.038390"],["-89.977060","30.038490"],["-89.977150","30.038610"],["-89.977240","30.038730"],["-89.977330","30.038850"],["-89.977380","30.038920"],["-89.977480","30.039065"],["-89.977580","30.039210"],["-89.977690","30.039355"],["-89.977800","30.039500"],["-89.977810","30.039510"],["-89.977870","30.039600"],["-89.977783","30.039649"],["-89.977940","30.039766"],["-89.978030","30.039833"],["-89.978140","30.039985"],["-89.978250","30.040138"],["-89.978361","30.040290"],["-89.978471","30.040443"],["-89.978581","30.040595"],["-89.978691","30.040748"],["-89.978801","30.040900"],["-89.978911","30.041053"],["-89.978960","30.041120"],["-89.979065","30.041275"],["-89.979170","30.041431"],["-89.979230","30.041520"],["-89.979290","30.041620"],["-89.979353","30.041759"],["-89.979415","30.041897"],["-89.979352","30.041977"],["-89.979469","30.042039"],["-89.979506","30.042138"],["-89.979544","30.042237"],["-89.979581","30.042336"],["-89.979619","30.042436"],["-89.979656","30.042535"],["-89.979694","30.042634"],["-89.979732","30.042734"],["-89.979769","30.042833"],["-89.979731","30.042904"],["-89.979842","30.042981"],["-89.979897","30.043065"],["-89.979952","30.043149"],["-89.980007","30.043233"],["-89.980061","30.043317"],["-89.980116","30.043401"],["-89.980171","30.043485"],["-89.980226","30.043569"],["-89.980281","30.043652"],["-89.980336","30.043736"],["-89.980391","30.043820"],["-89.980446","30.043904"],["-89.980501","30.043988"],["-89.980556","30.044072"],["-89.980611","30.044156"],["-89.980666","30.044240"],["-89.980721","30.044323"],["-89.980704","30.044450"],["-89.980855","30.044498"],["-89.980941","30.044651"],["-89.981027","30.044805"],["-89.981112","30.044958"],["-89.981198","30.045112"],["-89.981298","30.045269"],["-89.981380","30.045400"],["-89.981478","30.045558"],["-89.981577","30.045717"],["-89.981640","30.045819"],["-89.981705","30.045990"],["-89.981751","30.046113"],["-89.981879","30.046255"],["-89.982006","30.046397"],["-89.982104","30.046556"],["-89.982180","30.046680"],["-89.982265","30.046844"],["-89.982356","30.046982"],["-89.982447","30.047121"],["-89.982541","30.047255"],["-89.982636","30.047390"],["-89.982620","30.047533"],["-89.982764","30.047599"],["-89.982816","30.047707"],["-89.982868","30.047814"],["-89.982920","30.047922"],["-89.982972","30.048030"],["-89.983024","30.048137"],["-89.983076","30.048245"],["-89.983128","30.048353"],["-89.983180","30.048460"],["-89.983232","30.048568"],["-89.983283","30.048676"],["-89.983335","30.048784"],["-89.983387","30.048891"],["-89.983439","30.048999"],["-89.983491","30.049107"],["-89.983543","30.049214"],["-89.983595","30.049322"],["-89.983716","30.049348"],["-89.983586","30.049452"],["-89.983455","30.049556"],["-89.983325","30.049661"],["-89.983194","30.049765"],["-89.983044","30.049843"],["-89.982894","30.049921"],["-89.982743","30.049998"],["-89.982593","30.050076"],["-89.982443","30.050154"],["-89.982293","30.050232"],["-89.982143","30.050310"],["-89.981992","30.050387"],["-89.981842","30.050465"],["-89.981692","30.050543"],["-89.981542","30.050621"],["-89.981392","30.050698"],["-89.981241","30.050776"],["-89.981091","30.050854"],["-89.980941","30.050932"],["-89.980791","30.051009"],["-89.980614","30.050965"],["-89.980437","30.050921"],["-89.980378","30.051027"],["-89.980319","30.051132"],["-89.980260","30.051238"],["-89.980201","30.051344"],["-89.980020","30.051421"],["-89.979840","30.051497"],["-89.979659","30.051574"],["-89.979479","30.051651"],["-89.979290","30.051750"],["-89.979102","30.051849"],["-89.978913","30.051948"],["-89.978826","30.051857"],["-89.978738","30.051765"],["-89.978708","30.051917"],["-89.978677","30.052069"],["-89.978498","30.052168"],["-89.978319","30.052268"],["-89.978140","30.052367"],["-89.977961","30.052466"],["-89.977782","30.052565"],["-89.977603","30.052665"],["-89.977424","30.052764"],["-89.977245","30.052863"],["-89.977051","30.052781"],["-89.977004","30.052893"],["-89.976958","30.053006"],["-89.976811","30.053085"],["-89.976665","30.053164"],["-89.976519","30.053243"],["-89.976373","30.053322"],["-89.976227","30.053401"],["-89.976130","30.053456"],["-89.976032","30.053511"],["-89.975935","30.053567"],["-89.975837","30.053622"],["-89.975715","30.053592"],["-89.975592","30.053562"],["-89.975490","30.053620"],["-89.975600","30.053760"],["-89.975504","30.053814"],["-89.975408","30.053868"],["-89.975311","30.053921"],["-89.975215","30.053975"],["-89.975119","30.054029"],["-89.975023","30.054083"],["-89.974926","30.054136"],["-89.974830","30.054190"],["-89.974734","30.054244"],["-89.974638","30.054298"],["-89.974541","30.054351"],["-89.974445","30.054405"],["-89.974349","30.054459"],["-89.974253","30.054513"],["-89.974156","30.054566"],["-89.974060","30.054620"],["-89.974010","30.054650"],["-89.973977","30.054604"],["-89.974010","30.054650"],["-89.973850","30.054740"],["-89.973690","30.054830"],["-89.973530","30.054920"],["-89.973370","30.055010"],["-89.973193","30.055113"],["-89.973015","30.055215"],["-89.972838","30.055318"],["-89.972660","30.055420"],["-89.972631","30.055240"],["-89.972625","30.055416"],["-89.972465","30.055509"],["-89.972306","30.055602"],["-89.972146","30.055695"],["-89.971987","30.055788"],["-89.971840","30.055873"],["-89.971693","30.055959"],["-89.971547","30.056045"],["-89.971400","30.056131"],["-89.971275","30.056110"],["-89.971212","30.056200"],["-89.971148","30.056291"],["-89.971022","30.056369"],["-89.970895","30.056446"],["-89.970768","30.056524"],["-89.970642","30.056602"],["-89.970515","30.056680"],["-89.970388","30.056757"],["-89.970261","30.056835"],["-89.970135","30.056913"],["-89.969992","30.056908"],["-89.970020","30.056950"],["-89.969910","30.057010"],["-89.969740","30.057115"],["-89.969570","30.057220"],["-89.969410","30.057320"],["-89.969250","30.057420"],["-89.969085","30.057525"],["-89.968920","30.057630"],["-89.968765","30.057720"],["-89.968610","30.057810"],["-89.968580","30.057830"],["-89.968560","30.057840"],["-89.968512","30.057779"],["-89.968560","30.057840"],["-89.968410","30.057940"],["-89.968265","30.058025"],["-89.968120","30.058110"],["-89.968110","30.058120"],["-89.967945","30.058220"],["-89.967780","30.058320"],["-89.967685","30.058380"],["-89.967590","30.058440"],["-89.967425","30.058545"],["-89.967260","30.058650"],["-89.967155","30.058715"],["-89.967050","30.058780"],["-89.966953","30.058840"],["-89.966855","30.058900"],["-89.966758","30.058960"],["-89.966607","30.058952"],["-89.966549","30.059034"],["-89.966491","30.059116"],["-89.966367","30.059196"],["-89.966242","30.059275"],["-89.966118","30.059354"],["-89.965993","30.059434"],["-89.965869","30.059513"],["-89.965744","30.059592"],["-89.965620","30.059671"],["-89.965496","30.059751"],["-89.965371","30.059830"],["-89.965247","30.059909"],["-89.965122","30.059988"],["-89.964998","30.060068"],["-89.964873","30.060147"],["-89.964749","30.060226"],["-89.964624","30.060305"],["-89.964500","30.060385"],["-89.964351","30.060362"],["-89.964297","30.060452"],["-89.964242","30.060543"],["-89.964112","30.060627"],["-89.963983","30.060711"],["-89.963853","30.060796"],["-89.963724","30.060880"],["-89.963594","30.060964"],["-89.963465","30.061049"],["-89.963335","30.061133"],["-89.963205","30.061217"],["-89.963076","30.061302"],["-89.962946","30.061386"],["-89.962817","30.061471"],["-89.962687","30.061555"],["-89.962558","30.061639"],["-89.962428","30.061724"],["-89.962298","30.061808"],["-89.962169","30.061892"],["-89.962065","30.061865"],["-89.962016","30.062006"],["-89.961878","30.062100"],["-89.961741","30.062194"],["-89.961603","30.062288"],["-89.961466","30.062381"],["-89.961328","30.062475"],["-89.961191","30.062569"],["-89.961053","30.062663"],["-89.960915","30.062757"],["-89.960778","30.062850"],["-89.960640","30.062944"],["-89.960503","30.063038"],["-89.960365","30.063132"],["-89.960228","30.063226"],["-89.960090","30.063319"],["-89.959953","30.063413"],["-89.959815","30.063507"],["-89.959685","30.063503"],["-89.959618","30.063598"],["-89.959551","30.063694"],["-89.959447","30.063768"],["-89.959343","30.063842"],["-89.959239","30.063916"],["-89.959135","30.063990"],["-89.959031","30.064064"],["-89.958927","30.064138"],["-89.958824","30.064212"],["-89.958720","30.064286"],["-89.958616","30.064360"],["-89.958512","30.064434"],["-89.958408","30.064508"],["-89.958304","30.064582"],["-89.958200","30.064656"],["-89.958096","30.064730"],["-89.957992","30.064804"],["-89.957888","30.064878"],["-89.957785","30.064952"],["-89.957681","30.065026"],["-89.957577","30.065100"],["-89.957473","30.065174"],["-89.957369","30.065248"],["-89.957265","30.065322"],["-89.957161","30.065396"],["-89.957057","30.065471"],["-89.956953","30.065545"],["-89.956849","30.065619"],["-89.956746","30.065693"],["-89.956642","30.065767"],["-89.956538","30.065841"],["-89.956434","30.065915"],["-89.956330","30.065989"],["-89.956226","30.066063"],["-89.956112","30.066028"],["-89.956051","30.066138"],["-89.955990","30.066248"],["-89.955844","30.066357"],["-89.955699","30.066465"],["-89.955553","30.066573"],["-89.955407","30.066681"],["-89.955262","30.066789"],["-89.955116","30.066897"],["-89.954970","30.067005"],["-89.954825","30.067113"],["-89.954679","30.067221"],["-89.954533","30.067329"],["-89.954388","30.067437"],["-89.954242","30.067545"],["-89.954096","30.067653"],["-89.953951","30.067761"],["-89.953805","30.067869"],["-89.953660","30.067977"],["-89.953509","30.067955"],["-89.953533","30.068063"],["-89.953454","30.068118"],["-89.953360","30.068023"],["-89.953265","30.067927"],["-89.953171","30.067832"],["-89.953076","30.067737"],["-89.952982","30.067642"],["-89.952888","30.067546"],["-89.952793","30.067451"],["-89.952699","30.067356"],["-89.952604","30.067261"],["-89.952510","30.067166"],["-89.952416","30.067070"],["-89.952321","30.066975"],["-89.952227","30.066880"],["-89.952133","30.066785"],["-89.952038","30.066689"],["-89.951944","30.066594"],["-89.951896","30.066489"],["-89.951804","30.066450"],["-89.951686","30.066332"],["-89.951568","30.066214"],["-89.951450","30.066095"],["-89.951332","30.065977"],["-89.951213","30.065859"],["-89.951095","30.065741"],["-89.950977","30.065622"],["-89.950859","30.065504"],["-89.950834","30.065398"],["-89.950729","30.065397"],["-89.950635","30.065470"],["-89.950540","30.065542"],["-89.950446","30.065615"],["-89.950352","30.065687"],["-89.950257","30.065759"],["-89.950163","30.065832"],["-89.950068","30.065904"],["-89.949974","30.065977"],["-89.949879","30.066049"],["-89.949785","30.066122"],["-89.949691","30.066194"],["-89.949596","30.066267"],["-89.949502","30.066339"],["-89.949407","30.066412"],["-89.949313","30.066484"],["-89.949218","30.066557"],["-89.949129","30.066541"],["-89.949090","30.066661"],["-89.948947","30.066772"],["-89.948805","30.066884"],["-89.948663","30.066995"],["-89.948520","30.067107"],["-89.948378","30.067218"],["-89.948236","30.067330"],["-89.948093","30.067441"],["-89.947951","30.067553"],["-89.947857","30.067520"],["-89.947788","30.067669"],["-89.947665","30.067762"],["-89.947543","30.067855"],["-89.947421","30.067948"],["-89.947299","30.068041"],["-89.947177","30.068134"],["-89.947055","30.068227"],["-89.946933","30.068321"],["-89.946811","30.068414"],["-89.946749","30.068330"],["-89.946690","30.068500"],["-89.946554","30.068607"],["-89.946419","30.068714"],["-89.946283","30.068821"],["-89.946148","30.068928"],["-89.946057","30.069001"],["-89.945966","30.069074"],["-89.945875","30.069147"],["-89.945784","30.069220"],["-89.945744","30.069260"],["-89.945660","30.069221"],["-89.945654","30.069311"],["-89.945559","30.069390"],["-89.945463","30.069469"],["-89.945367","30.069548"],["-89.945272","30.069627"],["-89.945176","30.069706"],["-89.945080","30.069785"],["-89.944985","30.069864"],["-89.944889","30.069943"],["-89.944742","30.070060"],["-89.944595","30.070176"],["-89.944448","30.070292"],["-89.944287","30.070421"],["-89.944126","30.070550"],["-89.944047","30.070538"],["-89.943968","30.070655"],["-89.943879","30.070729"],["-89.943790","30.070802"],["-89.943701","30.070875"],["-89.943611","30.070949"],["-89.943522","30.071022"],["-89.943433","30.071096"],["-89.943344","30.071169"],["-89.943255","30.071242"],["-89.943167","30.071314"],["-89.943079","30.071385"],["-89.942991","30.071457"],["-89.942903","30.071528"],["-89.942750","30.071625"],["-89.942597","30.071723"],["-89.942466","30.071774"],["-89.942335","30.071825"],["-89.942262","30.071794"],["-89.942166","30.071864"],["-89.941993","30.071900"],["-89.941819","30.071937"],["-89.941645","30.071973"],["-89.941472","30.072010"],["-89.941304","30.072016"],["-89.941136","30.072022"],["-89.940991","30.072030"],["-89.940847","30.072038"],["-89.940773","30.071972"],["-89.940678","30.071950"],["-89.940653","30.071817"],["-89.940629","30.071684"],["-89.940604","30.071551"],["-89.940580","30.071418"],["-89.940566","30.071264"],["-89.940553","30.071110"],["-89.940539","30.070956"],["-89.940526","30.070802"],["-89.940517","30.070688"],["-89.940507","30.070574"],["-89.940498","30.070460"],["-89.940489","30.070346"],["-89.940478","30.070236"],["-89.940466","30.070127"],["-89.940454","30.070018"],["-89.940442","30.069908"],["-89.940506","30.069888"],["-89.940424","30.069769"],["-89.940409","30.069584"],["-89.940395","30.069399"],["-89.940380","30.069214"],["-89.940366","30.069029"],["-89.940352","30.068859"],["-89.940337","30.068689"],["-89.940323","30.068518"],["-89.940308","30.068348"],["-89.940295","30.068188"],["-89.940372","30.068109"],["-89.940308","30.068089"],["-89.940288","30.067901"],["-89.940268","30.067713"],["-89.940248","30.067524"],["-89.940228","30.067336"],["-89.940208","30.067148"],["-89.940188","30.066959"],["-89.940167","30.066771"],["-89.940147","30.066582"],["-89.940131","30.066434"],["-89.940114","30.066285"],["-89.940098","30.066137"],["-89.940081","30.065988"],["-89.940065","30.065839"],["-89.940048","30.065691"],["-89.940031","30.065542"],["-89.940015","30.065393"],["-89.939998","30.065245"],["-89.939982","30.065096"],["-89.939965","30.064947"],["-89.939949","30.064799"],["-89.939932","30.064650"],["-89.939916","30.064501"],["-89.939899","30.064353"],["-89.939882","30.064204"],["-89.939877","30.064125"],["-89.940003","30.064095"],["-89.940129","30.064065"],["-89.940204","30.063940"],["-89.940192","30.063804"],["-89.940179","30.063669"],["-89.940166","30.063534"],["-89.940153","30.063399"],["-89.940141","30.063263"],["-89.940128","30.063128"],["-89.940115","30.062993"],["-89.940102","30.062858"],["-89.940126","30.062719"],["-89.940151","30.062579"],["-89.940204","30.062419"],["-89.940258","30.062259"],["-89.940343","30.062133"],["-89.940429","30.062007"],["-89.940514","30.061881"],["-89.940599","30.061754"],["-89.940685","30.061628"],["-89.940770","30.061502"],["-89.940856","30.061376"],["-89.940941","30.061250"],["-89.941043","30.061101"],["-89.941145","30.060952"],["-89.941247","30.060803"],["-89.941349","30.060653"],["-89.941451","30.060504"],["-89.941552","30.060355"],["-89.941654","30.060206"],["-89.941756","30.060057"],["-89.941858","30.059908"],["-89.941959","30.059760"],["-89.942060","30.059612"],["-89.942162","30.059463"],["-89.942263","30.059315"],["-89.942364","30.059166"],["-89.942466","30.059018"],["-89.942567","30.058870"],["-89.942625","30.058787"],["-89.942684","30.058704"],["-89.942742","30.058621"],["-89.942800","30.058538"],["-89.942859","30.058455"],["-89.942917","30.058372"],["-89.942975","30.058289"],["-89.943034","30.058206"],["-89.943123","30.058119"],["-89.943213","30.058032"],["-89.943303","30.057945"],["-89.943393","30.057858"],["-89.943510","30.057775"],["-89.943626","30.057693"],["-89.943743","30.057610"],["-89.943860","30.057528"],["-89.944027","30.057413"],["-89.944195","30.057298"],["-89.944363","30.057183"],["-89.944530","30.057068"],["-89.944640","30.057016"],["-89.944750","30.056965"],["-89.944859","30.056913"],["-89.944969","30.056861"],["-89.945118","30.056736"],["-89.945263","30.056614"],["-89.945434","30.056511"],["-89.945604","30.056408"],["-89.945774","30.056305"],["-89.945945","30.056202"],["-89.946115","30.056099"],["-89.946285","30.055996"],["-89.946456","30.055893"],["-89.946626","30.055790"],["-89.946796","30.055687"],["-89.946967","30.055584"],["-89.947137","30.055481"],["-89.947308","30.055378"],["-89.947478","30.055275"],["-89.947648","30.055172"],["-89.947819","30.055070"],["-89.947989","30.054967"],["-89.948040","30.054936"],["-89.948000","30.054890"],["-89.948120","30.054810"],["-89.948260","30.054725"],["-89.948400","30.054640"],["-89.948540","30.054555"],["-89.948680","30.054470"],["-89.948779","30.054408"],["-89.948878","30.054345"],["-89.948976","30.054283"],["-89.949075","30.054220"],["-89.949174","30.054158"],["-89.949273","30.054095"],["-89.949371","30.054033"],["-89.949470","30.053970"],["-89.949611","30.053881"],["-89.949753","30.053793"],["-89.949894","30.053704"],["-89.950035","30.053615"],["-89.950176","30.053526"],["-89.950318","30.053438"],["-89.950459","30.053349"],["-89.950600","30.053260"],["-89.950632","30.053304"],["-89.950600","30.053260"],["-89.950740","30.053170"],["-89.950885","30.053085"],["-89.951030","30.053000"],["-89.951147","30.052926"],["-89.951264","30.052853"],["-89.951381","30.052779"],["-89.951498","30.052705"],["-89.951614","30.052631"],["-89.951731","30.052558"],["-89.951848","30.052484"],["-89.951965","30.052410"],["-89.952082","30.052336"],["-89.952199","30.052263"],["-89.952316","30.052189"],["-89.952433","30.052115"],["-89.952549","30.052041"],["-89.952666","30.051968"],["-89.952783","30.051894"],["-89.952930","30.051854"],["-89.953062","30.051715"],["-89.953138","30.051634"],["-89.953306","30.051528"],["-89.953430","30.051450"],["-89.953599","30.051345"],["-89.953768","30.051240"],["-89.953936","30.051135"],["-89.954105","30.051030"],["-89.954274","30.050926"],["-89.954443","30.050821"],["-89.954612","30.050716"],["-89.954780","30.050611"],["-89.954949","30.050506"],["-89.955118","30.050401"],["-89.955287","30.050296"],["-89.955456","30.050191"],["-89.955629","30.050092"],["-89.955803","30.049994"],["-89.955977","30.049895"],["-89.956150","30.049796"],["-89.956324","30.049697"],["-89.956498","30.049599"],["-89.956532","30.049579"],["-89.956677","30.049450"],["-89.956822","30.049321"],["-89.956889","30.049261"],["-89.957058","30.049157"],["-89.957228","30.049053"],["-89.957397","30.048948"],["-89.957566","30.048844"],["-89.957670","30.048780"],["-89.957845","30.048683"],["-89.957970","30.048616"],["-89.958095","30.048549"],["-89.958221","30.048482"],["-89.958346","30.048415"],["-89.958471","30.048347"],["-89.958596","30.048280"],["-89.958722","30.048213"],["-89.958847","30.048146"],["-89.958978","30.048128"],["-89.959109","30.048110"],["-89.959080","30.048060"],["-89.959230","30.047990"],["-89.959360","30.047930"],["-89.959490","30.047870"],["-89.959580","30.047820"],["-89.959765","30.047740"],["-89.959950","30.047660"],["-89.960140","30.047570"],["-89.960220","30.047540"],["-89.960370","30.047470"],["-89.960520","30.047400"],["-89.960560","30.047390"],["-89.960670","30.047340"],["-89.960780","30.047290"],["-89.960950","30.047250"],["-89.961030","30.047230"],["-89.961090","30.047230"],["-89.961140","30.047240"],["-89.961200","30.047250"],["-89.961270","30.047280"],["-89.961310","30.047300"],["-89.961380","30.047340"],["-89.961430","30.047370"],["-89.961480","30.047410"],["-89.961550","30.047470"],["-89.961570","30.047480"],["-89.961600","30.047500"],["-89.961620","30.047510"],["-89.961650","30.047520"],["-89.961670","30.047520"],["-89.961700","30.047530"],["-89.961730","30.047520"],["-89.961740","30.047520"],["-89.961810","30.047510"],["-89.961980","30.047400"],["-89.962085","30.047330"],["-89.962190","30.047260"],["-89.962105","30.047160"],["-89.962020","30.047060"],["-89.961930","30.046955"],["-89.961840","30.046850"],["-89.961740","30.046725"],["-89.961640","30.046600"],["-89.961570","30.046540"],["-89.961520","30.046480"],["-89.961450","30.046390"],["-89.961330","30.046250"],["-89.961300","30.046220"],["-89.961290","30.046210"],["-89.961280","30.046190"],["-89.961210","30.046100"],["-89.961160","30.046050"],["-89.961160","30.046040"],["-89.961150","30.046030"],["-89.961040","30.045890"],["-89.960980","30.045830"],["-89.960870","30.045700"],["-89.960805","30.045620"],["-89.960740","30.045540"],["-89.960675","30.045460"],["-89.960610","30.045380"],["-89.960530","30.045280"],["-89.960450","30.045180"],["-89.960370","30.045080"],["-89.960290","30.044980"],["-89.960220","30.044895"],["-89.960150","30.044810"],["-89.960080","30.044740"],["-89.959960","30.044590"],["-89.959870","30.044500"],["-89.959760","30.044360"],["-89.959645","30.044200"],["-89.959530","30.044040"],["-89.959450","30.043953"],["-89.959370","30.043865"],["-89.959290","30.043778"],["-89.959210","30.043690"],["-89.959222","30.043676"],["-89.959210","30.043690"],["-89.959180","30.043650"],["-89.959130","30.043590"],["-89.959057","30.043503"],["-89.958985","30.043415"],["-89.958912","30.043328"],["-89.958840","30.043240"],["-89.958710","30.043085"],["-89.958580","30.042930"],["-89.958470","30.042805"],["-89.958360","30.042680"],["-89.958282","30.042583"],["-89.958205","30.042485"],["-89.958127","30.042388"],["-89.958050","30.042290"],["-89.957955","30.042355"],["-89.957860","30.042420"],["-89.957955","30.042533"],["-89.958050","30.042645"],["-89.958145","30.042758"],["-89.958240","30.042870"],["-89.958315","30.042963"],["-89.958390","30.043055"],["-89.958465","30.043148"],["-89.958540","30.043240"],["-89.958473","30.043282"],["-89.958540","30.043240"],["-89.958630","30.043350"],["-89.958760","30.043500"],["-89.958845","30.043600"],["-89.958930","30.043700"],["-89.958990","30.043770"],["-89.959060","30.043850"],["-89.959130","30.043930"],["-89.959210","30.044040"],["-89.959330","30.044180"],["-89.959400","30.044260"],["-89.959470","30.044340"],["-89.959565","30.044455"],["-89.959660","30.044570"],["-89.959765","30.044700"],["-89.959870","30.044830"],["-89.959930","30.044900"],["-89.959990","30.044970"],["-89.960120","30.045120"],["-89.960205","30.045230"],["-89.960290","30.045340"],["-89.960365","30.045430"],["-89.960440","30.045520"],["-89.960555","30.045665"],["-89.960670","30.045810"],["-89.960690","30.045830"],["-89.960810","30.045980"],["-89.960910","30.046110"],["-89.960950","30.046150"],["-89.960960","30.046170"],["-89.960970","30.046180"],["-89.961030","30.046260"],["-89.961090","30.046330"],["-89.961100","30.046340"],["-89.961210","30.046480"],["-89.961305","30.046605"],["-89.961400","30.046730"],["-89.961530","30.046875"],["-89.961660","30.047020"],["-89.961765","30.047145"],["-89.961870","30.047270"],["-89.961980","30.047400"],["-89.962085","30.047330"],["-89.962190","30.047260"],["-89.962280","30.047210"],["-89.962360","30.047160"],["-89.962370","30.047150"],["-89.962400","30.047110"],["-89.962420","30.047090"],["-89.962420","30.047080"],["-89.962430","30.047040"],["-89.962430","30.047020"],["-89.962420","30.046990"],["-89.962400","30.046950"],["-89.962390","30.046940"],["-89.962360","30.046890"],["-89.962280","30.046790"],["-89.962260","30.046700"],["-89.962240","30.046630"],["-89.962240","30.046560"],["-89.962260","30.046490"],["-89.962270","30.046450"],["-89.962270","30.046430"],["-89.962290","30.046400"],["-89.962330","30.046340"],["-89.962381","30.046367"],["-89.962476","30.046195"],["-89.962559","30.046121"],["-89.962641","30.046046"],["-89.962724","30.045971"],["-89.962807","30.045897"],["-89.962889","30.045822"],["-89.962972","30.045747"],["-89.963055","30.045673"],["-89.963137","30.045598"],["-89.963260","30.045499"],["-89.963383","30.045399"],["-89.963505","30.045300"],["-89.963628","30.045201"],["-89.963751","30.045102"],["-89.963874","30.045002"],["-89.963996","30.044903"],["-89.964119","30.044804"],["-89.964238","30.044716"],["-89.964358","30.044627"],["-89.964477","30.044539"],["-89.964596","30.044451"],["-89.964693","30.044386"],["-89.964789","30.044321"],["-89.964886","30.044256"],["-89.964983","30.044191"],["-89.965079","30.044126"],["-89.965176","30.044061"],["-89.965272","30.043996"],["-89.965369","30.043931"],["-89.965459","30.043871"],["-89.965549","30.043810"],["-89.965638","30.043750"],["-89.965728","30.043689"],["-89.965907","30.043669"],["-89.965870","30.043690"],["-89.965840","30.043640"],["-89.965958","30.043568"],["-89.966075","30.043495"],["-89.966193","30.043423"],["-89.966310","30.043350"],["-89.966475","30.043245"],["-89.966640","30.043140"],["-89.966805","30.043035"],["-89.966970","30.042930"],["-89.967115","30.042838"],["-89.967260","30.042745"],["-89.967405","30.042653"],["-89.967550","30.042560"],["-89.967695","30.042468"],["-89.967840","30.042375"],["-89.967985","30.042283"],["-89.968130","30.042190"],["-89.968205","30.042281"],["-89.968130","30.042190"],["-89.968240","30.042130"],["-89.968365","30.042050"],["-89.968490","30.041970"],["-89.968616","30.041890"],["-89.968743","30.041810"],["-89.968869","30.041730"],["-89.968995","30.041650"],["-89.969121","30.041570"],["-89.969248","30.041490"],["-89.969374","30.041410"],["-89.969500","30.041330"],["-89.969670","30.041230"],["-89.969811","30.041141"],["-89.969953","30.041051"],["-89.970094","30.040962"],["-89.970235","30.040873"],["-89.970376","30.040783"],["-89.970518","30.040694"],["-89.970659","30.040604"],["-89.970800","30.040515"],["-89.970941","30.040426"],["-89.971083","30.040336"],["-89.971224","30.040247"],["-89.971365","30.040158"],["-89.971506","30.040068"],["-89.971648","30.039979"],["-89.971789","30.039889"],["-89.971930","30.039800"],["-89.972030","30.039735"],["-89.972178","30.039725"],["-89.972130","30.039670"],["-89.972240","30.039600"],["-89.972400","30.039510"],["-89.972510","30.039440"],["-89.972680","30.039330"],["-89.972760","30.039280"],["-89.972850","30.039240"],["-89.972980","30.039170"],["-89.973100","30.039110"],["-89.973230","30.039040"],["-89.973340","30.038995"],["-89.973450","30.038950"],["-89.973568","30.038903"],["-89.973685","30.038855"],["-89.973803","30.038808"],["-89.973920","30.038760"],["-89.974045","30.038715"],["-89.974170","30.038670"],["-89.974295","30.038625"],["-89.974420","30.038580"],["-89.974575","30.038523"],["-89.974730","30.038465"],["-89.974885","30.038408"],["-89.975040","30.038350"],["-89.975067","30.038407"],["-89.975040","30.038350"],["-89.975210","30.038280"],["-89.975315","30.038240"],["-89.975420","30.038200"],["-89.975550","30.038150"],["-89.975680","30.038100"],["-89.975700","30.038100"],["-89.975750","30.038080"],["-89.975770","30.038070"],["-89.975820","30.038060"],["-89.975850","30.038060"],["-89.975880","30.038060"],["-89.975900","30.038060"],["-89.975960","30.038050"],["-89.975980","30.038050"],["-89.976000","30.038060"],["-89.976030","30.038060"],["-89.976050","30.038060"],["-89.976080","30.038070"],["-89.976100","30.038070"],["-89.976110","30.038080"],["-89.976150","30.038090"],["-89.976190","30.038110"],["-89.976220","30.038120"],["-89.976260","30.038140"],["-89.976300","30.038170"],["-89.976310","30.038180"],["-89.976350","30.038210"],["-89.976390","30.038260"],["-89.976450","30.038340"],["-89.976375","30.038393"],["-89.976450","30.038340"],["-89.976480","30.038370"],["-89.976500","30.038390"],["-89.976520","30.038400"],["-89.976530","30.038410"],["-89.976570","30.038420"],["-89.976580","30.038420"],["-89.976600","30.038430"],["-89.976620","30.038430"],["-89.976630","30.038430"],["-89.976640","30.038430"],["-89.976650","30.038420"],["-89.976670","30.038420"],["-89.976680","30.038420"],["-89.976700","30.038410"],["-89.976710","30.038410"],["-89.976730","30.038400"],["-89.976760","30.038390"],["-89.976780","30.038370"],["-89.976920","30.038290"],["-89.977080","30.038190"],["-89.976985","30.038040"],["-89.976890","30.037890"],["-89.976780","30.037740"],["-89.976665","30.037590"],["-89.976550","30.037440"],["-89.976450","30.037310"],["-89.976390","30.037230"],["-89.976310","30.037120"],["-89.976290","30.037100"],["-89.976280","30.037080"],["-89.976180","30.036950"],["-89.976180","30.036940"],["-89.976160","30.036920"],["-89.976070","30.036780"],["-89.975980","30.036660"],["-89.975910","30.036560"],["-89.975850","30.036480"],["-89.975760","30.036355"],["-89.975670","30.036230"],["-89.975597","30.036138"],["-89.975525","30.036045"],["-89.975452","30.035953"],["-89.975380","30.035860"],["-89.975340","30.035800"],["-89.975230","30.035640"],["-89.975120","30.035480"],["-89.975080","30.035430"],["-89.975000","30.035310"],["-89.975062","30.035281"],["-89.975000","30.035310"],["-89.974895","30.035165"],["-89.974790","30.035020"],["-89.974685","30.034885"],["-89.974580","30.034750"],["-89.974520","30.034660"],["-89.974430","30.034540"],["-89.974312","30.034378"],["-89.974195","30.034215"],["-89.974077","30.034053"],["-89.973960","30.033890"],["-89.973895","30.033803"],["-89.973830","30.033715"],["-89.973765","30.033628"],["-89.973700","30.033540"],["-89.973587","30.033395"],["-89.973475","30.033250"],["-89.973362","30.033105"],["-89.973250","30.032960"],["-89.973326","30.032917"],["-89.973250","30.032960"],["-89.973170","30.032850"],["-89.973355","30.032750"],["-89.973540","30.032650"],["-89.973675","30.032565"],["-89.973810","30.032480"],["-89.973923","30.032410"],["-89.974035","30.032340"],["-89.974148","30.032270"],["-89.974260","30.032200"],["-89.974355","30.032145"],["-89.974450","30.032090"],["-89.974545","30.032035"],["-89.974640","30.031980"],["-89.974735","30.031925"],["-89.974830","30.031870"],["-89.974925","30.031815"],["-89.975020","30.031760"],["-89.975115","30.031709"],["-89.975210","30.031658"],["-89.975305","30.031606"],["-89.975400","30.031555"],["-89.975495","30.031504"],["-89.975590","30.031453"],["-89.975685","30.031401"],["-89.975780","30.031350"],["-89.975880","30.031300"],["-89.975940","30.031260"],["-89.976000","30.031230"],["-89.975910","30.031100"],["-89.975837","30.030990"],["-89.975765","30.030880"],["-89.975692","30.030770"],["-89.975620","30.030660"],["-89.975540","30.030540"],["-89.975460","30.030420"],["-89.975380","30.030300"],["-89.975300","30.030180"],["-89.975225","30.030075"],["-89.975150","30.029970"],["-89.975070","30.029840"],["-89.974996","30.029741"],["-89.974922","30.029642"],["-89.974960","30.029613"],["-89.974920","30.029570"],["-89.975020","30.029500"],["-89.974880","30.029380"],["-89.974760","30.029500"],["-89.974630","30.029580"],["-89.974510","30.029650"],["-89.974390","30.029730"],["-89.974370","30.029740"],["-89.974240","30.029820"],["-89.974060","30.029933"],["-89.973880","30.030045"],["-89.973700","30.030158"],["-89.973520","30.030270"],["-89.973430","30.030150"],["-89.973490","30.030110"],["-89.973520","30.030150"],["-89.973490","30.030110"],["-89.973430","30.030150"],["-89.973520","30.030270"],["-89.973350","30.030375"],["-89.973180","30.030480"],["-89.973035","30.030570"],["-89.972890","30.030660"],["-89.972745","30.030750"],["-89.972600","30.030840"],["-89.972455","30.030930"],["-89.972310","30.031020"],["-89.972165","30.031110"],["-89.972020","30.031200"],["-89.971999","30.031174"],["-89.972020","30.031200"],["-89.971970","30.031240"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971947","30.031550"],["-89.972015","30.031650"],["-89.972082","30.031750"],["-89.972150","30.031850"],["-89.972260","30.032010"],["-89.972160","30.032174"]]}]}},{"type":"Feature","properties":{"route_id":"8","agency_id":"1","route_short_name":"8","route_long_name":"St. Claude - Arabi","route_type":"3","route_color":"#ffa851","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.067726","29.961445"],["-90.070568","29.958241"],["-90.063585","29.966079"],["-90.018397","29.962028"],["-90.007646","29.958819"],["-90.009942","29.959621"],["-90.012166","29.960477"],["-90.013610","29.960867"],["-90.015624","29.961354"],["-90.021273","29.962673"],["-90.026216","29.963778"],["-90.031408","29.964936"],["-90.033392","29.965387"],["-90.036154","29.965997"],["-90.038625","29.966554"],["-90.040318","29.966934"],["-90.044108","29.967755"],["-90.045915","29.968161"],["-90.048148","29.968683"],["-90.051957","29.969098"],["-90.054342","29.968979"],["-90.056322","29.968817"],["-90.062412","29.967436"],["-90.042281","29.967376"],["-90.050059","29.969116"],["-90.074078","29.955755"],["-90.057503","29.968712"],["-90.075280","29.954073"],["-90.069189","29.959861"],["-90.065584","29.963862"]]},{"type":"LineString","coordinates":[["-90.007646","29.958819"],["-90.007868","29.958813"],["-90.007992","29.958857"],["-90.008116","29.958902"],["-90.008240","29.958947"],["-90.008364","29.958992"],["-90.008488","29.959036"],["-90.008612","29.959081"],["-90.008736","29.959126"],["-90.008860","29.959171"],["-90.008984","29.959215"],["-90.009108","29.959260"],["-90.009232","29.959305"],["-90.009356","29.959350"],["-90.009480","29.959394"],["-90.009604","29.959439"],["-90.009728","29.959484"],["-90.009852","29.959528"],["-90.009942","29.959621"],["-90.010066","29.959631"],["-90.010190","29.959640"],["-90.010314","29.959692"],["-90.010437","29.959745"],["-90.010561","29.959797"],["-90.010684","29.959849"],["-90.010808","29.959902"],["-90.010931","29.959954"],["-90.011055","29.960006"],["-90.011178","29.960059"],["-90.011302","29.960111"],["-90.011481","29.960169"],["-90.011660","29.960226"],["-90.011839","29.960284"],["-90.012018","29.960342"],["-90.012166","29.960477"],["-90.012367","29.960474"],["-90.012517","29.960521"],["-90.012667","29.960568"],["-90.012817","29.960615"],["-90.012968","29.960662"],["-90.013130","29.960698"],["-90.013292","29.960734"],["-90.013414","29.960762"],["-90.013537","29.960790"],["-90.013610","29.960867"],["-90.013620","29.960830"],["-90.013750","29.960860"],["-90.013880","29.960890"],["-90.014090","29.960940"],["-90.014300","29.960990"],["-90.014510","29.961040"],["-90.014638","29.961069"],["-90.014765","29.961099"],["-90.014893","29.961128"],["-90.015021","29.961158"],["-90.015148","29.961187"],["-90.015276","29.961217"],["-90.015404","29.961246"],["-90.015531","29.961276"],["-90.015624","29.961354"],["-90.015835","29.961370"],["-90.016047","29.961385"],["-90.016155","29.961410"],["-90.016262","29.961435"],["-90.016370","29.961460"],["-90.016570","29.961505"],["-90.016770","29.961550"],["-90.016940","29.961589"],["-90.017110","29.961628"],["-90.017280","29.961666"],["-90.017450","29.961705"],["-90.017620","29.961744"],["-90.017790","29.961783"],["-90.017960","29.961821"],["-90.018130","29.961860"],["-90.018295","29.961895"],["-90.018460","29.961930"],["-90.018430","29.962040"],["-90.018397","29.962028"],["-90.018430","29.962040"],["-90.018460","29.961930"],["-90.018670","29.961980"],["-90.018885","29.962025"],["-90.019045","29.962062"],["-90.019206","29.962099"],["-90.019366","29.962136"],["-90.019526","29.962174"],["-90.019687","29.962211"],["-90.019847","29.962248"],["-90.020007","29.962286"],["-90.020167","29.962323"],["-90.020328","29.962360"],["-90.020488","29.962398"],["-90.020648","29.962435"],["-90.020808","29.962472"],["-90.020969","29.962510"],["-90.021129","29.962547"],["-90.021273","29.962673"],["-90.021413","29.962614"],["-90.021555","29.962645"],["-90.021697","29.962675"],["-90.021838","29.962705"],["-90.021980","29.962735"],["-90.022118","29.962765"],["-90.022256","29.962795"],["-90.022394","29.962824"],["-90.022532","29.962854"],["-90.022669","29.962884"],["-90.022807","29.962914"],["-90.022945","29.962944"],["-90.023083","29.962974"],["-90.023221","29.963004"],["-90.023358","29.963034"],["-90.023496","29.963064"],["-90.023634","29.963094"],["-90.023772","29.963124"],["-90.023910","29.963154"],["-90.024047","29.963183"],["-90.024185","29.963213"],["-90.024323","29.963243"],["-90.024461","29.963273"],["-90.024599","29.963303"],["-90.024736","29.963333"],["-90.024874","29.963363"],["-90.025012","29.963393"],["-90.025150","29.963423"],["-90.025288","29.963453"],["-90.025425","29.963483"],["-90.025563","29.963513"],["-90.025701","29.963542"],["-90.025839","29.963572"],["-90.025977","29.963602"],["-90.026114","29.963632"],["-90.026216","29.963778"],["-90.026329","29.963776"],["-90.026441","29.963775"],["-90.026554","29.963773"],["-90.026667","29.963772"],["-90.026811","29.963804"],["-90.026955","29.963837"],["-90.027098","29.963870"],["-90.027242","29.963902"],["-90.027386","29.963935"],["-90.027530","29.963968"],["-90.027674","29.964000"],["-90.027818","29.964033"],["-90.027961","29.964066"],["-90.028105","29.964098"],["-90.028249","29.964131"],["-90.028393","29.964164"],["-90.028537","29.964196"],["-90.028681","29.964229"],["-90.028824","29.964262"],["-90.028968","29.964295"],["-90.029112","29.964327"],["-90.029256","29.964360"],["-90.029400","29.964393"],["-90.029544","29.964425"],["-90.029687","29.964458"],["-90.029831","29.964491"],["-90.029975","29.964523"],["-90.030119","29.964556"],["-90.030263","29.964589"],["-90.030407","29.964621"],["-90.030550","29.964654"],["-90.030694","29.964687"],["-90.030838","29.964719"],["-90.030982","29.964752"],["-90.031126","29.964785"],["-90.031270","29.964817"],["-90.031408","29.964936"],["-90.031408","29.964936"],["-90.031553","29.964932"],["-90.031699","29.964929"],["-90.031823","29.964956"],["-90.031947","29.964983"],["-90.032071","29.965011"],["-90.032195","29.965038"],["-90.032320","29.965065"],["-90.032444","29.965092"],["-90.032568","29.965120"],["-90.032692","29.965147"],["-90.032893","29.965198"],["-90.033095","29.965249"],["-90.033297","29.965300"],["-90.033392","29.965387"],["-90.033508","29.965374"],["-90.033624","29.965361"],["-90.033776","29.965395"],["-90.033928","29.965429"],["-90.034080","29.965463"],["-90.034232","29.965497"],["-90.034384","29.965531"],["-90.034536","29.965565"],["-90.034688","29.965599"],["-90.034840","29.965633"],["-90.034992","29.965667"],["-90.035144","29.965701"],["-90.035296","29.965735"],["-90.035448","29.965769"],["-90.035600","29.965803"],["-90.035752","29.965837"],["-90.035904","29.965871"],["-90.036057","29.965905"],["-90.036154","29.965997"],["-90.036357","29.965956"],["-90.036493","29.965988"],["-90.036630","29.966020"],["-90.036766","29.966051"],["-90.036902","29.966083"],["-90.037039","29.966115"],["-90.037175","29.966147"],["-90.037311","29.966179"],["-90.037447","29.966211"],["-90.037584","29.966242"],["-90.037720","29.966274"],["-90.037856","29.966306"],["-90.037993","29.966338"],["-90.038129","29.966370"],["-90.038265","29.966401"],["-90.038402","29.966433"],["-90.038538","29.966465"],["-90.038625","29.966554"],["-90.038747","29.966512"],["-90.038934","29.966553"],["-90.039120","29.966595"],["-90.039306","29.966636"],["-90.039493","29.966678"],["-90.039679","29.966719"],["-90.039866","29.966761"],["-90.040052","29.966802"],["-90.040239","29.966844"],["-90.040318","29.966934"],["-90.040445","29.966897"],["-90.040553","29.966922"],["-90.040661","29.966946"],["-90.040769","29.966971"],["-90.040877","29.966995"],["-90.040985","29.967020"],["-90.041092","29.967044"],["-90.041200","29.967069"],["-90.041308","29.967093"],["-90.041416","29.967118"],["-90.041524","29.967142"],["-90.041632","29.967167"],["-90.041740","29.967191"],["-90.041848","29.967216"],["-90.041956","29.967240"],["-90.042064","29.967265"],["-90.042171","29.967289"],["-90.042281","29.967376"],["-90.042290","29.967340"],["-90.042410","29.967370"],["-90.042602","29.967413"],["-90.042795","29.967455"],["-90.042987","29.967498"],["-90.043180","29.967540"],["-90.043320","29.967570"],["-90.043460","29.967600"],["-90.043600","29.967635"],["-90.043740","29.967670"],["-90.043925","29.967710"],["-90.044110","29.967750"],["-90.044108","29.967755"],["-90.044110","29.967750"],["-90.044160","29.967760"],["-90.044267","29.967785"],["-90.044375","29.967810"],["-90.044482","29.967835"],["-90.044590","29.967860"],["-90.044697","29.967885"],["-90.044805","29.967910"],["-90.044912","29.967935"],["-90.045020","29.967960"],["-90.045132","29.967985"],["-90.045245","29.968010"],["-90.045357","29.968035"],["-90.045470","29.968060"],["-90.045582","29.968085"],["-90.045695","29.968110"],["-90.045807","29.968135"],["-90.045920","29.968160"],["-90.045915","29.968161"],["-90.045920","29.968160"],["-90.045960","29.968170"],["-90.046067","29.968195"],["-90.046175","29.968220"],["-90.046282","29.968245"],["-90.046390","29.968270"],["-90.046520","29.968300"],["-90.046650","29.968330"],["-90.046860","29.968380"],["-90.047010","29.968400"],["-90.047120","29.968430"],["-90.047230","29.968460"],["-90.047350","29.968490"],["-90.047550","29.968535"],["-90.047750","29.968580"],["-90.047950","29.968625"],["-90.048150","29.968670"],["-90.048148","29.968683"],["-90.048150","29.968670"],["-90.048220","29.968680"],["-90.048300","29.968700"],["-90.048450","29.968735"],["-90.048600","29.968770"],["-90.048740","29.968803"],["-90.048880","29.968835"],["-90.049020","29.968868"],["-90.049160","29.968900"],["-90.049200","29.968910"],["-90.049310","29.968935"],["-90.049420","29.968960"],["-90.049550","29.968985"],["-90.049680","29.969010"],["-90.049870","29.969055"],["-90.050060","29.969100"],["-90.050059","29.969116"],["-90.050060","29.969100"],["-90.050100","29.969110"],["-90.050160","29.969120"],["-90.050240","29.969130"],["-90.050280","29.969130"],["-90.050445","29.969120"],["-90.050610","29.969110"],["-90.050750","29.969100"],["-90.050890","29.969095"],["-90.051030","29.969090"],["-90.051180","29.969080"],["-90.051330","29.969070"],["-90.051485","29.969060"],["-90.051640","29.969050"],["-90.051800","29.969040"],["-90.051957","29.969098"],["-90.051950","29.969010"],["-90.052050","29.969010"],["-90.052270","29.968990"],["-90.052435","29.968980"],["-90.052600","29.968970"],["-90.052789","29.968964"],["-90.052978","29.968959"],["-90.053166","29.968953"],["-90.053355","29.968948"],["-90.053544","29.968942"],["-90.053733","29.968936"],["-90.053922","29.968931"],["-90.054110","29.968925"],["-90.054226","29.968952"],["-90.054342","29.968979"],["-90.054395","29.968860"],["-90.054598","29.968848"],["-90.054801","29.968836"],["-90.055004","29.968823"],["-90.055207","29.968811"],["-90.055410","29.968799"],["-90.055612","29.968787"],["-90.055815","29.968775"],["-90.056018","29.968762"],["-90.056151","29.968754"],["-90.056284","29.968746"],["-90.056322","29.968817"],["-90.056490","29.968728"],["-90.056605","29.968719"],["-90.056719","29.968711"],["-90.056834","29.968702"],["-90.056949","29.968694"],["-90.057063","29.968685"],["-90.057178","29.968677"],["-90.057293","29.968669"],["-90.057407","29.968660"],["-90.057503","29.968712"],["-90.057582","29.968637"],["-90.057796","29.968628"],["-90.058010","29.968620"],["-90.058170","29.968600"],["-90.058372","29.968558"],["-90.058574","29.968516"],["-90.058775","29.968473"],["-90.058977","29.968431"],["-90.059179","29.968389"],["-90.059270","29.968370"],["-90.059477","29.968352"],["-90.059620","29.968340"],["-90.059827","29.968330"],["-90.060035","29.968319"],["-90.060242","29.968309"],["-90.060410","29.968300"],["-90.060617","29.968286"],["-90.060710","29.968280"],["-90.060912","29.968240"],["-90.061070","29.968209"],["-90.061266","29.968150"],["-90.061456","29.968078"],["-90.061530","29.968050"],["-90.061703","29.967951"],["-90.061866","29.967840"],["-90.061970","29.967769"],["-90.062115","29.967640"],["-90.062150","29.967609"],["-90.062315","29.967500"],["-90.062412","29.967436"],["-90.062370","29.967410"],["-90.062440","29.967340"],["-90.062525","29.967240"],["-90.062610","29.967140"],["-90.062620","29.967130"],["-90.062640","29.967110"],["-90.062728","29.967013"],["-90.062815","29.966915"],["-90.062903","29.966818"],["-90.062990","29.966720"],["-90.063020","29.966690"],["-90.063150","29.966540"],["-90.063280","29.966390"],["-90.063350","29.966308"],["-90.063420","29.966225"],["-90.063490","29.966143"],["-90.063560","29.966060"],["-90.063585","29.966079"],["-90.063560","29.966060"],["-90.063570","29.966050"],["-90.063600","29.966020"],["-90.063720","29.965900"],["-90.063800","29.965800"],["-90.063890","29.965700"],["-90.063980","29.965600"],["-90.064095","29.965475"],["-90.064210","29.965350"],["-90.064280","29.965260"],["-90.064363","29.965170"],["-90.064445","29.965080"],["-90.064528","29.964990"],["-90.064610","29.964900"],["-90.064683","29.964820"],["-90.064755","29.964740"],["-90.064828","29.964660"],["-90.064900","29.964580"],["-90.064930","29.964540"],["-90.064980","29.964490"],["-90.065053","29.964409"],["-90.065125","29.964328"],["-90.065198","29.964246"],["-90.065270","29.964165"],["-90.065343","29.964084"],["-90.065415","29.964003"],["-90.065488","29.963921"],["-90.065560","29.963840"],["-90.065584","29.963862"],["-90.065560","29.963840"],["-90.065600","29.963800"],["-90.065678","29.963713"],["-90.065755","29.963625"],["-90.065833","29.963538"],["-90.065910","29.963450"],["-90.066008","29.963340"],["-90.066105","29.963230"],["-90.066203","29.963120"],["-90.066300","29.963010"],["-90.066385","29.962915"],["-90.066470","29.962820"],["-90.066555","29.962725"],["-90.066640","29.962630"],["-90.066735","29.962525"],["-90.066830","29.962420"],["-90.066925","29.962315"],["-90.067020","29.962210"],["-90.067106","29.962113"],["-90.067193","29.962015"],["-90.067279","29.961918"],["-90.067365","29.961820"],["-90.067451","29.961723"],["-90.067538","29.961625"],["-90.067624","29.961528"],["-90.067730","29.961420"],["-90.067726","29.961445"],["-90.067730","29.961420"],["-90.067855","29.961275"],["-90.067980","29.961130"],["-90.068110","29.960990"],["-90.068140","29.960940"],["-90.068233","29.960838"],["-90.068325","29.960735"],["-90.068418","29.960633"],["-90.068510","29.960530"],["-90.068600","29.960430"],["-90.068733","29.960283"],["-90.068865","29.960135"],["-90.068998","29.959988"],["-90.069130","29.959840"],["-90.069140","29.959830"],["-90.069189","29.959861"],["-90.069140","29.959830"],["-90.069210","29.959750"],["-90.069290","29.959660"],["-90.069370","29.959570"],["-90.069470","29.959460"],["-90.069548","29.959373"],["-90.069625","29.959285"],["-90.069703","29.959198"],["-90.069780","29.959110"],["-90.069850","29.959030"],["-90.069920","29.958950"],["-90.070000","29.958863"],["-90.070080","29.958775"],["-90.070160","29.958688"],["-90.070240","29.958600"],["-90.070320","29.958510"],["-90.070400","29.958420"],["-90.070480","29.958330"],["-90.070560","29.958240"],["-90.070568","29.958241"],["-90.070560","29.958240"],["-90.070590","29.958200"],["-90.070679","29.958101"],["-90.070768","29.958003"],["-90.070856","29.957904"],["-90.070945","29.957805"],["-90.071034","29.957706"],["-90.071123","29.957608"],["-90.071211","29.957509"],["-90.071300","29.957410"],["-90.071420","29.957488"],["-90.071540","29.957565"],["-90.071660","29.957643"],["-90.071780","29.957720"],["-90.071915","29.957810"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072506","29.957390"],["-90.072625","29.957255"],["-90.072743","29.957119"],["-90.072861","29.956984"],["-90.072981","29.956837"],["-90.073079","29.956719"],["-90.073203","29.956575"],["-90.073259","29.956509"],["-90.073339","29.956419"],["-90.073460","29.956290"],["-90.073596","29.956154"],["-90.073630","29.956120"],["-90.073781","29.955997"],["-90.073932","29.955874"],["-90.074078","29.955755"],["-90.074046","29.955672"],["-90.074133","29.955573"],["-90.074220","29.955475"],["-90.074308","29.955376"],["-90.074395","29.955278"],["-90.074482","29.955179"],["-90.074569","29.955081"],["-90.074656","29.954982"],["-90.074743","29.954884"],["-90.074856","29.954740"],["-90.074969","29.954596"],["-90.075059","29.954463"],["-90.075148","29.954331"],["-90.075214","29.954202"],["-90.075280","29.954073"],["-90.075280","29.954073"]]},{"type":"MultiPoint","coordinates":[["-90.071797","29.957551"],["-90.070671","29.958178"],["-90.067608","29.961198"],["-90.061408","29.967901"],["-90.057201","29.968461"],["-90.056416","29.968510"],["-90.004684","29.957696"],["-90.007646","29.958819"],["-90.050286","29.968853"],["-90.048313","29.968493"],["-90.046049","29.967989"],["-90.044263","29.967583"],["-90.040628","29.966743"],["-90.038946","29.966354"],["-90.036485","29.965824"],["-90.033701","29.965161"],["-90.031697","29.964719"],["-90.025487","29.963223"],["-90.021531","29.962393"],["-90.018644","29.961747"],["-90.015986","29.961155"],["-90.014034","29.960703"],["-90.012372","29.960188"],["-90.010211","29.959467"],["-90.008320","29.958781"],["-90.074706","29.954333"],["-90.054413","29.968681"],["-90.052204","29.968818"],["-90.053345","29.968740"],["-90.075911","29.951058"],["-90.077310","29.951484"],["-90.063593","29.965692"],["-90.042529","29.967194"],["-90.073384","29.955849"],["-90.075280","29.954073"],["-90.069186","29.959483"],["-90.065324","29.963818"]]},{"type":"LineString","coordinates":[["-90.075280","29.954073"],["-90.075331","29.953902"],["-90.075382","29.953731"],["-90.075433","29.953559"],["-90.075484","29.953388"],["-90.075533","29.953224"],["-90.075581","29.953059"],["-90.075630","29.952894"],["-90.075678","29.952730"],["-90.075721","29.952579"],["-90.075764","29.952429"],["-90.075807","29.952278"],["-90.075850","29.952128"],["-90.075850","29.952001"],["-90.075850","29.951875"],["-90.075850","29.951748"],["-90.075850","29.951621"],["-90.075844","29.951489"],["-90.075839","29.951358"],["-90.075833","29.951226"],["-90.075828","29.951094"],["-90.075911","29.951058"],["-90.075876","29.950926"],["-90.076021","29.950968"],["-90.076166","29.951010"],["-90.076311","29.951052"],["-90.076456","29.951094"],["-90.076641","29.951157"],["-90.076826","29.951219"],["-90.077011","29.951282"],["-90.077196","29.951345"],["-90.077310","29.951484"],["-90.077427","29.951466"],["-90.077545","29.951447"],["-90.077643","29.951492"],["-90.077740","29.951538"],["-90.077838","29.951583"],["-90.077936","29.951628"],["-90.078034","29.951674"],["-90.078132","29.951719"],["-90.078230","29.951764"],["-90.078328","29.951810"],["-90.078284","29.951951"],["-90.078239","29.952093"],["-90.078195","29.952235"],["-90.078151","29.952377"],["-90.078101","29.952533"],["-90.078052","29.952690"],["-90.078002","29.952847"],["-90.077952","29.953004"],["-90.077867","29.953004"],["-90.077746","29.952957"],["-90.077626","29.952910"],["-90.077505","29.952863"],["-90.077385","29.952816"],["-90.077264","29.952770"],["-90.077144","29.952723"],["-90.077023","29.952676"],["-90.076903","29.952629"],["-90.076783","29.952582"],["-90.076662","29.952535"],["-90.076542","29.952488"],["-90.076421","29.952441"],["-90.076301","29.952394"],["-90.076180","29.952347"],["-90.076060","29.952300"],["-90.075939","29.952253"],["-90.075809","29.952227"],["-90.075646","29.952309"],["-90.075482","29.952392"],["-90.075438","29.952471"],["-90.075387","29.952650"],["-90.075336","29.952830"],["-90.075285","29.953010"],["-90.075234","29.953190"],["-90.075186","29.953358"],["-90.075129","29.953541"],["-90.075072","29.953724"],["-90.075015","29.953907"],["-90.074975","29.953999"],["-90.074935","29.954090"],["-90.074895","29.954182"],["-90.074846","29.954273"],["-90.074797","29.954363"],["-90.074706","29.954333"],["-90.074698","29.954482"],["-90.074585","29.954611"],["-90.074473","29.954741"],["-90.074360","29.954870"],["-90.074248","29.955000"],["-90.074153","29.955103"],["-90.074059","29.955207"],["-90.073965","29.955310"],["-90.073871","29.955414"],["-90.073776","29.955517"],["-90.073682","29.955620"],["-90.073588","29.955724"],["-90.073494","29.955827"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071949","29.957461"],["-90.071797","29.957551"],["-90.071783","29.957652"],["-90.071770","29.957753"],["-90.071681","29.957851"],["-90.071593","29.957948"],["-90.071504","29.958046"],["-90.071416","29.958143"],["-90.071327","29.958241"],["-90.071239","29.958339"],["-90.071150","29.958436"],["-90.071062","29.958534"],["-90.070909","29.958425"],["-90.070756","29.958315"],["-90.070671","29.958178"],["-90.070523","29.958198"],["-90.070375","29.958218"],["-90.070290","29.958315"],["-90.070205","29.958413"],["-90.070120","29.958510"],["-90.070040","29.958598"],["-90.069960","29.958685"],["-90.069880","29.958773"],["-90.069800","29.958860"],["-90.069720","29.958950"],["-90.069650","29.959030"],["-90.069545","29.959150"],["-90.069440","29.959270"],["-90.069335","29.959390"],["-90.069230","29.959510"],["-90.069186","29.959483"],["-90.069230","29.959510"],["-90.069100","29.959650"],["-90.069013","29.959749"],["-90.068925","29.959848"],["-90.068838","29.959946"],["-90.068750","29.960045"],["-90.068663","29.960144"],["-90.068575","29.960243"],["-90.068488","29.960341"],["-90.068400","29.960440"],["-90.068305","29.960545"],["-90.068210","29.960650"],["-90.068115","29.960755"],["-90.068020","29.960860"],["-90.067990","29.960900"],["-90.067860","29.961040"],["-90.067770","29.961140"],["-90.067680","29.961240"],["-90.067608","29.961198"],["-90.067680","29.961240"],["-90.067610","29.961320"],["-90.067529","29.961410"],["-90.067448","29.961500"],["-90.067366","29.961590"],["-90.067285","29.961680"],["-90.067204","29.961770"],["-90.067123","29.961860"],["-90.067041","29.961950"],["-90.066960","29.962040"],["-90.066900","29.962110"],["-90.066810","29.962211"],["-90.066720","29.962313"],["-90.066630","29.962414"],["-90.066540","29.962515"],["-90.066450","29.962616"],["-90.066360","29.962718"],["-90.066270","29.962819"],["-90.066180","29.962920"],["-90.066083","29.963030"],["-90.065985","29.963140"],["-90.065888","29.963250"],["-90.065790","29.963360"],["-90.065710","29.963450"],["-90.065630","29.963540"],["-90.065550","29.963630"],["-90.065470","29.963720"],["-90.065324","29.963818"],["-90.065221","29.963972"],["-90.065118","29.964126"],["-90.064996","29.964256"],["-90.064875","29.964387"],["-90.064754","29.964518"],["-90.064632","29.964648"],["-90.064511","29.964779"],["-90.064389","29.964910"],["-90.064268","29.965040"],["-90.064147","29.965171"],["-90.064038","29.965301"],["-90.063929","29.965431"],["-90.063821","29.965562"],["-90.063712","29.965692"],["-90.063593","29.965692"],["-90.063593","29.965692"],["-90.063660","29.965740"],["-90.063590","29.965810"],["-90.063480","29.965930"],["-90.063360","29.966065"],["-90.063240","29.966200"],["-90.063145","29.966305"],["-90.063050","29.966410"],["-90.062955","29.966515"],["-90.062860","29.966620"],["-90.062795","29.966705"],["-90.062730","29.966790"],["-90.062610","29.966925"],["-90.062490","29.967060"],["-90.062470","29.967090"],["-90.062395","29.967165"],["-90.062320","29.967240"],["-90.062250","29.967310"],["-90.062160","29.967410"],["-90.062100","29.967470"],["-90.062020","29.967540"],["-90.061930","29.967620"],["-90.061870","29.967670"],["-90.061810","29.967710"],["-90.061700","29.967780"],["-90.061590","29.967840"],["-90.061510","29.967890"],["-90.061420","29.967930"],["-90.061408","29.967901"],["-90.061420","29.967930"],["-90.061280","29.967990"],["-90.061170","29.968020"],["-90.061050","29.968060"],["-90.060920","29.968090"],["-90.060790","29.968120"],["-90.060650","29.968140"],["-90.060540","29.968150"],["-90.060400","29.968160"],["-90.060195","29.968173"],["-90.059990","29.968185"],["-90.059785","29.968198"],["-90.059580","29.968210"],["-90.059550","29.968210"],["-90.059450","29.968220"],["-90.059270","29.968240"],["-90.059123","29.968268"],["-90.058975","29.968295"],["-90.058828","29.968323"],["-90.058680","29.968350"],["-90.058490","29.968385"],["-90.058300","29.968420"],["-90.058150","29.968450"],["-90.058050","29.968460"],["-90.057920","29.968468"],["-90.057790","29.968475"],["-90.057660","29.968483"],["-90.057530","29.968490"],["-90.057310","29.968510"],["-90.057210","29.968510"],["-90.057201","29.968461"],["-90.057210","29.968510"],["-90.057095","29.968520"],["-90.056980","29.968530"],["-90.056850","29.968545"],["-90.056720","29.968560"],["-90.056510","29.968560"],["-90.056420","29.968570"],["-90.056416","29.968510"],["-90.056420","29.968570"],["-90.056200","29.968585"],["-90.055980","29.968600"],["-90.055868","29.968608"],["-90.055755","29.968615"],["-90.055643","29.968623"],["-90.055530","29.968630"],["-90.055388","29.968638"],["-90.055245","29.968645"],["-90.055103","29.968653"],["-90.054960","29.968660"],["-90.054818","29.968668"],["-90.054675","29.968675"],["-90.054533","29.968683"],["-90.054390","29.968690"],["-90.054413","29.968681"],["-90.054390","29.968690"],["-90.054260","29.968699"],["-90.054130","29.968708"],["-90.054000","29.968716"],["-90.053870","29.968725"],["-90.053740","29.968734"],["-90.053610","29.968743"],["-90.053480","29.968751"],["-90.053350","29.968760"],["-90.053345","29.968740"],["-90.053350","29.968760"],["-90.053270","29.968760"],["-90.053088","29.968773"],["-90.052905","29.968785"],["-90.052723","29.968798"],["-90.052540","29.968810"],["-90.052370","29.968820"],["-90.052200","29.968830"],["-90.052204","29.968818"],["-90.052200","29.968830"],["-90.052170","29.968830"],["-90.052090","29.968840"],["-90.051955","29.968845"],["-90.051820","29.968850"],["-90.051698","29.968858"],["-90.051575","29.968865"],["-90.051453","29.968873"],["-90.051330","29.968880"],["-90.051210","29.968890"],["-90.051090","29.968900"],["-90.051010","29.968900"],["-90.050820","29.968910"],["-90.050630","29.968920"],["-90.050520","29.968930"],["-90.050330","29.968940"],["-90.050290","29.968940"],["-90.050286","29.968853"],["-90.050290","29.968940"],["-90.050210","29.968940"],["-90.050200","29.968940"],["-90.050110","29.968920"],["-90.049920","29.968875"],["-90.049730","29.968830"],["-90.049600","29.968803"],["-90.049470","29.968775"],["-90.049340","29.968748"],["-90.049210","29.968720"],["-90.049070","29.968688"],["-90.048930","29.968655"],["-90.048790","29.968623"],["-90.048650","29.968590"],["-90.048480","29.968550"],["-90.048270","29.968500"],["-90.048313","29.968493"],["-90.048270","29.968500"],["-90.048160","29.968478"],["-90.048050","29.968455"],["-90.047940","29.968433"],["-90.047830","29.968410"],["-90.047620","29.968365"],["-90.047410","29.968320"],["-90.047290","29.968290"],["-90.047170","29.968260"],["-90.047060","29.968240"],["-90.047020","29.968230"],["-90.046910","29.968200"],["-90.046830","29.968190"],["-90.046635","29.968143"],["-90.046440","29.968095"],["-90.046245","29.968048"],["-90.046050","29.968000"],["-90.046049","29.967989"],["-90.046050","29.968000"],["-90.046000","29.967990"],["-90.045882","29.967964"],["-90.045765","29.967938"],["-90.045647","29.967911"],["-90.045530","29.967885"],["-90.045412","29.967859"],["-90.045295","29.967833"],["-90.045177","29.967806"],["-90.045060","29.967780"],["-90.044860","29.967733"],["-90.044660","29.967685"],["-90.044460","29.967638"],["-90.044345","29.967614"],["-90.044230","29.967590"],["-90.044263","29.967583"],["-90.044230","29.967590"],["-90.044105","29.967561"],["-90.043980","29.967533"],["-90.043855","29.967504"],["-90.043730","29.967475"],["-90.043605","29.967446"],["-90.043480","29.967418"],["-90.043355","29.967389"],["-90.043230","29.967360"],["-90.043120","29.967335"],["-90.043010","29.967310"],["-90.042900","29.967285"],["-90.042790","29.967260"],["-90.042660","29.967230"],["-90.042530","29.967200"],["-90.042529","29.967194"],["-90.042530","29.967200"],["-90.042460","29.967190"],["-90.042352","29.967165"],["-90.042245","29.967140"],["-90.042137","29.967115"],["-90.042030","29.967090"],["-90.041922","29.967065"],["-90.041815","29.967040"],["-90.041707","29.967015"],["-90.041600","29.966990"],["-90.041477","29.966963"],["-90.041355","29.966935"],["-90.041232","29.966908"],["-90.041110","29.966880"],["-90.040987","29.966853"],["-90.040865","29.966825"],["-90.040742","29.966798"],["-90.040620","29.966770"],["-90.040628","29.966743"],["-90.040620","29.966770"],["-90.040510","29.966750"],["-90.040410","29.966720"],["-90.040215","29.966678"],["-90.040020","29.966635"],["-90.039825","29.966593"],["-90.039630","29.966550"],["-90.039457","29.966510"],["-90.039285","29.966470"],["-90.039112","29.966430"],["-90.038940","29.966390"],["-90.038946","29.966354"],["-90.038940","29.966390"],["-90.038820","29.966360"],["-90.038710","29.966340"],["-90.038582","29.966310"],["-90.038455","29.966280"],["-90.038327","29.966250"],["-90.038200","29.966220"],["-90.038080","29.966200"],["-90.037907","29.966160"],["-90.037735","29.966120"],["-90.037562","29.966080"],["-90.037390","29.966040"],["-90.037260","29.966010"],["-90.037145","29.965985"],["-90.037030","29.965960"],["-90.036915","29.965935"],["-90.036800","29.965910"],["-90.036640","29.965870"],["-90.036480","29.965830"],["-90.036485","29.965824"],["-90.036480","29.965830"],["-90.036390","29.965810"],["-90.036240","29.965778"],["-90.036090","29.965745"],["-90.035940","29.965713"],["-90.035790","29.965680"],["-90.035600","29.965630"],["-90.035510","29.965620"],["-90.035410","29.965590"],["-90.035291","29.965563"],["-90.035172","29.965535"],["-90.035054","29.965508"],["-90.034935","29.965480"],["-90.034816","29.965453"],["-90.034697","29.965425"],["-90.034579","29.965398"],["-90.034460","29.965370"],["-90.034267","29.965328"],["-90.034075","29.965285"],["-90.033882","29.965243"],["-90.033690","29.965200"],["-90.033701","29.965161"],["-90.033690","29.965200"],["-90.033570","29.965170"],["-90.033390","29.965130"],["-90.033210","29.965090"],["-90.033030","29.965050"],["-90.032850","29.965010"],["-90.032720","29.964980"],["-90.032590","29.964950"],["-90.032390","29.964905"],["-90.032190","29.964860"],["-90.032120","29.964850"],["-90.031990","29.964820"],["-90.031880","29.964795"],["-90.031770","29.964770"],["-90.031690","29.964750"],["-90.031697","29.964719"],["-90.031690","29.964750"],["-90.031590","29.964730"],["-90.031420","29.964730"],["-90.031305","29.964705"],["-90.031190","29.964680"],["-90.031075","29.964655"],["-90.030960","29.964630"],["-90.030760","29.964580"],["-90.030700","29.964570"],["-90.030650","29.964560"],["-90.030510","29.964530"],["-90.030310","29.964483"],["-90.030110","29.964435"],["-90.029910","29.964388"],["-90.029710","29.964340"],["-90.029510","29.964295"],["-90.029310","29.964250"],["-90.029110","29.964210"],["-90.028990","29.964180"],["-90.028870","29.964150"],["-90.028820","29.964140"],["-90.028630","29.964100"],["-90.028440","29.964060"],["-90.028325","29.964033"],["-90.028210","29.964005"],["-90.028095","29.963978"],["-90.027980","29.963950"],["-90.027790","29.963900"],["-90.027610","29.963855"],["-90.027430","29.963810"],["-90.027270","29.963770"],["-90.027110","29.963730"],["-90.027100","29.963730"],["-90.026990","29.963705"],["-90.026880","29.963680"],["-90.026820","29.963670"],["-90.026653","29.963614"],["-90.026487","29.963558"],["-90.026320","29.963502"],["-90.026153","29.963447"],["-90.025987","29.963391"],["-90.025820","29.963335"],["-90.025654","29.963279"],["-90.025487","29.963223"],["-90.025323","29.963276"],["-90.025168","29.963243"],["-90.025014","29.963210"],["-90.024859","29.963177"],["-90.024705","29.963145"],["-90.024515","29.963101"],["-90.024326","29.963057"],["-90.024137","29.963013"],["-90.023948","29.962970"],["-90.023759","29.962926"],["-90.023570","29.962882"],["-90.023381","29.962839"],["-90.023192","29.962795"],["-90.023078","29.962768"],["-90.022964","29.962742"],["-90.022850","29.962716"],["-90.022736","29.962690"],["-90.022622","29.962663"],["-90.022508","29.962637"],["-90.022394","29.962611"],["-90.022280","29.962584"],["-90.022140","29.962597"],["-90.021988","29.962559"],["-90.021835","29.962520"],["-90.021677","29.962480"],["-90.021520","29.962440"],["-90.021531","29.962393"],["-90.021520","29.962440"],["-90.021410","29.962420"],["-90.021301","29.962395"],["-90.021192","29.962370"],["-90.021084","29.962345"],["-90.020975","29.962320"],["-90.020866","29.962295"],["-90.020757","29.962270"],["-90.020649","29.962245"],["-90.020540","29.962220"],["-90.020340","29.962170"],["-90.020170","29.962133"],["-90.020000","29.962095"],["-90.019830","29.962058"],["-90.019660","29.962020"],["-90.019531","29.961991"],["-90.019402","29.961963"],["-90.019274","29.961934"],["-90.019145","29.961905"],["-90.019016","29.961876"],["-90.018887","29.961848"],["-90.018759","29.961819"],["-90.018630","29.961790"],["-90.018644","29.961747"],["-90.018630","29.961790"],["-90.018510","29.961760"],["-90.018364","29.961726"],["-90.018217","29.961693"],["-90.018071","29.961659"],["-90.017925","29.961625"],["-90.017779","29.961591"],["-90.017632","29.961558"],["-90.017486","29.961524"],["-90.017340","29.961490"],["-90.017212","29.961460"],["-90.017085","29.961430"],["-90.016957","29.961400"],["-90.016830","29.961370"],["-90.016617","29.961323"],["-90.016405","29.961275"],["-90.016192","29.961228"],["-90.016089","29.961191"],["-90.015986","29.961155"],["-90.015855","29.961134"],["-90.015725","29.961114"],["-90.015514","29.961062"],["-90.015302","29.961011"],["-90.015091","29.960960"],["-90.014879","29.960908"],["-90.014668","29.960857"],["-90.014457","29.960806"],["-90.014245","29.960754"],["-90.014034","29.960703"],["-90.013908","29.960708"],["-90.013782","29.960712"],["-90.013621","29.960665"],["-90.013460","29.960617"],["-90.013299","29.960569"],["-90.013138","29.960522"],["-90.012977","29.960474"],["-90.012816","29.960426"],["-90.012655","29.960379"],["-90.012494","29.960331"],["-90.012372","29.960188"],["-90.012240","29.960188"],["-90.012108","29.960187"],["-90.011996","29.960148"],["-90.011883","29.960110"],["-90.011771","29.960071"],["-90.011659","29.960033"],["-90.011547","29.959994"],["-90.011434","29.959955"],["-90.011322","29.959917"],["-90.011210","29.959878"],["-90.011097","29.959839"],["-90.010985","29.959801"],["-90.010873","29.959762"],["-90.010760","29.959723"],["-90.010648","29.959685"],["-90.010536","29.959646"],["-90.010423","29.959608"],["-90.010311","29.959569"],["-90.010211","29.959467"],["-90.010052","29.959444"],["-90.009893","29.959420"],["-90.009722","29.959355"],["-90.009552","29.959289"],["-90.009382","29.959223"],["-90.009211","29.959158"],["-90.009041","29.959092"],["-90.008871","29.959026"],["-90.008700","29.958961"],["-90.008530","29.958895"],["-90.008425","29.958838"],["-90.008320","29.958781"],["-90.008122","29.958736"],["-90.007994","29.958690"],["-90.007865","29.958643"],["-90.007736","29.958597"],["-90.007607","29.958550"],["-90.007479","29.958504"],["-90.007350","29.958458"],["-90.007221","29.958411"],["-90.007092","29.958365"],["-90.006964","29.958318"],["-90.006835","29.958272"],["-90.006706","29.958225"],["-90.006577","29.958179"],["-90.006449","29.958132"],["-90.006320","29.958086"],["-90.006191","29.958039"],["-90.006062","29.957993"],["-90.005956","29.957953"],["-90.005850","29.957912"],["-90.005744","29.957872"],["-90.005637","29.957832"],["-90.005531","29.957792"],["-90.005425","29.957752"],["-90.005318","29.957712"],["-90.005212","29.957672"],["-90.005106","29.957632"],["-90.004999","29.957591"],["-90.004893","29.957551"],["-90.004787","29.957511"],["-90.004681","29.957471"],["-90.004574","29.957431"],["-90.004468","29.957391"],["-90.004362","29.957351"],["-90.004218","29.957298"],["-90.004073","29.957245"],["-90.003929","29.957192"],["-90.003785","29.957139"],["-90.003641","29.957086"],["-90.003497","29.957033"],["-90.003353","29.956980"],["-90.003208","29.956928"],["-90.003160","29.957039"],["-90.003112","29.957151"],["-90.003293","29.957206"],["-90.003474","29.957261"],["-90.003655","29.957316"],["-90.003836","29.957371"],["-90.004017","29.957427"],["-90.004198","29.957482"],["-90.004379","29.957537"],["-90.004560","29.957592"],["-90.004684","29.957696"],["-90.004837","29.957714"],["-90.004989","29.957732"],["-90.005155","29.957800"],["-90.005321","29.957868"],["-90.005487","29.957936"],["-90.005654","29.958003"],["-90.005820","29.958071"],["-90.005986","29.958139"],["-90.006152","29.958207"],["-90.006318","29.958275"],["-90.006484","29.958343"],["-90.006650","29.958411"],["-90.006816","29.958479"],["-90.006982","29.958547"],["-90.007148","29.958615"],["-90.007314","29.958683"],["-90.007480","29.958751"],["-90.007646","29.958819"],["-90.007646","29.958819"]]}]}},{"type":"Feature","properties":{"route_id":"80","agency_id":"1","route_short_name":"80","route_long_name":"Desire-Louisa","route_type":"3","route_color":"#f8b9ab","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.050049","29.969206"],["-90.048910","29.972897"],["-90.036334","30.005478"],["-90.038642","29.972862"],["-90.037390","29.976950"],["-90.037116","29.977970"],["-90.036780","29.979080"],["-90.036139","29.981111"],["-90.035427","29.983520"],["-90.036850","29.985713"],["-90.036199","29.987806"],["-90.035578","29.989882"],["-90.034927","29.991975"],["-90.034725","29.996572"],["-90.034870","29.998293"],["-90.035102","30.005970"],["-90.037659","30.004976"],["-90.056608","29.962690"],["-90.054413","29.968681"],["-90.049520","29.970867"],["-90.056671","29.968337"],["-90.031676","30.007409"],["-90.053345","29.968740"],["-90.056468","29.965526"],["-90.034019","30.006378"],["-90.032703","29.998537"],["-90.034482","29.993933"],["-90.037848","29.975515"]]},{"type":"LineString","coordinates":[["-90.056608","29.962690"],["-90.056530","29.962690"],["-90.056520","29.962610"],["-90.056530","29.962490"],["-90.056510","29.962300"],["-90.056500","29.962230"],["-90.056495","29.962065"],["-90.056490","29.961900"],["-90.056500","29.961810"],["-90.056500","29.961780"],["-90.056350","29.961790"],["-90.056200","29.961800"],["-90.056180","29.961860"],["-90.056170","29.961920"],["-90.056170","29.961950"],["-90.056180","29.962080"],["-90.056200","29.962220"],["-90.056210","29.962355"],["-90.056220","29.962490"],["-90.056220","29.962560"],["-90.056230","29.962640"],["-90.056230","29.962710"],["-90.056240","29.962828"],["-90.056250","29.962945"],["-90.056260","29.963063"],["-90.056270","29.963180"],["-90.056280","29.963290"],["-90.056290","29.963400"],["-90.056300","29.963510"],["-90.056310","29.963620"],["-90.056320","29.963780"],["-90.056330","29.963940"],["-90.056345","29.964095"],["-90.056360","29.964250"],["-90.056370","29.964425"],["-90.056380","29.964600"],["-90.056400","29.964780"],["-90.056415","29.964968"],["-90.056430","29.965155"],["-90.056445","29.965343"],["-90.056460","29.965530"],["-90.056468","29.965526"],["-90.056460","29.965530"],["-90.056470","29.965580"],["-90.056470","29.965630"],["-90.056480","29.965700"],["-90.056490","29.965820"],["-90.056500","29.965940"],["-90.056520","29.966130"],["-90.056530","29.966210"],["-90.056540","29.966340"],["-90.056550","29.966430"],["-90.056560","29.966560"],["-90.056570","29.966685"],["-90.056580","29.966810"],["-90.056595","29.966980"],["-90.056610","29.967150"],["-90.056620","29.967265"],["-90.056630","29.967380"],["-90.056630","29.967400"],["-90.056640","29.967560"],["-90.056645","29.967670"],["-90.056650","29.967780"],["-90.056660","29.967890"],["-90.056670","29.968000"],["-90.056680","29.968110"],["-90.056690","29.968220"],["-90.056700","29.968280"],["-90.056700","29.968330"],["-90.056671","29.968337"],["-90.056700","29.968330"],["-90.056710","29.968445"],["-90.056720","29.968560"],["-90.056510","29.968560"],["-90.056378","29.968570"],["-90.056245","29.968580"],["-90.056113","29.968590"],["-90.055980","29.968600"],["-90.055868","29.968608"],["-90.055755","29.968615"],["-90.055643","29.968623"],["-90.055530","29.968630"],["-90.055388","29.968638"],["-90.055245","29.968645"],["-90.055103","29.968653"],["-90.054960","29.968660"],["-90.054818","29.968668"],["-90.054675","29.968675"],["-90.054533","29.968683"],["-90.054390","29.968690"],["-90.054413","29.968681"],["-90.054390","29.968690"],["-90.054260","29.968699"],["-90.054130","29.968708"],["-90.054000","29.968716"],["-90.053870","29.968725"],["-90.053740","29.968734"],["-90.053610","29.968743"],["-90.053480","29.968751"],["-90.053350","29.968760"],["-90.053345","29.968740"],["-90.053350","29.968760"],["-90.053270","29.968760"],["-90.053088","29.968773"],["-90.052905","29.968785"],["-90.052723","29.968798"],["-90.052540","29.968810"],["-90.052355","29.968820"],["-90.052170","29.968830"],["-90.052090","29.968840"],["-90.051955","29.968845"],["-90.051820","29.968850"],["-90.051698","29.968858"],["-90.051575","29.968865"],["-90.051453","29.968873"],["-90.051330","29.968880"],["-90.051210","29.968890"],["-90.051090","29.968900"],["-90.051010","29.968900"],["-90.050820","29.968910"],["-90.050630","29.968920"],["-90.050520","29.968930"],["-90.050330","29.968940"],["-90.050210","29.968940"],["-90.050155","29.969025"],["-90.050100","29.969110"],["-90.050070","29.969210"],["-90.050049","29.969206"],["-90.050070","29.969210"],["-90.050040","29.969290"],["-90.049990","29.969470"],["-90.049950","29.969590"],["-90.049910","29.969735"],["-90.049870","29.969880"],["-90.049831","29.970005"],["-90.049793","29.970130"],["-90.049754","29.970255"],["-90.049715","29.970380"],["-90.049676","29.970505"],["-90.049638","29.970630"],["-90.049599","29.970755"],["-90.049560","29.970880"],["-90.049520","29.970867"],["-90.049560","29.970880"],["-90.049540","29.970930"],["-90.049500","29.971060"],["-90.049460","29.971190"],["-90.049420","29.971320"],["-90.049380","29.971450"],["-90.049340","29.971580"],["-90.049300","29.971710"],["-90.049260","29.971840"],["-90.049220","29.971970"],["-90.049170","29.972150"],["-90.049120","29.972310"],["-90.049090","29.972415"],["-90.049060","29.972520"],["-90.049050","29.972570"],["-90.049000","29.972740"],["-90.048950","29.972830"],["-90.048900","29.972920"],["-90.048910","29.972897"],["-90.048900","29.972920"],["-90.048785","29.972895"],["-90.048670","29.972870"],["-90.048555","29.972845"],["-90.048440","29.972820"],["-90.048310","29.972790"],["-90.048155","29.972755"],["-90.048000","29.972720"],["-90.047865","29.972690"],["-90.047730","29.972660"],["-90.047590","29.972620"],["-90.047390","29.972580"],["-90.047370","29.972580"],["-90.047260","29.972555"],["-90.047150","29.972530"],["-90.047040","29.972500"],["-90.046890","29.972465"],["-90.046740","29.972430"],["-90.046595","29.972400"],["-90.046450","29.972370"],["-90.046305","29.972335"],["-90.046160","29.972300"],["-90.046030","29.972270"],["-90.045900","29.972240"],["-90.045770","29.972210"],["-90.045750","29.972210"],["-90.045580","29.972170"],["-90.045500","29.972150"],["-90.045420","29.972130"],["-90.045310","29.972110"],["-90.045220","29.972090"],["-90.045080","29.972060"],["-90.045020","29.972040"],["-90.044810","29.971990"],["-90.044630","29.971950"],["-90.044450","29.971910"],["-90.044410","29.971900"],["-90.044245","29.971865"],["-90.044080","29.971830"],["-90.043880","29.971780"],["-90.043790","29.971760"],["-90.043760","29.971760"],["-90.043680","29.971740"],["-90.043590","29.971720"],["-90.043530","29.971710"],["-90.043480","29.971710"],["-90.043420","29.971700"],["-90.043300","29.971690"],["-90.043240","29.971690"],["-90.043180","29.971670"],["-90.043000","29.971660"],["-90.042860","29.971630"],["-90.042720","29.971600"],["-90.042520","29.971555"],["-90.042320","29.971510"],["-90.042140","29.971470"],["-90.042027","29.971445"],["-90.041915","29.971420"],["-90.041802","29.971395"],["-90.041690","29.971370"],["-90.041577","29.971345"],["-90.041465","29.971320"],["-90.041352","29.971295"],["-90.041240","29.971270"],["-90.041125","29.971243"],["-90.041010","29.971215"],["-90.040895","29.971188"],["-90.040780","29.971160"],["-90.040580","29.971115"],["-90.040380","29.971070"],["-90.040245","29.971040"],["-90.040110","29.971010"],["-90.039975","29.970980"],["-90.039840","29.970950"],["-90.039702","29.970920"],["-90.039565","29.970890"],["-90.039427","29.970860"],["-90.039290","29.970830"],["-90.039245","29.970985"],["-90.039200","29.971140"],["-90.039155","29.971295"],["-90.039110","29.971450"],["-90.039090","29.971510"],["-90.039035","29.971685"],["-90.038980","29.971860"],["-90.038940","29.972010"],["-90.038885","29.972195"],["-90.038830","29.972380"],["-90.038780","29.972550"],["-90.038730","29.972710"],["-90.038680","29.972800"],["-90.038630","29.972890"],["-90.038642","29.972862"],["-90.038630","29.972890"],["-90.038680","29.972900"],["-90.038628","29.973075"],["-90.038575","29.973250"],["-90.038523","29.973425"],["-90.038470","29.973600"],["-90.038415","29.973775"],["-90.038360","29.973950"],["-90.038325","29.974068"],["-90.038290","29.974185"],["-90.038255","29.974303"],["-90.038220","29.974420"],["-90.038180","29.974560"],["-90.038140","29.974700"],["-90.038100","29.974840"],["-90.038060","29.974980"],["-90.038018","29.975123"],["-90.037975","29.975265"],["-90.037933","29.975408"],["-90.037890","29.975550"],["-90.037840","29.975540"],["-90.037848","29.975515"],["-90.037840","29.975540"],["-90.037890","29.975550"],["-90.037853","29.975668"],["-90.037815","29.975785"],["-90.037778","29.975903"],["-90.037740","29.976020"],["-90.037705","29.976139"],["-90.037670","29.976258"],["-90.037635","29.976376"],["-90.037600","29.976495"],["-90.037565","29.976614"],["-90.037530","29.976733"],["-90.037495","29.976851"],["-90.037460","29.976970"],["-90.037390","29.976950"],["-90.037460","29.976970"],["-90.037440","29.977060"],["-90.037405","29.977175"],["-90.037370","29.977290"],["-90.037335","29.977405"],["-90.037300","29.977520"],["-90.037265","29.977640"],["-90.037230","29.977760"],["-90.037195","29.977870"],["-90.037160","29.977980"],["-90.037116","29.977970"],["-90.037160","29.977980"],["-90.037130","29.978100"],["-90.037085","29.978243"],["-90.037040","29.978385"],["-90.036995","29.978528"],["-90.036950","29.978670"],["-90.036920","29.978775"],["-90.036890","29.978880"],["-90.036860","29.978985"],["-90.036830","29.979090"],["-90.036780","29.979080"],["-90.036830","29.979090"],["-90.036810","29.979130"],["-90.036773","29.979255"],["-90.036735","29.979380"],["-90.036698","29.979505"],["-90.036660","29.979630"],["-90.036623","29.979765"],["-90.036585","29.979900"],["-90.036548","29.980035"],["-90.036510","29.980170"],["-90.036474","29.980290"],["-90.036438","29.980410"],["-90.036401","29.980530"],["-90.036365","29.980650"],["-90.036329","29.980770"],["-90.036293","29.980890"],["-90.036256","29.981010"],["-90.036220","29.981130"],["-90.036139","29.981111"],["-90.036220","29.981130"],["-90.036190","29.981210"],["-90.036145","29.981370"],["-90.036100","29.981530"],["-90.036060","29.981668"],["-90.036020","29.981805"],["-90.035980","29.981943"],["-90.035940","29.982080"],["-90.035880","29.982250"],["-90.035828","29.982425"],["-90.035775","29.982600"],["-90.035723","29.982775"],["-90.035670","29.982950"],["-90.035630","29.983095"],["-90.035590","29.983240"],["-90.035570","29.983300"],["-90.035530","29.983420"],["-90.035490","29.983540"],["-90.035427","29.983520"],["-90.035490","29.983540"],["-90.035460","29.983620"],["-90.035670","29.983670"],["-90.035880","29.983720"],["-90.036030","29.983760"],["-90.036180","29.983800"],["-90.036355","29.983840"],["-90.036530","29.983880"],["-90.036590","29.984050"],["-90.036600","29.984090"],["-90.036640","29.984180"],["-90.036710","29.984310"],["-90.036750","29.984370"],["-90.036790","29.984420"],["-90.036840","29.984490"],["-90.036890","29.984580"],["-90.036940","29.984700"],["-90.036970","29.984830"],["-90.036970","29.984900"],["-90.036980","29.984980"],["-90.036980","29.985060"],["-90.036970","29.985120"],["-90.036960","29.985190"],["-90.036920","29.985350"],["-90.036920","29.985360"],["-90.036890","29.985455"],["-90.036860","29.985550"],["-90.036850","29.985713"],["-90.036813","29.985890"],["-90.036777","29.986067"],["-90.036763","29.986135"],["-90.036705","29.986308"],["-90.036647","29.986480"],["-90.036588","29.986653"],["-90.036530","29.986826"],["-90.036472","29.986998"],["-90.036413","29.987171"],["-90.036355","29.987343"],["-90.036297","29.987516"],["-90.036239","29.987689"],["-90.036199","29.987806"],["-90.036156","29.987982"],["-90.036114","29.988158"],["-90.036102","29.988207"],["-90.036048","29.988381"],["-90.035994","29.988554"],["-90.035939","29.988728"],["-90.035889","29.988890"],["-90.035841","29.989065"],["-90.035789","29.989239"],["-90.035736","29.989413"],["-90.035684","29.989587"],["-90.035622","29.989759"],["-90.035578","29.989882"],["-90.035550","29.989880"],["-90.035540","29.989930"],["-90.035508","29.990038"],["-90.035475","29.990145"],["-90.035443","29.990253"],["-90.035410","29.990360"],["-90.035360","29.990510"],["-90.035310","29.990660"],["-90.035260","29.990810"],["-90.035210","29.990960"],["-90.035173","29.991090"],["-90.035135","29.991220"],["-90.035098","29.991350"],["-90.035060","29.991480"],["-90.035020","29.991603"],["-90.034980","29.991725"],["-90.034940","29.991848"],["-90.034900","29.992000"],["-90.034927","29.991975"],["-90.034900","29.992000"],["-90.034860","29.992145"],["-90.034820","29.992290"],["-90.034785","29.992405"],["-90.034750","29.992520"],["-90.034710","29.992650"],["-90.034670","29.992780"],["-90.034630","29.992910"],["-90.034590","29.993040"],["-90.034580","29.993070"],["-90.034565","29.993175"],["-90.034550","29.993280"],["-90.034530","29.993470"],["-90.034530","29.993570"],["-90.034525","29.993690"],["-90.034520","29.993810"],["-90.034520","29.993820"],["-90.034520","29.993970"],["-90.034482","29.993933"],["-90.034520","29.993970"],["-90.034525","29.994085"],["-90.034530","29.994200"],["-90.034545","29.994335"],["-90.034560","29.994470"],["-90.034575","29.994605"],["-90.034590","29.994740"],["-90.034600","29.994790"],["-90.034612","29.994925"],["-90.034625","29.995060"],["-90.034637","29.995195"],["-90.034650","29.995330"],["-90.034650","29.995340"],["-90.034665","29.995450"],["-90.034680","29.995560"],["-90.034690","29.995690"],["-90.034705","29.995845"],["-90.034720","29.996000"],["-90.034720","29.996110"],["-90.034735","29.996265"],["-90.034750","29.996420"],["-90.034770","29.996610"],["-90.034725","29.996572"],["-90.034770","29.996610"],["-90.034785","29.996800"],["-90.034800","29.996990"],["-90.034820","29.997105"],["-90.034840","29.997220"],["-90.034855","29.997355"],["-90.034870","29.997490"],["-90.034870","29.997510"],["-90.034872","29.997630"],["-90.034875","29.997750"],["-90.034877","29.997870"],["-90.034880","29.997990"],["-90.034885","29.998140"],["-90.034890","29.998290"],["-90.034870","29.998293"],["-90.034890","29.998290"],["-90.034900","29.998410"],["-90.034730","29.998430"],["-90.034520","29.998440"],["-90.034320","29.998460"],["-90.034110","29.998470"],["-90.033900","29.998490"],["-90.033700","29.998510"],["-90.033576","29.998518"],["-90.033453","29.998525"],["-90.033329","29.998533"],["-90.033205","29.998540"],["-90.033081","29.998548"],["-90.032958","29.998555"],["-90.032834","29.998563"],["-90.032710","29.998570"],["-90.032703","29.998537"],["-90.032710","29.998570"],["-90.032630","29.998580"],["-90.032515","29.998590"],["-90.032400","29.998600"],["-90.032180","29.998610"],["-90.031980","29.998630"],["-90.031770","29.998640"],["-90.031585","29.998655"],["-90.031400","29.998670"],["-90.031360","29.998670"],["-90.031150","29.998680"],["-90.030940","29.998700"],["-90.030735","29.998713"],["-90.030530","29.998725"],["-90.030325","29.998738"],["-90.030120","29.998750"],["-90.029940","29.998780"],["-90.029955","29.998968"],["-90.029970","29.999155"],["-90.029985","29.999343"],["-90.030000","29.999530"],["-90.030012","29.999668"],["-90.030025","29.999805"],["-90.030037","29.999943"],["-90.030050","30.000080"],["-90.030090","30.000240"],["-90.030110","30.000330"],["-90.030130","30.000495"],["-90.030150","30.000660"],["-90.030160","30.000830"],["-90.030165","30.000965"],["-90.030170","30.001100"],["-90.030170","30.001120"],["-90.030160","30.001300"],["-90.030160","30.001340"],["-90.030140","30.001480"],["-90.030130","30.001590"],["-90.030120","30.001660"],["-90.030080","30.001840"],["-90.030080","30.001850"],["-90.030040","30.002010"],["-90.030030","30.002070"],["-90.029990","30.002190"],["-90.029980","30.002230"],["-90.029950","30.002300"],["-90.029930","30.002360"],["-90.029900","30.002420"],["-90.029880","30.002480"],["-90.029860","30.002530"],["-90.029820","30.002600"],["-90.029780","30.002700"],["-90.029750","30.002750"],["-90.029700","30.002860"],["-90.029610","30.003030"],["-90.029565","30.003125"],["-90.029520","30.003220"],["-90.029490","30.003270"],["-90.029430","30.003390"],["-90.029410","30.003430"],["-90.029340","30.003580"],["-90.029295","30.003670"],["-90.029250","30.003760"],["-90.029220","30.003820"],["-90.029200","30.003860"],["-90.029180","30.003900"],["-90.029135","30.003990"],["-90.029090","30.004080"],["-90.029090","30.004090"],["-90.029090","30.004100"],["-90.029080","30.004110"],["-90.029070","30.004130"],["-90.029060","30.004150"],["-90.029020","30.004230"],["-90.029020","30.004240"],["-90.029010","30.004260"],["-90.028970","30.004360"],["-90.028910","30.004540"],["-90.028890","30.004620"],["-90.028870","30.004720"],["-90.028860","30.004810"],["-90.028840","30.004990"],["-90.028840","30.005180"],["-90.028840","30.005260"],["-90.028850","30.005330"],["-90.028860","30.005440"],["-90.028860","30.005500"],["-90.028880","30.005610"],["-90.028890","30.005620"],["-90.028920","30.005750"],["-90.028940","30.005790"],["-90.028980","30.005910"],["-90.029010","30.005960"],["-90.029050","30.006050"],["-90.029090","30.006130"],["-90.029150","30.006265"],["-90.029210","30.006400"],["-90.029255","30.006495"],["-90.029300","30.006590"],["-90.029345","30.006685"],["-90.029390","30.006780"],["-90.029480","30.006955"],["-90.029570","30.007130"],["-90.029570","30.007150"],["-90.029610","30.007220"],["-90.029660","30.007370"],["-90.029710","30.007520"],["-90.029740","30.007620"],["-90.029780","30.007730"],["-90.029820","30.007830"],["-90.029970","30.007790"],["-90.030090","30.007755"],["-90.030210","30.007720"],["-90.030320","30.007690"],["-90.030525","30.007640"],["-90.030730","30.007590"],["-90.030930","30.007535"],["-90.031130","30.007480"],["-90.031180","30.007470"],["-90.031345","30.007415"],["-90.031510","30.007360"],["-90.031710","30.007310"],["-90.031750","30.007380"],["-90.031676","30.007409"],["-90.031750","30.007380"],["-90.031710","30.007310"],["-90.031835","30.007265"],["-90.031960","30.007220"],["-90.032120","30.007160"],["-90.032280","30.007100"],["-90.032350","30.007070"],["-90.032450","30.007025"],["-90.032550","30.006980"],["-90.032650","30.006935"],["-90.032750","30.006890"],["-90.032890","30.006830"],["-90.032910","30.006820"],["-90.032930","30.006800"],["-90.032950","30.006790"],["-90.033020","30.006700"],["-90.033180","30.006640"],["-90.033340","30.006580"],["-90.033440","30.006540"],["-90.033590","30.006490"],["-90.033790","30.006410"],["-90.033905","30.006394"],["-90.034019","30.006378"],["-90.034195","30.006283"],["-90.034362","30.006192"],["-90.034558","30.006133"],["-90.034754","30.006074"],["-90.034951","30.006015"],["-90.035102","30.005970"],["-90.035070","30.005910"],["-90.035238","30.005840"],["-90.035405","30.005770"],["-90.035573","30.005700"],["-90.035740","30.005630"],["-90.035883","30.005580"],["-90.036025","30.005530"],["-90.036168","30.005480"],["-90.036310","30.005430"],["-90.036334","30.005478"],["-90.036310","30.005430"],["-90.036380","30.005410"],["-90.036580","30.005330"],["-90.036770","30.005260"],["-90.036960","30.005185"],["-90.037150","30.005110"],["-90.037270","30.005063"],["-90.037390","30.005015"],["-90.037510","30.004968"],["-90.037659","30.004976"]]},{"type":"MultiPoint","coordinates":[["-90.057182","29.968750"],["-90.056869","29.965682"],["-90.056777","29.964722"],["-90.049171","29.973085"],["-90.049782","29.971119"],["-90.034871","29.998419"],["-90.034997","29.996860"],["-90.034745","29.993652"],["-90.034969","29.992047"],["-90.035599","29.989954"],["-90.036220","29.987869"],["-90.036903","29.985839"],["-90.051957","29.969098"],["-90.054342","29.968979"],["-90.056322","29.968817"],["-90.037659","30.004976"],["-90.039948","30.004092"],["-90.038827","30.004250"],["-90.036415","30.005189"],["-90.056608","29.962690"],["-90.034168","30.006019"],["-90.033834","30.005525"],["-90.037678","30.004652"],["-90.035583","29.983537"],["-90.036244","29.981281"],["-90.036875","29.979215"],["-90.037495","29.977139"],["-90.038105","29.975073"]]},{"type":"LineString","coordinates":[["-90.037659","30.004976"],["-90.037797","30.004875"],["-90.037936","30.004774"],["-90.038121","30.004702"],["-90.038306","30.004630"],["-90.038491","30.004558"],["-90.038676","30.004486"],["-90.038861","30.004414"],["-90.039046","30.004342"],["-90.039231","30.004270"],["-90.039416","30.004198"],["-90.039549","30.004172"],["-90.039682","30.004145"],["-90.039815","30.004119"],["-90.039948","30.004092"],["-90.039920","30.004030"],["-90.040010","30.004000"],["-90.040090","30.003950"],["-90.040020","30.003840"],["-90.039920","30.003870"],["-90.039780","30.003920"],["-90.039605","30.003990"],["-90.039430","30.004060"],["-90.039315","30.004105"],["-90.039200","30.004150"],["-90.039085","30.004195"],["-90.038970","30.004240"],["-90.038827","30.004250"],["-90.038850","30.004290"],["-90.038740","30.004335"],["-90.038630","30.004380"],["-90.038470","30.004430"],["-90.038330","30.004490"],["-90.038200","30.004542"],["-90.038069","30.004595"],["-90.037939","30.004647"],["-90.037809","30.004699"],["-90.037678","30.004652"],["-90.037576","30.004717"],["-90.037474","30.004781"],["-90.037372","30.004846"],["-90.037270","30.004910"],["-90.037160","30.004950"],["-90.037060","30.004980"],["-90.036930","30.005030"],["-90.036815","30.005075"],["-90.036700","30.005120"],["-90.036565","30.005170"],["-90.036430","30.005220"],["-90.036415","30.005189"],["-90.036430","30.005220"],["-90.036330","30.005260"],["-90.036180","30.005320"],["-90.035985","30.005385"],["-90.035790","30.005450"],["-90.035740","30.005470"],["-90.035670","30.005500"],["-90.035508","30.005565"],["-90.035345","30.005630"],["-90.035183","30.005695"],["-90.035020","30.005760"],["-90.034900","30.005805"],["-90.034780","30.005850"],["-90.034680","30.005895"],["-90.034580","30.005940"],["-90.034480","30.005985"],["-90.034380","30.006030"],["-90.034200","30.006090"],["-90.034168","30.006019"],["-90.034200","30.006090"],["-90.034100","30.006130"],["-90.034020","30.005970"],["-90.033960","30.005845"],["-90.033900","30.005720"],["-90.033870","30.005670"],["-90.033834","30.005525"],["-90.033777","30.005469"],["-90.033722","30.005335"],["-90.033667","30.005202"],["-90.033612","30.005095"],["-90.033496","30.005130"],["-90.033381","30.005165"],["-90.033266","30.005199"],["-90.033150","30.005234"],["-90.033035","30.005269"],["-90.032920","30.005304"],["-90.032804","30.005339"],["-90.032689","30.005374"],["-90.032574","30.005409"],["-90.032458","30.005443"],["-90.032343","30.005478"],["-90.032228","30.005513"],["-90.032112","30.005548"],["-90.031997","30.005583"],["-90.031882","30.005618"],["-90.031766","30.005652"],["-90.031607","30.005680"],["-90.031447","30.005708"],["-90.031287","30.005736"],["-90.031128","30.005764"],["-90.030968","30.005792"],["-90.030809","30.005820"],["-90.030649","30.005848"],["-90.030490","30.005875"],["-90.030330","30.005903"],["-90.030170","30.005931"],["-90.030011","30.005959"],["-90.029851","30.005987"],["-90.029692","30.006015"],["-90.029532","30.006043"],["-90.029372","30.006070"],["-90.029213","30.006098"],["-90.029148","30.005987"],["-90.029084","30.005875"],["-90.029020","30.005764"],["-90.028955","30.005652"],["-90.028945","30.005539"],["-90.028934","30.005425"],["-90.028923","30.005311"],["-90.028912","30.005197"],["-90.028902","30.005083"],["-90.028891","30.004970"],["-90.028880","30.004856"],["-90.028869","30.004742"],["-90.028947","30.004596"],["-90.029025","30.004449"],["-90.029103","30.004303"],["-90.029181","30.004157"],["-90.029258","30.004010"],["-90.029336","30.003864"],["-90.029414","30.003718"],["-90.029492","30.003571"],["-90.029570","30.003425"],["-90.029647","30.003279"],["-90.029725","30.003132"],["-90.029803","30.002986"],["-90.029881","30.002840"],["-90.029958","30.002693"],["-90.030036","30.002547"],["-90.030114","30.002401"],["-90.030135","30.002294"],["-90.030157","30.002187"],["-90.030178","30.002080"],["-90.030200","30.001973"],["-90.030221","30.001866"],["-90.030243","30.001759"],["-90.030264","30.001653"],["-90.030286","30.001546"],["-90.030286","30.001388"],["-90.030286","30.001230"],["-90.030286","30.001072"],["-90.030286","30.000914"],["-90.030286","30.000756"],["-90.030286","30.000598"],["-90.030286","30.000440"],["-90.030286","30.000282"],["-90.030275","30.000185"],["-90.030264","30.000087"],["-90.030253","29.999989"],["-90.030243","29.999892"],["-90.030232","29.999794"],["-90.030221","29.999697"],["-90.030211","29.999599"],["-90.030200","29.999502"],["-90.030189","29.999404"],["-90.030178","29.999306"],["-90.030168","29.999209"],["-90.030157","29.999111"],["-90.030146","29.999014"],["-90.030135","29.998916"],["-90.030125","29.998819"],["-90.030114","29.998721"],["-90.030263","29.998712"],["-90.030411","29.998702"],["-90.030560","29.998693"],["-90.030709","29.998683"],["-90.030857","29.998674"],["-90.031006","29.998664"],["-90.031155","29.998655"],["-90.031303","29.998646"],["-90.031452","29.998636"],["-90.031601","29.998627"],["-90.031749","29.998617"],["-90.031898","29.998608"],["-90.032047","29.998598"],["-90.032195","29.998589"],["-90.032344","29.998580"],["-90.032493","29.998570"],["-90.032641","29.998561"],["-90.032790","29.998551"],["-90.032938","29.998542"],["-90.033087","29.998532"],["-90.033236","29.998523"],["-90.033384","29.998513"],["-90.033533","29.998504"],["-90.033682","29.998495"],["-90.033830","29.998485"],["-90.033979","29.998476"],["-90.034128","29.998466"],["-90.034276","29.998457"],["-90.034425","29.998447"],["-90.034574","29.998438"],["-90.034722","29.998428"],["-90.034871","29.998419"],["-90.034870","29.998420"],["-90.034950","29.998410"],["-90.035130","29.998390"],["-90.035115","29.998253"],["-90.035100","29.998115"],["-90.035085","29.997978"],["-90.035070","29.997840"],["-90.035055","29.997655"],["-90.035040","29.997470"],["-90.035020","29.997295"],["-90.035000","29.997120"],["-90.035000","29.997050"],["-90.034980","29.996920"],["-90.034980","29.996860"],["-90.034997","29.996860"],["-90.034980","29.996860"],["-90.034960","29.996670"],["-90.034950","29.996580"],["-90.034940","29.996460"],["-90.034930","29.996340"],["-90.034920","29.996220"],["-90.034910","29.996100"],["-90.034900","29.996050"],["-90.034880","29.995865"],["-90.034860","29.995680"],["-90.034850","29.995490"],["-90.034830","29.995310"],["-90.034820","29.995160"],["-90.034810","29.995063"],["-90.034800","29.994965"],["-90.034790","29.994868"],["-90.034780","29.994770"],["-90.034760","29.994613"],["-90.034740","29.994455"],["-90.034720","29.994298"],["-90.034700","29.994140"],["-90.034685","29.994030"],["-90.034670","29.993920"],["-90.034680","29.993770"],["-90.034680","29.993660"],["-90.034745","29.993652"],["-90.034680","29.993660"],["-90.034670","29.993480"],["-90.034670","29.993340"],["-90.034680","29.993300"],["-90.034680","29.993230"],["-90.034680","29.993160"],["-90.034700","29.993060"],["-90.034745","29.992933"],["-90.034790","29.992805"],["-90.034835","29.992678"],["-90.034880","29.992550"],["-90.034920","29.992420"],["-90.034960","29.992290"],["-90.035000","29.992160"],["-90.035040","29.992030"],["-90.034969","29.992047"],["-90.034980","29.992020"],["-90.035040","29.992030"],["-90.035079","29.991901"],["-90.035118","29.991773"],["-90.035156","29.991644"],["-90.035195","29.991515"],["-90.035234","29.991386"],["-90.035273","29.991258"],["-90.035311","29.991129"],["-90.035350","29.991000"],["-90.035388","29.990870"],["-90.035425","29.990740"],["-90.035463","29.990610"],["-90.035500","29.990480"],["-90.035538","29.990348"],["-90.035575","29.990215"],["-90.035613","29.990083"],["-90.035650","29.989950"],["-90.035599","29.989954"],["-90.035630","29.989950"],["-90.035671","29.989821"],["-90.035713","29.989693"],["-90.035754","29.989564"],["-90.035795","29.989435"],["-90.035836","29.989306"],["-90.035878","29.989178"],["-90.035919","29.989049"],["-90.035960","29.988920"],["-90.035998","29.988789"],["-90.036035","29.988658"],["-90.036073","29.988526"],["-90.036110","29.988395"],["-90.036148","29.988264"],["-90.036175","29.988169"],["-90.036203","29.988073"],["-90.036230","29.987978"],["-90.036258","29.987882"],["-90.036220","29.987869"],["-90.036261","29.987743"],["-90.036302","29.987618"],["-90.036343","29.987492"],["-90.036384","29.987367"],["-90.036424","29.987241"],["-90.036465","29.987116"],["-90.036506","29.986990"],["-90.036547","29.986865"],["-90.036588","29.986739"],["-90.036629","29.986614"],["-90.036670","29.986488"],["-90.036711","29.986362"],["-90.036751","29.986237"],["-90.036792","29.986111"],["-90.036833","29.985986"],["-90.036874","29.985860"],["-90.036903","29.985839"],["-90.036885","29.985827"],["-90.036945","29.985650"],["-90.037004","29.985474"],["-90.037063","29.985298"],["-90.037122","29.985122"],["-90.037170","29.984957"],["-90.037219","29.984792"],["-90.037221","29.984680"],["-90.037224","29.984569"],["-90.037264","29.984437"],["-90.037305","29.984306"],["-90.037345","29.984175"],["-90.037385","29.984044"],["-90.037180","29.984001"],["-90.036976","29.983958"],["-90.036771","29.983915"],["-90.036566","29.983873"],["-90.036361","29.983830"],["-90.036157","29.983787"],["-90.035952","29.983744"],["-90.035747","29.983702"],["-90.035665","29.983619"],["-90.035583","29.983537"],["-90.035511","29.983476"],["-90.035568","29.983298"],["-90.035625","29.983120"],["-90.035669","29.982989"],["-90.035713","29.982857"],["-90.035758","29.982726"],["-90.035802","29.982595"],["-90.035846","29.982463"],["-90.035890","29.982332"],["-90.035934","29.982201"],["-90.035979","29.982069"],["-90.036023","29.981938"],["-90.036067","29.981806"],["-90.036111","29.981675"],["-90.036156","29.981544"],["-90.036200","29.981412"],["-90.036244","29.981281"],["-90.036257","29.981112"],["-90.036270","29.980943"],["-90.036310","29.980814"],["-90.036350","29.980685"],["-90.036390","29.980556"],["-90.036430","29.980428"],["-90.036470","29.980299"],["-90.036510","29.980170"],["-90.036545","29.980049"],["-90.036580","29.979928"],["-90.036615","29.979806"],["-90.036650","29.979685"],["-90.036685","29.979564"],["-90.036720","29.979443"],["-90.036755","29.979321"],["-90.036790","29.979200"],["-90.036875","29.979215"],["-90.036790","29.979200"],["-90.036800","29.979130"],["-90.036838","29.979018"],["-90.036875","29.978905"],["-90.036913","29.978793"],["-90.036950","29.978680"],["-90.036993","29.978530"],["-90.037035","29.978380"],["-90.037078","29.978230"],["-90.037120","29.978080"],["-90.037156","29.977960"],["-90.037193","29.977840"],["-90.037229","29.977720"],["-90.037265","29.977600"],["-90.037301","29.977480"],["-90.037338","29.977360"],["-90.037374","29.977240"],["-90.037410","29.977120"],["-90.037495","29.977139"],["-90.037410","29.977120"],["-90.037430","29.977060"],["-90.037469","29.976929"],["-90.037508","29.976798"],["-90.037546","29.976666"],["-90.037585","29.976535"],["-90.037624","29.976404"],["-90.037663","29.976273"],["-90.037701","29.976141"],["-90.037740","29.976010"],["-90.037775","29.975895"],["-90.037810","29.975780"],["-90.037845","29.975665"],["-90.037880","29.975550"],["-90.037918","29.975428"],["-90.037955","29.975305"],["-90.037993","29.975183"],["-90.038030","29.975060"],["-90.038105","29.975073"],["-90.038030","29.975060"],["-90.038060","29.974980"],["-90.038100","29.974838"],["-90.038140","29.974695"],["-90.038180","29.974553"],["-90.038220","29.974410"],["-90.038255","29.974293"],["-90.038290","29.974175"],["-90.038325","29.974058"],["-90.038360","29.973940"],["-90.038399","29.973810"],["-90.038438","29.973680"],["-90.038476","29.973550"],["-90.038515","29.973420"],["-90.038554","29.973290"],["-90.038593","29.973160"],["-90.038631","29.973030"],["-90.038670","29.972900"],["-90.038708","29.972770"],["-90.038745","29.972640"],["-90.038783","29.972510"],["-90.038820","29.972380"],["-90.038858","29.972250"],["-90.038895","29.972120"],["-90.038933","29.971990"],["-90.038970","29.971860"],["-90.039106","29.971891"],["-90.039242","29.971923"],["-90.039379","29.971954"],["-90.039515","29.971985"],["-90.039651","29.972016"],["-90.039787","29.972048"],["-90.039924","29.972079"],["-90.040060","29.972110"],["-90.040169","29.972134"],["-90.040277","29.972158"],["-90.040386","29.972181"],["-90.040495","29.972205"],["-90.040604","29.972229"],["-90.040712","29.972253"],["-90.040821","29.972276"],["-90.040930","29.972300"],["-90.041109","29.972341"],["-90.041287","29.972383"],["-90.041466","29.972424"],["-90.041645","29.972465"],["-90.041824","29.972506"],["-90.042002","29.972548"],["-90.042181","29.972589"],["-90.042360","29.972630"],["-90.042520","29.972665"],["-90.042680","29.972700"],["-90.042810","29.972730"],["-90.042940","29.972760"],["-90.042960","29.972770"],["-90.043140","29.972810"],["-90.043160","29.972810"],["-90.043340","29.972850"],["-90.043467","29.972880"],["-90.043595","29.972910"],["-90.043722","29.972940"],["-90.043850","29.972970"],["-90.043970","29.972990"],["-90.044145","29.973030"],["-90.044320","29.973070"],["-90.044430","29.973100"],["-90.044450","29.973100"],["-90.044590","29.973130"],["-90.044700","29.973160"],["-90.044820","29.973190"],["-90.044940","29.973215"],["-90.045060","29.973240"],["-90.045180","29.973270"],["-90.045320","29.973300"],["-90.045390","29.973320"],["-90.045470","29.973330"],["-90.045600","29.973360"],["-90.045750","29.973400"],["-90.045870","29.973425"],["-90.045990","29.973450"],["-90.046170","29.973490"],["-90.046350","29.973530"],["-90.046550","29.973580"],["-90.046700","29.973610"],["-90.046834","29.973641"],["-90.046968","29.973673"],["-90.047102","29.973704"],["-90.047236","29.973736"],["-90.047370","29.973767"],["-90.047504","29.973798"],["-90.047638","29.973830"],["-90.047772","29.973861"],["-90.047906","29.973893"],["-90.048040","29.973924"],["-90.048174","29.973955"],["-90.048308","29.973987"],["-90.048442","29.974018"],["-90.048576","29.974050"],["-90.048710","29.974081"],["-90.048844","29.974113"],["-90.048882","29.973926"],["-90.048920","29.973740"],["-90.048960","29.973620"],["-90.049010","29.973480"],["-90.049040","29.973380"],["-90.049070","29.973280"],["-90.049100","29.973180"],["-90.049130","29.973080"],["-90.049171","29.973085"],["-90.049140","29.973080"],["-90.049160","29.972980"],["-90.049220","29.972810"],["-90.049253","29.972700"],["-90.049285","29.972590"],["-90.049318","29.972480"],["-90.049366","29.972320"],["-90.049414","29.972159"],["-90.049462","29.971999"],["-90.049509","29.971838"],["-90.049557","29.971678"],["-90.049605","29.971518"],["-90.049655","29.971361"],["-90.049705","29.971204"],["-90.049782","29.971119"],["-90.049751","29.971052"],["-90.049800","29.970896"],["-90.049850","29.970740"],["-90.049890","29.970610"],["-90.049930","29.970480"],["-90.049980","29.970325"],["-90.050030","29.970170"],["-90.050060","29.970065"],["-90.050090","29.969960"],["-90.050125","29.969845"],["-90.050160","29.969730"],["-90.050180","29.969670"],["-90.050230","29.969490"],["-90.050250","29.969390"],["-90.050250","29.969360"],["-90.050260","29.969310"],["-90.050260","29.969300"],["-90.050260","29.969270"],["-90.050270","29.969230"],["-90.050280","29.969130"],["-90.050445","29.969120"],["-90.050610","29.969110"],["-90.050750","29.969100"],["-90.050890","29.969095"],["-90.051030","29.969090"],["-90.051180","29.969080"],["-90.051330","29.969070"],["-90.051485","29.969060"],["-90.051640","29.969050"],["-90.051800","29.969040"],["-90.051957","29.969098"],["-90.051950","29.969010"],["-90.052050","29.969010"],["-90.052270","29.968990"],["-90.052435","29.968980"],["-90.052600","29.968970"],["-90.052789","29.968964"],["-90.052978","29.968959"],["-90.053166","29.968953"],["-90.053355","29.968948"],["-90.053544","29.968942"],["-90.053733","29.968936"],["-90.053922","29.968931"],["-90.054110","29.968925"],["-90.054226","29.968952"],["-90.054342","29.968979"],["-90.054537","29.968910"],["-90.054733","29.968842"],["-90.054944","29.968851"],["-90.055156","29.968860"],["-90.055368","29.968869"],["-90.055580","29.968878"],["-90.055704","29.968848"],["-90.055828","29.968818"],["-90.055952","29.968788"],["-90.056076","29.968758"],["-90.056199","29.968788"],["-90.056322","29.968817"],["-90.056412","29.968742"],["-90.056524","29.968783"],["-90.056637","29.968823"],["-90.056709","29.968963"],["-90.056763","29.969093"],["-90.056751","29.969249"],["-90.056739","29.969404"],["-90.056853","29.969395"],["-90.056967","29.969386"],["-90.057017","29.969348"],["-90.057003","29.969185"],["-90.056988","29.969021"],["-90.056987","29.968920"],["-90.056985","29.968819"],["-90.057182","29.968750"],["-90.057015","29.968754"],["-90.057001","29.968579"],["-90.056987","29.968405"],["-90.056974","29.968230"],["-90.056960","29.968056"],["-90.056946","29.967881"],["-90.056932","29.967707"],["-90.056919","29.967532"],["-90.056905","29.967358"],["-90.056891","29.967183"],["-90.056877","29.967009"],["-90.056864","29.966834"],["-90.056850","29.966659"],["-90.056836","29.966485"],["-90.056822","29.966310"],["-90.056809","29.966136"],["-90.056795","29.965961"],["-90.056791","29.965845"],["-90.056786","29.965730"],["-90.056869","29.965682"],["-90.056759","29.965567"],["-90.056746","29.965378"],["-90.056733","29.965190"],["-90.056719","29.965001"],["-90.056706","29.964812"],["-90.056777","29.964722"],["-90.056717","29.964731"],["-90.056707","29.964621"],["-90.056698","29.964512"],["-90.056689","29.964403"],["-90.056680","29.964293"],["-90.056670","29.964184"],["-90.056661","29.964075"],["-90.056652","29.963965"],["-90.056643","29.963856"],["-90.056634","29.963746"],["-90.056624","29.963637"],["-90.056615","29.963528"],["-90.056606","29.963418"],["-90.056597","29.963309"],["-90.056587","29.963200"],["-90.056578","29.963090"],["-90.056569","29.962981"],["-90.056588","29.962835"],["-90.056608","29.962690"],["-90.056608","29.962690"]]}]}},{"type":"Feature","properties":{"route_id":"84","agency_id":"1","route_short_name":"84","route_long_name":"Galvez-L9","route_type":"3","route_color":"#b890c2","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.029769","29.973020"],["-90.046905","29.979251"],["-90.048273","29.980310"],["-90.050674","29.980167"],["-90.052805","29.980042"],["-90.055189","29.979888"],["-90.057425","29.979756"],["-90.058814","29.979671"],["-90.062366","29.979467"],["-90.064669","29.979325"],["-90.067000","29.979193"],["-90.068826","29.978795"],["-90.070987","29.976396"],["-90.072407","29.974782"],["-90.073893","29.973172"],["-90.074439","29.972514"],["-90.075768","29.971033"],["-90.077300","29.969316"],["-90.077946","29.967183"],["-90.079388","29.965607"],["-90.080813","29.963970"],["-90.082208","29.962400"],["-90.007646","29.958819"],["-90.009942","29.959621"],["-90.029716","29.970063"],["-90.083152","29.958253"],["-90.082003","29.957735"],["-90.080265","29.956915"],["-90.077351","29.955562"],["-90.019579","29.967520"],["-90.084567","29.959814"],["-90.015062","29.966494"],["-90.017814","29.967113"],["-90.021386","29.967891"],["-90.083208","29.961281"],["-90.031294","29.975725"],["-90.033237","29.976167"],["-90.035677","29.976724"],["-90.037360","29.977113"],["-90.039302","29.977546"],["-90.041047","29.977943"],["-90.009824","29.962668"],["-90.008901","29.964456"],["-90.014075","29.966237"],["-90.075280","29.954073"]]},{"type":"LineString","coordinates":[["-90.007646","29.958819"],["-90.007846","29.958866"],["-90.008047","29.958913"],["-90.008160","29.958939"],["-90.008352","29.959007"],["-90.008544","29.959076"],["-90.008736","29.959144"],["-90.008809","29.959170"],["-90.009000","29.959241"],["-90.009079","29.959270"],["-90.009267","29.959346"],["-90.009455","29.959423"],["-90.009643","29.959499"],["-90.009831","29.959576"],["-90.009942","29.959621"],["-90.010140","29.959674"],["-90.010338","29.959728"],["-90.010413","29.959748"],["-90.010605","29.959817"],["-90.010796","29.959886"],["-90.010988","29.959955"],["-90.011139","29.960009"],["-90.011062","29.960176"],["-90.010985","29.960343"],["-90.010909","29.960510"],["-90.010832","29.960677"],["-90.010799","29.960749"],["-90.010719","29.960915"],["-90.010640","29.961081"],["-90.010560","29.961247"],["-90.010481","29.961414"],["-90.010401","29.961580"],["-90.010322","29.961746"],["-90.010234","29.961909"],["-90.010146","29.962072"],["-90.010058","29.962235"],["-90.009970","29.962398"],["-90.009882","29.962560"],["-90.009824","29.962668"],["-90.009764","29.962840"],["-90.009705","29.963013"],["-90.009688","29.963061"],["-90.009607","29.963227"],["-90.009526","29.963392"],["-90.009445","29.963558"],["-90.009370","29.963710"],["-90.009271","29.963868"],["-90.009171","29.964026"],["-90.009072","29.964184"],["-90.008973","29.964342"],["-90.008901","29.964456"],["-90.008987","29.964620"],["-90.009050","29.964740"],["-90.009241","29.964810"],["-90.009432","29.964880"],["-90.009624","29.964950"],["-90.009815","29.965020"],["-90.009950","29.965070"],["-90.010141","29.965140"],["-90.010333","29.965210"],["-90.010524","29.965280"],["-90.010715","29.965350"],["-90.010907","29.965419"],["-90.010990","29.965450"],["-90.011185","29.965512"],["-90.011380","29.965574"],["-90.011580","29.965621"],["-90.011780","29.965669"],["-90.011981","29.965716"],["-90.012181","29.965764"],["-90.012290","29.965790"],["-90.012491","29.965835"],["-90.012692","29.965880"],["-90.012869","29.965920"],["-90.013070","29.965965"],["-90.013268","29.966019"],["-90.013466","29.966072"],["-90.013665","29.966126"],["-90.013863","29.966180"],["-90.014061","29.966233"],["-90.014075","29.966237"],["-90.014277","29.966280"],["-90.014478","29.966323"],["-90.014551","29.966338"],["-90.014747","29.966398"],["-90.014943","29.966458"],["-90.015062","29.966494"],["-90.015270","29.966488"],["-90.015381","29.966485"],["-90.015582","29.966531"],["-90.015783","29.966576"],["-90.015983","29.966622"],["-90.016184","29.966668"],["-90.016385","29.966715"],["-90.016585","29.966761"],["-90.016786","29.966807"],["-90.016840","29.966820"],["-90.017036","29.966879"],["-90.017232","29.966938"],["-90.017428","29.966997"],["-90.017625","29.967056"],["-90.017814","29.967113"],["-90.018022","29.967114"],["-90.018131","29.967114"],["-90.018332","29.967158"],["-90.018534","29.967202"],["-90.018735","29.967246"],["-90.018800","29.967260"],["-90.018994","29.967325"],["-90.019187","29.967389"],["-90.019381","29.967454"],["-90.019579","29.967520"],["-90.019786","29.967533"],["-90.019993","29.967547"],["-90.020071","29.967552"],["-90.020272","29.967598"],["-90.020472","29.967644"],["-90.020580","29.967669"],["-90.020778","29.967723"],["-90.020976","29.967778"],["-90.021174","29.967832"],["-90.021371","29.967887"],["-90.021386","29.967891"],["-90.021591","29.967920"],["-90.021796","29.967948"],["-90.021882","29.967960"],["-90.022083","29.968005"],["-90.022284","29.968051"],["-90.022484","29.968097"],["-90.022685","29.968144"],["-90.022839","29.968180"],["-90.022970","29.968219"],["-90.023164","29.968284"],["-90.023357","29.968349"],["-90.023450","29.968380"],["-90.023642","29.968449"],["-90.023834","29.968517"],["-90.024026","29.968586"],["-90.024218","29.968654"],["-90.024410","29.968723"],["-90.024602","29.968791"],["-90.024710","29.968830"],["-90.024908","29.968885"],["-90.025105","29.968940"],["-90.025305","29.968990"],["-90.025505","29.969039"],["-90.025704","29.969088"],["-90.025904","29.969137"],["-90.026104","29.969187"],["-90.026303","29.969236"],["-90.026506","29.969276"],["-90.026570","29.969289"],["-90.026775","29.969316"],["-90.026983","29.969311"],["-90.027050","29.969309"],["-90.027255","29.969280"],["-90.027460","29.969250"],["-90.027665","29.969221"],["-90.027850","29.969200"],["-90.028040","29.969220"],["-90.028245","29.969250"],["-90.028310","29.969260"],["-90.028512","29.969301"],["-90.028700","29.969340"],["-90.028898","29.969395"],["-90.029096","29.969449"],["-90.029288","29.969516"],["-90.029440","29.969569"],["-90.029625","29.969651"],["-90.029760","29.969710"],["-90.029910","29.969790"],["-90.029801","29.969943"],["-90.029716","29.970063"],["-90.029729","29.970243"],["-90.029741","29.970422"],["-90.029745","29.970473"],["-90.029691","29.970647"],["-90.029636","29.970820"],["-90.029585","29.970994"],["-90.029534","29.971169"],["-90.029490","29.971320"],["-90.029471","29.971499"],["-90.029469","29.971679"],["-90.029490","29.971810"],["-90.029556","29.971981"],["-90.029609","29.972120"],["-90.029689","29.972286"],["-90.029739","29.972390"],["-90.029792","29.972564"],["-90.029831","29.972741"],["-90.029792","29.972917"],["-90.029769","29.973020"],["-90.029774","29.973200"],["-90.029779","29.973380"],["-90.029780","29.973430"],["-90.029730","29.973590"],["-90.029674","29.973763"],["-90.029619","29.973937"],["-90.029563","29.974110"],["-90.029550","29.974150"],["-90.029500","29.974325"],["-90.029450","29.974499"],["-90.029400","29.974674"],["-90.029350","29.974848"],["-90.029300","29.975023"],["-90.029250","29.975197"],["-90.029440","29.975239"],["-90.029641","29.975284"],["-90.029842","29.975329"],["-90.030043","29.975374"],["-90.030244","29.975419"],["-90.030445","29.975464"],["-90.030641","29.975524"],["-90.030837","29.975584"],["-90.031032","29.975645"],["-90.031228","29.975705"],["-90.031294","29.975725"],["-90.031501","29.975737"],["-90.031708","29.975749"],["-90.031761","29.975752"],["-90.031962","29.975798"],["-90.032163","29.975844"],["-90.032320","29.975880"],["-90.032515","29.975941"],["-90.032711","29.976002"],["-90.032906","29.976063"],["-90.033101","29.976124"],["-90.033237","29.976167"],["-90.033444","29.976178"],["-90.033652","29.976188"],["-90.033702","29.976191"],["-90.033903","29.976237"],["-90.034103","29.976283"],["-90.034180","29.976300"],["-90.034381","29.976346"],["-90.034581","29.976393"],["-90.034782","29.976439"],["-90.034982","29.976486"],["-90.035175","29.976552"],["-90.035368","29.976618"],["-90.035562","29.976684"],["-90.035677","29.976724"],["-90.035884","29.976738"],["-90.036091","29.976752"],["-90.036150","29.976756"],["-90.036350","29.976804"],["-90.036539","29.976849"],["-90.036734","29.976912"],["-90.036928","29.976974"],["-90.037123","29.977037"],["-90.037318","29.977099"],["-90.037360","29.977113"],["-90.037567","29.977124"],["-90.037775","29.977134"],["-90.037833","29.977137"],["-90.038034","29.977181"],["-90.038236","29.977225"],["-90.038437","29.977269"],["-90.038490","29.977280"],["-90.038684","29.977344"],["-90.038878","29.977407"],["-90.039073","29.977471"],["-90.039267","29.977534"],["-90.039302","29.977546"],["-90.039509","29.977557"],["-90.039716","29.977568"],["-90.039770","29.977571"],["-90.039970","29.977618"],["-90.040171","29.977664"],["-90.040372","29.977710"],["-90.040573","29.977756"],["-90.040773","29.977803"],["-90.040952","29.977894"],["-90.041047","29.977943"],["-90.041249","29.977985"],["-90.041451","29.978026"],["-90.041653","29.978068"],["-90.041855","29.978110"],["-90.042057","29.978152"],["-90.042259","29.978193"],["-90.042461","29.978235"],["-90.042663","29.978277"],["-90.042865","29.978318"],["-90.042969","29.978340"],["-90.043059","29.978360"],["-90.043210","29.978399"],["-90.043390","29.978450"],["-90.043560","29.978489"],["-90.043689","29.978520"],["-90.043869","29.978559"],["-90.044039","29.978589"],["-90.044239","29.978637"],["-90.044360","29.978610"],["-90.044561","29.978656"],["-90.044761","29.978702"],["-90.044962","29.978748"],["-90.045100","29.978780"],["-90.045301","29.978824"],["-90.045503","29.978868"],["-90.045704","29.978912"],["-90.045905","29.978956"],["-90.046059","29.978990"],["-90.046255","29.979050"],["-90.046450","29.979111"],["-90.046646","29.979171"],["-90.046841","29.979231"],["-90.046905","29.979251"],["-90.046903","29.979431"],["-90.046902","29.979556"],["-90.046860","29.979700"],["-90.046808","29.979874"],["-90.046755","29.980048"],["-90.046703","29.980222"],["-90.046689","29.980269"],["-90.046889","29.980317"],["-90.047097","29.980314"],["-90.047304","29.980311"],["-90.047390","29.980310"],["-90.047598","29.980310"],["-90.047805","29.980310"],["-90.048013","29.980310"],["-90.048221","29.980310"],["-90.048273","29.980310"],["-90.048475","29.980268"],["-90.048606","29.980240"],["-90.048813","29.980226"],["-90.049020","29.980212"],["-90.049227","29.980198"],["-90.049434","29.980185"],["-90.049641","29.980171"],["-90.049849","29.980170"],["-90.050056","29.980169"],["-90.050264","29.980169"],["-90.050472","29.980168"],["-90.050674","29.980167"],["-90.050871","29.980110"],["-90.050977","29.980079"],["-90.051184","29.980068"],["-90.051392","29.980057"],["-90.051599","29.980046"],["-90.051806","29.980035"],["-90.051900","29.980030"],["-90.052108","29.980033"],["-90.052315","29.980036"],["-90.052523","29.980038"],["-90.052730","29.980041"],["-90.052805","29.980042"],["-90.053001","29.979983"],["-90.053107","29.979951"],["-90.053314","29.979941"],["-90.053522","29.979931"],["-90.053729","29.979921"],["-90.053936","29.979911"],["-90.054144","29.979900"],["-90.054351","29.979898"],["-90.054559","29.979895"],["-90.054766","29.979893"],["-90.054974","29.979890"],["-90.055189","29.979888"],["-90.055391","29.979846"],["-90.055593","29.979804"],["-90.055684","29.979785"],["-90.055891","29.979772"],["-90.056098","29.979759"],["-90.056305","29.979746"],["-90.056410","29.979740"],["-90.056618","29.979743"],["-90.056825","29.979747"],["-90.057033","29.979750"],["-90.057240","29.979753"],["-90.057425","29.979756"],["-90.057621","29.979697"],["-90.057737","29.979663"],["-90.057945","29.979661"],["-90.058152","29.979651"],["-90.058359","29.979641"],["-90.058566","29.979655"],["-90.058773","29.979668"],["-90.058814","29.979671"],["-90.059017","29.979635"],["-90.059221","29.979599"],["-90.059427","29.979580"],["-90.059635","29.979569"],["-90.059842","29.979557"],["-90.060049","29.979546"],["-90.060160","29.979540"],["-90.060367","29.979529"],["-90.060575","29.979519"],["-90.060782","29.979508"],["-90.060989","29.979497"],["-90.061196","29.979486"],["-90.061320","29.979480"],["-90.061528","29.979477"],["-90.061735","29.979475"],["-90.061943","29.979472"],["-90.062151","29.979470"],["-90.062366","29.979467"],["-90.062568","29.979426"],["-90.062770","29.979385"],["-90.062854","29.979368"],["-90.063061","29.979352"],["-90.063268","29.979336"],["-90.063474","29.979320"],["-90.063610","29.979310"],["-90.063818","29.979313"],["-90.064025","29.979316"],["-90.064233","29.979319"],["-90.064440","29.979322"],["-90.064648","29.979325"],["-90.064669","29.979325"],["-90.064866","29.979268"],["-90.064967","29.979238"],["-90.065174","29.979225"],["-90.065381","29.979213"],["-90.065588","29.979200"],["-90.065796","29.979188"],["-90.065930","29.979180"],["-90.066138","29.979183"],["-90.066345","29.979185"],["-90.066553","29.979188"],["-90.066761","29.979190"],["-90.066968","29.979193"],["-90.067000","29.979193"],["-90.067197","29.979135"],["-90.067317","29.979100"],["-90.067524","29.979086"],["-90.067731","29.979073"],["-90.067938","29.979059"],["-90.068145","29.979045"],["-90.068352","29.979032"],["-90.068530","29.979020"],["-90.068686","29.978901"],["-90.068826","29.978795"],["-90.068932","29.978641"],["-90.069039","29.978486"],["-90.069161","29.978341"],["-90.069285","29.978197"],["-90.069410","29.978053"],["-90.069534","29.977909"],["-90.069663","29.977768"],["-90.069793","29.977627"],["-90.069922","29.977487"],["-90.070053","29.977346"],["-90.070182","29.977206"],["-90.070280","29.977100"],["-90.070416","29.976964"],["-90.070553","29.976829"],["-90.070689","29.976693"],["-90.070825","29.976557"],["-90.070961","29.976421"],["-90.070987","29.976396"],["-90.071078","29.976234"],["-90.071127","29.976147"],["-90.071254","29.976004"],["-90.071380","29.975862"],["-90.071507","29.975719"],["-90.071633","29.975577"],["-90.071710","29.975490"],["-90.071845","29.975353"],["-90.071979","29.975216"],["-90.072114","29.975079"],["-90.072249","29.974943"],["-90.072384","29.974806"],["-90.072407","29.974782"],["-90.072516","29.974629"],["-90.072626","29.974476"],["-90.072679","29.974402"],["-90.072804","29.974259"],["-90.072929","29.974115"],["-90.073054","29.973971"],["-90.073150","29.973860"],["-90.073274","29.973716"],["-90.073398","29.973572"],["-90.073523","29.973428"],["-90.073685","29.973316"],["-90.073848","29.973203"],["-90.073893","29.973172"],["-90.073984","29.973010"],["-90.074048","29.972896"],["-90.074186","29.972761"],["-90.074323","29.972627"],["-90.074439","29.972514"],["-90.074550","29.972362"],["-90.074662","29.972210"],["-90.074711","29.972143"],["-90.074836","29.972000"],["-90.074962","29.971857"],["-90.075087","29.971713"],["-90.075160","29.971630"],["-90.075297","29.971495"],["-90.075435","29.971360"],["-90.075572","29.971225"],["-90.075709","29.971090"],["-90.075768","29.971033"],["-90.075867","29.970875"],["-90.075947","29.970747"],["-90.076074","29.970604"],["-90.076200","29.970462"],["-90.076327","29.970320"],["-90.076453","29.970177"],["-90.076540","29.970080"],["-90.076676","29.969944"],["-90.076811","29.969807"],["-90.076947","29.969671"],["-90.077082","29.969535"],["-90.077218","29.969399"],["-90.077300","29.969316"],["-90.077395","29.969156"],["-90.077455","29.969056"],["-90.077579","29.968912"],["-90.077704","29.968768"],["-90.077828","29.968624"],["-90.077953","29.968481"],["-90.078040","29.968380"],["-90.078174","29.968243"],["-90.078308","29.968106"],["-90.078443","29.967968"],["-90.078490","29.967920"],["-90.078550","29.967840"],["-90.078386","29.967729"],["-90.078223","29.967618"],["-90.078059","29.967508"],["-90.077999","29.967336"],["-90.077946","29.967183"],["-90.078066","29.967036"],["-90.078185","29.966889"],["-90.078305","29.966742"],["-90.078424","29.966595"],["-90.078544","29.966448"],["-90.078663","29.966301"],["-90.078783","29.966154"],["-90.078810","29.966120"],["-90.078955","29.965991"],["-90.079100","29.965863"],["-90.079245","29.965734"],["-90.079388","29.965607"],["-90.079486","29.965448"],["-90.079584","29.965290"],["-90.079616","29.965237"],["-90.079743","29.965095"],["-90.079869","29.964952"],["-90.079996","29.964809"],["-90.080110","29.964680"],["-90.080245","29.964543"],["-90.080380","29.964407"],["-90.080516","29.964270"],["-90.080651","29.964134"],["-90.080786","29.963997"],["-90.080813","29.963970"],["-90.080905","29.963809"],["-90.080968","29.963699"],["-90.081096","29.963557"],["-90.081225","29.963416"],["-90.081353","29.963275"],["-90.081481","29.963133"],["-90.081520","29.963090"],["-90.081656","29.962954"],["-90.081791","29.962818"],["-90.081927","29.962682"],["-90.082063","29.962546"],["-90.082199","29.962409"],["-90.082208","29.962400"],["-90.082307","29.962242"],["-90.082400","29.962093"],["-90.082536","29.961957"],["-90.082671","29.961821"],["-90.082807","29.961684"],["-90.082942","29.961548"],["-90.083078","29.961412"],["-90.083208","29.961281"],["-90.083305","29.961122"],["-90.083402","29.960963"],["-90.083527","29.960819"],["-90.083657","29.960679"],["-90.083788","29.960540"],["-90.083900","29.960420"],["-90.084025","29.960276"],["-90.084150","29.960133"],["-90.084274","29.959989"],["-90.084445","29.959887"],["-90.084567","29.959814"],["-90.084645","29.959647"],["-90.084700","29.959530"],["-90.084828","29.959388"],["-90.084955","29.959246"],["-90.084781","29.959148"],["-90.084599","29.959062"],["-90.084416","29.958977"],["-90.084233","29.958891"],["-90.084051","29.958805"],["-90.083869","29.958719"],["-90.083683","29.958638"],["-90.083498","29.958557"],["-90.083352","29.958429"],["-90.083206","29.958301"],["-90.083152","29.958253"],["-90.082947","29.958225"],["-90.082742","29.958198"],["-90.082680","29.958180"],["-90.082515","29.958071"],["-90.082349","29.957963"],["-90.082184","29.957854"],["-90.082018","29.957745"],["-90.082003","29.957735"],["-90.081795","29.957731"],["-90.081675","29.957728"],["-90.081491","29.957645"],["-90.081306","29.957563"],["-90.081121","29.957481"],["-90.081030","29.957440"],["-90.080870","29.957370"],["-90.080713","29.957252"],["-90.080556","29.957134"],["-90.080400","29.957016"],["-90.080265","29.956915"],["-90.080063","29.956958"],["-90.079960","29.956980"],["-90.079840","29.956920"],["-90.079720","29.956860"],["-90.079640","29.956830"],["-90.079459","29.956741"],["-90.079279","29.956652"],["-90.079098","29.956564"],["-90.079050","29.956540"],["-90.078870","29.956450"],["-90.078710","29.956370"],["-90.078524","29.956290"],["-90.078338","29.956210"],["-90.078270","29.956180"],["-90.078086","29.956096"],["-90.077903","29.956012"],["-90.077810","29.955970"],["-90.077730","29.955850"],["-90.077570","29.955780"],["-90.077434","29.955644"],["-90.077351","29.955562"],["-90.077146","29.955533"],["-90.076941","29.955504"],["-90.076751","29.955431"],["-90.076565","29.955352"],["-90.076400","29.955280"],["-90.076217","29.955195"],["-90.076035","29.955109"],["-90.075950","29.955070"],["-90.075768","29.954984"],["-90.075630","29.954920"],["-90.075460","29.954840"],["-90.075280","29.954750"],["-90.075200","29.954710"],["-90.075016","29.954626"],["-90.074960","29.954600"],["-90.075061","29.954443"],["-90.075140","29.954320"],["-90.075232","29.954159"],["-90.075280","29.954073"]]},{"type":"MultiPoint","coordinates":[["-90.081219","29.953130"],["-90.085531","29.955107"],["-90.086720","29.956859"],["-90.084827","29.958948"],["-90.083765","29.960185"],["-90.082236","29.961826"],["-90.080695","29.963575"],["-90.079318","29.965139"],["-90.077645","29.967076"],["-90.076451","29.968520"],["-90.075004","29.970121"],["-90.072967","29.972388"],["-90.071561","29.973995"],["-90.070137","29.975586"],["-90.068511","29.977356"],["-90.065939","29.978131"],["-90.063603","29.978276"],["-90.061309","29.978401"],["-90.059037","29.978541"],["-90.057893","29.978614"],["-90.055291","29.978771"],["-90.053168","29.978918"],["-90.050805","29.979035"],["-90.048688","29.979117"],["-90.046167","29.978988"],["-90.041250","29.977788"],["-90.039473","29.977466"],["-90.037534","29.977027"],["-90.035854","29.976643"],["-90.033405","29.976089"],["-90.031476","29.975652"],["-90.004684","29.957696"],["-90.007646","29.958819"],["-90.010211","29.959467"],["-90.008320","29.958781"],["-90.004839","29.957524"],["-90.079555","29.952378"],["-90.075911","29.951058"],["-90.077310","29.951484"],["-90.019898","29.967086"],["-90.029819","29.977011"],["-90.015423","29.966114"],["-90.018133","29.966715"],["-90.047340","29.979186"],["-90.010033","29.962883"],["-90.014364","29.965875"],["-90.009140","29.964608"],["-90.002658","29.957011"],["-90.029993","29.973108"],["-90.029731","29.970892"],["-90.075280","29.954073"],["-90.075862","29.952360"]]},{"type":"LineString","coordinates":[["-90.075280","29.954073"],["-90.075309","29.953895"],["-90.075338","29.953717"],["-90.075350","29.953640"],["-90.075380","29.953510"],["-90.075390","29.953469"],["-90.075448","29.953296"],["-90.075505","29.953123"],["-90.075550","29.952990"],["-90.075580","29.952880"],["-90.075668","29.952717"],["-90.075757","29.952554"],["-90.075845","29.952392"],["-90.075862","29.952360"],["-90.075834","29.952182"],["-90.075819","29.952082"],["-90.075830","29.952010"],["-90.075839","29.951830"],["-90.075835","29.951650"],["-90.075831","29.951471"],["-90.075830","29.951420"],["-90.075870","29.951243"],["-90.075909","29.951067"],["-90.075911","29.951058"],["-90.076119","29.951053"],["-90.076243","29.951050"],["-90.076434","29.951120"],["-90.076490","29.951140"],["-90.076684","29.951205"],["-90.076820","29.951250"],["-90.077014","29.951315"],["-90.077187","29.951414"],["-90.077310","29.951484"],["-90.077514","29.951519"],["-90.077717","29.951555"],["-90.077880","29.951610"],["-90.078073","29.951677"],["-90.078265","29.951744"],["-90.078340","29.951770"],["-90.078528","29.951846"],["-90.078716","29.951922"],["-90.078905","29.951998"],["-90.079010","29.952040"],["-90.079179","29.952145"],["-90.079348","29.952249"],["-90.079516","29.952354"],["-90.079555","29.952378"],["-90.079760","29.952407"],["-90.079877","29.952423"],["-90.080054","29.952517"],["-90.080232","29.952610"],["-90.080409","29.952703"],["-90.080587","29.952797"],["-90.080764","29.952891"],["-90.080941","29.952984"],["-90.081119","29.953077"],["-90.081219","29.953130"],["-90.081425","29.953150"],["-90.081586","29.953166"],["-90.081762","29.953261"],["-90.081870","29.953320"],["-90.081930","29.953350"],["-90.082108","29.953443"],["-90.082286","29.953536"],["-90.082390","29.953590"],["-90.082470","29.953630"],["-90.082560","29.953680"],["-90.082730","29.953770"],["-90.082800","29.953800"],["-90.082850","29.953820"],["-90.083030","29.953900"],["-90.083212","29.953987"],["-90.083394","29.954074"],["-90.083576","29.954160"],["-90.083757","29.954247"],["-90.083910","29.954320"],["-90.084095","29.954401"],["-90.084160","29.954430"],["-90.084343","29.954515"],["-90.084526","29.954600"],["-90.084709","29.954685"],["-90.084887","29.954777"],["-90.085066","29.954868"],["-90.085245","29.954960"],["-90.085423","29.955052"],["-90.085531","29.955107"],["-90.085729","29.955162"],["-90.085843","29.955194"],["-90.086026","29.955279"],["-90.086210","29.955363"],["-90.086393","29.955448"],["-90.086576","29.955532"],["-90.086680","29.955580"],["-90.086866","29.955660"],["-90.087052","29.955739"],["-90.087238","29.955819"],["-90.087425","29.955898"],["-90.087570","29.955960"],["-90.087460","29.956090"],["-90.087333","29.956233"],["-90.087300","29.956270"],["-90.087165","29.956407"],["-90.087031","29.956544"],["-90.086896","29.956680"],["-90.086761","29.956817"],["-90.086720","29.956859"],["-90.086613","29.957013"],["-90.086505","29.957167"],["-90.086465","29.957224"],["-90.086338","29.957366"],["-90.086210","29.957508"],["-90.086083","29.957650"],["-90.085955","29.957792"],["-90.085828","29.957934"],["-90.085750","29.958020"],["-90.085622","29.958162"],["-90.085495","29.958304"],["-90.085367","29.958446"],["-90.085239","29.958587"],["-90.085120","29.958720"],["-90.084966","29.958840"],["-90.084827","29.958948"],["-90.084726","29.959105"],["-90.084625","29.959262"],["-90.084496","29.959403"],["-90.084372","29.959547"],["-90.084248","29.959691"],["-90.084180","29.959770"],["-90.084044","29.959906"],["-90.083908","29.960042"],["-90.083772","29.960178"],["-90.083765","29.960185"],["-90.083653","29.960336"],["-90.083582","29.960432"],["-90.083455","29.960574"],["-90.083327","29.960716"],["-90.083199","29.960857"],["-90.083072","29.960999"],["-90.082990","29.961090"],["-90.082852","29.961225"],["-90.082714","29.961359"],["-90.082577","29.961494"],["-90.082439","29.961628"],["-90.082301","29.961763"],["-90.082236","29.961826"],["-90.082161","29.961994"],["-90.082109","29.962110"],["-90.081984","29.962253"],["-90.081859","29.962397"],["-90.081734","29.962541"],["-90.081609","29.962684"],["-90.081483","29.962827"],["-90.081358","29.962971"],["-90.081215","29.963101"],["-90.081072","29.963232"],["-90.080929","29.963362"],["-90.080786","29.963492"],["-90.080695","29.963575"],["-90.080601","29.963735"],["-90.080526","29.963864"],["-90.080402","29.964009"],["-90.080279","29.964153"],["-90.080155","29.964298"],["-90.080031","29.964442"],["-90.079930","29.964560"],["-90.079790","29.964693"],["-90.079650","29.964825"],["-90.079509","29.964958"],["-90.079369","29.965091"],["-90.079318","29.965139"],["-90.079226","29.965300"],["-90.079174","29.965393"],["-90.079048","29.965536"],["-90.078922","29.965679"],["-90.078795","29.965821"],["-90.078669","29.965964"],["-90.078620","29.966020"],["-90.078490","29.966160"],["-90.078361","29.966301"],["-90.078231","29.966441"],["-90.078101","29.966582"],["-90.077972","29.966722"],["-90.077842","29.966863"],["-90.077712","29.967003"],["-90.077645","29.967076"],["-90.077549","29.967235"],["-90.077453","29.967395"],["-90.077430","29.967432"],["-90.077320","29.967584"],["-90.077209","29.967737"],["-90.077170","29.967790"],["-90.077035","29.967927"],["-90.076900","29.968064"],["-90.076766","29.968200"],["-90.076631","29.968337"],["-90.076496","29.968474"],["-90.076451","29.968520"],["-90.076342","29.968673"],["-90.076232","29.968826"],["-90.076184","29.968893"],["-90.076055","29.969034"],["-90.075927","29.969176"],["-90.075799","29.969317"],["-90.075671","29.969459"],["-90.075535","29.969594"],["-90.075398","29.969730"],["-90.075262","29.969865"],["-90.075125","29.970001"],["-90.075004","29.970121"],["-90.074906","29.970280"],["-90.074812","29.970432"],["-90.074684","29.970573"],["-90.074556","29.970715"],["-90.074428","29.970857"],["-90.074300","29.970998"],["-90.074174","29.971141"],["-90.074049","29.971285"],["-90.073923","29.971428"],["-90.073798","29.971571"],["-90.073672","29.971714"],["-90.073580","29.971820"],["-90.073455","29.971964"],["-90.073331","29.972108"],["-90.073176","29.972227"],["-90.073021","29.972347"],["-90.072967","29.972388"],["-90.072871","29.972548"],["-90.072775","29.972707"],["-90.072735","29.972774"],["-90.072607","29.972916"],["-90.072479","29.973057"],["-90.072352","29.973199"],["-90.072270","29.973290"],["-90.072134","29.973426"],["-90.071997","29.973561"],["-90.071861","29.973697"],["-90.071724","29.973832"],["-90.071588","29.973968"],["-90.071561","29.973995"],["-90.071459","29.974152"],["-90.071357","29.974309"],["-90.071315","29.974374"],["-90.071187","29.974516"],["-90.071059","29.974657"],["-90.070932","29.974799"],["-90.070850","29.974890"],["-90.070712","29.975025"],["-90.070574","29.975159"],["-90.070437","29.975294"],["-90.070299","29.975428"],["-90.070161","29.975563"],["-90.070137","29.975586"],["-90.070048","29.975748"],["-90.070002","29.975832"],["-90.069875","29.975974"],["-90.069747","29.976116"],["-90.069619","29.976257"],["-90.069492","29.976400"],["-90.069410","29.976490"],["-90.069282","29.976632"],["-90.069155","29.976774"],["-90.069027","29.976916"],["-90.068899","29.977057"],["-90.068772","29.977199"],["-90.068601","29.977302"],["-90.068511","29.977356"],["-90.068440","29.977525"],["-90.068400","29.977620"],["-90.068269","29.977760"],["-90.068139","29.977900"],["-90.068008","29.978040"],["-90.067801","29.978053"],["-90.067594","29.978066"],["-90.067387","29.978080"],["-90.067230","29.978090"],["-90.067040","29.978100"],["-90.066833","29.978112"],["-90.066626","29.978124"],["-90.066418","29.978135"],["-90.066211","29.978133"],["-90.066003","29.978132"],["-90.065939","29.978131"],["-90.065735","29.978166"],["-90.065633","29.978184"],["-90.065426","29.978197"],["-90.065219","29.978211"],["-90.065080","29.978220"],["-90.064872","29.978225"],["-90.064665","29.978230"],["-90.064457","29.978239"],["-90.064250","29.978248"],["-90.064043","29.978257"],["-90.063835","29.978266"],["-90.063628","29.978275"],["-90.063603","29.978276"],["-90.063399","29.978307"],["-90.063194","29.978339"],["-90.063115","29.978351"],["-90.062908","29.978362"],["-90.062700","29.978373"],["-90.062493","29.978383"],["-90.062360","29.978390"],["-90.062152","29.978392"],["-90.061945","29.978394"],["-90.061737","29.978397"],["-90.061529","29.978399"],["-90.061322","29.978401"],["-90.061309","29.978401"],["-90.061105","29.978437"],["-90.060902","29.978472"],["-90.060805","29.978489"],["-90.060598","29.978498"],["-90.060390","29.978509"],["-90.060183","29.978516"],["-90.060070","29.978520"],["-90.059863","29.978537"],["-90.059657","29.978554"],["-90.059450","29.978572"],["-90.059350","29.978580"],["-90.059144","29.978554"],["-90.059037","29.978541"],["-90.058832","29.978568"],["-90.058626","29.978594"],["-90.058545","29.978605"],["-90.058337","29.978608"],["-90.058130","29.978611"],["-90.057922","29.978614"],["-90.057893","29.978614"],["-90.057692","29.978660"],["-90.057564","29.978690"],["-90.057460","29.978700"],["-90.057253","29.978711"],["-90.057045","29.978722"],["-90.056838","29.978732"],["-90.056631","29.978743"],["-90.056424","29.978754"],["-90.056310","29.978760"],["-90.056102","29.978762"],["-90.055895","29.978764"],["-90.055687","29.978767"],["-90.055479","29.978769"],["-90.055291","29.978771"],["-90.055090","29.978815"],["-90.054973","29.978841"],["-90.054766","29.978853"],["-90.054559","29.978864"],["-90.054351","29.978875"],["-90.054144","29.978887"],["-90.054080","29.978890"],["-90.053872","29.978896"],["-90.053665","29.978903"],["-90.053457","29.978909"],["-90.053250","29.978915"],["-90.053168","29.978918"],["-90.052962","29.978939"],["-90.052756","29.978960"],["-90.052655","29.978970"],["-90.052448","29.978983"],["-90.052241","29.978995"],["-90.052034","29.979007"],["-90.051826","29.979019"],["-90.051619","29.979022"],["-90.051411","29.979026"],["-90.051204","29.979029"],["-90.050996","29.979032"],["-90.050805","29.979035"],["-90.050602","29.979072"],["-90.050483","29.979093"],["-90.050276","29.979106"],["-90.050069","29.979119"],["-90.049862","29.979132"],["-90.049655","29.979145"],["-90.049570","29.979150"],["-90.049363","29.979142"],["-90.049155","29.979134"],["-90.048948","29.979127"],["-90.048740","29.979119"],["-90.048688","29.979117"],["-90.048491","29.979174"],["-90.048333","29.979219"],["-90.048126","29.979212"],["-90.047918","29.979205"],["-90.047711","29.979198"],["-90.047503","29.979191"],["-90.047340","29.979186"],["-90.047133","29.979203"],["-90.047020","29.979212"],["-90.046821","29.979160"],["-90.046623","29.979108"],["-90.046424","29.979055"],["-90.046225","29.979003"],["-90.046167","29.978988"],["-90.045962","29.978960"],["-90.045859","29.978946"],["-90.045658","29.978902"],["-90.045456","29.978858"],["-90.045255","29.978814"],["-90.045100","29.978780"],["-90.044899","29.978734"],["-90.044699","29.978688"],["-90.044498","29.978642"],["-90.044359","29.978610"],["-90.044250","29.978640"],["-90.044050","29.978592"],["-90.043869","29.978559"],["-90.043689","29.978520"],["-90.043560","29.978489"],["-90.043390","29.978450"],["-90.043210","29.978399"],["-90.043059","29.978360"],["-90.042969","29.978340"],["-90.042774","29.978277"],["-90.042580","29.978215"],["-90.042385","29.978152"],["-90.042190","29.978090"],["-90.041996","29.978027"],["-90.041801","29.977965"],["-90.041606","29.977902"],["-90.041411","29.977840"],["-90.041250","29.977788"],["-90.041044","29.977813"],["-90.040910","29.977830"],["-90.040711","29.977779"],["-90.040511","29.977729"],["-90.040312","29.977678"],["-90.040113","29.977628"],["-90.039914","29.977577"],["-90.039714","29.977527"],["-90.039515","29.977477"],["-90.039473","29.977466"],["-90.039269","29.977435"],["-90.039064","29.977404"],["-90.038968","29.977389"],["-90.038767","29.977343"],["-90.038567","29.977297"],["-90.038490","29.977280"],["-90.038291","29.977227"],["-90.038093","29.977175"],["-90.037894","29.977122"],["-90.037696","29.977070"],["-90.037534","29.977027"],["-90.037329","29.976999"],["-90.037124","29.976972"],["-90.037027","29.976959"],["-90.036826","29.976914"],["-90.036625","29.976868"],["-90.036539","29.976849"],["-90.036343","29.976790"],["-90.036147","29.976731"],["-90.035951","29.976672"],["-90.035854","29.976643"],["-90.035649","29.976613"],["-90.035445","29.976583"],["-90.035348","29.976569"],["-90.035147","29.976523"],["-90.035000","29.976490"],["-90.034799","29.976444"],["-90.034599","29.976397"],["-90.034398","29.976351"],["-90.034198","29.976304"],["-90.034000","29.976250"],["-90.033801","29.976196"],["-90.033603","29.976143"],["-90.033405","29.976089"],["-90.033201","29.976057"],["-90.032996","29.976025"],["-90.032898","29.976010"],["-90.032697","29.975965"],["-90.032496","29.975920"],["-90.032320","29.975880"],["-90.032122","29.975826"],["-90.031924","29.975773"],["-90.031725","29.975719"],["-90.031527","29.975666"],["-90.031476","29.975652"],["-90.031270","29.975629"],["-90.031158","29.975617"],["-90.030956","29.975574"],["-90.030755","29.975531"],["-90.030553","29.975488"],["-90.030470","29.975470"],["-90.030416","29.975644"],["-90.030362","29.975817"],["-90.030308","29.975991"],["-90.030253","29.976165"],["-90.030199","29.976338"],["-90.030149","29.976499"],["-90.030098","29.976673"],["-90.029977","29.976820"],["-90.029856","29.976966"],["-90.029819","29.977011"],["-90.029740","29.976845"],["-90.029661","29.976678"],["-90.029581","29.976512"],["-90.029509","29.976360"],["-90.029460","29.976185"],["-90.029419","29.976039"],["-90.029390","29.975861"],["-90.029379","29.975789"],["-90.029387","29.975609"],["-90.029390","29.975550"],["-90.029419","29.975372"],["-90.029440","29.975239"],["-90.029493","29.975065"],["-90.029546","29.974891"],["-90.029599","29.974717"],["-90.029652","29.974543"],["-90.029705","29.974370"],["-90.029758","29.974196"],["-90.029809","29.974021"],["-90.029860","29.973847"],["-90.029909","29.973680"],["-90.029944","29.973503"],["-90.029969","29.973380"],["-90.029985","29.973201"],["-90.029993","29.973108"],["-90.029967","29.972930"],["-90.029941","29.972751"],["-90.029932","29.972692"],["-90.029880","29.972518"],["-90.029829","29.972349"],["-90.029758","29.972180"],["-90.029720","29.972089"],["-90.029653","29.971919"],["-90.029599","29.971780"],["-90.029570","29.971610"],["-90.029559","29.971439"],["-90.029589","29.971269"],["-90.029653","29.971098"],["-90.029718","29.970927"],["-90.029731","29.970892"],["-90.029778","29.970717"],["-90.029826","29.970542"],["-90.029877","29.970368"],["-90.029929","29.970193"],["-90.029982","29.970019"],["-90.030034","29.969845"],["-90.030088","29.969672"],["-90.030129","29.969540"],["-90.030182","29.969366"],["-90.030234","29.969192"],["-90.030250","29.969139"],["-90.030303","29.968965"],["-90.030350","29.968810"],["-90.030210","29.968769"],["-90.030080","29.968739"],["-90.029969","29.968720"],["-90.029900","29.968720"],["-90.029699","29.968730"],["-90.029496","29.968766"],["-90.029419","29.968779"],["-90.029217","29.968819"],["-90.029014","29.968859"],["-90.028812","29.968899"],["-90.028609","29.968939"],["-90.028407","29.968978"],["-90.028204","29.969016"],["-90.028001","29.969055"],["-90.027870","29.969080"],["-90.027668","29.969121"],["-90.027579","29.969139"],["-90.027376","29.969175"],["-90.027299","29.969189"],["-90.027094","29.969220"],["-90.027039","29.969229"],["-90.026832","29.969222"],["-90.026770","29.969220"],["-90.026566","29.969187"],["-90.026362","29.969154"],["-90.026162","29.969104"],["-90.025963","29.969055"],["-90.025763","29.969006"],["-90.025563","29.968957"],["-90.025363","29.968908"],["-90.025166","29.968851"],["-90.024969","29.968794"],["-90.024779","29.968739"],["-90.024585","29.968674"],["-90.024392","29.968608"],["-90.024199","29.968543"],["-90.024005","29.968477"],["-90.023812","29.968412"],["-90.023619","29.968346"],["-90.023479","29.968299"],["-90.023288","29.968228"],["-90.023097","29.968158"],["-90.022906","29.968087"],["-90.022860","29.968070"],["-90.022667","29.968004"],["-90.022474","29.967938"],["-90.022281","29.967872"],["-90.022087","29.967806"],["-90.021894","29.967741"],["-90.021701","29.967675"],["-90.021570","29.967630"],["-90.021380","29.967558"],["-90.021185","29.967496"],["-90.021070","29.967460"],["-90.020870","29.967413"],["-90.020690","29.967370"],["-90.020498","29.967301"],["-90.020306","29.967232"],["-90.020114","29.967164"],["-90.019923","29.967095"],["-90.019898","29.967086"],["-90.019692","29.967110"],["-90.019569","29.967124"],["-90.019368","29.967078"],["-90.019167","29.967033"],["-90.018967","29.966987"],["-90.018889","29.966969"],["-90.018695","29.966904"],["-90.018502","29.966839"],["-90.018308","29.966774"],["-90.018133","29.966715"],["-90.017926","29.966702"],["-90.017719","29.966689"],["-90.017629","29.966683"],["-90.017429","29.966635"],["-90.017229","29.966587"],["-90.017029","29.966539"],["-90.016950","29.966520"],["-90.016748","29.966477"],["-90.016547","29.966434"],["-90.016345","29.966391"],["-90.016144","29.966348"],["-90.016060","29.966330"],["-90.015867","29.966264"],["-90.015673","29.966199"],["-90.015480","29.966133"],["-90.015423","29.966114"],["-90.015216","29.966100"],["-90.015084","29.966091"],["-90.014888","29.966032"],["-90.014692","29.965973"],["-90.014495","29.965914"],["-90.014364","29.965875"],["-90.014158","29.965853"],["-90.013952","29.965832"],["-90.013860","29.965822"],["-90.013660","29.965773"],["-90.013461","29.965724"],["-90.013261","29.965675"],["-90.013200","29.965660"],["-90.012999","29.965614"],["-90.012797","29.965572"],["-90.012596","29.965529"],["-90.012409","29.965490"],["-90.012207","29.965447"],["-90.012006","29.965405"],["-90.011804","29.965362"],["-90.011602","29.965320"],["-90.011509","29.965300"],["-90.011306","29.965261"],["-90.011103","29.965223"],["-90.010901","29.965184"],["-90.010698","29.965146"],["-90.010560","29.965120"],["-90.010364","29.965060"],["-90.010169","29.964999"],["-90.010010","29.964950"],["-90.009819","29.964880"],["-90.009628","29.964809"],["-90.009437","29.964739"],["-90.009252","29.964657"],["-90.009140","29.964608"],["-90.009214","29.964440"],["-90.009287","29.964272"],["-90.009360","29.964103"],["-90.009434","29.963935"],["-90.009507","29.963767"],["-90.009602","29.963607"],["-90.009697","29.963447"],["-90.009792","29.963287"],["-90.009888","29.963127"],["-90.009983","29.962967"],["-90.010033","29.962883"],["-90.010050","29.962704"],["-90.010059","29.962614"],["-90.010138","29.962448"],["-90.010217","29.962281"],["-90.010296","29.962115"],["-90.010375","29.961949"],["-90.010450","29.961790"],["-90.010530","29.961624"],["-90.010609","29.961458"],["-90.010689","29.961292"],["-90.010769","29.961126"],["-90.010849","29.960960"],["-90.010928","29.960794"],["-90.011010","29.960628"],["-90.011091","29.960463"],["-90.011172","29.960297"],["-90.011254","29.960132"],["-90.011289","29.960060"],["-90.011319","29.959990"],["-90.011360","29.959910"],["-90.011210","29.959849"],["-90.011017","29.959782"],["-90.010824","29.959716"],["-90.010632","29.959649"],["-90.010446","29.959569"],["-90.010260","29.959488"],["-90.010211","29.959467"],["-90.010012","29.959416"],["-90.009909","29.959390"],["-90.009718","29.959319"],["-90.009527","29.959249"],["-90.009336","29.959178"],["-90.009150","29.959110"],["-90.008958","29.959041"],["-90.008767","29.958972"],["-90.008580","29.958892"],["-90.008394","29.958813"],["-90.008320","29.958781"],["-90.008310","29.958800"],["-90.008240","29.958770"],["-90.008132","29.958730"],["-90.008025","29.958690"],["-90.007917","29.958650"],["-90.007810","29.958610"],["-90.007649","29.958551"],["-90.007487","29.958493"],["-90.007326","29.958434"],["-90.007165","29.958375"],["-90.007004","29.958316"],["-90.006842","29.958258"],["-90.006681","29.958199"],["-90.006520","29.958140"],["-90.006440","29.958110"],["-90.006320","29.958065"],["-90.006200","29.958020"],["-90.006070","29.957973"],["-90.005940","29.957925"],["-90.005810","29.957878"],["-90.005680","29.957830"],["-90.005575","29.957791"],["-90.005470","29.957753"],["-90.005365","29.957714"],["-90.005260","29.957675"],["-90.005155","29.957636"],["-90.005050","29.957598"],["-90.004945","29.957559"],["-90.004840","29.957520"],["-90.004839","29.957524"],["-90.004840","29.957520"],["-90.004780","29.957500"],["-90.004670","29.957465"],["-90.004560","29.957430"],["-90.004420","29.957375"],["-90.004280","29.957320"],["-90.004162","29.957278"],["-90.004045","29.957235"],["-90.003927","29.957193"],["-90.003810","29.957150"],["-90.003667","29.957098"],["-90.003525","29.957045"],["-90.003382","29.956993"],["-90.003240","29.956940"],["-90.003122","29.956898"],["-90.003005","29.956855"],["-90.002887","29.956813"],["-90.002770","29.956770"],["-90.002720","29.956820"],["-90.002710","29.956840"],["-90.002658","29.957011"],["-90.002856","29.957065"],["-90.003038","29.957114"],["-90.003179","29.957159"],["-90.003374","29.957221"],["-90.003569","29.957283"],["-90.003763","29.957346"],["-90.003930","29.957399"],["-90.004089","29.957450"],["-90.004284","29.957511"],["-90.004467","29.957596"],["-90.004651","29.957681"],["-90.004684","29.957696"],["-90.004883","29.957747"],["-90.005082","29.957798"],["-90.005131","29.957811"],["-90.005322","29.957882"],["-90.005512","29.957953"],["-90.005640","29.958000"],["-90.005828","29.958076"],["-90.006016","29.958152"],["-90.006109","29.958190"],["-90.006230","29.958239"],["-90.006421","29.958310"],["-90.006613","29.958378"],["-90.006805","29.958447"],["-90.006950","29.958499"],["-90.007142","29.958568"],["-90.007200","29.958589"],["-90.007378","29.958681"],["-90.007557","29.958773"],["-90.007646","29.958819"]]}]}},{"type":"Feature","properties":{"route_id":"86","agency_id":"1","route_short_name":"86","route_long_name":"St. Maurice-Chalmette","route_type":"3","route_color":"#008080","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.004684","29.957696"],["-90.007646","29.958819"],["-90.008320","29.958781"],["-90.004839","29.957524"],["-90.010622","29.977526"],["-90.006491","29.969504"],["-90.005527","29.971491"],["-90.003661","29.975383"],["-90.007560","29.977016"],["-90.011193","29.975622"],["-90.011897","29.973528"],["-90.012570","29.971479"],["-90.013212","29.969422"],["-90.013895","29.967346"],["-90.014200","29.966263"],["-90.015220","29.963222"],["-90.015770","29.961426"],["-90.016637","29.958935"],["-90.017219","29.957184"],["-90.013400","29.954929"],["-90.011511","29.956388"],["-90.010588","29.958330"],["-90.007403","29.967409"],["-90.004657","29.973468"],["-89.988218","29.955871"],["-89.983539","29.955448"],["-90.001129","29.961794"],["-90.008809","29.964709"],["-89.959074","29.954848"],["-89.960969","29.948171"],["-89.963555","29.942790"],["-89.968302","29.944475"],["-89.971306","29.946014"],["-89.976254","29.952484"],["-89.980899","29.954395"],["-89.992340","29.958900"],["-89.996622","29.960622"],["-89.980213","29.954082"],["-90.005951","29.963639"],["-89.978759","29.953502"],["-89.965279","29.943378"],["-89.971855","29.949896"],["-89.973916","29.951547"]]},{"type":"LineString","coordinates":[["-89.959074","29.954848"],["-89.958905","29.954744"],["-89.958736","29.954639"],["-89.958567","29.954535"],["-89.958398","29.954431"],["-89.958229","29.954326"],["-89.958089","29.954240"],["-89.958167","29.954073"],["-89.958244","29.953906"],["-89.958322","29.953740"],["-89.958399","29.953573"],["-89.958477","29.953406"],["-89.958549","29.953250"],["-89.958627","29.953083"],["-89.958705","29.952917"],["-89.958750","29.952819"],["-89.958825","29.952651"],["-89.958880","29.952530"],["-89.958960","29.952364"],["-89.959010","29.952260"],["-89.959085","29.952092"],["-89.959150","29.951949"],["-89.959230","29.951783"],["-89.959290","29.951659"],["-89.959367","29.951492"],["-89.959445","29.951325"],["-89.959470","29.951270"],["-89.959546","29.951103"],["-89.959622","29.950935"],["-89.959698","29.950768"],["-89.959774","29.950601"],["-89.959850","29.950433"],["-89.959920","29.950280"],["-89.960001","29.950114"],["-89.960081","29.949948"],["-89.960161","29.949782"],["-89.960241","29.949616"],["-89.960319","29.949450"],["-89.960389","29.949299"],["-89.960466","29.949132"],["-89.960543","29.948965"],["-89.960625","29.948800"],["-89.960649","29.948750"],["-89.960728","29.948584"],["-89.960804","29.948416"],["-89.960908","29.948261"],["-89.960969","29.948171"],["-89.961043","29.948003"],["-89.961116","29.947835"],["-89.961190","29.947667"],["-89.961264","29.947498"],["-89.961329","29.947349"],["-89.961410","29.947183"],["-89.961490","29.947017"],["-89.961571","29.946852"],["-89.961651","29.946686"],["-89.961732","29.946520"],["-89.961810","29.946359"],["-89.961890","29.946193"],["-89.961969","29.946027"],["-89.962049","29.945861"],["-89.962128","29.945694"],["-89.962208","29.945528"],["-89.962279","29.945379"],["-89.962360","29.945213"],["-89.962440","29.945047"],["-89.962521","29.944882"],["-89.962601","29.944716"],["-89.962682","29.944550"],["-89.962750","29.944410"],["-89.962831","29.944244"],["-89.962913","29.944079"],["-89.962994","29.943913"],["-89.963020","29.943860"],["-89.963101","29.943694"],["-89.963182","29.943529"],["-89.963240","29.943410"],["-89.963318","29.943243"],["-89.963390","29.943089"],["-89.963480","29.942927"],["-89.963555","29.942790"],["-89.963759","29.942824"],["-89.963963","29.942857"],["-89.964040","29.942870"],["-89.964231","29.942940"],["-89.964422","29.943010"],["-89.964613","29.943081"],["-89.964690","29.943109"],["-89.964874","29.943193"],["-89.965057","29.943277"],["-89.965241","29.943361"],["-89.965279","29.943378"],["-89.965479","29.943427"],["-89.965678","29.943476"],["-89.965730","29.943489"],["-89.965921","29.943560"],["-89.966111","29.943631"],["-89.966302","29.943703"],["-89.966492","29.943774"],["-89.966683","29.943845"],["-89.966750","29.943870"],["-89.966941","29.943940"],["-89.967132","29.944010"],["-89.967324","29.944080"],["-89.967515","29.944150"],["-89.967706","29.944220"],["-89.967759","29.944240"],["-89.967945","29.944320"],["-89.968130","29.944401"],["-89.968302","29.944475"],["-89.968499","29.944532"],["-89.968696","29.944588"],["-89.968888","29.944657"],["-89.968979","29.944690"],["-89.969172","29.944757"],["-89.969364","29.944824"],["-89.969554","29.944896"],["-89.969670","29.944940"],["-89.969862","29.945009"],["-89.970053","29.945078"],["-89.970199","29.945130"],["-89.970369","29.945199"],["-89.970509","29.945259"],["-89.970660","29.945330"],["-89.970830","29.945433"],["-89.970930","29.945500"],["-89.971009","29.945559"],["-89.971099","29.945629"],["-89.971179","29.945700"],["-89.971248","29.945870"],["-89.971306","29.946014"],["-89.971451","29.946143"],["-89.971570","29.946249"],["-89.971620","29.946369"],["-89.971670","29.946500"],["-89.971700","29.946629"],["-89.971729","29.946789"],["-89.971740","29.946959"],["-89.971740","29.947089"],["-89.971729","29.947229"],["-89.971700","29.947390"],["-89.971670","29.947539"],["-89.971639","29.947699"],["-89.971595","29.947875"],["-89.971567","29.948053"],["-89.971549","29.948169"],["-89.971541","29.948349"],["-89.971539","29.948400"],["-89.971539","29.948580"],["-89.971539","29.948660"],["-89.971559","29.948839"],["-89.971593","29.949016"],["-89.971638","29.949192"],["-89.971650","29.949239"],["-89.971670","29.949290"],["-89.971710","29.949429"],["-89.971760","29.949560"],["-89.971809","29.949735"],["-89.971855","29.949896"],["-89.971979","29.950040"],["-89.972103","29.950184"],["-89.972146","29.950234"],["-89.972262","29.950383"],["-89.972290","29.950419"],["-89.972330","29.950460"],["-89.972449","29.950589"],["-89.972590","29.950721"],["-89.972735","29.950850"],["-89.972769","29.950880"],["-89.972870","29.950949"],["-89.972989","29.951039"],["-89.973156","29.951146"],["-89.973209","29.951180"],["-89.973385","29.951275"],["-89.973566","29.951363"],["-89.973640","29.951399"],["-89.973817","29.951494"],["-89.973916","29.951547"],["-89.974111","29.951609"],["-89.974306","29.951671"],["-89.974396","29.951700"],["-89.974584","29.951776"],["-89.974773","29.951850"],["-89.974963","29.951923"],["-89.975030","29.951949"],["-89.975217","29.952027"],["-89.975369","29.952090"],["-89.975558","29.952165"],["-89.975741","29.952249"],["-89.975925","29.952333"],["-89.976108","29.952417"],["-89.976254","29.952484"],["-89.976450","29.952544"],["-89.976646","29.952604"],["-89.976696","29.952619"],["-89.976883","29.952697"],["-89.977010","29.952749"],["-89.977199","29.952823"],["-89.977388","29.952898"],["-89.977439","29.952919"],["-89.977579","29.952980"],["-89.977768","29.953054"],["-89.977910","29.953109"],["-89.978099","29.953184"],["-89.978287","29.953260"],["-89.978475","29.953335"],["-89.978647","29.953436"],["-89.978759","29.953502"],["-89.978955","29.953560"],["-89.979152","29.953618"],["-89.979342","29.953691"],["-89.979531","29.953766"],["-89.979639","29.953809"],["-89.979829","29.953881"],["-89.980007","29.953974"],["-89.980185","29.954067"],["-89.980213","29.954082"],["-89.980397","29.954166"],["-89.980580","29.954250"],["-89.980764","29.954333"],["-89.980899","29.954395"],["-89.981101","29.954438"],["-89.981302","29.954480"],["-89.981490","29.954558"],["-89.981570","29.954590"],["-89.981758","29.954667"],["-89.981840","29.954700"],["-89.982029","29.954775"],["-89.982218","29.954849"],["-89.982407","29.954924"],["-89.982596","29.954998"],["-89.982749","29.955059"],["-89.982929","29.955148"],["-89.983110","29.955237"],["-89.983290","29.955326"],["-89.983471","29.955414"],["-89.983539","29.955448"],["-89.983737","29.955502"],["-89.983935","29.955556"],["-89.984021","29.955579"],["-89.984211","29.955652"],["-89.984400","29.955725"],["-89.984490","29.955760"],["-89.984677","29.955838"],["-89.984865","29.955915"],["-89.984949","29.955950"],["-89.985137","29.956027"],["-89.985325","29.956103"],["-89.985512","29.956180"],["-89.985700","29.956256"],["-89.985888","29.956333"],["-89.986076","29.956410"],["-89.986264","29.956486"],["-89.986420","29.956550"],["-89.986609","29.956625"],["-89.986798","29.956699"],["-89.986987","29.956774"],["-89.987175","29.956849"],["-89.987364","29.956923"],["-89.987553","29.956998"],["-89.987609","29.957020"],["-89.987760","29.957079"],["-89.987948","29.957155"],["-89.988136","29.957231"],["-89.988324","29.957307"],["-89.988480","29.957370"],["-89.988670","29.957443"],["-89.988862","29.957510"],["-89.988999","29.957550"],["-89.989078","29.957384"],["-89.989099","29.957339"],["-89.989030","29.957300"],["-89.988848","29.957214"],["-89.988661","29.957136"],["-89.988599","29.957110"],["-89.988411","29.957034"],["-89.988223","29.956957"],["-89.988035","29.956881"],["-89.987847","29.956804"],["-89.987739","29.956760"],["-89.987827","29.956597"],["-89.987915","29.956434"],["-89.988002","29.956271"],["-89.988090","29.956108"],["-89.988178","29.955945"],["-89.988218","29.955871"],["-89.988304","29.955707"],["-89.988390","29.955544"],["-89.988476","29.955380"],["-89.988540","29.955259"],["-89.988453","29.955422"],["-89.988366","29.955586"],["-89.988279","29.955749"],["-89.988192","29.955912"],["-89.988104","29.956075"],["-89.988017","29.956239"],["-89.987930","29.956402"],["-89.987843","29.956565"],["-89.987756","29.956728"],["-89.987560","29.956669"],["-89.987429","29.956629"],["-89.987241","29.956553"],["-89.987109","29.956500"],["-89.987029","29.956470"],["-89.986841","29.956394"],["-89.986653","29.956318"],["-89.986560","29.956280"],["-89.986372","29.956204"],["-89.986184","29.956127"],["-89.985996","29.956051"],["-89.985808","29.955975"],["-89.985619","29.955900"],["-89.985431","29.955825"],["-89.985242","29.955750"],["-89.985089","29.955689"],["-89.984900","29.955614"],["-89.984712","29.955539"],["-89.984660","29.955519"],["-89.984471","29.955444"],["-89.984409","29.955419"],["-89.984223","29.955339"],["-89.984180","29.955320"],["-89.983991","29.955245"],["-89.983879","29.955200"],["-89.983900","29.955359"],["-89.983829","29.955500"],["-89.984017","29.955577"],["-89.984206","29.955650"],["-89.984396","29.955724"],["-89.984490","29.955760"],["-89.984677","29.955838"],["-89.984865","29.955915"],["-89.984949","29.955950"],["-89.985137","29.956027"],["-89.985325","29.956103"],["-89.985512","29.956180"],["-89.985700","29.956256"],["-89.985888","29.956333"],["-89.986076","29.956410"],["-89.986264","29.956486"],["-89.986420","29.956550"],["-89.986609","29.956625"],["-89.986798","29.956699"],["-89.986987","29.956774"],["-89.987175","29.956849"],["-89.987364","29.956923"],["-89.987553","29.956998"],["-89.987609","29.957020"],["-89.987760","29.957079"],["-89.987948","29.957155"],["-89.988136","29.957231"],["-89.988324","29.957307"],["-89.988480","29.957370"],["-89.988670","29.957443"],["-89.988862","29.957510"],["-89.988999","29.957550"],["-89.989189","29.957609"],["-89.989319","29.957650"],["-89.989440","29.957689"],["-89.989634","29.957754"],["-89.989679","29.957769"],["-89.989868","29.957843"],["-89.989959","29.957879"],["-89.990148","29.957953"],["-89.990337","29.958028"],["-89.990470","29.958080"],["-89.990658","29.958156"],["-89.990846","29.958232"],["-89.991034","29.958309"],["-89.991222","29.958385"],["-89.991410","29.958461"],["-89.991479","29.958489"],["-89.991667","29.958566"],["-89.991854","29.958644"],["-89.991939","29.958679"],["-89.992114","29.958776"],["-89.992289","29.958872"],["-89.992340","29.958900"],["-89.992538","29.958953"],["-89.992737","29.959006"],["-89.992795","29.959021"],["-89.992983","29.959097"],["-89.993170","29.959175"],["-89.993358","29.959252"],["-89.993519","29.959319"],["-89.993708","29.959394"],["-89.993896","29.959469"],["-89.994085","29.959544"],["-89.994200","29.959589"],["-89.994388","29.959665"],["-89.994576","29.959741"],["-89.994764","29.959817"],["-89.994920","29.959880"],["-89.995108","29.959956"],["-89.995296","29.960033"],["-89.995484","29.960109"],["-89.995672","29.960185"],["-89.995730","29.960209"],["-89.995918","29.960286"],["-89.996105","29.960363"],["-89.996270","29.960430"],["-89.996446","29.960526"],["-89.996622","29.960622"],["-89.996824","29.960663"],["-89.997026","29.960704"],["-89.997088","29.960716"],["-89.997159","29.960739"],["-89.997353","29.960802"],["-89.997530","29.960859"],["-89.997680","29.960900"],["-89.997819","29.960929"],["-89.997950","29.960949"],["-89.998120","29.960970"],["-89.998327","29.960988"],["-89.998533","29.961006"],["-89.998740","29.961024"],["-89.998800","29.961029"],["-89.999006","29.961053"],["-89.999070","29.961060"],["-89.999269","29.961090"],["-89.999449","29.961129"],["-89.999629","29.961180"],["-89.999820","29.961250"],["-90.000011","29.961320"],["-90.000203","29.961390"],["-90.000392","29.961463"],["-90.000539","29.961520"],["-90.000731","29.961589"],["-90.000909","29.961681"],["-90.001088","29.961773"],["-90.001129","29.961794"],["-90.001328","29.961844"],["-90.001528","29.961894"],["-90.001709","29.961939"],["-90.001901","29.962008"],["-90.002093","29.962077"],["-90.002210","29.962119"],["-90.002399","29.962193"],["-90.002519","29.962240"],["-90.002699","29.962320"],["-90.002880","29.962408"],["-90.003061","29.962496"],["-90.003243","29.962583"],["-90.003380","29.962649"],["-90.003566","29.962729"],["-90.003639","29.962760"],["-90.003829","29.962832"],["-90.003930","29.962870"],["-90.004121","29.962940"],["-90.004230","29.962980"],["-90.004421","29.963050"],["-90.004613","29.963120"],["-90.004804","29.963189"],["-90.004970","29.963250"],["-90.005161","29.963320"],["-90.005352","29.963391"],["-90.005543","29.963461"],["-90.005729","29.963542"],["-90.005914","29.963623"],["-90.005951","29.963639"],["-90.006145","29.963702"],["-90.006340","29.963765"],["-90.006534","29.963828"],["-90.006729","29.963891"],["-90.006850","29.963930"],["-90.007041","29.964001"],["-90.007232","29.964072"],["-90.007422","29.964143"],["-90.007613","29.964213"],["-90.007790","29.964279"],["-90.007977","29.964358"],["-90.008163","29.964437"],["-90.008350","29.964515"],["-90.008537","29.964594"],["-90.008723","29.964673"],["-90.008809","29.964709"],["-90.008775","29.964886"],["-90.008749","29.965022"],["-90.008669","29.965188"],["-90.008588","29.965353"],["-90.008508","29.965519"],["-90.008430","29.965680"],["-90.008350","29.965846"],["-90.008270","29.966012"],["-90.008191","29.966178"],["-90.008111","29.966344"],["-90.008031","29.966510"],["-90.007959","29.966660"],["-90.007847","29.966811"],["-90.007734","29.966963"],["-90.007622","29.967114"],["-90.007510","29.967265"],["-90.007403","29.967409"],["-90.007402","29.967589"],["-90.007400","29.967769"],["-90.007400","29.967836"],["-90.007319","29.968002"],["-90.007239","29.968168"],["-90.007159","29.968333"],["-90.007078","29.968499"],["-90.007020","29.968620"],["-90.006924","29.968780"],["-90.006829","29.968939"],["-90.006733","29.969099"],["-90.006638","29.969259"],["-90.006542","29.969418"],["-90.006491","29.969504"],["-90.006452","29.969681"],["-90.006412","29.969857"],["-90.006398","29.969921"],["-90.006317","29.970087"],["-90.006235","29.970252"],["-90.006154","29.970418"],["-90.006073","29.970583"],["-90.005994","29.970749"],["-90.005914","29.970915"],["-90.005840","29.971070"],["-90.005728","29.971221"],["-90.005615","29.971372"],["-90.005527","29.971491"],["-90.005491","29.971668"],["-90.005456","29.971845"],["-90.005442","29.971913"],["-90.005363","29.972079"],["-90.005284","29.972246"],["-90.005205","29.972412"],["-90.005130","29.972570"],["-90.005044","29.972734"],["-90.004958","29.972897"],["-90.004871","29.973061"],["-90.004785","29.973225"],["-90.004699","29.973388"],["-90.004657","29.973468"],["-90.004594","29.973639"],["-90.004531","29.973811"],["-90.004509","29.973872"],["-90.004429","29.974038"],["-90.004360","29.974180"],["-90.004277","29.974345"],["-90.004195","29.974510"],["-90.004098","29.974669"],["-90.004001","29.974828"],["-90.003903","29.974987"],["-90.003806","29.975146"],["-90.003709","29.975305"],["-90.003661","29.975383"],["-90.003819","29.975500"],["-90.003977","29.975616"],["-90.004022","29.975649"],["-90.004214","29.975718"],["-90.004405","29.975787"],["-90.004597","29.975856"],["-90.004720","29.975900"],["-90.004911","29.975970"],["-90.005103","29.976040"],["-90.005294","29.976110"],["-90.005485","29.976180"],["-90.005676","29.976250"],["-90.005760","29.976280"],["-90.005951","29.976351"],["-90.006141","29.976422"],["-90.006332","29.976493"],["-90.006523","29.976564"],["-90.006714","29.976635"],["-90.006860","29.976690"],["-90.007043","29.976775"],["-90.007226","29.976860"],["-90.007409","29.976946"],["-90.007560","29.977016"],["-90.007600","29.976940"],["-90.007700","29.976980"],["-90.007870","29.977020"],["-90.008005","29.977050"],["-90.008140","29.977080"],["-90.008255","29.977108"],["-90.008370","29.977135"],["-90.008485","29.977163"],["-90.008600","29.977190"],["-90.008807","29.977235"],["-90.009015","29.977280"],["-90.009222","29.977325"],["-90.009430","29.977370"],["-90.009554","29.977400"],["-90.009677","29.977430"],["-90.009801","29.977460"],["-90.009925","29.977490"],["-90.010049","29.977520"],["-90.010172","29.977550"],["-90.010296","29.977580"],["-90.010420","29.977610"],["-90.010530","29.977640"],["-90.010570","29.977510"],["-90.010622","29.977526"],["-90.010570","29.977510"],["-90.010609","29.977391"],["-90.010648","29.977273"],["-90.010686","29.977154"],["-90.010725","29.977035"],["-90.010764","29.976916"],["-90.010803","29.976798"],["-90.010841","29.976679"],["-90.010880","29.976560"],["-90.010930","29.976400"],["-90.010980","29.976240"],["-90.011033","29.976080"],["-90.011085","29.975920"],["-90.011138","29.975760"],["-90.011193","29.975622"],["-90.011201","29.975442"],["-90.011206","29.975327"],["-90.011262","29.975154"],["-90.011318","29.974981"],["-90.011374","29.974807"],["-90.011430","29.974634"],["-90.011480","29.974480"],["-90.011554","29.974312"],["-90.011627","29.974144"],["-90.011701","29.973976"],["-90.011775","29.973807"],["-90.011848","29.973639"],["-90.011897","29.973528"],["-90.011915","29.973349"],["-90.011932","29.973170"],["-90.011938","29.973113"],["-90.011992","29.972939"],["-90.012046","29.972766"],["-90.012100","29.972592"],["-90.012150","29.972430"],["-90.012224","29.972262"],["-90.012298","29.972094"],["-90.012373","29.971926"],["-90.012447","29.971758"],["-90.012521","29.971590"],["-90.012570","29.971479"],["-90.012585","29.971300"],["-90.012600","29.971120"],["-90.012607","29.971042"],["-90.012660","29.970868"],["-90.012714","29.970694"],["-90.012767","29.970521"],["-90.012821","29.970347"],["-90.012892","29.970178"],["-90.012964","29.970009"],["-90.013035","29.969840"],["-90.013107","29.969671"],["-90.013178","29.969502"],["-90.013212","29.969422"],["-90.013230","29.969243"],["-90.013248","29.969064"],["-90.013256","29.968985"],["-90.013314","29.968812"],["-90.013372","29.968640"],["-90.013431","29.968467"],["-90.013489","29.968294"],["-90.013561","29.968126"],["-90.013633","29.967957"],["-90.013706","29.967789"],["-90.013778","29.967620"],["-90.013850","29.967451"],["-90.013895","29.967346"],["-90.013921","29.967168"],["-90.013946","29.966989"],["-90.013958","29.966907"],["-90.014023","29.966736"],["-90.014087","29.966565"],["-90.014151","29.966394"],["-90.014200","29.966263"],["-90.014231","29.966085"],["-90.014260","29.965920"],["-90.014319","29.965748"],["-90.014378","29.965575"],["-90.014437","29.965403"],["-90.014496","29.965230"],["-90.014510","29.965190"],["-90.014563","29.965016"],["-90.014617","29.964842"],["-90.014670","29.964669"],["-90.014724","29.964495"],["-90.014777","29.964321"],["-90.014831","29.964147"],["-90.014902","29.963978"],["-90.014973","29.963809"],["-90.015044","29.963640"],["-90.015115","29.963471"],["-90.015186","29.963302"],["-90.015220","29.963222"],["-90.015248","29.963044"],["-90.015277","29.962866"],["-90.015290","29.962783"],["-90.015344","29.962609"],["-90.015399","29.962436"],["-90.015454","29.962262"],["-90.015509","29.962089"],["-90.015576","29.961919"],["-90.015643","29.961749"],["-90.015710","29.961578"],["-90.015770","29.961426"],["-90.015806","29.961249"],["-90.015841","29.961072"],["-90.015858","29.960987"],["-90.015917","29.960815"],["-90.015975","29.960642"],["-90.016034","29.960469"],["-90.016092","29.960297"],["-90.016150","29.960124"],["-90.016209","29.959952"],["-90.016263","29.959778"],["-90.016316","29.959604"],["-90.016370","29.959430"],["-90.016424","29.959257"],["-90.016527","29.959101"],["-90.016631","29.958945"],["-90.016637","29.958935"],["-90.016678","29.958759"],["-90.016719","29.958582"],["-90.016760","29.958406"],["-90.016801","29.958230"],["-90.016842","29.958053"],["-90.016915","29.957885"],["-90.016988","29.957717"],["-90.017061","29.957548"],["-90.017134","29.957380"],["-90.017207","29.957212"],["-90.017219","29.957184"],["-90.017210","29.957004"],["-90.017203","29.956866"],["-90.017257","29.956692"],["-90.017310","29.956518"],["-90.017364","29.956345"],["-90.017417","29.956171"],["-90.017439","29.956100"],["-90.017239","29.956052"],["-90.017039","29.956004"],["-90.016839","29.955956"],["-90.016639","29.955907"],["-90.016439","29.955859"],["-90.016238","29.955815"],["-90.016036","29.955771"],["-90.015835","29.955727"],["-90.015634","29.955683"],["-90.015530","29.955660"],["-90.015329","29.955615"],["-90.015128","29.955570"],["-90.014927","29.955525"],["-90.014726","29.955480"],["-90.014590","29.955449"],["-90.014400","29.955377"],["-90.014209","29.955305"],["-90.014019","29.955234"],["-90.013829","29.955162"],["-90.013653","29.955066"],["-90.013477","29.954971"],["-90.013400","29.954929"],["-90.013204","29.954870"],["-90.013008","29.954812"],["-90.012811","29.954753"],["-90.012615","29.954694"],["-90.012430","29.954639"],["-90.012345","29.954803"],["-90.012260","29.954967"],["-90.012175","29.955131"],["-90.012090","29.955295"],["-90.012005","29.955459"],["-90.011969","29.955529"],["-90.011882","29.955692"],["-90.011795","29.955856"],["-90.011708","29.956019"],["-90.011621","29.956182"],["-90.011534","29.956345"],["-90.011511","29.956388"],["-90.011459","29.956562"],["-90.011407","29.956736"],["-90.011385","29.956811"],["-90.011304","29.956977"],["-90.011222","29.957142"],["-90.011140","29.957307"],["-90.011099","29.957390"],["-90.011023","29.957557"],["-90.010946","29.957724"],["-90.010870","29.957892"],["-90.010839","29.957959"],["-90.010734","29.958114"],["-90.010629","29.958269"],["-90.010588","29.958330"],["-90.010515","29.958498"],["-90.010442","29.958667"],["-90.010370","29.958835"],["-90.010297","29.959004"],["-90.010224","29.959172"],["-90.010151","29.959341"],["-90.010100","29.959460"],["-90.009909","29.959390"],["-90.009718","29.959319"],["-90.009527","29.959249"],["-90.009336","29.959178"],["-90.009150","29.959110"],["-90.008958","29.959041"],["-90.008767","29.958972"],["-90.008580","29.958892"],["-90.008394","29.958813"],["-90.008320","29.958781"],["-90.008310","29.958800"],["-90.008240","29.958770"],["-90.008132","29.958730"],["-90.008025","29.958690"],["-90.007917","29.958650"],["-90.007810","29.958610"],["-90.007649","29.958551"],["-90.007487","29.958493"],["-90.007326","29.958434"],["-90.007165","29.958375"],["-90.007004","29.958316"],["-90.006842","29.958258"],["-90.006681","29.958199"],["-90.006520","29.958140"],["-90.006440","29.958110"],["-90.006320","29.958065"],["-90.006200","29.958020"],["-90.006070","29.957973"],["-90.005940","29.957925"],["-90.005810","29.957878"],["-90.005680","29.957830"],["-90.005575","29.957791"],["-90.005470","29.957753"],["-90.005365","29.957714"],["-90.005260","29.957675"],["-90.005155","29.957636"],["-90.005050","29.957598"],["-90.004945","29.957559"],["-90.004840","29.957520"],["-90.004839","29.957524"],["-90.004840","29.957520"],["-90.004780","29.957500"],["-90.004760","29.957570"],["-90.004750","29.957580"],["-90.004720","29.957660"],["-90.004684","29.957696"],["-90.004883","29.957747"],["-90.005082","29.957798"],["-90.005131","29.957811"],["-90.005322","29.957882"],["-90.005512","29.957953"],["-90.005640","29.958000"],["-90.005828","29.958076"],["-90.006016","29.958152"],["-90.006109","29.958190"],["-90.006230","29.958239"],["-90.006421","29.958310"],["-90.006613","29.958378"],["-90.006805","29.958447"],["-90.006950","29.958499"],["-90.007142","29.958568"],["-90.007200","29.958589"],["-90.007378","29.958681"],["-90.007557","29.958773"],["-90.007646","29.958819"]]},{"type":"MultiPoint","coordinates":[["-90.007646","29.958819"],["-90.009942","29.959621"],["-90.009824","29.962668"],["-90.008901","29.964456"],["-89.988218","29.955871"],["-90.005929","29.963450"],["-89.959074","29.954848"],["-90.002686","29.962130"],["-90.000670","29.961390"],["-89.996859","29.960450"],["-89.992536","29.958737"],["-89.986695","29.956282"],["-89.984014","29.955202"],["-89.980699","29.953864"],["-89.977177","29.952462"],["-89.974236","29.951266"],["-89.971658","29.945778"],["-89.968560","29.944231"],["-89.960373","29.949246"],["-89.958793","29.952523"]]},{"type":"LineString","coordinates":[["-90.007646","29.958819"],["-90.007846","29.958866"],["-90.008047","29.958913"],["-90.008160","29.958939"],["-90.008352","29.959007"],["-90.008544","29.959076"],["-90.008736","29.959144"],["-90.008809","29.959170"],["-90.009000","29.959241"],["-90.009079","29.959270"],["-90.009267","29.959346"],["-90.009455","29.959423"],["-90.009643","29.959499"],["-90.009831","29.959576"],["-90.009942","29.959621"],["-90.010140","29.959674"],["-90.010338","29.959728"],["-90.010413","29.959748"],["-90.010605","29.959817"],["-90.010796","29.959886"],["-90.010988","29.959955"],["-90.011139","29.960009"],["-90.011062","29.960176"],["-90.010985","29.960343"],["-90.010909","29.960510"],["-90.010832","29.960677"],["-90.010799","29.960749"],["-90.010719","29.960915"],["-90.010640","29.961081"],["-90.010560","29.961247"],["-90.010481","29.961414"],["-90.010401","29.961580"],["-90.010322","29.961746"],["-90.010234","29.961909"],["-90.010146","29.962072"],["-90.010058","29.962235"],["-90.009970","29.962398"],["-90.009882","29.962560"],["-90.009824","29.962668"],["-90.009764","29.962840"],["-90.009705","29.963013"],["-90.009688","29.963061"],["-90.009607","29.963227"],["-90.009526","29.963392"],["-90.009445","29.963558"],["-90.009370","29.963710"],["-90.009291","29.963876"],["-90.009211","29.964042"],["-90.009132","29.964209"],["-90.009001","29.964348"],["-90.008901","29.964456"],["-90.008703","29.964401"],["-90.008506","29.964345"],["-90.008308","29.964290"],["-90.008111","29.964235"],["-90.007913","29.964179"],["-90.007840","29.964159"],["-90.007648","29.964090"],["-90.007457","29.964020"],["-90.007265","29.963951"],["-90.007074","29.963882"],["-90.006900","29.963819"],["-90.006709","29.963749"],["-90.006517","29.963680"],["-90.006326","29.963610"],["-90.006138","29.963534"],["-90.005949","29.963458"],["-90.005929","29.963450"],["-90.005736","29.963384"],["-90.005543","29.963318"],["-90.005349","29.963253"],["-90.005156","29.963187"],["-90.005019","29.963140"],["-90.004829","29.963067"],["-90.004639","29.962994"],["-90.004450","29.962921"],["-90.004290","29.962860"],["-90.004099","29.962790"],["-90.003989","29.962749"],["-90.003801","29.962672"],["-90.003617","29.962590"],["-90.003459","29.962520"],["-90.003274","29.962438"],["-90.003089","29.962357"],["-90.002959","29.962299"],["-90.002790","29.962194"],["-90.002686","29.962130"],["-90.002486","29.962081"],["-90.002287","29.962032"],["-90.002198","29.962010"],["-90.002090","29.961970"],["-90.001899","29.961900"],["-90.001760","29.961849"],["-90.001568","29.961780"],["-90.001377","29.961711"],["-90.001320","29.961690"],["-90.001130","29.961618"],["-90.001000","29.961569"],["-90.000824","29.961474"],["-90.000670","29.961390"],["-90.000469","29.961346"],["-90.000267","29.961303"],["-90.000076","29.961233"],["-89.999910","29.961170"],["-89.999716","29.961106"],["-89.999669","29.961090"],["-89.999489","29.961039"],["-89.999319","29.961000"],["-89.999116","29.960961"],["-89.998911","29.960933"],["-89.998809","29.960919"],["-89.998603","29.960897"],["-89.998440","29.960880"],["-89.998234","29.960858"],["-89.998149","29.960849"],["-89.997943","29.960824"],["-89.997760","29.960790"],["-89.997609","29.960749"],["-89.997414","29.960688"],["-89.997320","29.960659"],["-89.997126","29.960595"],["-89.996950","29.960499"],["-89.996859","29.960450"],["-89.996659","29.960401"],["-89.996460","29.960351"],["-89.996381","29.960332"],["-89.996320","29.960309"],["-89.996132","29.960233"],["-89.995944","29.960157"],["-89.995799","29.960099"],["-89.995611","29.960022"],["-89.995423","29.959946"],["-89.995235","29.959869"],["-89.995048","29.959793"],["-89.994989","29.959769"],["-89.994800","29.959694"],["-89.994612","29.959619"],["-89.994423","29.959544"],["-89.994260","29.959479"],["-89.994072","29.959403"],["-89.993884","29.959326"],["-89.993696","29.959250"],["-89.993508","29.959173"],["-89.993400","29.959129"],["-89.993212","29.959052"],["-89.993024","29.958976"],["-89.992959","29.958949"],["-89.992779","29.958859"],["-89.992605","29.958799"],["-89.992536","29.958737"],["-89.992398","29.958734"],["-89.992294","29.958692"],["-89.992190","29.958649"],["-89.992085","29.958607"],["-89.991981","29.958564"],["-89.991877","29.958522"],["-89.991772","29.958479"],["-89.991637","29.958424"],["-89.991502","29.958369"],["-89.991368","29.958314"],["-89.991233","29.958260"],["-89.991098","29.958205"],["-89.990963","29.958150"],["-89.990828","29.958095"],["-89.990693","29.958040"],["-89.990559","29.957985"],["-89.990424","29.957930"],["-89.990289","29.957875"],["-89.990154","29.957821"],["-89.990019","29.957766"],["-89.989885","29.957711"],["-89.989750","29.957656"],["-89.989615","29.957601"],["-89.989435","29.957509"],["-89.989256","29.957418"],["-89.989077","29.957327"],["-89.988897","29.957236"],["-89.988798","29.957191"],["-89.988698","29.957146"],["-89.988599","29.957101"],["-89.988499","29.957056"],["-89.988333","29.956990"],["-89.988167","29.956924"],["-89.988001","29.956859"],["-89.987835","29.956793"],["-89.987731","29.956758"],["-89.987792","29.956647"],["-89.987852","29.956536"],["-89.987913","29.956425"],["-89.987974","29.956315"],["-89.988035","29.956204"],["-89.988096","29.956093"],["-89.988157","29.955982"],["-89.988218","29.955871"],["-89.988218","29.955871"],["-89.988272","29.955765"],["-89.988326","29.955658"],["-89.988167","29.955578"],["-89.988126","29.955701"],["-89.988086","29.955825"],["-89.988045","29.955948"],["-89.988005","29.956072"],["-89.987964","29.956195"],["-89.987924","29.956318"],["-89.987883","29.956442"],["-89.987843","29.956565"],["-89.987756","29.956728"],["-89.987560","29.956669"],["-89.987429","29.956629"],["-89.987241","29.956553"],["-89.987109","29.956500"],["-89.987029","29.956470"],["-89.986855","29.956372"],["-89.986695","29.956282"],["-89.986495","29.956234"],["-89.986372","29.956204"],["-89.986184","29.956127"],["-89.985996","29.956051"],["-89.985808","29.955975"],["-89.985619","29.955900"],["-89.985431","29.955825"],["-89.985242","29.955750"],["-89.985089","29.955689"],["-89.984900","29.955614"],["-89.984712","29.955539"],["-89.984660","29.955519"],["-89.984471","29.955444"],["-89.984409","29.955419"],["-89.984234","29.955323"],["-89.984058","29.955226"],["-89.984014","29.955202"],["-89.983814","29.955154"],["-89.983691","29.955124"],["-89.983502","29.955049"],["-89.983314","29.954973"],["-89.983126","29.954897"],["-89.982938","29.954821"],["-89.982750","29.954744"],["-89.982562","29.954668"],["-89.982374","29.954591"],["-89.982186","29.954515"],["-89.981999","29.954438"],["-89.981810","29.954362"],["-89.981730","29.954330"],["-89.981540","29.954258"],["-89.981439","29.954220"],["-89.981251","29.954143"],["-89.981169","29.954109"],["-89.981020","29.954050"],["-89.980847","29.953950"],["-89.980699","29.953864"],["-89.980501","29.953811"],["-89.980302","29.953757"],["-89.980111","29.953687"],["-89.979959","29.953629"],["-89.979771","29.953553"],["-89.979583","29.953476"],["-89.979395","29.953400"],["-89.979206","29.953325"],["-89.979017","29.953251"],["-89.978831","29.953171"],["-89.978645","29.953091"],["-89.978459","29.953012"],["-89.978270","29.952938"],["-89.978080","29.952864"],["-89.977891","29.952790"],["-89.977702","29.952715"],["-89.977560","29.952659"],["-89.977381","29.952567"],["-89.977203","29.952475"],["-89.977177","29.952462"],["-89.976983","29.952397"],["-89.976790","29.952332"],["-89.976660","29.952289"],["-89.976470","29.952217"],["-89.976282","29.952141"],["-89.976179","29.952099"],["-89.975991","29.952023"],["-89.975859","29.951970"],["-89.975669","29.951898"],["-89.975481","29.951821"],["-89.975293","29.951744"],["-89.975210","29.951710"],["-89.975021","29.951636"],["-89.974831","29.951562"],["-89.974749","29.951530"],["-89.974571","29.951438"],["-89.974392","29.951346"],["-89.974236","29.951266"],["-89.974040","29.951208"],["-89.973843","29.951149"],["-89.973765","29.951126"],["-89.973609","29.951060"],["-89.973432","29.950966"],["-89.973260","29.950865"],["-89.973100","29.950759"],["-89.973050","29.950720"],["-89.972901","29.950595"],["-89.972859","29.950560"],["-89.972714","29.950431"],["-89.972600","29.950309"],["-89.972560","29.950270"],["-89.972460","29.950149"],["-89.972359","29.950010"],["-89.972261","29.949851"],["-89.972229","29.949800"],["-89.972147","29.949635"],["-89.972070","29.949479"],["-89.972001","29.949309"],["-89.971980","29.949239"],["-89.971940","29.949110"],["-89.971900","29.948934"],["-89.971877","29.948755"],["-89.971869","29.948689"],["-89.971859","29.948529"],["-89.971859","29.948349"],["-89.971859","29.948280"],["-89.971882","29.948101"],["-89.971890","29.948040"],["-89.971925","29.947863"],["-89.971949","29.947740"],["-89.971986","29.947563"],["-89.971999","29.947499"],["-89.972027","29.947321"],["-89.972039","29.947190"],["-89.972049","29.947030"],["-89.972039","29.946899"],["-89.972020","29.946760"],["-89.971989","29.946609"],["-89.971959","29.946490"],["-89.971930","29.946380"],["-89.971880","29.946259"],["-89.971840","29.946169"],["-89.971779","29.946060"],["-89.971707","29.945891"],["-89.971658","29.945778"],["-89.971509","29.945653"],["-89.971409","29.945570"],["-89.971290","29.945459"],["-89.971210","29.945400"],["-89.971149","29.945349"],["-89.970986","29.945238"],["-89.970829","29.945150"],["-89.970710","29.945089"],["-89.970580","29.945030"],["-89.970450","29.944979"],["-89.970310","29.944929"],["-89.970119","29.944858"],["-89.969929","29.944786"],["-89.969738","29.944715"],["-89.969611","29.944665"],["-89.969484","29.944615"],["-89.969357","29.944565"],["-89.969231","29.944515"],["-89.969104","29.944465"],["-89.968977","29.944416"],["-89.968850","29.944366"],["-89.968723","29.944316"],["-89.968560","29.944231"],["-89.968393","29.944194"],["-89.968227","29.944158"],["-89.968035","29.944088"],["-89.967844","29.944019"],["-89.967652","29.943949"],["-89.967461","29.943880"],["-89.967269","29.943810"],["-89.967077","29.943741"],["-89.966886","29.943672"],["-89.966694","29.943602"],["-89.966502","29.943533"],["-89.966311","29.943463"],["-89.966119","29.943394"],["-89.965928","29.943324"],["-89.965736","29.943255"],["-89.965544","29.943186"],["-89.965353","29.943116"],["-89.965161","29.943047"],["-89.964981","29.942980"],["-89.964802","29.942914"],["-89.964622","29.942848"],["-89.964442","29.942782"],["-89.964262","29.942716"],["-89.964082","29.942649"],["-89.963902","29.942583"],["-89.963723","29.942517"],["-89.963664","29.942501"],["-89.963582","29.942649"],["-89.963500","29.942798"],["-89.963452","29.942897"],["-89.963404","29.942995"],["-89.963357","29.943094"],["-89.963309","29.943192"],["-89.963261","29.943291"],["-89.963213","29.943389"],["-89.963165","29.943488"],["-89.963118","29.943586"],["-89.963070","29.943685"],["-89.963022","29.943784"],["-89.962974","29.943882"],["-89.962926","29.943981"],["-89.962879","29.944079"],["-89.962831","29.944178"],["-89.962783","29.944276"],["-89.962735","29.944375"],["-89.962687","29.944474"],["-89.962640","29.944572"],["-89.962592","29.944671"],["-89.962544","29.944769"],["-89.962496","29.944868"],["-89.962448","29.944966"],["-89.962401","29.945065"],["-89.962353","29.945163"],["-89.962305","29.945262"],["-89.962257","29.945361"],["-89.962209","29.945459"],["-89.962162","29.945558"],["-89.962114","29.945656"],["-89.962066","29.945755"],["-89.962018","29.945853"],["-89.961970","29.945952"],["-89.961923","29.946050"],["-89.961875","29.946149"],["-89.961827","29.946248"],["-89.961779","29.946346"],["-89.961731","29.946445"],["-89.961684","29.946543"],["-89.961636","29.946642"],["-89.961588","29.946740"],["-89.961540","29.946839"],["-89.961492","29.946937"],["-89.961445","29.947036"],["-89.961397","29.947135"],["-89.961349","29.947233"],["-89.961301","29.947332"],["-89.961253","29.947430"],["-89.961205","29.947529"],["-89.961158","29.947627"],["-89.961110","29.947726"],["-89.961062","29.947824"],["-89.961014","29.947923"],["-89.960966","29.948022"],["-89.960919","29.948120"],["-89.960871","29.948219"],["-89.960823","29.948317"],["-89.960775","29.948416"],["-89.960727","29.948514"],["-89.960680","29.948613"],["-89.960632","29.948711"],["-89.960584","29.948810"],["-89.960536","29.948909"],["-89.960488","29.949007"],["-89.960441","29.949106"],["-89.960373","29.949246"],["-89.960313","29.949383"],["-89.960253","29.949519"],["-89.960209","29.949612"],["-89.960166","29.949705"],["-89.960123","29.949798"],["-89.960079","29.949892"],["-89.960036","29.949985"],["-89.959992","29.950078"],["-89.959949","29.950171"],["-89.959906","29.950264"],["-89.959862","29.950357"],["-89.959819","29.950450"],["-89.959775","29.950543"],["-89.959732","29.950636"],["-89.959688","29.950729"],["-89.959645","29.950822"],["-89.959602","29.950915"],["-89.959558","29.951008"],["-89.959515","29.951101"],["-89.959471","29.951194"],["-89.959428","29.951287"],["-89.959385","29.951380"],["-89.959341","29.951473"],["-89.959298","29.951566"],["-89.959254","29.951659"],["-89.959211","29.951752"],["-89.959167","29.951845"],["-89.959124","29.951938"],["-89.959081","29.952031"],["-89.959037","29.952124"],["-89.958994","29.952217"],["-89.958950","29.952310"],["-89.958907","29.952403"],["-89.958863","29.952496"],["-89.958793","29.952523"],["-89.958757","29.952634"],["-89.958721","29.952744"],["-89.958685","29.952855"],["-89.958649","29.952966"],["-89.958608","29.953056"],["-89.958566","29.953146"],["-89.958525","29.953236"],["-89.958484","29.953326"],["-89.958443","29.953416"],["-89.958401","29.953506"],["-89.958360","29.953597"],["-89.958319","29.953687"],["-89.958278","29.953777"],["-89.958237","29.953867"],["-89.958195","29.953957"],["-89.958154","29.954047"],["-89.958113","29.954137"],["-89.958072","29.954227"],["-89.958030","29.954317"],["-89.957989","29.954407"],["-89.957933","29.954509"],["-89.957876","29.954610"],["-89.957820","29.954711"],["-89.957764","29.954812"],["-89.957707","29.954913"],["-89.957651","29.955014"],["-89.957595","29.955115"],["-89.957538","29.955216"],["-89.957676","29.955266"],["-89.957813","29.955315"],["-89.957951","29.955364"],["-89.958088","29.955414"],["-89.958226","29.955463"],["-89.958363","29.955513"],["-89.958501","29.955562"],["-89.958638","29.955611"],["-89.958693","29.955516"],["-89.958747","29.955420"],["-89.958802","29.955325"],["-89.958856","29.955230"],["-89.958911","29.955134"],["-89.958965","29.955039"],["-89.959020","29.954943"],["-89.959074","29.954848"],["-89.959074","29.954848"]]}]}},{"type":"Feature","properties":{"route_id":"9","agency_id":"1","route_short_name":"9","route_long_name":"Broad - Napoleon","route_type":"3","route_color":"#ffc421","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.036334","30.005478"],["-89.970367","30.018072"],["-89.973266","30.017358"],["-89.975410","30.016826"],["-89.978419","30.016100"],["-89.985959","30.014756"],["-89.990041","30.014054"],["-89.991868","30.013724"],["-89.992957","30.013515"],["-89.998434","30.012555"],["-90.000532","30.012276"],["-90.002795","30.012017"],["-90.005604","30.011713"],["-90.007033","30.011564"],["-90.009687","30.011284"],["-90.011892","30.011037"],["-90.059611","29.999343"],["-90.063796","29.995052"],["-90.017498","30.010433"],["-90.020049","30.010064"],["-90.035102","30.005970"],["-90.037659","30.004976"],["-90.039948","30.004092"],["-90.042546","30.003173"],["-90.044277","30.002865"],["-90.046285","30.002822"],["-90.047887","30.003127"],["-90.050016","30.003026"],["-90.052975","30.003032"],["-90.054782","30.002679"],["-90.056719","30.001761"],["-90.057897","30.000802"],["-90.067033","29.992438"],["-90.066870","29.990414"],["-90.087333","29.965879"],["-90.097591","29.953387"],["-90.100572","29.951092"],["-90.103705","29.940519"],["-90.103375","29.937295"],["-90.103165","29.935365"],["-90.102879","29.932460"],["-90.102678","29.930540"],["-90.102457","29.928618"],["-90.101873","29.922883"],["-90.101669","29.920879"],["-90.100937","29.917065"],["-90.071702","29.983626"],["-90.058961","29.999941"],["-90.104225","29.945743"],["-90.104046","29.944061"],["-90.103872","29.942297"],["-90.103528","29.939165"],["-90.102112","29.925104"],["-90.101461","29.918825"],["-89.980523","30.015705"],["-89.994662","30.013225"],["-90.015202","30.010682"],["-89.983809","30.015138"],["-89.987717","30.014462"],["-90.060965","29.997896"],["-90.061486","29.997226"],["-90.062784","29.995688"],["-90.068395","29.987235"],["-90.070333","29.985103"],["-90.073944","29.981081"],["-90.075408","29.979462"],["-90.076843","29.977855"],["-90.078335","29.976184"],["-90.080171","29.974076"],["-90.081700","29.972330"],["-90.082847","29.971002"],["-90.084307","29.969360"],["-90.085895","29.967509"],["-90.089745","29.963135"],["-90.090833","29.961793"],["-90.094783","29.957105"],["-90.031676","30.007409"],["-90.034019","30.006378"],["-90.104019","29.949147"],["-90.104401","29.947514"],["-90.099360","29.951766"],["-90.102265","29.926622"],["-90.065925","29.993736"],["-89.974960","30.029613"],["-89.973520","30.030150"],["-90.101311","29.917208"],["-89.984577","30.014995"],["-89.972160","30.032174"],["-89.971184","30.029961"],["-89.969166","30.027130"],["-89.968769","30.024437"],["-89.968473","30.021384"],["-89.971999","30.031174"]]},{"type":"LineString","coordinates":[["-89.972160","30.032174"],["-89.972300","30.032100"],["-89.972400","30.032240"],["-89.972490","30.032360"],["-89.972570","30.032480"],["-89.972640","30.032580"],["-89.972750","30.032740"],["-89.972820","30.032830"],["-89.972930","30.032980"],["-89.973050","30.032915"],["-89.973170","30.032850"],["-89.973355","30.032750"],["-89.973540","30.032650"],["-89.973675","30.032565"],["-89.973810","30.032480"],["-89.973923","30.032410"],["-89.974035","30.032340"],["-89.974148","30.032270"],["-89.974260","30.032200"],["-89.974355","30.032145"],["-89.974450","30.032090"],["-89.974545","30.032035"],["-89.974640","30.031980"],["-89.974735","30.031925"],["-89.974830","30.031870"],["-89.974925","30.031815"],["-89.975020","30.031760"],["-89.975115","30.031709"],["-89.975210","30.031658"],["-89.975305","30.031606"],["-89.975400","30.031555"],["-89.975495","30.031504"],["-89.975590","30.031453"],["-89.975685","30.031401"],["-89.975780","30.031350"],["-89.975880","30.031300"],["-89.975940","30.031260"],["-89.976000","30.031230"],["-89.975910","30.031100"],["-89.975837","30.030990"],["-89.975728","30.030827"],["-89.975618","30.030664"],["-89.975509","30.030501"],["-89.975399","30.030338"],["-89.975290","30.030175"],["-89.975180","30.030012"],["-89.975071","30.029848"],["-89.974961","30.029685"],["-89.974960","30.029613"],["-89.974888","30.029579"],["-89.974778","30.029527"],["-89.974670","30.029548"],["-89.974520","30.029660"],["-89.974405","30.029731"],["-89.974290","30.029802"],["-89.974175","30.029872"],["-89.974060","30.029943"],["-89.973945","30.030014"],["-89.973830","30.030085"],["-89.973715","30.030156"],["-89.973600","30.030227"],["-89.973520","30.030150"],["-89.973531","30.030265"],["-89.973371","30.030364"],["-89.973211","30.030463"],["-89.973050","30.030561"],["-89.972890","30.030660"],["-89.972745","30.030750"],["-89.972600","30.030840"],["-89.972455","30.030930"],["-89.972310","30.031020"],["-89.972165","30.031110"],["-89.972058","30.031155"],["-89.971950","30.031200"],["-89.971999","30.031174"],["-89.971950","30.031200"],["-89.971855","30.031070"],["-89.971760","30.030940"],["-89.971665","30.030810"],["-89.971570","30.030680"],["-89.971560","30.030670"],["-89.971455","30.030525"],["-89.971350","30.030380"],["-89.971245","30.030235"],["-89.971140","30.030090"],["-89.971184","30.029961"],["-89.971076","30.029994"],["-89.970993","30.029877"],["-89.970910","30.029760"],["-89.970830","30.029649"],["-89.970750","30.029538"],["-89.970670","30.029426"],["-89.970590","30.029315"],["-89.970510","30.029204"],["-89.970430","30.029093"],["-89.970350","30.028981"],["-89.970270","30.028870"],["-89.970175","30.028745"],["-89.970080","30.028620"],["-89.970017","30.028523"],["-89.969955","30.028425"],["-89.969892","30.028328"],["-89.969830","30.028230"],["-89.969720","30.028070"],["-89.969655","30.027985"],["-89.969590","30.027900"],["-89.969525","30.027815"],["-89.969460","30.027730"],["-89.969380","30.027605"],["-89.969300","30.027480"],["-89.969280","30.027450"],["-89.969215","30.027355"],["-89.969150","30.027260"],["-89.969090","30.027150"],["-89.969166","30.027130"],["-89.969090","30.027150"],["-89.969080","30.027150"],["-89.969050","30.027080"],["-89.968990","30.026940"],["-89.968950","30.026820"],["-89.968940","30.026800"],["-89.968940","30.026770"],["-89.968940","30.026740"],["-89.968927","30.026635"],["-89.968915","30.026530"],["-89.968902","30.026425"],["-89.968890","30.026320"],["-89.968875","30.026210"],["-89.968860","30.026100"],["-89.968847","30.025978"],["-89.968835","30.025855"],["-89.968822","30.025733"],["-89.968810","30.025610"],["-89.968795","30.025440"],["-89.968780","30.025270"],["-89.968765","30.025100"],["-89.968750","30.024930"],["-89.968737","30.024808"],["-89.968725","30.024685"],["-89.968712","30.024563"],["-89.968700","30.024440"],["-89.968769","30.024437"],["-89.968700","30.024440"],["-89.968680","30.024250"],["-89.968667","30.024120"],["-89.968655","30.023990"],["-89.968642","30.023860"],["-89.968627","30.023733"],["-89.968610","30.023560"],["-89.968595","30.023388"],["-89.968580","30.023215"],["-89.968565","30.023043"],["-89.968550","30.022870"],["-89.968527","30.022700"],["-89.968505","30.022530"],["-89.968482","30.022360"],["-89.968460","30.022190"],["-89.968445","30.022018"],["-89.968430","30.021845"],["-89.968415","30.021673"],["-89.968400","30.021500"],["-89.968390","30.021390"],["-89.968473","30.021384"],["-89.968390","30.021390"],["-89.968375","30.021250"],["-89.968360","30.021110"],["-89.968345","30.020970"],["-89.968330","30.020830"],["-89.968316","30.020693"],["-89.968302","30.020555"],["-89.968289","30.020418"],["-89.968275","30.020280"],["-89.968261","30.020143"],["-89.968247","30.020005"],["-89.968234","30.019868"],["-89.968220","30.019730"],["-89.968207","30.019598"],["-89.968195","30.019465"],["-89.968182","30.019333"],["-89.968170","30.019200"],["-89.968150","30.019035"],["-89.968130","30.018870"],["-89.968115","30.018720"],["-89.968100","30.018570"],["-89.968210","30.018540"],["-89.968320","30.018510"],["-89.968430","30.018480"],["-89.968540","30.018450"],["-89.968743","30.018398"],["-89.968945","30.018345"],["-89.969148","30.018293"],["-89.969350","30.018240"],["-89.969468","30.018213"],["-89.969585","30.018185"],["-89.969703","30.018158"],["-89.969820","30.018130"],["-89.969970","30.018095"],["-89.970120","30.018060"],["-89.970230","30.018030"],["-89.970340","30.018000"],["-89.970367","30.018072"],["-89.970340","30.018000"],["-89.970500","30.017960"],["-89.970600","30.017950"],["-89.970800","30.017890"],["-89.970920","30.017860"],["-89.971070","30.017820"],["-89.971265","30.017773"],["-89.971460","30.017725"],["-89.971655","30.017678"],["-89.971850","30.017630"],["-89.972033","30.017588"],["-89.972215","30.017545"],["-89.972398","30.017503"],["-89.972580","30.017460"],["-89.972730","30.017415"],["-89.972880","30.017370"],["-89.973065","30.017330"],["-89.973250","30.017290"],["-89.973266","30.017358"],["-89.973250","30.017290"],["-89.973385","30.017260"],["-89.973520","30.017230"],["-89.973673","30.017193"],["-89.973825","30.017155"],["-89.973978","30.017118"],["-89.974130","30.017080"],["-89.974340","30.017025"],["-89.974550","30.016970"],["-89.974673","30.016935"],["-89.974795","30.016900"],["-89.974918","30.016865"],["-89.975040","30.016830"],["-89.975210","30.016790"],["-89.975380","30.016750"],["-89.975410","30.016826"],["-89.975380","30.016750"],["-89.975520","30.016710"],["-89.975634","30.016683"],["-89.975748","30.016655"],["-89.975861","30.016628"],["-89.975975","30.016600"],["-89.976089","30.016573"],["-89.976203","30.016545"],["-89.976316","30.016518"],["-89.976430","30.016490"],["-89.976558","30.016458"],["-89.976685","30.016425"],["-89.976813","30.016393"],["-89.976940","30.016360"],["-89.977050","30.016335"],["-89.977160","30.016310"],["-89.977270","30.016285"],["-89.977380","30.016260"],["-89.977490","30.016235"],["-89.977600","30.016210"],["-89.977710","30.016185"],["-89.977820","30.016160"],["-89.977965","30.016130"],["-89.978110","30.016100"],["-89.978255","30.016070"],["-89.978400","30.016040"],["-89.978419","30.016100"],["-89.978400","30.016040"],["-89.978510","30.016010"],["-89.978640","30.015985"],["-89.978770","30.015960"],["-89.978906","30.015934"],["-89.979043","30.015908"],["-89.979179","30.015881"],["-89.979315","30.015855"],["-89.979451","30.015829"],["-89.979588","30.015803"],["-89.979724","30.015776"],["-89.979860","30.015750"],["-89.979990","30.015725"],["-89.980120","30.015700"],["-89.980250","30.015675"],["-89.980380","30.015650"],["-89.980510","30.015630"],["-89.980523","30.015705"],["-89.980510","30.015630"],["-89.980638","30.015608"],["-89.980765","30.015585"],["-89.980893","30.015563"],["-89.981020","30.015540"],["-89.981180","30.015515"],["-89.981340","30.015490"],["-89.981555","30.015465"],["-89.981770","30.015440"],["-89.981905","30.015415"],["-89.982040","30.015390"],["-89.982175","30.015365"],["-89.982310","30.015340"],["-89.982520","30.015300"],["-89.982570","30.015290"],["-89.982683","30.015273"],["-89.982795","30.015255"],["-89.982908","30.015238"],["-89.983020","30.015220"],["-89.983130","30.015198"],["-89.983240","30.015175"],["-89.983350","30.015153"],["-89.983460","30.015130"],["-89.983625","30.015100"],["-89.983790","30.015070"],["-89.983809","30.015138"],["-89.983790","30.015070"],["-89.983920","30.015050"],["-89.984080","30.015020"],["-89.984240","30.014990"],["-89.984400","30.014960"],["-89.984560","30.014930"],["-89.984577","30.014995"],["-89.984560","30.014930"],["-89.984670","30.014910"],["-89.984829","30.014881"],["-89.984988","30.014853"],["-89.985146","30.014824"],["-89.985305","30.014795"],["-89.985464","30.014766"],["-89.985623","30.014738"],["-89.985781","30.014709"],["-89.985940","30.014680"],["-89.985959","30.014756"],["-89.985940","30.014680"],["-89.986090","30.014660"],["-89.986291","30.014625"],["-89.986493","30.014590"],["-89.986694","30.014555"],["-89.986895","30.014520"],["-89.987096","30.014485"],["-89.987298","30.014450"],["-89.987499","30.014415"],["-89.987700","30.014380"],["-89.987717","30.014462"],["-89.987700","30.014380"],["-89.987910","30.014350"],["-89.988085","30.014320"],["-89.988260","30.014290"],["-89.988415","30.014263"],["-89.988570","30.014235"],["-89.988725","30.014208"],["-89.988880","30.014180"],["-89.989060","30.014145"],["-89.989240","30.014110"],["-89.989435","30.014075"],["-89.989630","30.014040"],["-89.989825","30.014005"],["-89.990020","30.013970"],["-89.990041","30.014054"],["-89.990020","30.013970"],["-89.990110","30.013960"],["-89.990325","30.013923"],["-89.990540","30.013885"],["-89.990755","30.013848"],["-89.990970","30.013810"],["-89.991080","30.013790"],["-89.991190","30.013770"],["-89.991300","30.013750"],["-89.991410","30.013730"],["-89.991520","30.013710"],["-89.991630","30.013690"],["-89.991740","30.013670"],["-89.991850","30.013650"],["-89.991868","30.013724"],["-89.991850","30.013650"],["-89.991990","30.013620"],["-89.992109","30.013599"],["-89.992228","30.013578"],["-89.992346","30.013556"],["-89.992465","30.013535"],["-89.992584","30.013514"],["-89.992703","30.013493"],["-89.992821","30.013471"],["-89.992940","30.013450"],["-89.992957","30.013515"],["-89.992940","30.013450"],["-89.993040","30.013440"],["-89.993160","30.013420"],["-89.993280","30.013400"],["-89.993400","30.013380"],["-89.993520","30.013360"],["-89.993635","30.013341"],["-89.993750","30.013323"],["-89.993865","30.013304"],["-89.993980","30.013285"],["-89.994095","30.013266"],["-89.994210","30.013248"],["-89.994325","30.013229"],["-89.994440","30.013210"],["-89.994650","30.013170"],["-89.994662","30.013225"],["-89.994650","30.013170"],["-89.994799","30.013143"],["-89.994948","30.013115"],["-89.995096","30.013088"],["-89.995245","30.013060"],["-89.995394","30.013033"],["-89.995543","30.013005"],["-89.995691","30.012978"],["-89.995840","30.012950"],["-89.996000","30.012920"],["-89.996210","30.012890"],["-89.996400","30.012855"],["-89.996590","30.012820"],["-89.996780","30.012785"],["-89.996970","30.012750"],["-89.997020","30.012740"],["-89.997230","30.012710"],["-89.997340","30.012690"],["-89.997450","30.012670"],["-89.997560","30.012650"],["-89.997670","30.012630"],["-89.997780","30.012610"],["-89.997890","30.012590"],["-89.998000","30.012570"],["-89.998110","30.012550"],["-89.998265","30.012520"],["-89.998420","30.012490"],["-89.998434","30.012555"],["-89.998420","30.012490"],["-89.998540","30.012470"],["-89.998670","30.012450"],["-89.998885","30.012415"],["-89.999100","30.012380"],["-89.999213","30.012363"],["-89.999325","30.012345"],["-89.999438","30.012328"],["-89.999550","30.012310"],["-89.999610","30.012310"],["-89.999810","30.012280"],["-89.999988","30.012260"],["-90.000165","30.012240"],["-90.000343","30.012220"],["-90.000520","30.012200"],["-90.000532","30.012276"],["-90.000520","30.012200"],["-90.000640","30.012190"],["-90.000760","30.012176"],["-90.000880","30.012163"],["-90.001000","30.012149"],["-90.001120","30.012135"],["-90.001240","30.012121"],["-90.001360","30.012108"],["-90.001480","30.012094"],["-90.001600","30.012080"],["-90.001745","30.012065"],["-90.001890","30.012050"],["-90.002035","30.012035"],["-90.002180","30.012020"],["-90.002335","30.012005"],["-90.002490","30.011990"],["-90.002640","30.011975"],["-90.002790","30.011960"],["-90.002795","30.012017"],["-90.002790","30.011960"],["-90.002890","30.011950"],["-90.003063","30.011931"],["-90.003235","30.011913"],["-90.003408","30.011894"],["-90.003580","30.011875"],["-90.003753","30.011856"],["-90.003925","30.011838"],["-90.004098","30.011819"],["-90.004270","30.011800"],["-90.004435","30.011781"],["-90.004600","30.011763"],["-90.004765","30.011744"],["-90.004930","30.011725"],["-90.005095","30.011706"],["-90.005260","30.011688"],["-90.005425","30.011669"],["-90.005590","30.011650"],["-90.005604","30.011713"],["-90.005590","30.011650"],["-90.005735","30.011635"],["-90.005880","30.011620"],["-90.006023","30.011604"],["-90.006165","30.011588"],["-90.006308","30.011571"],["-90.006450","30.011555"],["-90.006593","30.011539"],["-90.006735","30.011523"],["-90.006878","30.011506"],["-90.007020","30.011490"],["-90.007033","30.011564"],["-90.007020","30.011490"],["-90.007180","30.011480"],["-90.007313","30.011466"],["-90.007445","30.011453"],["-90.007578","30.011439"],["-90.007710","30.011425"],["-90.007843","30.011411"],["-90.007975","30.011398"],["-90.008108","30.011384"],["-90.008240","30.011370"],["-90.008395","30.011353"],["-90.008550","30.011335"],["-90.008705","30.011318"],["-90.008860","30.011300"],["-90.008995","30.011288"],["-90.009130","30.011275"],["-90.009265","30.011263"],["-90.009400","30.011250"],["-90.009540","30.011235"],["-90.009680","30.011220"],["-90.009687","30.011284"],["-90.009680","30.011220"],["-90.009760","30.011210"],["-90.009873","30.011196"],["-90.009985","30.011183"],["-90.010098","30.011169"],["-90.010210","30.011155"],["-90.010323","30.011141"],["-90.010435","30.011128"],["-90.010548","30.011114"],["-90.010660","30.011100"],["-90.010790","30.011090"],["-90.010920","30.011080"],["-90.011041","30.011069"],["-90.011163","30.011058"],["-90.011284","30.011046"],["-90.011405","30.011035"],["-90.011526","30.011024"],["-90.011648","30.011013"],["-90.011769","30.011001"],["-90.011890","30.010990"],["-90.011892","30.011037"],["-90.011890","30.010990"],["-90.012030","30.010980"],["-90.012155","30.010965"],["-90.012280","30.010950"],["-90.012490","30.010930"],["-90.012630","30.010915"],["-90.012770","30.010900"],["-90.012780","30.010890"],["-90.012840","30.010890"],["-90.012900","30.010880"],["-90.012920","30.010880"],["-90.013140","30.010860"],["-90.013180","30.010850"],["-90.013190","30.010850"],["-90.013350","30.010830"],["-90.013530","30.010808"],["-90.013710","30.010785"],["-90.013890","30.010763"],["-90.014070","30.010740"],["-90.014230","30.010720"],["-90.014390","30.010700"],["-90.014560","30.010685"],["-90.014730","30.010670"],["-90.014900","30.010650"],["-90.015070","30.010630"],["-90.015190","30.010620"],["-90.015202","30.010682"],["-90.015190","30.010620"],["-90.015300","30.010610"],["-90.015476","30.010590"],["-90.015653","30.010570"],["-90.015829","30.010550"],["-90.016005","30.010530"],["-90.016181","30.010510"],["-90.016358","30.010490"],["-90.016534","30.010470"],["-90.016710","30.010450"],["-90.016840","30.010438"],["-90.016970","30.010425"],["-90.017100","30.010413"],["-90.017230","30.010400"],["-90.017360","30.010385"],["-90.017490","30.010370"],["-90.017498","30.010433"],["-90.017490","30.010380"],["-90.017600","30.010370"],["-90.017770","30.010350"],["-90.017940","30.010330"],["-90.018108","30.010311"],["-90.018275","30.010293"],["-90.018443","30.010274"],["-90.018610","30.010255"],["-90.018778","30.010236"],["-90.018945","30.010218"],["-90.019113","30.010199"],["-90.019280","30.010180"],["-90.019400","30.010170"],["-90.019520","30.010160"],["-90.019685","30.010135"],["-90.019850","30.010110"],["-90.020050","30.010070"],["-90.020049","30.010064"],["-90.020050","30.010070"],["-90.020190","30.010040"],["-90.020330","30.010010"],["-90.020453","30.009983"],["-90.020575","30.009955"],["-90.020698","30.009928"],["-90.020820","30.009900"],["-90.020920","30.009890"],["-90.021078","30.009848"],["-90.021235","30.009805"],["-90.021393","30.009763"],["-90.021550","30.009720"],["-90.021755","30.009675"],["-90.021960","30.009630"],["-90.022155","30.009580"],["-90.022350","30.009530"],["-90.022519","30.009489"],["-90.022688","30.009448"],["-90.022856","30.009406"],["-90.023025","30.009365"],["-90.023194","30.009324"],["-90.023363","30.009283"],["-90.023531","30.009241"],["-90.023700","30.009200"],["-90.023830","30.009170"],["-90.023910","30.009150"],["-90.023960","30.009140"],["-90.024030","30.009120"],["-90.024150","30.009090"],["-90.024220","30.009070"],["-90.024250","30.009070"],["-90.024310","30.009050"],["-90.024400","30.009030"],["-90.024440","30.009020"],["-90.024580","30.008990"],["-90.024705","30.008959"],["-90.024830","30.008928"],["-90.024955","30.008896"],["-90.025080","30.008865"],["-90.025205","30.008834"],["-90.025330","30.008803"],["-90.025455","30.008771"],["-90.025580","30.008740"],["-90.025780","30.008690"],["-90.025980","30.008645"],["-90.026180","30.008600"],["-90.026380","30.008550"],["-90.026480","30.008530"],["-90.026680","30.008480"],["-90.026880","30.008430"],["-90.026950","30.008410"],["-90.027150","30.008360"],["-90.027350","30.008320"],["-90.027550","30.008260"],["-90.027750","30.008220"],["-90.027940","30.008170"],["-90.028090","30.008138"],["-90.028240","30.008105"],["-90.028390","30.008073"],["-90.028540","30.008040"],["-90.028630","30.008060"],["-90.028660","30.008060"],["-90.028730","30.008070"],["-90.028810","30.008060"],["-90.028830","30.008050"],["-90.028950","30.008030"],["-90.029070","30.008010"],["-90.029220","30.007990"],["-90.029350","30.007970"],["-90.029520","30.007950"],["-90.029590","30.007940"],["-90.029640","30.007940"],["-90.029760","30.007940"],["-90.029810","30.007940"],["-90.029840","30.007940"],["-90.029860","30.007940"],["-90.029940","30.007950"],["-90.030030","30.007950"],["-90.030040","30.007950"],["-90.030070","30.007960"],["-90.030240","30.007980"],["-90.030380","30.008020"],["-90.030420","30.008030"],["-90.030440","30.008040"],["-90.030500","30.008060"],["-90.030600","30.008110"],["-90.030660","30.008160"],["-90.030720","30.008220"],["-90.030760","30.008270"],["-90.030810","30.008350"],["-90.030830","30.008400"],["-90.030840","30.008440"],["-90.030850","30.008530"],["-90.030850","30.008590"],["-90.030850","30.008600"],["-90.030840","30.008680"],["-90.030820","30.008730"],["-90.030800","30.008770"],["-90.030770","30.008830"],["-90.030720","30.008890"],["-90.030670","30.008940"],["-90.030610","30.008980"],["-90.030530","30.009020"],["-90.030430","30.009000"],["-90.030360","30.008980"],["-90.030300","30.008910"],["-90.030220","30.008810"],["-90.030170","30.008685"],["-90.030120","30.008560"],["-90.030150","30.008480"],["-90.030160","30.008390"],["-90.030140","30.008270"],["-90.030110","30.008150"],["-90.030075","30.008055"],["-90.030040","30.007960"],["-90.030030","30.007950"],["-90.030030","30.007940"],["-90.029970","30.007790"],["-90.030090","30.007755"],["-90.030210","30.007720"],["-90.030320","30.007690"],["-90.030525","30.007640"],["-90.030730","30.007590"],["-90.030930","30.007535"],["-90.031130","30.007480"],["-90.031180","30.007470"],["-90.031345","30.007415"],["-90.031510","30.007360"],["-90.031710","30.007310"],["-90.031750","30.007380"],["-90.031676","30.007409"],["-90.031750","30.007380"],["-90.031710","30.007310"],["-90.031835","30.007265"],["-90.031960","30.007220"],["-90.032120","30.007160"],["-90.032280","30.007100"],["-90.032350","30.007070"],["-90.032450","30.007025"],["-90.032550","30.006980"],["-90.032650","30.006935"],["-90.032750","30.006890"],["-90.032890","30.006830"],["-90.032910","30.006820"],["-90.032930","30.006800"],["-90.032950","30.006790"],["-90.033020","30.006700"],["-90.033180","30.006640"],["-90.033340","30.006580"],["-90.033440","30.006540"],["-90.033590","30.006490"],["-90.033790","30.006410"],["-90.033905","30.006394"],["-90.034019","30.006378"],["-90.033990","30.006330"],["-90.034160","30.006260"],["-90.034350","30.006190"],["-90.034540","30.006110"],["-90.034720","30.006040"],["-90.034890","30.005970"],["-90.035060","30.005900"],["-90.035102","30.005970"],["-90.035070","30.005910"],["-90.035238","30.005840"],["-90.035405","30.005770"],["-90.035573","30.005700"],["-90.035740","30.005630"],["-90.035883","30.005580"],["-90.036025","30.005530"],["-90.036168","30.005480"],["-90.036310","30.005430"],["-90.036334","30.005478"],["-90.036310","30.005430"],["-90.036380","30.005410"],["-90.036580","30.005330"],["-90.036770","30.005260"],["-90.036960","30.005185"],["-90.037150","30.005110"],["-90.037270","30.005063"],["-90.037390","30.005015"],["-90.037510","30.004968"],["-90.037659","30.004976"],["-90.037630","30.004910"],["-90.037755","30.004863"],["-90.037880","30.004815"],["-90.038005","30.004768"],["-90.038130","30.004720"],["-90.038250","30.004673"],["-90.038370","30.004625"],["-90.038490","30.004578"],["-90.038610","30.004530"],["-90.038723","30.004488"],["-90.038835","30.004445"],["-90.038948","30.004403"],["-90.039060","30.004360"],["-90.039200","30.004300"],["-90.039290","30.004260"],["-90.039405","30.004215"],["-90.039520","30.004170"],["-90.039715","30.004095"],["-90.039910","30.004020"],["-90.039948","30.004092"],["-90.039910","30.004020"],["-90.040000","30.003980"],["-90.040090","30.003950"],["-90.040190","30.003910"],["-90.040328","30.003856"],["-90.040465","30.003803"],["-90.040603","30.003749"],["-90.040740","30.003695"],["-90.040878","30.003641"],["-90.041015","30.003588"],["-90.041153","30.003534"],["-90.041290","30.003480"],["-90.041415","30.003435"],["-90.041540","30.003390"],["-90.041695","30.003340"],["-90.041850","30.003290"],["-90.041958","30.003258"],["-90.042065","30.003225"],["-90.042173","30.003193"],["-90.042280","30.003160"],["-90.042400","30.003125"],["-90.042520","30.003090"],["-90.042546","30.003173"],["-90.042520","30.003090"],["-90.042600","30.003070"],["-90.042785","30.003030"],["-90.042970","30.002990"],["-90.043110","30.002965"],["-90.043250","30.002940"],["-90.043415","30.002910"],["-90.043580","30.002880"],["-90.043775","30.002860"],["-90.043970","30.002840"],["-90.044150","30.002820"],["-90.044270","30.002820"],["-90.044277","30.002865"],["-90.044270","30.002820"],["-90.044360","30.002810"],["-90.044550","30.002795"],["-90.044740","30.002780"],["-90.044905","30.002770"],["-90.045070","30.002760"],["-90.045235","30.002750"],["-90.045400","30.002740"],["-90.045515","30.002735"],["-90.045630","30.002730"],["-90.045745","30.002725"],["-90.045860","30.002720"],["-90.045990","30.002730"],["-90.046100","30.002740"],["-90.046220","30.002750"],["-90.046300","30.002760"],["-90.046285","30.002822"],["-90.046300","30.002760"],["-90.046430","30.002790"],["-90.046546","30.002818"],["-90.046662","30.002845"],["-90.046779","30.002873"],["-90.046895","30.002900"],["-90.047011","30.002928"],["-90.047127","30.002955"],["-90.047244","30.002983"],["-90.047360","30.003010"],["-90.047520","30.003050"],["-90.047720","30.003080"],["-90.047890","30.003090"],["-90.047887","30.003127"],["-90.047890","30.003090"],["-90.047950","30.003100"],["-90.048100","30.003100"],["-90.048290","30.003100"],["-90.048405","30.003093"],["-90.048520","30.003085"],["-90.048635","30.003078"],["-90.048750","30.003070"],["-90.048865","30.003063"],["-90.048980","30.003055"],["-90.049095","30.003048"],["-90.049210","30.003040"],["-90.049340","30.003030"],["-90.049470","30.003020"],["-90.049605","30.003013"],["-90.049740","30.003005"],["-90.049875","30.002998"],["-90.050010","30.002990"],["-90.050016","30.003026"],["-90.050010","30.002990"],["-90.050150","30.002980"],["-90.050310","30.002990"],["-90.050428","30.002990"],["-90.050545","30.002990"],["-90.050663","30.002990"],["-90.050780","30.002990"],["-90.050898","30.002990"],["-90.051015","30.002990"],["-90.051133","30.002990"],["-90.051250","30.002990"],["-90.051364","30.002989"],["-90.051478","30.002988"],["-90.051591","30.002986"],["-90.051705","30.002985"],["-90.051819","30.002984"],["-90.051933","30.002983"],["-90.052046","30.002981"],["-90.052160","30.002980"],["-90.052275","30.002980"],["-90.052390","30.002980"],["-90.052505","30.002980"],["-90.052620","30.002980"],["-90.052795","30.002980"],["-90.052970","30.002980"],["-90.052975","30.003032"],["-90.052970","30.002980"],["-90.053070","30.002980"],["-90.053225","30.002955"],["-90.053380","30.002930"],["-90.053530","30.002910"],["-90.053680","30.002890"],["-90.053815","30.002870"],["-90.053950","30.002850"],["-90.054120","30.002810"],["-90.054230","30.002785"],["-90.054340","30.002760"],["-90.054460","30.002720"],["-90.054580","30.002680"],["-90.054760","30.002630"],["-90.054782","30.002679"],["-90.054760","30.002630"],["-90.054880","30.002590"],["-90.055020","30.002530"],["-90.055180","30.002460"],["-90.055330","30.002400"],["-90.055490","30.002325"],["-90.055650","30.002250"],["-90.055810","30.002175"],["-90.055970","30.002100"],["-90.056083","30.002045"],["-90.056195","30.001990"],["-90.056308","30.001935"],["-90.056420","30.001880"],["-90.056550","30.001795"],["-90.056680","30.001710"],["-90.056719","30.001761"],["-90.056680","30.001710"],["-90.056840","30.001600"],["-90.056925","30.001535"],["-90.057010","30.001470"],["-90.057130","30.001380"],["-90.057180","30.001340"],["-90.057310","30.001240"],["-90.057440","30.001140"],["-90.057570","30.001040"],["-90.057700","30.000940"],["-90.057785","30.000875"],["-90.057890","30.000800"],["-90.057897","30.000802"],["-90.057890","30.000800"],["-90.057985","30.000725"],["-90.058080","30.000650"],["-90.058100","30.000640"],["-90.058200","30.000560"],["-90.058360","30.000430"],["-90.058470","30.000350"],["-90.058580","30.000270"],["-90.058680","30.000193"],["-90.058780","30.000115"],["-90.058880","30.000038"],["-90.058980","29.999960"],["-90.058961","29.999941"],["-90.058980","29.999960"],["-90.059130","29.999850"],["-90.059285","29.999735"],["-90.059440","29.999620"],["-90.059560","29.999480"],["-90.059670","29.999350"],["-90.059611","29.999343"],["-90.059670","29.999350"],["-90.059710","29.999290"],["-90.059785","29.999205"],["-90.059860","29.999120"],["-90.059990","29.998970"],["-90.060050","29.998900"],["-90.060150","29.998780"],["-90.060248","29.998665"],["-90.060345","29.998550"],["-90.060443","29.998435"],["-90.060540","29.998320"],["-90.060620","29.998225"],["-90.060700","29.998130"],["-90.060780","29.998035"],["-90.060860","29.997940"],["-90.060965","29.997896"],["-90.061081","29.997747"],["-90.061197","29.997598"],["-90.061313","29.997449"],["-90.061429","29.997299"],["-90.061486","29.997226"],["-90.061557","29.997057"],["-90.061604","29.996944"],["-90.061650","29.996890"],["-90.061769","29.996749"],["-90.061892","29.996604"],["-90.061930","29.996559"],["-90.061980","29.996499"],["-90.062070","29.996389"],["-90.062189","29.996242"],["-90.062308","29.996094"],["-90.062428","29.995947"],["-90.062499","29.995859"],["-90.062670","29.995757"],["-90.062784","29.995688"],["-90.062901","29.995539"],["-90.062979","29.995440"],["-90.063146","29.995333"],["-90.063313","29.995226"],["-90.063449","29.995139"],["-90.063648","29.995089"],["-90.063796","29.995052"],["-90.063790","29.995010"],["-90.063850","29.994970"],["-90.063980","29.994890"],["-90.064110","29.994810"],["-90.064240","29.994730"],["-90.064370","29.994650"],["-90.064500","29.994570"],["-90.064630","29.994490"],["-90.064760","29.994410"],["-90.064890","29.994330"],["-90.065040","29.994238"],["-90.065190","29.994145"],["-90.065340","29.994053"],["-90.065490","29.993960"],["-90.065598","29.993900"],["-90.065705","29.993840"],["-90.065813","29.993780"],["-90.065920","29.993720"],["-90.065925","29.993736"],["-90.065920","29.993720"],["-90.066000","29.993680"],["-90.066128","29.993605"],["-90.066255","29.993530"],["-90.066383","29.993455"],["-90.066510","29.993380"],["-90.066623","29.993308"],["-90.066735","29.993235"],["-90.066848","29.993163"],["-90.066960","29.993090"],["-90.067010","29.993020"],["-90.067020","29.993000"],["-90.067030","29.992970"],["-90.067030","29.992940"],["-90.067020","29.992880"],["-90.067010","29.992770"],["-90.067000","29.992660"],["-90.066990","29.992550"],["-90.066980","29.992440"],["-90.067033","29.992438"],["-90.066980","29.992440"],["-90.066980","29.992370"],["-90.066970","29.992240"],["-90.066960","29.992125"],["-90.066950","29.992010"],["-90.066940","29.991895"],["-90.066930","29.991780"],["-90.066920","29.991690"],["-90.066930","29.991620"],["-90.066920","29.991480"],["-90.066910","29.991340"],["-90.066900","29.991240"],["-90.066885","29.991125"],["-90.066870","29.991010"],["-90.066870","29.991000"],["-90.066870","29.990980"],["-90.066870","29.990960"],["-90.066860","29.990940"],["-90.066850","29.990860"],["-90.066840","29.990730"],["-90.066840","29.990710"],["-90.066835","29.990610"],["-90.066830","29.990510"],["-90.066820","29.990420"],["-90.066870","29.990414"],["-90.066820","29.990420"],["-90.066820","29.990340"],["-90.066810","29.990170"],["-90.066800","29.990000"],["-90.066780","29.989810"],["-90.066780","29.989705"],["-90.066780","29.989600"],["-90.066780","29.989465"],["-90.066780","29.989330"],["-90.066780","29.989260"],["-90.066790","29.989200"],["-90.066830","29.989050"],["-90.066880","29.988920"],["-90.066960","29.988760"],["-90.066980","29.988720"],["-90.067030","29.988640"],["-90.067110","29.988520"],["-90.067130","29.988500"],["-90.067180","29.988430"],["-90.067250","29.988350"],["-90.067290","29.988320"],["-90.067380","29.988210"],["-90.067500","29.988080"],["-90.067560","29.988020"],["-90.067660","29.987910"],["-90.067740","29.987840"],["-90.067770","29.987810"],["-90.067920","29.987680"],["-90.067950","29.987660"],["-90.068000","29.987600"],["-90.068090","29.987520"],["-90.068230","29.987380"],["-90.068370","29.987240"],["-90.068380","29.987230"],["-90.068395","29.987235"],["-90.068514","29.987088"],["-90.068633","29.986940"],["-90.068685","29.986876"],["-90.068812","29.986734"],["-90.068939","29.986592"],["-90.069030","29.986490"],["-90.069080","29.986430"],["-90.069209","29.986289"],["-90.069337","29.986148"],["-90.069390","29.986090"],["-90.069520","29.985950"],["-90.069650","29.985809"],["-90.069780","29.985669"],["-90.069910","29.985529"],["-90.070039","29.985388"],["-90.070177","29.985254"],["-90.070316","29.985120"],["-90.070333","29.985103"],["-90.070310","29.985090"],["-90.070380","29.985010"],["-90.070481","29.984896"],["-90.070583","29.984783"],["-90.070684","29.984669"],["-90.070785","29.984555"],["-90.070886","29.984441"],["-90.070988","29.984328"],["-90.071089","29.984214"],["-90.071190","29.984100"],["-90.071210","29.984070"],["-90.071230","29.984060"],["-90.071250","29.984030"],["-90.071320","29.983950"],["-90.071398","29.983858"],["-90.071475","29.983765"],["-90.071553","29.983673"],["-90.071630","29.983580"],["-90.071702","29.983626"],["-90.071630","29.983580"],["-90.071760","29.983430"],["-90.071840","29.983340"],["-90.071965","29.983200"],["-90.072090","29.983060"],["-90.072210","29.982930"],["-90.072330","29.982800"],["-90.072440","29.982680"],["-90.072550","29.982560"],["-90.072625","29.982475"],["-90.072700","29.982390"],["-90.072775","29.982305"],["-90.072850","29.982220"],["-90.072955","29.982103"],["-90.073060","29.981985"],["-90.073165","29.981868"],["-90.073270","29.981750"],["-90.073340","29.981670"],["-90.073445","29.981550"],["-90.073550","29.981430"],["-90.073655","29.981310"],["-90.073760","29.981190"],["-90.073890","29.981040"],["-90.073944","29.981081"],["-90.074042","29.980923"],["-90.074107","29.980818"],["-90.074234","29.980675"],["-90.074360","29.980533"],["-90.074487","29.980390"],["-90.074614","29.980248"],["-90.074710","29.980140"],["-90.074837","29.979998"],["-90.074964","29.979855"],["-90.075091","29.979713"],["-90.075244","29.979592"],["-90.075397","29.979470"],["-90.075408","29.979462"],["-90.075509","29.979305"],["-90.075610","29.979148"],["-90.075659","29.979072"],["-90.075783","29.978928"],["-90.075908","29.978784"],["-90.076032","29.978640"],["-90.076119","29.978540"],["-90.076246","29.978398"],["-90.076374","29.978256"],["-90.076501","29.978114"],["-90.076657","29.977995"],["-90.076814","29.977877"],["-90.076843","29.977855"],["-90.076928","29.977691"],["-90.076983","29.977585"],["-90.077090","29.977460"],["-90.077216","29.977317"],["-90.077342","29.977174"],["-90.077468","29.977031"],["-90.077594","29.976888"],["-90.077721","29.976746"],["-90.077847","29.976603"],["-90.077976","29.976462"],["-90.078131","29.976342"],["-90.078286","29.976222"],["-90.078335","29.976184"],["-90.078414","29.976018"],["-90.078457","29.975927"],["-90.078570","29.975800"],["-90.078698","29.975659"],["-90.078827","29.975517"],["-90.078870","29.975470"],["-90.078993","29.975325"],["-90.079090","29.975210"],["-90.079215","29.975066"],["-90.079340","29.974922"],["-90.079464","29.974779"],["-90.079550","29.974680"],["-90.079671","29.974534"],["-90.079792","29.974388"],["-90.079914","29.974242"],["-90.080080","29.974135"],["-90.080171","29.974076"],["-90.080259","29.973913"],["-90.080330","29.973783"],["-90.080451","29.973637"],["-90.080576","29.973493"],["-90.080701","29.973350"],["-90.080826","29.973206"],["-90.080920","29.973099"],["-90.081045","29.972955"],["-90.081170","29.972812"],["-90.081295","29.972668"],["-90.081419","29.972524"],["-90.081581","29.972412"],["-90.081700","29.972330"],["-90.081782","29.972165"],["-90.081846","29.972037"],["-90.081973","29.971895"],["-90.082099","29.971752"],["-90.082226","29.971609"],["-90.082352","29.971467"],["-90.082439","29.971369"],["-90.082566","29.971227"],["-90.082719","29.971105"],["-90.082847","29.971002"],["-90.082940","29.970841"],["-90.083034","29.970681"],["-90.083155","29.970535"],["-90.083279","29.970391"],["-90.083405","29.970248"],["-90.083532","29.970105"],["-90.083659","29.969963"],["-90.083785","29.969820"],["-90.083910","29.969677"],["-90.083970","29.969610"],["-90.084128","29.969493"],["-90.084285","29.969376"],["-90.084307","29.969360"],["-90.084424","29.969211"],["-90.084540","29.969062"],["-90.084593","29.968995"],["-90.084690","29.968910"],["-90.084820","29.968770"],["-90.084947","29.968627"],["-90.084980","29.968590"],["-90.085086","29.968435"],["-90.085110","29.968400"],["-90.085207","29.968241"],["-90.085250","29.968170"],["-90.085374","29.968026"],["-90.085498","29.967881"],["-90.085597","29.967788"],["-90.085697","29.967695"],["-90.085796","29.967602"],["-90.085895","29.967509"],["-90.085941","29.967342"],["-90.086020","29.967252"],["-90.086099","29.967161"],["-90.086178","29.967071"],["-90.086257","29.966980"],["-90.086335","29.966890"],["-90.086414","29.966799"],["-90.086493","29.966709"],["-90.086572","29.966618"],["-90.086651","29.966528"],["-90.086729","29.966438"],["-90.086808","29.966347"],["-90.086887","29.966257"],["-90.086966","29.966166"],["-90.087045","29.966076"],["-90.087123","29.965985"],["-90.087202","29.965895"],["-90.087333","29.965879"],["-90.087418","29.965724"],["-90.087503","29.965570"],["-90.087628","29.965423"],["-90.087752","29.965277"],["-90.087877","29.965131"],["-90.088002","29.964984"],["-90.088127","29.964838"],["-90.088252","29.964692"],["-90.088377","29.964546"],["-90.088502","29.964399"],["-90.088626","29.964253"],["-90.088751","29.964107"],["-90.088876","29.963960"],["-90.089001","29.963814"],["-90.089126","29.963668"],["-90.089251","29.963521"],["-90.089376","29.963375"],["-90.089500","29.963229"],["-90.089623","29.963182"],["-90.089745","29.963135"],["-90.089670","29.963090"],["-90.089750","29.963010"],["-90.089820","29.962920"],["-90.089925","29.962800"],["-90.090030","29.962680"],["-90.090135","29.962560"],["-90.090240","29.962440"],["-90.090315","29.962353"],["-90.090390","29.962265"],["-90.090465","29.962178"],["-90.090540","29.962090"],["-90.090625","29.962000"],["-90.090710","29.961910"],["-90.090820","29.961780"],["-90.090833","29.961793"],["-90.090820","29.961780"],["-90.090920","29.961660"],["-90.091000","29.961565"],["-90.091080","29.961470"],["-90.091168","29.961368"],["-90.091255","29.961265"],["-90.091343","29.961163"],["-90.091430","29.961060"],["-90.091520","29.960940"],["-90.091590","29.960850"],["-90.091700","29.960730"],["-90.091740","29.960690"],["-90.091830","29.960590"],["-90.091915","29.960470"],["-90.092000","29.960350"],["-90.092075","29.960263"],["-90.092150","29.960175"],["-90.092225","29.960088"],["-90.092300","29.960000"],["-90.092430","29.959860"],["-90.092550","29.959710"],["-90.092670","29.959570"],["-90.092770","29.959455"],["-90.092870","29.959340"],["-90.092995","29.959200"],["-90.093120","29.959060"],["-90.093170","29.959000"],["-90.093210","29.958960"],["-90.093230","29.958930"],["-90.093340","29.958810"],["-90.093340","29.958800"],["-90.093380","29.958760"],["-90.093510","29.958620"],["-90.093610","29.958500"],["-90.093660","29.958450"],["-90.093735","29.958365"],["-90.093810","29.958280"],["-90.093870","29.958220"],["-90.093940","29.958140"],["-90.093960","29.958120"],["-90.094070","29.958000"],["-90.094080","29.957980"],["-90.094090","29.957970"],["-90.094100","29.957960"],["-90.094110","29.957950"],["-90.094190","29.957850"],["-90.094310","29.957700"],["-90.094385","29.957595"],["-90.094460","29.957490"],["-90.094520","29.957430"],["-90.094590","29.957340"],["-90.094680","29.957220"],["-90.094770","29.957100"],["-90.094783","29.957105"],["-90.094770","29.957100"],["-90.094790","29.957060"],["-90.094820","29.957020"],["-90.094870","29.956950"],["-90.094970","29.956820"],["-90.095030","29.956730"],["-90.095090","29.956650"],["-90.095130","29.956610"],["-90.095150","29.956580"],["-90.095225","29.956480"],["-90.095300","29.956380"],["-90.095310","29.956350"],["-90.095360","29.956270"],["-90.095420","29.956190"],["-90.095450","29.956140"],["-90.095530","29.956040"],["-90.095610","29.955940"],["-90.095640","29.955900"],["-90.095640","29.955890"],["-90.095750","29.955740"],["-90.095860","29.955590"],["-90.095940","29.955480"],["-90.096020","29.955370"],["-90.096080","29.955300"],["-90.096150","29.955200"],["-90.096190","29.955150"],["-90.096310","29.954990"],["-90.096410","29.954840"],["-90.096470","29.954770"],["-90.096510","29.954710"],["-90.096630","29.954550"],["-90.096740","29.954405"],["-90.096850","29.954260"],["-90.096880","29.954210"],["-90.096910","29.954170"],["-90.096990","29.954070"],["-90.097070","29.953960"],["-90.097170","29.953840"],["-90.097190","29.953810"],["-90.097220","29.953780"],["-90.097330","29.953680"],["-90.097370","29.953620"],["-90.097440","29.953530"],["-90.097510","29.953440"],["-90.097562","29.953370"],["-90.097591","29.953387"],["-90.097560","29.953370"],["-90.097623","29.953288"],["-90.097685","29.953205"],["-90.097748","29.953123"],["-90.097810","29.953040"],["-90.097925","29.952895"],["-90.098040","29.952750"],["-90.098100","29.952690"],["-90.098120","29.952670"],["-90.098160","29.952630"],["-90.098200","29.952580"],["-90.098340","29.952475"],["-90.098480","29.952370"],["-90.098620","29.952290"],["-90.098630","29.952280"],["-90.098750","29.952210"],["-90.098830","29.952160"],["-90.098900","29.952120"],["-90.099040","29.952010"],["-90.099145","29.951920"],["-90.099250","29.951830"],["-90.099340","29.951750"],["-90.099360","29.951766"],["-90.099340","29.951750"],["-90.099350","29.951740"],["-90.099400","29.951700"],["-90.099430","29.951680"],["-90.099550","29.951570"],["-90.099710","29.951470"],["-90.099740","29.951450"],["-90.099835","29.951390"],["-90.099930","29.951330"],["-90.100085","29.951245"],["-90.100240","29.951160"],["-90.100345","29.951110"],["-90.100450","29.951060"],["-90.100572","29.951092"],["-90.100583","29.951010"],["-90.100702","29.950952"],["-90.100820","29.950894"],["-90.100939","29.950836"],["-90.101058","29.950778"],["-90.101176","29.950719"],["-90.101295","29.950661"],["-90.101414","29.950603"],["-90.101532","29.950545"],["-90.101672","29.950466"],["-90.101813","29.950386"],["-90.101953","29.950307"],["-90.102093","29.950228"],["-90.102203","29.950143"],["-90.102313","29.950058"],["-90.102423","29.949972"],["-90.102533","29.949887"],["-90.102639","29.949822"],["-90.102745","29.949757"],["-90.102851","29.949692"],["-90.102957","29.949627"],["-90.103064","29.949569"],["-90.103172","29.949511"],["-90.103279","29.949454"],["-90.103386","29.949396"],["-90.103494","29.949338"],["-90.103601","29.949280"],["-90.103708","29.949223"],["-90.103816","29.949165"],["-90.104019","29.949147"],["-90.104138","29.949028"],["-90.104267","29.948898"],["-90.104329","29.948779"],["-90.104391","29.948661"],["-90.104436","29.948535"],["-90.104414","29.948361"],["-90.104391","29.948186"],["-90.104372","29.948016"],["-90.104353","29.947845"],["-90.104344","29.947744"],["-90.104334","29.947643"],["-90.104401","29.947514"],["-90.104332","29.947452"],["-90.104321","29.947350"],["-90.104310","29.947247"],["-90.104300","29.947145"],["-90.104289","29.947043"],["-90.104278","29.946940"],["-90.104268","29.946838"],["-90.104257","29.946736"],["-90.104246","29.946633"],["-90.104235","29.946531"],["-90.104225","29.946429"],["-90.104214","29.946326"],["-90.104203","29.946224"],["-90.104193","29.946122"],["-90.104182","29.946019"],["-90.104171","29.945917"],["-90.104161","29.945815"],["-90.104225","29.945743"],["-90.104152","29.945631"],["-90.104130","29.945443"],["-90.104107","29.945255"],["-90.104085","29.945067"],["-90.104062","29.944880"],["-90.104040","29.944692"],["-90.104017","29.944504"],["-90.103995","29.944316"],["-90.103972","29.944128"],["-90.104046","29.944061"],["-90.103970","29.943991"],["-90.103959","29.943890"],["-90.103949","29.943789"],["-90.103939","29.943688"],["-90.103929","29.943587"],["-90.103919","29.943486"],["-90.103909","29.943385"],["-90.103899","29.943284"],["-90.103889","29.943182"],["-90.103879","29.943081"],["-90.103869","29.942980"],["-90.103858","29.942879"],["-90.103848","29.942778"],["-90.103838","29.942677"],["-90.103828","29.942576"],["-90.103818","29.942475"],["-90.103808","29.942374"],["-90.103872","29.942297"],["-90.103805","29.942223"],["-90.103793","29.942120"],["-90.103781","29.942018"],["-90.103769","29.941915"],["-90.103757","29.941813"],["-90.103745","29.941710"],["-90.103733","29.941607"],["-90.103721","29.941505"],["-90.103709","29.941402"],["-90.103696","29.941299"],["-90.103684","29.941197"],["-90.103672","29.941094"],["-90.103660","29.940992"],["-90.103648","29.940889"],["-90.103636","29.940786"],["-90.103624","29.940684"],["-90.103612","29.940581"],["-90.103705","29.940519"],["-90.103628","29.940497"],["-90.103610","29.940341"],["-90.103592","29.940185"],["-90.103574","29.940029"],["-90.103556","29.939873"],["-90.103538","29.939717"],["-90.103521","29.939561"],["-90.103503","29.939405"],["-90.103485","29.939249"],["-90.103528","29.939165"],["-90.103466","29.939100"],["-90.103456","29.938991"],["-90.103446","29.938883"],["-90.103436","29.938774"],["-90.103426","29.938665"],["-90.103416","29.938556"],["-90.103406","29.938447"],["-90.103396","29.938338"],["-90.103386","29.938230"],["-90.103376","29.938121"],["-90.103365","29.938012"],["-90.103355","29.937903"],["-90.103345","29.937794"],["-90.103335","29.937686"],["-90.103325","29.937577"],["-90.103315","29.937468"],["-90.103305","29.937359"],["-90.103375","29.937295"],["-90.103286","29.937224"],["-90.103275","29.937115"],["-90.103263","29.937005"],["-90.103251","29.936895"],["-90.103240","29.936786"],["-90.103228","29.936676"],["-90.103217","29.936566"],["-90.103205","29.936456"],["-90.103193","29.936347"],["-90.103182","29.936237"],["-90.103170","29.936127"],["-90.103158","29.936018"],["-90.103147","29.935908"],["-90.103135","29.935798"],["-90.103124","29.935689"],["-90.103112","29.935579"],["-90.103100","29.935469"],["-90.103165","29.935365"],["-90.103090","29.935302"],["-90.103071","29.935132"],["-90.103052","29.934962"],["-90.103033","29.934793"],["-90.103015","29.934623"],["-90.102996","29.934454"],["-90.102977","29.934284"],["-90.102958","29.934114"],["-90.102939","29.933945"],["-90.102921","29.933775"],["-90.102902","29.933605"],["-90.102883","29.933436"],["-90.102864","29.933266"],["-90.102846","29.933097"],["-90.102827","29.932927"],["-90.102808","29.932757"],["-90.102789","29.932588"],["-90.102879","29.932460"],["-90.102789","29.932358"],["-90.102777","29.932248"],["-90.102765","29.932139"],["-90.102753","29.932030"],["-90.102741","29.931921"],["-90.102729","29.931812"],["-90.102717","29.931703"],["-90.102705","29.931594"],["-90.102693","29.931485"],["-90.102681","29.931376"],["-90.102669","29.931267"],["-90.102657","29.931158"],["-90.102645","29.931049"],["-90.102633","29.930940"],["-90.102621","29.930831"],["-90.102609","29.930722"],["-90.102597","29.930613"],["-90.102678","29.930540"],["-90.102597","29.930479"],["-90.102584","29.930368"],["-90.102571","29.930257"],["-90.102558","29.930146"],["-90.102545","29.930035"],["-90.102533","29.929924"],["-90.102520","29.929813"],["-90.102507","29.929702"],["-90.102494","29.929591"],["-90.102482","29.929480"],["-90.102469","29.929369"],["-90.102456","29.929258"],["-90.102443","29.929147"],["-90.102430","29.929036"],["-90.102418","29.928925"],["-90.102405","29.928814"],["-90.102392","29.928703"],["-90.102457","29.928618"],["-90.102381","29.928501"],["-90.102370","29.928389"],["-90.102358","29.928276"],["-90.102346","29.928164"],["-90.102334","29.928052"],["-90.102323","29.927940"],["-90.102311","29.927827"],["-90.102299","29.927715"],["-90.102287","29.927603"],["-90.102276","29.927491"],["-90.102264","29.927378"],["-90.102252","29.927266"],["-90.102240","29.927154"],["-90.102229","29.927042"],["-90.102217","29.926929"],["-90.102205","29.926817"],["-90.102194","29.926705"],["-90.102265","29.926622"],["-90.102185","29.926523"],["-90.102168","29.926358"],["-90.102150","29.926192"],["-90.102133","29.926026"],["-90.102115","29.925861"],["-90.102098","29.925695"],["-90.102080","29.925529"],["-90.102063","29.925364"],["-90.102045","29.925198"],["-90.102112","29.925104"],["-90.102032","29.925035"],["-90.102018","29.924907"],["-90.102005","29.924778"],["-90.101992","29.924650"],["-90.101978","29.924521"],["-90.101965","29.924393"],["-90.101952","29.924264"],["-90.101938","29.924136"],["-90.101925","29.924007"],["-90.101911","29.923879"],["-90.101898","29.923750"],["-90.101885","29.923622"],["-90.101871","29.923493"],["-90.101858","29.923365"],["-90.101845","29.923236"],["-90.101831","29.923108"],["-90.101818","29.922979"],["-90.101873","29.922883"],["-90.101788","29.922779"],["-90.101777","29.922667"],["-90.101766","29.922554"],["-90.101756","29.922441"],["-90.101745","29.922329"],["-90.101734","29.922216"],["-90.101723","29.922104"],["-90.101712","29.921991"],["-90.101701","29.921879"],["-90.101690","29.921766"],["-90.101679","29.921653"],["-90.101668","29.921541"],["-90.101657","29.921428"],["-90.101647","29.921316"],["-90.101636","29.921203"],["-90.101625","29.921090"],["-90.101614","29.920978"],["-90.101669","29.920879"],["-90.101590","29.920750"],["-90.101571","29.920559"],["-90.101552","29.920367"],["-90.101532","29.920176"],["-90.101513","29.919984"],["-90.101494","29.919793"],["-90.101475","29.919601"],["-90.101456","29.919410"],["-90.101437","29.919218"],["-90.101427","29.919072"],["-90.101418","29.918925"],["-90.101461","29.918825"],["-90.101402","29.918704"],["-90.101384","29.918531"],["-90.101365","29.918357"],["-90.101347","29.918184"],["-90.101328","29.918011"],["-90.101310","29.917837"],["-90.101291","29.917664"],["-90.101273","29.917490"],["-90.101254","29.917317"],["-90.101311","29.917208"],["-90.101238","29.917110"],["-90.101223","29.916961"],["-90.101208","29.916812"],["-90.101193","29.916663"],["-90.101177","29.916515"],["-90.101161","29.916417"],["-90.101032","29.916345"],["-90.100963","29.916384"],["-90.100904","29.916459"],["-90.100912","29.916610"],["-90.100920","29.916762"],["-90.100929","29.916913"],["-90.100937","29.917065"],["-90.100937","29.917065"]]},{"type":"MultiPoint","coordinates":[["-90.009883","30.010979"],["-90.005633","30.011450"],["-90.002953","30.011725"],["-90.000697","30.011984"],["-89.998753","30.012216"],["-89.995426","30.012812"],["-89.993124","30.013222"],["-89.992037","30.013406"],["-89.989800","30.013810"],["-89.988347","30.014049"],["-89.986160","30.014432"],["-89.983948","30.014830"],["-89.980989","30.015415"],["-89.978548","30.015833"],["-89.975618","30.016506"],["-89.973311","30.017074"],["-89.970603","30.017735"],["-90.063885","29.994724"],["-90.007312","30.011265"],["-90.101485","29.922731"],["-90.101704","29.924924"],["-90.101858","29.926311"],["-90.102236","29.930364"],["-90.102489","29.932294"],["-90.102756","29.935164"],["-90.102974","29.937081"],["-90.100937","29.917065"],["-90.103638","29.943911"],["-90.103794","29.945603"],["-90.103997","29.947384"],["-90.103238","29.949244"],["-90.102381","29.949733"],["-90.038827","30.004250"],["-90.065826","29.993363"],["-90.058686","29.999945"],["-90.057845","30.000580"],["-90.055150","30.002253"],["-90.052710","30.002793"],["-90.048077","30.002902"],["-90.040197","30.003695"],["-90.017568","30.010159"],["-90.015347","30.010392"],["-90.012021","30.010756"],["-90.103194","29.939989"],["-90.101049","29.918697"],["-90.101276","29.920731"],["-90.102072","29.928457"],["-90.103437","29.942148"],["-90.036415","30.005189"],["-90.050402","30.002754"],["-90.097321","29.953215"],["-90.094972","29.956480"],["-90.091550","29.960520"],["-90.090591","29.961583"],["-90.089662","29.962670"],["-90.085888","29.967016"],["-90.084399","29.968577"],["-90.082809","29.970536"],["-90.081578","29.971983"],["-90.080097","29.973649"],["-90.078178","29.975860"],["-90.076675","29.977516"],["-90.075290","29.979132"],["-90.073857","29.980722"],["-90.070230","29.984789"],["-90.068094","29.987165"],["-90.066201","29.989271"],["-90.065662","29.991350"],["-90.062539","29.995623"],["-90.061633","29.996680"],["-90.060741","29.997768"],["-90.056410","30.001653"],["-90.046402","30.002610"],["-90.044514","30.002621"],["-90.098320","29.951625"],["-90.034168","30.006019"],["-90.100074","29.951022"],["-90.020535","30.009719"],["-90.059476","29.999326"],["-90.071761","29.983083"],["-90.087268","29.965263"],["-90.037678","30.004652"],["-89.972160","30.032174"],["-89.968193","30.021403"],["-89.968426","30.024349"],["-89.969169","30.027743"],["-89.970655","30.029999"]]},{"type":"LineString","coordinates":[["-90.100937","29.917065"],["-90.100970","29.917060"],["-90.100980","29.917150"],["-90.100991","29.917250"],["-90.101002","29.917350"],["-90.101014","29.917450"],["-90.101025","29.917550"],["-90.101036","29.917650"],["-90.101047","29.917750"],["-90.101059","29.917850"],["-90.101070","29.917950"],["-90.101090","29.918135"],["-90.101110","29.918320"],["-90.101130","29.918505"],["-90.101150","29.918690"],["-90.101049","29.918697"],["-90.101150","29.918690"],["-90.101150","29.918780"],["-90.101170","29.918925"],["-90.101190","29.919070"],["-90.101210","29.919250"],["-90.101230","29.919430"],["-90.101250","29.919610"],["-90.101270","29.919790"],["-90.101280","29.919910"],["-90.101290","29.920030"],["-90.101305","29.920205"],["-90.101320","29.920380"],["-90.101335","29.920555"],["-90.101350","29.920730"],["-90.101276","29.920731"],["-90.101350","29.920730"],["-90.101360","29.920810"],["-90.101375","29.920960"],["-90.101390","29.921110"],["-90.101405","29.921285"],["-90.101420","29.921460"],["-90.101435","29.921635"],["-90.101450","29.921810"],["-90.101464","29.921924"],["-90.101477","29.922038"],["-90.101491","29.922151"],["-90.101505","29.922265"],["-90.101519","29.922379"],["-90.101532","29.922493"],["-90.101546","29.922606"],["-90.101560","29.922720"],["-90.101485","29.922731"],["-90.101560","29.922720"],["-90.101570","29.922830"],["-90.101580","29.922935"],["-90.101590","29.923040"],["-90.101600","29.923145"],["-90.101610","29.923250"],["-90.101620","29.923355"],["-90.101630","29.923460"],["-90.101640","29.923565"],["-90.101650","29.923670"],["-90.101665","29.923838"],["-90.101680","29.924005"],["-90.101695","29.924173"],["-90.101710","29.924340"],["-90.101725","29.924485"],["-90.101740","29.924630"],["-90.101755","29.924775"],["-90.101770","29.924920"],["-90.101704","29.924924"],["-90.101770","29.924920"],["-90.101790","29.925030"],["-90.101805","29.925205"],["-90.101820","29.925380"],["-90.101835","29.925555"],["-90.101850","29.925730"],["-90.101867","29.925875"],["-90.101885","29.926020"],["-90.101902","29.926165"],["-90.101920","29.926310"],["-90.101858","29.926311"],["-90.101920","29.926310"],["-90.101930","29.926410"],["-90.101940","29.926460"],["-90.101940","29.926510"],["-90.101950","29.926580"],["-90.101962","29.926703"],["-90.101975","29.926825"],["-90.101987","29.926948"],["-90.102000","29.927070"],["-90.102012","29.927193"],["-90.102025","29.927315"],["-90.102037","29.927438"],["-90.102050","29.927560"],["-90.102062","29.927671"],["-90.102075","29.927783"],["-90.102087","29.927894"],["-90.102100","29.928005"],["-90.102112","29.928116"],["-90.102125","29.928228"],["-90.102137","29.928339"],["-90.102150","29.928450"],["-90.102072","29.928457"],["-90.102150","29.928450"],["-90.102160","29.928530"],["-90.102172","29.928651"],["-90.102185","29.928773"],["-90.102197","29.928894"],["-90.102210","29.929015"],["-90.102222","29.929136"],["-90.102235","29.929258"],["-90.102247","29.929379"],["-90.102260","29.929500"],["-90.102269","29.929608"],["-90.102277","29.929715"],["-90.102286","29.929823"],["-90.102295","29.929930"],["-90.102304","29.930038"],["-90.102312","29.930145"],["-90.102321","29.930253"],["-90.102330","29.930360"],["-90.102236","29.930364"],["-90.102330","29.930360"],["-90.102340","29.930460"],["-90.102355","29.930583"],["-90.102370","29.930705"],["-90.102385","29.930828"],["-90.102400","29.930950"],["-90.102415","29.931073"],["-90.102430","29.931195"],["-90.102445","29.931318"],["-90.102460","29.931440"],["-90.102469","29.931546"],["-90.102477","29.931653"],["-90.102486","29.931759"],["-90.102495","29.931865"],["-90.102504","29.931971"],["-90.102512","29.932078"],["-90.102521","29.932184"],["-90.102530","29.932290"],["-90.102489","29.932294"],["-90.102530","29.932290"],["-90.102540","29.932390"],["-90.102552","29.932504"],["-90.102565","29.932618"],["-90.102577","29.932731"],["-90.102590","29.932845"],["-90.102602","29.932959"],["-90.102615","29.933073"],["-90.102627","29.933186"],["-90.102640","29.933300"],["-90.102650","29.933360"],["-90.102662","29.933478"],["-90.102675","29.933595"],["-90.102687","29.933713"],["-90.102700","29.933830"],["-90.102712","29.933948"],["-90.102725","29.934065"],["-90.102737","29.934183"],["-90.102750","29.934300"],["-90.102762","29.934445"],["-90.102775","29.934590"],["-90.102787","29.934735"],["-90.102800","29.934880"],["-90.102815","29.935020"],["-90.102830","29.935160"],["-90.102756","29.935164"],["-90.102830","29.935160"],["-90.102850","29.935270"],["-90.102865","29.935430"],["-90.102880","29.935590"],["-90.102895","29.935750"],["-90.102910","29.935910"],["-90.102930","29.936080"],["-90.102940","29.936170"],["-90.102940","29.936230"],["-90.102950","29.936343"],["-90.102960","29.936455"],["-90.102970","29.936568"],["-90.102980","29.936680"],["-90.102990","29.936740"],["-90.103000","29.936845"],["-90.103010","29.936950"],["-90.103020","29.937080"],["-90.102974","29.937081"],["-90.103020","29.937080"],["-90.103030","29.937190"],["-90.103042","29.937305"],["-90.103055","29.937420"],["-90.103067","29.937535"],["-90.103080","29.937650"],["-90.103090","29.937770"],["-90.103100","29.937890"],["-90.103110","29.938010"],["-90.103120","29.938130"],["-90.103134","29.938251"],["-90.103147","29.938373"],["-90.103161","29.938494"],["-90.103175","29.938615"],["-90.103189","29.938736"],["-90.103202","29.938858"],["-90.103216","29.938979"],["-90.103230","29.939100"],["-90.103240","29.939223"],["-90.103250","29.939345"],["-90.103260","29.939468"],["-90.103270","29.939590"],["-90.103280","29.939688"],["-90.103290","29.939785"],["-90.103300","29.939883"],["-90.103310","29.939980"],["-90.103194","29.939989"],["-90.103310","29.939980"],["-90.103320","29.940090"],["-90.103340","29.940260"],["-90.103360","29.940430"],["-90.103371","29.940545"],["-90.103382","29.940660"],["-90.103394","29.940775"],["-90.103405","29.940890"],["-90.103416","29.941005"],["-90.103427","29.941120"],["-90.103439","29.941235"],["-90.103450","29.941350"],["-90.103461","29.941449"],["-90.103472","29.941548"],["-90.103484","29.941646"],["-90.103495","29.941745"],["-90.103506","29.941844"],["-90.103517","29.941943"],["-90.103529","29.942041"],["-90.103540","29.942140"],["-90.103437","29.942148"],["-90.103540","29.942140"],["-90.103550","29.942220"],["-90.103561","29.942333"],["-90.103572","29.942445"],["-90.103584","29.942558"],["-90.103595","29.942670"],["-90.103606","29.942783"],["-90.103617","29.942895"],["-90.103629","29.943008"],["-90.103640","29.943120"],["-90.103649","29.943219"],["-90.103657","29.943318"],["-90.103666","29.943416"],["-90.103675","29.943515"],["-90.103684","29.943614"],["-90.103692","29.943713"],["-90.103701","29.943811"],["-90.103710","29.943910"],["-90.103638","29.943911"],["-90.103710","29.943910"],["-90.103730","29.944020"],["-90.103747","29.944200"],["-90.103765","29.944380"],["-90.103782","29.944560"],["-90.103800","29.944740"],["-90.103820","29.944900"],["-90.103840","29.945073"],["-90.103860","29.945245"],["-90.103880","29.945418"],["-90.103900","29.945590"],["-90.103794","29.945603"],["-90.103900","29.945590"],["-90.103910","29.945690"],["-90.103925","29.945865"],["-90.103940","29.946040"],["-90.103950","29.946220"],["-90.103970","29.946400"],["-90.103990","29.946580"],["-90.104001","29.946680"],["-90.104012","29.946780"],["-90.104024","29.946880"],["-90.104035","29.946980"],["-90.104046","29.947080"],["-90.104057","29.947180"],["-90.104069","29.947280"],["-90.104080","29.947380"],["-90.103997","29.947384"],["-90.104080","29.947380"],["-90.104090","29.947470"],["-90.104101","29.947590"],["-90.104112","29.947710"],["-90.104124","29.947830"],["-90.104135","29.947950"],["-90.104146","29.948070"],["-90.104157","29.948190"],["-90.104169","29.948310"],["-90.104180","29.948430"],["-90.104195","29.948545"],["-90.104210","29.948660"],["-90.104200","29.948710"],["-90.104190","29.948740"],["-90.104180","29.948770"],["-90.104160","29.948790"],["-90.104140","29.948820"],["-90.104100","29.948840"],["-90.104010","29.948890"],["-90.103950","29.948920"],["-90.103910","29.948950"],["-90.103800","29.949020"],["-90.103655","29.949095"],["-90.103510","29.949170"],["-90.103470","29.949200"],["-90.103375","29.949250"],["-90.103280","29.949300"],["-90.103238","29.949244"],["-90.103280","29.949300"],["-90.103190","29.949340"],["-90.103030","29.949420"],["-90.102895","29.949495"],["-90.102760","29.949570"],["-90.102635","29.949645"],["-90.102510","29.949720"],["-90.102430","29.949780"],["-90.102381","29.949733"],["-90.102430","29.949780"],["-90.102310","29.949890"],["-90.102180","29.949975"],["-90.102050","29.950060"],["-90.101900","29.950145"],["-90.101750","29.950230"],["-90.101633","29.950298"],["-90.101515","29.950365"],["-90.101398","29.950433"],["-90.101280","29.950500"],["-90.101150","29.950563"],["-90.101020","29.950625"],["-90.100890","29.950688"],["-90.100760","29.950750"],["-90.100570","29.950830"],["-90.100390","29.950920"],["-90.100250","29.950995"],["-90.100110","29.951070"],["-90.100074","29.951022"],["-90.100110","29.951070"],["-90.100100","29.951080"],["-90.099930","29.951170"],["-90.099840","29.951240"],["-90.099645","29.951330"],["-90.099450","29.951420"],["-90.099310","29.951460"],["-90.099220","29.951480"],["-90.099070","29.951505"],["-90.098920","29.951530"],["-90.098750","29.951590"],["-90.098640","29.951610"],["-90.098510","29.951640"],["-90.098390","29.951680"],["-90.098360","29.951690"],["-90.098320","29.951625"],["-90.098360","29.951690"],["-90.098220","29.951750"],["-90.098160","29.951780"],["-90.098120","29.951810"],["-90.098090","29.951850"],["-90.098070","29.951880"],["-90.098030","29.951970"],["-90.098010","29.952040"],["-90.098000","29.952100"],["-90.097990","29.952150"],["-90.097980","29.952250"],["-90.097970","29.952310"],["-90.097960","29.952400"],["-90.097960","29.952440"],["-90.097950","29.952480"],["-90.097940","29.952510"],["-90.097910","29.952560"],["-90.097860","29.952650"],["-90.097753","29.952800"],["-90.097645","29.952950"],["-90.097538","29.953100"],["-90.097430","29.953250"],["-90.097420","29.953260"],["-90.097321","29.953215"],["-90.097420","29.953260"],["-90.097360","29.953360"],["-90.097290","29.953445"],["-90.097220","29.953530"],["-90.097070","29.953640"],["-90.096998","29.953735"],["-90.096925","29.953830"],["-90.096853","29.953925"],["-90.096780","29.954020"],["-90.096750","29.954070"],["-90.096730","29.954090"],["-90.096680","29.954130"],["-90.096600","29.954240"],["-90.096508","29.954365"],["-90.096416","29.954490"],["-90.096324","29.954615"],["-90.096233","29.954740"],["-90.096141","29.954865"],["-90.096049","29.954990"],["-90.095957","29.955115"],["-90.095865","29.955240"],["-90.095773","29.955365"],["-90.095681","29.955490"],["-90.095589","29.955615"],["-90.095498","29.955740"],["-90.095406","29.955865"],["-90.095314","29.955990"],["-90.095222","29.956115"],["-90.095130","29.956240"],["-90.095020","29.956390"],["-90.094960","29.956480"],["-90.094972","29.956480"],["-90.094960","29.956480"],["-90.094920","29.956540"],["-90.094810","29.956690"],["-90.094700","29.956850"],["-90.094590","29.957000"],["-90.094480","29.957150"],["-90.094410","29.957230"],["-90.094350","29.957300"],["-90.094280","29.957400"],["-90.094250","29.957440"],["-90.094230","29.957460"],["-90.094180","29.957550"],["-90.094140","29.957620"],["-90.094120","29.957670"],["-90.094100","29.957700"],["-90.094080","29.957770"],["-90.094080","29.957810"],["-90.094090","29.957850"],["-90.094040","29.957900"],["-90.094020","29.957920"],["-90.094010","29.957930"],["-90.094000","29.957940"],["-90.093980","29.957960"],["-90.093910","29.958045"],["-90.093840","29.958130"],["-90.093830","29.958140"],["-90.093750","29.958230"],["-90.093730","29.958250"],["-90.093700","29.958290"],["-90.093630","29.958370"],["-90.093555","29.958450"],["-90.093480","29.958530"],["-90.093440","29.958580"],["-90.093320","29.958720"],["-90.093210","29.958840"],["-90.093140","29.958910"],["-90.093100","29.958960"],["-90.092970","29.959100"],["-90.092875","29.959208"],["-90.092780","29.959315"],["-90.092685","29.959423"],["-90.092590","29.959530"],["-90.092460","29.959670"],["-90.092340","29.959810"],["-90.092250","29.959900"],["-90.092210","29.959950"],["-90.092085","29.960080"],["-90.091960","29.960210"],["-90.091940","29.960230"],["-90.091810","29.960360"],["-90.091680","29.960490"],["-90.091610","29.960560"],["-90.091550","29.960520"],["-90.091610","29.960560"],["-90.091530","29.960650"],["-90.091395","29.960800"],["-90.091260","29.960950"],["-90.091173","29.961058"],["-90.091085","29.961165"],["-90.090998","29.961273"],["-90.090910","29.961380"],["-90.090795","29.961510"],["-90.090680","29.961640"],["-90.090591","29.961583"],["-90.090680","29.961640"],["-90.090610","29.961720"],["-90.090520","29.961820"],["-90.090445","29.961900"],["-90.090370","29.961980"],["-90.090285","29.962085"],["-90.090200","29.962190"],["-90.090080","29.962330"],["-90.089980","29.962420"],["-90.089855","29.962565"],["-90.089730","29.962710"],["-90.089662","29.962670"],["-90.089730","29.962710"],["-90.089680","29.962770"],["-90.089650","29.962800"],["-90.089570","29.962890"],["-90.089500","29.962970"],["-90.089395","29.963088"],["-90.089290","29.963205"],["-90.089185","29.963323"],["-90.089080","29.963440"],["-90.089013","29.963518"],["-90.088945","29.963595"],["-90.088878","29.963673"],["-90.088810","29.963750"],["-90.088733","29.963843"],["-90.088655","29.963935"],["-90.088578","29.964028"],["-90.088509","29.964107"],["-90.088441","29.964186"],["-90.088372","29.964265"],["-90.088303","29.964344"],["-90.088235","29.964423"],["-90.088166","29.964502"],["-90.088098","29.964581"],["-90.088029","29.964660"],["-90.087960","29.964739"],["-90.087892","29.964818"],["-90.087823","29.964897"],["-90.087754","29.964976"],["-90.087686","29.965055"],["-90.087617","29.965134"],["-90.087548","29.965213"],["-90.087480","29.965292"],["-90.087268","29.965263"],["-90.087268","29.965263"],["-90.087291","29.965375"],["-90.087314","29.965487"],["-90.087245","29.965566"],["-90.087176","29.965644"],["-90.087107","29.965722"],["-90.087038","29.965800"],["-90.086969","29.965879"],["-90.086900","29.965957"],["-90.086831","29.966035"],["-90.086762","29.966114"],["-90.086693","29.966192"],["-90.086624","29.966270"],["-90.086555","29.966349"],["-90.086486","29.966427"],["-90.086417","29.966505"],["-90.086348","29.966583"],["-90.086279","29.966662"],["-90.086210","29.966740"],["-90.086130","29.966840"],["-90.086035","29.966945"],["-90.085940","29.967050"],["-90.085888","29.967016"],["-90.085940","29.967050"],["-90.085840","29.967170"],["-90.085770","29.967240"],["-90.085695","29.967325"],["-90.085620","29.967410"],["-90.085545","29.967490"],["-90.085470","29.967570"],["-90.085400","29.967640"],["-90.085330","29.967720"],["-90.085260","29.967800"],["-90.085150","29.967915"],["-90.085040","29.968030"],["-90.084930","29.968143"],["-90.084820","29.968255"],["-90.084710","29.968368"],["-90.084600","29.968480"],["-90.084550","29.968540"],["-90.084480","29.968630"],["-90.084399","29.968577"],["-90.084480","29.968630"],["-90.084410","29.968700"],["-90.084340","29.968800"],["-90.084280","29.968880"],["-90.084200","29.969015"],["-90.084120","29.969150"],["-90.084000","29.969300"],["-90.083870","29.969440"],["-90.083820","29.969520"],["-90.083734","29.969618"],["-90.083648","29.969715"],["-90.083561","29.969813"],["-90.083475","29.969910"],["-90.083389","29.970008"],["-90.083303","29.970105"],["-90.083216","29.970203"],["-90.083130","29.970300"],["-90.083020","29.970420"],["-90.082950","29.970500"],["-90.082880","29.970580"],["-90.082809","29.970536"],["-90.082880","29.970580"],["-90.082790","29.970690"],["-90.082720","29.970760"],["-90.082613","29.970893"],["-90.082505","29.971025"],["-90.082398","29.971158"],["-90.082290","29.971290"],["-90.082208","29.971381"],["-90.082125","29.971473"],["-90.082043","29.971564"],["-90.081960","29.971655"],["-90.081878","29.971746"],["-90.081795","29.971838"],["-90.081713","29.971929"],["-90.081630","29.972020"],["-90.081578","29.971983"],["-90.081630","29.972020"],["-90.081550","29.972110"],["-90.081454","29.972224"],["-90.081358","29.972338"],["-90.081261","29.972451"],["-90.081165","29.972565"],["-90.081069","29.972679"],["-90.080973","29.972793"],["-90.080876","29.972906"],["-90.080780","29.973020"],["-90.080658","29.973160"],["-90.080535","29.973300"],["-90.080413","29.973440"],["-90.080290","29.973580"],["-90.080180","29.973700"],["-90.080097","29.973649"],["-90.080180","29.973700"],["-90.080090","29.973800"],["-90.080030","29.973870"],["-90.079925","29.973995"],["-90.079820","29.974120"],["-90.079718","29.974233"],["-90.079615","29.974345"],["-90.079513","29.974458"],["-90.079410","29.974570"],["-90.079293","29.974708"],["-90.079175","29.974845"],["-90.079058","29.974983"],["-90.078940","29.975120"],["-90.078830","29.975245"],["-90.078720","29.975370"],["-90.078605","29.975503"],["-90.078490","29.975637"],["-90.078374","29.975770"],["-90.078259","29.975903"],["-90.078178","29.975860"],["-90.078226","29.975953"],["-90.078117","29.976073"],["-90.078008","29.976193"],["-90.077899","29.976313"],["-90.077791","29.976433"],["-90.077682","29.976553"],["-90.077573","29.976672"],["-90.077464","29.976792"],["-90.077356","29.976912"],["-90.077284","29.976993"],["-90.077213","29.977075"],["-90.077142","29.977156"],["-90.077071","29.977237"],["-90.076999","29.977318"],["-90.076928","29.977399"],["-90.076857","29.977480"],["-90.076786","29.977562"],["-90.076675","29.977516"],["-90.076728","29.977639"],["-90.076654","29.977717"],["-90.076580","29.977795"],["-90.076507","29.977872"],["-90.076433","29.977950"],["-90.076340","29.978050"],["-90.076248","29.978150"],["-90.076155","29.978250"],["-90.076063","29.978350"],["-90.075970","29.978450"],["-90.075893","29.978540"],["-90.075815","29.978630"],["-90.075738","29.978720"],["-90.075660","29.978810"],["-90.075583","29.978900"],["-90.075505","29.978990"],["-90.075428","29.979080"],["-90.075350","29.979170"],["-90.075290","29.979132"],["-90.075350","29.979170"],["-90.075270","29.979270"],["-90.075185","29.979363"],["-90.075100","29.979455"],["-90.075015","29.979548"],["-90.074930","29.979640"],["-90.074810","29.979770"],["-90.074760","29.979830"],["-90.074650","29.979940"],["-90.074540","29.980050"],["-90.074463","29.980139"],["-90.074385","29.980228"],["-90.074308","29.980316"],["-90.074230","29.980405"],["-90.074153","29.980494"],["-90.074075","29.980583"],["-90.073998","29.980671"],["-90.073920","29.980760"],["-90.073857","29.980722"],["-90.073920","29.980760"],["-90.073840","29.980850"],["-90.073750","29.980950"],["-90.073660","29.981050"],["-90.073570","29.981150"],["-90.073480","29.981250"],["-90.073390","29.981350"],["-90.073300","29.981450"],["-90.073210","29.981550"],["-90.073120","29.981650"],["-90.073029","29.981751"],["-90.072938","29.981853"],["-90.072846","29.981954"],["-90.072755","29.982055"],["-90.072664","29.982156"],["-90.072573","29.982258"],["-90.072481","29.982359"],["-90.072390","29.982460"],["-90.072278","29.982588"],["-90.072165","29.982715"],["-90.072053","29.982843"],["-90.071940","29.982970"],["-90.071810","29.983110"],["-90.071761","29.983083"],["-90.071810","29.983110"],["-90.071740","29.983200"],["-90.071650","29.983290"],["-90.071590","29.983360"],["-90.071500","29.983460"],["-90.071410","29.983560"],["-90.071320","29.983660"],["-90.071230","29.983760"],["-90.071150","29.983850"],["-90.071030","29.984000"],["-90.070946","29.984096"],["-90.070863","29.984193"],["-90.070779","29.984289"],["-90.070695","29.984386"],["-90.070611","29.984482"],["-90.070528","29.984579"],["-90.070444","29.984675"],["-90.070360","29.984771"],["-90.070230","29.984789"],["-90.070280","29.984820"],["-90.070180","29.984940"],["-90.070060","29.985070"],["-90.069960","29.985183"],["-90.069860","29.985295"],["-90.069760","29.985408"],["-90.069660","29.985520"],["-90.069590","29.985595"],["-90.069520","29.985670"],["-90.069420","29.985760"],["-90.069340","29.985870"],["-90.069260","29.985980"],["-90.069120","29.986120"],["-90.069050","29.986190"],["-90.068975","29.986280"],["-90.068900","29.986370"],["-90.068818","29.986463"],["-90.068735","29.986555"],["-90.068653","29.986648"],["-90.068570","29.986740"],["-90.068500","29.986820"],["-90.068430","29.986900"],["-90.068360","29.986980"],["-90.068290","29.987060"],["-90.068220","29.987135"],["-90.068150","29.987210"],["-90.068094","29.987165"],["-90.068150","29.987210"],["-90.068080","29.987285"],["-90.068010","29.987360"],["-90.067970","29.987410"],["-90.067875","29.987505"],["-90.067780","29.987600"],["-90.067653","29.987743"],["-90.067525","29.987885"],["-90.067398","29.988028"],["-90.067270","29.988170"],["-90.067190","29.988260"],["-90.067110","29.988350"],["-90.067040","29.988430"],["-90.066970","29.988510"],["-90.066880","29.988610"],["-90.066800","29.988700"],["-90.066710","29.988800"],["-90.066620","29.988900"],["-90.066535","29.988995"],["-90.066450","29.989090"],["-90.066420","29.989120"],["-90.066335","29.989215"],["-90.066201","29.989271"],["-90.066250","29.989300"],["-90.066190","29.989370"],["-90.066085","29.989485"],["-90.065980","29.989600"],["-90.065920","29.989720"],["-90.065860","29.989810"],["-90.065800","29.989900"],["-90.065750","29.990010"],["-90.065730","29.990100"],["-90.065700","29.990180"],["-90.065690","29.990270"],["-90.065680","29.990310"],["-90.065670","29.990410"],["-90.065670","29.990510"],["-90.065675","29.990650"],["-90.065680","29.990790"],["-90.065680","29.990800"],["-90.065680","29.990810"],["-90.065680","29.990830"],["-90.065690","29.990910"],["-90.065700","29.991040"],["-90.065710","29.991120"],["-90.065720","29.991280"],["-90.065730","29.991350"],["-90.065662","29.991350"],["-90.065730","29.991350"],["-90.065730","29.991430"],["-90.065740","29.991558"],["-90.065750","29.991685"],["-90.065760","29.991813"],["-90.065770","29.991940"],["-90.065780","29.992068"],["-90.065790","29.992195"],["-90.065800","29.992323"],["-90.065810","29.992450"],["-90.065810","29.992540"],["-90.065820","29.992730"],["-90.065832","29.992888"],["-90.065845","29.993045"],["-90.065857","29.993203"],["-90.065870","29.993360"],["-90.065826","29.993363"],["-90.065870","29.993360"],["-90.065880","29.993430"],["-90.065860","29.993480"],["-90.065850","29.993520"],["-90.065820","29.993570"],["-90.065800","29.993600"],["-90.065780","29.993630"],["-90.065770","29.993690"],["-90.065675","29.993740"],["-90.065580","29.993790"],["-90.065485","29.993840"],["-90.065390","29.993890"],["-90.065340","29.993920"],["-90.065270","29.993970"],["-90.065250","29.993980"],["-90.065210","29.994010"],["-90.065095","29.994080"],["-90.064980","29.994150"],["-90.064885","29.994200"],["-90.064790","29.994250"],["-90.064668","29.994328"],["-90.064545","29.994405"],["-90.064423","29.994483"],["-90.064300","29.994560"],["-90.064208","29.994615"],["-90.064115","29.994670"],["-90.064023","29.994725"],["-90.063930","29.994780"],["-90.063885","29.994724"],["-90.063930","29.994780"],["-90.063780","29.994870"],["-90.063720","29.994890"],["-90.063590","29.994970"],["-90.063460","29.995050"],["-90.063330","29.995130"],["-90.063235","29.995190"],["-90.063140","29.995250"],["-90.063045","29.995310"],["-90.062950","29.995370"],["-90.062870","29.995420"],["-90.062840","29.995440"],["-90.062700","29.995560"],["-90.062600","29.995660"],["-90.062539","29.995623"],["-90.062600","29.995660"],["-90.062520","29.995760"],["-90.062460","29.995820"],["-90.062440","29.995850"],["-90.062325","29.995985"],["-90.062210","29.996120"],["-90.062140","29.996200"],["-90.062090","29.996260"],["-90.062060","29.996300"],["-90.062030","29.996330"],["-90.061970","29.996410"],["-90.061905","29.996490"],["-90.061840","29.996570"],["-90.061775","29.996650"],["-90.061710","29.996730"],["-90.061633","29.996680"],["-90.061710","29.996730"],["-90.061630","29.996840"],["-90.061560","29.996930"],["-90.061480","29.997015"],["-90.061400","29.997100"],["-90.061340","29.997180"],["-90.061274","29.997259"],["-90.061208","29.997338"],["-90.061141","29.997416"],["-90.061075","29.997495"],["-90.061009","29.997574"],["-90.060943","29.997653"],["-90.060876","29.997731"],["-90.060770","29.997850"],["-90.060741","29.997768"],["-90.060770","29.997850"],["-90.060640","29.998005"],["-90.060510","29.998160"],["-90.060380","29.998310"],["-90.060283","29.998428"],["-90.060185","29.998545"],["-90.060088","29.998663"],["-90.059990","29.998780"],["-90.059860","29.998930"],["-90.059773","29.999035"],["-90.059685","29.999140"],["-90.059598","29.999245"],["-90.059510","29.999350"],["-90.059476","29.999326"],["-90.059510","29.999350"],["-90.059410","29.999450"],["-90.059350","29.999500"],["-90.059330","29.999520"],["-90.059170","29.999640"],["-90.059110","29.999690"],["-90.059015","29.999765"],["-90.058920","29.999840"],["-90.058825","29.999915"],["-90.058730","29.999990"],["-90.058686","29.999945"],["-90.058730","29.999990"],["-90.058690","30.000020"],["-90.058680","30.000020"],["-90.058590","30.000090"],["-90.058500","30.000160"],["-90.058405","30.000230"],["-90.058310","30.000300"],["-90.058180","30.000400"],["-90.058050","30.000500"],["-90.057900","30.000630"],["-90.057845","30.000580"],["-90.057900","30.000630"],["-90.057800","30.000700"],["-90.057713","30.000768"],["-90.057625","30.000835"],["-90.057538","30.000903"],["-90.057450","30.000970"],["-90.057363","30.001038"],["-90.057275","30.001105"],["-90.057188","30.001173"],["-90.057100","30.001240"],["-90.056955","30.001355"],["-90.056810","30.001470"],["-90.056740","30.001520"],["-90.056600","30.001615"],["-90.056460","30.001710"],["-90.056410","30.001653"],["-90.056460","30.001710"],["-90.056340","30.001780"],["-90.056240","30.001830"],["-90.056065","30.001915"],["-90.055890","30.002000"],["-90.055775","30.002055"],["-90.055660","30.002110"],["-90.055543","30.002163"],["-90.055425","30.002215"],["-90.055308","30.002268"],["-90.055190","30.002320"],["-90.055150","30.002253"],["-90.055190","30.002320"],["-90.055020","30.002400"],["-90.055000","30.002410"],["-90.054850","30.002460"],["-90.054750","30.002500"],["-90.054640","30.002540"],["-90.054470","30.002600"],["-90.054370","30.002630"],["-90.054220","30.002680"],["-90.054080","30.002720"],["-90.053950","30.002750"],["-90.053825","30.002770"],["-90.053700","30.002790"],["-90.053490","30.002820"],["-90.053380","30.002830"],["-90.053250","30.002840"],["-90.053050","30.002850"],["-90.052910","30.002850"],["-90.052770","30.002850"],["-90.052710","30.002850"],["-90.052710","30.002793"],["-90.052710","30.002850"],["-90.052620","30.002860"],["-90.052405","30.002855"],["-90.052190","30.002850"],["-90.052160","30.002850"],["-90.052048","30.002851"],["-90.051935","30.002853"],["-90.051823","30.002854"],["-90.051710","30.002855"],["-90.051598","30.002856"],["-90.051485","30.002858"],["-90.051373","30.002859"],["-90.051151","30.002862"],["-90.050930","30.002864"],["-90.050708","30.002867"],["-90.050487","30.002869"],["-90.050402","30.002754"],["-90.050347","30.002869"],["-90.050187","30.002878"],["-90.050026","30.002887"],["-90.049865","30.002896"],["-90.049704","30.002905"],["-90.049543","30.002913"],["-90.049382","30.002922"],["-90.049221","30.002931"],["-90.049060","30.002940"],["-90.048903","30.002945"],["-90.048745","30.002950"],["-90.048588","30.002955"],["-90.048430","30.002960"],["-90.048280","30.002960"],["-90.048100","30.002970"],["-90.048070","30.002970"],["-90.048077","30.002902"],["-90.048070","30.002970"],["-90.047960","30.002970"],["-90.047850","30.002960"],["-90.047737","30.002945"],["-90.047625","30.002930"],["-90.047512","30.002915"],["-90.047400","30.002900"],["-90.047380","30.002900"],["-90.047175","30.002850"],["-90.046970","30.002800"],["-90.046805","30.002770"],["-90.046640","30.002740"],["-90.046510","30.002715"],["-90.046380","30.002690"],["-90.046402","30.002610"],["-90.046380","30.002690"],["-90.046300","30.002680"],["-90.046100","30.002650"],["-90.045985","30.002640"],["-90.045870","30.002630"],["-90.045750","30.002635"],["-90.045630","30.002640"],["-90.045510","30.002645"],["-90.045390","30.002650"],["-90.045173","30.002665"],["-90.044955","30.002680"],["-90.044738","30.002695"],["-90.044520","30.002710"],["-90.044514","30.002621"],["-90.044520","30.002710"],["-90.044360","30.002720"],["-90.044160","30.002735"],["-90.043960","30.002750"],["-90.043760","30.002765"],["-90.043560","30.002780"],["-90.043400","30.002790"],["-90.043280","30.002808"],["-90.043160","30.002825"],["-90.043040","30.002843"],["-90.042920","30.002860"],["-90.042740","30.002905"],["-90.042560","30.002950"],["-90.042350","30.003000"],["-90.042170","30.003060"],["-90.042020","30.003105"],["-90.041870","30.003150"],["-90.041730","30.003200"],["-90.041590","30.003245"],["-90.041450","30.003290"],["-90.041250","30.003360"],["-90.041095","30.003425"],["-90.040940","30.003490"],["-90.040740","30.003570"],["-90.040623","30.003615"],["-90.040506","30.003660"],["-90.040390","30.003706"],["-90.040273","30.003751"],["-90.040197","30.003695"],["-90.040230","30.003760"],["-90.040125","30.003800"],["-90.040020","30.003840"],["-90.039920","30.003870"],["-90.039780","30.003920"],["-90.039605","30.003990"],["-90.039430","30.004060"],["-90.039315","30.004105"],["-90.039200","30.004150"],["-90.039085","30.004195"],["-90.038970","30.004240"],["-90.038827","30.004250"],["-90.038850","30.004290"],["-90.038740","30.004335"],["-90.038630","30.004380"],["-90.038470","30.004430"],["-90.038330","30.004490"],["-90.038200","30.004542"],["-90.038069","30.004595"],["-90.037939","30.004647"],["-90.037809","30.004699"],["-90.037678","30.004652"],["-90.037576","30.004717"],["-90.037474","30.004781"],["-90.037372","30.004846"],["-90.037270","30.004910"],["-90.037160","30.004950"],["-90.037060","30.004980"],["-90.036930","30.005030"],["-90.036815","30.005075"],["-90.036700","30.005120"],["-90.036565","30.005170"],["-90.036430","30.005220"],["-90.036415","30.005189"],["-90.036430","30.005220"],["-90.036330","30.005260"],["-90.036180","30.005320"],["-90.035985","30.005385"],["-90.035790","30.005450"],["-90.035740","30.005470"],["-90.035670","30.005500"],["-90.035508","30.005565"],["-90.035345","30.005630"],["-90.035183","30.005695"],["-90.035020","30.005760"],["-90.034900","30.005805"],["-90.034780","30.005850"],["-90.034680","30.005895"],["-90.034580","30.005940"],["-90.034480","30.005985"],["-90.034380","30.006030"],["-90.034200","30.006090"],["-90.034168","30.006019"],["-90.034200","30.006090"],["-90.034100","30.006130"],["-90.033933","30.006190"],["-90.033765","30.006250"],["-90.033598","30.006310"],["-90.033430","30.006370"],["-90.033270","30.006430"],["-90.033080","30.006510"],["-90.032938","30.006570"],["-90.032795","30.006630"],["-90.032653","30.006690"],["-90.032510","30.006750"],["-90.032365","30.006810"],["-90.032220","30.006870"],["-90.032070","30.006930"],["-90.031880","30.007000"],["-90.031710","30.007070"],["-90.031605","30.007105"],["-90.031500","30.007140"],["-90.031305","30.007200"],["-90.031110","30.007260"],["-90.030993","30.007293"],["-90.030875","30.007325"],["-90.030758","30.007358"],["-90.030640","30.007390"],["-90.030508","30.007425"],["-90.030375","30.007460"],["-90.030243","30.007495"],["-90.030110","30.007530"],["-90.030000","30.007555"],["-90.029890","30.007580"],["-90.029880","30.007580"],["-90.029740","30.007620"],["-90.029560","30.007670"],["-90.029520","30.007680"],["-90.029398","30.007710"],["-90.029275","30.007740"],["-90.029153","30.007770"],["-90.029030","30.007800"],["-90.028908","30.007830"],["-90.028785","30.007860"],["-90.028663","30.007890"],["-90.028540","30.007920"],["-90.028520","30.007920"],["-90.028320","30.007970"],["-90.028120","30.008010"],["-90.028000","30.008035"],["-90.027880","30.008060"],["-90.027730","30.008100"],["-90.027530","30.008150"],["-90.027330","30.008190"],["-90.027130","30.008240"],["-90.026980","30.008280"],["-90.026780","30.008320"],["-90.026580","30.008370"],["-90.026540","30.008380"],["-90.026340","30.008430"],["-90.026140","30.008480"],["-90.025940","30.008520"],["-90.025760","30.008570"],["-90.025615","30.008605"],["-90.025470","30.008640"],["-90.025325","30.008675"],["-90.025180","30.008710"],["-90.025035","30.008745"],["-90.024890","30.008780"],["-90.024745","30.008815"],["-90.024600","30.008850"],["-90.024410","30.008890"],["-90.024340","30.008910"],["-90.024290","30.008920"],["-90.024210","30.008940"],["-90.024090","30.008970"],["-90.023970","30.009000"],["-90.023840","30.009030"],["-90.023650","30.009080"],["-90.023500","30.009116"],["-90.023350","30.009153"],["-90.023200","30.009189"],["-90.023050","30.009225"],["-90.022900","30.009261"],["-90.022750","30.009298"],["-90.022600","30.009334"],["-90.022450","30.009370"],["-90.022280","30.009413"],["-90.022110","30.009455"],["-90.021940","30.009498"],["-90.021770","30.009540"],["-90.021625","30.009575"],["-90.021480","30.009610"],["-90.021370","30.009640"],["-90.021190","30.009690"],["-90.021042","30.009725"],["-90.020893","30.009760"],["-90.020714","30.009739"],["-90.020535","30.009719"],["-90.020432","30.009838"],["-90.020220","30.009873"],["-90.020007","30.009909"],["-90.019795","30.009944"],["-90.019582","30.009980"],["-90.019460","30.010000"],["-90.019260","30.010030"],["-90.019085","30.010050"],["-90.018910","30.010070"],["-90.018735","30.010090"],["-90.018560","30.010110"],["-90.018400","30.010130"],["-90.018320","30.010150"],["-90.018185","30.010160"],["-90.018050","30.010170"],["-90.017935","30.010183"],["-90.017820","30.010195"],["-90.017705","30.010208"],["-90.017590","30.010220"],["-90.017568","30.010159"],["-90.017590","30.010220"],["-90.017445","30.010230"],["-90.017300","30.010240"],["-90.017180","30.010250"],["-90.016973","30.010275"],["-90.016765","30.010300"],["-90.016558","30.010325"],["-90.016350","30.010350"],["-90.016223","30.010365"],["-90.016095","30.010380"],["-90.015968","30.010395"],["-90.015840","30.010410"],["-90.015660","30.010430"],["-90.015480","30.010450"],["-90.015370","30.010460"],["-90.015360","30.010460"],["-90.015347","30.010392"],["-90.015360","30.010460"],["-90.015290","30.010470"],["-90.015105","30.010490"],["-90.014920","30.010510"],["-90.014800","30.010525"],["-90.014680","30.010540"],["-90.014510","30.010550"],["-90.014370","30.010570"],["-90.014160","30.010590"],["-90.014018","30.010605"],["-90.013875","30.010620"],["-90.013733","30.010635"],["-90.013590","30.010650"],["-90.013375","30.010670"],["-90.013160","30.010690"],["-90.013120","30.010700"],["-90.013050","30.010700"],["-90.012890","30.010720"],["-90.012880","30.010730"],["-90.012820","30.010730"],["-90.012810","30.010730"],["-90.012710","30.010750"],["-90.012530","30.010770"],["-90.012405","30.010783"],["-90.012280","30.010795"],["-90.012155","30.010808"],["-90.012000","30.010820"],["-90.012021","30.010756"],["-90.012000","30.010820"],["-90.011880","30.010830"],["-90.011760","30.010840"],["-90.011558","30.010863"],["-90.011355","30.010885"],["-90.011153","30.010908"],["-90.010950","30.010930"],["-90.010805","30.010945"],["-90.010660","30.010960"],["-90.010528","30.010975"],["-90.010395","30.010990"],["-90.010263","30.011005"],["-90.010130","30.011020"],["-90.010010","30.011035"],["-90.009890","30.011050"],["-90.009883","30.010979"],["-90.009890","30.011050"],["-90.009740","30.011070"],["-90.009628","30.011080"],["-90.009515","30.011090"],["-90.009403","30.011100"],["-90.009290","30.011110"],["-90.009178","30.011120"],["-90.009065","30.011130"],["-90.008953","30.011140"],["-90.008840","30.011150"],["-90.008688","30.011168"],["-90.008535","30.011185"],["-90.008383","30.011203"],["-90.008230","30.011220"],["-90.008020","30.011245"],["-90.007810","30.011270"],["-90.007688","30.011285"],["-90.007565","30.011300"],["-90.007443","30.011315"],["-90.007320","30.011330"],["-90.007312","30.011265"],["-90.007320","30.011330"],["-90.007160","30.011350"],["-90.006978","30.011373"],["-90.006795","30.011395"],["-90.006613","30.011418"],["-90.006430","30.011440"],["-90.006260","30.011450"],["-90.006090","30.011470"],["-90.005975","30.011480"],["-90.005860","30.011490"],["-90.005700","30.011500"],["-90.005640","30.011510"],["-90.005633","30.011450"],["-90.005640","30.011510"],["-90.005468","30.011529"],["-90.005295","30.011548"],["-90.005123","30.011566"],["-90.004950","30.011585"],["-90.004778","30.011604"],["-90.004605","30.011623"],["-90.004433","30.011641"],["-90.004260","30.011660"],["-90.004113","30.011675"],["-90.003965","30.011690"],["-90.003818","30.011705"],["-90.003670","30.011720"],["-90.003470","30.011740"],["-90.003270","30.011760"],["-90.003130","30.011780"],["-90.002960","30.011800"],["-90.002953","30.011725"],["-90.002960","30.011800"],["-90.002880","30.011810"],["-90.002675","30.011830"],["-90.002470","30.011850"],["-90.002315","30.011865"],["-90.002160","30.011880"],["-90.002040","30.011895"],["-90.001920","30.011910"],["-90.001750","30.011925"],["-90.001580","30.011940"],["-90.001370","30.011970"],["-90.001165","30.011990"],["-90.000960","30.012010"],["-90.000810","30.012020"],["-90.000700","30.012030"],["-90.000697","30.011984"],["-90.000700","30.012030"],["-90.000610","30.012040"],["-90.000400","30.012070"],["-90.000180","30.012095"],["-89.999960","30.012120"],["-89.999815","30.012135"],["-89.999670","30.012150"],["-89.999545","30.012165"],["-89.999420","30.012180"],["-89.999275","30.012205"],["-89.999130","30.012230"],["-89.998950","30.012260"],["-89.998770","30.012290"],["-89.998753","30.012216"],["-89.998770","30.012290"],["-89.998670","30.012310"],["-89.998570","30.012320"],["-89.998453","30.012340"],["-89.998335","30.012360"],["-89.998218","30.012380"],["-89.998100","30.012400"],["-89.997983","30.012420"],["-89.997865","30.012440"],["-89.997748","30.012460"],["-89.997630","30.012480"],["-89.997485","30.012505"],["-89.997340","30.012530"],["-89.997190","30.012550"],["-89.997035","30.012580"],["-89.996880","30.012610"],["-89.996750","30.012633"],["-89.996620","30.012655"],["-89.996490","30.012678"],["-89.996360","30.012700"],["-89.996210","30.012730"],["-89.996040","30.012760"],["-89.996010","30.012760"],["-89.995810","30.012800"],["-89.995625","30.012830"],["-89.995440","30.012860"],["-89.995426","30.012812"],["-89.995440","30.012860"],["-89.995300","30.012880"],["-89.995188","30.012901"],["-89.995075","30.012923"],["-89.994963","30.012944"],["-89.994850","30.012965"],["-89.994738","30.012986"],["-89.994625","30.013008"],["-89.994513","30.013029"],["-89.994400","30.013050"],["-89.994300","30.013070"],["-89.994090","30.013108"],["-89.993880","30.013145"],["-89.993670","30.013183"],["-89.993460","30.013220"],["-89.993270","30.013250"],["-89.993140","30.013270"],["-89.993124","30.013222"],["-89.993140","30.013270"],["-89.993010","30.013300"],["-89.992890","30.013321"],["-89.992770","30.013343"],["-89.992650","30.013364"],["-89.992530","30.013385"],["-89.992410","30.013406"],["-89.992290","30.013428"],["-89.992170","30.013449"],["-89.992050","30.013470"],["-89.992037","30.013406"],["-89.992050","30.013470"],["-89.991960","30.013480"],["-89.991835","30.013501"],["-89.991710","30.013523"],["-89.991585","30.013544"],["-89.991460","30.013565"],["-89.991335","30.013586"],["-89.991210","30.013608"],["-89.991085","30.013629"],["-89.990960","30.013650"],["-89.990920","30.013660"],["-89.990758","30.013690"],["-89.990595","30.013720"],["-89.990433","30.013750"],["-89.990270","30.013780"],["-89.990060","30.013820"],["-89.989935","30.013840"],["-89.989810","30.013860"],["-89.989800","30.013810"],["-89.989810","30.013860"],["-89.989630","30.013900"],["-89.989470","30.013930"],["-89.989255","30.013965"],["-89.989040","30.014000"],["-89.988920","30.014020"],["-89.988850","30.014030"],["-89.988700","30.014060"],["-89.988550","30.014090"],["-89.988360","30.014120"],["-89.988347","30.014049"],["-89.988360","30.014120"],["-89.988250","30.014130"],["-89.988070","30.014165"],["-89.987890","30.014200"],["-89.987720","30.014230"],["-89.987550","30.014260"],["-89.987380","30.014285"],["-89.987210","30.014310"],["-89.987000","30.014348"],["-89.986790","30.014385"],["-89.986580","30.014423"],["-89.986370","30.014460"],["-89.986180","30.014500"],["-89.986160","30.014432"],["-89.986180","30.014500"],["-89.986070","30.014520"],["-89.985875","30.014555"],["-89.985680","30.014590"],["-89.985565","30.014610"],["-89.985450","30.014630"],["-89.985260","30.014665"],["-89.985070","30.014700"],["-89.984930","30.014730"],["-89.984785","30.014750"],["-89.984640","30.014770"],["-89.984470","30.014800"],["-89.984300","30.014830"],["-89.984130","30.014860"],["-89.983960","30.014890"],["-89.983948","30.014830"],["-89.983960","30.014900"],["-89.983880","30.014910"],["-89.983800","30.014930"],["-89.983688","30.014950"],["-89.983575","30.014970"],["-89.983463","30.014990"],["-89.983350","30.015010"],["-89.983210","30.015035"],["-89.983070","30.015060"],["-89.982945","30.015075"],["-89.982820","30.015090"],["-89.982665","30.015110"],["-89.982510","30.015130"],["-89.982355","30.015150"],["-89.982200","30.015170"],["-89.982050","30.015200"],["-89.981900","30.015230"],["-89.981750","30.015260"],["-89.981560","30.015305"],["-89.981370","30.015350"],["-89.981180","30.015395"],["-89.980990","30.015440"],["-89.980990","30.015420"],["-89.980989","30.015415"],["-89.980990","30.015420"],["-89.980990","30.015440"],["-89.980870","30.015455"],["-89.980750","30.015470"],["-89.980570","30.015500"],["-89.980370","30.015540"],["-89.980170","30.015580"],["-89.979970","30.015620"],["-89.979830","30.015645"],["-89.979690","30.015670"],["-89.979550","30.015695"],["-89.979410","30.015720"],["-89.979265","30.015750"],["-89.979120","30.015780"],["-89.978940","30.015815"],["-89.978760","30.015850"],["-89.978690","30.015860"],["-89.978620","30.015880"],["-89.978548","30.015833"],["-89.978560","30.015880"],["-89.978500","30.015900"],["-89.978323","30.015938"],["-89.978145","30.015975"],["-89.977968","30.016013"],["-89.977790","30.016050"],["-89.977720","30.016070"],["-89.977595","30.016098"],["-89.977470","30.016125"],["-89.977345","30.016153"],["-89.977220","30.016180"],["-89.977180","30.016190"],["-89.976988","30.016238"],["-89.976795","30.016285"],["-89.976603","30.016333"],["-89.976410","30.016380"],["-89.976280","30.016410"],["-89.976150","30.016440"],["-89.976020","30.016470"],["-89.975890","30.016500"],["-89.975765","30.016535"],["-89.975640","30.016570"],["-89.975618","30.016506"],["-89.975640","30.016570"],["-89.975490","30.016600"],["-89.975305","30.016646"],["-89.975120","30.016693"],["-89.974935","30.016739"],["-89.974750","30.016785"],["-89.974565","30.016831"],["-89.974380","30.016878"],["-89.974195","30.016924"],["-89.974010","30.016970"],["-89.973895","30.017000"],["-89.973780","30.017030"],["-89.973635","30.017070"],["-89.973490","30.017110"],["-89.973330","30.017150"],["-89.973311","30.017074"],["-89.973330","30.017150"],["-89.973240","30.017170"],["-89.973040","30.017220"],["-89.972840","30.017270"],["-89.972718","30.017303"],["-89.972595","30.017335"],["-89.972473","30.017368"],["-89.972350","30.017400"],["-89.972145","30.017449"],["-89.971940","30.017498"],["-89.971735","30.017546"],["-89.971530","30.017595"],["-89.971325","30.017644"],["-89.971120","30.017693"],["-89.970915","30.017741"],["-89.970710","30.017790"],["-89.970630","30.017820"],["-89.970603","30.017735"],["-89.970630","30.017820"],["-89.970470","30.017860"],["-89.970300","30.017900"],["-89.970130","30.017940"],["-89.969960","30.017980"],["-89.969790","30.018020"],["-89.969603","30.018068"],["-89.969415","30.018115"],["-89.969228","30.018163"],["-89.969040","30.018210"],["-89.968850","30.018260"],["-89.968700","30.018300"],["-89.968580","30.018330"],["-89.968460","30.018360"],["-89.968275","30.018405"],["-89.968090","30.018450"],["-89.967940","30.018490"],["-89.967960","30.018600"],["-89.967975","30.018740"],["-89.967990","30.018880"],["-89.968005","30.019040"],["-89.968020","30.019200"],["-89.968035","30.019338"],["-89.968050","30.019475"],["-89.968065","30.019613"],["-89.968080","30.019750"],["-89.968095","30.019886"],["-89.968110","30.020023"],["-89.968125","30.020159"],["-89.968140","30.020295"],["-89.968155","30.020431"],["-89.968170","30.020568"],["-89.968185","30.020704"],["-89.968200","30.020840"],["-89.968212","30.020980"],["-89.968225","30.021120"],["-89.968237","30.021260"],["-89.968250","30.021400"],["-89.968193","30.021403"],["-89.968250","30.021400"],["-89.968260","30.021510"],["-89.968277","30.021683"],["-89.968295","30.021855"],["-89.968312","30.022028"],["-89.968330","30.022200"],["-89.968347","30.022370"],["-89.968365","30.022540"],["-89.968382","30.022710"],["-89.968400","30.022880"],["-89.968417","30.023053"],["-89.968435","30.023225"],["-89.968452","30.023398"],["-89.968470","30.023570"],["-89.968487","30.023743"],["-89.968505","30.023915"],["-89.968522","30.024088"],["-89.968540","30.024260"],["-89.968420","30.024270"],["-89.968426","30.024349"],["-89.968420","30.024270"],["-89.968540","30.024260"],["-89.968557","30.024430"],["-89.968575","30.024600"],["-89.968592","30.024770"],["-89.968610","30.024940"],["-89.968627","30.025113"],["-89.968645","30.025285"],["-89.968662","30.025458"],["-89.968680","30.025630"],["-89.968697","30.025803"],["-89.968715","30.025975"],["-89.968732","30.026148"],["-89.968750","30.026320"],["-89.968757","30.026435"],["-89.968765","30.026550"],["-89.968772","30.026665"],["-89.968780","30.026780"],["-89.968790","30.026860"],["-89.968800","30.026900"],["-89.968820","30.026970"],["-89.968860","30.027070"],["-89.968910","30.027160"],["-89.968940","30.027210"],["-89.968960","30.027250"],["-89.969010","30.027340"],["-89.969070","30.027430"],["-89.969160","30.027560"],["-89.969250","30.027700"],["-89.969169","30.027743"],["-89.969250","30.027700"],["-89.969330","30.027810"],["-89.969400","30.027930"],["-89.969470","30.028025"],["-89.969540","30.028120"],["-89.969590","30.028210"],["-89.969685","30.028350"],["-89.969780","30.028490"],["-89.969855","30.028605"],["-89.969930","30.028720"],["-89.970005","30.028835"],["-89.970080","30.028950"],["-89.970100","30.028960"],["-89.970157","30.029043"],["-89.970215","30.029125"],["-89.970272","30.029208"],["-89.970330","30.029290"],["-89.970387","30.029373"],["-89.970445","30.029455"],["-89.970502","30.029538"],["-89.970560","30.029620"],["-89.970675","30.029775"],["-89.970790","30.029930"],["-89.970655","30.029999"],["-89.970790","30.029930"],["-89.970850","30.030018"],["-89.970910","30.030105"],["-89.970970","30.030193"],["-89.971030","30.030280"],["-89.971100","30.030375"],["-89.971170","30.030470"],["-89.971255","30.030580"],["-89.971340","30.030690"],["-89.971390","30.030770"],["-89.971492","30.030913"],["-89.971595","30.031055"],["-89.971697","30.031198"],["-89.971800","30.031340"],["-89.971880","30.031450"],["-89.971945","30.031550"],["-89.972010","30.031650"],["-89.972075","30.031750"],["-89.972140","30.031850"],["-89.972195","30.031935"],["-89.972250","30.032020"],["-89.972160","30.032174"]]}]}},{"type":"Feature","properties":{"route_id":"91","agency_id":"1","route_short_name":"91","route_long_name":"Jackson-Esplanade","route_type":"3","route_color":"#a99b06","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.108625","29.982730"],["-90.106689","29.983226"],["-90.105021","29.983631"],["-90.099770","29.981920"],["-90.088875","29.983238"],["-90.087648","29.982384"],["-90.086106","29.981328"],["-90.084081","29.979912"],["-90.082355","29.978742"],["-90.080428","29.977427"],["-90.076855","29.974956"],["-90.074928","29.973607"],["-90.074062","29.973014"],["-90.073249","29.972400"],["-90.070605","29.970578"],["-90.067116","29.968188"],["-90.065558","29.967087"],["-90.063802","29.965925"],["-90.074136","29.926412"],["-90.067726","29.961445"],["-90.070568","29.958241"],["-90.073441","29.925601"],["-90.095267","29.979316"],["-90.076436","29.945028"],["-90.072151","29.924778"],["-90.080266","29.939859"],["-90.081333","29.938463"],["-90.083052","29.937100"],["-90.082021","29.935653"],["-90.080777","29.934205"],["-90.079799","29.932927"],["-90.078845","29.931886"],["-90.076902","29.929627"],["-90.076199","29.928817"],["-90.074833","29.927218"],["-90.110683","29.983377"],["-90.075911","29.951058"],["-90.078486","29.976094"],["-90.079418","29.941107"],["-90.070189","29.926067"],["-90.068614","29.969156"],["-90.094046","29.980478"],["-90.078173","29.942640"],["-90.101617","29.983170"],["-90.097750","29.980568"],["-90.074078","29.955755"],["-90.091572","29.982761"],["-90.075280","29.954073"],["-90.069189","29.959861"],["-90.065584","29.963862"]]},{"type":"LineString","coordinates":[["-90.110683","29.983377"],["-90.110700","29.983380"],["-90.110710","29.983233"],["-90.110720","29.983085"],["-90.110730","29.982938"],["-90.110740","29.982790"],["-90.110745","29.982690"],["-90.110750","29.982590"],["-90.110760","29.982440"],["-90.110760","29.982305"],["-90.110760","29.982170"],["-90.110660","29.982070"],["-90.110535","29.982115"],["-90.110410","29.982160"],["-90.110225","29.982220"],["-90.110040","29.982280"],["-90.109920","29.982320"],["-90.109800","29.982360"],["-90.109790","29.982360"],["-90.109720","29.982400"],["-90.109538","29.982458"],["-90.109355","29.982515"],["-90.109173","29.982573"],["-90.108990","29.982630"],["-90.108850","29.982675"],["-90.108710","29.982720"],["-90.108625","29.982730"],["-90.108620","29.982750"],["-90.108480","29.982800"],["-90.108390","29.982820"],["-90.108253","29.982860"],["-90.108115","29.982900"],["-90.107978","29.982940"],["-90.107840","29.982980"],["-90.107645","29.983045"],["-90.107450","29.983110"],["-90.107340","29.983110"],["-90.107200","29.983160"],["-90.107000","29.983210"],["-90.106800","29.983260"],["-90.106710","29.983280"],["-90.106689","29.983226"],["-90.106710","29.983280"],["-90.106670","29.983290"],["-90.106545","29.983325"],["-90.106420","29.983360"],["-90.106295","29.983395"],["-90.106170","29.983430"],["-90.106050","29.983455"],["-90.105930","29.983480"],["-90.105810","29.983500"],["-90.105640","29.983540"],["-90.105490","29.983590"],["-90.105390","29.983610"],["-90.105215","29.983655"],["-90.105040","29.983700"],["-90.105021","29.983631"],["-90.105040","29.983700"],["-90.105000","29.983710"],["-90.104866","29.983744"],["-90.104733","29.983778"],["-90.104599","29.983811"],["-90.104465","29.983845"],["-90.104331","29.983879"],["-90.104198","29.983913"],["-90.104064","29.983946"],["-90.103930","29.983980"],["-90.103810","29.984005"],["-90.103690","29.984030"],["-90.103610","29.984030"],["-90.103420","29.984030"],["-90.103220","29.984030"],["-90.103105","29.984025"],["-90.102990","29.984020"],["-90.102830","29.984010"],["-90.102710","29.984000"],["-90.102650","29.983950"],["-90.102580","29.983900"],["-90.102495","29.983835"],["-90.102410","29.983770"],["-90.102350","29.983740"],["-90.102240","29.983670"],["-90.102110","29.983585"],["-90.101980","29.983500"],["-90.101970","29.983490"],["-90.101870","29.983423"],["-90.101770","29.983355"],["-90.101670","29.983288"],["-90.101570","29.983220"],["-90.101617","29.983170"],["-90.101570","29.983220"],["-90.101480","29.983170"],["-90.101395","29.983105"],["-90.101310","29.983040"],["-90.101167","29.982948"],["-90.101025","29.982855"],["-90.100882","29.982763"],["-90.100740","29.982670"],["-90.100650","29.982610"],["-90.100560","29.982550"],["-90.100454","29.982479"],["-90.100347","29.982408"],["-90.100241","29.982336"],["-90.100135","29.982265"],["-90.100029","29.982194"],["-90.099922","29.982123"],["-90.099816","29.982051"],["-90.099710","29.981980"],["-90.099770","29.981920"],["-90.099710","29.981980"],["-90.099640","29.981930"],["-90.099550","29.981870"],["-90.099460","29.981810"],["-90.099370","29.981750"],["-90.099280","29.981690"],["-90.099140","29.981598"],["-90.099000","29.981505"],["-90.098860","29.981413"],["-90.098720","29.981320"],["-90.098602","29.981238"],["-90.098485","29.981155"],["-90.098367","29.981073"],["-90.098250","29.980990"],["-90.098140","29.980920"],["-90.098052","29.980860"],["-90.097965","29.980800"],["-90.097877","29.980740"],["-90.097790","29.980680"],["-90.097700","29.980620"],["-90.097750","29.980568"],["-90.097700","29.980620"],["-90.097595","29.980550"],["-90.097490","29.980480"],["-90.097385","29.980410"],["-90.097280","29.980340"],["-90.097175","29.980270"],["-90.097070","29.980200"],["-90.096965","29.980130"],["-90.096860","29.980060"],["-90.096685","29.979945"],["-90.096510","29.979830"],["-90.096360","29.979725"],["-90.096210","29.979620"],["-90.096070","29.979530"],["-90.095972","29.979465"],["-90.095875","29.979400"],["-90.095777","29.979335"],["-90.095680","29.979270"],["-90.095650","29.979240"],["-90.095570","29.979190"],["-90.095520","29.979170"],["-90.095415","29.979265"],["-90.095310","29.979360"],["-90.095267","29.979316"],["-90.095310","29.979360"],["-90.095250","29.979410"],["-90.095145","29.979510"],["-90.095040","29.979610"],["-90.094910","29.979740"],["-90.094810","29.979830"],["-90.094668","29.979965"],["-90.094525","29.980100"],["-90.094383","29.980235"],["-90.094240","29.980370"],["-90.094200","29.980400"],["-90.094090","29.980510"],["-90.094046","29.980478"],["-90.094090","29.980510"],["-90.094040","29.980550"],["-90.093910","29.980675"],["-90.093780","29.980800"],["-90.093653","29.980919"],["-90.093525","29.981038"],["-90.093398","29.981156"],["-90.093270","29.981275"],["-90.093143","29.981394"],["-90.093015","29.981513"],["-90.092888","29.981631"],["-90.092760","29.981750"],["-90.092630","29.981870"],["-90.092550","29.981950"],["-90.092460","29.982035"],["-90.092370","29.982120"],["-90.092276","29.982205"],["-90.092183","29.982290"],["-90.092089","29.982375"],["-90.091995","29.982460"],["-90.091901","29.982545"],["-90.091808","29.982630"],["-90.091714","29.982715"],["-90.091620","29.982800"],["-90.091572","29.982761"],["-90.091620","29.982800"],["-90.091560","29.982870"],["-90.091510","29.982910"],["-90.091430","29.982970"],["-90.091380","29.983020"],["-90.091310","29.983070"],["-90.091270","29.983100"],["-90.091250","29.983120"],["-90.091230","29.983140"],["-90.091200","29.983160"],["-90.091160","29.983190"],["-90.090990","29.983300"],["-90.090930","29.983320"],["-90.090850","29.983370"],["-90.090760","29.983410"],["-90.090730","29.983420"],["-90.090615","29.983470"],["-90.090500","29.983520"],["-90.090350","29.983590"],["-90.090170","29.983680"],["-90.090020","29.983710"],["-90.089830","29.983770"],["-90.089810","29.983780"],["-90.089640","29.983830"],["-90.089530","29.983750"],["-90.089490","29.983720"],["-90.089395","29.983655"],["-90.089300","29.983590"],["-90.089175","29.983505"],["-90.089050","29.983420"],["-90.088910","29.983320"],["-90.088875","29.983238"],["-90.088752","29.983187"],["-90.088630","29.983135"],["-90.088525","29.983063"],["-90.088420","29.982990"],["-90.088297","29.982905"],["-90.088175","29.982820"],["-90.088052","29.982735"],["-90.087930","29.982650"],["-90.087785","29.982555"],["-90.087692","29.982493"],["-90.087600","29.982430"],["-90.087648","29.982384"],["-90.087600","29.982430"],["-90.087470","29.982340"],["-90.087340","29.982250"],["-90.087210","29.982160"],["-90.087080","29.982070"],["-90.086950","29.981980"],["-90.086855","29.981915"],["-90.086760","29.981850"],["-90.086650","29.981780"],["-90.086540","29.981710"],["-90.086405","29.981615"],["-90.086270","29.981520"],["-90.086150","29.981450"],["-90.086060","29.981380"],["-90.086106","29.981328"],["-90.086060","29.981380"],["-90.085940","29.981300"],["-90.085770","29.981180"],["-90.085600","29.981060"],["-90.085505","29.980994"],["-90.085410","29.980928"],["-90.085315","29.980861"],["-90.085220","29.980795"],["-90.085125","29.980729"],["-90.085030","29.980663"],["-90.084935","29.980596"],["-90.084840","29.980530"],["-90.084715","29.980444"],["-90.084590","29.980358"],["-90.084465","29.980271"],["-90.084340","29.980185"],["-90.084215","29.980099"],["-90.084090","29.980013"],["-90.083965","29.979926"],["-90.083840","29.979840"],["-90.084020","29.979860"],["-90.084080","29.979860"],["-90.084081","29.979912"],["-90.084080","29.979860"],["-90.084020","29.979860"],["-90.083840","29.979840"],["-90.083725","29.979758"],["-90.083610","29.979675"],["-90.083495","29.979593"],["-90.083380","29.979510"],["-90.083222","29.979400"],["-90.083065","29.979290"],["-90.082907","29.979180"],["-90.082750","29.979070"],["-90.082595","29.978965"],["-90.082440","29.978860"],["-90.082320","29.978780"],["-90.082355","29.978742"],["-90.082320","29.978780"],["-90.082212","29.978706"],["-90.082105","29.978633"],["-90.081997","29.978559"],["-90.081890","29.978485"],["-90.081782","29.978411"],["-90.081675","29.978338"],["-90.081567","29.978264"],["-90.081460","29.978190"],["-90.081337","29.978105"],["-90.081215","29.978020"],["-90.081092","29.977935"],["-90.080970","29.977850"],["-90.080847","29.977765"],["-90.080725","29.977680"],["-90.080602","29.977595"],["-90.080480","29.977510"],["-90.080400","29.977450"],["-90.080428","29.977427"],["-90.080400","29.977450"],["-90.080300","29.977380"],["-90.080200","29.977310"],["-90.080107","29.977248"],["-90.080015","29.977185"],["-90.079922","29.977123"],["-90.079830","29.977060"],["-90.079670","29.976950"],["-90.079510","29.976840"],["-90.079385","29.976753"],["-90.079260","29.976665"],["-90.079135","29.976578"],["-90.079010","29.976490"],["-90.078845","29.976375"],["-90.078680","29.976260"],["-90.078590","29.976200"],["-90.078480","29.976120"],["-90.078470","29.976110"],["-90.078486","29.976094"],["-90.078470","29.976110"],["-90.078360","29.976030"],["-90.078220","29.975950"],["-90.078140","29.975900"],["-90.078020","29.975815"],["-90.077900","29.975730"],["-90.077792","29.975655"],["-90.077685","29.975580"],["-90.077577","29.975505"],["-90.077470","29.975430"],["-90.077420","29.975400"],["-90.077317","29.975330"],["-90.077215","29.975260"],["-90.077112","29.975190"],["-90.077010","29.975120"],["-90.076870","29.975020"],["-90.076820","29.974990"],["-90.076855","29.974956"],["-90.076820","29.974990"],["-90.076650","29.974870"],["-90.076480","29.974750"],["-90.076365","29.974670"],["-90.076250","29.974590"],["-90.076120","29.974500"],["-90.076010","29.974423"],["-90.075900","29.974345"],["-90.075790","29.974268"],["-90.075680","29.974190"],["-90.075557","29.974105"],["-90.075435","29.974020"],["-90.075312","29.973935"],["-90.075190","29.973850"],["-90.075040","29.973750"],["-90.074890","29.973650"],["-90.074928","29.973607"],["-90.074890","29.973650"],["-90.074810","29.973590"],["-90.074662","29.973490"],["-90.074515","29.973390"],["-90.074367","29.973290"],["-90.074220","29.973190"],["-90.074120","29.973120"],["-90.074020","29.973050"],["-90.074062","29.973014"],["-90.074020","29.973050"],["-90.073930","29.972990"],["-90.073840","29.972920"],["-90.073750","29.972850"],["-90.073620","29.972740"],["-90.073480","29.972620"],["-90.073460","29.972610"],["-90.073340","29.972530"],["-90.073250","29.972460"],["-90.073210","29.972440"],["-90.073260","29.972410"],["-90.073249","29.972400"],["-90.073260","29.972410"],["-90.073210","29.972440"],["-90.073100","29.972370"],["-90.073005","29.972308"],["-90.072910","29.972245"],["-90.072815","29.972183"],["-90.072720","29.972120"],["-90.072597","29.972038"],["-90.072475","29.971955"],["-90.072352","29.971873"],["-90.072230","29.971790"],["-90.072121","29.971713"],["-90.072012","29.971635"],["-90.071904","29.971558"],["-90.071795","29.971480"],["-90.071686","29.971403"],["-90.071577","29.971325"],["-90.071469","29.971248"],["-90.071360","29.971170"],["-90.071260","29.971101"],["-90.071160","29.971033"],["-90.071060","29.970964"],["-90.070960","29.970895"],["-90.070860","29.970826"],["-90.070760","29.970758"],["-90.070660","29.970689"],["-90.070560","29.970620"],["-90.070605","29.970578"],["-90.070560","29.970620"],["-90.070490","29.970570"],["-90.070385","29.970500"],["-90.070280","29.970430"],["-90.070175","29.970360"],["-90.070070","29.970290"],["-90.069955","29.970213"],["-90.069840","29.970135"],["-90.069725","29.970058"],["-90.069610","29.969980"],["-90.069440","29.969865"],["-90.069270","29.969750"],["-90.069170","29.969688"],["-90.069015","29.969582"],["-90.068860","29.969476"],["-90.068799","29.969396"],["-90.068737","29.969316"],["-90.068676","29.969236"],["-90.068614","29.969156"],["-90.068501","29.969219"],["-90.068331","29.969102"],["-90.068162","29.968985"],["-90.068050","29.968910"],["-90.067890","29.968800"],["-90.067730","29.968690"],["-90.067615","29.968605"],["-90.067500","29.968520"],["-90.067390","29.968440"],["-90.067275","29.968355"],["-90.067160","29.968270"],["-90.067090","29.968220"],["-90.067116","29.968188"],["-90.067090","29.968220"],["-90.066980","29.968150"],["-90.066882","29.968083"],["-90.066785","29.968015"],["-90.066687","29.967948"],["-90.066590","29.967880"],["-90.066487","29.967810"],["-90.066385","29.967740"],["-90.066282","29.967670"],["-90.066180","29.967600"],["-90.066090","29.967535"],["-90.066000","29.967470"],["-90.065877","29.967388"],["-90.065755","29.967305"],["-90.065632","29.967223"],["-90.065510","29.967140"],["-90.065558","29.967087"],["-90.065510","29.967140"],["-90.065440","29.967090"],["-90.065272","29.966975"],["-90.065105","29.966860"],["-90.064937","29.966745"],["-90.064770","29.966630"],["-90.064610","29.966520"],["-90.064520","29.966455"],["-90.064430","29.966391"],["-90.064340","29.966326"],["-90.064250","29.966261"],["-90.064160","29.966197"],["-90.064070","29.966132"],["-90.063980","29.966068"],["-90.063890","29.966003"],["-90.063802","29.965925"],["-90.063754","29.965854"],["-90.063864","29.965729"],["-90.063974","29.965605"],["-90.064084","29.965480"],["-90.064194","29.965355"],["-90.064305","29.965230"],["-90.064415","29.965105"],["-90.064525","29.964980"],["-90.064635","29.964855"],["-90.064745","29.964730"],["-90.064856","29.964606"],["-90.064966","29.964481"],["-90.065076","29.964356"],["-90.065186","29.964231"],["-90.065296","29.964106"],["-90.065407","29.963981"],["-90.065517","29.963856"],["-90.065584","29.963862"],["-90.065560","29.963840"],["-90.065600","29.963800"],["-90.065678","29.963713"],["-90.065755","29.963625"],["-90.065833","29.963538"],["-90.065910","29.963450"],["-90.066008","29.963340"],["-90.066105","29.963230"],["-90.066203","29.963120"],["-90.066300","29.963010"],["-90.066385","29.962915"],["-90.066470","29.962820"],["-90.066555","29.962725"],["-90.066640","29.962630"],["-90.066735","29.962525"],["-90.066830","29.962420"],["-90.066925","29.962315"],["-90.067020","29.962210"],["-90.067106","29.962113"],["-90.067193","29.962015"],["-90.067279","29.961918"],["-90.067365","29.961820"],["-90.067451","29.961723"],["-90.067538","29.961625"],["-90.067624","29.961528"],["-90.067730","29.961420"],["-90.067726","29.961445"],["-90.067730","29.961420"],["-90.067855","29.961275"],["-90.067980","29.961130"],["-90.068110","29.960990"],["-90.068140","29.960940"],["-90.068233","29.960838"],["-90.068325","29.960735"],["-90.068418","29.960633"],["-90.068510","29.960530"],["-90.068600","29.960430"],["-90.068733","29.960283"],["-90.068865","29.960135"],["-90.068998","29.959988"],["-90.069130","29.959840"],["-90.069140","29.959830"],["-90.069189","29.959861"],["-90.069140","29.959830"],["-90.069210","29.959750"],["-90.069290","29.959660"],["-90.069370","29.959570"],["-90.069470","29.959460"],["-90.069548","29.959373"],["-90.069625","29.959285"],["-90.069703","29.959198"],["-90.069780","29.959110"],["-90.069850","29.959030"],["-90.069920","29.958950"],["-90.070000","29.958863"],["-90.070080","29.958775"],["-90.070160","29.958688"],["-90.070240","29.958600"],["-90.070320","29.958510"],["-90.070400","29.958420"],["-90.070480","29.958330"],["-90.070560","29.958240"],["-90.070568","29.958241"],["-90.070560","29.958240"],["-90.070590","29.958200"],["-90.070679","29.958101"],["-90.070768","29.958003"],["-90.070856","29.957904"],["-90.070945","29.957805"],["-90.071034","29.957706"],["-90.071123","29.957608"],["-90.071211","29.957509"],["-90.071300","29.957410"],["-90.071420","29.957488"],["-90.071540","29.957565"],["-90.071660","29.957643"],["-90.071780","29.957720"],["-90.071915","29.957810"],["-90.072050","29.957900"],["-90.072163","29.957775"],["-90.072275","29.957650"],["-90.072388","29.957525"],["-90.072500","29.957400"],["-90.072615","29.957265"],["-90.072730","29.957130"],["-90.072803","29.957053"],["-90.072875","29.956975"],["-90.072948","29.956898"],["-90.073020","29.956820"],["-90.073080","29.956750"],["-90.073180","29.956638"],["-90.073280","29.956525"],["-90.073380","29.956413"],["-90.073480","29.956300"],["-90.073560","29.956215"],["-90.073640","29.956130"],["-90.073720","29.956040"],["-90.073793","29.955958"],["-90.073865","29.955875"],["-90.073938","29.955793"],["-90.074078","29.955755"],["-90.074000","29.955700"],["-90.074090","29.955605"],["-90.074180","29.955510"],["-90.074280","29.955420"],["-90.074400","29.955280"],["-90.074485","29.955180"],["-90.074570","29.955080"],["-90.074650","29.954988"],["-90.074730","29.954895"],["-90.074810","29.954803"],["-90.074890","29.954710"],["-90.074980","29.954610"],["-90.075070","29.954480"],["-90.075140","29.954360"],["-90.075150","29.954330"],["-90.075220","29.954180"],["-90.075260","29.954070"],["-90.075280","29.954073"],["-90.075260","29.954070"],["-90.075280","29.954030"],["-90.075290","29.954000"],["-90.075340","29.953835"],["-90.075390","29.953670"],["-90.075430","29.953560"],["-90.075440","29.953530"],["-90.075460","29.953450"],["-90.075470","29.953400"],["-90.075520","29.953230"],["-90.075570","29.953060"],["-90.075580","29.952990"],["-90.075630","29.952890"],["-90.075660","29.952790"],["-90.075710","29.952630"],["-90.075760","29.952460"],["-90.075780","29.952360"],["-90.075810","29.952230"],["-90.075830","29.952120"],["-90.075840","29.952030"],["-90.075840","29.951990"],["-90.075860","29.951830"],["-90.075860","29.951690"],["-90.075840","29.951580"],["-90.075830","29.951410"],["-90.075835","29.951235"],["-90.075840","29.951060"],["-90.075911","29.951058"],["-90.075840","29.951060"],["-90.075840","29.950900"],["-90.075870","29.950780"],["-90.075918","29.950633"],["-90.075965","29.950485"],["-90.076013","29.950338"],["-90.076060","29.950190"],["-90.076110","29.950020"],["-90.076165","29.949845"],["-90.076220","29.949670"],["-90.076260","29.949550"],["-90.076280","29.949480"],["-90.076330","29.949310"],["-90.076360","29.949190"],["-90.076400","29.949055"],["-90.076440","29.948920"],["-90.076490","29.948750"],["-90.076540","29.948570"],["-90.076560","29.948480"],["-90.076605","29.948300"],["-90.076650","29.948120"],["-90.076675","29.948015"],["-90.076700","29.947910"],["-90.076725","29.947805"],["-90.076750","29.947700"],["-90.076795","29.947555"],["-90.076840","29.947410"],["-90.076885","29.947265"],["-90.076930","29.947120"],["-90.076960","29.947000"],["-90.077015","29.946835"],["-90.077070","29.946670"],["-90.077050","29.946660"],["-90.077040","29.946650"],["-90.077030","29.946650"],["-90.077020","29.946640"],["-90.077010","29.946630"],["-90.077010","29.946620"],["-90.077010","29.946610"],["-90.077000","29.946600"],["-90.077000","29.946520"],["-90.077000","29.946460"],["-90.076990","29.946380"],["-90.076960","29.946260"],["-90.076940","29.946180"],["-90.076930","29.946140"],["-90.076890","29.946090"],["-90.076850","29.946050"],["-90.076770","29.945980"],["-90.076640","29.945890"],["-90.076540","29.945830"],["-90.076370","29.945710"],["-90.076240","29.945630"],["-90.076145","29.945570"],["-90.076050","29.945510"],["-90.076150","29.945360"],["-90.076242","29.945232"],["-90.076334","29.945103"],["-90.076436","29.945028"],["-90.076474","29.944929"],["-90.076574","29.944793"],["-90.076673","29.944656"],["-90.076773","29.944520"],["-90.076873","29.944383"],["-90.076973","29.944247"],["-90.077072","29.944111"],["-90.077172","29.943974"],["-90.077272","29.943838"],["-90.077372","29.943701"],["-90.077471","29.943565"],["-90.077571","29.943429"],["-90.077671","29.943292"],["-90.077771","29.943156"],["-90.077870","29.943019"],["-90.077970","29.942883"],["-90.078070","29.942747"],["-90.078173","29.942640"],["-90.078247","29.942545"],["-90.078320","29.942450"],["-90.078430","29.942300"],["-90.078490","29.942210"],["-90.078560","29.942115"],["-90.078630","29.942020"],["-90.078720","29.941910"],["-90.078780","29.941829"],["-90.078840","29.941748"],["-90.078900","29.941666"],["-90.078960","29.941585"],["-90.079020","29.941504"],["-90.079080","29.941423"],["-90.079140","29.941341"],["-90.079200","29.941260"],["-90.079300","29.941140"],["-90.079340","29.941070"],["-90.079418","29.941107"],["-90.079340","29.941070"],["-90.079448","29.940918"],["-90.079555","29.940765"],["-90.079663","29.940613"],["-90.079770","29.940460"],["-90.079888","29.940305"],["-90.080005","29.940150"],["-90.080123","29.939995"],["-90.080240","29.939840"],["-90.080266","29.939859"],["-90.080240","29.939840"],["-90.080300","29.939770"],["-90.080360","29.939685"],["-90.080420","29.939600"],["-90.080480","29.939515"],["-90.080540","29.939430"],["-90.080600","29.939345"],["-90.080660","29.939260"],["-90.080720","29.939175"],["-90.080780","29.939090"],["-90.080840","29.939006"],["-90.080900","29.938923"],["-90.080960","29.938839"],["-90.081020","29.938755"],["-90.081080","29.938671"],["-90.081140","29.938588"],["-90.081200","29.938504"],["-90.081260","29.938420"],["-90.081333","29.938463"],["-90.081260","29.938420"],["-90.081310","29.938350"],["-90.081370","29.938245"],["-90.081430","29.938140"],["-90.081480","29.938030"],["-90.081643","29.937928"],["-90.081805","29.937825"],["-90.081968","29.937723"],["-90.082130","29.937620"],["-90.082239","29.937548"],["-90.082348","29.937475"],["-90.082456","29.937403"],["-90.082565","29.937330"],["-90.082674","29.937258"],["-90.082783","29.937185"],["-90.082891","29.937113"],["-90.083011","29.937081"],["-90.083130","29.937050"],["-90.083052","29.937100"],["-90.083130","29.937050"],["-90.083080","29.936990"],["-90.082947","29.936840"],["-90.082815","29.936690"],["-90.082682","29.936540"],["-90.082550","29.936390"],["-90.082480","29.936310"],["-90.082347","29.936158"],["-90.082215","29.936005"],["-90.082082","29.935853"],["-90.081950","29.935700"],["-90.082021","29.935653"],["-90.081950","29.935700"],["-90.081890","29.935620"],["-90.081820","29.935538"],["-90.081750","29.935455"],["-90.081680","29.935373"],["-90.081610","29.935290"],["-90.081540","29.935208"],["-90.081470","29.935125"],["-90.081400","29.935043"],["-90.081330","29.934960"],["-90.081220","29.934830"],["-90.081100","29.934700"],["-90.081007","29.934593"],["-90.080915","29.934485"],["-90.080822","29.934378"],["-90.080730","29.934270"],["-90.080710","29.934220"],["-90.080777","29.934205"],["-90.080710","29.934220"],["-90.080700","29.934150"],["-90.080670","29.934110"],["-90.080660","29.934090"],["-90.080640","29.934070"],["-90.080600","29.934010"],["-90.080495","29.933888"],["-90.080390","29.933765"],["-90.080285","29.933643"],["-90.080180","29.933520"],["-90.080110","29.933430"],["-90.080040","29.933360"],["-90.079980","29.933290"],["-90.079920","29.933220"],["-90.079795","29.933075"],["-90.079670","29.932930"],["-90.079750","29.932870"],["-90.079799","29.932927"],["-90.079750","29.932870"],["-90.079670","29.932930"],["-90.079561","29.932803"],["-90.079452","29.932675"],["-90.079344","29.932548"],["-90.079235","29.932420"],["-90.079126","29.932293"],["-90.079017","29.932165"],["-90.078909","29.932038"],["-90.078800","29.931910"],["-90.078845","29.931886"],["-90.078800","29.931910"],["-90.078760","29.931860"],["-90.078689","29.931779"],["-90.078617","29.931698"],["-90.078546","29.931616"],["-90.078475","29.931535"],["-90.078404","29.931454"],["-90.078332","29.931373"],["-90.078261","29.931291"],["-90.078190","29.931210"],["-90.078102","29.931109"],["-90.078015","29.931008"],["-90.077927","29.930906"],["-90.077840","29.930805"],["-90.077752","29.930704"],["-90.077665","29.930603"],["-90.077577","29.930501"],["-90.077490","29.930400"],["-90.077417","29.930316"],["-90.077345","29.930233"],["-90.077272","29.930149"],["-90.077200","29.930065"],["-90.077127","29.929981"],["-90.077055","29.929898"],["-90.076982","29.929814"],["-90.076910","29.929730"],["-90.076850","29.929660"],["-90.076902","29.929627"],["-90.076850","29.929660"],["-90.076790","29.929590"],["-90.076697","29.929483"],["-90.076605","29.929375"],["-90.076512","29.929268"],["-90.076420","29.929160"],["-90.076352","29.929083"],["-90.076285","29.929005"],["-90.076217","29.928928"],["-90.076150","29.928850"],["-90.076199","29.928817"],["-90.076150","29.928850"],["-90.076080","29.928770"],["-90.076020","29.928680"],["-90.075900","29.928540"],["-90.075780","29.928400"],["-90.075660","29.928260"],["-90.075540","29.928120"],["-90.075420","29.927980"],["-90.075340","29.927889"],["-90.075260","29.927798"],["-90.075180","29.927706"],["-90.075100","29.927615"],["-90.075020","29.927524"],["-90.074940","29.927433"],["-90.074860","29.927341"],["-90.074780","29.927250"],["-90.074833","29.927218"],["-90.074780","29.927250"],["-90.074710","29.927170"],["-90.074625","29.927073"],["-90.074540","29.926975"],["-90.074455","29.926878"],["-90.074370","29.926780"],["-90.074270","29.926670"],["-90.074250","29.926640"],["-90.074165","29.926545"],["-90.074080","29.926450"],["-90.074136","29.926412"],["-90.074080","29.926450"],["-90.074020","29.926380"],["-90.073941","29.926288"],["-90.073862","29.926195"],["-90.073784","29.926103"],["-90.073705","29.926010"],["-90.073626","29.925918"],["-90.073547","29.925825"],["-90.073469","29.925733"],["-90.073390","29.925640"],["-90.073441","29.925601"],["-90.073390","29.925640"],["-90.073340","29.925580"],["-90.073207","29.925428"],["-90.073075","29.925275"],["-90.072942","29.925123"],["-90.072810","29.924970"],["-90.072737","29.924888"],["-90.072665","29.924805"],["-90.072592","29.924723"],["-90.072520","29.924640"],["-90.072450","29.924680"],["-90.072330","29.924760"],["-90.072210","29.924840"],["-90.072151","29.924778"],["-90.072210","29.924840"],["-90.072035","29.924958"],["-90.071860","29.925075"],["-90.071685","29.925193"],["-90.071510","29.925310"],["-90.071400","29.925380"],["-90.071290","29.925450"],["-90.071270","29.925470"],["-90.071155","29.925540"],["-90.071040","29.925610"],["-90.070935","29.925680"],["-90.070830","29.925750"],["-90.070715","29.925820"],["-90.070600","29.925890"],["-90.070475","29.925975"],["-90.070350","29.926060"],["-90.070189","29.926067"]]},{"type":"MultiPoint","coordinates":[["-90.101134","29.983413"],["-90.071797","29.957551"],["-90.070671","29.958178"],["-90.067608","29.961198"],["-90.063700","29.966133"],["-90.065191","29.967177"],["-90.066699","29.968219"],["-90.070241","29.970683"],["-90.072837","29.972470"],["-90.073727","29.973083"],["-90.074639","29.973658"],["-90.075502","29.974279"],["-90.079794","29.977285"],["-90.081305","29.978251"],["-90.083438","29.979710"],["-90.085294","29.980986"],["-90.086608","29.981903"],["-90.088835","29.983444"],["-90.090294","29.984011"],["-90.096474","29.980298"],["-90.099280","29.982178"],["-90.103272","29.984199"],["-90.105686","29.983718"],["-90.108660","29.982873"],["-90.073182","29.925602"],["-90.073841","29.926411"],["-90.074538","29.927200"],["-90.076618","29.929569"],["-90.078566","29.931869"],["-90.079481","29.932913"],["-90.080430","29.934003"],["-90.081767","29.935572"],["-90.082929","29.936926"],["-90.081490","29.937951"],["-90.080748","29.938850"],["-90.080189","29.939626"],["-90.077976","29.942587"],["-90.077030","29.943889"],["-90.075299","29.946626"],["-90.075384","29.950864"],["-90.074706","29.954333"],["-90.074879","29.948054"],["-90.074587","29.949053"],["-90.069093","29.924855"],["-90.110683","29.983377"],["-90.068284","29.969328"],["-90.079186","29.940978"],["-90.078054","29.975915"],["-90.070189","29.926067"],["-90.068365","29.927770"],["-90.071116","29.923512"],["-90.091606","29.983212"],["-90.094193","29.980766"],["-90.095420","29.979615"],["-90.078470","29.976210"],["-90.073384","29.955849"],["-90.075939","29.928770"],["-90.069186","29.959483"],["-90.065324","29.963818"]]},{"type":"LineString","coordinates":[["-90.070189","29.926067"],["-90.070250","29.926130"],["-90.070120","29.926210"],["-90.070050","29.926270"],["-90.070030","29.926280"],["-90.069925","29.926395"],["-90.069820","29.926510"],["-90.069715","29.926625"],["-90.069610","29.926740"],["-90.069500","29.926860"],["-90.069390","29.926980"],["-90.069270","29.927100"],["-90.069120","29.927220"],["-90.068963","29.927353"],["-90.068805","29.927485"],["-90.068648","29.927618"],["-90.068490","29.927750"],["-90.068420","29.927820"],["-90.068365","29.927770"],["-90.068420","29.927820"],["-90.068310","29.927920"],["-90.068210","29.927830"],["-90.068110","29.927740"],["-90.068000","29.927660"],["-90.067860","29.927530"],["-90.067730","29.927415"],["-90.067600","29.927300"],["-90.067470","29.927185"],["-90.067340","29.927070"],["-90.067290","29.927020"],["-90.067330","29.926885"],["-90.067370","29.926750"],["-90.067420","29.926580"],["-90.067470","29.926410"],["-90.067520","29.926240"],["-90.067570","29.926070"],["-90.067590","29.926010"],["-90.067610","29.925960"],["-90.067660","29.925900"],["-90.067710","29.925840"],["-90.067860","29.925750"],["-90.068010","29.925640"],["-90.068050","29.925610"],["-90.068200","29.925490"],["-90.068300","29.925390"],["-90.068460","29.925270"],["-90.068620","29.925150"],["-90.068710","29.925083"],["-90.068800","29.925015"],["-90.068890","29.924948"],["-90.068980","29.924880"],["-90.069060","29.924820"],["-90.069093","29.924855"],["-90.069060","29.924820"],["-90.069153","29.924755"],["-90.069245","29.924690"],["-90.069338","29.924625"],["-90.069430","29.924560"],["-90.069540","29.924483"],["-90.069650","29.924405"],["-90.069760","29.924328"],["-90.069870","29.924250"],["-90.069980","29.924173"],["-90.070090","29.924095"],["-90.070200","29.924018"],["-90.070310","29.923940"],["-90.070400","29.923880"],["-90.070490","29.923820"],["-90.070600","29.923740"],["-90.070710","29.923670"],["-90.070880","29.923570"],["-90.070920","29.923550"],["-90.071090","29.923470"],["-90.071116","29.923512"],["-90.071090","29.923470"],["-90.071200","29.923410"],["-90.071210","29.923400"],["-90.071300","29.923360"],["-90.071367","29.923443"],["-90.071435","29.923525"],["-90.071502","29.923608"],["-90.071570","29.923690"],["-90.071685","29.923820"],["-90.071800","29.923950"],["-90.071881","29.924041"],["-90.071962","29.924133"],["-90.072044","29.924224"],["-90.072125","29.924315"],["-90.072206","29.924406"],["-90.072287","29.924498"],["-90.072369","29.924589"],["-90.072450","29.924680"],["-90.072522","29.924763"],["-90.072595","29.924845"],["-90.072667","29.924928"],["-90.072740","29.925010"],["-90.072840","29.925140"],["-90.072932","29.925250"],["-90.073025","29.925360"],["-90.073117","29.925470"],["-90.073210","29.925580"],["-90.073182","29.925602"],["-90.073210","29.925580"],["-90.073260","29.925640"],["-90.073339","29.925733"],["-90.073417","29.925825"],["-90.073496","29.925918"],["-90.073575","29.926010"],["-90.073654","29.926103"],["-90.073732","29.926195"],["-90.073811","29.926288"],["-90.073890","29.926380"],["-90.073841","29.926411"],["-90.073890","29.926380"],["-90.073940","29.926440"],["-90.074020","29.926531"],["-90.074100","29.926623"],["-90.074180","29.926714"],["-90.074260","29.926805"],["-90.074340","29.926896"],["-90.074420","29.926988"],["-90.074500","29.927079"],["-90.074580","29.927170"],["-90.074538","29.927200"],["-90.074580","29.927170"],["-90.074630","29.927220"],["-90.074717","29.927323"],["-90.074805","29.927425"],["-90.074892","29.927528"],["-90.074980","29.927630"],["-90.075067","29.927733"],["-90.075155","29.927835"],["-90.075242","29.927938"],["-90.075330","29.928040"],["-90.075405","29.928126"],["-90.075480","29.928213"],["-90.075555","29.928299"],["-90.075630","29.928385"],["-90.075705","29.928471"],["-90.075780","29.928558"],["-90.075855","29.928644"],["-90.075930","29.928730"],["-90.075950","29.928760"],["-90.075939","29.928770"],["-90.075950","29.928760"],["-90.076000","29.928820"],["-90.076080","29.928911"],["-90.076160","29.929003"],["-90.076240","29.929094"],["-90.076320","29.929185"],["-90.076400","29.929276"],["-90.076480","29.929368"],["-90.076560","29.929459"],["-90.076640","29.929550"],["-90.076618","29.929569"],["-90.076640","29.929550"],["-90.076710","29.929640"],["-90.076840","29.929785"],["-90.076970","29.929930"],["-90.077082","29.930058"],["-90.077195","29.930185"],["-90.077307","29.930313"],["-90.077420","29.930440"],["-90.077507","29.930543"],["-90.077595","29.930645"],["-90.077682","29.930748"],["-90.077770","29.930850"],["-90.077857","29.930953"],["-90.077945","29.931055"],["-90.078032","29.931158"],["-90.078120","29.931260"],["-90.078245","29.931405"],["-90.078370","29.931550"],["-90.078495","29.931695"],["-90.078620","29.931840"],["-90.078566","29.931869"],["-90.078620","29.931840"],["-90.078680","29.931910"],["-90.078802","29.932055"],["-90.078925","29.932200"],["-90.079047","29.932345"],["-90.079170","29.932490"],["-90.079257","29.932590"],["-90.079345","29.932690"],["-90.079432","29.932790"],["-90.079520","29.932890"],["-90.079481","29.932913"],["-90.079520","29.932890"],["-90.079600","29.932980"],["-90.079720","29.933125"],["-90.079840","29.933270"],["-90.079970","29.933420"],["-90.080092","29.933563"],["-90.080215","29.933705"],["-90.080337","29.933848"],["-90.080460","29.933990"],["-90.080430","29.934003"],["-90.080460","29.933990"],["-90.080520","29.934060"],["-90.080560","29.934120"],["-90.080570","29.934130"],["-90.080580","29.934140"],["-90.080620","29.934200"],["-90.080730","29.934270"],["-90.080822","29.934378"],["-90.080915","29.934485"],["-90.081007","29.934593"],["-90.081100","29.934700"],["-90.081220","29.934830"],["-90.081330","29.934960"],["-90.081452","29.935105"],["-90.081575","29.935250"],["-90.081697","29.935395"],["-90.081820","29.935540"],["-90.081767","29.935572"],["-90.081820","29.935540"],["-90.081890","29.935620"],["-90.081964","29.935706"],["-90.082037","29.935793"],["-90.082111","29.935879"],["-90.082185","29.935965"],["-90.082259","29.936051"],["-90.082332","29.936138"],["-90.082406","29.936224"],["-90.082480","29.936310"],["-90.082550","29.936390"],["-90.082622","29.936473"],["-90.082695","29.936555"],["-90.082767","29.936638"],["-90.082823","29.936738"],["-90.082915","29.936805"],["-90.082990","29.936890"],["-90.082929","29.936926"],["-90.082990","29.936890"],["-90.083080","29.936990"],["-90.082961","29.937069"],["-90.082843","29.937148"],["-90.082724","29.937226"],["-90.082605","29.937305"],["-90.082486","29.937384"],["-90.082368","29.937463"],["-90.082249","29.937541"],["-90.082130","29.937620"],["-90.081980","29.937715"],["-90.081830","29.937810"],["-90.081680","29.937905"],["-90.081530","29.938000"],["-90.081490","29.937951"],["-90.081530","29.938000"],["-90.081480","29.938030"],["-90.081370","29.938080"],["-90.081300","29.938195"],["-90.081230","29.938310"],["-90.081220","29.938320"],["-90.081120","29.938490"],["-90.081045","29.938590"],["-90.080970","29.938690"],["-90.080895","29.938790"],["-90.080820","29.938890"],["-90.080748","29.938850"],["-90.080820","29.938890"],["-90.080710","29.939030"],["-90.080615","29.939150"],["-90.080520","29.939270"],["-90.080425","29.939390"],["-90.080330","29.939510"],["-90.080260","29.939600"],["-90.080220","29.939650"],["-90.080189","29.939626"],["-90.080220","29.939650"],["-90.080180","29.939710"],["-90.080115","29.939796"],["-90.080050","29.939883"],["-90.079985","29.939969"],["-90.079920","29.940055"],["-90.079855","29.940141"],["-90.079790","29.940228"],["-90.079725","29.940314"],["-90.079660","29.940400"],["-90.079580","29.940510"],["-90.079465","29.940670"],["-90.079350","29.940830"],["-90.079290","29.940915"],["-90.079230","29.941000"],["-90.079186","29.940978"],["-90.079230","29.941000"],["-90.079180","29.941080"],["-90.079110","29.941180"],["-90.079048","29.941264"],["-90.078985","29.941348"],["-90.078923","29.941431"],["-90.078860","29.941515"],["-90.078798","29.941599"],["-90.078735","29.941683"],["-90.078673","29.941766"],["-90.078610","29.941850"],["-90.078546","29.941935"],["-90.078483","29.942020"],["-90.078419","29.942105"],["-90.078355","29.942190"],["-90.078291","29.942275"],["-90.078228","29.942360"],["-90.078164","29.942445"],["-90.078100","29.942530"],["-90.078040","29.942620"],["-90.077976","29.942587"],["-90.078040","29.942620"],["-90.077970","29.942714"],["-90.077900","29.942808"],["-90.077830","29.942901"],["-90.077760","29.942995"],["-90.077690","29.943089"],["-90.077620","29.943183"],["-90.077550","29.943276"],["-90.077480","29.943370"],["-90.077418","29.943450"],["-90.077355","29.943530"],["-90.077293","29.943610"],["-90.077230","29.943690"],["-90.077140","29.943820"],["-90.077070","29.943910"],["-90.077030","29.943889"],["-90.077070","29.943910"],["-90.077030","29.943970"],["-90.077000","29.944000"],["-90.076990","29.944020"],["-90.076930","29.944090"],["-90.076920","29.944100"],["-90.076910","29.944110"],["-90.076910","29.944120"],["-90.076880","29.944160"],["-90.076870","29.944170"],["-90.076820","29.944230"],["-90.076800","29.944270"],["-90.076740","29.944350"],["-90.076730","29.944360"],["-90.076690","29.944440"],["-90.076615","29.944550"],["-90.076540","29.944660"],["-90.076445","29.944793"],["-90.076350","29.944925"],["-90.076255","29.945058"],["-90.076160","29.945190"],["-90.076060","29.945300"],["-90.076060","29.945310"],["-90.076020","29.945360"],["-90.076000","29.945380"],["-90.075910","29.945440"],["-90.075840","29.945590"],["-90.075720","29.945740"],["-90.075650","29.945850"],["-90.075630","29.945880"],["-90.075575","29.946050"],["-90.075536","29.946179"],["-90.075497","29.946307"],["-90.075458","29.946436"],["-90.075419","29.946565"],["-90.075299","29.946626"],["-90.075317","29.946746"],["-90.075336","29.946867"],["-90.075289","29.947009"],["-90.075243","29.947150"],["-90.075197","29.947292"],["-90.075151","29.947434"],["-90.075104","29.947576"],["-90.075058","29.947718"],["-90.075012","29.947859"],["-90.074965","29.948001"],["-90.074879","29.948054"],["-90.074920","29.948224"],["-90.074882","29.948348"],["-90.074845","29.948472"],["-90.074807","29.948596"],["-90.074770","29.948720"],["-90.074730","29.948840"],["-90.074695","29.948955"],["-90.074660","29.949070"],["-90.074587","29.949053"],["-90.074660","29.949070"],["-90.074640","29.949160"],["-90.074606","29.949271"],["-90.074573","29.949383"],["-90.074539","29.949494"],["-90.074505","29.949605"],["-90.074471","29.949716"],["-90.074438","29.949828"],["-90.074404","29.949939"],["-90.074370","29.950050"],["-90.074330","29.950185"],["-90.074290","29.950320"],["-90.074250","29.950460"],["-90.074362","29.950485"],["-90.074475","29.950510"],["-90.074587","29.950535"],["-90.074700","29.950560"],["-90.074720","29.950560"],["-90.074840","29.950585"],["-90.074960","29.950610"],["-90.075160","29.950680"],["-90.075360","29.950750"],["-90.075384","29.950864"],["-90.075525","29.950788"],["-90.075600","29.950819"],["-90.075579","29.950922"],["-90.075557","29.951025"],["-90.075554","29.951173"],["-90.075550","29.951320"],["-90.075560","29.951420"],["-90.075570","29.951560"],["-90.075580","29.951620"],["-90.075580","29.951710"],["-90.075580","29.951780"],["-90.075570","29.951830"],["-90.075570","29.951870"],["-90.075570","29.951910"],["-90.075560","29.951970"],["-90.075540","29.952110"],["-90.075500","29.952260"],["-90.075470","29.952370"],["-90.075450","29.952480"],["-90.075415","29.952595"],["-90.075380","29.952710"],["-90.075340","29.952820"],["-90.075310","29.952930"],["-90.075265","29.953080"],["-90.075220","29.953230"],["-90.075180","29.953350"],["-90.075160","29.953430"],["-90.075140","29.953480"],["-90.075100","29.953625"],["-90.075060","29.953770"],["-90.075020","29.953920"],["-90.074980","29.954040"],["-90.074950","29.954130"],["-90.074900","29.954220"],["-90.074890","29.954250"],["-90.074850","29.954300"],["-90.074706","29.954333"],["-90.074780","29.954380"],["-90.074750","29.954410"],["-90.074700","29.954470"],["-90.074600","29.954570"],["-90.074550","29.954610"],["-90.074490","29.954670"],["-90.074420","29.954750"],["-90.074350","29.954830"],["-90.074280","29.954910"],["-90.074195","29.954995"],["-90.074110","29.955080"],["-90.073980","29.955220"],["-90.073848","29.955373"],["-90.073715","29.955525"],["-90.073583","29.955678"],["-90.073450","29.955830"],["-90.073410","29.955870"],["-90.073384","29.955849"],["-90.073420","29.955880"],["-90.073370","29.955940"],["-90.073290","29.956030"],["-90.073210","29.956120"],["-90.073150","29.956190"],["-90.073060","29.956290"],["-90.072970","29.956390"],["-90.072910","29.956460"],["-90.072820","29.956560"],["-90.072730","29.956660"],["-90.072640","29.956760"],["-90.072550","29.956860"],["-90.072460","29.956960"],["-90.072370","29.957063"],["-90.072280","29.957165"],["-90.072190","29.957268"],["-90.072100","29.957370"],["-90.071949","29.957461"],["-90.071797","29.957551"],["-90.071783","29.957652"],["-90.071770","29.957753"],["-90.071681","29.957851"],["-90.071593","29.957948"],["-90.071504","29.958046"],["-90.071416","29.958143"],["-90.071327","29.958241"],["-90.071239","29.958339"],["-90.071150","29.958436"],["-90.071062","29.958534"],["-90.070909","29.958425"],["-90.070756","29.958315"],["-90.070671","29.958178"],["-90.070523","29.958198"],["-90.070375","29.958218"],["-90.070290","29.958315"],["-90.070205","29.958413"],["-90.070120","29.958510"],["-90.070040","29.958598"],["-90.069960","29.958685"],["-90.069880","29.958773"],["-90.069800","29.958860"],["-90.069720","29.958950"],["-90.069650","29.959030"],["-90.069545","29.959150"],["-90.069440","29.959270"],["-90.069335","29.959390"],["-90.069230","29.959510"],["-90.069186","29.959483"],["-90.069230","29.959510"],["-90.069100","29.959650"],["-90.069013","29.959749"],["-90.068925","29.959848"],["-90.068838","29.959946"],["-90.068750","29.960045"],["-90.068663","29.960144"],["-90.068575","29.960243"],["-90.068488","29.960341"],["-90.068400","29.960440"],["-90.068305","29.960545"],["-90.068210","29.960650"],["-90.068115","29.960755"],["-90.068020","29.960860"],["-90.067990","29.960900"],["-90.067860","29.961040"],["-90.067770","29.961140"],["-90.067680","29.961240"],["-90.067608","29.961198"],["-90.067680","29.961240"],["-90.067610","29.961320"],["-90.067529","29.961410"],["-90.067448","29.961500"],["-90.067366","29.961590"],["-90.067285","29.961680"],["-90.067204","29.961770"],["-90.067123","29.961860"],["-90.067041","29.961950"],["-90.066960","29.962040"],["-90.066900","29.962110"],["-90.066810","29.962211"],["-90.066720","29.962313"],["-90.066630","29.962414"],["-90.066540","29.962515"],["-90.066450","29.962616"],["-90.066360","29.962718"],["-90.066270","29.962819"],["-90.066180","29.962920"],["-90.066083","29.963030"],["-90.065985","29.963140"],["-90.065888","29.963250"],["-90.065790","29.963360"],["-90.065710","29.963450"],["-90.065630","29.963540"],["-90.065550","29.963630"],["-90.065470","29.963720"],["-90.065324","29.963818"],["-90.065269","29.963933"],["-90.065213","29.964048"],["-90.065081","29.964182"],["-90.064949","29.964317"],["-90.064816","29.964451"],["-90.064684","29.964586"],["-90.064598","29.964683"],["-90.064511","29.964779"],["-90.064425","29.964875"],["-90.064339","29.964971"],["-90.064253","29.965068"],["-90.064166","29.965164"],["-90.064080","29.965260"],["-90.063958","29.965398"],["-90.063835","29.965535"],["-90.063713","29.965673"],["-90.063590","29.965810"],["-90.063480","29.965934"],["-90.063600","29.966020"],["-90.063720","29.966110"],["-90.063700","29.966133"],["-90.063720","29.966110"],["-90.063827","29.966183"],["-90.063935","29.966255"],["-90.064042","29.966328"],["-90.064150","29.966400"],["-90.064200","29.966420"],["-90.064350","29.966525"],["-90.064500","29.966630"],["-90.064591","29.966693"],["-90.064682","29.966755"],["-90.064774","29.966818"],["-90.064865","29.966880"],["-90.064956","29.966943"],["-90.065047","29.967005"],["-90.065139","29.967068"],["-90.065230","29.967130"],["-90.065191","29.967177"],["-90.065230","29.967130"],["-90.065240","29.967140"],["-90.065330","29.967210"],["-90.065462","29.967303"],["-90.065595","29.967395"],["-90.065727","29.967488"],["-90.065860","29.967580"],["-90.065955","29.967644"],["-90.066050","29.967708"],["-90.066145","29.967771"],["-90.066240","29.967835"],["-90.066335","29.967899"],["-90.066430","29.967963"],["-90.066525","29.968026"],["-90.066620","29.968090"],["-90.066740","29.968180"],["-90.066699","29.968219"],["-90.066740","29.968180"],["-90.066860","29.968260"],["-90.066970","29.968338"],["-90.067080","29.968415"],["-90.067190","29.968493"],["-90.067300","29.968570"],["-90.067455","29.968690"],["-90.067610","29.968810"],["-90.067775","29.968925"],["-90.067940","29.969040"],["-90.068100","29.969150"],["-90.068260","29.969260"],["-90.068270","29.969260"],["-90.068310","29.969300"],["-90.068284","29.969328"],["-90.068310","29.969300"],["-90.068380","29.969340"],["-90.068480","29.969430"],["-90.068490","29.969430"],["-90.068630","29.969540"],["-90.068640","29.969540"],["-90.068640","29.969550"],["-90.068660","29.969560"],["-90.068760","29.969630"],["-90.068900","29.969715"],["-90.069040","29.969800"],["-90.069210","29.969890"],["-90.069355","29.969990"],["-90.069500","29.970090"],["-90.069635","29.970183"],["-90.069770","29.970275"],["-90.069905","29.970368"],["-90.070040","29.970460"],["-90.070165","29.970545"],["-90.070290","29.970630"],["-90.070241","29.970683"],["-90.070290","29.970630"],["-90.070380","29.970700"],["-90.070476","29.970766"],["-90.070572","29.970833"],["-90.070669","29.970899"],["-90.070765","29.970965"],["-90.070861","29.971031"],["-90.070957","29.971098"],["-90.071054","29.971164"],["-90.071150","29.971230"],["-90.071180","29.971250"],["-90.071210","29.971270"],["-90.071230","29.971300"],["-90.071342","29.971375"],["-90.071455","29.971450"],["-90.071567","29.971525"],["-90.071680","29.971600"],["-90.071792","29.971675"],["-90.071905","29.971750"],["-90.072017","29.971825"],["-90.072130","29.971900"],["-90.072224","29.971966"],["-90.072317","29.972033"],["-90.072411","29.972099"],["-90.072505","29.972165"],["-90.072599","29.972231"],["-90.072692","29.972298"],["-90.072786","29.972364"],["-90.072880","29.972430"],["-90.072837","29.972470"],["-90.072880","29.972430"],["-90.072980","29.972500"],["-90.073135","29.972610"],["-90.073290","29.972720"],["-90.073450","29.972820"],["-90.073610","29.972920"],["-90.073780","29.973020"],["-90.073727","29.973083"],["-90.073780","29.973020"],["-90.073860","29.973070"],["-90.073990","29.973155"],["-90.074120","29.973240"],["-90.074257","29.973338"],["-90.074395","29.973435"],["-90.074532","29.973533"],["-90.074670","29.973630"],["-90.074639","29.973658"],["-90.074670","29.973630"],["-90.074740","29.973680"],["-90.074841","29.973748"],["-90.074942","29.973815"],["-90.075044","29.973883"],["-90.075145","29.973950"],["-90.075246","29.974018"],["-90.075347","29.974085"],["-90.075449","29.974153"],["-90.075550","29.974220"],["-90.075502","29.974279"],["-90.075550","29.974220"],["-90.075620","29.974260"],["-90.075700","29.974340"],["-90.075760","29.974380"],["-90.075857","29.974448"],["-90.075955","29.974515"],["-90.076052","29.974583"],["-90.076150","29.974650"],["-90.076260","29.974730"],["-90.076370","29.974810"],["-90.076475","29.974883"],["-90.076580","29.974955"],["-90.076685","29.975028"],["-90.076790","29.975100"],["-90.076910","29.975170"],["-90.077080","29.975285"],["-90.077250","29.975400"],["-90.077390","29.975500"],["-90.077512","29.975585"],["-90.077647","29.975668"],["-90.077783","29.975750"],["-90.077918","29.975833"],["-90.078054","29.975915"],["-90.078158","29.975989"],["-90.078262","29.976063"],["-90.078366","29.976136"],["-90.078470","29.976210"],["-90.078553","29.976277"],["-90.078635","29.976344"],["-90.078718","29.976412"],["-90.078801","29.976479"],["-90.078884","29.976546"],["-90.078966","29.976613"],["-90.079049","29.976680"],["-90.079132","29.976748"],["-90.079215","29.976815"],["-90.079297","29.976882"],["-90.079380","29.976949"],["-90.079463","29.977016"],["-90.079546","29.977083"],["-90.079628","29.977151"],["-90.079711","29.977218"],["-90.079794","29.977285"],["-90.079953","29.977364"],["-90.080112","29.977443"],["-90.080271","29.977521"],["-90.080430","29.977600"],["-90.080544","29.977678"],["-90.080657","29.977755"],["-90.080771","29.977833"],["-90.080885","29.977910"],["-90.080999","29.977988"],["-90.081112","29.978065"],["-90.081226","29.978143"],["-90.081340","29.978220"],["-90.081305","29.978251"],["-90.081340","29.978220"],["-90.081420","29.978270"],["-90.081542","29.978356"],["-90.081665","29.978443"],["-90.081787","29.978529"],["-90.081910","29.978615"],["-90.082032","29.978701"],["-90.082155","29.978788"],["-90.082277","29.978874"],["-90.082400","29.978960"],["-90.082545","29.979055"],["-90.082690","29.979150"],["-90.082842","29.979258"],["-90.082995","29.979365"],["-90.083147","29.979473"],["-90.083300","29.979580"],["-90.083460","29.979690"],["-90.083438","29.979710"],["-90.083460","29.979690"],["-90.083565","29.979760"],["-90.083670","29.979830"],["-90.083780","29.979905"],["-90.083890","29.979980"],["-90.084000","29.980055"],["-90.084110","29.980130"],["-90.084220","29.980205"],["-90.084330","29.980280"],["-90.084440","29.980355"],["-90.084550","29.980430"],["-90.084690","29.980525"],["-90.084830","29.980620"],["-90.084952","29.980705"],["-90.085075","29.980790"],["-90.085197","29.980875"],["-90.085320","29.980960"],["-90.085294","29.980986"],["-90.085320","29.980960"],["-90.085460","29.981060"],["-90.085520","29.981110"],["-90.085610","29.981170"],["-90.085700","29.981230"],["-90.085875","29.981345"],["-90.086050","29.981460"],["-90.086197","29.981563"],["-90.086345","29.981665"],["-90.086492","29.981768"],["-90.086640","29.981870"],["-90.086608","29.981903"],["-90.086640","29.981870"],["-90.086710","29.981910"],["-90.086805","29.981980"],["-90.086900","29.982050"],["-90.086997","29.982118"],["-90.087095","29.982185"],["-90.087192","29.982253"],["-90.087290","29.982320"],["-90.087435","29.982420"],["-90.087580","29.982520"],["-90.087680","29.982590"],["-90.087780","29.982660"],["-90.087870","29.982720"],["-90.087990","29.982805"],["-90.088110","29.982890"],["-90.088230","29.982975"],["-90.088350","29.983060"],["-90.088470","29.983140"],["-90.088590","29.983220"],["-90.088710","29.983300"],["-90.088870","29.983410"],["-90.088835","29.983444"],["-90.088870","29.983410"],["-90.089010","29.983490"],["-90.089140","29.983610"],["-90.089200","29.983650"],["-90.089230","29.983670"],["-90.089345","29.983745"],["-90.089460","29.983820"],["-90.089530","29.983870"],["-90.089590","29.983920"],["-90.089640","29.983990"],["-90.089720","29.984090"],["-90.089780","29.984160"],["-90.089820","29.984220"],["-90.089840","29.984240"],["-90.089870","29.984270"],["-90.089890","29.984280"],["-90.089960","29.984330"],["-90.090060","29.984190"],["-90.090160","29.984050"],["-90.090200","29.984000"],["-90.090220","29.983970"],["-90.090294","29.984011"],["-90.090220","29.983970"],["-90.090310","29.983870"],["-90.090380","29.983790"],["-90.090460","29.983720"],["-90.090540","29.983660"],["-90.090650","29.983590"],["-90.090730","29.983550"],["-90.090840","29.983510"],["-90.091040","29.983440"],["-90.091240","29.983380"],["-90.091300","29.983350"],["-90.091430","29.983265"],["-90.091600","29.983150"],["-90.091606","29.983212"],["-90.091715","29.983059"],["-90.091824","29.982906"],["-90.091859","29.982857"],["-90.091998","29.982723"],["-90.092138","29.982590"],["-90.092276","29.982457"],["-90.092416","29.982323"],["-90.092450","29.982290"],["-90.092589","29.982156"],["-90.092679","29.982069"],["-90.092818","29.981936"],["-90.092930","29.981829"],["-90.092990","29.981780"],["-90.093131","29.981648"],["-90.093271","29.981515"],["-90.093412","29.981383"],["-90.093553","29.981251"],["-90.093660","29.981150"],["-90.093820","29.981035"],["-90.093901","29.980961"],["-90.093982","29.980887"],["-90.094063","29.980813"],["-90.094144","29.980739"],["-90.094193","29.980766"],["-90.094201","29.980691"],["-90.094325","29.980573"],["-90.094449","29.980456"],["-90.094573","29.980338"],["-90.094697","29.980221"],["-90.094821","29.980103"],["-90.094945","29.979985"],["-90.095069","29.979868"],["-90.095193","29.979750"],["-90.095286","29.979667"],["-90.095379","29.979583"],["-90.095420","29.979615"],["-90.095432","29.979534"],["-90.095564","29.979620"],["-90.095696","29.979706"],["-90.095828","29.979792"],["-90.095961","29.979878"],["-90.096093","29.979964"],["-90.096225","29.980050"],["-90.096357","29.980136"],["-90.096489","29.980222"],["-90.096474","29.980298"],["-90.096540","29.980256"],["-90.096644","29.980324"],["-90.096747","29.980393"],["-90.096851","29.980461"],["-90.096955","29.980530"],["-90.097122","29.980645"],["-90.097290","29.980760"],["-90.097330","29.980790"],["-90.097440","29.980865"],["-90.097550","29.980940"],["-90.097695","29.981038"],["-90.097840","29.981135"],["-90.097985","29.981233"],["-90.098130","29.981330"],["-90.098222","29.981395"],["-90.098315","29.981460"],["-90.098407","29.981525"],["-90.098500","29.981590"],["-90.098675","29.981700"],["-90.098850","29.981810"],["-90.098970","29.981888"],["-90.099090","29.981965"],["-90.099210","29.982043"],["-90.099330","29.982120"],["-90.099280","29.982178"],["-90.099330","29.982120"],["-90.099420","29.982180"],["-90.099534","29.982258"],["-90.099647","29.982335"],["-90.099761","29.982413"],["-90.099875","29.982490"],["-90.099989","29.982568"],["-90.100102","29.982645"],["-90.100216","29.982723"],["-90.100330","29.982800"],["-90.100435","29.982871"],["-90.100540","29.982943"],["-90.100645","29.983014"],["-90.100750","29.983085"],["-90.100855","29.983156"],["-90.100960","29.983228"],["-90.101065","29.983299"],["-90.101170","29.983370"],["-90.101134","29.983413"],["-90.101170","29.983370"],["-90.101250","29.983420"],["-90.101370","29.983490"],["-90.101490","29.983560"],["-90.101580","29.983590"],["-90.101690","29.983630"],["-90.101900","29.983690"],["-90.102070","29.983740"],["-90.102090","29.983750"],["-90.102100","29.983760"],["-90.102120","29.983770"],["-90.102130","29.983770"],["-90.102140","29.983780"],["-90.102150","29.983790"],["-90.102150","29.983800"],["-90.102160","29.983820"],["-90.102160","29.983840"],["-90.102160","29.983940"],["-90.102160","29.984060"],["-90.102190","29.984060"],["-90.102310","29.984070"],["-90.102510","29.984090"],["-90.102710","29.984110"],["-90.102810","29.984110"],["-90.102985","29.984125"],["-90.103160","29.984140"],["-90.103270","29.984140"],["-90.103272","29.984199"],["-90.103270","29.984140"],["-90.103290","29.984140"],["-90.103450","29.984140"],["-90.103660","29.984140"],["-90.103720","29.984130"],["-90.103860","29.984100"],["-90.104000","29.984070"],["-90.104128","29.984038"],["-90.104255","29.984005"],["-90.104383","29.983973"],["-90.104510","29.983940"],["-90.104638","29.983908"],["-90.104765","29.983875"],["-90.104893","29.983843"],["-90.105020","29.983810"],["-90.105200","29.983770"],["-90.105380","29.983730"],["-90.105530","29.983690"],["-90.105680","29.983650"],["-90.105700","29.983710"],["-90.105686","29.983718"],["-90.105700","29.983710"],["-90.105680","29.983650"],["-90.105795","29.983620"],["-90.105911","29.983602"],["-90.106076","29.983556"],["-90.106241","29.983509"],["-90.106407","29.983463"],["-90.106572","29.983417"],["-90.106737","29.983370"],["-90.106902","29.983324"],["-90.107068","29.983278"],["-90.107233","29.983231"],["-90.107398","29.983185"],["-90.107563","29.983139"],["-90.107728","29.983092"],["-90.107894","29.983046"],["-90.108059","29.983000"],["-90.108224","29.982953"],["-90.108389","29.982907"],["-90.108503","29.982879"],["-90.108616","29.982850"],["-90.108660","29.982873"],["-90.108781","29.982792"],["-90.108985","29.982725"],["-90.109189","29.982658"],["-90.109394","29.982592"],["-90.109598","29.982525"],["-90.109802","29.982458"],["-90.110006","29.982391"],["-90.110210","29.982324"],["-90.110415","29.982258"],["-90.110404","29.982436"],["-90.110393","29.982614"],["-90.110382","29.982793"],["-90.110372","29.982971"],["-90.110362","29.983139"],["-90.110352","29.983308"],["-90.110341","29.983476"],["-90.110331","29.983645"],["-90.110476","29.983677"],["-90.110588","29.983664"],["-90.110700","29.983650"],["-90.110700","29.983530"],["-90.110700","29.983430"],["-90.110683","29.983377"]]}]}},{"type":"Feature","properties":{"route_id":"9999","agency_id":"1","route_short_name":"9999","route_long_name":"TEST ROUTE","route_type":"3","route_color":"#FFFFFF","route_text_color":"#null"},"geometry":{"type":"GeometryCollection","geometries":[{"type":"MultiPoint","coordinates":[["-90.087582","29.968155"],["-90.085109","29.967882"],["-90.083087","29.970207"],["-90.078061","29.966956"],["-90.082270","29.962370"],["-90.087803","29.968348"]]},{"type":"LineString","coordinates":[["-90.087582","29.968155"],["-90.087640","29.968180"],["-90.087540","29.968340"],["-90.087440","29.968275"],["-90.087340","29.968210"],["-90.087270","29.968160"],["-90.087127","29.968064"],["-90.086985","29.967968"],["-90.086842","29.967871"],["-90.086700","29.967775"],["-90.086557","29.967679"],["-90.086415","29.967583"],["-90.086272","29.967486"],["-90.086130","29.967390"],["-90.085980","29.967290"],["-90.085840","29.967170"],["-90.085770","29.967240"],["-90.085695","29.967325"],["-90.085620","29.967410"],["-90.085545","29.967490"],["-90.085470","29.967570"],["-90.085400","29.967640"],["-90.085330","29.967720"],["-90.085260","29.967800"],["-90.085150","29.967910"],["-90.085109","29.967882"],["-90.085150","29.967910"],["-90.085040","29.968030"],["-90.084930","29.968143"],["-90.084820","29.968255"],["-90.084710","29.968368"],["-90.084600","29.968480"],["-90.084550","29.968540"],["-90.084480","29.968620"],["-90.084410","29.968700"],["-90.084340","29.968800"],["-90.084280","29.968880"],["-90.084200","29.969015"],["-90.084120","29.969150"],["-90.084000","29.969300"],["-90.083870","29.969440"],["-90.083820","29.969520"],["-90.083734","29.969618"],["-90.083648","29.969715"],["-90.083561","29.969813"],["-90.083475","29.969910"],["-90.083389","29.970008"],["-90.083303","29.970105"],["-90.083216","29.970203"],["-90.083130","29.970300"],["-90.083050","29.970240"],["-90.083087","29.970207"],["-90.083050","29.970240"],["-90.083130","29.970300"],["-90.083020","29.970420"],["-90.082905","29.970555"],["-90.082790","29.970690"],["-90.082650","29.970600"],["-90.082550","29.970530"],["-90.082450","29.970460"],["-90.082370","29.970410"],["-90.082290","29.970350"],["-90.082180","29.970270"],["-90.082100","29.970210"],["-90.082030","29.970160"],["-90.081882","29.970063"],["-90.081735","29.969965"],["-90.081587","29.969868"],["-90.081440","29.969770"],["-90.081280","29.969663"],["-90.081120","29.969555"],["-90.080960","29.969448"],["-90.080800","29.969340"],["-90.080640","29.969230"],["-90.080475","29.969120"],["-90.080310","29.969010"],["-90.080147","29.968903"],["-90.079985","29.968795"],["-90.079822","29.968688"],["-90.079660","29.968580"],["-90.079545","29.968500"],["-90.079430","29.968420"],["-90.079320","29.968345"],["-90.079210","29.968270"],["-90.079040","29.968158"],["-90.078870","29.968045"],["-90.078700","29.967933"],["-90.078530","29.967820"],["-90.078392","29.967730"],["-90.078255","29.967640"],["-90.078117","29.967550"],["-90.077980","29.967460"],["-90.077865","29.967375"],["-90.077750","29.967290"],["-90.077825","29.967205"],["-90.077900","29.967120"],["-90.077975","29.967035"],["-90.078050","29.966950"],["-90.078061","29.966956"],["-90.078050","29.966950"],["-90.078125","29.966868"],["-90.078200","29.966785"],["-90.078275","29.966703"],["-90.078350","29.966620"],["-90.078455","29.966495"],["-90.078560","29.966370"],["-90.078680","29.966245"],["-90.078800","29.966120"],["-90.078878","29.966035"],["-90.078955","29.965950"],["-90.079033","29.965865"],["-90.079110","29.965780"],["-90.079170","29.965710"],["-90.079250","29.965625"],["-90.079330","29.965540"],["-90.079400","29.965460"],["-90.079480","29.965370"],["-90.079559","29.965283"],["-90.079638","29.965195"],["-90.079716","29.965108"],["-90.079795","29.965020"],["-90.079874","29.964933"],["-90.079953","29.964845"],["-90.080031","29.964758"],["-90.080110","29.964670"],["-90.080218","29.964550"],["-90.080325","29.964430"],["-90.080433","29.964310"],["-90.080540","29.964190"],["-90.080675","29.964040"],["-90.080810","29.963890"],["-90.080860","29.963830"],["-90.080935","29.963743"],["-90.081010","29.963655"],["-90.081085","29.963568"],["-90.081160","29.963480"],["-90.081248","29.963380"],["-90.081335","29.963280"],["-90.081423","29.963180"],["-90.081510","29.963080"],["-90.081608","29.962973"],["-90.081705","29.962865"],["-90.081803","29.962758"],["-90.081900","29.962650"],["-90.082010","29.962530"],["-90.082105","29.962425"],["-90.082200","29.962320"],["-90.082270","29.962370"],["-90.082200","29.962320"],["-90.082270","29.962250"],["-90.082432","29.962358"],["-90.082595","29.962465"],["-90.082757","29.962573"],["-90.082920","29.962680"],["-90.083060","29.962780"],["-90.083170","29.962854"],["-90.083280","29.962928"],["-90.083390","29.963001"],["-90.083500","29.963075"],["-90.083610","29.963149"],["-90.083720","29.963223"],["-90.083830","29.963296"],["-90.083940","29.963370"],["-90.084090","29.963475"],["-90.084240","29.963580"],["-90.084360","29.963670"],["-90.084470","29.963745"],["-90.084580","29.963820"],["-90.084690","29.963895"],["-90.084800","29.963970"],["-90.084931","29.964059"],["-90.085062","29.964148"],["-90.085194","29.964236"],["-90.085325","29.964325"],["-90.085456","29.964414"],["-90.085587","29.964503"],["-90.085719","29.964591"],["-90.085850","29.964680"],["-90.085990","29.964775"],["-90.086130","29.964870"],["-90.086220","29.964930"],["-90.086327","29.965005"],["-90.086435","29.965080"],["-90.086542","29.965155"],["-90.086650","29.965230"],["-90.086810","29.965340"],["-90.086907","29.965405"],["-90.087005","29.965470"],["-90.087102","29.965535"],["-90.087200","29.965600"],["-90.087370","29.965710"],["-90.087500","29.965800"],["-90.087615","29.965875"],["-90.087730","29.965950"],["-90.087880","29.966050"],["-90.087985","29.966120"],["-90.088090","29.966190"],["-90.088160","29.966230"],["-90.088275","29.966310"],["-90.088390","29.966390"],["-90.088490","29.966460"],["-90.088590","29.966530"],["-90.088750","29.966630"],["-90.088670","29.966720"],["-90.088540","29.966860"],["-90.088463","29.966945"],["-90.088385","29.967030"],["-90.088308","29.967115"],["-90.088230","29.967200"],["-90.088105","29.967340"],["-90.087980","29.967480"],["-90.088030","29.967520"],["-90.088130","29.967560"],["-90.088100","29.967610"],["-90.088000","29.967695"],["-90.087900","29.967780"],["-90.087815","29.967900"],["-90.087730","29.968020"],["-90.087700","29.968130"],["-90.087790","29.968205"],["-90.087803","29.968348"]]},{"type":"MultiPoint","coordinates":[["-90.100315","29.974355"],["-90.092157","29.968815"],["-90.093714","29.969875"],["-90.095326","29.970960"],["-90.096863","29.971974"],["-90.098436","29.973067"],["-90.091244","29.968193"],["-90.090192","29.967848"]]},{"type":"LineString","coordinates":[["-90.100315","29.974355"],["-90.100144","29.974238"],["-90.099973","29.974121"],["-90.099803","29.974004"],["-90.099632","29.973887"],["-90.099461","29.973770"],["-90.099290","29.973652"],["-90.099119","29.973535"],["-90.098948","29.973418"],["-90.098778","29.973301"],["-90.098607","29.973184"],["-90.098436","29.973067"],["-90.098279","29.972958"],["-90.098121","29.972848"],["-90.097964","29.972739"],["-90.097807","29.972630"],["-90.097650","29.972521"],["-90.097492","29.972411"],["-90.097335","29.972302"],["-90.097178","29.972193"],["-90.097020","29.972083"],["-90.096863","29.971974"],["-90.096692","29.971861"],["-90.096521","29.971749"],["-90.096351","29.971636"],["-90.096180","29.971523"],["-90.096009","29.971411"],["-90.095838","29.971298"],["-90.095668","29.971185"],["-90.095497","29.971073"],["-90.095326","29.970960"],["-90.095165","29.970852"],["-90.095004","29.970743"],["-90.094842","29.970635"],["-90.094681","29.970526"],["-90.094520","29.970418"],["-90.094359","29.970309"],["-90.094198","29.970201"],["-90.094036","29.970092"],["-90.093875","29.969984"],["-90.093714","29.969875"],["-90.093541","29.969757"],["-90.093368","29.969639"],["-90.093195","29.969522"],["-90.093022","29.969404"],["-90.092849","29.969286"],["-90.092676","29.969168"],["-90.092503","29.969051"],["-90.092330","29.968933"],["-90.092157","29.968815"],["-90.092005","29.968711"],["-90.091853","29.968608"],["-90.091701","29.968504"],["-90.091548","29.968400"],["-90.091396","29.968297"],["-90.091244","29.968193"],["-90.091081","29.968075"],["-90.090917","29.967957"],["-90.090754","29.967839"],["-90.090653","29.967776"],["-90.090552","29.967712"],["-90.090396","29.967704"],["-90.090246","29.967760"],["-90.090192","29.967848"]]},{"type":"MultiPoint","coordinates":[["-90.100437","29.974417"],["-90.098614","29.973209"],["-90.096687","29.971921"],["-90.095228","29.970874"],["-90.093656","29.969827"],["-90.092050","29.968718"],["-90.091415","29.968288"],["-90.090192","29.967848"]]},{"type":"LineString","coordinates":[["-90.090192","29.967848"],["-90.090283","29.967809"],["-90.090353","29.967769"],["-90.090434","29.967764"],["-90.090594","29.967783"],["-90.090766","29.967900"],["-90.090937","29.968017"],["-90.091096","29.968107"],["-90.091256","29.968198"],["-90.091415","29.968288"],["-90.091554","29.968386"],["-90.091693","29.968483"],["-90.091832","29.968581"],["-90.091971","29.968678"],["-90.092050","29.968718"],["-90.092209","29.968830"],["-90.092369","29.968942"],["-90.092528","29.969054"],["-90.092687","29.969167"],["-90.092846","29.969279"],["-90.093006","29.969391"],["-90.093165","29.969503"],["-90.093329","29.969611"],["-90.093492","29.969719"],["-90.093656","29.969827"],["-90.093821","29.969939"],["-90.093987","29.970050"],["-90.094152","29.970162"],["-90.094317","29.970274"],["-90.094483","29.970385"],["-90.094648","29.970497"],["-90.094793","29.970591"],["-90.094938","29.970686"],["-90.095083","29.970780"],["-90.095228","29.970874"],["-90.095388","29.970982"],["-90.095548","29.971089"],["-90.095708","29.971197"],["-90.095868","29.971305"],["-90.096028","29.971412"],["-90.096188","29.971520"],["-90.096313","29.971620"],["-90.096438","29.971721"],["-90.096562","29.971821"],["-90.096687","29.971921"],["-90.096860","29.972032"],["-90.097033","29.972143"],["-90.097206","29.972254"],["-90.097379","29.972364"],["-90.097552","29.972475"],["-90.097725","29.972586"],["-90.097873","29.972690"],["-90.098021","29.972794"],["-90.098170","29.972898"],["-90.098318","29.973001"],["-90.098466","29.973105"],["-90.098614","29.973209"],["-90.098776","29.973315"],["-90.098937","29.973420"],["-90.099099","29.973526"],["-90.099260","29.973632"],["-90.099422","29.973737"],["-90.099583","29.973843"],["-90.099744","29.973949"],["-90.099904","29.974056"],["-90.100065","29.974162"],["-90.100225","29.974268"],["-90.100331","29.974343"],["-90.100437","29.974417"]]}]}}]} diff --git a/public/app.js b/public/app.js index 7766704..1f5efc4 100644 --- a/public/app.js +++ b/public/app.js @@ -1,16 +1,16 @@ -(()=>{var Jv=Object.create;var Gn=Object.defineProperty;var Qv=Object.getOwnPropertyDescriptor;var $v=Object.getOwnPropertyNames;var Kv=Object.getPrototypeOf,qv=Object.prototype.hasOwnProperty;var s0=(t,a)=>()=>(a||t((a={exports:{}}).exports,a),a.exports);var td=(t,a,r,n)=>{if(a&&typeof a=="object"||typeof a=="function")for(let i of $v(a))!qv.call(t,i)&&i!==r&&Gn(t,i,{get:()=>a[i],enumerable:!(n=Qv(a,i))||n.enumerable});return t};var j=(t,a,r)=>(r=t!=null?Jv(Kv(t)):{},td(a||!t||!t.__esModule?Gn(r,"default",{value:t,enumerable:!0}):r,t));var qn=s0(f0=>{"use strict";var _t=Symbol.for("react.element"),ad=Symbol.for("react.portal"),ed=Symbol.for("react.fragment"),rd=Symbol.for("react.strict_mode"),nd=Symbol.for("react.profiler"),id=Symbol.for("react.provider"),ld=Symbol.for("react.context"),od=Symbol.for("react.forward_ref"),ud=Symbol.for("react.suspense"),sd=Symbol.for("react.memo"),cd=Symbol.for("react.lazy"),Zn=Symbol.iterator;function hd(t){return t===null||typeof t!="object"?null:(t=Zn&&t[Zn]||t["@@iterator"],typeof t=="function"?t:null)}var jn={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},Un=Object.assign,Yn={};function A5(t,a,r){this.props=t,this.context=a,this.refs=Yn,this.updater=r||jn}A5.prototype.isReactComponent={};A5.prototype.setState=function(t,a){if(typeof t!="object"&&typeof t!="function"&&t!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,t,a,"setState")};A5.prototype.forceUpdate=function(t){this.updater.enqueueForceUpdate(this,t,"forceUpdate")};function Jn(){}Jn.prototype=A5.prototype;function Y6(t,a,r){this.props=t,this.context=a,this.refs=Yn,this.updater=r||jn}var J6=Y6.prototype=new Jn;J6.constructor=Y6;Un(J6,A5.prototype);J6.isPureReactComponent=!0;var Wn=Array.isArray,Qn=Object.prototype.hasOwnProperty,Q6={current:null},$n={key:!0,ref:!0,__self:!0,__source:!0};function Kn(t,a,r){var n,i={},o=null,s=null;if(a!=null)for(n in a.ref!==void 0&&(s=a.ref),a.key!==void 0&&(o=""+a.key),a)Qn.call(a,n)&&!$n.hasOwnProperty(n)&&(i[n]=a[n]);var h=arguments.length-2;if(h===1)i.children=r;else if(1{"use strict";ti.exports=qn()});var ci=s0(y0=>{"use strict";function a8(t,a){var r=t.length;t.push(a);t:for(;0>>1,i=t[n];if(0>>1;nc4(h,r))vc4(f,h)?(t[n]=f,t[v]=r,n=v):(t[n]=h,t[s]=r,n=s);else if(vc4(f,r))t[n]=f,t[v]=r,n=v;else break t}}return a}function c4(t,a){var r=t.sortIndex-a.sortIndex;return r!==0?r:t.id-a.id}typeof performance=="object"&&typeof performance.now=="function"?(ai=performance,y0.unstable_now=function(){return ai.now()}):(K6=Date,ei=K6.now(),y0.unstable_now=function(){return K6.now()-ei});var ai,K6,ei,A2=[],s9=[],gd=1,J1=null,h1=3,d4=!1,D9=!1,Ft=!1,ii=typeof setTimeout=="function"?setTimeout:null,li=typeof clearTimeout=="function"?clearTimeout:null,ri=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function e8(t){for(var a=c2(s9);a!==null;){if(a.callback===null)v4(s9);else if(a.startTime<=t)v4(s9),a.sortIndex=a.expirationTime,a8(A2,a);else break;a=c2(s9)}}function r8(t){if(Ft=!1,e8(t),!D9)if(c2(A2)!==null)D9=!0,i8(n8);else{var a=c2(s9);a!==null&&l8(r8,a.startTime-t)}}function n8(t,a){D9=!1,Ft&&(Ft=!1,li(St),St=-1),d4=!0;var r=h1;try{for(e8(a),J1=c2(A2);J1!==null&&(!(J1.expirationTime>a)||t&&!si());){var n=J1.callback;if(typeof n=="function"){J1.callback=null,h1=J1.priorityLevel;var i=n(J1.expirationTime<=a);a=y0.unstable_now(),typeof i=="function"?J1.callback=i:J1===c2(A2)&&v4(A2),e8(a)}else v4(A2);J1=c2(A2)}if(J1!==null)var o=!0;else{var s=c2(s9);s!==null&&l8(r8,s.startTime-a),o=!1}return o}finally{J1=null,h1=r,d4=!1}}var f4=!1,h4=null,St=-1,oi=5,ui=-1;function si(){return!(y0.unstable_now()-uit||125n?(t.sortIndex=r,a8(s9,t),c2(A2)===null&&t===c2(s9)&&(Ft?(li(St),St=-1):Ft=!0,l8(r8,r-n))):(t.sortIndex=i,a8(A2,t),D9||d4||(D9=!0,i8(n8))),t};y0.unstable_shouldYield=si;y0.unstable_wrapCallback=function(t){var a=h1;return function(){var r=h1;h1=a;try{return t.apply(this,arguments)}finally{h1=r}}}});var vi=s0((ux,hi)=>{"use strict";hi.exports=ci()});var xu=s0(O1=>{"use strict";var xl=u0(),R1=vi();function O(t){for(var a="https://reactjs.org/docs/error-decoder.html?invariant="+t,r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),L8=Object.prototype.hasOwnProperty,md=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,di={},fi={};function zd(t){return L8.call(fi,t)?!0:L8.call(di,t)?!1:md.test(t)?fi[t]=!0:(di[t]=!0,!1)}function xd(t,a,r,n){if(r!==null&&r.type===0)return!1;switch(typeof a){case"function":case"symbol":return!0;case"boolean":return n?!1:r!==null?!r.acceptsBooleans:(t=t.toLowerCase().slice(0,5),t!=="data-"&&t!=="aria-");default:return!1}}function Md(t,a,r,n){if(a===null||typeof a>"u"||xd(t,a,r,n))return!0;if(n)return!1;if(r!==null)switch(r.type){case 3:return!a;case 4:return a===!1;case 5:return isNaN(a);case 6:return isNaN(a)||1>a}return!1}function C1(t,a,r,n,i,o,s){this.acceptsBooleans=a===2||a===3||a===4,this.attributeName=n,this.attributeNamespace=i,this.mustUseProperty=r,this.propertyName=t,this.type=a,this.sanitizeURL=o,this.removeEmptyString=s}var o1={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(t){o1[t]=new C1(t,0,!1,t,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(t){var a=t[0];o1[a]=new C1(a,1,!1,t[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(t){o1[t]=new C1(t,2,!1,t.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(t){o1[t]=new C1(t,2,!1,t,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(t){o1[t]=new C1(t,3,!1,t.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(t){o1[t]=new C1(t,3,!0,t,null,!1,!1)});["capture","download"].forEach(function(t){o1[t]=new C1(t,4,!1,t,null,!1,!1)});["cols","rows","size","span"].forEach(function(t){o1[t]=new C1(t,6,!1,t,null,!1,!1)});["rowSpan","start"].forEach(function(t){o1[t]=new C1(t,5,!1,t.toLowerCase(),null,!1,!1)});var C7=/[\-:]([a-z])/g;function B7(t){return t[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(t){var a=t.replace(C7,B7);o1[a]=new C1(a,1,!1,t,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(t){var a=t.replace(C7,B7);o1[a]=new C1(a,1,!1,t,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(t){var a=t.replace(C7,B7);o1[a]=new C1(a,1,!1,t,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(t){o1[t]=new C1(t,1,!1,t.toLowerCase(),null,!1,!1)});o1.xlinkHref=new C1("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(t){o1[t]=new C1(t,1,!1,t.toLowerCase(),null,!0,!0)});function V7(t,a,r,n){var i=o1.hasOwnProperty(a)?o1[a]:null;(i!==null?i.type!==0:n||!(2{var Jv=Object.create;var Gn=Object.defineProperty;var Qv=Object.getOwnPropertyDescriptor;var $v=Object.getOwnPropertyNames;var Kv=Object.getPrototypeOf,qv=Object.prototype.hasOwnProperty;var s0=(t,a)=>()=>(a||t((a={exports:{}}).exports,a),a.exports);var td=(t,a,r,n)=>{if(a&&typeof a=="object"||typeof a=="function")for(let i of $v(a))!qv.call(t,i)&&i!==r&&Gn(t,i,{get:()=>a[i],enumerable:!(n=Qv(a,i))||n.enumerable});return t};var j=(t,a,r)=>(r=t!=null?Jv(Kv(t)):{},td(a||!t||!t.__esModule?Gn(r,"default",{value:t,enumerable:!0}):r,t));var qn=s0(f0=>{"use strict";var _3=Symbol.for("react.element"),ad=Symbol.for("react.portal"),ed=Symbol.for("react.fragment"),rd=Symbol.for("react.strict_mode"),nd=Symbol.for("react.profiler"),id=Symbol.for("react.provider"),ld=Symbol.for("react.context"),od=Symbol.for("react.forward_ref"),ud=Symbol.for("react.suspense"),sd=Symbol.for("react.memo"),cd=Symbol.for("react.lazy"),Zn=Symbol.iterator;function hd(t){return t===null||typeof t!="object"?null:(t=Zn&&t[Zn]||t["@@iterator"],typeof t=="function"?t:null)}var jn={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},Un=Object.assign,Yn={};function A5(t,a,r){this.props=t,this.context=a,this.refs=Yn,this.updater=r||jn}A5.prototype.isReactComponent={};A5.prototype.setState=function(t,a){if(typeof t!="object"&&typeof t!="function"&&t!=null)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,t,a,"setState")};A5.prototype.forceUpdate=function(t){this.updater.enqueueForceUpdate(this,t,"forceUpdate")};function Jn(){}Jn.prototype=A5.prototype;function J7(t,a,r){this.props=t,this.context=a,this.refs=Yn,this.updater=r||jn}var Q7=J7.prototype=new Jn;Q7.constructor=J7;Un(Q7,A5.prototype);Q7.isPureReactComponent=!0;var Wn=Array.isArray,Qn=Object.prototype.hasOwnProperty,$7={current:null},$n={key:!0,ref:!0,__self:!0,__source:!0};function Kn(t,a,r){var n,i={},o=null,s=null;if(a!=null)for(n in a.ref!==void 0&&(s=a.ref),a.key!==void 0&&(o=""+a.key),a)Qn.call(a,n)&&!$n.hasOwnProperty(n)&&(i[n]=a[n]);var h=arguments.length-2;if(h===1)i.children=r;else if(1{"use strict";ti.exports=qn()});var ci=s0(y0=>{"use strict";function et(t,a){var r=t.length;t.push(a);t:for(;0>>1,i=t[n];if(0>>1;nc4(h,r))vc4(f,h)?(t[n]=f,t[v]=r,n=v):(t[n]=h,t[s]=r,n=s);else if(vc4(f,r))t[n]=f,t[v]=r,n=v;else break t}}return a}function c4(t,a){var r=t.sortIndex-a.sortIndex;return r!==0?r:t.id-a.id}typeof performance=="object"&&typeof performance.now=="function"?(ai=performance,y0.unstable_now=function(){return ai.now()}):(q7=Date,ei=q7.now(),y0.unstable_now=function(){return q7.now()-ei});var ai,q7,ei,A2=[],s1=[],gd=1,J9=null,h9=3,d4=!1,D1=!1,F3=!1,ii=typeof setTimeout=="function"?setTimeout:null,li=typeof clearTimeout=="function"?clearTimeout:null,ri=typeof setImmediate<"u"?setImmediate:null;typeof navigator<"u"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function rt(t){for(var a=c2(s1);a!==null;){if(a.callback===null)v4(s1);else if(a.startTime<=t)v4(s1),a.sortIndex=a.expirationTime,et(A2,a);else break;a=c2(s1)}}function nt(t){if(F3=!1,rt(t),!D1)if(c2(A2)!==null)D1=!0,lt(it);else{var a=c2(s1);a!==null&&ot(nt,a.startTime-t)}}function it(t,a){D1=!1,F3&&(F3=!1,li(S3),S3=-1),d4=!0;var r=h9;try{for(rt(a),J9=c2(A2);J9!==null&&(!(J9.expirationTime>a)||t&&!si());){var n=J9.callback;if(typeof n=="function"){J9.callback=null,h9=J9.priorityLevel;var i=n(J9.expirationTime<=a);a=y0.unstable_now(),typeof i=="function"?J9.callback=i:J9===c2(A2)&&v4(A2),rt(a)}else v4(A2);J9=c2(A2)}if(J9!==null)var o=!0;else{var s=c2(s1);s!==null&&ot(nt,s.startTime-a),o=!1}return o}finally{J9=null,h9=r,d4=!1}}var f4=!1,h4=null,S3=-1,oi=5,ui=-1;function si(){return!(y0.unstable_now()-uit||125n?(t.sortIndex=r,et(s1,t),c2(A2)===null&&t===c2(s1)&&(F3?(li(S3),S3=-1):F3=!0,ot(nt,r-n))):(t.sortIndex=i,et(A2,t),D1||d4||(D1=!0,lt(it))),t};y0.unstable_shouldYield=si;y0.unstable_wrapCallback=function(t){var a=h9;return function(){var r=h9;h9=a;try{return t.apply(this,arguments)}finally{h9=r}}}});var vi=s0((ux,hi)=>{"use strict";hi.exports=ci()});var xu=s0(O9=>{"use strict";var xl=u0(),T9=vi();function O(t){for(var a="https://reactjs.org/docs/error-decoder.html?invariant="+t,r=1;r"u"||typeof window.document>"u"||typeof window.document.createElement>"u"),Ft=Object.prototype.hasOwnProperty,md=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,di={},fi={};function zd(t){return Ft.call(fi,t)?!0:Ft.call(di,t)?!1:md.test(t)?fi[t]=!0:(di[t]=!0,!1)}function xd(t,a,r,n){if(r!==null&&r.type===0)return!1;switch(typeof a){case"function":case"symbol":return!0;case"boolean":return n?!1:r!==null?!r.acceptsBooleans:(t=t.toLowerCase().slice(0,5),t!=="data-"&&t!=="aria-");default:return!1}}function Md(t,a,r,n){if(a===null||typeof a>"u"||xd(t,a,r,n))return!0;if(n)return!1;if(r!==null)switch(r.type){case 3:return!a;case 4:return a===!1;case 5:return isNaN(a);case 6:return isNaN(a)||1>a}return!1}function C9(t,a,r,n,i,o,s){this.acceptsBooleans=a===2||a===3||a===4,this.attributeName=n,this.attributeNamespace=i,this.mustUseProperty=r,this.propertyName=t,this.type=a,this.sanitizeURL=o,this.removeEmptyString=s}var o9={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(t){o9[t]=new C9(t,0,!1,t,null,!1,!1)});[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(t){var a=t[0];o9[a]=new C9(a,1,!1,t[1],null,!1,!1)});["contentEditable","draggable","spellCheck","value"].forEach(function(t){o9[t]=new C9(t,2,!1,t.toLowerCase(),null,!1,!1)});["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(t){o9[t]=new C9(t,2,!1,t,null,!1,!1)});"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(t){o9[t]=new C9(t,3,!1,t.toLowerCase(),null,!1,!1)});["checked","multiple","muted","selected"].forEach(function(t){o9[t]=new C9(t,3,!0,t,null,!1,!1)});["capture","download"].forEach(function(t){o9[t]=new C9(t,4,!1,t,null,!1,!1)});["cols","rows","size","span"].forEach(function(t){o9[t]=new C9(t,6,!1,t,null,!1,!1)});["rowSpan","start"].forEach(function(t){o9[t]=new C9(t,5,!1,t.toLowerCase(),null,!1,!1)});var Ba=/[\-:]([a-z])/g;function Va(t){return t[1].toUpperCase()}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(t){var a=t.replace(Ba,Va);o9[a]=new C9(a,1,!1,t,null,!1,!1)});"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(t){var a=t.replace(Ba,Va);o9[a]=new C9(a,1,!1,t,"http://www.w3.org/1999/xlink",!1,!1)});["xml:base","xml:lang","xml:space"].forEach(function(t){var a=t.replace(Ba,Va);o9[a]=new C9(a,1,!1,t,"http://www.w3.org/XML/1998/namespace",!1,!1)});["tabIndex","crossOrigin"].forEach(function(t){o9[t]=new C9(t,1,!1,t.toLowerCase(),null,!1,!1)});o9.xlinkHref=new C9("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1);["src","href","action","formAction"].forEach(function(t){o9[t]=new C9(t,1,!1,t.toLowerCase(),null,!0,!0)});function Ha(t,a,r,n){var i=o9.hasOwnProperty(a)?o9[a]:null;(i!==null?i.type!==0:n||!(2h||i[s]!==o[h]){var v=` -`+i[s].replace(" at new "," at ");return t.displayName&&v.includes("")&&(v=v.replace("",t.displayName)),v}while(1<=s&&0<=h);break}}}finally{u8=!1,Error.prepareStackTrace=r}return(t=t?t.displayName||t.name:"")?Nt(t):""}function Cd(t){switch(t.tag){case 5:return Nt(t.type);case 16:return Nt("Lazy");case 13:return Nt("Suspense");case 19:return Nt("SuspenseList");case 0:case 2:case 15:return t=s8(t.type,!1),t;case 11:return t=s8(t.type.render,!1),t;case 1:return t=s8(t.type,!0),t;default:return""}}function I8(t){if(t==null)return null;if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t;switch(t){case F5:return"Fragment";case L5:return"Portal";case F8:return"Profiler";case H7:return"StrictMode";case S8:return"Suspense";case b8:return"SuspenseList"}if(typeof t=="object")switch(t.$$typeof){case Bl:return(t.displayName||"Context")+".Consumer";case Cl:return(t._context.displayName||"Context")+".Provider";case w7:var a=t.render;return t=t.displayName,t||(t=a.displayName||a.name||"",t=t!==""?"ForwardRef("+t+")":"ForwardRef"),t;case A7:return a=t.displayName||null,a!==null?a:I8(t.type)||"Memo";case h9:a=t._payload,t=t._init;try{return I8(t(a))}catch{}}return null}function Bd(t){var a=t.type;switch(t.tag){case 24:return"Cache";case 9:return(a.displayName||"Context")+".Consumer";case 10:return(a._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return t=a.render,t=t.displayName||t.name||"",a.displayName||(t!==""?"ForwardRef("+t+")":"ForwardRef");case 7:return"Fragment";case 5:return a;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return I8(a);case 8:return a===H7?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof a=="function")return a.displayName||a.name||null;if(typeof a=="string")return a}return null}function w9(t){switch(typeof t){case"boolean":case"number":case"string":case"undefined":return t;case"object":return t;default:return""}}function Hl(t){var a=t.type;return(t=t.nodeName)&&t.toLowerCase()==="input"&&(a==="checkbox"||a==="radio")}function Vd(t){var a=Hl(t)?"checked":"value",r=Object.getOwnPropertyDescriptor(t.constructor.prototype,a),n=""+t[a];if(!t.hasOwnProperty(a)&&typeof r<"u"&&typeof r.get=="function"&&typeof r.set=="function"){var i=r.get,o=r.set;return Object.defineProperty(t,a,{configurable:!0,get:function(){return i.call(this)},set:function(s){n=""+s,o.call(this,s)}}),Object.defineProperty(t,a,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(s){n=""+s},stopTracking:function(){t._valueTracker=null,delete t[a]}}}}function g4(t){t._valueTracker||(t._valueTracker=Vd(t))}function wl(t){if(!t)return!1;var a=t._valueTracker;if(!a)return!0;var r=a.getValue(),n="";return t&&(n=Hl(t)?t.checked?"true":"false":t.value),t=n,t!==r?(a.setValue(t),!0):!1}function W4(t){if(t=t||(typeof document<"u"?document:void 0),typeof t>"u")return null;try{return t.activeElement||t.body}catch{return t.body}}function E8(t,a){var r=a.checked;return k0({},a,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:r??t._wrapperState.initialChecked})}function gi(t,a){var r=a.defaultValue==null?"":a.defaultValue,n=a.checked!=null?a.checked:a.defaultChecked;r=w9(a.value!=null?a.value:r),t._wrapperState={initialChecked:n,initialValue:r,controlled:a.type==="checkbox"||a.type==="radio"?a.checked!=null:a.value!=null}}function Al(t,a){a=a.checked,a!=null&&V7(t,"checked",a,!1)}function P8(t,a){Al(t,a);var r=w9(a.value),n=a.type;if(r!=null)n==="number"?(r===0&&t.value===""||t.value!=r)&&(t.value=""+r):t.value!==""+r&&(t.value=""+r);else if(n==="submit"||n==="reset"){t.removeAttribute("value");return}a.hasOwnProperty("value")?T8(t,a.type,r):a.hasOwnProperty("defaultValue")&&T8(t,a.type,w9(a.defaultValue)),a.checked==null&&a.defaultChecked!=null&&(t.defaultChecked=!!a.defaultChecked)}function mi(t,a,r){if(a.hasOwnProperty("value")||a.hasOwnProperty("defaultValue")){var n=a.type;if(!(n!=="submit"&&n!=="reset"||a.value!==void 0&&a.value!==null))return;a=""+t._wrapperState.initialValue,r||a===t.value||(t.value=a),t.defaultValue=a}r=t.name,r!==""&&(t.name=""),t.defaultChecked=!!t._wrapperState.initialChecked,r!==""&&(t.name=r)}function T8(t,a,r){(a!=="number"||W4(t.ownerDocument)!==t)&&(r==null?t.defaultValue=""+t._wrapperState.initialValue:t.defaultValue!==""+r&&(t.defaultValue=""+r))}var Dt=Array.isArray;function D5(t,a,r,n){if(t=t.options,a){a={};for(var i=0;i"+a.valueOf().toString()+"",a=m4.firstChild;t.firstChild;)t.removeChild(t.firstChild);for(;a.firstChild;)t.appendChild(a.firstChild)}});function t3(t,a){if(a){var r=t.firstChild;if(r&&r===t.lastChild&&r.nodeType===3){r.nodeValue=a;return}}t.textContent=a}var Wt={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Hd=["Webkit","ms","Moz","O"];Object.keys(Wt).forEach(function(t){Hd.forEach(function(a){a=a+t.charAt(0).toUpperCase()+t.substring(1),Wt[a]=Wt[t]})});function Fl(t,a,r){return a==null||typeof a=="boolean"||a===""?"":r||typeof a!="number"||a===0||Wt.hasOwnProperty(t)&&Wt[t]?(""+a).trim():a+"px"}function Sl(t,a){t=t.style;for(var r in a)if(a.hasOwnProperty(r)){var n=r.indexOf("--")===0,i=Fl(r,a[r],n);r==="float"&&(r="cssFloat"),n?t.setProperty(r,i):t[r]=i}}var wd=k0({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function O8(t,a){if(a){if(wd[t]&&(a.children!=null||a.dangerouslySetInnerHTML!=null))throw Error(O(137,t));if(a.dangerouslySetInnerHTML!=null){if(a.children!=null)throw Error(O(60));if(typeof a.dangerouslySetInnerHTML!="object"||!("__html"in a.dangerouslySetInnerHTML))throw Error(O(61))}if(a.style!=null&&typeof a.style!="object")throw Error(O(62))}}function N8(t,a){if(t.indexOf("-")===-1)return typeof a.is=="string";switch(t){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var D8=null;function y7(t){return t=t.target||t.srcElement||window,t.correspondingUseElement&&(t=t.correspondingUseElement),t.nodeType===3?t.parentNode:t}var G8=null,G5=null,Z5=null;function Mi(t){if(t=z3(t)){if(typeof G8!="function")throw Error(O(280));var a=t.stateNode;a&&(a=za(a),G8(t.stateNode,t.type,a))}}function bl(t){G5?Z5?Z5.push(t):Z5=[t]:G5=t}function Il(){if(G5){var t=G5,a=Z5;if(Z5=G5=null,Mi(t),a)for(t=0;t>>=0,t===0?32:31-(Td(t)/Rd|0)|0}var z4=64,x4=4194304;function Gt(t){switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return t&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return t}}function Y4(t,a){var r=t.pendingLanes;if(r===0)return 0;var n=0,i=t.suspendedLanes,o=t.pingedLanes,s=r&268435455;if(s!==0){var h=s&~i;h!==0?n=Gt(h):(o&=s,o!==0&&(n=Gt(o)))}else s=r&~i,s!==0?n=Gt(s):o!==0&&(n=Gt(o));if(n===0)return 0;if(a!==0&&a!==n&&(a&i)===0&&(i=n&-n,o=a&-a,i>=o||i===16&&(o&4194240)!==0))return a;if((n&4)!==0&&(n|=r&16),a=t.entangledLanes,a!==0)for(t=t.entanglements,a&=n;0r;r++)a.push(t);return a}function g3(t,a,r){t.pendingLanes|=a,a!==536870912&&(t.suspendedLanes=0,t.pingedLanes=0),t=t.eventTimes,a=31-p2(a),t[a]=r}function Dd(t,a){var r=t.pendingLanes&~a;t.pendingLanes=a,t.suspendedLanes=0,t.pingedLanes=0,t.expiredLanes&=a,t.mutableReadLanes&=a,t.entangledLanes&=a,a=t.entanglements;var n=t.eventTimes;for(t=t.expirationTimes;0=jt),Li=String.fromCharCode(32),Fi=!1;function ql(t,a){switch(t){case"keyup":return gf.indexOf(a.keyCode)!==-1;case"keydown":return a.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function to(t){return t=t.detail,typeof t=="object"&&"data"in t?t.data:null}var S5=!1;function zf(t,a){switch(t){case"compositionend":return to(a);case"keypress":return a.which!==32?null:(Fi=!0,Li);case"textInput":return t=a.data,t===Li&&Fi?null:t;default:return null}}function xf(t,a){if(S5)return t==="compositionend"||!P7&&ql(t,a)?(t=$l(),P4=b7=p9=null,S5=!1,t):null;switch(t){case"paste":return null;case"keypress":if(!(a.ctrlKey||a.altKey||a.metaKey)||a.ctrlKey&&a.altKey){if(a.char&&1=a)return{node:r,offset:a-t};t=n}t:{for(;r;){if(r.nextSibling){r=r.nextSibling;break t}r=r.parentNode}r=void 0}r=Ii(r)}}function no(t,a){return t&&a?t===a?!0:t&&t.nodeType===3?!1:a&&a.nodeType===3?no(t,a.parentNode):"contains"in t?t.contains(a):t.compareDocumentPosition?!!(t.compareDocumentPosition(a)&16):!1:!1}function io(){for(var t=window,a=W4();a instanceof t.HTMLIFrameElement;){try{var r=typeof a.contentWindow.location.href=="string"}catch{r=!1}if(r)t=a.contentWindow;else break;a=W4(t.document)}return a}function T7(t){var a=t&&t.nodeName&&t.nodeName.toLowerCase();return a&&(a==="input"&&(t.type==="text"||t.type==="search"||t.type==="tel"||t.type==="url"||t.type==="password")||a==="textarea"||t.contentEditable==="true")}function _f(t){var a=io(),r=t.focusedElem,n=t.selectionRange;if(a!==r&&r&&r.ownerDocument&&no(r.ownerDocument.documentElement,r)){if(n!==null&&T7(r)){if(a=n.start,t=n.end,t===void 0&&(t=a),"selectionStart"in r)r.selectionStart=a,r.selectionEnd=Math.min(t,r.value.length);else if(t=(a=r.ownerDocument||document)&&a.defaultView||window,t.getSelection){t=t.getSelection();var i=r.textContent.length,o=Math.min(n.start,i);n=n.end===void 0?o:Math.min(n.end,i),!t.extend&&o>n&&(i=n,n=o,o=i),i=Ei(r,o);var s=Ei(r,n);i&&s&&(t.rangeCount!==1||t.anchorNode!==i.node||t.anchorOffset!==i.offset||t.focusNode!==s.node||t.focusOffset!==s.offset)&&(a=a.createRange(),a.setStart(i.node,i.offset),t.removeAllRanges(),o>n?(t.addRange(a),t.extend(s.node,s.offset)):(a.setEnd(s.node,s.offset),t.addRange(a)))}}for(a=[],t=r;t=t.parentNode;)t.nodeType===1&&a.push({element:t,left:t.scrollLeft,top:t.scrollTop});for(typeof r.focus=="function"&&r.focus(),r=0;r=document.documentMode,b5=null,Y8=null,Yt=null,J8=!1;function Pi(t,a,r){var n=r.window===r?r.document:r.nodeType===9?r:r.ownerDocument;J8||b5==null||b5!==W4(n)||(n=b5,"selectionStart"in n&&T7(n)?n={start:n.selectionStart,end:n.selectionEnd}:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection(),n={anchorNode:n.anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset}),Yt&&l3(Yt,n)||(Yt=n,n=$4(Y8,"onSelect"),0P5||(t.current=a7[P5],a7[P5]=null,P5--)}function _0(t,a){P5++,a7[P5]=t.current,t.current=a}var A9={},p1=_9(A9),w1=_9(!1),J9=A9;function Y5(t,a){var r=t.type.contextTypes;if(!r)return A9;var n=t.stateNode;if(n&&n.__reactInternalMemoizedUnmaskedChildContext===a)return n.__reactInternalMemoizedMaskedChildContext;var i={},o;for(o in r)i[o]=a[o];return n&&(t=t.stateNode,t.__reactInternalMemoizedUnmaskedChildContext=a,t.__reactInternalMemoizedMaskedChildContext=i),i}function A1(t){return t=t.childContextTypes,t!=null}function q4(){S0(w1),S0(p1)}function Wi(t,a,r){if(p1.current!==A9)throw Error(O(168));_0(p1,a),_0(w1,r)}function po(t,a,r){var n=t.stateNode;if(a=a.childContextTypes,typeof n.getChildContext!="function")return r;n=n.getChildContext();for(var i in n)if(!(i in a))throw Error(O(108,Bd(t)||"Unknown",i));return k0({},r,n)}function ta(t){return t=(t=t.stateNode)&&t.__reactInternalMemoizedMergedChildContext||A9,J9=p1.current,_0(p1,t),_0(w1,w1.current),!0}function Xi(t,a,r){var n=t.stateNode;if(!n)throw Error(O(169));r?(t=po(t,a,J9),n.__reactInternalMemoizedMergedChildContext=t,S0(w1),S0(p1),_0(p1,t)):S0(w1),_0(w1,r)}var G2=null,xa=!1,M8=!1;function go(t){G2===null?G2=[t]:G2.push(t)}function kf(t){xa=!0,go(t)}function L9(){if(!M8&&G2!==null){M8=!0;var t=0,a=C0;try{var r=G2;for(C0=1;t>=s,i-=s,Z2=1<<32-p2(a)+i|r<k?(R=P,P=null):R=P.sibling;var N=z(C,P,V[k],w);if(N===null){P===null&&(P=R);break}t&&P&&N.alternate===null&&a(C,P),M=o(N,M,k),b===null?E=N:b.sibling=N,b=N,P=R}if(k===V.length)return r(C,P),I0&&G9(C,k),E;if(P===null){for(;kk?(R=P,P=null):R=P.sibling;var t0=z(C,P,N.value,w);if(t0===null){P===null&&(P=R);break}t&&P&&t0.alternate===null&&a(C,P),M=o(t0,M,k),b===null?E=t0:b.sibling=t0,b=t0,P=R}if(N.done)return r(C,P),I0&&G9(C,k),E;if(P===null){for(;!N.done;k++,N=V.next())N=m(C,N.value,w),N!==null&&(M=o(N,M,k),b===null?E=N:b.sibling=N,b=N);return I0&&G9(C,k),E}for(P=n(C,P);!N.done;k++,N=V.next())N=H(P,C,k,N.value,w),N!==null&&(t&&N.alternate!==null&&P.delete(N.key===null?k:N.key),M=o(N,M,k),b===null?E=N:b.sibling=N,b=N);return t&&P.forEach(function(v0){return a(C,v0)}),I0&&G9(C,k),E}function I(C,M,V,w){if(typeof V=="object"&&V!==null&&V.type===F5&&V.key===null&&(V=V.props.children),typeof V=="object"&&V!==null){switch(V.$$typeof){case p4:t:{for(var E=V.key,b=M;b!==null;){if(b.key===E){if(E=V.type,E===F5){if(b.tag===7){r(C,b.sibling),M=i(b,V.props.children),M.return=C,C=M;break t}}else if(b.elementType===E||typeof E=="object"&&E!==null&&E.$$typeof===h9&&Ki(E)===b.type){r(C,b.sibling),M=i(b,V.props),M.ref=Tt(C,b,V),M.return=C,C=M;break t}r(C,b);break}else a(C,b);b=b.sibling}V.type===F5?(M=Y9(V.props.children,C.mode,w,V.key),M.return=C,C=M):(w=Z4(V.type,V.key,V.props,null,C.mode,w),w.ref=Tt(C,M,V),w.return=C,C=w)}return s(C);case L5:t:{for(b=V.key;M!==null;){if(M.key===b)if(M.tag===4&&M.stateNode.containerInfo===V.containerInfo&&M.stateNode.implementation===V.implementation){r(C,M.sibling),M=i(M,V.children||[]),M.return=C,C=M;break t}else{r(C,M);break}else a(C,M);M=M.sibling}M=_8(V,C.mode,w),M.return=C,C=M}return s(C);case h9:return b=V._init,I(C,M,b(V._payload),w)}if(Dt(V))return y(C,M,V,w);if(bt(V))return F(C,M,V,w);F4(C,V)}return typeof V=="string"&&V!==""||typeof V=="number"?(V=""+V,M!==null&&M.tag===6?(r(C,M.sibling),M=i(M,V),M.return=C,C=M):(r(C,M),M=y8(V,C.mode,w),M.return=C,C=M),s(C)):r(C,M)}return I}var Q5=Ho(!0),wo=Ho(!1),x3={},S2=_9(x3),c3=_9(x3),h3=_9(x3);function j9(t){if(t===x3)throw Error(O(174));return t}function X7(t,a){switch(_0(h3,a),_0(c3,t),_0(S2,x3),t=a.nodeType,t){case 9:case 11:a=(a=a.documentElement)?a.namespaceURI:k8(null,"");break;default:t=t===8?a.parentNode:a,a=t.namespaceURI||null,t=t.tagName,a=k8(a,t)}S0(S2),_0(S2,a)}function $5(){S0(S2),S0(c3),S0(h3)}function Ao(t){j9(h3.current);var a=j9(S2.current),r=k8(a,t.type);a!==r&&(_0(c3,t),_0(S2,r))}function j7(t){c3.current===t&&(S0(S2),S0(c3))}var T0=_9(0);function la(t){for(var a=t;a!==null;){if(a.tag===13){var r=a.memoizedState;if(r!==null&&(r=r.dehydrated,r===null||r.data==="$?"||r.data==="$!"))return a}else if(a.tag===19&&a.memoizedProps.revealOrder!==void 0){if((a.flags&128)!==0)return a}else if(a.child!==null){a.child.return=a,a=a.child;continue}if(a===t)break;for(;a.sibling===null;){if(a.return===null||a.return===t)return null;a=a.return}a.sibling.return=a.return,a=a.sibling}return null}var C8=[];function U7(){for(var t=0;tr?r:4,t(!0);var n=B8.transition;B8.transition={};try{t(!1),a()}finally{C0=r,B8.transition=n}}function Go(){return a2().memoizedState}function Gf(t,a,r){var n=V9(t);if(r={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null},Zo(t))Wo(a,r);else if(r=Mo(t,a,r,n),r!==null){var i=M1();g2(r,t,n,i),Xo(r,a,n)}}function Zf(t,a,r){var n=V9(t),i={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null};if(Zo(t))Wo(a,i);else{var o=t.alternate;if(t.lanes===0&&(o===null||o.lanes===0)&&(o=a.lastRenderedReducer,o!==null))try{var s=a.lastRenderedState,h=o(s,r);if(i.hasEagerState=!0,i.eagerState=h,m2(h,s)){var v=a.interleaved;v===null?(i.next=i,Z7(a)):(i.next=v.next,v.next=i),a.interleaved=i;return}}catch{}finally{}r=Mo(t,a,i,n),r!==null&&(i=M1(),g2(r,t,n,i),Xo(r,a,n))}}function Zo(t){var a=t.alternate;return t===R0||a!==null&&a===R0}function Wo(t,a){Jt=oa=!0;var r=t.pending;r===null?a.next=a:(a.next=r.next,r.next=a),t.pending=a}function Xo(t,a,r){if((r&4194240)!==0){var n=a.lanes;n&=t.pendingLanes,r|=n,a.lanes=r,L7(t,r)}}var ua={readContext:t2,useCallback:v1,useContext:v1,useEffect:v1,useImperativeHandle:v1,useInsertionEffect:v1,useLayoutEffect:v1,useMemo:v1,useReducer:v1,useRef:v1,useState:v1,useDebugValue:v1,useDeferredValue:v1,useTransition:v1,useMutableSource:v1,useSyncExternalStore:v1,useId:v1,unstable_isNewReconciler:!1},Wf={readContext:t2,useCallback:function(t,a){return _2().memoizedState=[t,a===void 0?null:a],t},useContext:t2,useEffect:tl,useImperativeHandle:function(t,a,r){return r=r!=null?r.concat([t]):null,O4(4194308,4,Ro.bind(null,a,t),r)},useLayoutEffect:function(t,a){return O4(4194308,4,t,a)},useInsertionEffect:function(t,a){return O4(4,2,t,a)},useMemo:function(t,a){var r=_2();return a=a===void 0?null:a,t=t(),r.memoizedState=[t,a],t},useReducer:function(t,a,r){var n=_2();return a=r!==void 0?r(a):a,n.memoizedState=n.baseState=a,t={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:a},n.queue=t,t=t.dispatch=Gf.bind(null,R0,t),[n.memoizedState,t]},useRef:function(t){var a=_2();return t={current:t},a.memoizedState=t},useState:qi,useDebugValue:K7,useDeferredValue:function(t){return _2().memoizedState=t},useTransition:function(){var t=qi(!1),a=t[0];return t=Df.bind(null,t[1]),_2().memoizedState=t,[a,t]},useMutableSource:function(){},useSyncExternalStore:function(t,a,r){var n=R0,i=_2();if(I0){if(r===void 0)throw Error(O(407));r=r()}else{if(r=a(),q0===null)throw Error(O(349));($9&30)!==0||Lo(n,a,r)}i.memoizedState=r;var o={value:r,getSnapshot:a};return i.queue=o,tl(So.bind(null,n,o,t),[t]),n.flags|=2048,f3(9,Fo.bind(null,n,o,r,a),void 0,null),r},useId:function(){var t=_2(),a=q0.identifierPrefix;if(I0){var r=W2,n=Z2;r=(n&~(1<<32-p2(n)-1)).toString(32)+r,a=":"+a+"R"+r,r=v3++,0")&&(v=v.replace("",t.displayName)),v}while(1<=s&&0<=h);break}}}finally{st=!1,Error.prepareStackTrace=r}return(t=t?t.displayName||t.name:"")?N3(t):""}function Cd(t){switch(t.tag){case 5:return N3(t.type);case 16:return N3("Lazy");case 13:return N3("Suspense");case 19:return N3("SuspenseList");case 0:case 2:case 15:return t=ct(t.type,!1),t;case 11:return t=ct(t.type.render,!1),t;case 1:return t=ct(t.type,!0),t;default:return""}}function Et(t){if(t==null)return null;if(typeof t=="function")return t.displayName||t.name||null;if(typeof t=="string")return t;switch(t){case F5:return"Fragment";case L5:return"Portal";case St:return"Profiler";case wa:return"StrictMode";case bt:return"Suspense";case It:return"SuspenseList"}if(typeof t=="object")switch(t.$$typeof){case Bl:return(t.displayName||"Context")+".Consumer";case Cl:return(t._context.displayName||"Context")+".Provider";case Aa:var a=t.render;return t=t.displayName,t||(t=a.displayName||a.name||"",t=t!==""?"ForwardRef("+t+")":"ForwardRef"),t;case ya:return a=t.displayName||null,a!==null?a:Et(t.type)||"Memo";case h1:a=t._payload,t=t._init;try{return Et(t(a))}catch{}}return null}function Bd(t){var a=t.type;switch(t.tag){case 24:return"Cache";case 9:return(a.displayName||"Context")+".Consumer";case 10:return(a._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return t=a.render,t=t.displayName||t.name||"",a.displayName||(t!==""?"ForwardRef("+t+")":"ForwardRef");case 7:return"Fragment";case 5:return a;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return Et(a);case 8:return a===wa?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof a=="function")return a.displayName||a.name||null;if(typeof a=="string")return a}return null}function w1(t){switch(typeof t){case"boolean":case"number":case"string":case"undefined":return t;case"object":return t;default:return""}}function Hl(t){var a=t.type;return(t=t.nodeName)&&t.toLowerCase()==="input"&&(a==="checkbox"||a==="radio")}function Vd(t){var a=Hl(t)?"checked":"value",r=Object.getOwnPropertyDescriptor(t.constructor.prototype,a),n=""+t[a];if(!t.hasOwnProperty(a)&&typeof r<"u"&&typeof r.get=="function"&&typeof r.set=="function"){var i=r.get,o=r.set;return Object.defineProperty(t,a,{configurable:!0,get:function(){return i.call(this)},set:function(s){n=""+s,o.call(this,s)}}),Object.defineProperty(t,a,{enumerable:r.enumerable}),{getValue:function(){return n},setValue:function(s){n=""+s},stopTracking:function(){t._valueTracker=null,delete t[a]}}}}function g4(t){t._valueTracker||(t._valueTracker=Vd(t))}function wl(t){if(!t)return!1;var a=t._valueTracker;if(!a)return!0;var r=a.getValue(),n="";return t&&(n=Hl(t)?t.checked?"true":"false":t.value),t=n,t!==r?(a.setValue(t),!0):!1}function W4(t){if(t=t||(typeof document<"u"?document:void 0),typeof t>"u")return null;try{return t.activeElement||t.body}catch{return t.body}}function Pt(t,a){var r=a.checked;return R0({},a,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:r??t._wrapperState.initialChecked})}function gi(t,a){var r=a.defaultValue==null?"":a.defaultValue,n=a.checked!=null?a.checked:a.defaultChecked;r=w1(a.value!=null?a.value:r),t._wrapperState={initialChecked:n,initialValue:r,controlled:a.type==="checkbox"||a.type==="radio"?a.checked!=null:a.value!=null}}function Al(t,a){a=a.checked,a!=null&&Ha(t,"checked",a,!1)}function kt(t,a){Al(t,a);var r=w1(a.value),n=a.type;if(r!=null)n==="number"?(r===0&&t.value===""||t.value!=r)&&(t.value=""+r):t.value!==""+r&&(t.value=""+r);else if(n==="submit"||n==="reset"){t.removeAttribute("value");return}a.hasOwnProperty("value")?Tt(t,a.type,r):a.hasOwnProperty("defaultValue")&&Tt(t,a.type,w1(a.defaultValue)),a.checked==null&&a.defaultChecked!=null&&(t.defaultChecked=!!a.defaultChecked)}function mi(t,a,r){if(a.hasOwnProperty("value")||a.hasOwnProperty("defaultValue")){var n=a.type;if(!(n!=="submit"&&n!=="reset"||a.value!==void 0&&a.value!==null))return;a=""+t._wrapperState.initialValue,r||a===t.value||(t.value=a),t.defaultValue=a}r=t.name,r!==""&&(t.name=""),t.defaultChecked=!!t._wrapperState.initialChecked,r!==""&&(t.name=r)}function Tt(t,a,r){(a!=="number"||W4(t.ownerDocument)!==t)&&(r==null?t.defaultValue=""+t._wrapperState.initialValue:t.defaultValue!==""+r&&(t.defaultValue=""+r))}var D3=Array.isArray;function D5(t,a,r,n){if(t=t.options,a){a={};for(var i=0;i"+a.valueOf().toString()+"",a=m4.firstChild;t.firstChild;)t.removeChild(t.firstChild);for(;a.firstChild;)t.appendChild(a.firstChild)}});function t8(t,a){if(a){var r=t.firstChild;if(r&&r===t.lastChild&&r.nodeType===3){r.nodeValue=a;return}}t.textContent=a}var W3={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},Hd=["Webkit","ms","Moz","O"];Object.keys(W3).forEach(function(t){Hd.forEach(function(a){a=a+t.charAt(0).toUpperCase()+t.substring(1),W3[a]=W3[t]})});function Fl(t,a,r){return a==null||typeof a=="boolean"||a===""?"":r||typeof a!="number"||a===0||W3.hasOwnProperty(t)&&W3[t]?(""+a).trim():a+"px"}function Sl(t,a){t=t.style;for(var r in a)if(a.hasOwnProperty(r)){var n=r.indexOf("--")===0,i=Fl(r,a[r],n);r==="float"&&(r="cssFloat"),n?t.setProperty(r,i):t[r]=i}}var wd=R0({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function Nt(t,a){if(a){if(wd[t]&&(a.children!=null||a.dangerouslySetInnerHTML!=null))throw Error(O(137,t));if(a.dangerouslySetInnerHTML!=null){if(a.children!=null)throw Error(O(60));if(typeof a.dangerouslySetInnerHTML!="object"||!("__html"in a.dangerouslySetInnerHTML))throw Error(O(61))}if(a.style!=null&&typeof a.style!="object")throw Error(O(62))}}function Dt(t,a){if(t.indexOf("-")===-1)return typeof a.is=="string";switch(t){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var Gt=null;function _a(t){return t=t.target||t.srcElement||window,t.correspondingUseElement&&(t=t.correspondingUseElement),t.nodeType===3?t.parentNode:t}var Zt=null,G5=null,Z5=null;function Mi(t){if(t=z8(t)){if(typeof Zt!="function")throw Error(O(280));var a=t.stateNode;a&&(a=z6(a),Zt(t.stateNode,t.type,a))}}function bl(t){G5?Z5?Z5.push(t):Z5=[t]:G5=t}function Il(){if(G5){var t=G5,a=Z5;if(Z5=G5=null,Mi(t),a)for(t=0;t>>=0,t===0?32:31-(kd(t)/Td|0)|0}var z4=64,x4=4194304;function G3(t){switch(t&-t){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return t&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return t}}function Y4(t,a){var r=t.pendingLanes;if(r===0)return 0;var n=0,i=t.suspendedLanes,o=t.pingedLanes,s=r&268435455;if(s!==0){var h=s&~i;h!==0?n=G3(h):(o&=s,o!==0&&(n=G3(o)))}else s=r&~i,s!==0?n=G3(s):o!==0&&(n=G3(o));if(n===0)return 0;if(a!==0&&a!==n&&(a&i)===0&&(i=n&-n,o=a&-a,i>=o||i===16&&(o&4194240)!==0))return a;if((n&4)!==0&&(n|=r&16),a=t.entangledLanes,a!==0)for(t=t.entanglements,a&=n;0r;r++)a.push(t);return a}function g8(t,a,r){t.pendingLanes|=a,a!==536870912&&(t.suspendedLanes=0,t.pingedLanes=0),t=t.eventTimes,a=31-p2(a),t[a]=r}function Dd(t,a){var r=t.pendingLanes&~a;t.pendingLanes=a,t.suspendedLanes=0,t.pingedLanes=0,t.expiredLanes&=a,t.mutableReadLanes&=a,t.entangledLanes&=a,a=t.entanglements;var n=t.eventTimes;for(t=t.expirationTimes;0=j3),Li=String.fromCharCode(32),Fi=!1;function ql(t,a){switch(t){case"keyup":return gf.indexOf(a.keyCode)!==-1;case"keydown":return a.keyCode!==229;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function to(t){return t=t.detail,typeof t=="object"&&"data"in t?t.data:null}var S5=!1;function zf(t,a){switch(t){case"compositionend":return to(a);case"keypress":return a.which!==32?null:(Fi=!0,Li);case"textInput":return t=a.data,t===Li&&Fi?null:t;default:return null}}function xf(t,a){if(S5)return t==="compositionend"||!ka&&ql(t,a)?(t=$l(),P4=Ia=p1=null,S5=!1,t):null;switch(t){case"paste":return null;case"keypress":if(!(a.ctrlKey||a.altKey||a.metaKey)||a.ctrlKey&&a.altKey){if(a.char&&1=a)return{node:r,offset:a-t};t=n}t:{for(;r;){if(r.nextSibling){r=r.nextSibling;break t}r=r.parentNode}r=void 0}r=Ii(r)}}function no(t,a){return t&&a?t===a?!0:t&&t.nodeType===3?!1:a&&a.nodeType===3?no(t,a.parentNode):"contains"in t?t.contains(a):t.compareDocumentPosition?!!(t.compareDocumentPosition(a)&16):!1:!1}function io(){for(var t=window,a=W4();a instanceof t.HTMLIFrameElement;){try{var r=typeof a.contentWindow.location.href=="string"}catch{r=!1}if(r)t=a.contentWindow;else break;a=W4(t.document)}return a}function Ta(t){var a=t&&t.nodeName&&t.nodeName.toLowerCase();return a&&(a==="input"&&(t.type==="text"||t.type==="search"||t.type==="tel"||t.type==="url"||t.type==="password")||a==="textarea"||t.contentEditable==="true")}function _f(t){var a=io(),r=t.focusedElem,n=t.selectionRange;if(a!==r&&r&&r.ownerDocument&&no(r.ownerDocument.documentElement,r)){if(n!==null&&Ta(r)){if(a=n.start,t=n.end,t===void 0&&(t=a),"selectionStart"in r)r.selectionStart=a,r.selectionEnd=Math.min(t,r.value.length);else if(t=(a=r.ownerDocument||document)&&a.defaultView||window,t.getSelection){t=t.getSelection();var i=r.textContent.length,o=Math.min(n.start,i);n=n.end===void 0?o:Math.min(n.end,i),!t.extend&&o>n&&(i=n,n=o,o=i),i=Ei(r,o);var s=Ei(r,n);i&&s&&(t.rangeCount!==1||t.anchorNode!==i.node||t.anchorOffset!==i.offset||t.focusNode!==s.node||t.focusOffset!==s.offset)&&(a=a.createRange(),a.setStart(i.node,i.offset),t.removeAllRanges(),o>n?(t.addRange(a),t.extend(s.node,s.offset)):(a.setEnd(s.node,s.offset),t.addRange(a)))}}for(a=[],t=r;t=t.parentNode;)t.nodeType===1&&a.push({element:t,left:t.scrollLeft,top:t.scrollTop});for(typeof r.focus=="function"&&r.focus(),r=0;r=document.documentMode,b5=null,Jt=null,Y3=null,Qt=!1;function Pi(t,a,r){var n=r.window===r?r.document:r.nodeType===9?r:r.ownerDocument;Qt||b5==null||b5!==W4(n)||(n=b5,"selectionStart"in n&&Ta(n)?n={start:n.selectionStart,end:n.selectionEnd}:(n=(n.ownerDocument&&n.ownerDocument.defaultView||window).getSelection(),n={anchorNode:n.anchorNode,anchorOffset:n.anchorOffset,focusNode:n.focusNode,focusOffset:n.focusOffset}),Y3&&l8(Y3,n)||(Y3=n,n=$4(Jt,"onSelect"),0P5||(t.current=ea[P5],ea[P5]=null,P5--)}function _0(t,a){P5++,ea[P5]=t.current,t.current=a}var A1={},p9=_1(A1),w9=_1(!1),J1=A1;function Y5(t,a){var r=t.type.contextTypes;if(!r)return A1;var n=t.stateNode;if(n&&n.__reactInternalMemoizedUnmaskedChildContext===a)return n.__reactInternalMemoizedMaskedChildContext;var i={},o;for(o in r)i[o]=a[o];return n&&(t=t.stateNode,t.__reactInternalMemoizedUnmaskedChildContext=a,t.__reactInternalMemoizedMaskedChildContext=i),i}function A9(t){return t=t.childContextTypes,t!=null}function q4(){S0(w9),S0(p9)}function Wi(t,a,r){if(p9.current!==A1)throw Error(O(168));_0(p9,a),_0(w9,r)}function po(t,a,r){var n=t.stateNode;if(a=a.childContextTypes,typeof n.getChildContext!="function")return r;n=n.getChildContext();for(var i in n)if(!(i in a))throw Error(O(108,Bd(t)||"Unknown",i));return R0({},r,n)}function t6(t){return t=(t=t.stateNode)&&t.__reactInternalMemoizedMergedChildContext||A1,J1=p9.current,_0(p9,t),_0(w9,w9.current),!0}function Xi(t,a,r){var n=t.stateNode;if(!n)throw Error(O(169));r?(t=po(t,a,J1),n.__reactInternalMemoizedMergedChildContext=t,S0(w9),S0(p9),_0(p9,t)):S0(w9),_0(w9,r)}var G2=null,x6=!1,Ct=!1;function go(t){G2===null?G2=[t]:G2.push(t)}function Rf(t){x6=!0,go(t)}function L1(){if(!Ct&&G2!==null){Ct=!0;var t=0,a=C0;try{var r=G2;for(C0=1;t>=s,i-=s,Z2=1<<32-p2(a)+i|r<R?(T=P,P=null):T=P.sibling;var N=z(C,P,V[R],w);if(N===null){P===null&&(P=T);break}t&&P&&N.alternate===null&&a(C,P),M=o(N,M,R),b===null?E=N:b.sibling=N,b=N,P=T}if(R===V.length)return r(C,P),I0&&G1(C,R),E;if(P===null){for(;RR?(T=P,P=null):T=P.sibling;var t0=z(C,P,N.value,w);if(t0===null){P===null&&(P=T);break}t&&P&&t0.alternate===null&&a(C,P),M=o(t0,M,R),b===null?E=t0:b.sibling=t0,b=t0,P=T}if(N.done)return r(C,P),I0&&G1(C,R),E;if(P===null){for(;!N.done;R++,N=V.next())N=m(C,N.value,w),N!==null&&(M=o(N,M,R),b===null?E=N:b.sibling=N,b=N);return I0&&G1(C,R),E}for(P=n(C,P);!N.done;R++,N=V.next())N=H(P,C,R,N.value,w),N!==null&&(t&&N.alternate!==null&&P.delete(N.key===null?R:N.key),M=o(N,M,R),b===null?E=N:b.sibling=N,b=N);return t&&P.forEach(function(v0){return a(C,v0)}),I0&&G1(C,R),E}function I(C,M,V,w){if(typeof V=="object"&&V!==null&&V.type===F5&&V.key===null&&(V=V.props.children),typeof V=="object"&&V!==null){switch(V.$$typeof){case p4:t:{for(var E=V.key,b=M;b!==null;){if(b.key===E){if(E=V.type,E===F5){if(b.tag===7){r(C,b.sibling),M=i(b,V.props.children),M.return=C,C=M;break t}}else if(b.elementType===E||typeof E=="object"&&E!==null&&E.$$typeof===h1&&Ki(E)===b.type){r(C,b.sibling),M=i(b,V.props),M.ref=k3(C,b,V),M.return=C,C=M;break t}r(C,b);break}else a(C,b);b=b.sibling}V.type===F5?(M=Y1(V.props.children,C.mode,w,V.key),M.return=C,C=M):(w=Z4(V.type,V.key,V.props,null,C.mode,w),w.ref=k3(C,M,V),w.return=C,C=w)}return s(C);case L5:t:{for(b=V.key;M!==null;){if(M.key===b)if(M.tag===4&&M.stateNode.containerInfo===V.containerInfo&&M.stateNode.implementation===V.implementation){r(C,M.sibling),M=i(M,V.children||[]),M.return=C,C=M;break t}else{r(C,M);break}else a(C,M);M=M.sibling}M=Lt(V,C.mode,w),M.return=C,C=M}return s(C);case h1:return b=V._init,I(C,M,b(V._payload),w)}if(D3(V))return y(C,M,V,w);if(b3(V))return F(C,M,V,w);F4(C,V)}return typeof V=="string"&&V!==""||typeof V=="number"?(V=""+V,M!==null&&M.tag===6?(r(C,M.sibling),M=i(M,V),M.return=C,C=M):(r(C,M),M=_t(V,C.mode,w),M.return=C,C=M),s(C)):r(C,M)}return I}var Q5=Ho(!0),wo=Ho(!1),x8={},S2=_1(x8),c8=_1(x8),h8=_1(x8);function j1(t){if(t===x8)throw Error(O(174));return t}function ja(t,a){switch(_0(h8,a),_0(c8,t),_0(S2,x8),t=a.nodeType,t){case 9:case 11:a=(a=a.documentElement)?a.namespaceURI:Ot(null,"");break;default:t=t===8?a.parentNode:a,a=t.namespaceURI||null,t=t.tagName,a=Ot(a,t)}S0(S2),_0(S2,a)}function $5(){S0(S2),S0(c8),S0(h8)}function Ao(t){j1(h8.current);var a=j1(S2.current),r=Ot(a,t.type);a!==r&&(_0(c8,t),_0(S2,r))}function Ua(t){c8.current===t&&(S0(S2),S0(c8))}var k0=_1(0);function l6(t){for(var a=t;a!==null;){if(a.tag===13){var r=a.memoizedState;if(r!==null&&(r=r.dehydrated,r===null||r.data==="$?"||r.data==="$!"))return a}else if(a.tag===19&&a.memoizedProps.revealOrder!==void 0){if((a.flags&128)!==0)return a}else if(a.child!==null){a.child.return=a,a=a.child;continue}if(a===t)break;for(;a.sibling===null;){if(a.return===null||a.return===t)return null;a=a.return}a.sibling.return=a.return,a=a.sibling}return null}var Bt=[];function Ya(){for(var t=0;tr?r:4,t(!0);var n=Vt.transition;Vt.transition={};try{t(!1),a()}finally{C0=r,Vt.transition=n}}function Go(){return a2().memoizedState}function Gf(t,a,r){var n=V1(t);if(r={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null},Zo(t))Wo(a,r);else if(r=Mo(t,a,r,n),r!==null){var i=M9();g2(r,t,n,i),Xo(r,a,n)}}function Zf(t,a,r){var n=V1(t),i={lane:n,action:r,hasEagerState:!1,eagerState:null,next:null};if(Zo(t))Wo(a,i);else{var o=t.alternate;if(t.lanes===0&&(o===null||o.lanes===0)&&(o=a.lastRenderedReducer,o!==null))try{var s=a.lastRenderedState,h=o(s,r);if(i.hasEagerState=!0,i.eagerState=h,m2(h,s)){var v=a.interleaved;v===null?(i.next=i,Wa(a)):(i.next=v.next,v.next=i),a.interleaved=i;return}}catch{}finally{}r=Mo(t,a,i,n),r!==null&&(i=M9(),g2(r,t,n,i),Xo(r,a,n))}}function Zo(t){var a=t.alternate;return t===T0||a!==null&&a===T0}function Wo(t,a){J3=o6=!0;var r=t.pending;r===null?a.next=a:(a.next=r.next,r.next=a),t.pending=a}function Xo(t,a,r){if((r&4194240)!==0){var n=a.lanes;n&=t.pendingLanes,r|=n,a.lanes=r,Fa(t,r)}}var u6={readContext:t2,useCallback:v9,useContext:v9,useEffect:v9,useImperativeHandle:v9,useInsertionEffect:v9,useLayoutEffect:v9,useMemo:v9,useReducer:v9,useRef:v9,useState:v9,useDebugValue:v9,useDeferredValue:v9,useTransition:v9,useMutableSource:v9,useSyncExternalStore:v9,useId:v9,unstable_isNewReconciler:!1},Wf={readContext:t2,useCallback:function(t,a){return _2().memoizedState=[t,a===void 0?null:a],t},useContext:t2,useEffect:tl,useImperativeHandle:function(t,a,r){return r=r!=null?r.concat([t]):null,O4(4194308,4,To.bind(null,a,t),r)},useLayoutEffect:function(t,a){return O4(4194308,4,t,a)},useInsertionEffect:function(t,a){return O4(4,2,t,a)},useMemo:function(t,a){var r=_2();return a=a===void 0?null:a,t=t(),r.memoizedState=[t,a],t},useReducer:function(t,a,r){var n=_2();return a=r!==void 0?r(a):a,n.memoizedState=n.baseState=a,t={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:t,lastRenderedState:a},n.queue=t,t=t.dispatch=Gf.bind(null,T0,t),[n.memoizedState,t]},useRef:function(t){var a=_2();return t={current:t},a.memoizedState=t},useState:qi,useDebugValue:qa,useDeferredValue:function(t){return _2().memoizedState=t},useTransition:function(){var t=qi(!1),a=t[0];return t=Df.bind(null,t[1]),_2().memoizedState=t,[a,t]},useMutableSource:function(){},useSyncExternalStore:function(t,a,r){var n=T0,i=_2();if(I0){if(r===void 0)throw Error(O(407));r=r()}else{if(r=a(),q0===null)throw Error(O(349));($1&30)!==0||Lo(n,a,r)}i.memoizedState=r;var o={value:r,getSnapshot:a};return i.queue=o,tl(So.bind(null,n,o,t),[t]),n.flags|=2048,f8(9,Fo.bind(null,n,o,r,a),void 0,null),r},useId:function(){var t=_2(),a=q0.identifierPrefix;if(I0){var r=W2,n=Z2;r=(n&~(1<<32-p2(n)-1)).toString(32)+r,a=":"+a+"R"+r,r=v8++,0<\/script>",t=t.removeChild(t.firstChild)):typeof n.is=="string"?t=s.createElement(r,{is:n.is}):(t=s.createElement(r),r==="select"&&(s=t,n.multiple?s.multiple=!0:n.size&&(s.size=n.size))):t=s.createElementNS(t,r),t[L2]=a,t[s3]=n,tu(t,a,!1,!1),a.stateNode=t;t:{switch(s=N8(r,n),r){case"dialog":F0("cancel",t),F0("close",t),i=n;break;case"iframe":case"object":case"embed":F0("load",t),i=n;break;case"video":case"audio":for(i=0;iq5&&(a.flags|=128,n=!0,Rt(o,!1),a.lanes=4194304)}else{if(!n)if(t=la(s),t!==null){if(a.flags|=128,n=!0,r=t.updateQueue,r!==null&&(a.updateQueue=r,a.flags|=4),Rt(o,!0),o.tail===null&&o.tailMode==="hidden"&&!s.alternate&&!I0)return d1(a),null}else 2*Z0()-o.renderingStartTime>q5&&r!==1073741824&&(a.flags|=128,n=!0,Rt(o,!1),a.lanes=4194304);o.isBackwards?(s.sibling=a.child,a.child=s):(r=o.last,r!==null?r.sibling=s:a.child=s,o.last=s)}return o.tail!==null?(a=o.tail,o.rendering=a,o.tail=a.sibling,o.renderingStartTime=Z0(),a.sibling=null,r=T0.current,_0(T0,n?r&1|2:r&1),a):(d1(a),null);case 22:case 23:return ne(),n=a.memoizedState!==null,t!==null&&t.memoizedState!==null!==n&&(a.flags|=8192),n&&(a.mode&1)!==0?(E1&1073741824)!==0&&(d1(a),a.subtreeFlags&6&&(a.flags|=8192)):d1(a),null;case 24:return null;case 25:return null}throw Error(O(156,a.tag))}function Kf(t,a){switch(k7(a),a.tag){case 1:return A1(a.type)&&q4(),t=a.flags,t&65536?(a.flags=t&-65537|128,a):null;case 3:return $5(),S0(w1),S0(p1),U7(),t=a.flags,(t&65536)!==0&&(t&128)===0?(a.flags=t&-65537|128,a):null;case 5:return j7(a),null;case 13:if(S0(T0),t=a.memoizedState,t!==null&&t.dehydrated!==null){if(a.alternate===null)throw Error(O(340));J5()}return t=a.flags,t&65536?(a.flags=t&-65537|128,a):null;case 19:return S0(T0),null;case 4:return $5(),null;case 10:return G7(a.type._context),null;case 22:case 23:return ne(),null;case 24:return null;default:return null}}var b4=!1,f1=!1,qf=typeof WeakSet=="function"?WeakSet:Set,G=null;function O5(t,a){var r=t.ref;if(r!==null)if(typeof r=="function")try{r(null)}catch(n){N0(t,a,n)}else r.current=null}function d7(t,a,r){try{r()}catch(n){N0(t,a,n)}}var sl=!1;function tp(t,a){if(Q8=J4,t=io(),T7(t)){if("selectionStart"in t)var r={start:t.selectionStart,end:t.selectionEnd};else t:{r=(r=t.ownerDocument)&&r.defaultView||window;var n=r.getSelection&&r.getSelection();if(n&&n.rangeCount!==0){r=n.anchorNode;var i=n.anchorOffset,o=n.focusNode;n=n.focusOffset;try{r.nodeType,o.nodeType}catch{r=null;break t}var s=0,h=-1,v=-1,f=0,g=0,m=t,z=null;a:for(;;){for(var H;m!==r||i!==0&&m.nodeType!==3||(h=s+i),m!==o||n!==0&&m.nodeType!==3||(v=s+n),m.nodeType===3&&(s+=m.nodeValue.length),(H=m.firstChild)!==null;)z=m,m=H;for(;;){if(m===t)break a;if(z===r&&++f===i&&(h=s),z===o&&++g===n&&(v=s),(H=m.nextSibling)!==null)break;m=z,z=m.parentNode}m=H}r=h===-1||v===-1?null:{start:h,end:v}}else r=null}r=r||{start:0,end:0}}else r=null;for($8={focusedElem:t,selectionRange:r},J4=!1,G=a;G!==null;)if(a=G,t=a.child,(a.subtreeFlags&1028)!==0&&t!==null)t.return=a,G=t;else for(;G!==null;){a=G;try{var y=a.alternate;if((a.flags&1024)!==0)switch(a.tag){case 0:case 11:case 15:break;case 1:if(y!==null){var F=y.memoizedProps,I=y.memoizedState,C=a.stateNode,M=C.getSnapshotBeforeUpdate(a.elementType===a.type?F:v2(a.type,F),I);C.__reactInternalSnapshotBeforeUpdate=M}break;case 3:var V=a.stateNode.containerInfo;V.nodeType===1?V.textContent="":V.nodeType===9&&V.documentElement&&V.removeChild(V.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(O(163))}}catch(w){N0(a,a.return,w)}if(t=a.sibling,t!==null){t.return=a.return,G=t;break}G=a.return}return y=sl,sl=!1,y}function Qt(t,a,r){var n=a.updateQueue;if(n=n!==null?n.lastEffect:null,n!==null){var i=n=n.next;do{if((i.tag&t)===t){var o=i.destroy;i.destroy=void 0,o!==void 0&&d7(a,r,o)}i=i.next}while(i!==n)}}function Ba(t,a){if(a=a.updateQueue,a=a!==null?a.lastEffect:null,a!==null){var r=a=a.next;do{if((r.tag&t)===t){var n=r.create;r.destroy=n()}r=r.next}while(r!==a)}}function f7(t){var a=t.ref;if(a!==null){var r=t.stateNode;switch(t.tag){case 5:t=r;break;default:t=r}typeof a=="function"?a(t):a.current=t}}function ru(t){var a=t.alternate;a!==null&&(t.alternate=null,ru(a)),t.child=null,t.deletions=null,t.sibling=null,t.tag===5&&(a=t.stateNode,a!==null&&(delete a[L2],delete a[s3],delete a[t7],delete a[Tf],delete a[Rf])),t.stateNode=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}function nu(t){return t.tag===5||t.tag===3||t.tag===4}function cl(t){t:for(;;){for(;t.sibling===null;){if(t.return===null||nu(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;t.tag!==5&&t.tag!==6&&t.tag!==18;){if(t.flags&2||t.child===null||t.tag===4)continue t;t.child.return=t,t=t.child}if(!(t.flags&2))return t.stateNode}}function p7(t,a,r){var n=t.tag;if(n===5||n===6)t=t.stateNode,a?r.nodeType===8?r.parentNode.insertBefore(t,a):r.insertBefore(t,a):(r.nodeType===8?(a=r.parentNode,a.insertBefore(t,r)):(a=r,a.appendChild(t)),r=r._reactRootContainer,r!=null||a.onclick!==null||(a.onclick=K4));else if(n!==4&&(t=t.child,t!==null))for(p7(t,a,r),t=t.sibling;t!==null;)p7(t,a,r),t=t.sibling}function g7(t,a,r){var n=t.tag;if(n===5||n===6)t=t.stateNode,a?r.insertBefore(t,a):r.appendChild(t);else if(n!==4&&(t=t.child,t!==null))for(g7(t,a,r),t=t.sibling;t!==null;)g7(t,a,r),t=t.sibling}var i1=null,d2=!1;function c9(t,a,r){for(r=r.child;r!==null;)iu(t,a,r),r=r.sibling}function iu(t,a,r){if(F2&&typeof F2.onCommitFiberUnmount=="function")try{F2.onCommitFiberUnmount(fa,r)}catch{}switch(r.tag){case 5:f1||O5(r,a);case 6:var n=i1,i=d2;i1=null,c9(t,a,r),i1=n,d2=i,i1!==null&&(d2?(t=i1,r=r.stateNode,t.nodeType===8?t.parentNode.removeChild(r):t.removeChild(r)):i1.removeChild(r.stateNode));break;case 18:i1!==null&&(d2?(t=i1,r=r.stateNode,t.nodeType===8?x8(t.parentNode,r):t.nodeType===1&&x8(t,r),n3(t)):x8(i1,r.stateNode));break;case 4:n=i1,i=d2,i1=r.stateNode.containerInfo,d2=!0,c9(t,a,r),i1=n,d2=i;break;case 0:case 11:case 14:case 15:if(!f1&&(n=r.updateQueue,n!==null&&(n=n.lastEffect,n!==null))){i=n=n.next;do{var o=i,s=o.destroy;o=o.tag,s!==void 0&&((o&2)!==0||(o&4)!==0)&&d7(r,a,s),i=i.next}while(i!==n)}c9(t,a,r);break;case 1:if(!f1&&(O5(r,a),n=r.stateNode,typeof n.componentWillUnmount=="function"))try{n.props=r.memoizedProps,n.state=r.memoizedState,n.componentWillUnmount()}catch(h){N0(r,a,h)}c9(t,a,r);break;case 21:c9(t,a,r);break;case 22:r.mode&1?(f1=(n=f1)||r.memoizedState!==null,c9(t,a,r),f1=n):c9(t,a,r);break;default:c9(t,a,r)}}function hl(t){var a=t.updateQueue;if(a!==null){t.updateQueue=null;var r=t.stateNode;r===null&&(r=t.stateNode=new qf),a.forEach(function(n){var i=sp.bind(null,t,n);r.has(n)||(r.add(n),n.then(i,i))})}}function h2(t,a){var r=a.deletions;if(r!==null)for(var n=0;ni&&(i=s),n&=~o}if(n=i,n=Z0()-n,n=(120>n?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*ep(n/1960))-n,10t?16:t,g9===null)var n=!1;else{if(t=g9,g9=null,ha=0,(z0&6)!==0)throw Error(O(331));var i=z0;for(z0|=4,G=t.current;G!==null;){var o=G,s=o.child;if((G.flags&16)!==0){var h=o.deletions;if(h!==null){for(var v=0;vZ0()-ee?U9(t,0):ae|=r),y1(t,a)}function du(t,a){a===0&&((t.mode&1)===0?a=1:(a=x4,x4<<=1,(x4&130023424)===0&&(x4=4194304)));var r=M1();t=Y2(t,a),t!==null&&(g3(t,a,r),y1(t,r))}function up(t){var a=t.memoizedState,r=0;a!==null&&(r=a.retryLane),du(t,r)}function sp(t,a){var r=0;switch(t.tag){case 13:var n=t.stateNode,i=t.memoizedState;i!==null&&(r=i.retryLane);break;case 19:n=t.stateNode;break;default:throw Error(O(314))}n!==null&&n.delete(a),du(t,r)}var fu;fu=function(t,a,r){if(t!==null)if(t.memoizedProps!==a.pendingProps||w1.current)H1=!0;else{if((t.lanes&r)===0&&(a.flags&128)===0)return H1=!1,Qf(t,a,r);H1=(t.flags&131072)!==0}else H1=!1,I0&&(a.flags&1048576)!==0&&mo(a,ea,a.index);switch(a.lanes=0,a.tag){case 2:var n=a.type;N4(t,a),t=a.pendingProps;var i=Y5(a,p1.current);X5(a,r),i=J7(null,a,n,t,i,r);var o=Q7();return a.flags|=1,typeof i=="object"&&i!==null&&typeof i.render=="function"&&i.$$typeof===void 0?(a.tag=1,a.memoizedState=null,a.updateQueue=null,A1(n)?(o=!0,ta(a)):o=!1,a.memoizedState=i.state!==null&&i.state!==void 0?i.state:null,W7(a),i.updater=Ma,a.stateNode=i,i._reactInternals=a,l7(a,n,t,r),a=s7(null,a,n,!0,o,r)):(a.tag=0,I0&&o&&R7(a),x1(null,a,i,r),a=a.child),a;case 16:n=a.elementType;t:{switch(N4(t,a),t=a.pendingProps,i=n._init,n=i(n._payload),a.type=n,i=a.tag=hp(n),t=v2(n,t),i){case 0:a=u7(null,a,n,t,r);break t;case 1:a=ll(null,a,n,t,r);break t;case 11:a=nl(null,a,n,t,r);break t;case 14:a=il(null,a,n,v2(n.type,t),r);break t}throw Error(O(306,n,""))}return a;case 0:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),u7(t,a,n,i,r);case 1:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),ll(t,a,n,i,r);case 3:t:{if($o(a),t===null)throw Error(O(387));n=a.pendingProps,o=a.memoizedState,i=o.element,Co(t,a),ia(a,n,null,r);var s=a.memoizedState;if(n=s.element,o.isDehydrated)if(o={element:n,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},a.updateQueue.baseState=o,a.memoizedState=o,a.flags&256){i=K5(Error(O(423)),a),a=ol(t,a,n,r,i);break t}else if(n!==i){i=K5(Error(O(424)),a),a=ol(t,a,n,r,i);break t}else for(P1=M9(a.stateNode.containerInfo.firstChild),T1=a,I0=!0,f2=null,r=wo(a,null,n,r),a.child=r;r;)r.flags=r.flags&-3|4096,r=r.sibling;else{if(J5(),n===i){a=J2(t,a,r);break t}x1(t,a,n,r)}a=a.child}return a;case 5:return Ao(a),t===null&&r7(a),n=a.type,i=a.pendingProps,o=t!==null?t.memoizedProps:null,s=i.children,K8(n,i)?s=null:o!==null&&K8(n,o)&&(a.flags|=32),Qo(t,a),x1(t,a,s,r),a.child;case 6:return t===null&&r7(a),null;case 13:return Ko(t,a,r);case 4:return X7(a,a.stateNode.containerInfo),n=a.pendingProps,t===null?a.child=Q5(a,null,n,r):x1(t,a,n,r),a.child;case 11:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),nl(t,a,n,i,r);case 7:return x1(t,a,a.pendingProps,r),a.child;case 8:return x1(t,a,a.pendingProps.children,r),a.child;case 12:return x1(t,a,a.pendingProps.children,r),a.child;case 10:t:{if(n=a.type._context,i=a.pendingProps,o=a.memoizedProps,s=i.value,_0(ra,n._currentValue),n._currentValue=s,o!==null)if(m2(o.value,s)){if(o.children===i.children&&!w1.current){a=J2(t,a,r);break t}}else for(o=a.child,o!==null&&(o.return=a);o!==null;){var h=o.dependencies;if(h!==null){s=o.child;for(var v=h.firstContext;v!==null;){if(v.context===n){if(o.tag===1){v=X2(-1,r&-r),v.tag=2;var f=o.updateQueue;if(f!==null){f=f.shared;var g=f.pending;g===null?v.next=v:(v.next=g.next,g.next=v),f.pending=v}}o.lanes|=r,v=o.alternate,v!==null&&(v.lanes|=r),n7(o.return,r,a),h.lanes|=r;break}v=v.next}}else if(o.tag===10)s=o.type===a.type?null:o.child;else if(o.tag===18){if(s=o.return,s===null)throw Error(O(341));s.lanes|=r,h=s.alternate,h!==null&&(h.lanes|=r),n7(s,r,a),s=o.sibling}else s=o.child;if(s!==null)s.return=o;else for(s=o;s!==null;){if(s===a){s=null;break}if(o=s.sibling,o!==null){o.return=s.return,s=o;break}s=s.return}o=s}x1(t,a,i.children,r),a=a.child}return a;case 9:return i=a.type,n=a.pendingProps.children,X5(a,r),i=t2(i),n=n(i),a.flags|=1,x1(t,a,n,r),a.child;case 14:return n=a.type,i=v2(n,a.pendingProps),i=v2(n.type,i),il(t,a,n,i,r);case 15:return Yo(t,a,a.type,a.pendingProps,r);case 17:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),N4(t,a),a.tag=1,A1(n)?(t=!0,ta(a)):t=!1,X5(a,r),Vo(a,n,i),l7(a,n,i,r),s7(null,a,n,!0,t,r);case 19:return qo(t,a,r);case 22:return Jo(t,a,r)}throw Error(O(156,a.tag))};function pu(t,a){return Nl(t,a)}function cp(t,a,r,n){this.tag=t,this.key=r,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=a,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=n,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function K1(t,a,r,n){return new cp(t,a,r,n)}function le(t){return t=t.prototype,!(!t||!t.isReactComponent)}function hp(t){if(typeof t=="function")return le(t)?1:0;if(t!=null){if(t=t.$$typeof,t===w7)return 11;if(t===A7)return 14}return 2}function H9(t,a){var r=t.alternate;return r===null?(r=K1(t.tag,a,t.key,t.mode),r.elementType=t.elementType,r.type=t.type,r.stateNode=t.stateNode,r.alternate=t,t.alternate=r):(r.pendingProps=a,r.type=t.type,r.flags=0,r.subtreeFlags=0,r.deletions=null),r.flags=t.flags&14680064,r.childLanes=t.childLanes,r.lanes=t.lanes,r.child=t.child,r.memoizedProps=t.memoizedProps,r.memoizedState=t.memoizedState,r.updateQueue=t.updateQueue,a=t.dependencies,r.dependencies=a===null?null:{lanes:a.lanes,firstContext:a.firstContext},r.sibling=t.sibling,r.index=t.index,r.ref=t.ref,r}function Z4(t,a,r,n,i,o){var s=2;if(n=t,typeof t=="function")le(t)&&(s=1);else if(typeof t=="string")s=5;else t:switch(t){case F5:return Y9(r.children,i,o,a);case H7:s=8,i|=8;break;case F8:return t=K1(12,r,a,i|2),t.elementType=F8,t.lanes=o,t;case S8:return t=K1(13,r,a,i),t.elementType=S8,t.lanes=o,t;case b8:return t=K1(19,r,a,i),t.elementType=b8,t.lanes=o,t;case Vl:return Ha(r,i,o,a);default:if(typeof t=="object"&&t!==null)switch(t.$$typeof){case Cl:s=10;break t;case Bl:s=9;break t;case w7:s=11;break t;case A7:s=14;break t;case h9:s=16,n=null;break t}throw Error(O(130,t==null?t:typeof t,""))}return a=K1(s,r,a,i),a.elementType=t,a.type=n,a.lanes=o,a}function Y9(t,a,r,n){return t=K1(7,t,n,a),t.lanes=r,t}function Ha(t,a,r,n){return t=K1(22,t,n,a),t.elementType=Vl,t.lanes=r,t.stateNode={isHidden:!1},t}function y8(t,a,r){return t=K1(6,t,null,a),t.lanes=r,t}function _8(t,a,r){return a=K1(4,t.children!==null?t.children:[],t.key,a),a.lanes=r,a.stateNode={containerInfo:t.containerInfo,pendingChildren:null,implementation:t.implementation},a}function vp(t,a,r,n,i){this.tag=a,this.containerInfo=t,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=h8(0),this.expirationTimes=h8(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=h8(0),this.identifierPrefix=n,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function oe(t,a,r,n,i,o,s,h,v){return t=new vp(t,a,r,h,v),a===1?(a=1,o===!0&&(a|=8)):a=0,o=K1(3,null,null,a),t.current=o,o.stateNode=t,o.memoizedState={element:n,isDehydrated:r,cache:null,transitions:null,pendingSuspenseBoundaries:null},W7(o),t}function dp(t,a,r){var n=3{"use strict";function Mu(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Mu)}catch(t){console.error(t)}}Mu(),Cu.exports=xu()});var Vu=s0(he=>{"use strict";var Bu=e5();he.createRoot=Bu.createRoot,he.hydrateRoot=Bu.hydrateRoot;var hx});var q2=s0((Ia,Lu)=>{(function(t,a){typeof Ia=="object"&&typeof Lu<"u"?a(Ia):typeof define=="function"&&define.amd?define(["exports"],a):(t=typeof globalThis<"u"?globalThis:t||self,a(t.leaflet={}))})(Ia,function(t){"use strict";var a="1.9.2";function r(e){var l,u,c,d;for(u=1,c=arguments.length;u"u"||!L||!L.Mixin)){e=C(e)?e:[e];for(var l=0;l0?Math.floor(e):Math.ceil(e)};U.prototype={clone:function(){return new U(this.x,this.y)},add:function(e){return this.clone()._add(X(e))},_add:function(e){return this.x+=e.x,this.y+=e.y,this},subtract:function(e){return this.clone()._subtract(X(e))},_subtract:function(e){return this.x-=e.x,this.y-=e.y,this},divideBy:function(e){return this.clone()._divideBy(e)},_divideBy:function(e){return this.x/=e,this.y/=e,this},multiplyBy:function(e){return this.clone()._multiplyBy(e)},_multiplyBy:function(e){return this.x*=e,this.y*=e,this},scaleBy:function(e){return new U(this.x*e.x,this.y*e.y)},unscaleBy:function(e){return new U(this.x/e.x,this.y/e.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=O0(this.x),this.y=O0(this.y),this},distanceTo:function(e){e=X(e);var l=e.x-this.x,u=e.y-this.y;return Math.sqrt(l*l+u*u)},equals:function(e){return e=X(e),e.x===this.x&&e.y===this.y},contains:function(e){return e=X(e),Math.abs(e.x)<=Math.abs(this.x)&&Math.abs(e.y)<=Math.abs(this.y)},toString:function(){return"Point("+g(this.x)+", "+g(this.y)+")"}};function X(e,l,u){return e instanceof U?e:C(e)?new U(e[0],e[1]):e==null?e:typeof e=="object"&&"x"in e&&"y"in e?new U(e.x,e.y):new U(e,l,u)}function p0(e,l){if(!!e)for(var u=l?[e,l]:e,c=0,d=u.length;c=this.min.x&&u.x<=this.max.x&&l.y>=this.min.y&&u.y<=this.max.y},intersects:function(e){e=w0(e);var l=this.min,u=this.max,c=e.min,d=e.max,p=d.x>=l.x&&c.x<=u.x,B=d.y>=l.y&&c.y<=u.y;return p&&B},overlaps:function(e){e=w0(e);var l=this.min,u=this.max,c=e.min,d=e.max,p=d.x>l.x&&c.xl.y&&c.y=l.lat&&d.lat<=u.lat&&c.lng>=l.lng&&d.lng<=u.lng},intersects:function(e){e=a0(e);var l=this._southWest,u=this._northEast,c=e.getSouthWest(),d=e.getNorthEast(),p=d.lat>=l.lat&&c.lat<=u.lat,B=d.lng>=l.lng&&c.lng<=u.lng;return p&&B},overlaps:function(e){e=a0(e);var l=this._southWest,u=this._northEast,c=e.getSouthWest(),d=e.getNorthEast(),p=d.lat>l.lat&&c.latl.lng&&c.lng1,I1=function(){var e=!1;try{var l=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("testPassiveEventSupport",f,l),window.removeEventListener("testPassiveEventSupport",f,l)}catch{}return e}(),c1=function(){return!!document.createElement("canvas").getContext}(),W1=!!(document.createElementNS&&P2("svg").createSVGRect),m5=!!W1&&function(){var e=document.createElement("div");return e.innerHTML="",(e.firstChild&&e.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"}(),R2=!W1&&function(){try{var e=document.createElement("div");e.innerHTML='';var l=e.firstChild;return l.style.behavior="url(#default#VML)",l&&typeof l.adj=="object"}catch{return!1}}(),X1=navigator.platform.indexOf("Mac")===0,L0=navigator.platform.indexOf("Linux")===0;function B2(e){return navigator.userAgent.toLowerCase().indexOf(e)>=0}var Y={ie:h5,ielt9:I9,edge:v5,webkit:d5,android:f5,android23:p5,androidStock:x6,opera:pt,chrome:N3,gecko:D3,safari:M6,phantom:x,opera12:Z,win:Q,ie3d:r0,webkit3d:l0,gecko3d:s1,any3d:S1,mobile:D0,mobileWebkit:M2,mobileWebkit3d:i2,msPointer:l2,pointer:r1,touch:i9,touchNative:C2,mobileOpera:o2,mobileGecko:b1,retina:g5,passiveEvents:I1,canvas:c1,svg:W1,vml:R2,inlineSvg:m5,mac:X1,linux:L0},jr=Y.msPointer?"MSPointerDown":"pointerdown",Ur=Y.msPointer?"MSPointerMove":"pointermove",Yr=Y.msPointer?"MSPointerUp":"pointerup",Jr=Y.msPointer?"MSPointerCancel":"pointercancel",C6={touchstart:jr,touchmove:Ur,touchend:Yr,touchcancel:Jr},Qr={touchstart:Jh,touchmove:G3,touchend:G3,touchcancel:G3},z5={},$r=!1;function Wh(e,l,u){return l==="touchstart"&&Yh(),Qr[l]?(u=Qr[l].bind(this,u),e.addEventListener(C6[l],u,!1),u):(console.warn("wrong event specified:",l),L.Util.falseFn)}function Xh(e,l,u){if(!C6[l]){console.warn("wrong event specified:",l);return}e.removeEventListener(C6[l],u,!1)}function jh(e){z5[e.pointerId]=e}function Uh(e){z5[e.pointerId]&&(z5[e.pointerId]=e)}function Kr(e){delete z5[e.pointerId]}function Yh(){$r||(document.addEventListener(jr,jh,!0),document.addEventListener(Ur,Uh,!0),document.addEventListener(Yr,Kr,!0),document.addEventListener(Jr,Kr,!0),$r=!0)}function G3(e,l){if(l.pointerType!==(l.MSPOINTER_TYPE_MOUSE||"mouse")){l.touches=[];for(var u in z5)l.touches.push(z5[u]);l.changedTouches=[l],e(l)}}function Jh(e,l){l.MSPOINTER_TYPE_TOUCH&&l.pointerType===l.MSPOINTER_TYPE_TOUCH&&n1(l),G3(e,l)}function Qh(e){var l={},u,c;for(c in e)u=e[c],l[c]=u&&u.bind?u.bind(e):u;return e=l,l.type="dblclick",l.detail=2,l.isTrusted=!1,l._simulated=!0,l}var $h=200;function Kh(e,l){e.addEventListener("dblclick",l);var u=0,c;function d(p){if(p.detail!==1){c=p.detail;return}if(!(p.pointerType==="mouse"||p.sourceCapabilities&&!p.sourceCapabilities.firesTouchEvents)){var B=rn(p);if(!(B.some(function(_){return _ instanceof HTMLLabelElement&&_.attributes.for})&&!B.some(function(_){return _ instanceof HTMLInputElement||_ instanceof HTMLSelectElement}))){var A=Date.now();A-u<=$h?(c++,c===2&&l(Qh(p))):c=1,u=A}}}return e.addEventListener("click",d),{dblclick:l,simDblclick:d}}function qh(e,l){e.removeEventListener("dblclick",l.dblclick),e.removeEventListener("click",l.simDblclick)}var B6=X3(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),gt=X3(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),qr=gt==="webkitTransition"||gt==="OTransition"?gt+"End":"transitionend";function tn(e){return typeof e=="string"?document.getElementById(e):e}function mt(e,l){var u=e.style[l]||e.currentStyle&&e.currentStyle[l];if((!u||u==="auto")&&document.defaultView){var c=document.defaultView.getComputedStyle(e,null);u=c?c[l]:null}return u==="auto"?null:u}function x0(e,l,u){var c=document.createElement(e);return c.className=l||"",u&&u.appendChild(c),c}function P0(e){var l=e.parentNode;l&&l.removeChild(e)}function Z3(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function x5(e){var l=e.parentNode;l&&l.lastChild!==e&&l.appendChild(e)}function M5(e){var l=e.parentNode;l&&l.firstChild!==e&&l.insertBefore(e,l.firstChild)}function V6(e,l){if(e.classList!==void 0)return e.classList.contains(l);var u=W3(e);return u.length>0&&new RegExp("(^|\\s)"+l+"(\\s|$)").test(u)}function o0(e,l){if(e.classList!==void 0)for(var u=z(l),c=0,d=u.length;c0?2*window.devicePixelRatio:1;function ln(e){return Y.edge?e.wheelDeltaY/2:e.deltaY&&e.deltaMode===0?-e.deltaY/ev:e.deltaY&&e.deltaMode===1?-e.deltaY*20:e.deltaY&&e.deltaMode===2?-e.deltaY*60:e.deltaX||e.deltaZ?0:e.wheelDelta?(e.wheelDeltaY||e.wheelDelta)/2:e.detail&&Math.abs(e.detail)<32765?-e.detail*20:e.detail?e.detail/-32765*60:0}function P6(e,l){var u=l.relatedTarget;if(!u)return!0;try{for(;u&&u!==e;)u=u.parentNode}catch{return!1}return u!==e}var rv={__proto__:null,on:e0,off:A0,stopPropagation:T9,disableScrollPropagation:E6,disableClickPropagation:Ct,preventDefault:n1,stop:R9,getPropagationPath:rn,getMousePosition:nn,getWheelDelta:ln,isExternalTarget:P6,addListener:e0,removeListener:A0},on=m0.extend({run:function(e,l,u,c){this.stop(),this._el=e,this._inProgress=!0,this._duration=u||.25,this._easeOutPower=1/Math.max(c||.5,.2),this._startPos=P9(e),this._offset=l.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=R(this._animate,this),this._step()},_step:function(e){var l=+new Date-this._startTime,u=this._duration*1e3;lthis.options.maxZoom)?this.setZoom(e):this},panInsideBounds:function(e,l){this._enforcingBounds=!0;var u=this.getCenter(),c=this._limitCenter(u,this._zoom,a0(e));return u.equals(c)||this.panTo(c,l),this._enforcingBounds=!1,this},panInside:function(e,l){l=l||{};var u=X(l.paddingTopLeft||l.padding||[0,0]),c=X(l.paddingBottomRight||l.padding||[0,0]),d=this.project(this.getCenter()),p=this.project(e),B=this.getPixelBounds(),A=w0([B.min.add(u),B.max.subtract(c)]),_=A.getSize();if(!A.contains(p)){this._enforcingBounds=!0;var T=p.subtract(A.getCenter()),D=A.extend(p).getSize().subtract(_);d.x+=T.x<0?-D.x:D.x,d.y+=T.y<0?-D.y:D.y,this.panTo(this.unproject(d),l),this._enforcingBounds=!1}return this},invalidateSize:function(e){if(!this._loaded)return this;e=r({animate:!1,pan:!0},e===!0?{animate:!0}:e);var l=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var u=this.getSize(),c=l.divideBy(2).round(),d=u.divideBy(2).round(),p=c.subtract(d);return!p.x&&!p.y?this:(e.animate&&e.pan?this.panBy(p):(e.pan&&this._rawPanBy(p),this.fire("move"),e.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(i(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:l,newSize:u}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(e){if(e=this._locateOptions=r({timeout:1e4,watch:!1},e),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var l=i(this._handleGeolocationResponse,this),u=i(this._handleGeolocationError,this);return e.watch?this._locationWatchId=navigator.geolocation.watchPosition(l,u,e):navigator.geolocation.getCurrentPosition(l,u,e),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(e){if(!!this._container._leaflet_id){var l=e.code,u=e.message||(l===1?"permission denied":l===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:l,message:"Geolocation error: "+u+"."})}},_handleGeolocationResponse:function(e){if(!!this._container._leaflet_id){var l=e.coords.latitude,u=e.coords.longitude,c=new $(l,u),d=c.toBounds(e.coords.accuracy*2),p=this._locateOptions;if(p.setView){var B=this.getBoundsZoom(d);this.setView(c,p.maxZoom?Math.min(B,p.maxZoom):B)}var A={latlng:c,bounds:d,timestamp:e.timestamp};for(var _ in e.coords)typeof e.coords[_]=="number"&&(A[_]=e.coords[_]);this.fire("locationfound",A)}},addHandler:function(e,l){if(!l)return this;var u=this[e]=new l(this);return this._handlers.push(u),this.options[e]&&u.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{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),P0(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(N(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var e;for(e in this._layers)this._layers[e].remove();for(e in this._panes)P0(this._panes[e]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(e,l){var u="leaflet-pane"+(e?" leaflet-"+e.replace("Pane","")+"-pane":""),c=x0("div",u,l||this._mapPane);return e&&(this._panes[e]=c),c},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var e=this.getPixelBounds(),l=this.unproject(e.getBottomLeft()),u=this.unproject(e.getTopRight());return new d0(l,u)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(e,l,u){e=a0(e),u=X(u||[0,0]);var c=this.getZoom()||0,d=this.getMinZoom(),p=this.getMaxZoom(),B=e.getNorthWest(),A=e.getSouthEast(),_=this.getSize().subtract(u),T=w0(this.project(A,c),this.project(B,c)).getSize(),D=Y.any3d?this.options.zoomSnap:1,q=_.x/T.x,n0=_.y/T.y,Y1=l?Math.max(q,n0):Math.min(q,n0);return c=this.getScaleZoom(Y1,c),D&&(c=Math.round(c/(D/100))*(D/100),c=l?Math.ceil(c/D)*D:Math.floor(c/D)*D),Math.max(d,Math.min(p,c))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new U(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(e,l){var u=this._getTopLeftPoint(e,l);return new p0(u,u.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(e){return this.options.crs.getProjectedBounds(e===void 0?this.getZoom():e)},getPane:function(e){return typeof e=="string"?this._panes[e]:e},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(e,l){var u=this.options.crs;return l=l===void 0?this._zoom:l,u.scale(e)/u.scale(l)},getScaleZoom:function(e,l){var u=this.options.crs;l=l===void 0?this._zoom:l;var c=u.zoom(e*u.scale(l));return isNaN(c)?1/0:c},project:function(e,l){return l=l===void 0?this._zoom:l,this.options.crs.latLngToPoint(i0(e),l)},unproject:function(e,l){return l=l===void 0?this._zoom:l,this.options.crs.pointToLatLng(X(e),l)},layerPointToLatLng:function(e){var l=X(e).add(this.getPixelOrigin());return this.unproject(l)},latLngToLayerPoint:function(e){var l=this.project(i0(e))._round();return l._subtract(this.getPixelOrigin())},wrapLatLng:function(e){return this.options.crs.wrapLatLng(i0(e))},wrapLatLngBounds:function(e){return this.options.crs.wrapLatLngBounds(a0(e))},distance:function(e,l){return this.options.crs.distance(i0(e),i0(l))},containerPointToLayerPoint:function(e){return X(e).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(e){return X(e).add(this._getMapPanePos())},containerPointToLatLng:function(e){var l=this.containerPointToLayerPoint(X(e));return this.layerPointToLatLng(l)},latLngToContainerPoint:function(e){return this.layerPointToContainerPoint(this.latLngToLayerPoint(i0(e)))},mouseEventToContainerPoint:function(e){return nn(e,this._container)},mouseEventToLayerPoint:function(e){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(e))},mouseEventToLatLng:function(e){return this.layerPointToLatLng(this.mouseEventToLayerPoint(e))},_initContainer:function(e){var l=this._container=tn(e);if(l){if(l._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");e0(l,"scroll",this._onScroll,this),this._containerId=s(l)},_initLayout:function(){var e=this._container;this._fadeAnimated=this.options.fadeAnimation&&Y.any3d,o0(e,"leaflet-container"+(Y.touch?" leaflet-touch":"")+(Y.retina?" leaflet-retina":"")+(Y.ielt9?" leaflet-oldie":"")+(Y.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var l=mt(e,"position");l!=="absolute"&&l!=="relative"&&l!=="fixed"&&(e.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var e=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),W0(this._mapPane,new U(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(o0(e.markerPane,"leaflet-zoom-hide"),o0(e.shadowPane,"leaflet-zoom-hide"))},_resetView:function(e,l,u){W0(this._mapPane,new U(0,0));var c=!this._loaded;this._loaded=!0,l=this._limitZoom(l),this.fire("viewprereset");var d=this._zoom!==l;this._moveStart(d,u)._move(e,l)._moveEnd(d),this.fire("viewreset"),c&&this.fire("load")},_moveStart:function(e,l){return e&&this.fire("zoomstart"),l||this.fire("movestart"),this},_move:function(e,l,u,c){l===void 0&&(l=this._zoom);var d=this._zoom!==l;return this._zoom=l,this._lastCenter=e,this._pixelOrigin=this._getNewPixelOrigin(e),c?u&&u.pinch&&this.fire("zoom",u):((d||u&&u.pinch)&&this.fire("zoom",u),this.fire("move",u)),this},_moveEnd:function(e){return e&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return N(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(e){W0(this._mapPane,this._getMapPanePos().subtract(e))},_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(e){this._targets={},this._targets[s(this._container)]=this;var l=e?A0:e0;l(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&l(window,"resize",this._onResize,this),Y.any3d&&this.options.transform3DLimit&&(e?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){N(this._resizeRequest),this._resizeRequest=R(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var e=this._getMapPanePos();Math.max(Math.abs(e.x),Math.abs(e.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(e,l){for(var u=[],c,d=l==="mouseout"||l==="mouseover",p=e.target||e.srcElement,B=!1;p;){if(c=this._targets[s(p)],c&&(l==="click"||l==="preclick")&&this._draggableMoved(c)){B=!0;break}if(c&&c.listens(l,!0)&&(d&&!P6(p,e)||(u.push(c),d))||p===this._container)break;p=p.parentNode}return!u.length&&!B&&!d&&this.listens(l,!0)&&(u=[this]),u},_isClickDisabled:function(e){for(;e&&e!==this._container;){if(e._leaflet_disable_click)return!0;e=e.parentNode}},_handleDOMEvent:function(e){var l=e.target||e.srcElement;if(!(!this._loaded||l._leaflet_disable_events||e.type==="click"&&this._isClickDisabled(l))){var u=e.type;u==="mousedown"&&L6(l),this._fireDOMEvent(e,u)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(e,l,u){if(e.type==="click"){var c=r({},e);c.type="preclick",this._fireDOMEvent(c,c.type,u)}var d=this._findEventTargets(e,l);if(u){for(var p=[],B=0;B0?Math.round(e-l)/2:Math.max(0,Math.ceil(e))-Math.max(0,Math.floor(l))},_limitZoom:function(e){var l=this.getMinZoom(),u=this.getMaxZoom(),c=Y.any3d?this.options.zoomSnap:1;return c&&(e=Math.round(e/c)*c),Math.max(l,Math.min(u,e))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){G0(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(e,l){var u=this._getCenterOffset(e)._trunc();return(l&&l.animate)!==!0&&!this.getSize().contains(u)?!1:(this.panBy(u,l),!0)},_createAnimProxy:function(){var e=this._proxy=x0("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(e),this.on("zoomanim",function(l){var u=B6,c=this._proxy.style[u];E9(this._proxy,this.project(l.center,l.zoom),this.getZoomScale(l.zoom,1)),c===this._proxy.style[u]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){P0(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var e=this.getCenter(),l=this.getZoom();E9(this._proxy,this.project(e,l),this.getZoomScale(l,1))},_catchTransitionEnd:function(e){this._animatingZoom&&e.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(e,l,u){if(this._animatingZoom)return!0;if(u=u||{},!this._zoomAnimated||u.animate===!1||this._nothingToAnimate()||Math.abs(l-this._zoom)>this.options.zoomAnimationThreshold)return!1;var c=this.getZoomScale(l),d=this._getCenterOffset(e)._divideBy(1-1/c);return u.animate!==!0&&!this.getSize().contains(d)?!1:(R(function(){this._moveStart(!0,!1)._animateZoom(e,l,!0)},this),!0)},_animateZoom:function(e,l,u,c){!this._mapPane||(u&&(this._animatingZoom=!0,this._animateToCenter=e,this._animateToZoom=l,o0(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:e,zoom:l,noUpdate:c}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(i(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){!this._animatingZoom||(this._mapPane&&G0(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 nv(e,l){return new g0(e,l)}var u2=v0.extend({options:{position:"topright"},initialize:function(e){H(this,e)},getPosition:function(){return this.options.position},setPosition:function(e){var l=this._map;return l&&l.removeControl(this),this.options.position=e,l&&l.addControl(this),this},getContainer:function(){return this._container},addTo:function(e){this.remove(),this._map=e;var l=this._container=this.onAdd(e),u=this.getPosition(),c=e._controlCorners[u];return o0(l,"leaflet-control"),u.indexOf("bottom")!==-1?c.insertBefore(l,c.firstChild):c.appendChild(l),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?(P0(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(e){this._map&&e&&e.screenX>0&&e.screenY>0&&this._map.getContainer().focus()}}),Bt=function(e){return new u2(e)};g0.include({addControl:function(e){return e.addTo(this),this},removeControl:function(e){return e.remove(),this},_initControlPos:function(){var e=this._controlCorners={},l="leaflet-",u=this._controlContainer=x0("div",l+"control-container",this._container);function c(d,p){var B=l+d+" "+l+p;e[d+p]=x0("div",B,u)}c("top","left"),c("top","right"),c("bottom","left"),c("bottom","right")},_clearControlPos:function(){for(var e in this._controlCorners)P0(this._controlCorners[e]);P0(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var un=u2.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(e,l,u,c){return u1,this._baseLayersList.style.display=e?"":"none"),this._separator.style.display=l&&e?"":"none",this},_onLayerChange:function(e){this._handlingClick||this._update();var l=this._getLayer(s(e.target)),u=l.overlay?e.type==="add"?"overlayadd":"overlayremove":e.type==="add"?"baselayerchange":null;u&&this._map.fire(u,l)},_createRadioElement:function(e,l){var u='",c=document.createElement("div");return c.innerHTML=u,c.firstChild},_addItem:function(e){var l=document.createElement("label"),u=this._map.hasLayer(e.layer),c;e.overlay?(c=document.createElement("input"),c.type="checkbox",c.className="leaflet-control-layers-selector",c.defaultChecked=u):c=this._createRadioElement("leaflet-base-layers_"+s(this),u),this._layerControlInputs.push(c),c.layerId=s(e.layer),e0(c,"click",this._onInputClick,this);var d=document.createElement("span");d.innerHTML=" "+e.name;var p=document.createElement("span");l.appendChild(p),p.appendChild(c),p.appendChild(d);var B=e.overlay?this._overlaysList:this._baseLayersList;return B.appendChild(l),this._checkDisabledLayers(),l},_onInputClick:function(){var e=this._layerControlInputs,l,u,c=[],d=[];this._handlingClick=!0;for(var p=e.length-1;p>=0;p--)l=e[p],u=this._getLayer(l.layerId).layer,l.checked?c.push(u):l.checked||d.push(u);for(p=0;p=0;d--)l=e[d],u=this._getLayer(l.layerId).layer,l.disabled=u.options.minZoom!==void 0&&cu.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this}}),iv=function(e,l,u){return new un(e,l,u)},T6=u2.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(e){var l="leaflet-control-zoom",u=x0("div",l+" leaflet-bar"),c=this.options;return this._zoomInButton=this._createButton(c.zoomInText,c.zoomInTitle,l+"-in",u,this._zoomIn),this._zoomOutButton=this._createButton(c.zoomOutText,c.zoomOutTitle,l+"-out",u,this._zoomOut),this._updateDisabled(),e.on("zoomend zoomlevelschange",this._updateDisabled,this),u},onRemove:function(e){e.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(e){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(e.shiftKey?3:1))},_createButton:function(e,l,u,c,d){var p=x0("a",u,c);return p.innerHTML=e,p.href="#",p.title=l,p.setAttribute("role","button"),p.setAttribute("aria-label",l),Ct(p),e0(p,"click",R9),e0(p,"click",d,this),e0(p,"click",this._refocusOnMap,this),p},_updateDisabled:function(){var e=this._map,l="leaflet-disabled";G0(this._zoomInButton,l),G0(this._zoomOutButton,l),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||e._zoom===e.getMinZoom())&&(o0(this._zoomOutButton,l),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||e._zoom===e.getMaxZoom())&&(o0(this._zoomInButton,l),this._zoomInButton.setAttribute("aria-disabled","true"))}});g0.mergeOptions({zoomControl:!0}),g0.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new T6,this.addControl(this.zoomControl))});var lv=function(e){return new T6(e)},sn=u2.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(e){var l="leaflet-control-scale",u=x0("div",l),c=this.options;return this._addScales(c,l+"-line",u),e.on(c.updateWhenIdle?"moveend":"move",this._update,this),e.whenReady(this._update,this),u},onRemove:function(e){e.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(e,l,u){e.metric&&(this._mScale=x0("div",l,u)),e.imperial&&(this._iScale=x0("div",l,u))},_update:function(){var e=this._map,l=e.getSize().y/2,u=e.distance(e.containerPointToLatLng([0,l]),e.containerPointToLatLng([this.options.maxWidth,l]));this._updateScales(u)},_updateScales:function(e){this.options.metric&&e&&this._updateMetric(e),this.options.imperial&&e&&this._updateImperial(e)},_updateMetric:function(e){var l=this._getRoundNum(e),u=l<1e3?l+" m":l/1e3+" km";this._updateScale(this._mScale,u,l/e)},_updateImperial:function(e){var l=e*3.2808399,u,c,d;l>5280?(u=l/5280,c=this._getRoundNum(u),this._updateScale(this._iScale,c+" mi",c/u)):(d=this._getRoundNum(l),this._updateScale(this._iScale,d+" ft",d/l))},_updateScale:function(e,l,u){e.style.width=Math.round(this.options.maxWidth*u)+"px",e.innerHTML=l},_getRoundNum:function(e){var l=Math.pow(10,(Math.floor(e)+"").length-1),u=e/l;return u=u>=10?10:u>=5?5:u>=3?3:u>=2?2:1,l*u}}),ov=function(e){return new sn(e)},uv='',R6=u2.extend({options:{position:"bottomright",prefix:''+(Y.inlineSvg?uv+" ":"")+"Leaflet"},initialize:function(e){H(this,e),this._attributions={}},onAdd:function(e){e.attributionControl=this,this._container=x0("div","leaflet-control-attribution"),Ct(this._container);for(var l in e._layers)e._layers[l].getAttribution&&this.addAttribution(e._layers[l].getAttribution());return this._update(),e.on("layeradd",this._addAttribution,this),this._container},onRemove:function(e){e.off("layeradd",this._addAttribution,this)},_addAttribution:function(e){e.layer.getAttribution&&(this.addAttribution(e.layer.getAttribution()),e.layer.once("remove",function(){this.removeAttribution(e.layer.getAttribution())},this))},setPrefix:function(e){return this.options.prefix=e,this._update(),this},addAttribution:function(e){return e?(this._attributions[e]||(this._attributions[e]=0),this._attributions[e]++,this._update(),this):this},removeAttribution:function(e){return e?(this._attributions[e]&&(this._attributions[e]--,this._update()),this):this},_update:function(){if(!!this._map){var e=[];for(var l in this._attributions)this._attributions[l]&&e.push(l);var u=[];this.options.prefix&&u.push(this.options.prefix),e.length&&u.push(e.join(", ")),this._container.innerHTML=u.join(' ')}}});g0.mergeOptions({attributionControl:!0}),g0.addInitHook(function(){this.options.attributionControl&&new R6().addTo(this)});var sv=function(e){return new R6(e)};u2.Layers=un,u2.Zoom=T6,u2.Scale=sn,u2.Attribution=R6,Bt.layers=iv,Bt.zoom=lv,Bt.scale=ov,Bt.attribution=sv;var H2=v0.extend({initialize:function(e){this._map=e},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});H2.addTo=function(e,l){return e.addHandler(l,this),this};var cv={Events:h0},cn=Y.touch?"touchstart mousedown":"mousedown",l9=m0.extend({options:{clickTolerance:3},initialize:function(e,l,u,c){H(this,c),this._element=e,this._dragStartTarget=l||e,this._preventOutline=u},enable:function(){this._enabled||(e0(this._dragStartTarget,cn,this._onDown,this),this._enabled=!0)},disable:function(){!this._enabled||(l9._dragging===this&&this.finishDrag(!0),A0(this._dragStartTarget,cn,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(e){if(!!this._enabled&&(this._moved=!1,!V6(this._element,"leaflet-zoom-anim"))){if(e.touches&&e.touches.length!==1){l9._dragging===this&&this.finishDrag();return}if(!(l9._dragging||e.shiftKey||e.which!==1&&e.button!==1&&!e.touches)&&(l9._dragging=this,this._preventOutline&&L6(this._element),A6(),zt(),!this._moving)){this.fire("down");var l=e.touches?e.touches[0]:e,u=an(this._element);this._startPoint=new U(l.clientX,l.clientY),this._startPos=P9(this._element),this._parentScale=F6(u);var c=e.type==="mousedown";e0(document,c?"mousemove":"touchmove",this._onMove,this),e0(document,c?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(e){if(!!this._enabled){if(e.touches&&e.touches.length>1){this._moved=!0;return}var l=e.touches&&e.touches.length===1?e.touches[0]:e,u=new U(l.clientX,l.clientY)._subtract(this._startPoint);!u.x&&!u.y||Math.abs(u.x)+Math.abs(u.y)p&&(B=A,p=_);p>u&&(l[B]=1,k6(e,l,u,c,B),k6(e,l,u,B,d))}function dv(e,l){for(var u=[e[0]],c=1,d=0,p=e.length;cl&&(u.push(e[c]),d=c);return dl.max.x&&(u|=2),e.yl.max.y&&(u|=8),u}function fv(e,l){var u=l.x-e.x,c=l.y-e.y;return u*u+c*c}function Vt(e,l,u,c){var d=l.x,p=l.y,B=u.x-d,A=u.y-p,_=B*B+A*A,T;return _>0&&(T=((e.x-d)*B+(e.y-p)*A)/_,T>1?(d=u.x,p=u.y):T>0&&(d+=B*T,p+=A*T)),B=e.x-d,A=e.y-p,c?B*B+A*A:new U(d,p)}function U1(e){return!C(e[0])||typeof e[0][0]!="object"&&typeof e[0][0]<"u"}function pn(e){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),U1(e)}function gn(e,l){var u,c,d,p,B,A,_,T;if(!e||e.length===0)throw new Error("latlngs not passed");U1(e)||(console.warn("latlngs are not flat! Only the first ring will be used"),e=e[0]);var D=[];for(var q in e)D.push(l.project(i0(e[q])));var n0=D.length;for(u=0,c=0;uc){_=(p-c)/d,T=[A.x-_*(A.x-B.x),A.y-_*(A.y-B.y)];break}return l.unproject(X(T))}var pv={__proto__:null,simplify:hn,pointToSegmentDistance:vn,closestPointOnSegment:hv,clipSegment:fn,_getEdgeIntersection:Y3,_getBitCode:k9,_sqClosestPointOnSegment:Vt,isFlat:U1,_flat:pn,polylineCenter:gn};function mn(e,l,u){var c,d=[1,4,2,8],p,B,A,_,T,D,q,n0;for(p=0,D=e.length;p1e-7;A++)T=d*Math.sin(B),T=Math.pow((1-T)/(1+T),d/2),_=Math.PI/2-2*Math.atan(p*T)-B,B+=_;return new $(B*l,e.x*l/u)}},mv={__proto__:null,LonLat:O6,Mercator:N6,SphericalMercator:m1},zv=r({},E0,{code:"EPSG:3395",projection:N6,transformation:function(){var e=.5/(Math.PI*N6.R);return x2(e,.5,-e,.5)}()}),xn=r({},E0,{code:"EPSG:4326",projection:O6,transformation:x2(1/180,1,-1/180,.5)}),xv=r({},b0,{projection:O6,transformation:x2(1,0,-1,0),scale:function(e){return Math.pow(2,e)},zoom:function(e){return Math.log(e)/Math.LN2},distance:function(e,l){var u=l.lng-e.lng,c=l.lat-e.lat;return Math.sqrt(u*u+c*c)},infinite:!0});b0.Earth=E0,b0.EPSG3395=zv,b0.EPSG3857=E2,b0.EPSG900913=b9,b0.EPSG4326=xn,b0.Simple=xv;var s2=m0.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(e){return e.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(e){return e&&e.removeLayer(this),this},getPane:function(e){return this._map.getPane(e?this.options[e]||e:this.options.pane)},addInteractiveTarget:function(e){return this._map._targets[s(e)]=this,this},removeInteractiveTarget:function(e){return delete this._map._targets[s(e)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(e){var l=e.target;if(!!l.hasLayer(this)){if(this._map=l,this._zoomAnimated=l._zoomAnimated,this.getEvents){var u=this.getEvents();l.on(u,this),this.once("remove",function(){l.off(u,this)},this)}this.onAdd(l),this.fire("add"),l.fire("layeradd",{layer:this})}}});g0.include({addLayer:function(e){if(!e._layerAdd)throw new Error("The provided object is not a Layer.");var l=s(e);return this._layers[l]?this:(this._layers[l]=e,e._mapToAdd=this,e.beforeAdd&&e.beforeAdd(this),this.whenReady(e._layerAdd,e),this)},removeLayer:function(e){var l=s(e);return this._layers[l]?(this._loaded&&e.onRemove(this),delete this._layers[l],this._loaded&&(this.fire("layerremove",{layer:e}),e.fire("remove")),e._map=e._mapToAdd=null,this):this},hasLayer:function(e){return s(e)in this._layers},eachLayer:function(e,l){for(var u in this._layers)e.call(l,this._layers[u]);return this},_addLayers:function(e){e=e?C(e)?e:[e]:[];for(var l=0,u=e.length;lthis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&l[0]instanceof $&&l[0].equals(l[u-1])&&l.pop(),l},_setLatLngs:function(e){k2.prototype._setLatLngs.call(this,e),U1(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return U1(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var e=this._renderer._bounds,l=this.options.weight,u=new U(l,l);if(e=new p0(e.min.subtract(u),e.max.add(u)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(e))){if(this.options.noClip){this._parts=this._rings;return}for(var c=0,d=this._rings.length,p;ce.y!=d.y>e.y&&e.x<(d.x-c.x)*(e.y-c.y)/(d.y-c.y)+c.x&&(l=!l);return l||k2.prototype._containsPoint.call(this,e,!0)}});function yv(e,l){return new V5(e,l)}var O2=O9.extend({initialize:function(e,l){H(this,l),this._layers={},e&&this.addData(e)},addData:function(e){var l=C(e)?e:e.features,u,c,d;if(l){for(u=0,c=l.length;u0?c:[l.src];return}C(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(l.style,"objectFit")&&(l.style.objectFit="fill"),l.autoplay=!!this.options.autoplay,l.loop=!!this.options.loop,l.muted=!!this.options.muted,l.playsInline=!!this.options.playsInline;for(var p=0;pd?(l.height=d+"px",o0(e,p)):G0(e,p),this._containerWidth=this._container.offsetWidth},_animateZoom:function(e){var l=this._map._latLngToNewLayerPoint(this._latlng,e.zoom,e.center),u=this._getAnchor();W0(this._container,l.add(u))},_adjustPan:function(e){if(!!this.options.autoPan){this._map._panAnim&&this._map._panAnim.stop();var l=this._map,u=parseInt(mt(this._container,"marginBottom"),10)||0,c=this._container.offsetHeight+u,d=this._containerWidth,p=new U(this._containerLeft,-c-this._containerBottom);p._add(P9(this._container));var B=l.layerPointToContainerPoint(p),A=X(this.options.autoPanPadding),_=X(this.options.autoPanPaddingTopLeft||A),T=X(this.options.autoPanPaddingBottomRight||A),D=l.getSize(),q=0,n0=0;B.x+d+T.x>D.x&&(q=B.x+d-D.x+T.x),B.x-q-_.x<0&&(q=B.x-_.x),B.y+c+T.y>D.y&&(n0=B.y+c-D.y+T.y),B.y-n0-_.y<0&&(n0=B.y-_.y),(q||n0)&&l.fire("autopanstart").panBy([q,n0],{animate:e&&e.type==="moveend"})}},_getAnchor:function(){return X(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),bv=function(e,l){return new e4(e,l)};g0.mergeOptions({closePopupOnClick:!0}),g0.include({openPopup:function(e,l,u){return this._initOverlay(e4,e,l,u).openOn(this),this},closePopup:function(e){return e=arguments.length?e:this._popup,e&&e.close(),this}}),s2.include({bindPopup:function(e,l){return this._popup=this._initOverlay(e4,this._popup,e,l),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(e){return this._popup&&this._popup._prepareOpen(e||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():!1},setPopupContent:function(e){return this._popup&&this._popup.setContent(e),this},getPopup:function(){return this._popup},_openPopup:function(e){if(!(!this._popup||!this._map)){R9(e);var l=e.layer||e.target;if(this._popup._source===l&&!(l instanceof o9)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(e.latlng);return}this._popup._source=l,this.openPopup(e.latlng)}},_movePopup:function(e){this._popup.setLatLng(e.latlng)},_onKeyPress:function(e){e.originalEvent.keyCode===13&&this._openPopup(e)}});var r4=w2.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(e){w2.prototype.onAdd.call(this,e),this.setOpacity(this.options.opacity),e.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(e){w2.prototype.onRemove.call(this,e),e.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var e=w2.prototype.getEvents.call(this);return this.options.permanent||(e.preclick=this.close),e},_initLayout:function(){var e="leaflet-tooltip",l=e+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=x0("div",l),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+s(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(e){var l,u,c=this._map,d=this._container,p=c.latLngToContainerPoint(c.getCenter()),B=c.layerPointToContainerPoint(e),A=this.options.direction,_=d.offsetWidth,T=d.offsetHeight,D=X(this.options.offset),q=this._getAnchor();A==="top"?(l=_/2,u=T):A==="bottom"?(l=_/2,u=0):A==="center"?(l=_/2,u=T/2):A==="right"?(l=0,u=T/2):A==="left"?(l=_,u=T/2):B.xthis.options.maxZoom||uc?this._retainParent(d,p,B,c):!1)},_retainChildren:function(e,l,u,c){for(var d=2*e;d<2*e+2;d++)for(var p=2*l;p<2*l+2;p++){var B=new U(d,p);B.z=u+1;var A=this._tileCoordsToKey(B),_=this._tiles[A];if(_&&_.active){_.retain=!0;continue}else _&&_.loaded&&(_.retain=!0);u+1this.options.maxZoom||this.options.minZoom!==void 0&&d1){this._setView(e,u);return}for(var q=d.min.y;q<=d.max.y;q++)for(var n0=d.min.x;n0<=d.max.x;n0++){var Y1=new U(n0,q);if(Y1.z=this._tileZoom,!!this._isValidTile(Y1)){var N9=this._tiles[this._tileCoordsToKey(Y1)];N9?N9.current=!0:B.push(Y1)}}if(B.sort(function(u9,X6){return u9.distanceTo(p)-X6.distanceTo(p)}),B.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var i4=document.createDocumentFragment();for(n0=0;n0u.max.x)||!l.wrapLat&&(e.yu.max.y))return!1}if(!this.options.bounds)return!0;var c=this._tileCoordsToBounds(e);return a0(this.options.bounds).overlaps(c)},_keyToBounds:function(e){return this._tileCoordsToBounds(this._keyToTileCoords(e))},_tileCoordsToNwSe:function(e){var l=this._map,u=this.getTileSize(),c=e.scaleBy(u),d=c.add(u),p=l.unproject(c,e.z),B=l.unproject(d,e.z);return[p,B]},_tileCoordsToBounds:function(e){var l=this._tileCoordsToNwSe(e),u=new d0(l[0],l[1]);return this.options.noWrap||(u=this._map.wrapLatLngBounds(u)),u},_tileCoordsToKey:function(e){return e.x+":"+e.y+":"+e.z},_keyToTileCoords:function(e){var l=e.split(":"),u=new U(+l[0],+l[1]);return u.z=+l[2],u},_removeTile:function(e){var l=this._tiles[e];!l||(P0(l.el),delete this._tiles[e],this.fire("tileunload",{tile:l.el,coords:this._keyToTileCoords(e)}))},_initTile:function(e){o0(e,"leaflet-tile");var l=this.getTileSize();e.style.width=l.x+"px",e.style.height=l.y+"px",e.onselectstart=f,e.onmousemove=f,Y.ielt9&&this.options.opacity<1&&j1(e,this.options.opacity)},_addTile:function(e,l){var u=this._getTilePos(e),c=this._tileCoordsToKey(e),d=this.createTile(this._wrapCoords(e),i(this._tileReady,this,e));this._initTile(d),this.createTile.length<2&&R(i(this._tileReady,this,e,null,d)),W0(d,u),this._tiles[c]={el:d,coords:e,current:!0},l.appendChild(d),this.fire("tileloadstart",{tile:d,coords:e})},_tileReady:function(e,l,u){l&&this.fire("tileerror",{error:l,tile:u,coords:e});var c=this._tileCoordsToKey(e);u=this._tiles[c],u&&(u.loaded=+new Date,this._map._fadeAnimated?(j1(u.el,0),N(this._fadeFrame),this._fadeFrame=R(this._updateOpacity,this)):(u.active=!0,this._pruneTiles()),l||(o0(u.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:u.el,coords:e})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Y.ielt9||!this._map._fadeAnimated?R(this._pruneTiles,this):setTimeout(i(this._pruneTiles,this),250)))},_getTilePos:function(e){return e.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(e){var l=new U(this._wrapX?v(e.x,this._wrapX):e.x,this._wrapY?v(e.y,this._wrapY):e.y);return l.z=e.z,l},_pxBoundsToTileRange:function(e){var l=this.getTileSize();return new p0(e.min.unscaleBy(l).floor(),e.max.unscaleBy(l).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var e in this._tiles)if(!this._tiles[e].loaded)return!1;return!0}});function Pv(e){return new wt(e)}var w5=wt.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(e,l){this._url=e,l=H(this,l),l.detectRetina&&Y.retina&&l.maxZoom>0?(l.tileSize=Math.floor(l.tileSize/2),l.zoomReverse?(l.zoomOffset--,l.minZoom=Math.min(l.maxZoom,l.minZoom+1)):(l.zoomOffset++,l.maxZoom=Math.max(l.minZoom,l.maxZoom-1)),l.minZoom=Math.max(0,l.minZoom)):l.zoomReverse?l.minZoom=Math.min(l.maxZoom,l.minZoom):l.maxZoom=Math.max(l.minZoom,l.maxZoom),typeof l.subdomains=="string"&&(l.subdomains=l.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(e,l){return this._url===e&&l===void 0&&(l=!0),this._url=e,l||this.redraw(),this},createTile:function(e,l){var u=document.createElement("img");return e0(u,"load",i(this._tileOnLoad,this,l,u)),e0(u,"error",i(this._tileOnError,this,l,u)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(u.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(u.referrerPolicy=this.options.referrerPolicy),u.alt="",u.src=this.getTileUrl(e),u},getTileUrl:function(e){var l={r:Y.retina?"@2x":"",s:this._getSubdomain(e),x:e.x,y:e.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var u=this._globalTileRange.max.y-e.y;this.options.tms&&(l.y=u),l["-y"]=u}return I(this._url,r(l,this.options))},_tileOnLoad:function(e,l){Y.ielt9?setTimeout(i(e,this,null,l),0):e(null,l)},_tileOnError:function(e,l,u){var c=this.options.errorTileUrl;c&&l.getAttribute("src")!==c&&(l.src=c),e(u,l)},_onTileRemove:function(e){e.tile.onload=null},_getZoomForUrl:function(){var e=this._tileZoom,l=this.options.maxZoom,u=this.options.zoomReverse,c=this.options.zoomOffset;return u&&(e=l-e),e+c},_getSubdomain:function(e){var l=Math.abs(e.x+e.y)%this.options.subdomains.length;return this.options.subdomains[l]},_abortLoading:function(){var e,l;for(e in this._tiles)if(this._tiles[e].coords.z!==this._tileZoom&&(l=this._tiles[e].el,l.onload=f,l.onerror=f,!l.complete)){l.src=V;var u=this._tiles[e].coords;P0(l),delete this._tiles[e],this.fire("tileabort",{tile:l,coords:u})}},_removeTile:function(e){var l=this._tiles[e];if(!!l)return l.el.setAttribute("src",V),wt.prototype._removeTile.call(this,e)},_tileReady:function(e,l,u){if(!(!this._map||u&&u.getAttribute("src")===V))return wt.prototype._tileReady.call(this,e,l,u)}});function An(e,l){return new w5(e,l)}var yn=w5.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(e,l){this._url=e;var u=r({},this.defaultWmsParams);for(var c in l)c in this.options||(u[c]=l[c]);l=H(this,l);var d=l.detectRetina&&Y.retina?2:1,p=this.getTileSize();u.width=p.x*d,u.height=p.y*d,this.wmsParams=u},onAdd:function(e){this._crs=this.options.crs||e.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var l=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[l]=this._crs.code,w5.prototype.onAdd.call(this,e)},getTileUrl:function(e){var l=this._tileCoordsToNwSe(e),u=this._crs,c=w0(u.project(l[0]),u.project(l[1])),d=c.min,p=c.max,B=(this._wmsVersion>=1.3&&this._crs===xn?[d.y,d.x,p.y,p.x]:[d.x,d.y,p.x,p.y]).join(","),A=w5.prototype.getTileUrl.call(this,e);return A+y(this.wmsParams,A,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+B},setParams:function(e,l){return r(this.wmsParams,e),l||this.redraw(),this}});function Tv(e,l){return new yn(e,l)}w5.WMS=yn,An.wms=Tv;var N2=s2.extend({options:{padding:.1},initialize:function(e){H(this,e),s(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&o0(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 e={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(e.zoomanim=this._onAnimZoom),e},_onAnimZoom:function(e){this._updateTransform(e.center,e.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(e,l){var u=this._map.getZoomScale(l,this._zoom),c=this._map.getSize().multiplyBy(.5+this.options.padding),d=this._map.project(this._center,l),p=c.multiplyBy(-u).add(d).subtract(this._map._getNewPixelOrigin(e,l));Y.any3d?E9(this._container,p,u):W0(this._container,p)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var e in this._layers)this._layers[e]._reset()},_onZoomEnd:function(){for(var e in this._layers)this._layers[e]._project()},_updatePaths:function(){for(var e in this._layers)this._layers[e]._update()},_update:function(){var e=this.options.padding,l=this._map.getSize(),u=this._map.containerPointToLayerPoint(l.multiplyBy(-e)).round();this._bounds=new p0(u,u.add(l.multiplyBy(1+e*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),_n=N2.extend({options:{tolerance:0},getEvents:function(){var e=N2.prototype.getEvents.call(this);return e.viewprereset=this._onViewPreReset,e},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){N2.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var e=this._container=document.createElement("canvas");e0(e,"mousemove",this._onMouseMove,this),e0(e,"click dblclick mousedown mouseup contextmenu",this._onClick,this),e0(e,"mouseout",this._handleMouseOut,this),e._leaflet_disable_events=!0,this._ctx=e.getContext("2d")},_destroyContainer:function(){N(this._redrawRequest),delete this._ctx,P0(this._container),A0(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var e;this._redrawBounds=null;for(var l in this._layers)e=this._layers[l],e._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){N2.prototype._update.call(this);var e=this._bounds,l=this._container,u=e.getSize(),c=Y.retina?2:1;W0(l,e.min),l.width=c*u.x,l.height=c*u.y,l.style.width=u.x+"px",l.style.height=u.y+"px",Y.retina&&this._ctx.scale(2,2),this._ctx.translate(-e.min.x,-e.min.y),this.fire("update")}},_reset:function(){N2.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(e){this._updateDashArray(e),this._layers[s(e)]=e;var l=e._order={layer:e,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=l),this._drawLast=l,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(e){this._requestRedraw(e)},_removePath:function(e){var l=e._order,u=l.next,c=l.prev;u?u.prev=c:this._drawLast=c,c?c.next=u:this._drawFirst=u,delete e._order,delete this._layers[s(e)],this._requestRedraw(e)},_updatePath:function(e){this._extendRedrawBounds(e),e._project(),e._update(),this._requestRedraw(e)},_updateStyle:function(e){this._updateDashArray(e),this._requestRedraw(e)},_updateDashArray:function(e){if(typeof e.options.dashArray=="string"){var l=e.options.dashArray.split(/[, ]+/),u=[],c,d;for(d=0;d')}}catch{}return function(e){return document.createElement("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),Rv={_initContainer:function(){this._container=x0("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(N2.prototype._update.call(this),this.fire("update"))},_initPath:function(e){var l=e._container=At("shape");o0(l,"leaflet-vml-shape "+(this.options.className||"")),l.coordsize="1 1",e._path=At("path"),l.appendChild(e._path),this._updateStyle(e),this._layers[s(e)]=e},_addPath:function(e){var l=e._container;this._container.appendChild(l),e.options.interactive&&e.addInteractiveTarget(l)},_removePath:function(e){var l=e._container;P0(l),e.removeInteractiveTarget(l),delete this._layers[s(e)]},_updateStyle:function(e){var l=e._stroke,u=e._fill,c=e.options,d=e._container;d.stroked=!!c.stroke,d.filled=!!c.fill,c.stroke?(l||(l=e._stroke=At("stroke")),d.appendChild(l),l.weight=c.weight+"px",l.color=c.color,l.opacity=c.opacity,c.dashArray?l.dashStyle=C(c.dashArray)?c.dashArray.join(" "):c.dashArray.replace(/( *, *)/g," "):l.dashStyle="",l.endcap=c.lineCap.replace("butt","flat"),l.joinstyle=c.lineJoin):l&&(d.removeChild(l),e._stroke=null),c.fill?(u||(u=e._fill=At("fill")),d.appendChild(u),u.color=c.fillColor||c.color,u.opacity=c.fillOpacity):u&&(d.removeChild(u),e._fill=null)},_updateCircle:function(e){var l=e._point.round(),u=Math.round(e._radius),c=Math.round(e._radiusY||u);this._setPath(e,e._empty()?"M0 0":"AL "+l.x+","+l.y+" "+u+","+c+" 0,"+65535*360)},_setPath:function(e,l){e._path.v=l},_bringToFront:function(e){x5(e._container)},_bringToBack:function(e){M5(e._container)}},n4=Y.vml?At:P2,yt=N2.extend({_initContainer:function(){this._container=n4("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=n4("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){P0(this._container),A0(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){N2.prototype._update.call(this);var e=this._bounds,l=e.getSize(),u=this._container;(!this._svgSize||!this._svgSize.equals(l))&&(this._svgSize=l,u.setAttribute("width",l.x),u.setAttribute("height",l.y)),W0(u,e.min),u.setAttribute("viewBox",[e.min.x,e.min.y,l.x,l.y].join(" ")),this.fire("update")}},_initPath:function(e){var l=e._path=n4("path");e.options.className&&o0(l,e.options.className),e.options.interactive&&o0(l,"leaflet-interactive"),this._updateStyle(e),this._layers[s(e)]=e},_addPath:function(e){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(e._path),e.addInteractiveTarget(e._path)},_removePath:function(e){P0(e._path),e.removeInteractiveTarget(e._path),delete this._layers[s(e)]},_updatePath:function(e){e._project(),e._update()},_updateStyle:function(e){var l=e._path,u=e.options;!l||(u.stroke?(l.setAttribute("stroke",u.color),l.setAttribute("stroke-opacity",u.opacity),l.setAttribute("stroke-width",u.weight),l.setAttribute("stroke-linecap",u.lineCap),l.setAttribute("stroke-linejoin",u.lineJoin),u.dashArray?l.setAttribute("stroke-dasharray",u.dashArray):l.removeAttribute("stroke-dasharray"),u.dashOffset?l.setAttribute("stroke-dashoffset",u.dashOffset):l.removeAttribute("stroke-dashoffset")):l.setAttribute("stroke","none"),u.fill?(l.setAttribute("fill",u.fillColor||u.color),l.setAttribute("fill-opacity",u.fillOpacity),l.setAttribute("fill-rule",u.fillRule||"evenodd")):l.setAttribute("fill","none"))},_updatePoly:function(e,l){this._setPath(e,r9(e._parts,l))},_updateCircle:function(e){var l=e._point,u=Math.max(Math.round(e._radius),1),c=Math.max(Math.round(e._radiusY),1)||u,d="a"+u+","+c+" 0 1,0 ",p=e._empty()?"M0 0":"M"+(l.x-u)+","+l.y+d+u*2+",0 "+d+-u*2+",0 ";this._setPath(e,p)},_setPath:function(e,l){e._path.setAttribute("d",l)},_bringToFront:function(e){x5(e._path)},_bringToBack:function(e){M5(e._path)}});Y.vml&&yt.include(Rv);function Fn(e){return Y.svg||Y.vml?new yt(e):null}g0.include({getRenderer:function(e){var l=e.options.renderer||this._getPaneRenderer(e.options.pane)||this.options.renderer||this._renderer;return l||(l=this._renderer=this._createRenderer()),this.hasLayer(l)||this.addLayer(l),l},_getPaneRenderer:function(e){if(e==="overlayPane"||e===void 0)return!1;var l=this._paneRenderers[e];return l===void 0&&(l=this._createRenderer({pane:e}),this._paneRenderers[e]=l),l},_createRenderer:function(e){return this.options.preferCanvas&&Ln(e)||Fn(e)}});var Sn=V5.extend({initialize:function(e,l){V5.prototype.initialize.call(this,this._boundsToLatLngs(e),l)},setBounds:function(e){return this.setLatLngs(this._boundsToLatLngs(e))},_boundsToLatLngs:function(e){return e=a0(e),[e.getSouthWest(),e.getNorthWest(),e.getNorthEast(),e.getSouthEast()]}});function kv(e,l){return new Sn(e,l)}yt.create=n4,yt.pointsToPath=r9,O2.geometryToLayer=$3,O2.coordsToLatLng=G6,O2.coordsToLatLngs=K3,O2.latLngToCoords=Z6,O2.latLngsToCoords=q3,O2.getFeature=H5,O2.asFeature=t4,g0.mergeOptions({boxZoom:!0});var bn=H2.extend({initialize:function(e){this._map=e,this._container=e._container,this._pane=e._panes.overlayPane,this._resetStateTimeout=0,e.on("unload",this._destroy,this)},addHooks:function(){e0(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){A0(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){P0(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(e){if(!e.shiftKey||e.which!==1&&e.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),zt(),A6(),this._startPoint=this._map.mouseEventToContainerPoint(e),e0(document,{contextmenu:R9,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(e){this._moved||(this._moved=!0,this._box=x0("div","leaflet-zoom-box",this._container),o0(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(e);var l=new p0(this._point,this._startPoint),u=l.getSize();W0(this._box,l.min),this._box.style.width=u.x+"px",this._box.style.height=u.y+"px"},_finish:function(){this._moved&&(P0(this._box),G0(this._container,"leaflet-crosshair")),xt(),y6(),A0(document,{contextmenu:R9,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(e){if(!(e.which!==1&&e.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(i(this._resetState,this),0);var l=new d0(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(l).fire("boxzoomend",{boxZoomBounds:l})}},_onKeyDown:function(e){e.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});g0.addInitHook("addHandler","boxZoom",bn),g0.mergeOptions({doubleClickZoom:!0});var In=H2.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(e){var l=this._map,u=l.getZoom(),c=l.options.zoomDelta,d=e.originalEvent.shiftKey?u-c:u+c;l.options.doubleClickZoom==="center"?l.setZoom(d):l.setZoomAround(e.containerPoint,d)}});g0.addInitHook("addHandler","doubleClickZoom",In),g0.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var En=H2.extend({addHooks:function(){if(!this._draggable){var e=this._map;this._draggable=new l9(e._mapPane,e._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),e.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),e.on("zoomend",this._onZoomEnd,this),e.whenReady(this._onZoomEnd,this))}o0(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){G0(this._map._container,"leaflet-grab"),G0(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 e=this._map;if(e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var l=a0(this._map.options.maxBounds);this._offsetLimit=w0(this._map.latLngToContainerPoint(l.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(l.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(e){if(this._map.options.inertia){var l=this._lastTime=+new Date,u=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(u),this._times.push(l),this._prunePositions(l)}this._map.fire("move",e).fire("drag",e)},_prunePositions:function(e){for(;this._positions.length>1&&e-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var e=this._map.getSize().divideBy(2),l=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=l.subtract(e).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(e,l){return e-(e-l)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var e=this._draggable._newPos.subtract(this._draggable._startPos),l=this._offsetLimit;e.xl.max.x&&(e.x=this._viscousLimit(e.x,l.max.x)),e.y>l.max.y&&(e.y=this._viscousLimit(e.y,l.max.y)),this._draggable._newPos=this._draggable._startPos.add(e)}},_onPreDragWrap:function(){var e=this._worldWidth,l=Math.round(e/2),u=this._initialWorldOffset,c=this._draggable._newPos.x,d=(c-l+u)%e+l-u,p=(c+l+u)%e-l-u,B=Math.abs(d+u)0?p:-p))-l;this._delta=0,this._startTime=null,B&&(e.options.scrollWheelZoom==="center"?e.setZoom(l+B):e.setZoomAround(this._lastMousePos,l+B))}});g0.addInitHook("addHandler","scrollWheelZoom",Tn);var Ov=600;g0.mergeOptions({tapHold:Y.touchNative&&Y.safari&&Y.mobile,tapTolerance:15});var Rn=H2.extend({addHooks:function(){e0(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){A0(this._map._container,"touchstart",this._onDown,this)},_onDown:function(e){if(clearTimeout(this._holdTimeout),e.touches.length===1){var l=e.touches[0];this._startPos=this._newPos=new U(l.clientX,l.clientY),this._holdTimeout=setTimeout(i(function(){this._cancel(),this._isTapValid()&&(e0(document,"touchend",n1),e0(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",l))},this),Ov),e0(document,"touchend touchcancel contextmenu",this._cancel,this),e0(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function e(){A0(document,"touchend",n1),A0(document,"touchend touchcancel",e)},_cancel:function(){clearTimeout(this._holdTimeout),A0(document,"touchend touchcancel contextmenu",this._cancel,this),A0(document,"touchmove",this._onMove,this)},_onMove:function(e){var l=e.touches[0];this._newPos=new U(l.clientX,l.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(e,l){var u=new MouseEvent(e,{bubbles:!0,cancelable:!0,view:window,screenX:l.screenX,screenY:l.screenY,clientX:l.clientX,clientY:l.clientY});u._simulated=!0,l.target.dispatchEvent(u)}});g0.addInitHook("addHandler","tapHold",Rn),g0.mergeOptions({touchZoom:Y.touch,bounceAtZoomLimits:!0});var kn=H2.extend({addHooks:function(){o0(this._map._container,"leaflet-touch-zoom"),e0(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){G0(this._map._container,"leaflet-touch-zoom"),A0(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(e){var l=this._map;if(!(!e.touches||e.touches.length!==2||l._animatingZoom||this._zooming)){var u=l.mouseEventToContainerPoint(e.touches[0]),c=l.mouseEventToContainerPoint(e.touches[1]);this._centerPoint=l.getSize()._divideBy(2),this._startLatLng=l.containerPointToLatLng(this._centerPoint),l.options.touchZoom!=="center"&&(this._pinchStartLatLng=l.containerPointToLatLng(u.add(c)._divideBy(2))),this._startDist=u.distanceTo(c),this._startZoom=l.getZoom(),this._moved=!1,this._zooming=!0,l._stop(),e0(document,"touchmove",this._onTouchMove,this),e0(document,"touchend touchcancel",this._onTouchEnd,this),n1(e)}},_onTouchMove:function(e){if(!(!e.touches||e.touches.length!==2||!this._zooming)){var l=this._map,u=l.mouseEventToContainerPoint(e.touches[0]),c=l.mouseEventToContainerPoint(e.touches[1]),d=u.distanceTo(c)/this._startDist;if(this._zoom=l.getScaleZoom(d,this._startZoom),!l.options.bounceAtZoomLimits&&(this._zooml.getMaxZoom()&&d>1)&&(this._zoom=l._limitZoom(this._zoom)),l.options.touchZoom==="center"){if(this._center=this._startLatLng,d===1)return}else{var p=u._add(c)._divideBy(2)._subtract(this._centerPoint);if(d===1&&p.x===0&&p.y===0)return;this._center=l.unproject(l.project(this._pinchStartLatLng,this._zoom).subtract(p),this._zoom)}this._moved||(l._moveStart(!0,!1),this._moved=!0),N(this._animRequest);var B=i(l._move,l,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=R(B,this,!0),n1(e)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,N(this._animRequest),A0(document,"touchmove",this._onTouchMove,this),A0(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))}});g0.addInitHook("addHandler","touchZoom",kn),g0.BoxZoom=bn,g0.DoubleClickZoom=In,g0.Drag=En,g0.Keyboard=Pn,g0.ScrollWheelZoom=Tn,g0.TapHold=Rn,g0.TouchZoom=kn,t.Bounds=p0,t.Browser=Y,t.CRS=b0,t.Canvas=_n,t.Circle=D6,t.CircleMarker=Q3,t.Class=v0,t.Control=u2,t.DivIcon=wn,t.DivOverlay=w2,t.DomEvent=rv,t.DomUtil=av,t.Draggable=l9,t.Evented=m0,t.FeatureGroup=O9,t.GeoJSON=O2,t.GridLayer=wt,t.Handler=H2,t.Icon=B5,t.ImageOverlay=a4,t.LatLng=$,t.LatLngBounds=d0,t.Layer=s2,t.LayerGroup=C5,t.LineUtil=pv,t.Map=g0,t.Marker=J3,t.Mixin=cv,t.Path=o9,t.Point=U,t.PolyUtil=gv,t.Polygon=V5,t.Polyline=k2,t.Popup=e4,t.PosAnimation=on,t.Projection=mv,t.Rectangle=Sn,t.Renderer=N2,t.SVG=yt,t.SVGOverlay=Hn,t.TileLayer=w5,t.Tooltip=r4,t.Transformation=n2,t.Util=t0,t.VideoOverlay=Vn,t.bind=i,t.bounds=w0,t.canvas=Ln,t.circle=wv,t.circleMarker=Hv,t.control=Bt,t.divIcon=Ev,t.extend=r,t.featureGroup=Cv,t.geoJSON=Bn,t.geoJson=_v,t.gridLayer=Pv,t.icon=Bv,t.imageOverlay=Lv,t.latLng=i0,t.latLngBounds=a0,t.layerGroup=Mv,t.map=nv,t.marker=Vv,t.point=X,t.polygon=yv,t.polyline=Av,t.popup=bv,t.rectangle=kv,t.setOptions=H,t.stamp=s,t.svg=Fn,t.svgOverlay=Sv,t.tileLayer=An,t.tooltip=Iv,t.transformation=x2,t.version=a,t.videoOverlay=Fv;var Nv=window.L;t.noConflict=function(){return window.L=Nv,this},window.L=t})});var Ta=s0((EM,Pa)=>{(function(){"use strict";var t={}.hasOwnProperty,a="[native code]";function r(){for(var n=[],i=0;i{"use strict";var Hp=u0(),wp=Symbol.for("react.element"),Ap=Symbol.for("react.fragment"),yp=Object.prototype.hasOwnProperty,_p=Hp.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,Lp={key:!0,ref:!0,__self:!0,__source:!0};function Xu(t,a,r){var n,i={},o=null,s=null;r!==void 0&&(o=""+r),a.key!==void 0&&(o=""+a.key),a.ref!==void 0&&(s=a.ref);for(n in a)yp.call(a,n)&&!Lp.hasOwnProperty(n)&&(i[n]=a[n]);if(t&&t.defaultProps)for(n in a=t.defaultProps,a)i[n]===void 0&&(i[n]=a[n]);return{$$typeof:wp,type:t,key:o,ref:s,props:i,_owner:_p.current}}Ra.Fragment=Ap;Ra.jsx=Xu;Ra.jsxs=Xu});var lt=s0((TM,Uu)=>{"use strict";Uu.exports=ju()});var ns=s0(Ye=>{"use strict";Object.defineProperty(Ye,"__esModule",{value:!0});function Pp(t){if(t.sheet)return t.sheet;for(var a=0;a{"use strict";is.exports=ns()});var us=s0((Ga,os)=>{(function(t,a){typeof Ga=="object"&&typeof os<"u"?a(Ga):typeof define=="function"&&define.amd?define(["exports"],a):(t=t||self,a(t.stylis={}))})(Ga,function(t){"use strict";var a="-ms-",r="-moz-",n="-webkit-",i="comm",o="rule",s="decl",h="@page",v="@media",f="@import",g="@charset",m="@viewport",z="@supports",H="@document",y="@namespace",F="@keyframes",I="@font-face",C="@counter-style",M="@font-feature-values",V=Math.abs,w=String.fromCharCode,E=Object.assign;function b(x,Z){return t0(x,0)^45?(((Z<<2^t0(x,0))<<2^t0(x,1))<<2^t0(x,2))<<2^t0(x,3):0}function P(x){return x.trim()}function k(x,Z){return(x=Z.exec(x))?x[0]:x}function R(x,Z,Q){return x.replace(Z,Q)}function N(x,Z){return x.indexOf(Z)}function t0(x,Z){return x.charCodeAt(Z)|0}function v0(x,Z,Q){return x.slice(Z,Q)}function H0(x){return x.length}function h0(x){return x.length}function m0(x,Z){return Z.push(x),x}function U(x,Z){return x.map(Z).join("")}t.line=1,t.column=1,t.length=0,t.position=0,t.character=0,t.characters="";function O0(x,Z,Q,r0,l0,s1,S1){return{value:x,root:Z,parent:Q,type:r0,props:l0,children:s1,line:t.line,column:t.column,length:S1,return:""}}function X(x,Z){return E(O0("",null,null,"",null,null,0),x,{length:-x.length},Z)}function p0(){return t.character}function w0(){return t.character=t.position>0?t0(t.characters,--t.position):0,t.column--,t.character===10&&(t.column=1,t.line--),t.character}function d0(){return t.character=t.position2||b0(t.character)>3?"":" "}function E2(x){for(;d0();)switch(b0(t.character)){case 0:m0(T2(t.position-1),x);break;case 2:m0(m1(t.character),x);break;default:m0(w(t.character),x)}return x}function b9(x,Z){for(;--Z&&d0()&&!(t.character<48||t.character>102||t.character>57&&t.character<65||t.character>70&&t.character<97););return i0(x,$()+(Z<6&&a0()==32&&d0()==32))}function P2(x){for(;d0();)switch(t.character){case x:return t.position;case 34:case 39:x!==34&&x!==39&&P2(t.character);break;case 40:x===41&&P2(x);break;case 92:d0();break}return t.position}function r9(x,Z){for(;d0()&&x+t.character!==47+10;)if(x+t.character===42+42&&a0()===47)break;return"/*"+i0(Z,t.position-1)+"*"+w(x===47?x:d0())}function T2(x){for(;!b0(a0());)d0();return i0(x,t.position)}function h5(x){return e1(I9("",null,null,null,[""],x=E0(x),0,[0],x))}function I9(x,Z,Q,r0,l0,s1,S1,D0,M2){for(var i2=0,l2=0,r1=S1,C2=0,i9=0,o2=0,b1=1,g5=1,I1=1,c1=0,W1="",m5=l0,R2=s1,X1=r0,L0=W1;g5;)switch(o2=c1,c1=d0()){case 40:if(o2!=108&&t0(L0,r1-1)==58){N(L0+=R(m1(c1),"&","&\f"),"&\f")!=-1&&(I1=-1);break}case 34:case 39:case 91:L0+=m1(c1);break;case 9:case 10:case 13:case 32:L0+=x2(o2);break;case 92:L0+=b9($()-1,7);continue;case 47:switch(a0()){case 42:case 47:m0(d5(r9(d0(),$()),Z,Q),M2);break;default:L0+="/"}break;case 123*b1:D0[i2++]=H0(L0)*I1;case 125*b1:case 59:case 0:switch(c1){case 0:case 125:g5=0;case 59+l2:i9>0&&H0(L0)-r1&&m0(i9>32?f5(L0+";",r0,Q,r1-1):f5(R(L0," ","")+";",r0,Q,r1-2),M2);break;case 59:L0+=";";default:if(m0(X1=v5(L0,Z,Q,i2,l2,l0,D0,W1,m5=[],R2=[],r1),s1),c1===123)if(l2===0)I9(L0,Z,X1,X1,m5,s1,r1,D0,R2);else switch(C2===99&&t0(L0,3)===110?100:C2){case 100:case 109:case 115:I9(x,X1,X1,r0&&m0(v5(x,X1,X1,0,0,l0,D0,W1,l0,m5=[],r1),R2),l0,R2,r1,D0,r0?m5:R2);break;default:I9(L0,X1,X1,X1,[""],R2,0,D0,R2)}}i2=l2=i9=0,b1=I1=1,W1=L0="",r1=S1;break;case 58:r1=1+H0(L0),i9=o2;default:if(b1<1){if(c1==123)--b1;else if(c1==125&&b1++==0&&w0()==125)continue}switch(L0+=w(c1),c1*b1){case 38:I1=l2>0?1:(L0+="\f",-1);break;case 44:D0[i2++]=(H0(L0)-1)*I1,I1=1;break;case 64:a0()===45&&(L0+=m1(d0())),C2=a0(),l2=r1=H0(W1=L0+=T2($())),c1++;break;case 45:o2===45&&H0(L0)==2&&(b1=0)}}return s1}function v5(x,Z,Q,r0,l0,s1,S1,D0,M2,i2,l2){for(var r1=l0-1,C2=l0===0?s1:[""],i9=h0(C2),o2=0,b1=0,g5=0;o20?C2[I1]+" "+c1:R(c1,/&\f/g,C2[I1])))&&(M2[g5++]=W1);return O0(x,Z,Q,l0===0?o:D0,M2,i2,l2)}function d5(x,Z,Q){return O0(x,Z,Q,i,w(p0()),v0(x,2,-2),0)}function f5(x,Z,Q,r0){return O0(x,Z,Q,s,v0(x,0,r0),v0(x,r0+1,-1),r0)}function p5(x,Z,Q){switch(b(x,Z)){case 5103:return n+"print-"+x+x;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return n+x+x;case 4789:return r+x+x;case 5349:case 4246:case 4810:case 6968:case 2756:return n+x+r+x+a+x+x;case 5936:switch(t0(x,Z+11)){case 114:return n+x+a+R(x,/[svh]\w+-[tblr]{2}/,"tb")+x;case 108:return n+x+a+R(x,/[svh]\w+-[tblr]{2}/,"tb-rl")+x;case 45:return n+x+a+R(x,/[svh]\w+-[tblr]{2}/,"lr")+x}case 6828:case 4268:case 2903:return n+x+a+x+x;case 6165:return n+x+a+"flex-"+x+x;case 5187:return n+x+R(x,/(\w+).+(:[^]+)/,n+"box-$1$2"+a+"flex-$1$2")+x;case 5443:return n+x+a+"flex-item-"+R(x,/flex-|-self/g,"")+(k(x,/flex-|baseline/)?"":a+"grid-row-"+R(x,/flex-|-self/g,""))+x;case 4675:return n+x+a+"flex-line-pack"+R(x,/align-content|flex-|-self/g,"")+x;case 5548:return n+x+a+R(x,"shrink","negative")+x;case 5292:return n+x+a+R(x,"basis","preferred-size")+x;case 6060:return n+"box-"+R(x,"-grow","")+n+x+a+R(x,"grow","positive")+x;case 4554:return n+R(x,/([^-])(transform)/g,"$1"+n+"$2")+x;case 6187:return R(R(R(x,/(zoom-|grab)/,n+"$1"),/(image-set)/,n+"$1"),x,"")+x;case 5495:case 3959:return R(x,/(image-set\([^]*)/,n+"$1$`$1");case 4968:return R(R(x,/(.+:)(flex-)?(.*)/,n+"box-pack:$3"+a+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+n+x+x;case 4200:if(!k(x,/flex-|baseline/))return a+"grid-column-align"+v0(x,Z)+x;break;case 2592:case 3360:return a+R(x,"template-","")+x;case 4384:case 3616:return Q&&Q.some(function(r0,l0){return Z=l0,k(r0.props,/grid-\w+-end/)})?~N(x+(Q=Q[Z].value),"span")?x:a+R(x,"-start","")+x+a+"grid-row-span:"+(~N(Q,"span")?k(Q,/\d+/):+k(Q,/\d+/)-+k(x,/\d+/))+";":a+R(x,"-start","")+x;case 4896:case 4128:return Q&&Q.some(function(r0){return k(r0.props,/grid-\w+-start/)})?x:a+R(R(x,"-end","-span"),"span ","")+x;case 4095:case 3583:case 4068:case 2532:return R(x,/(.+)-inline(.+)/,n+"$1$2")+x;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(H0(x)-1-Z>6)switch(t0(x,Z+1)){case 109:if(t0(x,Z+4)!==45)break;case 102:return R(x,/(.+:)(.+)-([^]+)/,"$1"+n+"$2-$3$1"+r+(t0(x,Z+3)==108?"$3":"$2-$3"))+x;case 115:return~N(x,"stretch")?p5(R(x,"stretch","fill-available"),Z,Q)+x:x}break;case 5152:case 5920:return R(x,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,function(r0,l0,s1,S1,D0,M2,i2){return a+l0+":"+s1+i2+(S1?a+l0+"-span:"+(D0?M2:+M2-+s1)+i2:"")+x});case 4949:if(t0(x,Z+6)===121)return R(x,":",":"+n)+x;break;case 6444:switch(t0(x,t0(x,14)===45?18:11)){case 120:return R(x,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+n+(t0(x,14)===45?"inline-":"")+"box$3$1"+n+"$2$3$1"+a+"$2box$3")+x;case 100:return R(x,":",":"+a)+x}break;case 5719:case 2647:case 2135:case 3927:case 2391:return R(x,"scroll-","scroll-snap-")+x}return x}function n9(x,Z){for(var Q="",r0=h0(x),l0=0;l0-1&&!x.return)switch(x.type){case s:x.return=p5(x.value,x.length,Q);return;case F:return n9([X(x,{value:R(x.value,"@","@"+n)})],r0);case o:if(x.length)return U(x.props,function(l0){switch(k(l0,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return n9([X(x,{props:[R(l0,/:(read-\w+)/,":"+r+"$1")]})],r0);case"::placeholder":return n9([X(x,{props:[R(l0,/:(plac\w+)/,":"+n+"input-$1")]}),X(x,{props:[R(l0,/:(plac\w+)/,":"+r+"$1")]}),X(x,{props:[R(l0,/:(plac\w+)/,a+"input-$1")]})],r0)}return""})}}function M6(x){switch(x.type){case o:x.props=x.props.map(function(Z){return U(n2(Z),function(Q,r0,l0){switch(t0(Q,0)){case 12:return v0(Q,1,H0(Q));case 0:case 40:case 43:case 62:case 126:return Q;case 58:l0[++r0]==="global"&&(l0[r0]="",l0[++r0]="\f"+v0(l0[r0],r0=1,-1));case 32:return r0===1?"":Q;default:switch(r0){case 0:return x=Q,h0(l0)>1?"":Q;case(r0=h0(l0)-1):case 2:return r0===2?Q+x+x:Q+x;default:return Q}}})})}}t.CHARSET=g,t.COMMENT=i,t.COUNTER_STYLE=C,t.DECLARATION=s,t.DOCUMENT=H,t.FONT_FACE=I,t.FONT_FEATURE_VALUES=M,t.IMPORT=f,t.KEYFRAMES=F,t.MEDIA=v,t.MOZ=r,t.MS=a,t.NAMESPACE=y,t.PAGE=h,t.RULESET=o,t.SUPPORTS=z,t.VIEWPORT=m,t.WEBKIT=n,t.abs=V,t.alloc=E0,t.append=m0,t.assign=E,t.caret=$,t.char=p0,t.charat=t0,t.combine=U,t.comment=d5,t.commenter=r9,t.compile=h5,t.copy=X,t.dealloc=e1,t.declaration=f5,t.delimit=m1,t.delimiter=P2,t.escaping=b9,t.from=w,t.hash=b,t.identifier=T2,t.indexof=N,t.match=k,t.middleware=pt,t.namespace=M6,t.next=d0,t.node=O0,t.parse=I9,t.peek=a0,t.prefix=p5,t.prefixer=D3,t.prev=w0,t.replace=R,t.ruleset=v5,t.rulesheet=N3,t.serialize=n9,t.sizeof=h0,t.slice=i0,t.stringify=x6,t.strlen=H0,t.substr=v0,t.token=b0,t.tokenize=n2,t.tokenizer=E2,t.trim=P,t.whitespace=x2,Object.defineProperty(t,"__esModule",{value:!0})})});var ss=s0(Je=>{"use strict";Object.defineProperty(Je,"__esModule",{value:!0});var kp=function(a){var r=new WeakMap;return function(n){if(r.has(n))return r.get(n);var i=a(n);return r.set(n,i),i}};Je.default=kp});var Za=s0((NC,cs)=>{"use strict";cs.exports=ss()});var hs=s0(Qe=>{"use strict";Object.defineProperty(Qe,"__esModule",{value:!0});function Op(t){var a=Object.create(null);return function(r){return a[r]===void 0&&(a[r]=t(r)),a[r]}}Qe.default=Op});var $e=s0((GC,vs)=>{"use strict";vs.exports=hs()});var gs=s0(Ke=>{"use strict";Object.defineProperty(Ke,"__esModule",{value:!0});var Np=ls(),S=us(),Dp=Za(),Gp=$e();function fs(t){return t&&t.__esModule?t:{default:t}}var Zp=fs(Dp),Wp=fs(Gp),Xp=function(a,r,n){for(var i=0,o=0;i=o,o=S.peek(),i===38&&o===12&&(r[n]=1),!S.token(o);)S.next();return S.slice(a,S.position)},jp=function(a,r){var n=-1,i=44;do switch(S.token(i)){case 0:i===38&&S.peek()===12&&(r[n]=1),a[n]+=Xp(S.position-1,r,n);break;case 2:a[n]+=S.delimit(i);break;case 4:if(i===44){a[++n]=S.peek()===58?"&\f":"",r[n]=a[n].length;break}default:a[n]+=S.from(i)}while(i=S.next());return a},Up=function(a,r){return S.dealloc(jp(S.alloc(a),r))},ds=new WeakMap,Yp=function(a){if(!(a.type!=="rule"||!a.parent||a.length<1)){for(var r=a.value,n=a.parent,i=a.column===n.column&&a.line===n.line;n.type!=="rule";)if(n=n.parent,!n)return;if(!(a.props.length===1&&r.charCodeAt(0)!==58&&!ds.get(n))&&!i){ds.set(a,!0);for(var o=[],s=Up(r,o),h=n.props,v=0,f=0;v6)switch(S.charat(t,a+1)){case 109:if(S.charat(t,a+4)!==45)break;case 102:return S.replace(t,/(.+:)(.+)-([^]+)/,"$1"+S.WEBKIT+"$2-$3$1"+S.MOZ+(S.charat(t,a+3)==108?"$3":"$2-$3"))+t;case 115:return~S.indexof(t,"stretch")?ps(S.replace(t,"stretch","fill-available"),a)+t:t}break;case 4949:if(S.charat(t,a+1)!==115)break;case 6444:switch(S.charat(t,S.strlen(t)-3-(~S.indexof(t,"!important")&&10))){case 107:return S.replace(t,":",":"+S.WEBKIT)+t;case 101:return S.replace(t,/(.+:)([^;!]+)(;|!.+)?/,"$1"+S.WEBKIT+(S.charat(t,14)===45?"inline-":"")+"box$3$1"+S.WEBKIT+"$2$3$1"+S.MS+"$2box$3")+t}break;case 5936:switch(S.charat(t,a+11)){case 114:return S.WEBKIT+t+S.MS+S.replace(t,/[svh]\w+-[tblr]{2}/,"tb")+t;case 108:return S.WEBKIT+t+S.MS+S.replace(t,/[svh]\w+-[tblr]{2}/,"tb-rl")+t;case 45:return S.WEBKIT+t+S.MS+S.replace(t,/[svh]\w+-[tblr]{2}/,"lr")+t}return S.WEBKIT+t+S.MS+t+t}return t}var Qp=function(a,r,n,i){if(a.length>-1&&!a.return)switch(a.type){case S.DECLARATION:a.return=ps(a.value,a.length);break;case S.KEYFRAMES:return S.serialize([S.copy(a,{value:S.replace(a.value,"@","@"+S.WEBKIT)})],i);case S.RULESET:if(a.length)return S.combine(a.props,function(o){switch(S.match(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return S.serialize([S.copy(a,{props:[S.replace(o,/:(read-\w+)/,":"+S.MOZ+"$1")]})],i);case"::placeholder":return S.serialize([S.copy(a,{props:[S.replace(o,/:(plac\w+)/,":"+S.WEBKIT+"input-$1")]}),S.copy(a,{props:[S.replace(o,/:(plac\w+)/,":"+S.MOZ+"$1")]}),S.copy(a,{props:[S.replace(o,/:(plac\w+)/,S.MS+"input-$1")]})],i)}return""})}},Wa=typeof document<"u",$p=Wa?void 0:Zp.default(function(){return Wp.default(function(){var t={};return function(a){return t[a]}})}),Kp=[Qp],qp=function(a){var r=a.key;if(Wa&&r==="css"){var n=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(n,function(w){var E=w.getAttribute("data-emotion");E.indexOf(" ")!==-1&&(document.head.appendChild(w),w.setAttribute("data-s",""))})}var i=a.stylisPlugins||Kp,o={},s,h=[];Wa&&(s=a.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+r+' "]'),function(w){for(var E=w.getAttribute("data-emotion").split(" "),b=1;b{"use strict";ms.exports=gs()});var tr=s0((XC,a9)=>{function qe(){return a9.exports=qe=Object.assign?Object.assign.bind():function(t){for(var a=1;a{"use strict";var t1=typeof Symbol=="function"&&Symbol.for,ar=t1?Symbol.for("react.element"):60103,er=t1?Symbol.for("react.portal"):60106,ja=t1?Symbol.for("react.fragment"):60107,Ua=t1?Symbol.for("react.strict_mode"):60108,Ya=t1?Symbol.for("react.profiler"):60114,Ja=t1?Symbol.for("react.provider"):60109,Qa=t1?Symbol.for("react.context"):60110,rr=t1?Symbol.for("react.async_mode"):60111,$a=t1?Symbol.for("react.concurrent_mode"):60111,Ka=t1?Symbol.for("react.forward_ref"):60112,qa=t1?Symbol.for("react.suspense"):60113,tg=t1?Symbol.for("react.suspense_list"):60120,t6=t1?Symbol.for("react.memo"):60115,a6=t1?Symbol.for("react.lazy"):60116,ag=t1?Symbol.for("react.block"):60121,eg=t1?Symbol.for("react.fundamental"):60117,rg=t1?Symbol.for("react.responder"):60118,ng=t1?Symbol.for("react.scope"):60119;function D1(t){if(typeof t=="object"&&t!==null){var a=t.$$typeof;switch(a){case ar:switch(t=t.type,t){case rr:case $a:case ja:case Ya:case Ua:case qa:return t;default:switch(t=t&&t.$$typeof,t){case Qa:case Ka:case a6:case t6:case Ja:return t;default:return a}}case er:return a}}}function zs(t){return D1(t)===$a}B0.AsyncMode=rr;B0.ConcurrentMode=$a;B0.ContextConsumer=Qa;B0.ContextProvider=Ja;B0.Element=ar;B0.ForwardRef=Ka;B0.Fragment=ja;B0.Lazy=a6;B0.Memo=t6;B0.Portal=er;B0.Profiler=Ya;B0.StrictMode=Ua;B0.Suspense=qa;B0.isAsyncMode=function(t){return zs(t)||D1(t)===rr};B0.isConcurrentMode=zs;B0.isContextConsumer=function(t){return D1(t)===Qa};B0.isContextProvider=function(t){return D1(t)===Ja};B0.isElement=function(t){return typeof t=="object"&&t!==null&&t.$$typeof===ar};B0.isForwardRef=function(t){return D1(t)===Ka};B0.isFragment=function(t){return D1(t)===ja};B0.isLazy=function(t){return D1(t)===a6};B0.isMemo=function(t){return D1(t)===t6};B0.isPortal=function(t){return D1(t)===er};B0.isProfiler=function(t){return D1(t)===Ya};B0.isStrictMode=function(t){return D1(t)===Ua};B0.isSuspense=function(t){return D1(t)===qa};B0.isValidElementType=function(t){return typeof t=="string"||typeof t=="function"||t===ja||t===$a||t===Ya||t===Ua||t===qa||t===tg||typeof t=="object"&&t!==null&&(t.$$typeof===a6||t.$$typeof===t6||t.$$typeof===Ja||t.$$typeof===Qa||t.$$typeof===Ka||t.$$typeof===eg||t.$$typeof===rg||t.$$typeof===ng||t.$$typeof===ag)};B0.typeOf=D1});var Cs=s0((UC,Ms)=>{"use strict";Ms.exports=xs()});var lr=s0((YC,ys)=>{"use strict";var nr=Cs(),ig={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},lg={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},og={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},ws={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},ir={};ir[nr.ForwardRef]=og;ir[nr.Memo]=ws;function Bs(t){return nr.isMemo(t)?ws:ir[t.$$typeof]||ig}var ug=Object.defineProperty,sg=Object.getOwnPropertyNames,Vs=Object.getOwnPropertySymbols,cg=Object.getOwnPropertyDescriptor,hg=Object.getPrototypeOf,Hs=Object.prototype;function As(t,a,r){if(typeof a!="string"){if(Hs){var n=hg(a);n&&n!==Hs&&As(t,n,r)}var i=sg(a);Vs&&(i=i.concat(Vs(a)));for(var o=Bs(t),s=Bs(a),h=0;h{"use strict";Object.defineProperty(or,"__esModule",{value:!0});var vg=lr();function dg(t){return t&&t.__esModule?t:{default:t}}var fg=dg(vg),pg=function(t,a){return fg.default(t,a)};or.default=pg});var Ls=s0(y3=>{"use strict";Object.defineProperty(y3,"__esModule",{value:!0});var sr=typeof document<"u";function gg(t,a,r){var n="";return r.split(" ").forEach(function(i){t[i]!==void 0?a.push(t[i]+";"):n+=i+" "}),n}var _s=function(a,r,n){var i=a.key+"-"+r.name;(n===!1||sr===!1&&a.compat!==void 0)&&a.registered[i]===void 0&&(a.registered[i]=r.styles)},mg=function(a,r,n){_s(a,r,n);var i=a.key+"-"+r.name;if(a.inserted[r.name]===void 0){var o="",s=r;do{var h=a.insert(r===s?"."+i:"",s,a.sheet,!0);!sr&&h!==void 0&&(o+=h),s=s.next}while(s!==void 0);if(!sr&&o.length!==0)return o}};y3.getRegisteredStyles=gg;y3.insertStyles=mg;y3.registerStyles=_s});var cr=s0(($C,Fs)=>{"use strict";Fs.exports=Ls()});var Ss=s0(hr=>{"use strict";Object.defineProperty(hr,"__esModule",{value:!0});function zg(t){for(var a=0,r,n=0,i=t.length;i>=4;++n,i-=4)r=t.charCodeAt(n)&255|(t.charCodeAt(++n)&255)<<8|(t.charCodeAt(++n)&255)<<16|(t.charCodeAt(++n)&255)<<24,r=(r&65535)*1540483477+((r>>>16)*59797<<16),r^=r>>>24,a=(r&65535)*1540483477+((r>>>16)*59797<<16)^(a&65535)*1540483477+((a>>>16)*59797<<16);switch(i){case 3:a^=(t.charCodeAt(n+2)&255)<<16;case 2:a^=(t.charCodeAt(n+1)&255)<<8;case 1:a^=t.charCodeAt(n)&255,a=(a&65535)*1540483477+((a>>>16)*59797<<16)}return a^=a>>>13,a=(a&65535)*1540483477+((a>>>16)*59797<<16),((a^a>>>15)>>>0).toString(36)}hr.default=zg});var Is=s0((qC,bs)=>{"use strict";bs.exports=Ss()});var Es=s0(vr=>{"use strict";Object.defineProperty(vr,"__esModule",{value:!0});var xg={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1};vr.default=xg});var Ts=s0((aB,Ps)=>{"use strict";Ps.exports=Es()});var Ds=s0(pr=>{"use strict";Object.defineProperty(pr,"__esModule",{value:!0});var Mg=Is(),Cg=Ts(),Bg=$e();function fr(t){return t&&t.__esModule?t:{default:t}}var Vg=fr(Mg),Hg=fr(Cg),wg=fr(Bg),Ag=/[A-Z]|^ms/g,yg=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Ns=function(a){return a.charCodeAt(1)===45},Rs=function(a){return a!=null&&typeof a!="boolean"},dr=wg.default(function(t){return Ns(t)?t:t.replace(Ag,"-$&").toLowerCase()}),ks=function(a,r){switch(a){case"animation":case"animationName":if(typeof r=="string")return r.replace(yg,function(n,i,o){return b2={name:i,styles:o,next:b2},i})}return Hg.default[a]!==1&&!Ns(a)&&typeof r=="number"&&r!==0?r+"px":r};function _3(t,a,r){if(r==null)return"";if(r.__emotion_styles!==void 0)return r;switch(typeof r){case"boolean":return"";case"object":{if(r.anim===1)return b2={name:r.name,styles:r.styles,next:b2},r.name;if(r.styles!==void 0){var n=r.next;if(n!==void 0)for(;n!==void 0;)b2={name:n.name,styles:n.styles,next:b2},n=n.next;var i=r.styles+";";return i}return _g(t,a,r)}case"function":{if(t!==void 0){var o=b2,s=r(t);return b2=o,_3(t,a,s)}break}}if(a==null)return r;var h=a[r];return h!==void 0?h:r}function _g(t,a,r){var n="";if(Array.isArray(r))for(var i=0;i{"use strict";Gs.exports=Ds()});var Us=s0(e6=>{"use strict";Object.defineProperty(e6,"__esModule",{value:!0});var Xs=u0();function Fg(t){if(t&&t.__esModule)return t;var a=Object.create(null);return t&&Object.keys(t).forEach(function(r){if(r!=="default"){var n=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(a,r,n.get?n:{enumerable:!0,get:function(){return t[r]}})}}),a.default=t,Object.freeze(a)}var Zs=Fg(Xs),Sg=typeof document<"u",Ws=function(a){return a()},js=Zs["useInsertionEffect"]?Zs["useInsertionEffect"]:!1,bg=Sg&&js||Ws,Ig=js||Xs.useLayoutEffect;e6.useInsertionEffectAlwaysWithSyncFallback=bg;e6.useInsertionEffectWithLayoutFallback=Ig});var mr=s0((iB,Ys)=>{"use strict";Ys.exports=Us()});var qs=s0(F1=>{"use strict";var J0=u0(),Eg=Xa(),Qs=tr(),Pg=Za(),Tg=ur(),zr=cr(),Rg=gr(),kg=mr();function $s(t){return t&&t.__esModule?t:{default:t}}var Ks=$s(Eg),Js=$s(Pg),Mr=typeof document<"u",Cr={}.hasOwnProperty,L3=J0.createContext(typeof HTMLElement<"u"?Ks.default({key:"css"}):null),Og=L3.Provider,Ng=function(){return J0.useContext(L3)};F1.withEmotionCache=function(a){return J0.forwardRef(function(r,n){var i=J0.useContext(L3);return a(r,i,n)})};Mr||(F1.withEmotionCache=function(a){return function(r){var n=J0.useContext(L3);return n===null?(n=Ks.default({key:"css"}),J0.createElement(L3.Provider,{value:n},a(r,n))):a(r,n)}});var ct=J0.createContext({}),Dg=function(){return J0.useContext(ct)},Gg=function(a,r){if(typeof r=="function"){var n=r(a);return n}return Qs({},a,r)},Zg=Js.default(function(t){return Js.default(function(a){return Gg(t,a)})}),Wg=function(a){var r=J0.useContext(ct);return a.theme!==r&&(r=Zg(r)(a.theme)),J0.createElement(ct.Provider,{value:r},a.children)};function Xg(t){var a=t.displayName||t.name||"Component",r=function(o,s){var h=J0.useContext(ct);return J0.createElement(t,Qs({theme:h,ref:s},o))},n=J0.forwardRef(r);return n.displayName="WithTheme("+a+")",Tg.default(n,t)}var xr="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",jg=function(a,r){var n={};for(var i in r)Cr.call(r,i)&&(n[i]=r[i]);return n[xr]=a,n},Ug=function(a){var r=a.cache,n=a.serialized,i=a.isStringTag;zr.registerStyles(r,n,i);var o=kg.useInsertionEffectAlwaysWithSyncFallback(function(){return zr.insertStyles(r,n,i)});if(!Mr&&o!==void 0){for(var s,h=n.name,v=n.next;v!==void 0;)h+=" "+v.name,v=v.next;return J0.createElement("style",(s={},s["data-emotion"]=r.key+" "+h,s.dangerouslySetInnerHTML={__html:o},s.nonce=r.sheet.nonce,s))}return null},Yg=F1.withEmotionCache(function(t,a,r){var n=t.css;typeof n=="string"&&a.registered[n]!==void 0&&(n=a.registered[n]);var i=t[xr],o=[n],s="";typeof t.className=="string"?s=zr.getRegisteredStyles(a.registered,o,t.className):t.className!=null&&(s=t.className+" ");var h=Rg.serializeStyles(o,void 0,J0.useContext(ct));s+=a.key+"-"+h.name;var v={};for(var f in t)Cr.call(t,f)&&f!=="css"&&f!==xr&&(v[f]=t[f]);return v.ref=r,v.className=s,J0.createElement(J0.Fragment,null,J0.createElement(Ug,{cache:a,serialized:h,isStringTag:typeof i=="string"}),J0.createElement(i,v))});F1.CacheProvider=Og;F1.Emotion=Yg;F1.ThemeContext=ct;F1.ThemeProvider=Wg;F1.__unsafe_useEmotionCache=Ng;F1.createEmotionProps=jg;F1.hasOwnProperty=Cr;F1.isBrowser=Mr;F1.useTheme=Dg;F1.withTheme=Xg});var ec=s0(B1=>{"use strict";Object.defineProperty(B1,"__esModule",{value:!0});var I2=u0();Xa();var a1=qs();tr();Za();lr();ur();var r6=cr(),Vr=gr(),Br=mr(),tc=function(a,r){var n=arguments;if(r==null||!a1.hasOwnProperty.call(r,"css"))return I2.createElement.apply(void 0,n);var i=n.length,o=new Array(i);o[0]=a1.Emotion,o[1]=a1.createEmotionProps(a,r);for(var s=2;s{"use strict";rc.exports=ec()});var Gr=s0((QV,$z)=>{$z.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAWgAAAFoBAMAAACIy3zmAAAAElBMVEUBAALu7u7///86OTuysrJ4eHmhZktDAAAL1klEQVR42u3dS3ujuBIG4CLA3sjJPpLxHuNk79CZPU3a//+vjG9xxzYXUfVJiHNGm2nPPI3fKZeugETmXHR2LuKPOvvcf223WzqUYrvd//n8zNTxXwO/iGDXOsjM535b0GPZ7j+VCRBtTPb8RT3l/UMFhjbm+auggRK/fwSEPpLJqsQf1788NdqWfGL/USYAdD6C/B3tidH6F40uh9yeFP1SEKf8MWYqtNFfxCzpxzRoxQ3zpUJOgVbmF4nKm3+0yWsSlrTyjBalxjVFKq9o80KQ8puJvvzzexRm81GczveJbfm9148MNND8V+0YrTTQfFW7RStdE+HVTtFw80XtEq3MjsiF2iXa/CJyonaIdmMm2rhEL8lR+W2coV/IWfmtHaFzd+bDOEQ7QeuCXKqVdoGuyWlJjQP0khyXNwNHr8l5OVRGS7TdQFbl7s3HSQF0EqBrD+hDWiPRrnrCzp4RgV6Tp9JoGNptC33bWsPQO/JWEgNCr8ljOSeIGO0vOf4miBi9I68lMQB0Tp7LMUGk6No3OlVi9Iq8l40WojVNUCohejcFOjEStFrTJKURrZrW06BTI5gETBRoolLz0cVU6MvAiYNe0WRlo7noYjr0OdQM9JJo4lCPR+tiSjQpFnoxqZkSzUBrmrgoBno5NXqjx6MLmj7UY9Gryc2HUI9FTx/oQ1s9Er2mAEppRqGnGt7dhdqMWjUNItCdq2Qd6DoMdDoGnVMgpRqBXoSCTrQ9moIpyhq9Cge90bboOhz0eYprgc4poNJYoiELNGn2XMOq4jAaMpBOFWrqo6zQkGpYHhcRF6ArWaARv2p8Wq6FVI7UBp2jMhHVDFUW6AWqzqMyLdLDaETtiQ2wTh8uNrRqChmURt9PHkJaz2ZoEoD5mup75A4KwQAa0ram1+mGhiVbHxoSmvLv07Q7VLXuQ0O+RP2d2K1RDWgfmmDZcbkzD8kP1YsGZsflCfEFMD860AtcdlxqTw7Mjw404sdMbl8gqHHtRzsakh3NLXqJy4929AJSa26XhSD5EeluNDI7oCtscTcaEpTmfi0TMtSrOtGQ7DD3aMhQ7+ZmF6Gf240eV8IRvWyqO1ZNISFpeV4U0iapjkkAIvnSlucdIEO9ph0NGZGVLWjIhZN2NKTBa3vFEHIvJG5H55jsaHtNFByOH+gVJjta0JChXtmGhmSean/wKMck9SNag2pL66vPNSSpH9FrULvUil5CkvoBDcm7zufSckhSP6JrUHa0og3k6g9ojcqO9j0IVoikfkDnkKrS+dgiIibVAxoQiqhv7yBAg1reoxHjx6rvAVFA45Q8rJrKe9pU9z4gWqDS7+8kAJDST/1o3E/5jUbU7qr/AWFAfpR3aHnXkg69CV2gavoVXQPC0I+GxOUGDWhG1dC734Bqc4uWJ1wyvCVBjaqJF7S8HjbD6CWqJhKqv7LYhCFH/Jw/0DXickNo+VAv/Yk2iOwY3htkBaqJhOkPY6uNRTSoJhKmHkZ2W8fsMDWRMP1hZbeFyxpTEwlSD2PLzXLEq3rpj1VT6bUiixdjMfdHzHUSIK4gle1WW8+QbyLEqDHV1vuDSX/T5oqWNh6lPfpVOtO4oheQ7LBCS3uE0zyRAPdakjH7q9aATCRAopVj9ryTpqK6oDXgOtboHJCKJL9OMm5j3528+SD5L9aM2xJxJc9FEjdD8ch9HIXJeOx8SfyDRSPRwqFeekHLWqFqJFo41Isv6EKWHaP3RC2kbRVJW7xoNFqYH9Vp1TSXXmPMnqjHj7IvbE6TgLW0XoxFy/KjPKFFDeeGgxa1sU9HtGyCWGUMdC6sRCSrF6nmoEWNbHJCS65Q8tArWRtLsrstKmOhRa3sES25QKJ5aNHIQR3QklrRZEy0JD+qA1rQTPdvHeJqu5PmgF5Js4OFFuRHaUiyPt9kbPRahl4IGh8+WpAfkQgdaQF6IULzs6vKBGj+ql5iiN+lplp0Qgk7P2JN/L+8kaFfJWhBdojQ/E5NgE6l53+x81IRe+hRStHsXq0i9q+kpGe4aT6a2zUlWnzwHLexbdjoRn5aHvuracXPDvFBfNzaxEW3ve0/+iMzPzZcdJMB0Mz8iIg3cIkNAs3sjblo61u0Lm7gJkx0lUHQORPNqgwjbtH2f6w9op8YA+jWM5oWPDTr/1WB0Lz1Cx46NSg0Kz9SFrqEoVnPYqXEaSorGJqVHzy0waE5/UvMQadAtPKFjpHoeo5oX5EmhUPz5lwcdINDc0anMfcGE6qd5i/pjV9MR409fO68nFxfqfhZBpUPf0PvyGOJt3eltEEv7/9WQZOWyGYA/UphlUjPEP3kFV3ML9IxCv2/G+nV/3Gk4/9y2hu6nmOk6/lFOvUa6VVgaL+R3s0vp2Fon5FOYGib9xEXgaGtJgEgNPf2xaSR9opGRfqJlvOLNPvmJyeng0P7jfR6fjnd+EQrGDr3l9OoSFcotM9IV6TnhzakZoku5pbT8QFdzy3SqSHQoa8ex9OJJtB5RB7niBEM7THSR/TKX6Qx6E1GoMPMPEa6hKE95nRzQOdzi3R1QOu55bQ6vmNbzCvSsT6i63lFOj2hd/OKdHJCv86r9YhO6NW8Il2eXnZfzyunmxM6n1ekEW/oex9Pq9PL7pCG2tvMJT7vLQaZcHmL9Dd65wkNiXRyQS/mFOmny9ZzK085jdp5/4TO5xTp6oLWc8ppdUEjmg9fkY6/t1NErNf4aqfTK3oxn0hH140rX+eDLq/o9XzQzRWdzyen1RUNeLbWU6TjH/uaypsPT+Pp80tjBDpDztMcMfqBXs0l0uWPYyRyP5GWo6ufZ1/MJdL6J7qeR06nN+jFPCKd3KBX88jp8uY8l3wekW5uD6GZR6TVLbqeQ6S/j7khg6mJXlqP5A69mkOky7uDlfI55HR1fxpUEX6k44fToIRrYz7G08n9aVDSwzR8zFzKB3QefqSrx8N3C+doaaTVI7oOPdKpfkS/Os9pITpqQa9Dj3TTdqB0EXhOqzb0LuxIHwYeLehV2O102XreeB52pKv2Q9KLkNHH7ara0JKkjlyjE92OljR6NieciQZlZdaOltwwSm3QtajB+4FGHftcOdw/8RKUtvPGZTm3Me52qrzUmVa07I5AZQaK/OqtaNENxXj/z6Xsz+Xu4150cdONli+uOypRNzpbh4puetCYpyHx5e58bYKfVe2iJH3oUPOj6UXrMNGmFx1mfiT96DDzoxlAh9h+fO9V1Y0OsH9J9BA6wPxo7sdedD/qDS8/4oeh+QM6vPHH0zA6y0NDVxZo0Lt+sNIykWtBL8NClzbo0LpyZYUOqytPjBU6rK68skSbOqxqaIVWq7CqoRU6pKporNHh9IqRPTqcXrEagQ6lV+zYB70DHUir17EpMHWcoFyHEej2tcwudBCtXqlHobXPnX+7R/8j0SGM9cqx6Gz6UHcfoNyJnj7Um/Ho6ftyxUBPPayODAM9cVaflpXGo7PlxBnNQk8Z6tgw0VM2ICUXPWGoU8NGTzfYa/joyaa4af8da+p/dGCiUDf9h80OoEH7YY1eoMkk6Gk6cyVET9HslUaInqAuDj+kM4j23+xVcnTmuy4mBoD23C+ebxqK0erFf18oRntNkMSA0B4TxO70Iyu0vxbE7nAsK3RmPHUxbwaIVn66mFQpKNrLinWlLdGWR6L6aPca25NZbdGZ+eVj/g1GOx85pdoB2vG5b+cWGo0Wv5M2PLZzgHZaGX8bR2iHfczGOEM7a0KuPaETtBv1m8mcol2ok8P13aLxzXWqxp5VPh5tvrDmd6U9oLEZ8nYyu0cj1W+GcbI9C41Tv127gFFo3lm0L6g+hXUGLhNtcsDoKf5tMq9oo8VNX1qZzDNanNhv5ycXPaPNSyFKDZ1NgTbPNb9HMYLvFaG5wT6EWXSCtgh9aED1L04naCZFH/74vB2ZGZX4rHIp+thbfY4YQr1/sL8IiT51NZbs9MOYMNCnj8/Db6PGxyiLvwiJPnSRz1/9eZHxexNn6KP7c79tCXi83R/TQsG+CIk+/SF7/vxn/7U94bfb9/f95+W/A7/oX44ULTUlw6M+AAAAAElFTkSuQmCC"});var J=j(u0()),Zh=j(Vu());var La=j(u0(),1);function Fa(t,a){let r=(0,La.useRef)(a);(0,La.useEffect)(function(){a!==r.current&&t.attributionControl!=null&&(r.current!=null&&t.attributionControl.removeAttribution(r.current),a!=null&&t.attributionControl.addAttribution(a)),r.current=a},[t,a])}function ve(t,a,r){a.center!==r.center&&t.setLatLng(a.center),a.radius!=null&&a.radius!==r.radius&&t.setRadius(a.radius)}var _1=j(u0(),1),wu=j(e5(),1);var Sa=j(u0(),1),Hu=1;function de(t){return Object.freeze({__version:Hu,map:t})}function r5(t,a){return Object.freeze({...t,...a})}var fe=(0,Sa.createContext)(null),M3=fe.Provider;function $2(){let t=(0,Sa.useContext)(fe);if(t==null)throw new Error("No context provided: useLeafletContext() can only be used in a descendant of ");return t}function pe(t){function a(r,n){let{instance:i,context:o}=t(r).current;return(0,_1.useImperativeHandle)(n,()=>i),r.children==null?null:_1.default.createElement(M3,{value:o},r.children)}return(0,_1.forwardRef)(a)}function Au(t){function a(r,n){let[i,o]=(0,_1.useState)(!1),{instance:s}=t(r,o).current;(0,_1.useImperativeHandle)(n,()=>s),(0,_1.useEffect)(function(){i&&s.update()},[s,i,r.children]);let h=s._contentNode;return h?(0,wu.createPortal)(r.children,h):null}return(0,_1.forwardRef)(a)}function yu(t){function a(r,n){let{instance:i}=t(r).current;return(0,_1.useImperativeHandle)(n,()=>i),null}return(0,_1.forwardRef)(a)}var ba=j(u0(),1);function et(t,a){let r=(0,ba.useRef)();(0,ba.useEffect)(function(){return a!=null&&t.instance.on(a),r.current=a,function(){r.current!=null&&t.instance.off(r.current),r.current=null}},[t,a])}function K2(t,a){let r=t.pane??a.pane;return r?{...t,pane:r}:t}function _u(t,a){return function(n,i){let o=$2(),s=t(K2(n,o),o);return Fa(o.map,n.attribution),et(s.current,n.eventHandlers),a(s.current,o,n,i),s}}var rt=j(u0(),1);function e2(t,a,r){return Object.freeze({instance:t,context:a,container:r})}function nt(t,a){return a==null?function(n,i){let o=(0,rt.useRef)();return o.current||(o.current=t(n,i)),o}:function(n,i){let o=(0,rt.useRef)();o.current||(o.current=t(n,i));let s=(0,rt.useRef)(n),{instance:h}=o.current;return(0,rt.useEffect)(function(){s.current!==n&&(a(h,n,s.current),s.current=n)},[h,n,i]),o}}var Fu=j(u0(),1);function ge(t,a){(0,Fu.useEffect)(function(){return(a.layerContainer??a.map).addLayer(t.instance),function(){a.layerContainer?.removeLayer(t.instance),a.map.removeLayer(t.instance)}},[a,t])}function me(t){return function(r){let n=$2(),i=t(K2(r,n),n);return Fa(n.map,r.attribution),et(i.current,r.eventHandlers),ge(i.current,n),i}}var Ea=j(u0(),1);function zp(t,a){let r=(0,Ea.useRef)();(0,Ea.useEffect)(function(){if(a.pathOptions!==r.current){let i=a.pathOptions??{};t.instance.setStyle(i),r.current=i}},[t,a])}function Su(t){return function(r){let n=$2(),i=t(K2(r,n),n);return et(i.current,r.eventHandlers),ge(i.current,n),zp(i.current,r),i}}function ze(t,a){let r=nt(t,a),n=me(r);return pe(n)}function xe(t,a){let r=nt(t),n=_u(r,a);return Au(n)}function C3(t,a){let r=nt(t,a),n=Su(r);return pe(n)}function Me(t,a){let r=nt(t,a),n=me(r);return yu(n)}function Ce(t,a,r){let{opacity:n,zIndex:i}=a;n!=null&&n!==r.opacity&&t.setOpacity(n),i!=null&&i!==r.zIndex&&t.setZIndex(i)}var xp=j(u0(),1);function Be(){return $2().map}var bu=j(q2(),1),Ve=C3(function({center:a,children:r,...n},i){let o=new bu.CircleMarker(a,n);return e2(o,r5(i,{overlayContainer:o}))},ve);var Iu=j(q2(),1),He=C3(function({data:a,...r},n){let i=new Iu.GeoJSON(a,r);return e2(i,r5(n,{overlayContainer:i}))},function(a,r,n){r.style!==n.style&&(r.style==null?a.resetStyle():a.setStyle(r.style))});var Eu=j(q2(),1),L1=j(u0(),1);function we(){return we=Object.assign||function(t){for(var a=1;aH?.map??null,[H]);let F=(0,L1.useCallback)(C=>{if(C!==null&&H===null){let M=new Eu.Map(C,g);r!=null&&f!=null?M.setView(r,f):t!=null&&M.fitBounds(t,a),v!=null&&M.whenReady(v),y(de(M))}},[]);(0,L1.useEffect)(()=>()=>{H?.map.remove()},[H]);let I=H?L1.default.createElement(M3,{value:H},n):s??null;return L1.default.createElement("div",we({},z,{ref:F}),I)}var Ae=(0,L1.forwardRef)(Mp);var Pu=j(q2(),1),ye=ze(function({position:a,...r},n){let i=new Pu.Marker(a,r);return e2(i,r5(n,{overlayContainer:i}))},function(a,r,n){r.position!==n.position&&a.setLatLng(r.position),r.icon!=null&&r.icon!==n.icon&&a.setIcon(r.icon),r.zIndexOffset!=null&&r.zIndexOffset!==n.zIndexOffset&&a.setZIndexOffset(r.zIndexOffset),r.opacity!=null&&r.opacity!==n.opacity&&a.setOpacity(r.opacity),a.dragging!=null&&r.draggable!==n.draggable&&(r.draggable===!0?a.dragging.enable():a.dragging.disable())});var Tu=j(q2(),1),Ru=j(u0(),1),B3=xe(function(a,r){let n=new Tu.Popup(a,r.overlayContainer);return e2(n,r)},function(a,r,{position:n},i){(0,Ru.useEffect)(function(){let{instance:s}=a;function h(f){f.popup===s&&(s.update(),i(!0))}function v(f){f.popup===s&&i(!1)}return r.map.on({popupopen:h,popupclose:v}),r.overlayContainer==null?(n!=null&&s.setLatLng(n),s.openOn(r.map)):r.overlayContainer.bindPopup(s),function(){r.map.off({popupopen:h,popupclose:v}),r.overlayContainer?.unbindPopup(),r.map.removeLayer(s)}},[a,r,i,n])});var ku=j(q2(),1),_e=Me(function({url:a,...r},n){let i=new ku.TileLayer(a,K2(r,n));return e2(i,n)},Ce);var it=j(u0());var Le=j(u0()),Fe={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},Se=Le.default.createContext&&Le.default.createContext(Fe);var F9=function(){return F9=Object.assign||function(t){for(var a,r=1,n=arguments.length;r{let o=ot(t,"row"),s=Oa(),h=Na(),v=`${o}-cols`,f=[];return s.forEach(g=>{let m=n[g];delete n[g];let z;m!=null&&typeof m=="object"?{cols:z}=m:z=m;let H=g!==h?`-${g}`:"";z!=null&&f.push(`${v}${H}-${z}`)}),(0,Qu.jsx)(r,{ref:i,...n,className:(0,Yu.default)(a,o,...f)})});$u.displayName="Row";var Ie=$u;var Ee=j(Ta()),Ku=j(u0());var qu=j(lt());function Ip({as:t,bsPrefix:a,className:r,...n}){a=ot(a,"col");let i=Oa(),o=Na(),s=[],h=[];return i.forEach(v=>{let f=n[v];delete n[v];let g,m,z;typeof f=="object"&&f!=null?{span:g,offset:m,order:z}=f:g=f;let H=v!==o?`-${v}`:"";g&&s.push(g===!0?`${a}${H}`:`${a}${H}-${g}`),z!=null&&h.push(`order${H}-${z}`),m!=null&&h.push(`offset${H}-${m}`)}),[{...n,className:(0,Ee.default)(r,...s,...h)},{as:t,bsPrefix:a,spans:s}]}var ts=Ku.forwardRef((t,a)=>{let[{className:r,...n},{as:i="div",bsPrefix:o,spans:s}]=Ip(t);return(0,qu.jsx)(i,{...n,ref:a,className:(0,Ee.default)(r,!s.length&&o)})});ts.displayName="Col";var Pe=ts;function N1(t,a,r){return a in t?Object.defineProperty(t,a,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[a]=r,t}function as(t,a){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);a&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function c0(t){for(var a=1;at.length)&&(a=t.length);for(var r=0,n=new Array(a);r=0)&&(r[i]=t[i]);return r}function u1(t,a){if(t==null)return{};var r=n5(t,a),n,i;if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(i=0;i=0)&&(!Object.prototype.propertyIsEnumerable.call(t,n)||(r[n]=t[n]))}return r}var t9=j(u0()),Ep=["defaultInputValue","defaultMenuIsOpen","defaultValue","inputValue","menuIsOpen","onChange","onInputChange","onMenuClose","onMenuOpen","value"];function es(t){var a=t.defaultInputValue,r=a===void 0?"":a,n=t.defaultMenuIsOpen,i=n===void 0?!1:n,o=t.defaultValue,s=o===void 0?null:o,h=t.inputValue,v=t.menuIsOpen,f=t.onChange,g=t.onInputChange,m=t.onMenuClose,z=t.onMenuOpen,H=t.value,y=u1(t,Ep),F=(0,t9.useState)(h!==void 0?h:r),I=g1(F,2),C=I[0],M=I[1],V=(0,t9.useState)(v!==void 0?v:i),w=g1(V,2),E=w[0],b=w[1],P=(0,t9.useState)(H!==void 0?H:s),k=g1(P,2),R=k[0],N=k[1],t0=(0,t9.useCallback)(function(X,p0){typeof f=="function"&&f(X,p0),N(X)},[f]),v0=(0,t9.useCallback)(function(X,p0){var w0;typeof g=="function"&&(w0=g(X,p0)),M(w0!==void 0?w0:X)},[g]),H0=(0,t9.useCallback)(function(){typeof z=="function"&&z(),b(!0)},[z]),h0=(0,t9.useCallback)(function(){typeof m=="function"&&m(),b(!1)},[m]),m0=h!==void 0?h:C,U=v!==void 0?v:E,O0=H!==void 0?H:R;return c0(c0({},y),{},{inputValue:m0,menuIsOpen:U,onChange:t0,onInputChange:v0,onMenuClose:h0,onMenuOpen:H0,value:O0})}function W(){return W=Object.assign?Object.assign.bind():function(t){for(var a=1;a"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function l5(t){return l5=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(a){return typeof a}:function(a){return a&&typeof Symbol=="function"&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},l5(t)}function A3(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function Ze(t,a){if(a&&(l5(a)==="object"||typeof a=="function"))return a;if(a!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return A3(t)}function We(t){var a=Ge();return function(){var n=st(t),i;if(a){var o=st(this).constructor;i=Reflect.construct(n,arguments,o)}else i=n.apply(this,arguments);return Ze(this,i)}}function Xe(t){if(Array.isArray(t))return ut(t)}function je(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ue(){throw new TypeError(`Invalid attempt to spread non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Da(t){return Xe(t)||je(t)||w3(t)||Ue()}var V0=j(u0()),M0=j(u0());var K=j(Hr());function wr(t,a){return a||(a=t.slice(0)),Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(a)}}))}var Q0=j(u0()),fc=j(e5());function lc(t){return t&&t.document&&t.location&&t.alert&&t.setInterval}function o5(t){if(t==null)return window;if(!lc(t)){let a=t.ownerDocument;return a&&a.defaultView||window}return t}function am(t){return o5(t).getComputedStyle(t)}function oc(t){return lc(t)?"":t?(t.nodeName||"").toLowerCase():""}function em(){let t=navigator.userAgentData;return t!=null&&t.brands?t.brands.map(a=>a.brand+"/"+a.version).join(" "):navigator.userAgent}function uc(t){return t instanceof o5(t).HTMLElement}function n6(t){return t instanceof o5(t).Element}function rm(t){return typeof ShadowRoot>"u"?!1:t instanceof o5(t).ShadowRoot||t instanceof ShadowRoot}function sc(t){let{overflow:a,overflowX:r,overflowY:n,display:i}=am(t);return/auto|scroll|overlay|hidden/.test(a+n+r)&&!["inline","contents"].includes(i)}function nm(){return!/^((?!chrome|android).)*safari/i.test(em())}function im(t){return["html","body","#document"].includes(oc(t))}var nc=Math.round;function ic(t,a,r){var n,i,o,s;a===void 0&&(a=!1),r===void 0&&(r=!1);let h=t.getBoundingClientRect(),v=1,f=1;a&&uc(t)&&(v=t.offsetWidth>0&&nc(h.width)/t.offsetWidth||1,f=t.offsetHeight>0&&nc(h.height)/t.offsetHeight||1);let g=n6(t)?o5(t):window,m=!nm()&&r,z=(h.left+(m&&(n=(i=g.visualViewport)==null?void 0:i.offsetLeft)!=null?n:0))/v,H=(h.top+(m&&(o=(s=g.visualViewport)==null?void 0:s.offsetTop)!=null?o:0))/f,y=h.width/v,F=h.height/f;return{width:y,height:F,top:H,right:z+y,bottom:H+F,left:z,x:z,y:H}}function lm(t){return(a=t,(a instanceof o5(a).Node?t.ownerDocument:t.document)||window.document).documentElement;var a}function om(t){return oc(t)==="html"?t:t.assignedSlot||t.parentNode||(rm(t)?t.host:null)||lm(t)}function cc(t){let a=om(t);return im(a)?t.ownerDocument.body:uc(a)&&sc(a)?a:cc(a)}function i6(t,a){var r;a===void 0&&(a=[]);let n=cc(t),i=n===((r=t.ownerDocument)==null?void 0:r.body),o=o5(n),s=i?[o].concat(o.visualViewport||[],sc(n)?n:[]):n,h=a.concat(s);return i?h:h.concat(i6(s))}function hc(t,a,r,n){n===void 0&&(n={});let{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:s=!0,animationFrame:h=!1}=n,v=i&&!h,f=v||o?[...n6(t)?i6(t):t.contextElement?i6(t.contextElement):[],...i6(a)]:[];f.forEach(H=>{v&&H.addEventListener("scroll",r,{passive:!0}),o&&H.addEventListener("resize",r)});let g,m=null;if(s){let H=!0;m=new ResizeObserver(()=>{H||r(),H=!1}),n6(t)&&!h&&m.observe(t),n6(t)||!t.contextElement||h||m.observe(t.contextElement),m.observe(a)}let z=h?ic(t):null;return h&&function H(){let y=ic(t);!z||y.x===z.x&&y.y===z.y&&y.width===z.width&&y.height===z.height||r(),z=y,g=requestAnimationFrame(H)}(),r(),()=>{var H;f.forEach(y=>{v&&y.removeEventListener("scroll",r),o&&y.removeEventListener("resize",r)}),(H=m)==null||H.disconnect(),m=null,h&&cancelAnimationFrame(g)}}var vc=j(u0()),um=vc.useLayoutEffect,l6=um;var sm=["className","clearValue","cx","getStyles","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"],F3=function(){};function cm(t,a){return a?a[0]==="-"?t+a:t+"__"+a:t}function pc(t,a,r){var n=[r];if(a&&t)for(var i in a)a.hasOwnProperty(i)&&a[i]&&n.push("".concat(cm(t,i)));return n.filter(function(o){return o}).map(function(o){return String(o).trim()}).join(" ")}var yr=function(a){return gm(a)?a.filter(Boolean):l5(a)==="object"&&a!==null?[a]:[]},gc=function(a){a.className,a.clearValue,a.cx,a.getStyles,a.getValue,a.hasValue,a.isMulti,a.isRtl,a.options,a.selectOption,a.selectProps,a.setValue,a.theme;var r=u1(a,sm);return c0({},r)};function S3(t){return[document.documentElement,document.body,window].indexOf(t)>-1}function hm(t){return S3(t)?window.innerHeight:t.clientHeight}function mc(t){return S3(t)?window.pageYOffset:t.scrollTop}function s6(t,a){if(S3(t)){window.scrollTo(0,a);return}t.scrollTop=a}function vm(t){var a=getComputedStyle(t),r=a.position==="absolute",n=/(auto|scroll)/;if(a.position==="fixed")return document.documentElement;for(var i=t;i=i.parentElement;)if(a=getComputedStyle(i),!(r&&a.position==="static")&&n.test(a.overflow+a.overflowY+a.overflowX))return i;return document.documentElement}function dm(t,a,r,n){return r*((t=t/n-1)*t*t+1)+a}function o6(t,a){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:200,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:F3,i=mc(t),o=a-i,s=10,h=0;function v(){h+=s;var f=dm(h,i,o,r);s6(t,f),hr.bottom?s6(t,Math.min(a.offsetTop+a.clientHeight-t.offsetHeight+i,t.scrollHeight)):n.top-i1?r-1:0),i=1;i=F)return{placement:"bottom",maxHeight:a};if(N>=F&&!s)return o&&o6(f,t0,H0),{placement:"bottom",maxHeight:a};if(!s&&N>=n||s&&k>=n){o&&o6(f,t0,H0);var h0=s?k-E:N-E;return{placement:"bottom",maxHeight:h0}}if(i==="auto"||s){var m0=a,U=s?P:R;return U>=n&&(m0=Math.min(U-E-v.controlHeight,a)),{placement:"top",maxHeight:m0}}if(i==="bottom")return o&&s6(f,t0),{placement:"bottom",maxHeight:a};break;case"top":if(P>=F)return{placement:"top",maxHeight:a};if(R>=F&&!s)return o&&o6(f,v0,H0),{placement:"top",maxHeight:a};if(!s&&R>=n||s&&P>=n){var O0=a;return(!s&&R>=n||s&&P>=n)&&(O0=s?P-b:R-b),o&&o6(f,v0,H0),{placement:"top",maxHeight:O0}}return{placement:"bottom",maxHeight:a};default:throw new Error('Invalid placement provided "'.concat(i,'".'))}return g}function zm(t){var a={bottom:"top",top:"bottom"};return t?a[t]:"bottom"}var Vc=function(a){return a==="auto"?"bottom":a},Hc=function(a){var r,n=a.placement,i=a.theme,o=i.borderRadius,s=i.spacing,h=i.colors;return r={label:"menu"},N1(r,zm(n),"100%"),N1(r,"backgroundColor",h.neutral0),N1(r,"borderRadius",o),N1(r,"boxShadow","0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)"),N1(r,"marginBottom",s.menuGutter),N1(r,"marginTop",s.menuGutter),N1(r,"position","absolute"),N1(r,"width","100%"),N1(r,"zIndex",1),r},wc=(0,Q0.createContext)(null),Ac=function(a){var r=a.children,n=a.minMenuHeight,i=a.maxMenuHeight,o=a.menuPlacement,s=a.menuPosition,h=a.menuShouldScrollIntoView,v=a.theme,f=(0,Q0.useContext)(wc)||{},g=f.setPortalPlacement,m=(0,Q0.useRef)(null),z=(0,Q0.useState)(i),H=g1(z,2),y=H[0],F=H[1],I=(0,Q0.useState)(null),C=g1(I,2),M=C[0],V=C[1];return l6(function(){var w=m.current;if(!!w){var E=s==="fixed",b=h&&!E,P=mm({maxHeight:i,menuEl:w,minHeight:n,placement:o,shouldScroll:b,isFixedPosition:E,theme:v});F(P.maxHeight),V(P.placement),g?.(P.placement)}},[i,o,s,h,n,g,v]),r({ref:m,placerProps:c0(c0({},a),{},{placement:M||Vc(o),maxHeight:y})})},xm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerRef,h=a.innerProps;return(0,K.jsx)("div",W({css:o("menu",a),className:i({menu:!0},n),ref:s},h),r)},yc=function(a){var r=a.maxHeight,n=a.theme.spacing.baseUnit;return{maxHeight:r,overflowY:"auto",paddingBottom:n,paddingTop:n,position:"relative",WebkitOverflowScrolling:"touch"}},Mm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps,h=a.innerRef,v=a.isMulti;return(0,K.jsx)("div",W({css:o("menuList",a),className:i({"menu-list":!0,"menu-list--is-multi":v},n),ref:h},s),r)},_c=function(a){var r=a.theme,n=r.spacing.baseUnit,i=r.colors;return{color:i.neutral40,padding:"".concat(n*2,"px ").concat(n*3,"px"),textAlign:"center"}},Lc=_c,Fc=_c,Sc=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("noOptionsMessage",a),className:i({"menu-notice":!0,"menu-notice--no-options":!0},n)},s),r)};Sc.defaultProps={children:"No options"};var bc=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("loadingMessage",a),className:i({"menu-notice":!0,"menu-notice--loading":!0},n)},s),r)};bc.defaultProps={children:"Loading..."};var Ic=function(a){var r=a.rect,n=a.offset,i=a.position;return{left:r.left,position:i,top:n,width:r.width,zIndex:1}},Cm=function(a){var r=a.appendTo,n=a.children,i=a.className,o=a.controlElement,s=a.cx,h=a.innerProps,v=a.menuPlacement,f=a.menuPosition,g=a.getStyles,m=(0,Q0.useRef)(null),z=(0,Q0.useRef)(null),H=(0,Q0.useState)(Vc(v)),y=g1(H,2),F=y[0],I=y[1],C=(0,Q0.useMemo)(function(){return{setPortalPlacement:I}},[]),M=(0,Q0.useState)(null),V=g1(M,2),w=V[0],E=V[1],b=(0,Q0.useCallback)(function(){if(!!o){var N=fm(o),t0=f==="fixed"?0:window.pageYOffset,v0=N[F]+t0;(v0!==w?.offset||N.left!==w?.rect.left||N.width!==w?.rect.width)&&E({offset:v0,rect:N})}},[o,f,F,w?.offset,w?.rect.left,w?.rect.width]);l6(function(){b()},[b]);var P=(0,Q0.useCallback)(function(){typeof z.current=="function"&&(z.current(),z.current=null),o&&m.current&&(z.current=hc(o,m.current,b,{elementResize:"ResizeObserver"in window}))},[o,b]);l6(function(){P()},[P]);var k=(0,Q0.useCallback)(function(N){m.current=N,P()},[P]);if(!r&&f!=="fixed"||!w)return null;var R=(0,K.jsx)("div",W({ref:k,css:g("menuPortal",{offset:w.offset,position:f,rect:w.rect}),className:s({"menu-portal":!0},i)},h),n);return(0,K.jsx)(wc.Provider,{value:C},r?(0,fc.createPortal)(R,r):R)},Ec=function(a){var r=a.isDisabled,n=a.isRtl;return{label:"container",direction:n?"rtl":void 0,pointerEvents:r?"none":void 0,position:"relative"}},Bm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps,h=a.isDisabled,v=a.isRtl;return(0,K.jsx)("div",W({css:o("container",a),className:i({"--is-disabled":h,"--is-rtl":v},n)},s),r)},Pc=function(a){var r=a.theme.spacing,n=a.isMulti,i=a.hasValue,o=a.selectProps.controlShouldRenderValue;return{alignItems:"center",display:n&&i&&o?"flex":"grid",flex:1,flexWrap:"wrap",padding:"".concat(r.baseUnit/2,"px ").concat(r.baseUnit*2,"px"),WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"}},Vm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.innerProps,s=a.isMulti,h=a.getStyles,v=a.hasValue;return(0,K.jsx)("div",W({css:h("valueContainer",a),className:i({"value-container":!0,"value-container--is-multi":s,"value-container--has-value":v},n)},o),r)},Tc=function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},Hm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.innerProps,s=a.getStyles;return(0,K.jsx)("div",W({css:s("indicatorsContainer",a),className:i({indicators:!0},n)},o),r)},dc,wm=["size"];var Am={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},Rc=function(a){var r=a.size,n=u1(a,wm);return(0,K.jsx)("svg",W({height:r,width:r,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:Am},n))},Fr=function(a){return(0,K.jsx)(Rc,W({size:20},a),(0,K.jsx)("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},kc=function(a){return(0,K.jsx)(Rc,W({size:20},a),(0,K.jsx)("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},Oc=function(a){var r=a.isFocused,n=a.theme,i=n.spacing.baseUnit,o=n.colors;return{label:"indicatorContainer",color:r?o.neutral60:o.neutral20,display:"flex",padding:i*2,transition:"color 150ms",":hover":{color:r?o.neutral80:o.neutral40}}},Nc=Oc,ym=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("dropdownIndicator",a),className:i({indicator:!0,"dropdown-indicator":!0},n)},s),r||(0,K.jsx)(kc,null))},Dc=Oc,_m=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("clearIndicator",a),className:i({indicator:!0,"clear-indicator":!0},n)},s),r||(0,K.jsx)(Fr,null))},Gc=function(a){var r=a.isDisabled,n=a.theme,i=n.spacing.baseUnit,o=n.colors;return{label:"indicatorSeparator",alignSelf:"stretch",backgroundColor:r?o.neutral10:o.neutral20,marginBottom:i*2,marginTop:i*2,width:1}},Lm=function(a){var r=a.className,n=a.cx,i=a.getStyles,o=a.innerProps;return(0,K.jsx)("span",W({},o,{css:i("indicatorSeparator",a),className:n({"indicator-separator":!0},r)}))},Fm=(0,K.keyframes)(dc||(dc=wr([` +`+o.stack}return{value:t,source:a,stack:i,digest:null}}function At(t,a,r){return{value:t,source:null,stack:r??null,digest:a??null}}function ua(t,a){try{console.error(a.value)}catch(r){setTimeout(function(){throw r})}}var Uf=typeof WeakMap=="function"?WeakMap:Map;function jo(t,a,r){r=X2(-1,r),r.tag=3,r.payload={element:null};var n=a.value;return r.callback=function(){c6||(c6=!0,za=n),ua(t,a)},r}function Uo(t,a,r){r=X2(-1,r),r.tag=3;var n=t.type.getDerivedStateFromError;if(typeof n=="function"){var i=a.value;r.payload=function(){return n(i)},r.callback=function(){ua(t,a)}}var o=t.stateNode;return o!==null&&typeof o.componentDidCatch=="function"&&(r.callback=function(){ua(t,a),typeof n!="function"&&(B1===null?B1=new Set([this]):B1.add(this));var s=a.stack;this.componentDidCatch(a.value,{componentStack:s!==null?s:""})}),r}function al(t,a,r){var n=t.pingCache;if(n===null){n=t.pingCache=new Uf;var i=new Set;n.set(a,i)}else i=n.get(a),i===void 0&&(i=new Set,n.set(a,i));i.has(r)||(i.add(r),t=op.bind(null,t,a,r),a.then(t,t))}function el(t){do{var a;if((a=t.tag===13)&&(a=t.memoizedState,a=a!==null?a.dehydrated!==null:!0),a)return t;t=t.return}while(t!==null);return null}function rl(t,a,r,n,i){return(t.mode&1)===0?(t===a?t.flags|=65536:(t.flags|=128,r.flags|=131072,r.flags&=-52805,r.tag===1&&(r.alternate===null?r.tag=17:(a=X2(-1,1),a.tag=2,C1(r,a,1))),r.lanes|=1),t):(t.flags|=65536,t.lanes=i,t)}var Yf=Q2.ReactCurrentOwner,H9=!1;function x9(t,a,r,n){a.child=t===null?wo(a,null,r,n):Q5(a,t.child,r,n)}function nl(t,a,r,n,i){r=r.render;var o=a.ref;return X5(a,i),n=Qa(t,a,r,n,o,i),r=$a(),t!==null&&!H9?(a.updateQueue=t.updateQueue,a.flags&=-2053,t.lanes&=~i,J2(t,a,i)):(I0&&r&&Ra(a),a.flags|=1,x9(t,a,n,i),a.child)}function il(t,a,r,n,i){if(t===null){var o=r.type;return typeof o=="function"&&!oe(o)&&o.defaultProps===void 0&&r.compare===null&&r.defaultProps===void 0?(a.tag=15,a.type=o,Yo(t,a,o,n,i)):(t=Z4(r.type,null,n,a,a.mode,i),t.ref=a.ref,t.return=a,a.child=t)}if(o=t.child,(t.lanes&i)===0){var s=o.memoizedProps;if(r=r.compare,r=r!==null?r:l8,r(s,n)&&t.ref===a.ref)return J2(t,a,i)}return a.flags|=1,t=H1(o,n),t.ref=a.ref,t.return=a,a.child=t}function Yo(t,a,r,n,i){if(t!==null){var o=t.memoizedProps;if(l8(o,n)&&t.ref===a.ref)if(H9=!1,a.pendingProps=n=o,(t.lanes&i)!==0)(t.flags&131072)!==0&&(H9=!0);else return a.lanes=t.lanes,J2(t,a,i)}return sa(t,a,r,n,i)}function Jo(t,a,r){var n=a.pendingProps,i=n.children,o=t!==null?t.memoizedState:null;if(n.mode==="hidden")if((a.mode&1)===0)a.memoizedState={baseLanes:0,cachePool:null,transitions:null},_0(N5,E9),E9|=r;else{if((r&1073741824)===0)return t=o!==null?o.baseLanes|r:r,a.lanes=a.childLanes=1073741824,a.memoizedState={baseLanes:t,cachePool:null,transitions:null},a.updateQueue=null,_0(N5,E9),E9|=t,null;a.memoizedState={baseLanes:0,cachePool:null,transitions:null},n=o!==null?o.baseLanes:r,_0(N5,E9),E9|=n}else o!==null?(n=o.baseLanes|r,a.memoizedState=null):n=r,_0(N5,E9),E9|=n;return x9(t,a,i,r),a.child}function Qo(t,a){var r=a.ref;(t===null&&r!==null||t!==null&&t.ref!==r)&&(a.flags|=512,a.flags|=2097152)}function sa(t,a,r,n,i){var o=A9(r)?J1:p9.current;return o=Y5(a,o),X5(a,i),r=Qa(t,a,r,n,o,i),n=$a(),t!==null&&!H9?(a.updateQueue=t.updateQueue,a.flags&=-2053,t.lanes&=~i,J2(t,a,i)):(I0&&n&&Ra(a),a.flags|=1,x9(t,a,r,i),a.child)}function ll(t,a,r,n,i){if(A9(r)){var o=!0;t6(a)}else o=!1;if(X5(a,i),a.stateNode===null)N4(t,a),Vo(a,r,n),oa(a,r,n,i),n=!0;else if(t===null){var s=a.stateNode,h=a.memoizedProps;s.props=h;var v=s.context,f=r.contextType;typeof f=="object"&&f!==null?f=t2(f):(f=A9(r)?J1:p9.current,f=Y5(a,f));var g=r.getDerivedStateFromProps,m=typeof g=="function"||typeof s.getSnapshotBeforeUpdate=="function";m||typeof s.UNSAFE_componentWillReceiveProps!="function"&&typeof s.componentWillReceiveProps!="function"||(h!==n||v!==f)&&$i(a,s,n,f),v1=!1;var z=a.memoizedState;s.state=z,i6(a,n,s,i),v=a.memoizedState,h!==n||z!==v||w9.current||v1?(typeof g=="function"&&(la(a,r,g,n),v=a.memoizedState),(h=v1||Qi(a,r,h,n,z,v,f))?(m||typeof s.UNSAFE_componentWillMount!="function"&&typeof s.componentWillMount!="function"||(typeof s.componentWillMount=="function"&&s.componentWillMount(),typeof s.UNSAFE_componentWillMount=="function"&&s.UNSAFE_componentWillMount()),typeof s.componentDidMount=="function"&&(a.flags|=4194308)):(typeof s.componentDidMount=="function"&&(a.flags|=4194308),a.memoizedProps=n,a.memoizedState=v),s.props=n,s.state=v,s.context=f,n=h):(typeof s.componentDidMount=="function"&&(a.flags|=4194308),n=!1)}else{s=a.stateNode,Co(t,a),h=a.memoizedProps,f=a.type===a.elementType?h:v2(a.type,h),s.props=f,m=a.pendingProps,z=s.context,v=r.contextType,typeof v=="object"&&v!==null?v=t2(v):(v=A9(r)?J1:p9.current,v=Y5(a,v));var H=r.getDerivedStateFromProps;(g=typeof H=="function"||typeof s.getSnapshotBeforeUpdate=="function")||typeof s.UNSAFE_componentWillReceiveProps!="function"&&typeof s.componentWillReceiveProps!="function"||(h!==m||z!==v)&&$i(a,s,n,v),v1=!1,z=a.memoizedState,s.state=z,i6(a,n,s,i);var y=a.memoizedState;h!==m||z!==y||w9.current||v1?(typeof H=="function"&&(la(a,r,H,n),y=a.memoizedState),(f=v1||Qi(a,r,f,n,z,y,v)||!1)?(g||typeof s.UNSAFE_componentWillUpdate!="function"&&typeof s.componentWillUpdate!="function"||(typeof s.componentWillUpdate=="function"&&s.componentWillUpdate(n,y,v),typeof s.UNSAFE_componentWillUpdate=="function"&&s.UNSAFE_componentWillUpdate(n,y,v)),typeof s.componentDidUpdate=="function"&&(a.flags|=4),typeof s.getSnapshotBeforeUpdate=="function"&&(a.flags|=1024)):(typeof s.componentDidUpdate!="function"||h===t.memoizedProps&&z===t.memoizedState||(a.flags|=4),typeof s.getSnapshotBeforeUpdate!="function"||h===t.memoizedProps&&z===t.memoizedState||(a.flags|=1024),a.memoizedProps=n,a.memoizedState=y),s.props=n,s.state=y,s.context=v,n=f):(typeof s.componentDidUpdate!="function"||h===t.memoizedProps&&z===t.memoizedState||(a.flags|=4),typeof s.getSnapshotBeforeUpdate!="function"||h===t.memoizedProps&&z===t.memoizedState||(a.flags|=1024),n=!1)}return ca(t,a,r,n,o,i)}function ca(t,a,r,n,i,o){Qo(t,a);var s=(a.flags&128)!==0;if(!n&&!s)return i&&Xi(a,r,!1),J2(t,a,o);n=a.stateNode,Yf.current=a;var h=s&&typeof r.getDerivedStateFromError!="function"?null:n.render();return a.flags|=1,t!==null&&s?(a.child=Q5(a,t.child,null,o),a.child=Q5(a,null,h,o)):x9(t,a,h,o),a.memoizedState=n.state,i&&Xi(a,r,!0),a.child}function $o(t){var a=t.stateNode;a.pendingContext?Wi(t,a.pendingContext,a.pendingContext!==a.context):a.context&&Wi(t,a.context,!1),ja(t,a.containerInfo)}function ol(t,a,r,n,i){return J5(),Na(i),a.flags|=256,x9(t,a,r,n),a.child}var ha={dehydrated:null,treeContext:null,retryLane:0};function va(t){return{baseLanes:t,cachePool:null,transitions:null}}function Ko(t,a,r){var n=a.pendingProps,i=k0.current,o=!1,s=(a.flags&128)!==0,h;if((h=s)||(h=t!==null&&t.memoizedState===null?!1:(i&2)!==0),h?(o=!0,a.flags&=-129):(t===null||t.memoizedState!==null)&&(i|=1),_0(k0,i&1),t===null)return na(a),t=a.memoizedState,t!==null&&(t=t.dehydrated,t!==null)?((a.mode&1)===0?a.lanes=1:t.data==="$!"?a.lanes=8:a.lanes=1073741824,null):(s=n.children,t=n.fallback,o?(n=a.mode,o=a.child,s={mode:"hidden",children:s},(n&1)===0&&o!==null?(o.childLanes=0,o.pendingProps=s):o=H6(s,n,0,null),t=Y1(t,n,r,null),o.return=a,t.return=a,o.sibling=t,a.child=o,a.child.memoizedState=va(r),a.memoizedState=ha,t):te(a,s));if(i=t.memoizedState,i!==null&&(h=i.dehydrated,h!==null))return Jf(t,a,s,n,h,i,r);if(o){o=n.fallback,s=a.mode,i=t.child,h=i.sibling;var v={mode:"hidden",children:n.children};return(s&1)===0&&a.child!==i?(n=a.child,n.childLanes=0,n.pendingProps=v,a.deletions=null):(n=H1(i,v),n.subtreeFlags=i.subtreeFlags&14680064),h!==null?o=H1(h,o):(o=Y1(o,s,r,null),o.flags|=2),o.return=a,n.return=a,n.sibling=o,a.child=n,n=o,o=a.child,s=t.child.memoizedState,s=s===null?va(r):{baseLanes:s.baseLanes|r,cachePool:null,transitions:s.transitions},o.memoizedState=s,o.childLanes=t.childLanes&~r,a.memoizedState=ha,n}return o=t.child,t=o.sibling,n=H1(o,{mode:"visible",children:n.children}),(a.mode&1)===0&&(n.lanes=r),n.return=a,n.sibling=null,t!==null&&(r=a.deletions,r===null?(a.deletions=[t],a.flags|=16):r.push(t)),a.child=n,a.memoizedState=null,n}function te(t,a){return a=H6({mode:"visible",children:a},t.mode,0,null),a.return=t,t.child=a}function S4(t,a,r,n){return n!==null&&Na(n),Q5(a,t.child,null,r),t=te(a,a.pendingProps.children),t.flags|=2,a.memoizedState=null,t}function Jf(t,a,r,n,i,o,s){if(r)return a.flags&256?(a.flags&=-257,n=At(Error(O(422))),S4(t,a,s,n)):a.memoizedState!==null?(a.child=t.child,a.flags|=128,null):(o=n.fallback,i=a.mode,n=H6({mode:"visible",children:n.children},i,0,null),o=Y1(o,i,s,null),o.flags|=2,n.return=a,o.return=a,n.sibling=o,a.child=n,(a.mode&1)!==0&&Q5(a,t.child,null,s),a.child.memoizedState=va(s),a.memoizedState=ha,o);if((a.mode&1)===0)return S4(t,a,s,null);if(i.data==="$!"){if(n=i.nextSibling&&i.nextSibling.dataset,n)var h=n.dgst;return n=h,o=Error(O(419)),n=At(o,n,void 0),S4(t,a,s,n)}if(h=(s&t.childLanes)!==0,H9||h){if(n=q0,n!==null){switch(s&-s){case 4:i=2;break;case 16:i=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:i=32;break;case 536870912:i=268435456;break;default:i=0}i=(i&(n.suspendedLanes|s))!==0?0:i,i!==0&&i!==o.retryLane&&(o.retryLane=i,Y2(t,i),g2(n,t,i,-1))}return le(),n=At(Error(O(421))),S4(t,a,s,n)}return i.data==="$?"?(a.flags|=128,a.child=t.child,a=up.bind(null,t),i._reactRetry=a,null):(t=o.treeContext,P9=M1(i.nextSibling),k9=a,I0=!0,f2=null,t!==null&&(Q9[$9++]=Z2,Q9[$9++]=W2,Q9[$9++]=Q1,Z2=t.id,W2=t.overflow,Q1=a),a=te(a,n.children),a.flags|=4096,a)}function ul(t,a,r){t.lanes|=a;var n=t.alternate;n!==null&&(n.lanes|=a),ia(t.return,a,r)}function yt(t,a,r,n,i){var o=t.memoizedState;o===null?t.memoizedState={isBackwards:a,rendering:null,renderingStartTime:0,last:n,tail:r,tailMode:i}:(o.isBackwards=a,o.rendering=null,o.renderingStartTime=0,o.last=n,o.tail=r,o.tailMode=i)}function qo(t,a,r){var n=a.pendingProps,i=n.revealOrder,o=n.tail;if(x9(t,a,n.children,r),n=k0.current,(n&2)!==0)n=n&1|2,a.flags|=128;else{if(t!==null&&(t.flags&128)!==0)t:for(t=a.child;t!==null;){if(t.tag===13)t.memoizedState!==null&&ul(t,r,a);else if(t.tag===19)ul(t,r,a);else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===a)break t;for(;t.sibling===null;){if(t.return===null||t.return===a)break t;t=t.return}t.sibling.return=t.return,t=t.sibling}n&=1}if(_0(k0,n),(a.mode&1)===0)a.memoizedState=null;else switch(i){case"forwards":for(r=a.child,i=null;r!==null;)t=r.alternate,t!==null&&l6(t)===null&&(i=r),r=r.sibling;r=i,r===null?(i=a.child,a.child=null):(i=r.sibling,r.sibling=null),yt(a,!1,i,r,o);break;case"backwards":for(r=null,i=a.child,a.child=null;i!==null;){if(t=i.alternate,t!==null&&l6(t)===null){a.child=i;break}t=i.sibling,i.sibling=r,r=i,i=t}yt(a,!0,r,null,o);break;case"together":yt(a,!1,null,null,void 0);break;default:a.memoizedState=null}return a.child}function N4(t,a){(a.mode&1)===0&&t!==null&&(t.alternate=null,a.alternate=null,a.flags|=2)}function J2(t,a,r){if(t!==null&&(a.dependencies=t.dependencies),K1|=a.lanes,(r&a.childLanes)===0)return null;if(t!==null&&a.child!==t.child)throw Error(O(153));if(a.child!==null){for(t=a.child,r=H1(t,t.pendingProps),a.child=r,r.return=a;t.sibling!==null;)t=t.sibling,r=r.sibling=H1(t,t.pendingProps),r.return=a;r.sibling=null}return a.child}function Qf(t,a,r){switch(a.tag){case 3:$o(a),J5();break;case 5:Ao(a);break;case 1:A9(a.type)&&t6(a);break;case 4:ja(a,a.stateNode.containerInfo);break;case 10:var n=a.type._context,i=a.memoizedProps.value;_0(r6,n._currentValue),n._currentValue=i;break;case 13:if(n=a.memoizedState,n!==null)return n.dehydrated!==null?(_0(k0,k0.current&1),a.flags|=128,null):(r&a.child.childLanes)!==0?Ko(t,a,r):(_0(k0,k0.current&1),t=J2(t,a,r),t!==null?t.sibling:null);_0(k0,k0.current&1);break;case 19:if(n=(r&a.childLanes)!==0,(t.flags&128)!==0){if(n)return qo(t,a,r);a.flags|=128}if(i=a.memoizedState,i!==null&&(i.rendering=null,i.tail=null,i.lastEffect=null),_0(k0,k0.current),n)break;return null;case 22:case 23:return a.lanes=0,Jo(t,a,r)}return J2(t,a,r)}var tu,da,au,eu;tu=function(t,a){for(var r=a.child;r!==null;){if(r.tag===5||r.tag===6)t.appendChild(r.stateNode);else if(r.tag!==4&&r.child!==null){r.child.return=r,r=r.child;continue}if(r===a)break;for(;r.sibling===null;){if(r.return===null||r.return===a)return;r=r.return}r.sibling.return=r.return,r=r.sibling}};da=function(){};au=function(t,a,r,n){var i=t.memoizedProps;if(i!==n){t=a.stateNode,j1(S2.current);var o=null;switch(r){case"input":i=Pt(t,i),n=Pt(t,n),o=[];break;case"select":i=R0({},i,{value:void 0}),n=R0({},n,{value:void 0}),o=[];break;case"textarea":i=Rt(t,i),n=Rt(t,n),o=[];break;default:typeof i.onClick!="function"&&typeof n.onClick=="function"&&(t.onclick=K4)}Nt(r,n);var s;r=null;for(f in i)if(!n.hasOwnProperty(f)&&i.hasOwnProperty(f)&&i[f]!=null)if(f==="style"){var h=i[f];for(s in h)h.hasOwnProperty(s)&&(r||(r={}),r[s]="")}else f!=="dangerouslySetInnerHTML"&&f!=="children"&&f!=="suppressContentEditableWarning"&&f!=="suppressHydrationWarning"&&f!=="autoFocus"&&(q3.hasOwnProperty(f)?o||(o=[]):(o=o||[]).push(f,null));for(f in n){var v=n[f];if(h=i?.[f],n.hasOwnProperty(f)&&v!==h&&(v!=null||h!=null))if(f==="style")if(h){for(s in h)!h.hasOwnProperty(s)||v&&v.hasOwnProperty(s)||(r||(r={}),r[s]="");for(s in v)v.hasOwnProperty(s)&&h[s]!==v[s]&&(r||(r={}),r[s]=v[s])}else r||(o||(o=[]),o.push(f,r)),r=v;else f==="dangerouslySetInnerHTML"?(v=v?v.__html:void 0,h=h?h.__html:void 0,v!=null&&h!==v&&(o=o||[]).push(f,v)):f==="children"?typeof v!="string"&&typeof v!="number"||(o=o||[]).push(f,""+v):f!=="suppressContentEditableWarning"&&f!=="suppressHydrationWarning"&&(q3.hasOwnProperty(f)?(v!=null&&f==="onScroll"&&F0("scroll",t),o||h===v||(o=[])):(o=o||[]).push(f,v))}r&&(o=o||[]).push("style",r);var f=o;(a.updateQueue=f)&&(a.flags|=4)}};eu=function(t,a,r,n){r!==n&&(a.flags|=4)};function T3(t,a){if(!I0)switch(t.tailMode){case"hidden":a=t.tail;for(var r=null;a!==null;)a.alternate!==null&&(r=a),a=a.sibling;r===null?t.tail=null:r.sibling=null;break;case"collapsed":r=t.tail;for(var n=null;r!==null;)r.alternate!==null&&(n=r),r=r.sibling;n===null?a||t.tail===null?t.tail=null:t.tail.sibling=null:n.sibling=null}}function d9(t){var a=t.alternate!==null&&t.alternate.child===t.child,r=0,n=0;if(a)for(var i=t.child;i!==null;)r|=i.lanes|i.childLanes,n|=i.subtreeFlags&14680064,n|=i.flags&14680064,i.return=t,i=i.sibling;else for(i=t.child;i!==null;)r|=i.lanes|i.childLanes,n|=i.subtreeFlags,n|=i.flags,i.return=t,i=i.sibling;return t.subtreeFlags|=n,t.childLanes=r,a}function $f(t,a,r){var n=a.pendingProps;switch(Oa(a),a.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return d9(a),null;case 1:return A9(a.type)&&q4(),d9(a),null;case 3:return n=a.stateNode,$5(),S0(w9),S0(p9),Ya(),n.pendingContext&&(n.context=n.pendingContext,n.pendingContext=null),(t===null||t.child===null)&&(L4(a)?a.flags|=4:t===null||t.memoizedState.isDehydrated&&(a.flags&256)===0||(a.flags|=1024,f2!==null&&(Ca(f2),f2=null))),da(t,a),d9(a),null;case 5:Ua(a);var i=j1(h8.current);if(r=a.type,t!==null&&a.stateNode!=null)au(t,a,r,n,i),t.ref!==a.ref&&(a.flags|=512,a.flags|=2097152);else{if(!n){if(a.stateNode===null)throw Error(O(166));return d9(a),null}if(t=j1(S2.current),L4(a)){n=a.stateNode,r=a.type;var o=a.memoizedProps;switch(n[L2]=a,n[s8]=o,t=(a.mode&1)!==0,r){case"dialog":F0("cancel",n),F0("close",n);break;case"iframe":case"object":case"embed":F0("load",n);break;case"video":case"audio":for(i=0;i<\/script>",t=t.removeChild(t.firstChild)):typeof n.is=="string"?t=s.createElement(r,{is:n.is}):(t=s.createElement(r),r==="select"&&(s=t,n.multiple?s.multiple=!0:n.size&&(s.size=n.size))):t=s.createElementNS(t,r),t[L2]=a,t[s8]=n,tu(t,a,!1,!1),a.stateNode=t;t:{switch(s=Dt(r,n),r){case"dialog":F0("cancel",t),F0("close",t),i=n;break;case"iframe":case"object":case"embed":F0("load",t),i=n;break;case"video":case"audio":for(i=0;iq5&&(a.flags|=128,n=!0,T3(o,!1),a.lanes=4194304)}else{if(!n)if(t=l6(s),t!==null){if(a.flags|=128,n=!0,r=t.updateQueue,r!==null&&(a.updateQueue=r,a.flags|=4),T3(o,!0),o.tail===null&&o.tailMode==="hidden"&&!s.alternate&&!I0)return d9(a),null}else 2*Z0()-o.renderingStartTime>q5&&r!==1073741824&&(a.flags|=128,n=!0,T3(o,!1),a.lanes=4194304);o.isBackwards?(s.sibling=a.child,a.child=s):(r=o.last,r!==null?r.sibling=s:a.child=s,o.last=s)}return o.tail!==null?(a=o.tail,o.rendering=a,o.tail=a.sibling,o.renderingStartTime=Z0(),a.sibling=null,r=k0.current,_0(k0,n?r&1|2:r&1),a):(d9(a),null);case 22:case 23:return ie(),n=a.memoizedState!==null,t!==null&&t.memoizedState!==null!==n&&(a.flags|=8192),n&&(a.mode&1)!==0?(E9&1073741824)!==0&&(d9(a),a.subtreeFlags&6&&(a.flags|=8192)):d9(a),null;case 24:return null;case 25:return null}throw Error(O(156,a.tag))}function Kf(t,a){switch(Oa(a),a.tag){case 1:return A9(a.type)&&q4(),t=a.flags,t&65536?(a.flags=t&-65537|128,a):null;case 3:return $5(),S0(w9),S0(p9),Ya(),t=a.flags,(t&65536)!==0&&(t&128)===0?(a.flags=t&-65537|128,a):null;case 5:return Ua(a),null;case 13:if(S0(k0),t=a.memoizedState,t!==null&&t.dehydrated!==null){if(a.alternate===null)throw Error(O(340));J5()}return t=a.flags,t&65536?(a.flags=t&-65537|128,a):null;case 19:return S0(k0),null;case 4:return $5(),null;case 10:return Za(a.type._context),null;case 22:case 23:return ie(),null;case 24:return null;default:return null}}var b4=!1,f9=!1,qf=typeof WeakSet=="function"?WeakSet:Set,G=null;function O5(t,a){var r=t.ref;if(r!==null)if(typeof r=="function")try{r(null)}catch(n){N0(t,a,n)}else r.current=null}function fa(t,a,r){try{r()}catch(n){N0(t,a,n)}}var sl=!1;function tp(t,a){if($t=J4,t=io(),Ta(t)){if("selectionStart"in t)var r={start:t.selectionStart,end:t.selectionEnd};else t:{r=(r=t.ownerDocument)&&r.defaultView||window;var n=r.getSelection&&r.getSelection();if(n&&n.rangeCount!==0){r=n.anchorNode;var i=n.anchorOffset,o=n.focusNode;n=n.focusOffset;try{r.nodeType,o.nodeType}catch{r=null;break t}var s=0,h=-1,v=-1,f=0,g=0,m=t,z=null;a:for(;;){for(var H;m!==r||i!==0&&m.nodeType!==3||(h=s+i),m!==o||n!==0&&m.nodeType!==3||(v=s+n),m.nodeType===3&&(s+=m.nodeValue.length),(H=m.firstChild)!==null;)z=m,m=H;for(;;){if(m===t)break a;if(z===r&&++f===i&&(h=s),z===o&&++g===n&&(v=s),(H=m.nextSibling)!==null)break;m=z,z=m.parentNode}m=H}r=h===-1||v===-1?null:{start:h,end:v}}else r=null}r=r||{start:0,end:0}}else r=null;for(Kt={focusedElem:t,selectionRange:r},J4=!1,G=a;G!==null;)if(a=G,t=a.child,(a.subtreeFlags&1028)!==0&&t!==null)t.return=a,G=t;else for(;G!==null;){a=G;try{var y=a.alternate;if((a.flags&1024)!==0)switch(a.tag){case 0:case 11:case 15:break;case 1:if(y!==null){var F=y.memoizedProps,I=y.memoizedState,C=a.stateNode,M=C.getSnapshotBeforeUpdate(a.elementType===a.type?F:v2(a.type,F),I);C.__reactInternalSnapshotBeforeUpdate=M}break;case 3:var V=a.stateNode.containerInfo;V.nodeType===1?V.textContent="":V.nodeType===9&&V.documentElement&&V.removeChild(V.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(O(163))}}catch(w){N0(a,a.return,w)}if(t=a.sibling,t!==null){t.return=a.return,G=t;break}G=a.return}return y=sl,sl=!1,y}function Q3(t,a,r){var n=a.updateQueue;if(n=n!==null?n.lastEffect:null,n!==null){var i=n=n.next;do{if((i.tag&t)===t){var o=i.destroy;i.destroy=void 0,o!==void 0&&fa(a,r,o)}i=i.next}while(i!==n)}}function B6(t,a){if(a=a.updateQueue,a=a!==null?a.lastEffect:null,a!==null){var r=a=a.next;do{if((r.tag&t)===t){var n=r.create;r.destroy=n()}r=r.next}while(r!==a)}}function pa(t){var a=t.ref;if(a!==null){var r=t.stateNode;switch(t.tag){case 5:t=r;break;default:t=r}typeof a=="function"?a(t):a.current=t}}function ru(t){var a=t.alternate;a!==null&&(t.alternate=null,ru(a)),t.child=null,t.deletions=null,t.sibling=null,t.tag===5&&(a=t.stateNode,a!==null&&(delete a[L2],delete a[s8],delete a[aa],delete a[kf],delete a[Tf])),t.stateNode=null,t.return=null,t.dependencies=null,t.memoizedProps=null,t.memoizedState=null,t.pendingProps=null,t.stateNode=null,t.updateQueue=null}function nu(t){return t.tag===5||t.tag===3||t.tag===4}function cl(t){t:for(;;){for(;t.sibling===null;){if(t.return===null||nu(t.return))return null;t=t.return}for(t.sibling.return=t.return,t=t.sibling;t.tag!==5&&t.tag!==6&&t.tag!==18;){if(t.flags&2||t.child===null||t.tag===4)continue t;t.child.return=t,t=t.child}if(!(t.flags&2))return t.stateNode}}function ga(t,a,r){var n=t.tag;if(n===5||n===6)t=t.stateNode,a?r.nodeType===8?r.parentNode.insertBefore(t,a):r.insertBefore(t,a):(r.nodeType===8?(a=r.parentNode,a.insertBefore(t,r)):(a=r,a.appendChild(t)),r=r._reactRootContainer,r!=null||a.onclick!==null||(a.onclick=K4));else if(n!==4&&(t=t.child,t!==null))for(ga(t,a,r),t=t.sibling;t!==null;)ga(t,a,r),t=t.sibling}function ma(t,a,r){var n=t.tag;if(n===5||n===6)t=t.stateNode,a?r.insertBefore(t,a):r.appendChild(t);else if(n!==4&&(t=t.child,t!==null))for(ma(t,a,r),t=t.sibling;t!==null;)ma(t,a,r),t=t.sibling}var i9=null,d2=!1;function c1(t,a,r){for(r=r.child;r!==null;)iu(t,a,r),r=r.sibling}function iu(t,a,r){if(F2&&typeof F2.onCommitFiberUnmount=="function")try{F2.onCommitFiberUnmount(f6,r)}catch{}switch(r.tag){case 5:f9||O5(r,a);case 6:var n=i9,i=d2;i9=null,c1(t,a,r),i9=n,d2=i,i9!==null&&(d2?(t=i9,r=r.stateNode,t.nodeType===8?t.parentNode.removeChild(r):t.removeChild(r)):i9.removeChild(r.stateNode));break;case 18:i9!==null&&(d2?(t=i9,r=r.stateNode,t.nodeType===8?Mt(t.parentNode,r):t.nodeType===1&&Mt(t,r),n8(t)):Mt(i9,r.stateNode));break;case 4:n=i9,i=d2,i9=r.stateNode.containerInfo,d2=!0,c1(t,a,r),i9=n,d2=i;break;case 0:case 11:case 14:case 15:if(!f9&&(n=r.updateQueue,n!==null&&(n=n.lastEffect,n!==null))){i=n=n.next;do{var o=i,s=o.destroy;o=o.tag,s!==void 0&&((o&2)!==0||(o&4)!==0)&&fa(r,a,s),i=i.next}while(i!==n)}c1(t,a,r);break;case 1:if(!f9&&(O5(r,a),n=r.stateNode,typeof n.componentWillUnmount=="function"))try{n.props=r.memoizedProps,n.state=r.memoizedState,n.componentWillUnmount()}catch(h){N0(r,a,h)}c1(t,a,r);break;case 21:c1(t,a,r);break;case 22:r.mode&1?(f9=(n=f9)||r.memoizedState!==null,c1(t,a,r),f9=n):c1(t,a,r);break;default:c1(t,a,r)}}function hl(t){var a=t.updateQueue;if(a!==null){t.updateQueue=null;var r=t.stateNode;r===null&&(r=t.stateNode=new qf),a.forEach(function(n){var i=sp.bind(null,t,n);r.has(n)||(r.add(n),n.then(i,i))})}}function h2(t,a){var r=a.deletions;if(r!==null)for(var n=0;ni&&(i=s),n&=~o}if(n=i,n=Z0()-n,n=(120>n?120:480>n?480:1080>n?1080:1920>n?1920:3e3>n?3e3:4320>n?4320:1960*ep(n/1960))-n,10t?16:t,g1===null)var n=!1;else{if(t=g1,g1=null,h6=0,(z0&6)!==0)throw Error(O(331));var i=z0;for(z0|=4,G=t.current;G!==null;){var o=G,s=o.child;if((G.flags&16)!==0){var h=o.deletions;if(h!==null){for(var v=0;vZ0()-re?U1(t,0):ee|=r),y9(t,a)}function du(t,a){a===0&&((t.mode&1)===0?a=1:(a=x4,x4<<=1,(x4&130023424)===0&&(x4=4194304)));var r=M9();t=Y2(t,a),t!==null&&(g8(t,a,r),y9(t,r))}function up(t){var a=t.memoizedState,r=0;a!==null&&(r=a.retryLane),du(t,r)}function sp(t,a){var r=0;switch(t.tag){case 13:var n=t.stateNode,i=t.memoizedState;i!==null&&(r=i.retryLane);break;case 19:n=t.stateNode;break;default:throw Error(O(314))}n!==null&&n.delete(a),du(t,r)}var fu;fu=function(t,a,r){if(t!==null)if(t.memoizedProps!==a.pendingProps||w9.current)H9=!0;else{if((t.lanes&r)===0&&(a.flags&128)===0)return H9=!1,Qf(t,a,r);H9=(t.flags&131072)!==0}else H9=!1,I0&&(a.flags&1048576)!==0&&mo(a,e6,a.index);switch(a.lanes=0,a.tag){case 2:var n=a.type;N4(t,a),t=a.pendingProps;var i=Y5(a,p9.current);X5(a,r),i=Qa(null,a,n,t,i,r);var o=$a();return a.flags|=1,typeof i=="object"&&i!==null&&typeof i.render=="function"&&i.$$typeof===void 0?(a.tag=1,a.memoizedState=null,a.updateQueue=null,A9(n)?(o=!0,t6(a)):o=!1,a.memoizedState=i.state!==null&&i.state!==void 0?i.state:null,Xa(a),i.updater=M6,a.stateNode=i,i._reactInternals=a,oa(a,n,t,r),a=ca(null,a,n,!0,o,r)):(a.tag=0,I0&&o&&Ra(a),x9(null,a,i,r),a=a.child),a;case 16:n=a.elementType;t:{switch(N4(t,a),t=a.pendingProps,i=n._init,n=i(n._payload),a.type=n,i=a.tag=hp(n),t=v2(n,t),i){case 0:a=sa(null,a,n,t,r);break t;case 1:a=ll(null,a,n,t,r);break t;case 11:a=nl(null,a,n,t,r);break t;case 14:a=il(null,a,n,v2(n.type,t),r);break t}throw Error(O(306,n,""))}return a;case 0:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),sa(t,a,n,i,r);case 1:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),ll(t,a,n,i,r);case 3:t:{if($o(a),t===null)throw Error(O(387));n=a.pendingProps,o=a.memoizedState,i=o.element,Co(t,a),i6(a,n,null,r);var s=a.memoizedState;if(n=s.element,o.isDehydrated)if(o={element:n,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},a.updateQueue.baseState=o,a.memoizedState=o,a.flags&256){i=K5(Error(O(423)),a),a=ol(t,a,n,r,i);break t}else if(n!==i){i=K5(Error(O(424)),a),a=ol(t,a,n,r,i);break t}else for(P9=M1(a.stateNode.containerInfo.firstChild),k9=a,I0=!0,f2=null,r=wo(a,null,n,r),a.child=r;r;)r.flags=r.flags&-3|4096,r=r.sibling;else{if(J5(),n===i){a=J2(t,a,r);break t}x9(t,a,n,r)}a=a.child}return a;case 5:return Ao(a),t===null&&na(a),n=a.type,i=a.pendingProps,o=t!==null?t.memoizedProps:null,s=i.children,qt(n,i)?s=null:o!==null&&qt(n,o)&&(a.flags|=32),Qo(t,a),x9(t,a,s,r),a.child;case 6:return t===null&&na(a),null;case 13:return Ko(t,a,r);case 4:return ja(a,a.stateNode.containerInfo),n=a.pendingProps,t===null?a.child=Q5(a,null,n,r):x9(t,a,n,r),a.child;case 11:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),nl(t,a,n,i,r);case 7:return x9(t,a,a.pendingProps,r),a.child;case 8:return x9(t,a,a.pendingProps.children,r),a.child;case 12:return x9(t,a,a.pendingProps.children,r),a.child;case 10:t:{if(n=a.type._context,i=a.pendingProps,o=a.memoizedProps,s=i.value,_0(r6,n._currentValue),n._currentValue=s,o!==null)if(m2(o.value,s)){if(o.children===i.children&&!w9.current){a=J2(t,a,r);break t}}else for(o=a.child,o!==null&&(o.return=a);o!==null;){var h=o.dependencies;if(h!==null){s=o.child;for(var v=h.firstContext;v!==null;){if(v.context===n){if(o.tag===1){v=X2(-1,r&-r),v.tag=2;var f=o.updateQueue;if(f!==null){f=f.shared;var g=f.pending;g===null?v.next=v:(v.next=g.next,g.next=v),f.pending=v}}o.lanes|=r,v=o.alternate,v!==null&&(v.lanes|=r),ia(o.return,r,a),h.lanes|=r;break}v=v.next}}else if(o.tag===10)s=o.type===a.type?null:o.child;else if(o.tag===18){if(s=o.return,s===null)throw Error(O(341));s.lanes|=r,h=s.alternate,h!==null&&(h.lanes|=r),ia(s,r,a),s=o.sibling}else s=o.child;if(s!==null)s.return=o;else for(s=o;s!==null;){if(s===a){s=null;break}if(o=s.sibling,o!==null){o.return=s.return,s=o;break}s=s.return}o=s}x9(t,a,i.children,r),a=a.child}return a;case 9:return i=a.type,n=a.pendingProps.children,X5(a,r),i=t2(i),n=n(i),a.flags|=1,x9(t,a,n,r),a.child;case 14:return n=a.type,i=v2(n,a.pendingProps),i=v2(n.type,i),il(t,a,n,i,r);case 15:return Yo(t,a,a.type,a.pendingProps,r);case 17:return n=a.type,i=a.pendingProps,i=a.elementType===n?i:v2(n,i),N4(t,a),a.tag=1,A9(n)?(t=!0,t6(a)):t=!1,X5(a,r),Vo(a,n,i),oa(a,n,i,r),ca(null,a,n,!0,t,r);case 19:return qo(t,a,r);case 22:return Jo(t,a,r)}throw Error(O(156,a.tag))};function pu(t,a){return Nl(t,a)}function cp(t,a,r,n){this.tag=t,this.key=r,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=a,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=n,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function K9(t,a,r,n){return new cp(t,a,r,n)}function oe(t){return t=t.prototype,!(!t||!t.isReactComponent)}function hp(t){if(typeof t=="function")return oe(t)?1:0;if(t!=null){if(t=t.$$typeof,t===Aa)return 11;if(t===ya)return 14}return 2}function H1(t,a){var r=t.alternate;return r===null?(r=K9(t.tag,a,t.key,t.mode),r.elementType=t.elementType,r.type=t.type,r.stateNode=t.stateNode,r.alternate=t,t.alternate=r):(r.pendingProps=a,r.type=t.type,r.flags=0,r.subtreeFlags=0,r.deletions=null),r.flags=t.flags&14680064,r.childLanes=t.childLanes,r.lanes=t.lanes,r.child=t.child,r.memoizedProps=t.memoizedProps,r.memoizedState=t.memoizedState,r.updateQueue=t.updateQueue,a=t.dependencies,r.dependencies=a===null?null:{lanes:a.lanes,firstContext:a.firstContext},r.sibling=t.sibling,r.index=t.index,r.ref=t.ref,r}function Z4(t,a,r,n,i,o){var s=2;if(n=t,typeof t=="function")oe(t)&&(s=1);else if(typeof t=="string")s=5;else t:switch(t){case F5:return Y1(r.children,i,o,a);case wa:s=8,i|=8;break;case St:return t=K9(12,r,a,i|2),t.elementType=St,t.lanes=o,t;case bt:return t=K9(13,r,a,i),t.elementType=bt,t.lanes=o,t;case It:return t=K9(19,r,a,i),t.elementType=It,t.lanes=o,t;case Vl:return H6(r,i,o,a);default:if(typeof t=="object"&&t!==null)switch(t.$$typeof){case Cl:s=10;break t;case Bl:s=9;break t;case Aa:s=11;break t;case ya:s=14;break t;case h1:s=16,n=null;break t}throw Error(O(130,t==null?t:typeof t,""))}return a=K9(s,r,a,i),a.elementType=t,a.type=n,a.lanes=o,a}function Y1(t,a,r,n){return t=K9(7,t,n,a),t.lanes=r,t}function H6(t,a,r,n){return t=K9(22,t,n,a),t.elementType=Vl,t.lanes=r,t.stateNode={isHidden:!1},t}function _t(t,a,r){return t=K9(6,t,null,a),t.lanes=r,t}function Lt(t,a,r){return a=K9(4,t.children!==null?t.children:[],t.key,a),a.lanes=r,a.stateNode={containerInfo:t.containerInfo,pendingChildren:null,implementation:t.implementation},a}function vp(t,a,r,n,i){this.tag=a,this.containerInfo=t,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=vt(0),this.expirationTimes=vt(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=vt(0),this.identifierPrefix=n,this.onRecoverableError=i,this.mutableSourceEagerHydrationData=null}function ue(t,a,r,n,i,o,s,h,v){return t=new vp(t,a,r,h,v),a===1?(a=1,o===!0&&(a|=8)):a=0,o=K9(3,null,null,a),t.current=o,o.stateNode=t,o.memoizedState={element:n,isDehydrated:r,cache:null,transitions:null,pendingSuspenseBoundaries:null},Xa(o),t}function dp(t,a,r){var n=3{"use strict";function Mu(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>"u"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!="function"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Mu)}catch(t){console.error(t)}}Mu(),Cu.exports=xu()});var Vu=s0(ve=>{"use strict";var Bu=e5();ve.createRoot=Bu.createRoot,ve.hydrateRoot=Bu.hydrateRoot;var hx});var q2=s0((I6,Lu)=>{(function(t,a){typeof I6=="object"&&typeof Lu<"u"?a(I6):typeof define=="function"&&define.amd?define(["exports"],a):(t=typeof globalThis<"u"?globalThis:t||self,a(t.leaflet={}))})(I6,function(t){"use strict";var a="1.9.2";function r(e){var l,u,c,d;for(u=1,c=arguments.length;u"u"||!L||!L.Mixin)){e=C(e)?e:[e];for(var l=0;l0?Math.floor(e):Math.ceil(e)};U.prototype={clone:function(){return new U(this.x,this.y)},add:function(e){return this.clone()._add(X(e))},_add:function(e){return this.x+=e.x,this.y+=e.y,this},subtract:function(e){return this.clone()._subtract(X(e))},_subtract:function(e){return this.x-=e.x,this.y-=e.y,this},divideBy:function(e){return this.clone()._divideBy(e)},_divideBy:function(e){return this.x/=e,this.y/=e,this},multiplyBy:function(e){return this.clone()._multiplyBy(e)},_multiplyBy:function(e){return this.x*=e,this.y*=e,this},scaleBy:function(e){return new U(this.x*e.x,this.y*e.y)},unscaleBy:function(e){return new U(this.x/e.x,this.y/e.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=O0(this.x),this.y=O0(this.y),this},distanceTo:function(e){e=X(e);var l=e.x-this.x,u=e.y-this.y;return Math.sqrt(l*l+u*u)},equals:function(e){return e=X(e),e.x===this.x&&e.y===this.y},contains:function(e){return e=X(e),Math.abs(e.x)<=Math.abs(this.x)&&Math.abs(e.y)<=Math.abs(this.y)},toString:function(){return"Point("+g(this.x)+", "+g(this.y)+")"}};function X(e,l,u){return e instanceof U?e:C(e)?new U(e[0],e[1]):e==null?e:typeof e=="object"&&"x"in e&&"y"in e?new U(e.x,e.y):new U(e,l,u)}function p0(e,l){if(!!e)for(var u=l?[e,l]:e,c=0,d=u.length;c=this.min.x&&u.x<=this.max.x&&l.y>=this.min.y&&u.y<=this.max.y},intersects:function(e){e=w0(e);var l=this.min,u=this.max,c=e.min,d=e.max,p=d.x>=l.x&&c.x<=u.x,B=d.y>=l.y&&c.y<=u.y;return p&&B},overlaps:function(e){e=w0(e);var l=this.min,u=this.max,c=e.min,d=e.max,p=d.x>l.x&&c.xl.y&&c.y=l.lat&&d.lat<=u.lat&&c.lng>=l.lng&&d.lng<=u.lng},intersects:function(e){e=a0(e);var l=this._southWest,u=this._northEast,c=e.getSouthWest(),d=e.getNorthEast(),p=d.lat>=l.lat&&c.lat<=u.lat,B=d.lng>=l.lng&&c.lng<=u.lng;return p&&B},overlaps:function(e){e=a0(e);var l=this._southWest,u=this._northEast,c=e.getSouthWest(),d=e.getNorthEast(),p=d.lat>l.lat&&c.latl.lng&&c.lng1,I9=function(){var e=!1;try{var l=Object.defineProperty({},"passive",{get:function(){e=!0}});window.addEventListener("testPassiveEventSupport",f,l),window.removeEventListener("testPassiveEventSupport",f,l)}catch{}return e}(),c9=function(){return!!document.createElement("canvas").getContext}(),W9=!!(document.createElementNS&&P2("svg").createSVGRect),m5=!!W9&&function(){var e=document.createElement("div");return e.innerHTML="",(e.firstChild&&e.firstChild.namespaceURI)==="http://www.w3.org/2000/svg"}(),T2=!W9&&function(){try{var e=document.createElement("div");e.innerHTML='';var l=e.firstChild;return l.style.behavior="url(#default#VML)",l&&typeof l.adj=="object"}catch{return!1}}(),X9=navigator.platform.indexOf("Mac")===0,L0=navigator.platform.indexOf("Linux")===0;function B2(e){return navigator.userAgent.toLowerCase().indexOf(e)>=0}var Y={ie:h5,ielt9:I1,edge:v5,webkit:d5,android:f5,android23:p5,androidStock:M7,opera:p3,chrome:N8,gecko:D8,safari:C7,phantom:x,opera12:Z,win:Q,ie3d:r0,webkit3d:l0,gecko3d:s9,any3d:S9,mobile:D0,mobileWebkit:M2,mobileWebkit3d:i2,msPointer:l2,pointer:r9,touch:i1,touchNative:C2,mobileOpera:o2,mobileGecko:b9,retina:g5,passiveEvents:I9,canvas:c9,svg:W9,vml:T2,inlineSvg:m5,mac:X9,linux:L0},jr=Y.msPointer?"MSPointerDown":"pointerdown",Ur=Y.msPointer?"MSPointerMove":"pointermove",Yr=Y.msPointer?"MSPointerUp":"pointerup",Jr=Y.msPointer?"MSPointerCancel":"pointercancel",B7={touchstart:jr,touchmove:Ur,touchend:Yr,touchcancel:Jr},Qr={touchstart:Jh,touchmove:G8,touchend:G8,touchcancel:G8},z5={},$r=!1;function Wh(e,l,u){return l==="touchstart"&&Yh(),Qr[l]?(u=Qr[l].bind(this,u),e.addEventListener(B7[l],u,!1),u):(console.warn("wrong event specified:",l),L.Util.falseFn)}function Xh(e,l,u){if(!B7[l]){console.warn("wrong event specified:",l);return}e.removeEventListener(B7[l],u,!1)}function jh(e){z5[e.pointerId]=e}function Uh(e){z5[e.pointerId]&&(z5[e.pointerId]=e)}function Kr(e){delete z5[e.pointerId]}function Yh(){$r||(document.addEventListener(jr,jh,!0),document.addEventListener(Ur,Uh,!0),document.addEventListener(Yr,Kr,!0),document.addEventListener(Jr,Kr,!0),$r=!0)}function G8(e,l){if(l.pointerType!==(l.MSPOINTER_TYPE_MOUSE||"mouse")){l.touches=[];for(var u in z5)l.touches.push(z5[u]);l.changedTouches=[l],e(l)}}function Jh(e,l){l.MSPOINTER_TYPE_TOUCH&&l.pointerType===l.MSPOINTER_TYPE_TOUCH&&n9(l),G8(e,l)}function Qh(e){var l={},u,c;for(c in e)u=e[c],l[c]=u&&u.bind?u.bind(e):u;return e=l,l.type="dblclick",l.detail=2,l.isTrusted=!1,l._simulated=!0,l}var $h=200;function Kh(e,l){e.addEventListener("dblclick",l);var u=0,c;function d(p){if(p.detail!==1){c=p.detail;return}if(!(p.pointerType==="mouse"||p.sourceCapabilities&&!p.sourceCapabilities.firesTouchEvents)){var B=rn(p);if(!(B.some(function(_){return _ instanceof HTMLLabelElement&&_.attributes.for})&&!B.some(function(_){return _ instanceof HTMLInputElement||_ instanceof HTMLSelectElement}))){var A=Date.now();A-u<=$h?(c++,c===2&&l(Qh(p))):c=1,u=A}}}return e.addEventListener("click",d),{dblclick:l,simDblclick:d}}function qh(e,l){e.removeEventListener("dblclick",l.dblclick),e.removeEventListener("click",l.simDblclick)}var V7=X8(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),g3=X8(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),qr=g3==="webkitTransition"||g3==="OTransition"?g3+"End":"transitionend";function tn(e){return typeof e=="string"?document.getElementById(e):e}function m3(e,l){var u=e.style[l]||e.currentStyle&&e.currentStyle[l];if((!u||u==="auto")&&document.defaultView){var c=document.defaultView.getComputedStyle(e,null);u=c?c[l]:null}return u==="auto"?null:u}function x0(e,l,u){var c=document.createElement(e);return c.className=l||"",u&&u.appendChild(c),c}function P0(e){var l=e.parentNode;l&&l.removeChild(e)}function Z8(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function x5(e){var l=e.parentNode;l&&l.lastChild!==e&&l.appendChild(e)}function M5(e){var l=e.parentNode;l&&l.firstChild!==e&&l.insertBefore(e,l.firstChild)}function H7(e,l){if(e.classList!==void 0)return e.classList.contains(l);var u=W8(e);return u.length>0&&new RegExp("(^|\\s)"+l+"(\\s|$)").test(u)}function o0(e,l){if(e.classList!==void 0)for(var u=z(l),c=0,d=u.length;c0?2*window.devicePixelRatio:1;function ln(e){return Y.edge?e.wheelDeltaY/2:e.deltaY&&e.deltaMode===0?-e.deltaY/ev:e.deltaY&&e.deltaMode===1?-e.deltaY*20:e.deltaY&&e.deltaMode===2?-e.deltaY*60:e.deltaX||e.deltaZ?0:e.wheelDelta?(e.wheelDeltaY||e.wheelDelta)/2:e.detail&&Math.abs(e.detail)<32765?-e.detail*20:e.detail?e.detail/-32765*60:0}function k7(e,l){var u=l.relatedTarget;if(!u)return!0;try{for(;u&&u!==e;)u=u.parentNode}catch{return!1}return u!==e}var rv={__proto__:null,on:e0,off:A0,stopPropagation:k1,disableScrollPropagation:P7,disableClickPropagation:C3,preventDefault:n9,stop:T1,getPropagationPath:rn,getMousePosition:nn,getWheelDelta:ln,isExternalTarget:k7,addListener:e0,removeListener:A0},on=m0.extend({run:function(e,l,u,c){this.stop(),this._el=e,this._inProgress=!0,this._duration=u||.25,this._easeOutPower=1/Math.max(c||.5,.2),this._startPos=P1(e),this._offset=l.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=T(this._animate,this),this._step()},_step:function(e){var l=+new Date-this._startTime,u=this._duration*1e3;lthis.options.maxZoom)?this.setZoom(e):this},panInsideBounds:function(e,l){this._enforcingBounds=!0;var u=this.getCenter(),c=this._limitCenter(u,this._zoom,a0(e));return u.equals(c)||this.panTo(c,l),this._enforcingBounds=!1,this},panInside:function(e,l){l=l||{};var u=X(l.paddingTopLeft||l.padding||[0,0]),c=X(l.paddingBottomRight||l.padding||[0,0]),d=this.project(this.getCenter()),p=this.project(e),B=this.getPixelBounds(),A=w0([B.min.add(u),B.max.subtract(c)]),_=A.getSize();if(!A.contains(p)){this._enforcingBounds=!0;var k=p.subtract(A.getCenter()),D=A.extend(p).getSize().subtract(_);d.x+=k.x<0?-D.x:D.x,d.y+=k.y<0?-D.y:D.y,this.panTo(this.unproject(d),l),this._enforcingBounds=!1}return this},invalidateSize:function(e){if(!this._loaded)return this;e=r({animate:!1,pan:!0},e===!0?{animate:!0}:e);var l=this.getSize();this._sizeChanged=!0,this._lastCenter=null;var u=this.getSize(),c=l.divideBy(2).round(),d=u.divideBy(2).round(),p=c.subtract(d);return!p.x&&!p.y?this:(e.animate&&e.pan?this.panBy(p):(e.pan&&this._rawPanBy(p),this.fire("move"),e.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(i(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:l,newSize:u}))},stop:function(){return this.setZoom(this._limitZoom(this._zoom)),this.options.zoomSnap||this.fire("viewreset"),this._stop()},locate:function(e){if(e=this._locateOptions=r({timeout:1e4,watch:!1},e),!("geolocation"in navigator))return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var l=i(this._handleGeolocationResponse,this),u=i(this._handleGeolocationError,this);return e.watch?this._locationWatchId=navigator.geolocation.watchPosition(l,u,e):navigator.geolocation.getCurrentPosition(l,u,e),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(e){if(!!this._container._leaflet_id){var l=e.code,u=e.message||(l===1?"permission denied":l===2?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:l,message:"Geolocation error: "+u+"."})}},_handleGeolocationResponse:function(e){if(!!this._container._leaflet_id){var l=e.coords.latitude,u=e.coords.longitude,c=new $(l,u),d=c.toBounds(e.coords.accuracy*2),p=this._locateOptions;if(p.setView){var B=this.getBoundsZoom(d);this.setView(c,p.maxZoom?Math.min(B,p.maxZoom):B)}var A={latlng:c,bounds:d,timestamp:e.timestamp};for(var _ in e.coords)typeof e.coords[_]=="number"&&(A[_]=e.coords[_]);this.fire("locationfound",A)}},addHandler:function(e,l){if(!l)return this;var u=this[e]=new l(this);return this._handlers.push(u),this.options[e]&&u.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{this._container._leaflet_id=void 0,this._containerId=void 0}this._locationWatchId!==void 0&&this.stopLocate(),this._stop(),P0(this._mapPane),this._clearControlPos&&this._clearControlPos(),this._resizeRequest&&(N(this._resizeRequest),this._resizeRequest=null),this._clearHandlers(),this._loaded&&this.fire("unload");var e;for(e in this._layers)this._layers[e].remove();for(e in this._panes)P0(this._panes[e]);return this._layers=[],this._panes=[],delete this._mapPane,delete this._renderer,this},createPane:function(e,l){var u="leaflet-pane"+(e?" leaflet-"+e.replace("Pane","")+"-pane":""),c=x0("div",u,l||this._mapPane);return e&&(this._panes[e]=c),c},getCenter:function(){return this._checkIfLoaded(),this._lastCenter&&!this._moved()?this._lastCenter.clone():this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var e=this.getPixelBounds(),l=this.unproject(e.getBottomLeft()),u=this.unproject(e.getTopRight());return new d0(l,u)},getMinZoom:function(){return this.options.minZoom===void 0?this._layersMinZoom||0:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===void 0?this._layersMaxZoom===void 0?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(e,l,u){e=a0(e),u=X(u||[0,0]);var c=this.getZoom()||0,d=this.getMinZoom(),p=this.getMaxZoom(),B=e.getNorthWest(),A=e.getSouthEast(),_=this.getSize().subtract(u),k=w0(this.project(A,c),this.project(B,c)).getSize(),D=Y.any3d?this.options.zoomSnap:1,q=_.x/k.x,n0=_.y/k.y,Y9=l?Math.max(q,n0):Math.min(q,n0);return c=this.getScaleZoom(Y9,c),D&&(c=Math.round(c/(D/100))*(D/100),c=l?Math.ceil(c/D)*D:Math.floor(c/D)*D),Math.max(d,Math.min(p,c))},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new U(this._container.clientWidth||0,this._container.clientHeight||0),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(e,l){var u=this._getTopLeftPoint(e,l);return new p0(u,u.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._pixelOrigin},getPixelWorldBounds:function(e){return this.options.crs.getProjectedBounds(e===void 0?this.getZoom():e)},getPane:function(e){return typeof e=="string"?this._panes[e]:e},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(e,l){var u=this.options.crs;return l=l===void 0?this._zoom:l,u.scale(e)/u.scale(l)},getScaleZoom:function(e,l){var u=this.options.crs;l=l===void 0?this._zoom:l;var c=u.zoom(e*u.scale(l));return isNaN(c)?1/0:c},project:function(e,l){return l=l===void 0?this._zoom:l,this.options.crs.latLngToPoint(i0(e),l)},unproject:function(e,l){return l=l===void 0?this._zoom:l,this.options.crs.pointToLatLng(X(e),l)},layerPointToLatLng:function(e){var l=X(e).add(this.getPixelOrigin());return this.unproject(l)},latLngToLayerPoint:function(e){var l=this.project(i0(e))._round();return l._subtract(this.getPixelOrigin())},wrapLatLng:function(e){return this.options.crs.wrapLatLng(i0(e))},wrapLatLngBounds:function(e){return this.options.crs.wrapLatLngBounds(a0(e))},distance:function(e,l){return this.options.crs.distance(i0(e),i0(l))},containerPointToLayerPoint:function(e){return X(e).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(e){return X(e).add(this._getMapPanePos())},containerPointToLatLng:function(e){var l=this.containerPointToLayerPoint(X(e));return this.layerPointToLatLng(l)},latLngToContainerPoint:function(e){return this.layerPointToContainerPoint(this.latLngToLayerPoint(i0(e)))},mouseEventToContainerPoint:function(e){return nn(e,this._container)},mouseEventToLayerPoint:function(e){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(e))},mouseEventToLatLng:function(e){return this.layerPointToLatLng(this.mouseEventToLayerPoint(e))},_initContainer:function(e){var l=this._container=tn(e);if(l){if(l._leaflet_id)throw new Error("Map container is already initialized.")}else throw new Error("Map container not found.");e0(l,"scroll",this._onScroll,this),this._containerId=s(l)},_initLayout:function(){var e=this._container;this._fadeAnimated=this.options.fadeAnimation&&Y.any3d,o0(e,"leaflet-container"+(Y.touch?" leaflet-touch":"")+(Y.retina?" leaflet-retina":"")+(Y.ielt9?" leaflet-oldie":"")+(Y.safari?" leaflet-safari":"")+(this._fadeAnimated?" leaflet-fade-anim":""));var l=m3(e,"position");l!=="absolute"&&l!=="relative"&&l!=="fixed"&&(e.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var e=this._panes={};this._paneRenderers={},this._mapPane=this.createPane("mapPane",this._container),W0(this._mapPane,new U(0,0)),this.createPane("tilePane"),this.createPane("overlayPane"),this.createPane("shadowPane"),this.createPane("markerPane"),this.createPane("tooltipPane"),this.createPane("popupPane"),this.options.markerZoomAnimation||(o0(e.markerPane,"leaflet-zoom-hide"),o0(e.shadowPane,"leaflet-zoom-hide"))},_resetView:function(e,l,u){W0(this._mapPane,new U(0,0));var c=!this._loaded;this._loaded=!0,l=this._limitZoom(l),this.fire("viewprereset");var d=this._zoom!==l;this._moveStart(d,u)._move(e,l)._moveEnd(d),this.fire("viewreset"),c&&this.fire("load")},_moveStart:function(e,l){return e&&this.fire("zoomstart"),l||this.fire("movestart"),this},_move:function(e,l,u,c){l===void 0&&(l=this._zoom);var d=this._zoom!==l;return this._zoom=l,this._lastCenter=e,this._pixelOrigin=this._getNewPixelOrigin(e),c?u&&u.pinch&&this.fire("zoom",u):((d||u&&u.pinch)&&this.fire("zoom",u),this.fire("move",u)),this},_moveEnd:function(e){return e&&this.fire("zoomend"),this.fire("moveend")},_stop:function(){return N(this._flyToFrame),this._panAnim&&this._panAnim.stop(),this},_rawPanBy:function(e){W0(this._mapPane,this._getMapPanePos().subtract(e))},_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(e){this._targets={},this._targets[s(this._container)]=this;var l=e?A0:e0;l(this._container,"click dblclick mousedown mouseup mouseover mouseout mousemove contextmenu keypress keydown keyup",this._handleDOMEvent,this),this.options.trackResize&&l(window,"resize",this._onResize,this),Y.any3d&&this.options.transform3DLimit&&(e?this.off:this.on).call(this,"moveend",this._onMoveEnd)},_onResize:function(){N(this._resizeRequest),this._resizeRequest=T(function(){this.invalidateSize({debounceMoveend:!0})},this)},_onScroll:function(){this._container.scrollTop=0,this._container.scrollLeft=0},_onMoveEnd:function(){var e=this._getMapPanePos();Math.max(Math.abs(e.x),Math.abs(e.y))>=this.options.transform3DLimit&&this._resetView(this.getCenter(),this.getZoom())},_findEventTargets:function(e,l){for(var u=[],c,d=l==="mouseout"||l==="mouseover",p=e.target||e.srcElement,B=!1;p;){if(c=this._targets[s(p)],c&&(l==="click"||l==="preclick")&&this._draggableMoved(c)){B=!0;break}if(c&&c.listens(l,!0)&&(d&&!k7(p,e)||(u.push(c),d))||p===this._container)break;p=p.parentNode}return!u.length&&!B&&!d&&this.listens(l,!0)&&(u=[this]),u},_isClickDisabled:function(e){for(;e&&e!==this._container;){if(e._leaflet_disable_click)return!0;e=e.parentNode}},_handleDOMEvent:function(e){var l=e.target||e.srcElement;if(!(!this._loaded||l._leaflet_disable_events||e.type==="click"&&this._isClickDisabled(l))){var u=e.type;u==="mousedown"&&F7(l),this._fireDOMEvent(e,u)}},_mouseEvents:["click","dblclick","mouseover","mouseout","contextmenu"],_fireDOMEvent:function(e,l,u){if(e.type==="click"){var c=r({},e);c.type="preclick",this._fireDOMEvent(c,c.type,u)}var d=this._findEventTargets(e,l);if(u){for(var p=[],B=0;B0?Math.round(e-l)/2:Math.max(0,Math.ceil(e))-Math.max(0,Math.floor(l))},_limitZoom:function(e){var l=this.getMinZoom(),u=this.getMaxZoom(),c=Y.any3d?this.options.zoomSnap:1;return c&&(e=Math.round(e/c)*c),Math.max(l,Math.min(u,e))},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){G0(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(e,l){var u=this._getCenterOffset(e)._trunc();return(l&&l.animate)!==!0&&!this.getSize().contains(u)?!1:(this.panBy(u,l),!0)},_createAnimProxy:function(){var e=this._proxy=x0("div","leaflet-proxy leaflet-zoom-animated");this._panes.mapPane.appendChild(e),this.on("zoomanim",function(l){var u=V7,c=this._proxy.style[u];E1(this._proxy,this.project(l.center,l.zoom),this.getZoomScale(l.zoom,1)),c===this._proxy.style[u]&&this._animatingZoom&&this._onZoomTransitionEnd()},this),this.on("load moveend",this._animMoveEnd,this),this._on("unload",this._destroyAnimProxy,this)},_destroyAnimProxy:function(){P0(this._proxy),this.off("load moveend",this._animMoveEnd,this),delete this._proxy},_animMoveEnd:function(){var e=this.getCenter(),l=this.getZoom();E1(this._proxy,this.project(e,l),this.getZoomScale(l,1))},_catchTransitionEnd:function(e){this._animatingZoom&&e.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(e,l,u){if(this._animatingZoom)return!0;if(u=u||{},!this._zoomAnimated||u.animate===!1||this._nothingToAnimate()||Math.abs(l-this._zoom)>this.options.zoomAnimationThreshold)return!1;var c=this.getZoomScale(l),d=this._getCenterOffset(e)._divideBy(1-1/c);return u.animate!==!0&&!this.getSize().contains(d)?!1:(T(function(){this._moveStart(!0,!1)._animateZoom(e,l,!0)},this),!0)},_animateZoom:function(e,l,u,c){!this._mapPane||(u&&(this._animatingZoom=!0,this._animateToCenter=e,this._animateToZoom=l,o0(this._mapPane,"leaflet-zoom-anim")),this.fire("zoomanim",{center:e,zoom:l,noUpdate:c}),this._tempFireZoomEvent||(this._tempFireZoomEvent=this._zoom!==this._animateToZoom),this._move(this._animateToCenter,this._animateToZoom,void 0,!0),setTimeout(i(this._onZoomTransitionEnd,this),250))},_onZoomTransitionEnd:function(){!this._animatingZoom||(this._mapPane&&G0(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 nv(e,l){return new g0(e,l)}var u2=v0.extend({options:{position:"topright"},initialize:function(e){H(this,e)},getPosition:function(){return this.options.position},setPosition:function(e){var l=this._map;return l&&l.removeControl(this),this.options.position=e,l&&l.addControl(this),this},getContainer:function(){return this._container},addTo:function(e){this.remove(),this._map=e;var l=this._container=this.onAdd(e),u=this.getPosition(),c=e._controlCorners[u];return o0(l,"leaflet-control"),u.indexOf("bottom")!==-1?c.insertBefore(l,c.firstChild):c.appendChild(l),this._map.on("unload",this.remove,this),this},remove:function(){return this._map?(P0(this._container),this.onRemove&&this.onRemove(this._map),this._map.off("unload",this.remove,this),this._map=null,this):this},_refocusOnMap:function(e){this._map&&e&&e.screenX>0&&e.screenY>0&&this._map.getContainer().focus()}}),B3=function(e){return new u2(e)};g0.include({addControl:function(e){return e.addTo(this),this},removeControl:function(e){return e.remove(),this},_initControlPos:function(){var e=this._controlCorners={},l="leaflet-",u=this._controlContainer=x0("div",l+"control-container",this._container);function c(d,p){var B=l+d+" "+l+p;e[d+p]=x0("div",B,u)}c("top","left"),c("top","right"),c("bottom","left"),c("bottom","right")},_clearControlPos:function(){for(var e in this._controlCorners)P0(this._controlCorners[e]);P0(this._controlContainer),delete this._controlCorners,delete this._controlContainer}});var un=u2.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0,hideSingleBase:!1,sortLayers:!1,sortFunction:function(e,l,u,c){return u1,this._baseLayersList.style.display=e?"":"none"),this._separator.style.display=l&&e?"":"none",this},_onLayerChange:function(e){this._handlingClick||this._update();var l=this._getLayer(s(e.target)),u=l.overlay?e.type==="add"?"overlayadd":"overlayremove":e.type==="add"?"baselayerchange":null;u&&this._map.fire(u,l)},_createRadioElement:function(e,l){var u='",c=document.createElement("div");return c.innerHTML=u,c.firstChild},_addItem:function(e){var l=document.createElement("label"),u=this._map.hasLayer(e.layer),c;e.overlay?(c=document.createElement("input"),c.type="checkbox",c.className="leaflet-control-layers-selector",c.defaultChecked=u):c=this._createRadioElement("leaflet-base-layers_"+s(this),u),this._layerControlInputs.push(c),c.layerId=s(e.layer),e0(c,"click",this._onInputClick,this);var d=document.createElement("span");d.innerHTML=" "+e.name;var p=document.createElement("span");l.appendChild(p),p.appendChild(c),p.appendChild(d);var B=e.overlay?this._overlaysList:this._baseLayersList;return B.appendChild(l),this._checkDisabledLayers(),l},_onInputClick:function(){var e=this._layerControlInputs,l,u,c=[],d=[];this._handlingClick=!0;for(var p=e.length-1;p>=0;p--)l=e[p],u=this._getLayer(l.layerId).layer,l.checked?c.push(u):l.checked||d.push(u);for(p=0;p=0;d--)l=e[d],u=this._getLayer(l.layerId).layer,l.disabled=u.options.minZoom!==void 0&&cu.options.maxZoom},_expandIfNotCollapsed:function(){return this._map&&!this.options.collapsed&&this.expand(),this}}),iv=function(e,l,u){return new un(e,l,u)},T7=u2.extend({options:{position:"topleft",zoomInText:'',zoomInTitle:"Zoom in",zoomOutText:'',zoomOutTitle:"Zoom out"},onAdd:function(e){var l="leaflet-control-zoom",u=x0("div",l+" leaflet-bar"),c=this.options;return this._zoomInButton=this._createButton(c.zoomInText,c.zoomInTitle,l+"-in",u,this._zoomIn),this._zoomOutButton=this._createButton(c.zoomOutText,c.zoomOutTitle,l+"-out",u,this._zoomOut),this._updateDisabled(),e.on("zoomend zoomlevelschange",this._updateDisabled,this),u},onRemove:function(e){e.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(e){!this._disabled&&this._map._zoomthis._map.getMinZoom()&&this._map.zoomOut(this._map.options.zoomDelta*(e.shiftKey?3:1))},_createButton:function(e,l,u,c,d){var p=x0("a",u,c);return p.innerHTML=e,p.href="#",p.title=l,p.setAttribute("role","button"),p.setAttribute("aria-label",l),C3(p),e0(p,"click",T1),e0(p,"click",d,this),e0(p,"click",this._refocusOnMap,this),p},_updateDisabled:function(){var e=this._map,l="leaflet-disabled";G0(this._zoomInButton,l),G0(this._zoomOutButton,l),this._zoomInButton.setAttribute("aria-disabled","false"),this._zoomOutButton.setAttribute("aria-disabled","false"),(this._disabled||e._zoom===e.getMinZoom())&&(o0(this._zoomOutButton,l),this._zoomOutButton.setAttribute("aria-disabled","true")),(this._disabled||e._zoom===e.getMaxZoom())&&(o0(this._zoomInButton,l),this._zoomInButton.setAttribute("aria-disabled","true"))}});g0.mergeOptions({zoomControl:!0}),g0.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new T7,this.addControl(this.zoomControl))});var lv=function(e){return new T7(e)},sn=u2.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0},onAdd:function(e){var l="leaflet-control-scale",u=x0("div",l),c=this.options;return this._addScales(c,l+"-line",u),e.on(c.updateWhenIdle?"moveend":"move",this._update,this),e.whenReady(this._update,this),u},onRemove:function(e){e.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(e,l,u){e.metric&&(this._mScale=x0("div",l,u)),e.imperial&&(this._iScale=x0("div",l,u))},_update:function(){var e=this._map,l=e.getSize().y/2,u=e.distance(e.containerPointToLatLng([0,l]),e.containerPointToLatLng([this.options.maxWidth,l]));this._updateScales(u)},_updateScales:function(e){this.options.metric&&e&&this._updateMetric(e),this.options.imperial&&e&&this._updateImperial(e)},_updateMetric:function(e){var l=this._getRoundNum(e),u=l<1e3?l+" m":l/1e3+" km";this._updateScale(this._mScale,u,l/e)},_updateImperial:function(e){var l=e*3.2808399,u,c,d;l>5280?(u=l/5280,c=this._getRoundNum(u),this._updateScale(this._iScale,c+" mi",c/u)):(d=this._getRoundNum(l),this._updateScale(this._iScale,d+" ft",d/l))},_updateScale:function(e,l,u){e.style.width=Math.round(this.options.maxWidth*u)+"px",e.innerHTML=l},_getRoundNum:function(e){var l=Math.pow(10,(Math.floor(e)+"").length-1),u=e/l;return u=u>=10?10:u>=5?5:u>=3?3:u>=2?2:1,l*u}}),ov=function(e){return new sn(e)},uv='',R7=u2.extend({options:{position:"bottomright",prefix:''+(Y.inlineSvg?uv+" ":"")+"Leaflet"},initialize:function(e){H(this,e),this._attributions={}},onAdd:function(e){e.attributionControl=this,this._container=x0("div","leaflet-control-attribution"),C3(this._container);for(var l in e._layers)e._layers[l].getAttribution&&this.addAttribution(e._layers[l].getAttribution());return this._update(),e.on("layeradd",this._addAttribution,this),this._container},onRemove:function(e){e.off("layeradd",this._addAttribution,this)},_addAttribution:function(e){e.layer.getAttribution&&(this.addAttribution(e.layer.getAttribution()),e.layer.once("remove",function(){this.removeAttribution(e.layer.getAttribution())},this))},setPrefix:function(e){return this.options.prefix=e,this._update(),this},addAttribution:function(e){return e?(this._attributions[e]||(this._attributions[e]=0),this._attributions[e]++,this._update(),this):this},removeAttribution:function(e){return e?(this._attributions[e]&&(this._attributions[e]--,this._update()),this):this},_update:function(){if(!!this._map){var e=[];for(var l in this._attributions)this._attributions[l]&&e.push(l);var u=[];this.options.prefix&&u.push(this.options.prefix),e.length&&u.push(e.join(", ")),this._container.innerHTML=u.join(' ')}}});g0.mergeOptions({attributionControl:!0}),g0.addInitHook(function(){this.options.attributionControl&&new R7().addTo(this)});var sv=function(e){return new R7(e)};u2.Layers=un,u2.Zoom=T7,u2.Scale=sn,u2.Attribution=R7,B3.layers=iv,B3.zoom=lv,B3.scale=ov,B3.attribution=sv;var H2=v0.extend({initialize:function(e){this._map=e},enable:function(){return this._enabled?this:(this._enabled=!0,this.addHooks(),this)},disable:function(){return this._enabled?(this._enabled=!1,this.removeHooks(),this):this},enabled:function(){return!!this._enabled}});H2.addTo=function(e,l){return e.addHandler(l,this),this};var cv={Events:h0},cn=Y.touch?"touchstart mousedown":"mousedown",l1=m0.extend({options:{clickTolerance:3},initialize:function(e,l,u,c){H(this,c),this._element=e,this._dragStartTarget=l||e,this._preventOutline=u},enable:function(){this._enabled||(e0(this._dragStartTarget,cn,this._onDown,this),this._enabled=!0)},disable:function(){!this._enabled||(l1._dragging===this&&this.finishDrag(!0),A0(this._dragStartTarget,cn,this._onDown,this),this._enabled=!1,this._moved=!1)},_onDown:function(e){if(!!this._enabled&&(this._moved=!1,!H7(this._element,"leaflet-zoom-anim"))){if(e.touches&&e.touches.length!==1){l1._dragging===this&&this.finishDrag();return}if(!(l1._dragging||e.shiftKey||e.which!==1&&e.button!==1&&!e.touches)&&(l1._dragging=this,this._preventOutline&&F7(this._element),y7(),z3(),!this._moving)){this.fire("down");var l=e.touches?e.touches[0]:e,u=an(this._element);this._startPoint=new U(l.clientX,l.clientY),this._startPos=P1(this._element),this._parentScale=S7(u);var c=e.type==="mousedown";e0(document,c?"mousemove":"touchmove",this._onMove,this),e0(document,c?"mouseup":"touchend touchcancel",this._onUp,this)}}},_onMove:function(e){if(!!this._enabled){if(e.touches&&e.touches.length>1){this._moved=!0;return}var l=e.touches&&e.touches.length===1?e.touches[0]:e,u=new U(l.clientX,l.clientY)._subtract(this._startPoint);!u.x&&!u.y||Math.abs(u.x)+Math.abs(u.y)p&&(B=A,p=_);p>u&&(l[B]=1,O7(e,l,u,c,B),O7(e,l,u,B,d))}function dv(e,l){for(var u=[e[0]],c=1,d=0,p=e.length;cl&&(u.push(e[c]),d=c);return dl.max.x&&(u|=2),e.yl.max.y&&(u|=8),u}function fv(e,l){var u=l.x-e.x,c=l.y-e.y;return u*u+c*c}function V3(e,l,u,c){var d=l.x,p=l.y,B=u.x-d,A=u.y-p,_=B*B+A*A,k;return _>0&&(k=((e.x-d)*B+(e.y-p)*A)/_,k>1?(d=u.x,p=u.y):k>0&&(d+=B*k,p+=A*k)),B=e.x-d,A=e.y-p,c?B*B+A*A:new U(d,p)}function U9(e){return!C(e[0])||typeof e[0][0]!="object"&&typeof e[0][0]<"u"}function pn(e){return console.warn("Deprecated use of _flat, please use L.LineUtil.isFlat instead."),U9(e)}function gn(e,l){var u,c,d,p,B,A,_,k;if(!e||e.length===0)throw new Error("latlngs not passed");U9(e)||(console.warn("latlngs are not flat! Only the first ring will be used"),e=e[0]);var D=[];for(var q in e)D.push(l.project(i0(e[q])));var n0=D.length;for(u=0,c=0;uc){_=(p-c)/d,k=[A.x-_*(A.x-B.x),A.y-_*(A.y-B.y)];break}return l.unproject(X(k))}var pv={__proto__:null,simplify:hn,pointToSegmentDistance:vn,closestPointOnSegment:hv,clipSegment:fn,_getEdgeIntersection:Y8,_getBitCode:R1,_sqClosestPointOnSegment:V3,isFlat:U9,_flat:pn,polylineCenter:gn};function mn(e,l,u){var c,d=[1,4,2,8],p,B,A,_,k,D,q,n0;for(p=0,D=e.length;p1e-7;A++)k=d*Math.sin(B),k=Math.pow((1-k)/(1+k),d/2),_=Math.PI/2-2*Math.atan(p*k)-B,B+=_;return new $(B*l,e.x*l/u)}},mv={__proto__:null,LonLat:N7,Mercator:D7,SphericalMercator:m9},zv=r({},E0,{code:"EPSG:3395",projection:D7,transformation:function(){var e=.5/(Math.PI*D7.R);return x2(e,.5,-e,.5)}()}),xn=r({},E0,{code:"EPSG:4326",projection:N7,transformation:x2(1/180,1,-1/180,.5)}),xv=r({},b0,{projection:N7,transformation:x2(1,0,-1,0),scale:function(e){return Math.pow(2,e)},zoom:function(e){return Math.log(e)/Math.LN2},distance:function(e,l){var u=l.lng-e.lng,c=l.lat-e.lat;return Math.sqrt(u*u+c*c)},infinite:!0});b0.Earth=E0,b0.EPSG3395=zv,b0.EPSG3857=E2,b0.EPSG900913=b1,b0.EPSG4326=xn,b0.Simple=xv;var s2=m0.extend({options:{pane:"overlayPane",attribution:null,bubblingMouseEvents:!0},addTo:function(e){return e.addLayer(this),this},remove:function(){return this.removeFrom(this._map||this._mapToAdd)},removeFrom:function(e){return e&&e.removeLayer(this),this},getPane:function(e){return this._map.getPane(e?this.options[e]||e:this.options.pane)},addInteractiveTarget:function(e){return this._map._targets[s(e)]=this,this},removeInteractiveTarget:function(e){return delete this._map._targets[s(e)],this},getAttribution:function(){return this.options.attribution},_layerAdd:function(e){var l=e.target;if(!!l.hasLayer(this)){if(this._map=l,this._zoomAnimated=l._zoomAnimated,this.getEvents){var u=this.getEvents();l.on(u,this),this.once("remove",function(){l.off(u,this)},this)}this.onAdd(l),this.fire("add"),l.fire("layeradd",{layer:this})}}});g0.include({addLayer:function(e){if(!e._layerAdd)throw new Error("The provided object is not a Layer.");var l=s(e);return this._layers[l]?this:(this._layers[l]=e,e._mapToAdd=this,e.beforeAdd&&e.beforeAdd(this),this.whenReady(e._layerAdd,e),this)},removeLayer:function(e){var l=s(e);return this._layers[l]?(this._loaded&&e.onRemove(this),delete this._layers[l],this._loaded&&(this.fire("layerremove",{layer:e}),e.fire("remove")),e._map=e._mapToAdd=null,this):this},hasLayer:function(e){return s(e)in this._layers},eachLayer:function(e,l){for(var u in this._layers)e.call(l,this._layers[u]);return this},_addLayers:function(e){e=e?C(e)?e:[e]:[];for(var l=0,u=e.length;lthis._layersMaxZoom&&this.setZoom(this._layersMaxZoom),this.options.minZoom===void 0&&this._layersMinZoom&&this.getZoom()=2&&l[0]instanceof $&&l[0].equals(l[u-1])&&l.pop(),l},_setLatLngs:function(e){R2.prototype._setLatLngs.call(this,e),U9(this._latlngs)&&(this._latlngs=[this._latlngs])},_defaultShape:function(){return U9(this._latlngs[0])?this._latlngs[0]:this._latlngs[0][0]},_clipPoints:function(){var e=this._renderer._bounds,l=this.options.weight,u=new U(l,l);if(e=new p0(e.min.subtract(u),e.max.add(u)),this._parts=[],!(!this._pxBounds||!this._pxBounds.intersects(e))){if(this.options.noClip){this._parts=this._rings;return}for(var c=0,d=this._rings.length,p;ce.y!=d.y>e.y&&e.x<(d.x-c.x)*(e.y-c.y)/(d.y-c.y)+c.x&&(l=!l);return l||R2.prototype._containsPoint.call(this,e,!0)}});function yv(e,l){return new V5(e,l)}var O2=O1.extend({initialize:function(e,l){H(this,l),this._layers={},e&&this.addData(e)},addData:function(e){var l=C(e)?e:e.features,u,c,d;if(l){for(u=0,c=l.length;u0?c:[l.src];return}C(this._url)||(this._url=[this._url]),!this.options.keepAspectRatio&&Object.prototype.hasOwnProperty.call(l.style,"objectFit")&&(l.style.objectFit="fill"),l.autoplay=!!this.options.autoplay,l.loop=!!this.options.loop,l.muted=!!this.options.muted,l.playsInline=!!this.options.playsInline;for(var p=0;pd?(l.height=d+"px",o0(e,p)):G0(e,p),this._containerWidth=this._container.offsetWidth},_animateZoom:function(e){var l=this._map._latLngToNewLayerPoint(this._latlng,e.zoom,e.center),u=this._getAnchor();W0(this._container,l.add(u))},_adjustPan:function(e){if(!!this.options.autoPan){this._map._panAnim&&this._map._panAnim.stop();var l=this._map,u=parseInt(m3(this._container,"marginBottom"),10)||0,c=this._container.offsetHeight+u,d=this._containerWidth,p=new U(this._containerLeft,-c-this._containerBottom);p._add(P1(this._container));var B=l.layerPointToContainerPoint(p),A=X(this.options.autoPanPadding),_=X(this.options.autoPanPaddingTopLeft||A),k=X(this.options.autoPanPaddingBottomRight||A),D=l.getSize(),q=0,n0=0;B.x+d+k.x>D.x&&(q=B.x+d-D.x+k.x),B.x-q-_.x<0&&(q=B.x-_.x),B.y+c+k.y>D.y&&(n0=B.y+c-D.y+k.y),B.y-n0-_.y<0&&(n0=B.y-_.y),(q||n0)&&l.fire("autopanstart").panBy([q,n0],{animate:e&&e.type==="moveend"})}},_getAnchor:function(){return X(this._source&&this._source._getPopupAnchor?this._source._getPopupAnchor():[0,0])}}),bv=function(e,l){return new e4(e,l)};g0.mergeOptions({closePopupOnClick:!0}),g0.include({openPopup:function(e,l,u){return this._initOverlay(e4,e,l,u).openOn(this),this},closePopup:function(e){return e=arguments.length?e:this._popup,e&&e.close(),this}}),s2.include({bindPopup:function(e,l){return this._popup=this._initOverlay(e4,this._popup,e,l),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(e){return this._popup&&this._popup._prepareOpen(e||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():!1},setPopupContent:function(e){return this._popup&&this._popup.setContent(e),this},getPopup:function(){return this._popup},_openPopup:function(e){if(!(!this._popup||!this._map)){T1(e);var l=e.layer||e.target;if(this._popup._source===l&&!(l instanceof o1)){this._map.hasLayer(this._popup)?this.closePopup():this.openPopup(e.latlng);return}this._popup._source=l,this.openPopup(e.latlng)}},_movePopup:function(e){this._popup.setLatLng(e.latlng)},_onKeyPress:function(e){e.originalEvent.keyCode===13&&this._openPopup(e)}});var r4=w2.extend({options:{pane:"tooltipPane",offset:[0,0],direction:"auto",permanent:!1,sticky:!1,opacity:.9},onAdd:function(e){w2.prototype.onAdd.call(this,e),this.setOpacity(this.options.opacity),e.fire("tooltipopen",{tooltip:this}),this._source&&(this.addEventParent(this._source),this._source.fire("tooltipopen",{tooltip:this},!0))},onRemove:function(e){w2.prototype.onRemove.call(this,e),e.fire("tooltipclose",{tooltip:this}),this._source&&(this.removeEventParent(this._source),this._source.fire("tooltipclose",{tooltip:this},!0))},getEvents:function(){var e=w2.prototype.getEvents.call(this);return this.options.permanent||(e.preclick=this.close),e},_initLayout:function(){var e="leaflet-tooltip",l=e+" "+(this.options.className||"")+" leaflet-zoom-"+(this._zoomAnimated?"animated":"hide");this._contentNode=this._container=x0("div",l),this._container.setAttribute("role","tooltip"),this._container.setAttribute("id","leaflet-tooltip-"+s(this))},_updateLayout:function(){},_adjustPan:function(){},_setPosition:function(e){var l,u,c=this._map,d=this._container,p=c.latLngToContainerPoint(c.getCenter()),B=c.layerPointToContainerPoint(e),A=this.options.direction,_=d.offsetWidth,k=d.offsetHeight,D=X(this.options.offset),q=this._getAnchor();A==="top"?(l=_/2,u=k):A==="bottom"?(l=_/2,u=0):A==="center"?(l=_/2,u=k/2):A==="right"?(l=0,u=k/2):A==="left"?(l=_,u=k/2):B.xthis.options.maxZoom||uc?this._retainParent(d,p,B,c):!1)},_retainChildren:function(e,l,u,c){for(var d=2*e;d<2*e+2;d++)for(var p=2*l;p<2*l+2;p++){var B=new U(d,p);B.z=u+1;var A=this._tileCoordsToKey(B),_=this._tiles[A];if(_&&_.active){_.retain=!0;continue}else _&&_.loaded&&(_.retain=!0);u+1this.options.maxZoom||this.options.minZoom!==void 0&&d1){this._setView(e,u);return}for(var q=d.min.y;q<=d.max.y;q++)for(var n0=d.min.x;n0<=d.max.x;n0++){var Y9=new U(n0,q);if(Y9.z=this._tileZoom,!!this._isValidTile(Y9)){var N1=this._tiles[this._tileCoordsToKey(Y9)];N1?N1.current=!0:B.push(Y9)}}if(B.sort(function(u1,j7){return u1.distanceTo(p)-j7.distanceTo(p)}),B.length!==0){this._loading||(this._loading=!0,this.fire("loading"));var i4=document.createDocumentFragment();for(n0=0;n0u.max.x)||!l.wrapLat&&(e.yu.max.y))return!1}if(!this.options.bounds)return!0;var c=this._tileCoordsToBounds(e);return a0(this.options.bounds).overlaps(c)},_keyToBounds:function(e){return this._tileCoordsToBounds(this._keyToTileCoords(e))},_tileCoordsToNwSe:function(e){var l=this._map,u=this.getTileSize(),c=e.scaleBy(u),d=c.add(u),p=l.unproject(c,e.z),B=l.unproject(d,e.z);return[p,B]},_tileCoordsToBounds:function(e){var l=this._tileCoordsToNwSe(e),u=new d0(l[0],l[1]);return this.options.noWrap||(u=this._map.wrapLatLngBounds(u)),u},_tileCoordsToKey:function(e){return e.x+":"+e.y+":"+e.z},_keyToTileCoords:function(e){var l=e.split(":"),u=new U(+l[0],+l[1]);return u.z=+l[2],u},_removeTile:function(e){var l=this._tiles[e];!l||(P0(l.el),delete this._tiles[e],this.fire("tileunload",{tile:l.el,coords:this._keyToTileCoords(e)}))},_initTile:function(e){o0(e,"leaflet-tile");var l=this.getTileSize();e.style.width=l.x+"px",e.style.height=l.y+"px",e.onselectstart=f,e.onmousemove=f,Y.ielt9&&this.options.opacity<1&&j9(e,this.options.opacity)},_addTile:function(e,l){var u=this._getTilePos(e),c=this._tileCoordsToKey(e),d=this.createTile(this._wrapCoords(e),i(this._tileReady,this,e));this._initTile(d),this.createTile.length<2&&T(i(this._tileReady,this,e,null,d)),W0(d,u),this._tiles[c]={el:d,coords:e,current:!0},l.appendChild(d),this.fire("tileloadstart",{tile:d,coords:e})},_tileReady:function(e,l,u){l&&this.fire("tileerror",{error:l,tile:u,coords:e});var c=this._tileCoordsToKey(e);u=this._tiles[c],u&&(u.loaded=+new Date,this._map._fadeAnimated?(j9(u.el,0),N(this._fadeFrame),this._fadeFrame=T(this._updateOpacity,this)):(u.active=!0,this._pruneTiles()),l||(o0(u.el,"leaflet-tile-loaded"),this.fire("tileload",{tile:u.el,coords:e})),this._noTilesToLoad()&&(this._loading=!1,this.fire("load"),Y.ielt9||!this._map._fadeAnimated?T(this._pruneTiles,this):setTimeout(i(this._pruneTiles,this),250)))},_getTilePos:function(e){return e.scaleBy(this.getTileSize()).subtract(this._level.origin)},_wrapCoords:function(e){var l=new U(this._wrapX?v(e.x,this._wrapX):e.x,this._wrapY?v(e.y,this._wrapY):e.y);return l.z=e.z,l},_pxBoundsToTileRange:function(e){var l=this.getTileSize();return new p0(e.min.unscaleBy(l).floor(),e.max.unscaleBy(l).ceil().subtract([1,1]))},_noTilesToLoad:function(){for(var e in this._tiles)if(!this._tiles[e].loaded)return!1;return!0}});function Pv(e){return new w3(e)}var w5=w3.extend({options:{minZoom:0,maxZoom:18,subdomains:"abc",errorTileUrl:"",zoomOffset:0,tms:!1,zoomReverse:!1,detectRetina:!1,crossOrigin:!1,referrerPolicy:!1},initialize:function(e,l){this._url=e,l=H(this,l),l.detectRetina&&Y.retina&&l.maxZoom>0?(l.tileSize=Math.floor(l.tileSize/2),l.zoomReverse?(l.zoomOffset--,l.minZoom=Math.min(l.maxZoom,l.minZoom+1)):(l.zoomOffset++,l.maxZoom=Math.max(l.minZoom,l.maxZoom-1)),l.minZoom=Math.max(0,l.minZoom)):l.zoomReverse?l.minZoom=Math.min(l.maxZoom,l.minZoom):l.maxZoom=Math.max(l.minZoom,l.maxZoom),typeof l.subdomains=="string"&&(l.subdomains=l.subdomains.split("")),this.on("tileunload",this._onTileRemove)},setUrl:function(e,l){return this._url===e&&l===void 0&&(l=!0),this._url=e,l||this.redraw(),this},createTile:function(e,l){var u=document.createElement("img");return e0(u,"load",i(this._tileOnLoad,this,l,u)),e0(u,"error",i(this._tileOnError,this,l,u)),(this.options.crossOrigin||this.options.crossOrigin==="")&&(u.crossOrigin=this.options.crossOrigin===!0?"":this.options.crossOrigin),typeof this.options.referrerPolicy=="string"&&(u.referrerPolicy=this.options.referrerPolicy),u.alt="",u.src=this.getTileUrl(e),u},getTileUrl:function(e){var l={r:Y.retina?"@2x":"",s:this._getSubdomain(e),x:e.x,y:e.y,z:this._getZoomForUrl()};if(this._map&&!this._map.options.crs.infinite){var u=this._globalTileRange.max.y-e.y;this.options.tms&&(l.y=u),l["-y"]=u}return I(this._url,r(l,this.options))},_tileOnLoad:function(e,l){Y.ielt9?setTimeout(i(e,this,null,l),0):e(null,l)},_tileOnError:function(e,l,u){var c=this.options.errorTileUrl;c&&l.getAttribute("src")!==c&&(l.src=c),e(u,l)},_onTileRemove:function(e){e.tile.onload=null},_getZoomForUrl:function(){var e=this._tileZoom,l=this.options.maxZoom,u=this.options.zoomReverse,c=this.options.zoomOffset;return u&&(e=l-e),e+c},_getSubdomain:function(e){var l=Math.abs(e.x+e.y)%this.options.subdomains.length;return this.options.subdomains[l]},_abortLoading:function(){var e,l;for(e in this._tiles)if(this._tiles[e].coords.z!==this._tileZoom&&(l=this._tiles[e].el,l.onload=f,l.onerror=f,!l.complete)){l.src=V;var u=this._tiles[e].coords;P0(l),delete this._tiles[e],this.fire("tileabort",{tile:l,coords:u})}},_removeTile:function(e){var l=this._tiles[e];if(!!l)return l.el.setAttribute("src",V),w3.prototype._removeTile.call(this,e)},_tileReady:function(e,l,u){if(!(!this._map||u&&u.getAttribute("src")===V))return w3.prototype._tileReady.call(this,e,l,u)}});function An(e,l){return new w5(e,l)}var yn=w5.extend({defaultWmsParams:{service:"WMS",request:"GetMap",layers:"",styles:"",format:"image/jpeg",transparent:!1,version:"1.1.1"},options:{crs:null,uppercase:!1},initialize:function(e,l){this._url=e;var u=r({},this.defaultWmsParams);for(var c in l)c in this.options||(u[c]=l[c]);l=H(this,l);var d=l.detectRetina&&Y.retina?2:1,p=this.getTileSize();u.width=p.x*d,u.height=p.y*d,this.wmsParams=u},onAdd:function(e){this._crs=this.options.crs||e.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var l=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[l]=this._crs.code,w5.prototype.onAdd.call(this,e)},getTileUrl:function(e){var l=this._tileCoordsToNwSe(e),u=this._crs,c=w0(u.project(l[0]),u.project(l[1])),d=c.min,p=c.max,B=(this._wmsVersion>=1.3&&this._crs===xn?[d.y,d.x,p.y,p.x]:[d.x,d.y,p.x,p.y]).join(","),A=w5.prototype.getTileUrl.call(this,e);return A+y(this.wmsParams,A,this.options.uppercase)+(this.options.uppercase?"&BBOX=":"&bbox=")+B},setParams:function(e,l){return r(this.wmsParams,e),l||this.redraw(),this}});function kv(e,l){return new yn(e,l)}w5.WMS=yn,An.wms=kv;var N2=s2.extend({options:{padding:.1},initialize:function(e){H(this,e),s(this),this._layers=this._layers||{}},onAdd:function(){this._container||(this._initContainer(),this._zoomAnimated&&o0(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 e={viewreset:this._reset,zoom:this._onZoom,moveend:this._update,zoomend:this._onZoomEnd};return this._zoomAnimated&&(e.zoomanim=this._onAnimZoom),e},_onAnimZoom:function(e){this._updateTransform(e.center,e.zoom)},_onZoom:function(){this._updateTransform(this._map.getCenter(),this._map.getZoom())},_updateTransform:function(e,l){var u=this._map.getZoomScale(l,this._zoom),c=this._map.getSize().multiplyBy(.5+this.options.padding),d=this._map.project(this._center,l),p=c.multiplyBy(-u).add(d).subtract(this._map._getNewPixelOrigin(e,l));Y.any3d?E1(this._container,p,u):W0(this._container,p)},_reset:function(){this._update(),this._updateTransform(this._center,this._zoom);for(var e in this._layers)this._layers[e]._reset()},_onZoomEnd:function(){for(var e in this._layers)this._layers[e]._project()},_updatePaths:function(){for(var e in this._layers)this._layers[e]._update()},_update:function(){var e=this.options.padding,l=this._map.getSize(),u=this._map.containerPointToLayerPoint(l.multiplyBy(-e)).round();this._bounds=new p0(u,u.add(l.multiplyBy(1+e*2)).round()),this._center=this._map.getCenter(),this._zoom=this._map.getZoom()}}),_n=N2.extend({options:{tolerance:0},getEvents:function(){var e=N2.prototype.getEvents.call(this);return e.viewprereset=this._onViewPreReset,e},_onViewPreReset:function(){this._postponeUpdatePaths=!0},onAdd:function(){N2.prototype.onAdd.call(this),this._draw()},_initContainer:function(){var e=this._container=document.createElement("canvas");e0(e,"mousemove",this._onMouseMove,this),e0(e,"click dblclick mousedown mouseup contextmenu",this._onClick,this),e0(e,"mouseout",this._handleMouseOut,this),e._leaflet_disable_events=!0,this._ctx=e.getContext("2d")},_destroyContainer:function(){N(this._redrawRequest),delete this._ctx,P0(this._container),A0(this._container),delete this._container},_updatePaths:function(){if(!this._postponeUpdatePaths){var e;this._redrawBounds=null;for(var l in this._layers)e=this._layers[l],e._update();this._redraw()}},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){N2.prototype._update.call(this);var e=this._bounds,l=this._container,u=e.getSize(),c=Y.retina?2:1;W0(l,e.min),l.width=c*u.x,l.height=c*u.y,l.style.width=u.x+"px",l.style.height=u.y+"px",Y.retina&&this._ctx.scale(2,2),this._ctx.translate(-e.min.x,-e.min.y),this.fire("update")}},_reset:function(){N2.prototype._reset.call(this),this._postponeUpdatePaths&&(this._postponeUpdatePaths=!1,this._updatePaths())},_initPath:function(e){this._updateDashArray(e),this._layers[s(e)]=e;var l=e._order={layer:e,prev:this._drawLast,next:null};this._drawLast&&(this._drawLast.next=l),this._drawLast=l,this._drawFirst=this._drawFirst||this._drawLast},_addPath:function(e){this._requestRedraw(e)},_removePath:function(e){var l=e._order,u=l.next,c=l.prev;u?u.prev=c:this._drawLast=c,c?c.next=u:this._drawFirst=u,delete e._order,delete this._layers[s(e)],this._requestRedraw(e)},_updatePath:function(e){this._extendRedrawBounds(e),e._project(),e._update(),this._requestRedraw(e)},_updateStyle:function(e){this._updateDashArray(e),this._requestRedraw(e)},_updateDashArray:function(e){if(typeof e.options.dashArray=="string"){var l=e.options.dashArray.split(/[, ]+/),u=[],c,d;for(d=0;d')}}catch{}return function(e){return document.createElement("<"+e+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}(),Tv={_initContainer:function(){this._container=x0("div","leaflet-vml-container")},_update:function(){this._map._animatingZoom||(N2.prototype._update.call(this),this.fire("update"))},_initPath:function(e){var l=e._container=A3("shape");o0(l,"leaflet-vml-shape "+(this.options.className||"")),l.coordsize="1 1",e._path=A3("path"),l.appendChild(e._path),this._updateStyle(e),this._layers[s(e)]=e},_addPath:function(e){var l=e._container;this._container.appendChild(l),e.options.interactive&&e.addInteractiveTarget(l)},_removePath:function(e){var l=e._container;P0(l),e.removeInteractiveTarget(l),delete this._layers[s(e)]},_updateStyle:function(e){var l=e._stroke,u=e._fill,c=e.options,d=e._container;d.stroked=!!c.stroke,d.filled=!!c.fill,c.stroke?(l||(l=e._stroke=A3("stroke")),d.appendChild(l),l.weight=c.weight+"px",l.color=c.color,l.opacity=c.opacity,c.dashArray?l.dashStyle=C(c.dashArray)?c.dashArray.join(" "):c.dashArray.replace(/( *, *)/g," "):l.dashStyle="",l.endcap=c.lineCap.replace("butt","flat"),l.joinstyle=c.lineJoin):l&&(d.removeChild(l),e._stroke=null),c.fill?(u||(u=e._fill=A3("fill")),d.appendChild(u),u.color=c.fillColor||c.color,u.opacity=c.fillOpacity):u&&(d.removeChild(u),e._fill=null)},_updateCircle:function(e){var l=e._point.round(),u=Math.round(e._radius),c=Math.round(e._radiusY||u);this._setPath(e,e._empty()?"M0 0":"AL "+l.x+","+l.y+" "+u+","+c+" 0,"+65535*360)},_setPath:function(e,l){e._path.v=l},_bringToFront:function(e){x5(e._container)},_bringToBack:function(e){M5(e._container)}},n4=Y.vml?A3:P2,y3=N2.extend({_initContainer:function(){this._container=n4("svg"),this._container.setAttribute("pointer-events","none"),this._rootGroup=n4("g"),this._container.appendChild(this._rootGroup)},_destroyContainer:function(){P0(this._container),A0(this._container),delete this._container,delete this._rootGroup,delete this._svgSize},_update:function(){if(!(this._map._animatingZoom&&this._bounds)){N2.prototype._update.call(this);var e=this._bounds,l=e.getSize(),u=this._container;(!this._svgSize||!this._svgSize.equals(l))&&(this._svgSize=l,u.setAttribute("width",l.x),u.setAttribute("height",l.y)),W0(u,e.min),u.setAttribute("viewBox",[e.min.x,e.min.y,l.x,l.y].join(" ")),this.fire("update")}},_initPath:function(e){var l=e._path=n4("path");e.options.className&&o0(l,e.options.className),e.options.interactive&&o0(l,"leaflet-interactive"),this._updateStyle(e),this._layers[s(e)]=e},_addPath:function(e){this._rootGroup||this._initContainer(),this._rootGroup.appendChild(e._path),e.addInteractiveTarget(e._path)},_removePath:function(e){P0(e._path),e.removeInteractiveTarget(e._path),delete this._layers[s(e)]},_updatePath:function(e){e._project(),e._update()},_updateStyle:function(e){var l=e._path,u=e.options;!l||(u.stroke?(l.setAttribute("stroke",u.color),l.setAttribute("stroke-opacity",u.opacity),l.setAttribute("stroke-width",u.weight),l.setAttribute("stroke-linecap",u.lineCap),l.setAttribute("stroke-linejoin",u.lineJoin),u.dashArray?l.setAttribute("stroke-dasharray",u.dashArray):l.removeAttribute("stroke-dasharray"),u.dashOffset?l.setAttribute("stroke-dashoffset",u.dashOffset):l.removeAttribute("stroke-dashoffset")):l.setAttribute("stroke","none"),u.fill?(l.setAttribute("fill",u.fillColor||u.color),l.setAttribute("fill-opacity",u.fillOpacity),l.setAttribute("fill-rule",u.fillRule||"evenodd")):l.setAttribute("fill","none"))},_updatePoly:function(e,l){this._setPath(e,r1(e._parts,l))},_updateCircle:function(e){var l=e._point,u=Math.max(Math.round(e._radius),1),c=Math.max(Math.round(e._radiusY),1)||u,d="a"+u+","+c+" 0 1,0 ",p=e._empty()?"M0 0":"M"+(l.x-u)+","+l.y+d+u*2+",0 "+d+-u*2+",0 ";this._setPath(e,p)},_setPath:function(e,l){e._path.setAttribute("d",l)},_bringToFront:function(e){x5(e._path)},_bringToBack:function(e){M5(e._path)}});Y.vml&&y3.include(Tv);function Fn(e){return Y.svg||Y.vml?new y3(e):null}g0.include({getRenderer:function(e){var l=e.options.renderer||this._getPaneRenderer(e.options.pane)||this.options.renderer||this._renderer;return l||(l=this._renderer=this._createRenderer()),this.hasLayer(l)||this.addLayer(l),l},_getPaneRenderer:function(e){if(e==="overlayPane"||e===void 0)return!1;var l=this._paneRenderers[e];return l===void 0&&(l=this._createRenderer({pane:e}),this._paneRenderers[e]=l),l},_createRenderer:function(e){return this.options.preferCanvas&&Ln(e)||Fn(e)}});var Sn=V5.extend({initialize:function(e,l){V5.prototype.initialize.call(this,this._boundsToLatLngs(e),l)},setBounds:function(e){return this.setLatLngs(this._boundsToLatLngs(e))},_boundsToLatLngs:function(e){return e=a0(e),[e.getSouthWest(),e.getNorthWest(),e.getNorthEast(),e.getSouthEast()]}});function Rv(e,l){return new Sn(e,l)}y3.create=n4,y3.pointsToPath=r1,O2.geometryToLayer=$8,O2.coordsToLatLng=Z7,O2.coordsToLatLngs=K8,O2.latLngToCoords=W7,O2.latLngsToCoords=q8,O2.getFeature=H5,O2.asFeature=t4,g0.mergeOptions({boxZoom:!0});var bn=H2.extend({initialize:function(e){this._map=e,this._container=e._container,this._pane=e._panes.overlayPane,this._resetStateTimeout=0,e.on("unload",this._destroy,this)},addHooks:function(){e0(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){A0(this._container,"mousedown",this._onMouseDown,this)},moved:function(){return this._moved},_destroy:function(){P0(this._pane),delete this._pane},_resetState:function(){this._resetStateTimeout=0,this._moved=!1},_clearDeferredResetState:function(){this._resetStateTimeout!==0&&(clearTimeout(this._resetStateTimeout),this._resetStateTimeout=0)},_onMouseDown:function(e){if(!e.shiftKey||e.which!==1&&e.button!==1)return!1;this._clearDeferredResetState(),this._resetState(),z3(),y7(),this._startPoint=this._map.mouseEventToContainerPoint(e),e0(document,{contextmenu:T1,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseMove:function(e){this._moved||(this._moved=!0,this._box=x0("div","leaflet-zoom-box",this._container),o0(this._container,"leaflet-crosshair"),this._map.fire("boxzoomstart")),this._point=this._map.mouseEventToContainerPoint(e);var l=new p0(this._point,this._startPoint),u=l.getSize();W0(this._box,l.min),this._box.style.width=u.x+"px",this._box.style.height=u.y+"px"},_finish:function(){this._moved&&(P0(this._box),G0(this._container,"leaflet-crosshair")),x3(),_7(),A0(document,{contextmenu:T1,mousemove:this._onMouseMove,mouseup:this._onMouseUp,keydown:this._onKeyDown},this)},_onMouseUp:function(e){if(!(e.which!==1&&e.button!==1)&&(this._finish(),!!this._moved)){this._clearDeferredResetState(),this._resetStateTimeout=setTimeout(i(this._resetState,this),0);var l=new d0(this._map.containerPointToLatLng(this._startPoint),this._map.containerPointToLatLng(this._point));this._map.fitBounds(l).fire("boxzoomend",{boxZoomBounds:l})}},_onKeyDown:function(e){e.keyCode===27&&(this._finish(),this._clearDeferredResetState(),this._resetState())}});g0.addInitHook("addHandler","boxZoom",bn),g0.mergeOptions({doubleClickZoom:!0});var In=H2.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(e){var l=this._map,u=l.getZoom(),c=l.options.zoomDelta,d=e.originalEvent.shiftKey?u-c:u+c;l.options.doubleClickZoom==="center"?l.setZoom(d):l.setZoomAround(e.containerPoint,d)}});g0.addInitHook("addHandler","doubleClickZoom",In),g0.mergeOptions({dragging:!0,inertia:!0,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,easeLinearity:.2,worldCopyJump:!1,maxBoundsViscosity:0});var En=H2.extend({addHooks:function(){if(!this._draggable){var e=this._map;this._draggable=new l1(e._mapPane,e._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),this._draggable.on("predrag",this._onPreDragLimit,this),e.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDragWrap,this),e.on("zoomend",this._onZoomEnd,this),e.whenReady(this._onZoomEnd,this))}o0(this._map._container,"leaflet-grab leaflet-touch-drag"),this._draggable.enable(),this._positions=[],this._times=[]},removeHooks:function(){G0(this._map._container,"leaflet-grab"),G0(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 e=this._map;if(e._stop(),this._map.options.maxBounds&&this._map.options.maxBoundsViscosity){var l=a0(this._map.options.maxBounds);this._offsetLimit=w0(this._map.latLngToContainerPoint(l.getNorthWest()).multiplyBy(-1),this._map.latLngToContainerPoint(l.getSouthEast()).multiplyBy(-1).add(this._map.getSize())),this._viscosity=Math.min(1,Math.max(0,this._map.options.maxBoundsViscosity))}else this._offsetLimit=null;e.fire("movestart").fire("dragstart"),e.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(e){if(this._map.options.inertia){var l=this._lastTime=+new Date,u=this._lastPos=this._draggable._absPos||this._draggable._newPos;this._positions.push(u),this._times.push(l),this._prunePositions(l)}this._map.fire("move",e).fire("drag",e)},_prunePositions:function(e){for(;this._positions.length>1&&e-this._times[0]>50;)this._positions.shift(),this._times.shift()},_onZoomEnd:function(){var e=this._map.getSize().divideBy(2),l=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=l.subtract(e).x,this._worldWidth=this._map.getPixelWorldBounds().getSize().x},_viscousLimit:function(e,l){return e-(e-l)*this._viscosity},_onPreDragLimit:function(){if(!(!this._viscosity||!this._offsetLimit)){var e=this._draggable._newPos.subtract(this._draggable._startPos),l=this._offsetLimit;e.xl.max.x&&(e.x=this._viscousLimit(e.x,l.max.x)),e.y>l.max.y&&(e.y=this._viscousLimit(e.y,l.max.y)),this._draggable._newPos=this._draggable._startPos.add(e)}},_onPreDragWrap:function(){var e=this._worldWidth,l=Math.round(e/2),u=this._initialWorldOffset,c=this._draggable._newPos.x,d=(c-l+u)%e+l-u,p=(c+l+u)%e-l-u,B=Math.abs(d+u)0?p:-p))-l;this._delta=0,this._startTime=null,B&&(e.options.scrollWheelZoom==="center"?e.setZoom(l+B):e.setZoomAround(this._lastMousePos,l+B))}});g0.addInitHook("addHandler","scrollWheelZoom",kn);var Ov=600;g0.mergeOptions({tapHold:Y.touchNative&&Y.safari&&Y.mobile,tapTolerance:15});var Tn=H2.extend({addHooks:function(){e0(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){A0(this._map._container,"touchstart",this._onDown,this)},_onDown:function(e){if(clearTimeout(this._holdTimeout),e.touches.length===1){var l=e.touches[0];this._startPos=this._newPos=new U(l.clientX,l.clientY),this._holdTimeout=setTimeout(i(function(){this._cancel(),this._isTapValid()&&(e0(document,"touchend",n9),e0(document,"touchend touchcancel",this._cancelClickPrevent),this._simulateEvent("contextmenu",l))},this),Ov),e0(document,"touchend touchcancel contextmenu",this._cancel,this),e0(document,"touchmove",this._onMove,this)}},_cancelClickPrevent:function e(){A0(document,"touchend",n9),A0(document,"touchend touchcancel",e)},_cancel:function(){clearTimeout(this._holdTimeout),A0(document,"touchend touchcancel contextmenu",this._cancel,this),A0(document,"touchmove",this._onMove,this)},_onMove:function(e){var l=e.touches[0];this._newPos=new U(l.clientX,l.clientY)},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_simulateEvent:function(e,l){var u=new MouseEvent(e,{bubbles:!0,cancelable:!0,view:window,screenX:l.screenX,screenY:l.screenY,clientX:l.clientX,clientY:l.clientY});u._simulated=!0,l.target.dispatchEvent(u)}});g0.addInitHook("addHandler","tapHold",Tn),g0.mergeOptions({touchZoom:Y.touch,bounceAtZoomLimits:!0});var Rn=H2.extend({addHooks:function(){o0(this._map._container,"leaflet-touch-zoom"),e0(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){G0(this._map._container,"leaflet-touch-zoom"),A0(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(e){var l=this._map;if(!(!e.touches||e.touches.length!==2||l._animatingZoom||this._zooming)){var u=l.mouseEventToContainerPoint(e.touches[0]),c=l.mouseEventToContainerPoint(e.touches[1]);this._centerPoint=l.getSize()._divideBy(2),this._startLatLng=l.containerPointToLatLng(this._centerPoint),l.options.touchZoom!=="center"&&(this._pinchStartLatLng=l.containerPointToLatLng(u.add(c)._divideBy(2))),this._startDist=u.distanceTo(c),this._startZoom=l.getZoom(),this._moved=!1,this._zooming=!0,l._stop(),e0(document,"touchmove",this._onTouchMove,this),e0(document,"touchend touchcancel",this._onTouchEnd,this),n9(e)}},_onTouchMove:function(e){if(!(!e.touches||e.touches.length!==2||!this._zooming)){var l=this._map,u=l.mouseEventToContainerPoint(e.touches[0]),c=l.mouseEventToContainerPoint(e.touches[1]),d=u.distanceTo(c)/this._startDist;if(this._zoom=l.getScaleZoom(d,this._startZoom),!l.options.bounceAtZoomLimits&&(this._zooml.getMaxZoom()&&d>1)&&(this._zoom=l._limitZoom(this._zoom)),l.options.touchZoom==="center"){if(this._center=this._startLatLng,d===1)return}else{var p=u._add(c)._divideBy(2)._subtract(this._centerPoint);if(d===1&&p.x===0&&p.y===0)return;this._center=l.unproject(l.project(this._pinchStartLatLng,this._zoom).subtract(p),this._zoom)}this._moved||(l._moveStart(!0,!1),this._moved=!0),N(this._animRequest);var B=i(l._move,l,this._center,this._zoom,{pinch:!0,round:!1},void 0);this._animRequest=T(B,this,!0),n9(e)}},_onTouchEnd:function(){if(!this._moved||!this._zooming){this._zooming=!1;return}this._zooming=!1,N(this._animRequest),A0(document,"touchmove",this._onTouchMove,this),A0(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))}});g0.addInitHook("addHandler","touchZoom",Rn),g0.BoxZoom=bn,g0.DoubleClickZoom=In,g0.Drag=En,g0.Keyboard=Pn,g0.ScrollWheelZoom=kn,g0.TapHold=Tn,g0.TouchZoom=Rn,t.Bounds=p0,t.Browser=Y,t.CRS=b0,t.Canvas=_n,t.Circle=G7,t.CircleMarker=Q8,t.Class=v0,t.Control=u2,t.DivIcon=wn,t.DivOverlay=w2,t.DomEvent=rv,t.DomUtil=av,t.Draggable=l1,t.Evented=m0,t.FeatureGroup=O1,t.GeoJSON=O2,t.GridLayer=w3,t.Handler=H2,t.Icon=B5,t.ImageOverlay=a4,t.LatLng=$,t.LatLngBounds=d0,t.Layer=s2,t.LayerGroup=C5,t.LineUtil=pv,t.Map=g0,t.Marker=J8,t.Mixin=cv,t.Path=o1,t.Point=U,t.PolyUtil=gv,t.Polygon=V5,t.Polyline=R2,t.Popup=e4,t.PosAnimation=on,t.Projection=mv,t.Rectangle=Sn,t.Renderer=N2,t.SVG=y3,t.SVGOverlay=Hn,t.TileLayer=w5,t.Tooltip=r4,t.Transformation=n2,t.Util=t0,t.VideoOverlay=Vn,t.bind=i,t.bounds=w0,t.canvas=Ln,t.circle=wv,t.circleMarker=Hv,t.control=B3,t.divIcon=Ev,t.extend=r,t.featureGroup=Cv,t.geoJSON=Bn,t.geoJson=_v,t.gridLayer=Pv,t.icon=Bv,t.imageOverlay=Lv,t.latLng=i0,t.latLngBounds=a0,t.layerGroup=Mv,t.map=nv,t.marker=Vv,t.point=X,t.polygon=yv,t.polyline=Av,t.popup=bv,t.rectangle=Rv,t.setOptions=H,t.stamp=s,t.svg=Fn,t.svgOverlay=Sv,t.tileLayer=An,t.tooltip=Iv,t.transformation=x2,t.version=a,t.videoOverlay=Fv;var Nv=window.L;t.noConflict=function(){return window.L=Nv,this},window.L=t})});var k6=s0((EM,P6)=>{(function(){"use strict";var t={}.hasOwnProperty,a="[native code]";function r(){for(var n=[],i=0;i{"use strict";var Hp=u0(),wp=Symbol.for("react.element"),Ap=Symbol.for("react.fragment"),yp=Object.prototype.hasOwnProperty,_p=Hp.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,Lp={key:!0,ref:!0,__self:!0,__source:!0};function Xu(t,a,r){var n,i={},o=null,s=null;r!==void 0&&(o=""+r),a.key!==void 0&&(o=""+a.key),a.ref!==void 0&&(s=a.ref);for(n in a)yp.call(a,n)&&!Lp.hasOwnProperty(n)&&(i[n]=a[n]);if(t&&t.defaultProps)for(n in a=t.defaultProps,a)i[n]===void 0&&(i[n]=a[n]);return{$$typeof:wp,type:t,key:o,ref:s,props:i,_owner:_p.current}}T6.Fragment=Ap;T6.jsx=Xu;T6.jsxs=Xu});var l3=s0((kM,Uu)=>{"use strict";Uu.exports=ju()});var ns=s0(Je=>{"use strict";Object.defineProperty(Je,"__esModule",{value:!0});function Pp(t){if(t.sheet)return t.sheet;for(var a=0;a{"use strict";is.exports=ns()});var us=s0((G6,os)=>{(function(t,a){typeof G6=="object"&&typeof os<"u"?a(G6):typeof define=="function"&&define.amd?define(["exports"],a):(t=t||self,a(t.stylis={}))})(G6,function(t){"use strict";var a="-ms-",r="-moz-",n="-webkit-",i="comm",o="rule",s="decl",h="@page",v="@media",f="@import",g="@charset",m="@viewport",z="@supports",H="@document",y="@namespace",F="@keyframes",I="@font-face",C="@counter-style",M="@font-feature-values",V=Math.abs,w=String.fromCharCode,E=Object.assign;function b(x,Z){return t0(x,0)^45?(((Z<<2^t0(x,0))<<2^t0(x,1))<<2^t0(x,2))<<2^t0(x,3):0}function P(x){return x.trim()}function R(x,Z){return(x=Z.exec(x))?x[0]:x}function T(x,Z,Q){return x.replace(Z,Q)}function N(x,Z){return x.indexOf(Z)}function t0(x,Z){return x.charCodeAt(Z)|0}function v0(x,Z,Q){return x.slice(Z,Q)}function H0(x){return x.length}function h0(x){return x.length}function m0(x,Z){return Z.push(x),x}function U(x,Z){return x.map(Z).join("")}t.line=1,t.column=1,t.length=0,t.position=0,t.character=0,t.characters="";function O0(x,Z,Q,r0,l0,s9,S9){return{value:x,root:Z,parent:Q,type:r0,props:l0,children:s9,line:t.line,column:t.column,length:S9,return:""}}function X(x,Z){return E(O0("",null,null,"",null,null,0),x,{length:-x.length},Z)}function p0(){return t.character}function w0(){return t.character=t.position>0?t0(t.characters,--t.position):0,t.column--,t.character===10&&(t.column=1,t.line--),t.character}function d0(){return t.character=t.position2||b0(t.character)>3?"":" "}function E2(x){for(;d0();)switch(b0(t.character)){case 0:m0(k2(t.position-1),x);break;case 2:m0(m9(t.character),x);break;default:m0(w(t.character),x)}return x}function b1(x,Z){for(;--Z&&d0()&&!(t.character<48||t.character>102||t.character>57&&t.character<65||t.character>70&&t.character<97););return i0(x,$()+(Z<6&&a0()==32&&d0()==32))}function P2(x){for(;d0();)switch(t.character){case x:return t.position;case 34:case 39:x!==34&&x!==39&&P2(t.character);break;case 40:x===41&&P2(x);break;case 92:d0();break}return t.position}function r1(x,Z){for(;d0()&&x+t.character!==47+10;)if(x+t.character===42+42&&a0()===47)break;return"/*"+i0(Z,t.position-1)+"*"+w(x===47?x:d0())}function k2(x){for(;!b0(a0());)d0();return i0(x,t.position)}function h5(x){return e9(I1("",null,null,null,[""],x=E0(x),0,[0],x))}function I1(x,Z,Q,r0,l0,s9,S9,D0,M2){for(var i2=0,l2=0,r9=S9,C2=0,i1=0,o2=0,b9=1,g5=1,I9=1,c9=0,W9="",m5=l0,T2=s9,X9=r0,L0=W9;g5;)switch(o2=c9,c9=d0()){case 40:if(o2!=108&&t0(L0,r9-1)==58){N(L0+=T(m9(c9),"&","&\f"),"&\f")!=-1&&(I9=-1);break}case 34:case 39:case 91:L0+=m9(c9);break;case 9:case 10:case 13:case 32:L0+=x2(o2);break;case 92:L0+=b1($()-1,7);continue;case 47:switch(a0()){case 42:case 47:m0(d5(r1(d0(),$()),Z,Q),M2);break;default:L0+="/"}break;case 123*b9:D0[i2++]=H0(L0)*I9;case 125*b9:case 59:case 0:switch(c9){case 0:case 125:g5=0;case 59+l2:i1>0&&H0(L0)-r9&&m0(i1>32?f5(L0+";",r0,Q,r9-1):f5(T(L0," ","")+";",r0,Q,r9-2),M2);break;case 59:L0+=";";default:if(m0(X9=v5(L0,Z,Q,i2,l2,l0,D0,W9,m5=[],T2=[],r9),s9),c9===123)if(l2===0)I1(L0,Z,X9,X9,m5,s9,r9,D0,T2);else switch(C2===99&&t0(L0,3)===110?100:C2){case 100:case 109:case 115:I1(x,X9,X9,r0&&m0(v5(x,X9,X9,0,0,l0,D0,W9,l0,m5=[],r9),T2),l0,T2,r9,D0,r0?m5:T2);break;default:I1(L0,X9,X9,X9,[""],T2,0,D0,T2)}}i2=l2=i1=0,b9=I9=1,W9=L0="",r9=S9;break;case 58:r9=1+H0(L0),i1=o2;default:if(b9<1){if(c9==123)--b9;else if(c9==125&&b9++==0&&w0()==125)continue}switch(L0+=w(c9),c9*b9){case 38:I9=l2>0?1:(L0+="\f",-1);break;case 44:D0[i2++]=(H0(L0)-1)*I9,I9=1;break;case 64:a0()===45&&(L0+=m9(d0())),C2=a0(),l2=r9=H0(W9=L0+=k2($())),c9++;break;case 45:o2===45&&H0(L0)==2&&(b9=0)}}return s9}function v5(x,Z,Q,r0,l0,s9,S9,D0,M2,i2,l2){for(var r9=l0-1,C2=l0===0?s9:[""],i1=h0(C2),o2=0,b9=0,g5=0;o20?C2[I9]+" "+c9:T(c9,/&\f/g,C2[I9])))&&(M2[g5++]=W9);return O0(x,Z,Q,l0===0?o:D0,M2,i2,l2)}function d5(x,Z,Q){return O0(x,Z,Q,i,w(p0()),v0(x,2,-2),0)}function f5(x,Z,Q,r0){return O0(x,Z,Q,s,v0(x,0,r0),v0(x,r0+1,-1),r0)}function p5(x,Z,Q){switch(b(x,Z)){case 5103:return n+"print-"+x+x;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return n+x+x;case 4789:return r+x+x;case 5349:case 4246:case 4810:case 6968:case 2756:return n+x+r+x+a+x+x;case 5936:switch(t0(x,Z+11)){case 114:return n+x+a+T(x,/[svh]\w+-[tblr]{2}/,"tb")+x;case 108:return n+x+a+T(x,/[svh]\w+-[tblr]{2}/,"tb-rl")+x;case 45:return n+x+a+T(x,/[svh]\w+-[tblr]{2}/,"lr")+x}case 6828:case 4268:case 2903:return n+x+a+x+x;case 6165:return n+x+a+"flex-"+x+x;case 5187:return n+x+T(x,/(\w+).+(:[^]+)/,n+"box-$1$2"+a+"flex-$1$2")+x;case 5443:return n+x+a+"flex-item-"+T(x,/flex-|-self/g,"")+(R(x,/flex-|baseline/)?"":a+"grid-row-"+T(x,/flex-|-self/g,""))+x;case 4675:return n+x+a+"flex-line-pack"+T(x,/align-content|flex-|-self/g,"")+x;case 5548:return n+x+a+T(x,"shrink","negative")+x;case 5292:return n+x+a+T(x,"basis","preferred-size")+x;case 6060:return n+"box-"+T(x,"-grow","")+n+x+a+T(x,"grow","positive")+x;case 4554:return n+T(x,/([^-])(transform)/g,"$1"+n+"$2")+x;case 6187:return T(T(T(x,/(zoom-|grab)/,n+"$1"),/(image-set)/,n+"$1"),x,"")+x;case 5495:case 3959:return T(x,/(image-set\([^]*)/,n+"$1$`$1");case 4968:return T(T(x,/(.+:)(flex-)?(.*)/,n+"box-pack:$3"+a+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+n+x+x;case 4200:if(!R(x,/flex-|baseline/))return a+"grid-column-align"+v0(x,Z)+x;break;case 2592:case 3360:return a+T(x,"template-","")+x;case 4384:case 3616:return Q&&Q.some(function(r0,l0){return Z=l0,R(r0.props,/grid-\w+-end/)})?~N(x+(Q=Q[Z].value),"span")?x:a+T(x,"-start","")+x+a+"grid-row-span:"+(~N(Q,"span")?R(Q,/\d+/):+R(Q,/\d+/)-+R(x,/\d+/))+";":a+T(x,"-start","")+x;case 4896:case 4128:return Q&&Q.some(function(r0){return R(r0.props,/grid-\w+-start/)})?x:a+T(T(x,"-end","-span"),"span ","")+x;case 4095:case 3583:case 4068:case 2532:return T(x,/(.+)-inline(.+)/,n+"$1$2")+x;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(H0(x)-1-Z>6)switch(t0(x,Z+1)){case 109:if(t0(x,Z+4)!==45)break;case 102:return T(x,/(.+:)(.+)-([^]+)/,"$1"+n+"$2-$3$1"+r+(t0(x,Z+3)==108?"$3":"$2-$3"))+x;case 115:return~N(x,"stretch")?p5(T(x,"stretch","fill-available"),Z,Q)+x:x}break;case 5152:case 5920:return T(x,/(.+?):(\d+)(\s*\/\s*(span)?\s*(\d+))?(.*)/,function(r0,l0,s9,S9,D0,M2,i2){return a+l0+":"+s9+i2+(S9?a+l0+"-span:"+(D0?M2:+M2-+s9)+i2:"")+x});case 4949:if(t0(x,Z+6)===121)return T(x,":",":"+n)+x;break;case 6444:switch(t0(x,t0(x,14)===45?18:11)){case 120:return T(x,/(.+:)([^;\s!]+)(;|(\s+)?!.+)?/,"$1"+n+(t0(x,14)===45?"inline-":"")+"box$3$1"+n+"$2$3$1"+a+"$2box$3")+x;case 100:return T(x,":",":"+a)+x}break;case 5719:case 2647:case 2135:case 3927:case 2391:return T(x,"scroll-","scroll-snap-")+x}return x}function n1(x,Z){for(var Q="",r0=h0(x),l0=0;l0-1&&!x.return)switch(x.type){case s:x.return=p5(x.value,x.length,Q);return;case F:return n1([X(x,{value:T(x.value,"@","@"+n)})],r0);case o:if(x.length)return U(x.props,function(l0){switch(R(l0,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return n1([X(x,{props:[T(l0,/:(read-\w+)/,":"+r+"$1")]})],r0);case"::placeholder":return n1([X(x,{props:[T(l0,/:(plac\w+)/,":"+n+"input-$1")]}),X(x,{props:[T(l0,/:(plac\w+)/,":"+r+"$1")]}),X(x,{props:[T(l0,/:(plac\w+)/,a+"input-$1")]})],r0)}return""})}}function C7(x){switch(x.type){case o:x.props=x.props.map(function(Z){return U(n2(Z),function(Q,r0,l0){switch(t0(Q,0)){case 12:return v0(Q,1,H0(Q));case 0:case 40:case 43:case 62:case 126:return Q;case 58:l0[++r0]==="global"&&(l0[r0]="",l0[++r0]="\f"+v0(l0[r0],r0=1,-1));case 32:return r0===1?"":Q;default:switch(r0){case 0:return x=Q,h0(l0)>1?"":Q;case(r0=h0(l0)-1):case 2:return r0===2?Q+x+x:Q+x;default:return Q}}})})}}t.CHARSET=g,t.COMMENT=i,t.COUNTER_STYLE=C,t.DECLARATION=s,t.DOCUMENT=H,t.FONT_FACE=I,t.FONT_FEATURE_VALUES=M,t.IMPORT=f,t.KEYFRAMES=F,t.MEDIA=v,t.MOZ=r,t.MS=a,t.NAMESPACE=y,t.PAGE=h,t.RULESET=o,t.SUPPORTS=z,t.VIEWPORT=m,t.WEBKIT=n,t.abs=V,t.alloc=E0,t.append=m0,t.assign=E,t.caret=$,t.char=p0,t.charat=t0,t.combine=U,t.comment=d5,t.commenter=r1,t.compile=h5,t.copy=X,t.dealloc=e9,t.declaration=f5,t.delimit=m9,t.delimiter=P2,t.escaping=b1,t.from=w,t.hash=b,t.identifier=k2,t.indexof=N,t.match=R,t.middleware=p3,t.namespace=C7,t.next=d0,t.node=O0,t.parse=I1,t.peek=a0,t.prefix=p5,t.prefixer=D8,t.prev=w0,t.replace=T,t.ruleset=v5,t.rulesheet=N8,t.serialize=n1,t.sizeof=h0,t.slice=i0,t.stringify=M7,t.strlen=H0,t.substr=v0,t.token=b0,t.tokenize=n2,t.tokenizer=E2,t.trim=P,t.whitespace=x2,Object.defineProperty(t,"__esModule",{value:!0})})});var ss=s0(Qe=>{"use strict";Object.defineProperty(Qe,"__esModule",{value:!0});var Rp=function(a){var r=new WeakMap;return function(n){if(r.has(n))return r.get(n);var i=a(n);return r.set(n,i),i}};Qe.default=Rp});var Z6=s0((NC,cs)=>{"use strict";cs.exports=ss()});var hs=s0($e=>{"use strict";Object.defineProperty($e,"__esModule",{value:!0});function Op(t){var a=Object.create(null);return function(r){return a[r]===void 0&&(a[r]=t(r)),a[r]}}$e.default=Op});var Ke=s0((GC,vs)=>{"use strict";vs.exports=hs()});var gs=s0(qe=>{"use strict";Object.defineProperty(qe,"__esModule",{value:!0});var Np=ls(),S=us(),Dp=Z6(),Gp=Ke();function fs(t){return t&&t.__esModule?t:{default:t}}var Zp=fs(Dp),Wp=fs(Gp),Xp=function(a,r,n){for(var i=0,o=0;i=o,o=S.peek(),i===38&&o===12&&(r[n]=1),!S.token(o);)S.next();return S.slice(a,S.position)},jp=function(a,r){var n=-1,i=44;do switch(S.token(i)){case 0:i===38&&S.peek()===12&&(r[n]=1),a[n]+=Xp(S.position-1,r,n);break;case 2:a[n]+=S.delimit(i);break;case 4:if(i===44){a[++n]=S.peek()===58?"&\f":"",r[n]=a[n].length;break}default:a[n]+=S.from(i)}while(i=S.next());return a},Up=function(a,r){return S.dealloc(jp(S.alloc(a),r))},ds=new WeakMap,Yp=function(a){if(!(a.type!=="rule"||!a.parent||a.length<1)){for(var r=a.value,n=a.parent,i=a.column===n.column&&a.line===n.line;n.type!=="rule";)if(n=n.parent,!n)return;if(!(a.props.length===1&&r.charCodeAt(0)!==58&&!ds.get(n))&&!i){ds.set(a,!0);for(var o=[],s=Up(r,o),h=n.props,v=0,f=0;v6)switch(S.charat(t,a+1)){case 109:if(S.charat(t,a+4)!==45)break;case 102:return S.replace(t,/(.+:)(.+)-([^]+)/,"$1"+S.WEBKIT+"$2-$3$1"+S.MOZ+(S.charat(t,a+3)==108?"$3":"$2-$3"))+t;case 115:return~S.indexof(t,"stretch")?ps(S.replace(t,"stretch","fill-available"),a)+t:t}break;case 4949:if(S.charat(t,a+1)!==115)break;case 6444:switch(S.charat(t,S.strlen(t)-3-(~S.indexof(t,"!important")&&10))){case 107:return S.replace(t,":",":"+S.WEBKIT)+t;case 101:return S.replace(t,/(.+:)([^;!]+)(;|!.+)?/,"$1"+S.WEBKIT+(S.charat(t,14)===45?"inline-":"")+"box$3$1"+S.WEBKIT+"$2$3$1"+S.MS+"$2box$3")+t}break;case 5936:switch(S.charat(t,a+11)){case 114:return S.WEBKIT+t+S.MS+S.replace(t,/[svh]\w+-[tblr]{2}/,"tb")+t;case 108:return S.WEBKIT+t+S.MS+S.replace(t,/[svh]\w+-[tblr]{2}/,"tb-rl")+t;case 45:return S.WEBKIT+t+S.MS+S.replace(t,/[svh]\w+-[tblr]{2}/,"lr")+t}return S.WEBKIT+t+S.MS+t+t}return t}var Qp=function(a,r,n,i){if(a.length>-1&&!a.return)switch(a.type){case S.DECLARATION:a.return=ps(a.value,a.length);break;case S.KEYFRAMES:return S.serialize([S.copy(a,{value:S.replace(a.value,"@","@"+S.WEBKIT)})],i);case S.RULESET:if(a.length)return S.combine(a.props,function(o){switch(S.match(o,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return S.serialize([S.copy(a,{props:[S.replace(o,/:(read-\w+)/,":"+S.MOZ+"$1")]})],i);case"::placeholder":return S.serialize([S.copy(a,{props:[S.replace(o,/:(plac\w+)/,":"+S.WEBKIT+"input-$1")]}),S.copy(a,{props:[S.replace(o,/:(plac\w+)/,":"+S.MOZ+"$1")]}),S.copy(a,{props:[S.replace(o,/:(plac\w+)/,S.MS+"input-$1")]})],i)}return""})}},W6=typeof document<"u",$p=W6?void 0:Zp.default(function(){return Wp.default(function(){var t={};return function(a){return t[a]}})}),Kp=[Qp],qp=function(a){var r=a.key;if(W6&&r==="css"){var n=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(n,function(w){var E=w.getAttribute("data-emotion");E.indexOf(" ")!==-1&&(document.head.appendChild(w),w.setAttribute("data-s",""))})}var i=a.stylisPlugins||Kp,o={},s,h=[];W6&&(s=a.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+r+' "]'),function(w){for(var E=w.getAttribute("data-emotion").split(" "),b=1;b{"use strict";ms.exports=gs()});var ar=s0((XC,a1)=>{function tr(){return a1.exports=tr=Object.assign?Object.assign.bind():function(t){for(var a=1;a{"use strict";var t9=typeof Symbol=="function"&&Symbol.for,er=t9?Symbol.for("react.element"):60103,rr=t9?Symbol.for("react.portal"):60106,j6=t9?Symbol.for("react.fragment"):60107,U6=t9?Symbol.for("react.strict_mode"):60108,Y6=t9?Symbol.for("react.profiler"):60114,J6=t9?Symbol.for("react.provider"):60109,Q6=t9?Symbol.for("react.context"):60110,nr=t9?Symbol.for("react.async_mode"):60111,$6=t9?Symbol.for("react.concurrent_mode"):60111,K6=t9?Symbol.for("react.forward_ref"):60112,q6=t9?Symbol.for("react.suspense"):60113,tg=t9?Symbol.for("react.suspense_list"):60120,t7=t9?Symbol.for("react.memo"):60115,a7=t9?Symbol.for("react.lazy"):60116,ag=t9?Symbol.for("react.block"):60121,eg=t9?Symbol.for("react.fundamental"):60117,rg=t9?Symbol.for("react.responder"):60118,ng=t9?Symbol.for("react.scope"):60119;function D9(t){if(typeof t=="object"&&t!==null){var a=t.$$typeof;switch(a){case er:switch(t=t.type,t){case nr:case $6:case j6:case Y6:case U6:case q6:return t;default:switch(t=t&&t.$$typeof,t){case Q6:case K6:case a7:case t7:case J6:return t;default:return a}}case rr:return a}}}function zs(t){return D9(t)===$6}B0.AsyncMode=nr;B0.ConcurrentMode=$6;B0.ContextConsumer=Q6;B0.ContextProvider=J6;B0.Element=er;B0.ForwardRef=K6;B0.Fragment=j6;B0.Lazy=a7;B0.Memo=t7;B0.Portal=rr;B0.Profiler=Y6;B0.StrictMode=U6;B0.Suspense=q6;B0.isAsyncMode=function(t){return zs(t)||D9(t)===nr};B0.isConcurrentMode=zs;B0.isContextConsumer=function(t){return D9(t)===Q6};B0.isContextProvider=function(t){return D9(t)===J6};B0.isElement=function(t){return typeof t=="object"&&t!==null&&t.$$typeof===er};B0.isForwardRef=function(t){return D9(t)===K6};B0.isFragment=function(t){return D9(t)===j6};B0.isLazy=function(t){return D9(t)===a7};B0.isMemo=function(t){return D9(t)===t7};B0.isPortal=function(t){return D9(t)===rr};B0.isProfiler=function(t){return D9(t)===Y6};B0.isStrictMode=function(t){return D9(t)===U6};B0.isSuspense=function(t){return D9(t)===q6};B0.isValidElementType=function(t){return typeof t=="string"||typeof t=="function"||t===j6||t===$6||t===Y6||t===U6||t===q6||t===tg||typeof t=="object"&&t!==null&&(t.$$typeof===a7||t.$$typeof===t7||t.$$typeof===J6||t.$$typeof===Q6||t.$$typeof===K6||t.$$typeof===eg||t.$$typeof===rg||t.$$typeof===ng||t.$$typeof===ag)};B0.typeOf=D9});var Cs=s0((UC,Ms)=>{"use strict";Ms.exports=xs()});var or=s0((YC,ys)=>{"use strict";var ir=Cs(),ig={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},lg={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},og={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},ws={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},lr={};lr[ir.ForwardRef]=og;lr[ir.Memo]=ws;function Bs(t){return ir.isMemo(t)?ws:lr[t.$$typeof]||ig}var ug=Object.defineProperty,sg=Object.getOwnPropertyNames,Vs=Object.getOwnPropertySymbols,cg=Object.getOwnPropertyDescriptor,hg=Object.getPrototypeOf,Hs=Object.prototype;function As(t,a,r){if(typeof a!="string"){if(Hs){var n=hg(a);n&&n!==Hs&&As(t,n,r)}var i=sg(a);Vs&&(i=i.concat(Vs(a)));for(var o=Bs(t),s=Bs(a),h=0;h{"use strict";Object.defineProperty(ur,"__esModule",{value:!0});var vg=or();function dg(t){return t&&t.__esModule?t:{default:t}}var fg=dg(vg),pg=function(t,a){return fg.default(t,a)};ur.default=pg});var Ls=s0(y8=>{"use strict";Object.defineProperty(y8,"__esModule",{value:!0});var cr=typeof document<"u";function gg(t,a,r){var n="";return r.split(" ").forEach(function(i){t[i]!==void 0?a.push(t[i]+";"):n+=i+" "}),n}var _s=function(a,r,n){var i=a.key+"-"+r.name;(n===!1||cr===!1&&a.compat!==void 0)&&a.registered[i]===void 0&&(a.registered[i]=r.styles)},mg=function(a,r,n){_s(a,r,n);var i=a.key+"-"+r.name;if(a.inserted[r.name]===void 0){var o="",s=r;do{var h=a.insert(r===s?"."+i:"",s,a.sheet,!0);!cr&&h!==void 0&&(o+=h),s=s.next}while(s!==void 0);if(!cr&&o.length!==0)return o}};y8.getRegisteredStyles=gg;y8.insertStyles=mg;y8.registerStyles=_s});var hr=s0(($C,Fs)=>{"use strict";Fs.exports=Ls()});var Ss=s0(vr=>{"use strict";Object.defineProperty(vr,"__esModule",{value:!0});function zg(t){for(var a=0,r,n=0,i=t.length;i>=4;++n,i-=4)r=t.charCodeAt(n)&255|(t.charCodeAt(++n)&255)<<8|(t.charCodeAt(++n)&255)<<16|(t.charCodeAt(++n)&255)<<24,r=(r&65535)*1540483477+((r>>>16)*59797<<16),r^=r>>>24,a=(r&65535)*1540483477+((r>>>16)*59797<<16)^(a&65535)*1540483477+((a>>>16)*59797<<16);switch(i){case 3:a^=(t.charCodeAt(n+2)&255)<<16;case 2:a^=(t.charCodeAt(n+1)&255)<<8;case 1:a^=t.charCodeAt(n)&255,a=(a&65535)*1540483477+((a>>>16)*59797<<16)}return a^=a>>>13,a=(a&65535)*1540483477+((a>>>16)*59797<<16),((a^a>>>15)>>>0).toString(36)}vr.default=zg});var Is=s0((qC,bs)=>{"use strict";bs.exports=Ss()});var Es=s0(dr=>{"use strict";Object.defineProperty(dr,"__esModule",{value:!0});var xg={animationIterationCount:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1};dr.default=xg});var ks=s0((aB,Ps)=>{"use strict";Ps.exports=Es()});var Ds=s0(gr=>{"use strict";Object.defineProperty(gr,"__esModule",{value:!0});var Mg=Is(),Cg=ks(),Bg=Ke();function pr(t){return t&&t.__esModule?t:{default:t}}var Vg=pr(Mg),Hg=pr(Cg),wg=pr(Bg),Ag=/[A-Z]|^ms/g,yg=/_EMO_([^_]+?)_([^]*?)_EMO_/g,Ns=function(a){return a.charCodeAt(1)===45},Ts=function(a){return a!=null&&typeof a!="boolean"},fr=wg.default(function(t){return Ns(t)?t:t.replace(Ag,"-$&").toLowerCase()}),Rs=function(a,r){switch(a){case"animation":case"animationName":if(typeof r=="string")return r.replace(yg,function(n,i,o){return b2={name:i,styles:o,next:b2},i})}return Hg.default[a]!==1&&!Ns(a)&&typeof r=="number"&&r!==0?r+"px":r};function _8(t,a,r){if(r==null)return"";if(r.__emotion_styles!==void 0)return r;switch(typeof r){case"boolean":return"";case"object":{if(r.anim===1)return b2={name:r.name,styles:r.styles,next:b2},r.name;if(r.styles!==void 0){var n=r.next;if(n!==void 0)for(;n!==void 0;)b2={name:n.name,styles:n.styles,next:b2},n=n.next;var i=r.styles+";";return i}return _g(t,a,r)}case"function":{if(t!==void 0){var o=b2,s=r(t);return b2=o,_8(t,a,s)}break}}if(a==null)return r;var h=a[r];return h!==void 0?h:r}function _g(t,a,r){var n="";if(Array.isArray(r))for(var i=0;i{"use strict";Gs.exports=Ds()});var Us=s0(e7=>{"use strict";Object.defineProperty(e7,"__esModule",{value:!0});var Xs=u0();function Fg(t){if(t&&t.__esModule)return t;var a=Object.create(null);return t&&Object.keys(t).forEach(function(r){if(r!=="default"){var n=Object.getOwnPropertyDescriptor(t,r);Object.defineProperty(a,r,n.get?n:{enumerable:!0,get:function(){return t[r]}})}}),a.default=t,Object.freeze(a)}var Zs=Fg(Xs),Sg=typeof document<"u",Ws=function(a){return a()},js=Zs["useInsertionEffect"]?Zs["useInsertionEffect"]:!1,bg=Sg&&js||Ws,Ig=js||Xs.useLayoutEffect;e7.useInsertionEffectAlwaysWithSyncFallback=bg;e7.useInsertionEffectWithLayoutFallback=Ig});var zr=s0((iB,Ys)=>{"use strict";Ys.exports=Us()});var qs=s0(F9=>{"use strict";var J0=u0(),Eg=X6(),Qs=ar(),Pg=Z6(),kg=sr(),xr=hr(),Tg=mr(),Rg=zr();function $s(t){return t&&t.__esModule?t:{default:t}}var Ks=$s(Eg),Js=$s(Pg),Cr=typeof document<"u",Br={}.hasOwnProperty,L8=J0.createContext(typeof HTMLElement<"u"?Ks.default({key:"css"}):null),Og=L8.Provider,Ng=function(){return J0.useContext(L8)};F9.withEmotionCache=function(a){return J0.forwardRef(function(r,n){var i=J0.useContext(L8);return a(r,i,n)})};Cr||(F9.withEmotionCache=function(a){return function(r){var n=J0.useContext(L8);return n===null?(n=Ks.default({key:"css"}),J0.createElement(L8.Provider,{value:n},a(r,n))):a(r,n)}});var c3=J0.createContext({}),Dg=function(){return J0.useContext(c3)},Gg=function(a,r){if(typeof r=="function"){var n=r(a);return n}return Qs({},a,r)},Zg=Js.default(function(t){return Js.default(function(a){return Gg(t,a)})}),Wg=function(a){var r=J0.useContext(c3);return a.theme!==r&&(r=Zg(r)(a.theme)),J0.createElement(c3.Provider,{value:r},a.children)};function Xg(t){var a=t.displayName||t.name||"Component",r=function(o,s){var h=J0.useContext(c3);return J0.createElement(t,Qs({theme:h,ref:s},o))},n=J0.forwardRef(r);return n.displayName="WithTheme("+a+")",kg.default(n,t)}var Mr="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",jg=function(a,r){var n={};for(var i in r)Br.call(r,i)&&(n[i]=r[i]);return n[Mr]=a,n},Ug=function(a){var r=a.cache,n=a.serialized,i=a.isStringTag;xr.registerStyles(r,n,i);var o=Rg.useInsertionEffectAlwaysWithSyncFallback(function(){return xr.insertStyles(r,n,i)});if(!Cr&&o!==void 0){for(var s,h=n.name,v=n.next;v!==void 0;)h+=" "+v.name,v=v.next;return J0.createElement("style",(s={},s["data-emotion"]=r.key+" "+h,s.dangerouslySetInnerHTML={__html:o},s.nonce=r.sheet.nonce,s))}return null},Yg=F9.withEmotionCache(function(t,a,r){var n=t.css;typeof n=="string"&&a.registered[n]!==void 0&&(n=a.registered[n]);var i=t[Mr],o=[n],s="";typeof t.className=="string"?s=xr.getRegisteredStyles(a.registered,o,t.className):t.className!=null&&(s=t.className+" ");var h=Tg.serializeStyles(o,void 0,J0.useContext(c3));s+=a.key+"-"+h.name;var v={};for(var f in t)Br.call(t,f)&&f!=="css"&&f!==Mr&&(v[f]=t[f]);return v.ref=r,v.className=s,J0.createElement(J0.Fragment,null,J0.createElement(Ug,{cache:a,serialized:h,isStringTag:typeof i=="string"}),J0.createElement(i,v))});F9.CacheProvider=Og;F9.Emotion=Yg;F9.ThemeContext=c3;F9.ThemeProvider=Wg;F9.__unsafe_useEmotionCache=Ng;F9.createEmotionProps=jg;F9.hasOwnProperty=Br;F9.isBrowser=Cr;F9.useTheme=Dg;F9.withTheme=Xg});var ec=s0(B9=>{"use strict";Object.defineProperty(B9,"__esModule",{value:!0});var I2=u0();X6();var a9=qs();ar();Z6();or();sr();var r7=hr(),Hr=mr(),Vr=zr(),tc=function(a,r){var n=arguments;if(r==null||!a9.hasOwnProperty.call(r,"css"))return I2.createElement.apply(void 0,n);var i=n.length,o=new Array(i);o[0]=a9.Emotion,o[1]=a9.createEmotionProps(a,r);for(var s=2;s{"use strict";rc.exports=ec()});var Zr=s0((QV,$z)=>{$z.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAWgAAAFoBAMAAACIy3zmAAAAElBMVEUBAALu7u7///86OTuysrJ4eHmhZktDAAAL1klEQVR42u3dS3ujuBIG4CLA3sjJPpLxHuNk79CZPU3a//+vjG9xxzYXUfVJiHNGm2nPPI3fKZeugETmXHR2LuKPOvvcf223WzqUYrvd//n8zNTxXwO/iGDXOsjM535b0GPZ7j+VCRBtTPb8RT3l/UMFhjbm+auggRK/fwSEPpLJqsQf1788NdqWfGL/USYAdD6C/B3tidH6F40uh9yeFP1SEKf8MWYqtNFfxCzpxzRoxQ3zpUJOgVbmF4nKm3+0yWsSlrTyjBalxjVFKq9o80KQ8puJvvzzexRm81GczveJbfm9148MNND8V+0YrTTQfFW7RStdE+HVTtFw80XtEq3MjsiF2iXa/CJyonaIdmMm2rhEL8lR+W2coV/IWfmtHaFzd+bDOEQ7QeuCXKqVdoGuyWlJjQP0khyXNwNHr8l5OVRGS7TdQFbl7s3HSQF0EqBrD+hDWiPRrnrCzp4RgV6Tp9JoGNptC33bWsPQO/JWEgNCr8ljOSeIGO0vOf4miBi9I68lMQB0Tp7LMUGk6No3OlVi9Iq8l40WojVNUCohejcFOjEStFrTJKURrZrW06BTI5gETBRoolLz0cVU6MvAiYNe0WRlo7noYjr0OdQM9JJo4lCPR+tiSjQpFnoxqZkSzUBrmrgoBno5NXqjx6MLmj7UY9Gryc2HUI9FTx/oQ1s9Er2mAEppRqGnGt7dhdqMWjUNItCdq2Qd6DoMdDoGnVMgpRqBXoSCTrQ9moIpyhq9Cge90bboOhz0eYprgc4poNJYoiELNGn2XMOq4jAaMpBOFWrqo6zQkGpYHhcRF6ArWaARv2p8Wq6FVI7UBp2jMhHVDFUW6AWqzqMyLdLDaETtiQ2wTh8uNrRqChmURt9PHkJaz2ZoEoD5mup75A4KwQAa0ram1+mGhiVbHxoSmvLv07Q7VLXuQ0O+RP2d2K1RDWgfmmDZcbkzD8kP1YsGZsflCfEFMD860AtcdlxqTw7Mjw404sdMbl8gqHHtRzsakh3NLXqJy4929AJSa26XhSD5EeluNDI7oCtscTcaEpTmfi0TMtSrOtGQ7DD3aMhQ7+ZmF6Gf240eV8IRvWyqO1ZNISFpeV4U0iapjkkAIvnSlucdIEO9ph0NGZGVLWjIhZN2NKTBa3vFEHIvJG5H55jsaHtNFByOH+gVJjta0JChXtmGhmSean/wKMck9SNag2pL66vPNSSpH9FrULvUil5CkvoBDcm7zufSckhSP6JrUHa0og3k6g9ojcqO9j0IVoikfkDnkKrS+dgiIibVAxoQiqhv7yBAg1reoxHjx6rvAVFA45Q8rJrKe9pU9z4gWqDS7+8kAJDST/1o3E/5jUbU7qr/AWFAfpR3aHnXkg69CV2gavoVXQPC0I+GxOUGDWhG1dC734Bqc4uWJ1wyvCVBjaqJF7S8HjbD6CWqJhKqv7LYhCFH/Jw/0DXickNo+VAv/Yk2iOwY3htkBaqJhOkPY6uNRTSoJhKmHkZ2W8fsMDWRMP1hZbeFyxpTEwlSD2PLzXLEq3rpj1VT6bUiixdjMfdHzHUSIK4gle1WW8+QbyLEqDHV1vuDSX/T5oqWNh6lPfpVOtO4oheQ7LBCS3uE0zyRAPdakjH7q9aATCRAopVj9ryTpqK6oDXgOtboHJCKJL9OMm5j3528+SD5L9aM2xJxJc9FEjdD8ch9HIXJeOx8SfyDRSPRwqFeekHLWqFqJFo41Isv6EKWHaP3RC2kbRVJW7xoNFqYH9Vp1TSXXmPMnqjHj7IvbE6TgLW0XoxFy/KjPKFFDeeGgxa1sU9HtGyCWGUMdC6sRCSrF6nmoEWNbHJCS65Q8tArWRtLsrstKmOhRa3sES25QKJ5aNHIQR3QklrRZEy0JD+qA1rQTPdvHeJqu5PmgF5Js4OFFuRHaUiyPt9kbPRahl4IGh8+WpAfkQgdaQF6IULzs6vKBGj+ql5iiN+lplp0Qgk7P2JN/L+8kaFfJWhBdojQ/E5NgE6l53+x81IRe+hRStHsXq0i9q+kpGe4aT6a2zUlWnzwHLexbdjoRn5aHvuracXPDvFBfNzaxEW3ve0/+iMzPzZcdJMB0Mz8iIg3cIkNAs3sjblo61u0Lm7gJkx0lUHQORPNqgwjbtH2f6w9op8YA+jWM5oWPDTr/1WB0Lz1Cx46NSg0Kz9SFrqEoVnPYqXEaSorGJqVHzy0waE5/UvMQadAtPKFjpHoeo5oX5EmhUPz5lwcdINDc0anMfcGE6qd5i/pjV9MR409fO68nFxfqfhZBpUPf0PvyGOJt3eltEEv7/9WQZOWyGYA/UphlUjPEP3kFV3ML9IxCv2/G+nV/3Gk4/9y2hu6nmOk6/lFOvUa6VVgaL+R3s0vp2Fon5FOYGib9xEXgaGtJgEgNPf2xaSR9opGRfqJlvOLNPvmJyeng0P7jfR6fjnd+EQrGDr3l9OoSFcotM9IV6TnhzakZoku5pbT8QFdzy3SqSHQoa8ex9OJJtB5RB7niBEM7THSR/TKX6Qx6E1GoMPMPEa6hKE95nRzQOdzi3R1QOu55bQ6vmNbzCvSsT6i63lFOj2hd/OKdHJCv86r9YhO6NW8Il2eXnZfzyunmxM6n1ekEW/oex9Pq9PL7pCG2tvMJT7vLQaZcHmL9Dd65wkNiXRyQS/mFOmny9ZzK085jdp5/4TO5xTp6oLWc8ppdUEjmg9fkY6/t1NErNf4aqfTK3oxn0hH140rX+eDLq/o9XzQzRWdzyen1RUNeLbWU6TjH/uaypsPT+Pp80tjBDpDztMcMfqBXs0l0uWPYyRyP5GWo6ufZ1/MJdL6J7qeR06nN+jFPCKd3KBX88jp8uY8l3wekW5uD6GZR6TVLbqeQ6S/j7khg6mJXlqP5A69mkOky7uDlfI55HR1fxpUEX6k44fToIRrYz7G08n9aVDSwzR8zFzKB3QefqSrx8N3C+doaaTVI7oOPdKpfkS/Os9pITpqQa9Dj3TTdqB0EXhOqzb0LuxIHwYeLehV2O102XreeB52pKv2Q9KLkNHH7ara0JKkjlyjE92OljR6NieciQZlZdaOltwwSm3QtajB+4FGHftcOdw/8RKUtvPGZTm3Me52qrzUmVa07I5AZQaK/OqtaNENxXj/z6Xsz+Xu4150cdONli+uOypRNzpbh4puetCYpyHx5e58bYKfVe2iJH3oUPOj6UXrMNGmFx1mfiT96DDzoxlAh9h+fO9V1Y0OsH9J9BA6wPxo7sdedD/qDS8/4oeh+QM6vPHH0zA6y0NDVxZo0Lt+sNIykWtBL8NClzbo0LpyZYUOqytPjBU6rK68skSbOqxqaIVWq7CqoRU6pKporNHh9IqRPTqcXrEagQ6lV+zYB70DHUir17EpMHWcoFyHEej2tcwudBCtXqlHobXPnX+7R/8j0SGM9cqx6Gz6UHcfoNyJnj7Um/Ho6ftyxUBPPayODAM9cVaflpXGo7PlxBnNQk8Z6tgw0VM2ICUXPWGoU8NGTzfYa/joyaa4af8da+p/dGCiUDf9h80OoEH7YY1eoMkk6Gk6cyVET9HslUaInqAuDj+kM4j23+xVcnTmuy4mBoD23C+ebxqK0erFf18oRntNkMSA0B4TxO70Iyu0vxbE7nAsK3RmPHUxbwaIVn66mFQpKNrLinWlLdGWR6L6aPca25NZbdGZ+eVj/g1GOx85pdoB2vG5b+cWGo0Wv5M2PLZzgHZaGX8bR2iHfczGOEM7a0KuPaETtBv1m8mcol2ok8P13aLxzXWqxp5VPh5tvrDmd6U9oLEZ8nYyu0cj1W+GcbI9C41Tv127gFFo3lm0L6g+hXUGLhNtcsDoKf5tMq9oo8VNX1qZzDNanNhv5ycXPaPNSyFKDZ1NgTbPNb9HMYLvFaG5wT6EWXSCtgh9aED1L04naCZFH/74vB2ZGZX4rHIp+thbfY4YQr1/sL8IiT51NZbs9MOYMNCnj8/Db6PGxyiLvwiJPnSRz1/9eZHxexNn6KP7c79tCXi83R/TQsG+CIk+/SF7/vxn/7U94bfb9/f95+W/A7/oX44ULTUlw6M+AAAAAElFTkSuQmCC"});var J=j(u0()),Zh=j(Vu());var L6=j(u0(),1);function F6(t,a){let r=(0,L6.useRef)(a);(0,L6.useEffect)(function(){a!==r.current&&t.attributionControl!=null&&(r.current!=null&&t.attributionControl.removeAttribution(r.current),a!=null&&t.attributionControl.addAttribution(a)),r.current=a},[t,a])}function de(t,a,r){a.center!==r.center&&t.setLatLng(a.center),a.radius!=null&&a.radius!==r.radius&&t.setRadius(a.radius)}var _9=j(u0(),1),wu=j(e5(),1);var S6=j(u0(),1),Hu=1;function fe(t){return Object.freeze({__version:Hu,map:t})}function r5(t,a){return Object.freeze({...t,...a})}var pe=(0,S6.createContext)(null),M8=pe.Provider;function $2(){let t=(0,S6.useContext)(pe);if(t==null)throw new Error("No context provided: useLeafletContext() can only be used in a descendant of ");return t}function ge(t){function a(r,n){let{instance:i,context:o}=t(r).current;return(0,_9.useImperativeHandle)(n,()=>i),r.children==null?null:_9.default.createElement(M8,{value:o},r.children)}return(0,_9.forwardRef)(a)}function Au(t){function a(r,n){let[i,o]=(0,_9.useState)(!1),{instance:s}=t(r,o).current;(0,_9.useImperativeHandle)(n,()=>s),(0,_9.useEffect)(function(){i&&s.update()},[s,i,r.children]);let h=s._contentNode;return h?(0,wu.createPortal)(r.children,h):null}return(0,_9.forwardRef)(a)}function yu(t){function a(r,n){let{instance:i}=t(r).current;return(0,_9.useImperativeHandle)(n,()=>i),null}return(0,_9.forwardRef)(a)}var b6=j(u0(),1);function e3(t,a){let r=(0,b6.useRef)();(0,b6.useEffect)(function(){return a!=null&&t.instance.on(a),r.current=a,function(){r.current!=null&&t.instance.off(r.current),r.current=null}},[t,a])}function K2(t,a){let r=t.pane??a.pane;return r?{...t,pane:r}:t}function _u(t,a){return function(n,i){let o=$2(),s=t(K2(n,o),o);return F6(o.map,n.attribution),e3(s.current,n.eventHandlers),a(s.current,o,n,i),s}}var r3=j(u0(),1);function e2(t,a,r){return Object.freeze({instance:t,context:a,container:r})}function n3(t,a){return a==null?function(n,i){let o=(0,r3.useRef)();return o.current||(o.current=t(n,i)),o}:function(n,i){let o=(0,r3.useRef)();o.current||(o.current=t(n,i));let s=(0,r3.useRef)(n),{instance:h}=o.current;return(0,r3.useEffect)(function(){s.current!==n&&(a(h,n,s.current),s.current=n)},[h,n,i]),o}}var Fu=j(u0(),1);function me(t,a){(0,Fu.useEffect)(function(){return(a.layerContainer??a.map).addLayer(t.instance),function(){a.layerContainer?.removeLayer(t.instance),a.map.removeLayer(t.instance)}},[a,t])}function ze(t){return function(r){let n=$2(),i=t(K2(r,n),n);return F6(n.map,r.attribution),e3(i.current,r.eventHandlers),me(i.current,n),i}}var E6=j(u0(),1);function zp(t,a){let r=(0,E6.useRef)();(0,E6.useEffect)(function(){if(a.pathOptions!==r.current){let i=a.pathOptions??{};t.instance.setStyle(i),r.current=i}},[t,a])}function Su(t){return function(r){let n=$2(),i=t(K2(r,n),n);return e3(i.current,r.eventHandlers),me(i.current,n),zp(i.current,r),i}}function xe(t,a){let r=n3(t,a),n=ze(r);return ge(n)}function Me(t,a){let r=n3(t),n=_u(r,a);return Au(n)}function C8(t,a){let r=n3(t,a),n=Su(r);return ge(n)}function Ce(t,a){let r=n3(t,a),n=ze(r);return yu(n)}function Be(t,a,r){let{opacity:n,zIndex:i}=a;n!=null&&n!==r.opacity&&t.setOpacity(n),i!=null&&i!==r.zIndex&&t.setZIndex(i)}var xp=j(u0(),1);function Ve(){return $2().map}var bu=j(q2(),1),He=C8(function({center:a,children:r,...n},i){let o=new bu.CircleMarker(a,n);return e2(o,r5(i,{overlayContainer:o}))},de);var Iu=j(q2(),1),we=C8(function({data:a,...r},n){let i=new Iu.GeoJSON(a,r);return e2(i,r5(n,{overlayContainer:i}))},function(a,r,n){r.style!==n.style&&(r.style==null?a.resetStyle():a.setStyle(r.style))});var Eu=j(q2(),1),L9=j(u0(),1);function Ae(){return Ae=Object.assign||function(t){for(var a=1;aH?.map??null,[H]);let F=(0,L9.useCallback)(C=>{if(C!==null&&H===null){let M=new Eu.Map(C,g);r!=null&&f!=null?M.setView(r,f):t!=null&&M.fitBounds(t,a),v!=null&&M.whenReady(v),y(fe(M))}},[]);(0,L9.useEffect)(()=>()=>{H?.map.remove()},[H]);let I=H?L9.default.createElement(M8,{value:H},n):s??null;return L9.default.createElement("div",Ae({},z,{ref:F}),I)}var ye=(0,L9.forwardRef)(Mp);var Pu=j(q2(),1),_e=xe(function({position:a,...r},n){let i=new Pu.Marker(a,r);return e2(i,r5(n,{overlayContainer:i}))},function(a,r,n){r.position!==n.position&&a.setLatLng(r.position),r.icon!=null&&r.icon!==n.icon&&a.setIcon(r.icon),r.zIndexOffset!=null&&r.zIndexOffset!==n.zIndexOffset&&a.setZIndexOffset(r.zIndexOffset),r.opacity!=null&&r.opacity!==n.opacity&&a.setOpacity(r.opacity),a.dragging!=null&&r.draggable!==n.draggable&&(r.draggable===!0?a.dragging.enable():a.dragging.disable())});var ku=j(q2(),1),Tu=j(u0(),1),B8=Me(function(a,r){let n=new ku.Popup(a,r.overlayContainer);return e2(n,r)},function(a,r,{position:n},i){(0,Tu.useEffect)(function(){let{instance:s}=a;function h(f){f.popup===s&&(s.update(),i(!0))}function v(f){f.popup===s&&i(!1)}return r.map.on({popupopen:h,popupclose:v}),r.overlayContainer==null?(n!=null&&s.setLatLng(n),s.openOn(r.map)):r.overlayContainer.bindPopup(s),function(){r.map.off({popupopen:h,popupclose:v}),r.overlayContainer?.unbindPopup(),r.map.removeLayer(s)}},[a,r,i,n])});var Ru=j(q2(),1),Le=Ce(function({url:a,...r},n){let i=new Ru.TileLayer(a,K2(r,n));return e2(i,n)},Be);var i3=j(u0());var Fe=j(u0()),Se={color:void 0,size:void 0,className:void 0,style:void 0,attr:void 0},be=Fe.default.createContext&&Fe.default.createContext(Se);var F1=function(){return F1=Object.assign||function(t){for(var a,r=1,n=arguments.length;r{let o=o3(t,"row"),s=O6(),h=N6(),v=`${o}-cols`,f=[];return s.forEach(g=>{let m=n[g];delete n[g];let z;m!=null&&typeof m=="object"?{cols:z}=m:z=m;let H=g!==h?`-${g}`:"";z!=null&&f.push(`${v}${H}-${z}`)}),(0,Qu.jsx)(r,{ref:i,...n,className:(0,Yu.default)(a,o,...f)})});$u.displayName="Row";var Ee=$u;var Pe=j(k6()),Ku=j(u0());var qu=j(l3());function Ip({as:t,bsPrefix:a,className:r,...n}){a=o3(a,"col");let i=O6(),o=N6(),s=[],h=[];return i.forEach(v=>{let f=n[v];delete n[v];let g,m,z;typeof f=="object"&&f!=null?{span:g,offset:m,order:z}=f:g=f;let H=v!==o?`-${v}`:"";g&&s.push(g===!0?`${a}${H}`:`${a}${H}-${g}`),z!=null&&h.push(`order${H}-${z}`),m!=null&&h.push(`offset${H}-${m}`)}),[{...n,className:(0,Pe.default)(r,...s,...h)},{as:t,bsPrefix:a,spans:s}]}var ts=Ku.forwardRef((t,a)=>{let[{className:r,...n},{as:i="div",bsPrefix:o,spans:s}]=Ip(t);return(0,qu.jsx)(i,{...n,ref:a,className:(0,Pe.default)(r,!s.length&&o)})});ts.displayName="Col";var ke=ts;function N9(t,a,r){return a in t?Object.defineProperty(t,a,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[a]=r,t}function as(t,a){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);a&&(n=n.filter(function(i){return Object.getOwnPropertyDescriptor(t,i).enumerable})),r.push.apply(r,n)}return r}function c0(t){for(var a=1;at.length)&&(a=t.length);for(var r=0,n=new Array(a);r=0)&&(r[i]=t[i]);return r}function u9(t,a){if(t==null)return{};var r=n5(t,a),n,i;if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(t);for(i=0;i=0)&&(!Object.prototype.propertyIsEnumerable.call(t,n)||(r[n]=t[n]))}return r}var t1=j(u0()),Ep=["defaultInputValue","defaultMenuIsOpen","defaultValue","inputValue","menuIsOpen","onChange","onInputChange","onMenuClose","onMenuOpen","value"];function es(t){var a=t.defaultInputValue,r=a===void 0?"":a,n=t.defaultMenuIsOpen,i=n===void 0?!1:n,o=t.defaultValue,s=o===void 0?null:o,h=t.inputValue,v=t.menuIsOpen,f=t.onChange,g=t.onInputChange,m=t.onMenuClose,z=t.onMenuOpen,H=t.value,y=u9(t,Ep),F=(0,t1.useState)(h!==void 0?h:r),I=g9(F,2),C=I[0],M=I[1],V=(0,t1.useState)(v!==void 0?v:i),w=g9(V,2),E=w[0],b=w[1],P=(0,t1.useState)(H!==void 0?H:s),R=g9(P,2),T=R[0],N=R[1],t0=(0,t1.useCallback)(function(X,p0){typeof f=="function"&&f(X,p0),N(X)},[f]),v0=(0,t1.useCallback)(function(X,p0){var w0;typeof g=="function"&&(w0=g(X,p0)),M(w0!==void 0?w0:X)},[g]),H0=(0,t1.useCallback)(function(){typeof z=="function"&&z(),b(!0)},[z]),h0=(0,t1.useCallback)(function(){typeof m=="function"&&m(),b(!1)},[m]),m0=h!==void 0?h:C,U=v!==void 0?v:E,O0=H!==void 0?H:T;return c0(c0({},y),{},{inputValue:m0,menuIsOpen:U,onChange:t0,onInputChange:v0,onMenuClose:h0,onMenuOpen:H0,value:O0})}function W(){return W=Object.assign?Object.assign.bind():function(t){for(var a=1;a"u"||!Reflect.construct||Reflect.construct.sham)return!1;if(typeof Proxy=="function")return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch{return!1}}function l5(t){return l5=typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?function(a){return typeof a}:function(a){return a&&typeof Symbol=="function"&&a.constructor===Symbol&&a!==Symbol.prototype?"symbol":typeof a},l5(t)}function A8(t){if(t===void 0)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function We(t,a){if(a&&(l5(a)==="object"||typeof a=="function"))return a;if(a!==void 0)throw new TypeError("Derived constructors may only return object or undefined");return A8(t)}function Xe(t){var a=Ze();return function(){var n=s3(t),i;if(a){var o=s3(this).constructor;i=Reflect.construct(n,arguments,o)}else i=n.apply(this,arguments);return We(this,i)}}function je(t){if(Array.isArray(t))return u3(t)}function Ue(t){if(typeof Symbol<"u"&&t[Symbol.iterator]!=null||t["@@iterator"]!=null)return Array.from(t)}function Ye(){throw new TypeError(`Invalid attempt to spread non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function D6(t){return je(t)||Ue(t)||w8(t)||Ye()}var V0=j(u0()),M0=j(u0());var K=j(wr());function Ar(t,a){return a||(a=t.slice(0)),Object.freeze(Object.defineProperties(t,{raw:{value:Object.freeze(a)}}))}var Q0=j(u0()),fc=j(e5());function lc(t){return t&&t.document&&t.location&&t.alert&&t.setInterval}function o5(t){if(t==null)return window;if(!lc(t)){let a=t.ownerDocument;return a&&a.defaultView||window}return t}function am(t){return o5(t).getComputedStyle(t)}function oc(t){return lc(t)?"":t?(t.nodeName||"").toLowerCase():""}function em(){let t=navigator.userAgentData;return t!=null&&t.brands?t.brands.map(a=>a.brand+"/"+a.version).join(" "):navigator.userAgent}function uc(t){return t instanceof o5(t).HTMLElement}function n7(t){return t instanceof o5(t).Element}function rm(t){return typeof ShadowRoot>"u"?!1:t instanceof o5(t).ShadowRoot||t instanceof ShadowRoot}function sc(t){let{overflow:a,overflowX:r,overflowY:n,display:i}=am(t);return/auto|scroll|overlay|hidden/.test(a+n+r)&&!["inline","contents"].includes(i)}function nm(){return!/^((?!chrome|android).)*safari/i.test(em())}function im(t){return["html","body","#document"].includes(oc(t))}var nc=Math.round;function ic(t,a,r){var n,i,o,s;a===void 0&&(a=!1),r===void 0&&(r=!1);let h=t.getBoundingClientRect(),v=1,f=1;a&&uc(t)&&(v=t.offsetWidth>0&&nc(h.width)/t.offsetWidth||1,f=t.offsetHeight>0&&nc(h.height)/t.offsetHeight||1);let g=n7(t)?o5(t):window,m=!nm()&&r,z=(h.left+(m&&(n=(i=g.visualViewport)==null?void 0:i.offsetLeft)!=null?n:0))/v,H=(h.top+(m&&(o=(s=g.visualViewport)==null?void 0:s.offsetTop)!=null?o:0))/f,y=h.width/v,F=h.height/f;return{width:y,height:F,top:H,right:z+y,bottom:H+F,left:z,x:z,y:H}}function lm(t){return(a=t,(a instanceof o5(a).Node?t.ownerDocument:t.document)||window.document).documentElement;var a}function om(t){return oc(t)==="html"?t:t.assignedSlot||t.parentNode||(rm(t)?t.host:null)||lm(t)}function cc(t){let a=om(t);return im(a)?t.ownerDocument.body:uc(a)&&sc(a)?a:cc(a)}function i7(t,a){var r;a===void 0&&(a=[]);let n=cc(t),i=n===((r=t.ownerDocument)==null?void 0:r.body),o=o5(n),s=i?[o].concat(o.visualViewport||[],sc(n)?n:[]):n,h=a.concat(s);return i?h:h.concat(i7(s))}function hc(t,a,r,n){n===void 0&&(n={});let{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:s=!0,animationFrame:h=!1}=n,v=i&&!h,f=v||o?[...n7(t)?i7(t):t.contextElement?i7(t.contextElement):[],...i7(a)]:[];f.forEach(H=>{v&&H.addEventListener("scroll",r,{passive:!0}),o&&H.addEventListener("resize",r)});let g,m=null;if(s){let H=!0;m=new ResizeObserver(()=>{H||r(),H=!1}),n7(t)&&!h&&m.observe(t),n7(t)||!t.contextElement||h||m.observe(t.contextElement),m.observe(a)}let z=h?ic(t):null;return h&&function H(){let y=ic(t);!z||y.x===z.x&&y.y===z.y&&y.width===z.width&&y.height===z.height||r(),z=y,g=requestAnimationFrame(H)}(),r(),()=>{var H;f.forEach(y=>{v&&y.removeEventListener("scroll",r),o&&y.removeEventListener("resize",r)}),(H=m)==null||H.disconnect(),m=null,h&&cancelAnimationFrame(g)}}var vc=j(u0()),um=vc.useLayoutEffect,l7=um;var sm=["className","clearValue","cx","getStyles","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"],F8=function(){};function cm(t,a){return a?a[0]==="-"?t+a:t+"__"+a:t}function pc(t,a,r){var n=[r];if(a&&t)for(var i in a)a.hasOwnProperty(i)&&a[i]&&n.push("".concat(cm(t,i)));return n.filter(function(o){return o}).map(function(o){return String(o).trim()}).join(" ")}var _r=function(a){return gm(a)?a.filter(Boolean):l5(a)==="object"&&a!==null?[a]:[]},gc=function(a){a.className,a.clearValue,a.cx,a.getStyles,a.getValue,a.hasValue,a.isMulti,a.isRtl,a.options,a.selectOption,a.selectProps,a.setValue,a.theme;var r=u9(a,sm);return c0({},r)};function S8(t){return[document.documentElement,document.body,window].indexOf(t)>-1}function hm(t){return S8(t)?window.innerHeight:t.clientHeight}function mc(t){return S8(t)?window.pageYOffset:t.scrollTop}function s7(t,a){if(S8(t)){window.scrollTo(0,a);return}t.scrollTop=a}function vm(t){var a=getComputedStyle(t),r=a.position==="absolute",n=/(auto|scroll)/;if(a.position==="fixed")return document.documentElement;for(var i=t;i=i.parentElement;)if(a=getComputedStyle(i),!(r&&a.position==="static")&&n.test(a.overflow+a.overflowY+a.overflowX))return i;return document.documentElement}function dm(t,a,r,n){return r*((t=t/n-1)*t*t+1)+a}function o7(t,a){var r=arguments.length>2&&arguments[2]!==void 0?arguments[2]:200,n=arguments.length>3&&arguments[3]!==void 0?arguments[3]:F8,i=mc(t),o=a-i,s=10,h=0;function v(){h+=s;var f=dm(h,i,o,r);s7(t,f),hr.bottom?s7(t,Math.min(a.offsetTop+a.clientHeight-t.offsetHeight+i,t.scrollHeight)):n.top-i1?r-1:0),i=1;i=F)return{placement:"bottom",maxHeight:a};if(N>=F&&!s)return o&&o7(f,t0,H0),{placement:"bottom",maxHeight:a};if(!s&&N>=n||s&&R>=n){o&&o7(f,t0,H0);var h0=s?R-E:N-E;return{placement:"bottom",maxHeight:h0}}if(i==="auto"||s){var m0=a,U=s?P:T;return U>=n&&(m0=Math.min(U-E-v.controlHeight,a)),{placement:"top",maxHeight:m0}}if(i==="bottom")return o&&s7(f,t0),{placement:"bottom",maxHeight:a};break;case"top":if(P>=F)return{placement:"top",maxHeight:a};if(T>=F&&!s)return o&&o7(f,v0,H0),{placement:"top",maxHeight:a};if(!s&&T>=n||s&&P>=n){var O0=a;return(!s&&T>=n||s&&P>=n)&&(O0=s?P-b:T-b),o&&o7(f,v0,H0),{placement:"top",maxHeight:O0}}return{placement:"bottom",maxHeight:a};default:throw new Error('Invalid placement provided "'.concat(i,'".'))}return g}function zm(t){var a={bottom:"top",top:"bottom"};return t?a[t]:"bottom"}var Vc=function(a){return a==="auto"?"bottom":a},Hc=function(a){var r,n=a.placement,i=a.theme,o=i.borderRadius,s=i.spacing,h=i.colors;return r={label:"menu"},N9(r,zm(n),"100%"),N9(r,"backgroundColor",h.neutral0),N9(r,"borderRadius",o),N9(r,"boxShadow","0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)"),N9(r,"marginBottom",s.menuGutter),N9(r,"marginTop",s.menuGutter),N9(r,"position","absolute"),N9(r,"width","100%"),N9(r,"zIndex",1),r},wc=(0,Q0.createContext)(null),Ac=function(a){var r=a.children,n=a.minMenuHeight,i=a.maxMenuHeight,o=a.menuPlacement,s=a.menuPosition,h=a.menuShouldScrollIntoView,v=a.theme,f=(0,Q0.useContext)(wc)||{},g=f.setPortalPlacement,m=(0,Q0.useRef)(null),z=(0,Q0.useState)(i),H=g9(z,2),y=H[0],F=H[1],I=(0,Q0.useState)(null),C=g9(I,2),M=C[0],V=C[1];return l7(function(){var w=m.current;if(!!w){var E=s==="fixed",b=h&&!E,P=mm({maxHeight:i,menuEl:w,minHeight:n,placement:o,shouldScroll:b,isFixedPosition:E,theme:v});F(P.maxHeight),V(P.placement),g?.(P.placement)}},[i,o,s,h,n,g,v]),r({ref:m,placerProps:c0(c0({},a),{},{placement:M||Vc(o),maxHeight:y})})},xm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerRef,h=a.innerProps;return(0,K.jsx)("div",W({css:o("menu",a),className:i({menu:!0},n),ref:s},h),r)},yc=function(a){var r=a.maxHeight,n=a.theme.spacing.baseUnit;return{maxHeight:r,overflowY:"auto",paddingBottom:n,paddingTop:n,position:"relative",WebkitOverflowScrolling:"touch"}},Mm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps,h=a.innerRef,v=a.isMulti;return(0,K.jsx)("div",W({css:o("menuList",a),className:i({"menu-list":!0,"menu-list--is-multi":v},n),ref:h},s),r)},_c=function(a){var r=a.theme,n=r.spacing.baseUnit,i=r.colors;return{color:i.neutral40,padding:"".concat(n*2,"px ").concat(n*3,"px"),textAlign:"center"}},Lc=_c,Fc=_c,Sc=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("noOptionsMessage",a),className:i({"menu-notice":!0,"menu-notice--no-options":!0},n)},s),r)};Sc.defaultProps={children:"No options"};var bc=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("loadingMessage",a),className:i({"menu-notice":!0,"menu-notice--loading":!0},n)},s),r)};bc.defaultProps={children:"Loading..."};var Ic=function(a){var r=a.rect,n=a.offset,i=a.position;return{left:r.left,position:i,top:n,width:r.width,zIndex:1}},Cm=function(a){var r=a.appendTo,n=a.children,i=a.className,o=a.controlElement,s=a.cx,h=a.innerProps,v=a.menuPlacement,f=a.menuPosition,g=a.getStyles,m=(0,Q0.useRef)(null),z=(0,Q0.useRef)(null),H=(0,Q0.useState)(Vc(v)),y=g9(H,2),F=y[0],I=y[1],C=(0,Q0.useMemo)(function(){return{setPortalPlacement:I}},[]),M=(0,Q0.useState)(null),V=g9(M,2),w=V[0],E=V[1],b=(0,Q0.useCallback)(function(){if(!!o){var N=fm(o),t0=f==="fixed"?0:window.pageYOffset,v0=N[F]+t0;(v0!==w?.offset||N.left!==w?.rect.left||N.width!==w?.rect.width)&&E({offset:v0,rect:N})}},[o,f,F,w?.offset,w?.rect.left,w?.rect.width]);l7(function(){b()},[b]);var P=(0,Q0.useCallback)(function(){typeof z.current=="function"&&(z.current(),z.current=null),o&&m.current&&(z.current=hc(o,m.current,b,{elementResize:"ResizeObserver"in window}))},[o,b]);l7(function(){P()},[P]);var R=(0,Q0.useCallback)(function(N){m.current=N,P()},[P]);if(!r&&f!=="fixed"||!w)return null;var T=(0,K.jsx)("div",W({ref:R,css:g("menuPortal",{offset:w.offset,position:f,rect:w.rect}),className:s({"menu-portal":!0},i)},h),n);return(0,K.jsx)(wc.Provider,{value:C},r?(0,fc.createPortal)(T,r):T)},Ec=function(a){var r=a.isDisabled,n=a.isRtl;return{label:"container",direction:n?"rtl":void 0,pointerEvents:r?"none":void 0,position:"relative"}},Bm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps,h=a.isDisabled,v=a.isRtl;return(0,K.jsx)("div",W({css:o("container",a),className:i({"--is-disabled":h,"--is-rtl":v},n)},s),r)},Pc=function(a){var r=a.theme.spacing,n=a.isMulti,i=a.hasValue,o=a.selectProps.controlShouldRenderValue;return{alignItems:"center",display:n&&i&&o?"flex":"grid",flex:1,flexWrap:"wrap",padding:"".concat(r.baseUnit/2,"px ").concat(r.baseUnit*2,"px"),WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"}},Vm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.innerProps,s=a.isMulti,h=a.getStyles,v=a.hasValue;return(0,K.jsx)("div",W({css:h("valueContainer",a),className:i({"value-container":!0,"value-container--is-multi":s,"value-container--has-value":v},n)},o),r)},kc=function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},Hm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.innerProps,s=a.getStyles;return(0,K.jsx)("div",W({css:s("indicatorsContainer",a),className:i({indicators:!0},n)},o),r)},dc,wm=["size"];var Am={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},Tc=function(a){var r=a.size,n=u9(a,wm);return(0,K.jsx)("svg",W({height:r,width:r,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:Am},n))},Sr=function(a){return(0,K.jsx)(Tc,W({size:20},a),(0,K.jsx)("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},Rc=function(a){return(0,K.jsx)(Tc,W({size:20},a),(0,K.jsx)("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},Oc=function(a){var r=a.isFocused,n=a.theme,i=n.spacing.baseUnit,o=n.colors;return{label:"indicatorContainer",color:r?o.neutral60:o.neutral20,display:"flex",padding:i*2,transition:"color 150ms",":hover":{color:r?o.neutral80:o.neutral40}}},Nc=Oc,ym=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("dropdownIndicator",a),className:i({indicator:!0,"dropdown-indicator":!0},n)},s),r||(0,K.jsx)(Rc,null))},Dc=Oc,_m=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("clearIndicator",a),className:i({indicator:!0,"clear-indicator":!0},n)},s),r||(0,K.jsx)(Sr,null))},Gc=function(a){var r=a.isDisabled,n=a.theme,i=n.spacing.baseUnit,o=n.colors;return{label:"indicatorSeparator",alignSelf:"stretch",backgroundColor:r?o.neutral10:o.neutral20,marginBottom:i*2,marginTop:i*2,width:1}},Lm=function(a){var r=a.className,n=a.cx,i=a.getStyles,o=a.innerProps;return(0,K.jsx)("span",W({},o,{css:i("indicatorSeparator",a),className:n({"indicator-separator":!0},r)}))},Fm=(0,K.keyframes)(dc||(dc=Ar([` 0%, 80%, 100% { opacity: 0; } 40% { opacity: 1; } -`]))),Zc=function(a){var r=a.isFocused,n=a.size,i=a.theme,o=i.colors,s=i.spacing.baseUnit;return{label:"loadingIndicator",color:r?o.neutral60:o.neutral20,display:"flex",padding:s*2,transition:"color 150ms",alignSelf:"center",fontSize:n,lineHeight:1,marginRight:n,textAlign:"center",verticalAlign:"middle"}},Ar=function(a){var r=a.delay,n=a.offset;return(0,K.jsx)("span",{css:(0,K.css)({animation:"".concat(Fm," 1s ease-in-out ").concat(r,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:n?"1em":void 0,height:"1em",verticalAlign:"top",width:"1em"},"","")})},Wc=function(a){var r=a.className,n=a.cx,i=a.getStyles,o=a.innerProps,s=a.isRtl;return(0,K.jsx)("div",W({css:i("loadingIndicator",a),className:n({indicator:!0,"loading-indicator":!0},r)},o),(0,K.jsx)(Ar,{delay:0,offset:s}),(0,K.jsx)(Ar,{delay:160,offset:!0}),(0,K.jsx)(Ar,{delay:320,offset:!s}))};Wc.defaultProps={size:4};var Xc=function(a){var r=a.isDisabled,n=a.isFocused,i=a.theme,o=i.colors,s=i.borderRadius,h=i.spacing;return{label:"control",alignItems:"center",backgroundColor:r?o.neutral5:o.neutral0,borderColor:r?o.neutral10:n?o.primary:o.neutral20,borderRadius:s,borderStyle:"solid",borderWidth:1,boxShadow:n?"0 0 0 1px ".concat(o.primary):void 0,cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:h.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms","&:hover":{borderColor:n?o.primary:o.neutral30}}},Sm=function(a){var r=a.children,n=a.cx,i=a.getStyles,o=a.className,s=a.isDisabled,h=a.isFocused,v=a.innerRef,f=a.innerProps,g=a.menuIsOpen;return(0,K.jsx)("div",W({ref:v,css:i("control",a),className:n({control:!0,"control--is-disabled":s,"control--is-focused":h,"control--menu-is-open":g},o)},f),r)},bm=["data"],jc=function(a){var r=a.theme.spacing;return{paddingBottom:r.baseUnit*2,paddingTop:r.baseUnit*2}},Im=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.Heading,h=a.headingProps,v=a.innerProps,f=a.label,g=a.theme,m=a.selectProps;return(0,K.jsx)("div",W({css:o("group",a),className:i({group:!0},n)},v),(0,K.jsx)(s,W({},h,{selectProps:m,theme:g,getStyles:o,cx:i}),f),(0,K.jsx)("div",null,r))},Uc=function(a){var r=a.theme.spacing;return{label:"group",color:"#999",cursor:"default",display:"block",fontSize:"75%",fontWeight:500,marginBottom:"0.25em",paddingLeft:r.baseUnit*3,paddingRight:r.baseUnit*3,textTransform:"uppercase"}},Em=function(a){var r=a.getStyles,n=a.cx,i=a.className,o=gc(a);o.data;var s=u1(o,bm);return(0,K.jsx)("div",W({css:r("groupHeading",a),className:n({"group-heading":!0},i)},s))},Pm=["innerRef","isDisabled","isHidden","inputClassName"],Yc=function(a){var r=a.isDisabled,n=a.value,i=a.theme,o=i.spacing,s=i.colors;return c0({margin:o.baseUnit/2,paddingBottom:o.baseUnit/2,paddingTop:o.baseUnit/2,visibility:r?"hidden":"visible",color:s.neutral80,transform:n?"translateZ(0)":""},Tm)},Jc={gridArea:"1 / 2",font:"inherit",minWidth:"2px",border:0,margin:0,outline:0,padding:0},Tm={flex:"1 1 auto",display:"inline-grid",gridArea:"1 / 1 / 2 / 3",gridTemplateColumns:"0 min-content","&:after":c0({content:'attr(data-value) " "',visibility:"hidden",whiteSpace:"pre"},Jc)},Rm=function(a){return c0({label:"input",color:"inherit",background:0,opacity:a?0:1,width:"100%"},Jc)},km=function(a){var r=a.className,n=a.cx,i=a.getStyles,o=a.value,s=gc(a),h=s.innerRef,v=s.isDisabled,f=s.isHidden,g=s.inputClassName,m=u1(s,Pm);return(0,K.jsx)("div",{className:n({"input-container":!0},r),css:i("input",a),"data-value":o||""},(0,K.jsx)("input",W({className:n({input:!0},g),ref:h,style:Rm(f),disabled:v},m)))},Qc=function(a){var r=a.theme,n=r.spacing,i=r.borderRadius,o=r.colors;return{label:"multiValue",backgroundColor:o.neutral10,borderRadius:i/2,display:"flex",margin:n.baseUnit/2,minWidth:0}},$c=function(a){var r=a.theme,n=r.borderRadius,i=r.colors,o=a.cropWithEllipsis;return{borderRadius:n/2,color:i.neutral80,fontSize:"85%",overflow:"hidden",padding:3,paddingLeft:6,textOverflow:o||o===void 0?"ellipsis":void 0,whiteSpace:"nowrap"}},Kc=function(a){var r=a.theme,n=r.spacing,i=r.borderRadius,o=r.colors,s=a.isFocused;return{alignItems:"center",borderRadius:i/2,backgroundColor:s?o.dangerLight:void 0,display:"flex",paddingLeft:n.baseUnit,paddingRight:n.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}}},qc=function(a){var r=a.children,n=a.innerProps;return(0,K.jsx)("div",n,r)},Om=qc,Nm=qc;function Dm(t){var a=t.children,r=t.innerProps;return(0,K.jsx)("div",W({role:"button"},r),a||(0,K.jsx)(Fr,{size:14}))}var Gm=function(a){var r=a.children,n=a.className,i=a.components,o=a.cx,s=a.data,h=a.getStyles,v=a.innerProps,f=a.isDisabled,g=a.removeProps,m=a.selectProps,z=i.Container,H=i.Label,y=i.Remove;return(0,K.jsx)(K.ClassNames,null,function(F){var I=F.css,C=F.cx;return(0,K.jsx)(z,{data:s,innerProps:c0({className:C(I(h("multiValue",a)),o({"multi-value":!0,"multi-value--is-disabled":f},n))},v),selectProps:m},(0,K.jsx)(H,{data:s,innerProps:{className:C(I(h("multiValueLabel",a)),o({"multi-value__label":!0},n))},selectProps:m},r),(0,K.jsx)(y,{data:s,innerProps:c0({className:C(I(h("multiValueRemove",a)),o({"multi-value__remove":!0},n)),"aria-label":"Remove ".concat(r||"option")},g),selectProps:m}))})},th=function(a){var r=a.isDisabled,n=a.isFocused,i=a.isSelected,o=a.theme,s=o.spacing,h=o.colors;return{label:"option",backgroundColor:i?h.primary:n?h.primary25:"transparent",color:r?h.neutral20:i?h.neutral0:"inherit",cursor:"default",display:"block",fontSize:"inherit",padding:"".concat(s.baseUnit*2,"px ").concat(s.baseUnit*3,"px"),width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",":active":{backgroundColor:r?void 0:i?h.primary:h.primary50}}},Zm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.isDisabled,h=a.isFocused,v=a.isSelected,f=a.innerRef,g=a.innerProps;return(0,K.jsx)("div",W({css:o("option",a),className:i({option:!0,"option--is-disabled":s,"option--is-focused":h,"option--is-selected":v},n),ref:f,"aria-disabled":s},g),r)},ah=function(a){var r=a.theme,n=r.spacing,i=r.colors;return{label:"placeholder",color:i.neutral50,gridArea:"1 / 1 / 2 / 3",marginLeft:n.baseUnit/2,marginRight:n.baseUnit/2}},Wm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("placeholder",a),className:i({placeholder:!0},n)},s),r)},eh=function(a){var r=a.isDisabled,n=a.theme,i=n.spacing,o=n.colors;return{label:"singleValue",color:r?o.neutral40:o.neutral80,gridArea:"1 / 1 / 2 / 3",marginLeft:i.baseUnit/2,marginRight:i.baseUnit/2,maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"}},Xm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.isDisabled,h=a.innerProps;return(0,K.jsx)("div",W({css:o("singleValue",a),className:i({"single-value":!0,"single-value--is-disabled":s},n)},h),r)},jm={ClearIndicator:_m,Control:Sm,DropdownIndicator:ym,DownChevron:kc,CrossIcon:Fr,Group:Im,GroupHeading:Em,IndicatorsContainer:Hm,IndicatorSeparator:Lm,Input:km,LoadingIndicator:Wc,Menu:xm,MenuList:Mm,MenuPortal:Cm,LoadingMessage:bc,NoOptionsMessage:Sc,MultiValue:Gm,MultiValueContainer:Om,MultiValueLabel:Nm,MultiValueRemove:Dm,Option:Zm,Placeholder:Wm,SelectContainer:Bm,SingleValue:Xm,ValueContainer:Vm},c6=function(a){return c0(c0({},jm),a.components)};var G1=j(Hr());var rh=Number.isNaN||function(a){return typeof a=="number"&&a!==a};function Um(t,a){return!!(t===a||rh(t)&&rh(a))}function Ym(t,a){if(t.length!==a.length)return!1;for(var r=0;r1?"s":""," ").concat(o.join(","),", selected.");case"select-option":return s?"option ".concat(i," is disabled. Select another option."):"option ".concat(i,", selected.");default:return""}},onFocus:function(a){var r=a.context,n=a.focused,i=a.options,o=a.label,s=o===void 0?"":o,h=a.selectValue,v=a.isDisabled,f=a.isSelected,g=function(y,F){return y&&y.length?"".concat(y.indexOf(F)+1," of ").concat(y.length):""};if(r==="value"&&h)return"value ".concat(s," focused, ").concat(g(h,n),".");if(r==="menu"){var m=v?" disabled":"",z="".concat(f?"selected":"focused").concat(m);return"option ".concat(s," ").concat(z,", ").concat(g(i,n),".")}return""},onFilter:function(a){var r=a.inputValue,n=a.resultsMessage;return"".concat(n).concat(r?" for search term "+r:"",".")}},$m=function(a){var r=a.ariaSelection,n=a.focusedOption,i=a.focusedValue,o=a.focusableOptions,s=a.isFocused,h=a.selectValue,v=a.selectProps,f=a.id,g=v.ariaLiveMessages,m=v.getOptionLabel,z=v.inputValue,H=v.isMulti,y=v.isOptionDisabled,F=v.isSearchable,I=v.menuIsOpen,C=v.options,M=v.screenReaderStatus,V=v.tabSelectsValue,w=v["aria-label"],E=v["aria-live"],b=(0,M0.useMemo)(function(){return c0(c0({},Qm),g||{})},[g]),P=(0,M0.useMemo)(function(){var h0="";if(r&&b.onChange){var m0=r.option,U=r.options,O0=r.removedValue,X=r.removedValues,p0=r.value,w0=function(e1){return Array.isArray(e1)?null:e1},d0=O0||m0||w0(p0),a0=d0?m(d0):"",$=U||X||void 0,i0=$?$.map(m):[],b0=c0({isDisabled:d0&&y(d0,h),label:a0,labels:i0},r);h0=b.onChange(b0)}return h0},[r,b,y,h,m]),k=(0,M0.useMemo)(function(){var h0="",m0=n||i,U=!!(n&&h&&h.includes(n));if(m0&&b.onFocus){var O0={focused:m0,label:m(m0),isDisabled:y(m0,h),isSelected:U,options:o,context:m0===n?"menu":"value",selectValue:h};h0=b.onFocus(O0)}return h0},[n,i,m,y,b,o,h]),R=(0,M0.useMemo)(function(){var h0="";if(I&&C.length&&b.onFilter){var m0=M({count:o.length});h0=b.onFilter({inputValue:z,resultsMessage:m0})}return h0},[o,z,I,b,C,M]),N=(0,M0.useMemo)(function(){var h0="";if(b.guidance){var m0=i?"value":I?"menu":"input";h0=b.guidance({"aria-label":w,context:m0,isDisabled:n&&y(n,h),isMulti:H,isSearchable:F,tabSelectsValue:V})}return h0},[w,n,i,H,y,F,I,b,h,V]),t0="".concat(k," ").concat(R," ").concat(N),v0=(0,G1.jsx)(M0.Fragment,null,(0,G1.jsx)("span",{id:"aria-selection"},P),(0,G1.jsx)("span",{id:"aria-context"},t0)),H0=r?.action==="initial-input-focus";return(0,G1.jsx)(M0.Fragment,null,(0,G1.jsx)(nh,{id:f},H0&&v0),(0,G1.jsx)(nh,{"aria-live":E,"aria-atomic":"false","aria-relevant":"additions text"},s&&!H0&&v0))},br=[{base:"A",letters:"A\u24B6\uFF21\xC0\xC1\xC2\u1EA6\u1EA4\u1EAA\u1EA8\xC3\u0100\u0102\u1EB0\u1EAE\u1EB4\u1EB2\u0226\u01E0\xC4\u01DE\u1EA2\xC5\u01FA\u01CD\u0200\u0202\u1EA0\u1EAC\u1EB6\u1E00\u0104\u023A\u2C6F"},{base:"AA",letters:"\uA732"},{base:"AE",letters:"\xC6\u01FC\u01E2"},{base:"AO",letters:"\uA734"},{base:"AU",letters:"\uA736"},{base:"AV",letters:"\uA738\uA73A"},{base:"AY",letters:"\uA73C"},{base:"B",letters:"B\u24B7\uFF22\u1E02\u1E04\u1E06\u0243\u0182\u0181"},{base:"C",letters:"C\u24B8\uFF23\u0106\u0108\u010A\u010C\xC7\u1E08\u0187\u023B\uA73E"},{base:"D",letters:"D\u24B9\uFF24\u1E0A\u010E\u1E0C\u1E10\u1E12\u1E0E\u0110\u018B\u018A\u0189\uA779"},{base:"DZ",letters:"\u01F1\u01C4"},{base:"Dz",letters:"\u01F2\u01C5"},{base:"E",letters:"E\u24BA\uFF25\xC8\xC9\xCA\u1EC0\u1EBE\u1EC4\u1EC2\u1EBC\u0112\u1E14\u1E16\u0114\u0116\xCB\u1EBA\u011A\u0204\u0206\u1EB8\u1EC6\u0228\u1E1C\u0118\u1E18\u1E1A\u0190\u018E"},{base:"F",letters:"F\u24BB\uFF26\u1E1E\u0191\uA77B"},{base:"G",letters:"G\u24BC\uFF27\u01F4\u011C\u1E20\u011E\u0120\u01E6\u0122\u01E4\u0193\uA7A0\uA77D\uA77E"},{base:"H",letters:"H\u24BD\uFF28\u0124\u1E22\u1E26\u021E\u1E24\u1E28\u1E2A\u0126\u2C67\u2C75\uA78D"},{base:"I",letters:"I\u24BE\uFF29\xCC\xCD\xCE\u0128\u012A\u012C\u0130\xCF\u1E2E\u1EC8\u01CF\u0208\u020A\u1ECA\u012E\u1E2C\u0197"},{base:"J",letters:"J\u24BF\uFF2A\u0134\u0248"},{base:"K",letters:"K\u24C0\uFF2B\u1E30\u01E8\u1E32\u0136\u1E34\u0198\u2C69\uA740\uA742\uA744\uA7A2"},{base:"L",letters:"L\u24C1\uFF2C\u013F\u0139\u013D\u1E36\u1E38\u013B\u1E3C\u1E3A\u0141\u023D\u2C62\u2C60\uA748\uA746\uA780"},{base:"LJ",letters:"\u01C7"},{base:"Lj",letters:"\u01C8"},{base:"M",letters:"M\u24C2\uFF2D\u1E3E\u1E40\u1E42\u2C6E\u019C"},{base:"N",letters:"N\u24C3\uFF2E\u01F8\u0143\xD1\u1E44\u0147\u1E46\u0145\u1E4A\u1E48\u0220\u019D\uA790\uA7A4"},{base:"NJ",letters:"\u01CA"},{base:"Nj",letters:"\u01CB"},{base:"O",letters:"O\u24C4\uFF2F\xD2\xD3\xD4\u1ED2\u1ED0\u1ED6\u1ED4\xD5\u1E4C\u022C\u1E4E\u014C\u1E50\u1E52\u014E\u022E\u0230\xD6\u022A\u1ECE\u0150\u01D1\u020C\u020E\u01A0\u1EDC\u1EDA\u1EE0\u1EDE\u1EE2\u1ECC\u1ED8\u01EA\u01EC\xD8\u01FE\u0186\u019F\uA74A\uA74C"},{base:"OI",letters:"\u01A2"},{base:"OO",letters:"\uA74E"},{base:"OU",letters:"\u0222"},{base:"P",letters:"P\u24C5\uFF30\u1E54\u1E56\u01A4\u2C63\uA750\uA752\uA754"},{base:"Q",letters:"Q\u24C6\uFF31\uA756\uA758\u024A"},{base:"R",letters:"R\u24C7\uFF32\u0154\u1E58\u0158\u0210\u0212\u1E5A\u1E5C\u0156\u1E5E\u024C\u2C64\uA75A\uA7A6\uA782"},{base:"S",letters:"S\u24C8\uFF33\u1E9E\u015A\u1E64\u015C\u1E60\u0160\u1E66\u1E62\u1E68\u0218\u015E\u2C7E\uA7A8\uA784"},{base:"T",letters:"T\u24C9\uFF34\u1E6A\u0164\u1E6C\u021A\u0162\u1E70\u1E6E\u0166\u01AC\u01AE\u023E\uA786"},{base:"TZ",letters:"\uA728"},{base:"U",letters:"U\u24CA\uFF35\xD9\xDA\xDB\u0168\u1E78\u016A\u1E7A\u016C\xDC\u01DB\u01D7\u01D5\u01D9\u1EE6\u016E\u0170\u01D3\u0214\u0216\u01AF\u1EEA\u1EE8\u1EEE\u1EEC\u1EF0\u1EE4\u1E72\u0172\u1E76\u1E74\u0244"},{base:"V",letters:"V\u24CB\uFF36\u1E7C\u1E7E\u01B2\uA75E\u0245"},{base:"VY",letters:"\uA760"},{base:"W",letters:"W\u24CC\uFF37\u1E80\u1E82\u0174\u1E86\u1E84\u1E88\u2C72"},{base:"X",letters:"X\u24CD\uFF38\u1E8A\u1E8C"},{base:"Y",letters:"Y\u24CE\uFF39\u1EF2\xDD\u0176\u1EF8\u0232\u1E8E\u0178\u1EF6\u1EF4\u01B3\u024E\u1EFE"},{base:"Z",letters:"Z\u24CF\uFF3A\u0179\u1E90\u017B\u017D\u1E92\u1E94\u01B5\u0224\u2C7F\u2C6B\uA762"},{base:"a",letters:"a\u24D0\uFF41\u1E9A\xE0\xE1\xE2\u1EA7\u1EA5\u1EAB\u1EA9\xE3\u0101\u0103\u1EB1\u1EAF\u1EB5\u1EB3\u0227\u01E1\xE4\u01DF\u1EA3\xE5\u01FB\u01CE\u0201\u0203\u1EA1\u1EAD\u1EB7\u1E01\u0105\u2C65\u0250"},{base:"aa",letters:"\uA733"},{base:"ae",letters:"\xE6\u01FD\u01E3"},{base:"ao",letters:"\uA735"},{base:"au",letters:"\uA737"},{base:"av",letters:"\uA739\uA73B"},{base:"ay",letters:"\uA73D"},{base:"b",letters:"b\u24D1\uFF42\u1E03\u1E05\u1E07\u0180\u0183\u0253"},{base:"c",letters:"c\u24D2\uFF43\u0107\u0109\u010B\u010D\xE7\u1E09\u0188\u023C\uA73F\u2184"},{base:"d",letters:"d\u24D3\uFF44\u1E0B\u010F\u1E0D\u1E11\u1E13\u1E0F\u0111\u018C\u0256\u0257\uA77A"},{base:"dz",letters:"\u01F3\u01C6"},{base:"e",letters:"e\u24D4\uFF45\xE8\xE9\xEA\u1EC1\u1EBF\u1EC5\u1EC3\u1EBD\u0113\u1E15\u1E17\u0115\u0117\xEB\u1EBB\u011B\u0205\u0207\u1EB9\u1EC7\u0229\u1E1D\u0119\u1E19\u1E1B\u0247\u025B\u01DD"},{base:"f",letters:"f\u24D5\uFF46\u1E1F\u0192\uA77C"},{base:"g",letters:"g\u24D6\uFF47\u01F5\u011D\u1E21\u011F\u0121\u01E7\u0123\u01E5\u0260\uA7A1\u1D79\uA77F"},{base:"h",letters:"h\u24D7\uFF48\u0125\u1E23\u1E27\u021F\u1E25\u1E29\u1E2B\u1E96\u0127\u2C68\u2C76\u0265"},{base:"hv",letters:"\u0195"},{base:"i",letters:"i\u24D8\uFF49\xEC\xED\xEE\u0129\u012B\u012D\xEF\u1E2F\u1EC9\u01D0\u0209\u020B\u1ECB\u012F\u1E2D\u0268\u0131"},{base:"j",letters:"j\u24D9\uFF4A\u0135\u01F0\u0249"},{base:"k",letters:"k\u24DA\uFF4B\u1E31\u01E9\u1E33\u0137\u1E35\u0199\u2C6A\uA741\uA743\uA745\uA7A3"},{base:"l",letters:"l\u24DB\uFF4C\u0140\u013A\u013E\u1E37\u1E39\u013C\u1E3D\u1E3B\u017F\u0142\u019A\u026B\u2C61\uA749\uA781\uA747"},{base:"lj",letters:"\u01C9"},{base:"m",letters:"m\u24DC\uFF4D\u1E3F\u1E41\u1E43\u0271\u026F"},{base:"n",letters:"n\u24DD\uFF4E\u01F9\u0144\xF1\u1E45\u0148\u1E47\u0146\u1E4B\u1E49\u019E\u0272\u0149\uA791\uA7A5"},{base:"nj",letters:"\u01CC"},{base:"o",letters:"o\u24DE\uFF4F\xF2\xF3\xF4\u1ED3\u1ED1\u1ED7\u1ED5\xF5\u1E4D\u022D\u1E4F\u014D\u1E51\u1E53\u014F\u022F\u0231\xF6\u022B\u1ECF\u0151\u01D2\u020D\u020F\u01A1\u1EDD\u1EDB\u1EE1\u1EDF\u1EE3\u1ECD\u1ED9\u01EB\u01ED\xF8\u01FF\u0254\uA74B\uA74D\u0275"},{base:"oi",letters:"\u01A3"},{base:"ou",letters:"\u0223"},{base:"oo",letters:"\uA74F"},{base:"p",letters:"p\u24DF\uFF50\u1E55\u1E57\u01A5\u1D7D\uA751\uA753\uA755"},{base:"q",letters:"q\u24E0\uFF51\u024B\uA757\uA759"},{base:"r",letters:"r\u24E1\uFF52\u0155\u1E59\u0159\u0211\u0213\u1E5B\u1E5D\u0157\u1E5F\u024D\u027D\uA75B\uA7A7\uA783"},{base:"s",letters:"s\u24E2\uFF53\xDF\u015B\u1E65\u015D\u1E61\u0161\u1E67\u1E63\u1E69\u0219\u015F\u023F\uA7A9\uA785\u1E9B"},{base:"t",letters:"t\u24E3\uFF54\u1E6B\u1E97\u0165\u1E6D\u021B\u0163\u1E71\u1E6F\u0167\u01AD\u0288\u2C66\uA787"},{base:"tz",letters:"\uA729"},{base:"u",letters:"u\u24E4\uFF55\xF9\xFA\xFB\u0169\u1E79\u016B\u1E7B\u016D\xFC\u01DC\u01D8\u01D6\u01DA\u1EE7\u016F\u0171\u01D4\u0215\u0217\u01B0\u1EEB\u1EE9\u1EEF\u1EED\u1EF1\u1EE5\u1E73\u0173\u1E77\u1E75\u0289"},{base:"v",letters:"v\u24E5\uFF56\u1E7D\u1E7F\u028B\uA75F\u028C"},{base:"vy",letters:"\uA761"},{base:"w",letters:"w\u24E6\uFF57\u1E81\u1E83\u0175\u1E87\u1E85\u1E98\u1E89\u2C73"},{base:"x",letters:"x\u24E7\uFF58\u1E8B\u1E8D"},{base:"y",letters:"y\u24E8\uFF59\u1EF3\xFD\u0177\u1EF9\u0233\u1E8F\xFF\u1EF7\u1E99\u1EF5\u01B4\u024F\u1EFF"},{base:"z",letters:"z\u24E9\uFF5A\u017A\u1E91\u017C\u017E\u1E93\u1E95\u01B6\u0225\u0240\u2C6C\uA763"}],Km=new RegExp("["+br.map(function(t){return t.letters}).join("")+"]","g"),ph={};for(v6=0;v6-1}},ez=["innerRef"];function rz(t){var a=t.innerRef,r=u1(t,ez),n=Bc(r,"onExited","in","enter","exit","appear");return(0,G1.jsx)("input",W({ref:a},n,{css:(0,G1.css)({label:"dummyInput",background:0,border:0,caretColor:"transparent",fontSize:"inherit",gridArea:"1 / 1 / 2 / 3",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(.01)"},"","")}))}var nz=function(a){a.preventDefault(),a.stopPropagation()};function iz(t){var a=t.isEnabled,r=t.onBottomArrive,n=t.onBottomLeave,i=t.onTopArrive,o=t.onTopLeave,s=(0,M0.useRef)(!1),h=(0,M0.useRef)(!1),v=(0,M0.useRef)(0),f=(0,M0.useRef)(null),g=(0,M0.useCallback)(function(I,C){if(f.current!==null){var M=f.current,V=M.scrollTop,w=M.scrollHeight,E=M.clientHeight,b=f.current,P=C>0,k=w-E-V,R=!1;k>C&&s.current&&(n&&n(I),s.current=!1),P&&h.current&&(o&&o(I),h.current=!1),P&&C>k?(r&&!s.current&&r(I),b.scrollTop=w,R=!0,s.current=!0):!P&&-C>V&&(i&&!h.current&&i(I),b.scrollTop=0,R=!0,h.current=!0),R&&nz(I)}},[r,n,i,o]),m=(0,M0.useCallback)(function(I){g(I,I.deltaY)},[g]),z=(0,M0.useCallback)(function(I){v.current=I.changedTouches[0].clientY},[]),H=(0,M0.useCallback)(function(I){var C=v.current-I.changedTouches[0].clientY;g(I,C)},[g]),y=(0,M0.useCallback)(function(I){if(!!I){var C=Mc?{passive:!1}:!1;I.addEventListener("wheel",m,C),I.addEventListener("touchstart",z,C),I.addEventListener("touchmove",H,C)}},[H,z,m]),F=(0,M0.useCallback)(function(I){!I||(I.removeEventListener("wheel",m,!1),I.removeEventListener("touchstart",z,!1),I.removeEventListener("touchmove",H,!1))},[H,z,m]);return(0,M0.useEffect)(function(){if(!!a){var I=f.current;return y(I),function(){F(I)}}},[a,y,F]),function(I){f.current=I}}var lh=["boxSizing","height","overflow","paddingRight","position"],oh={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function uh(t){t.preventDefault()}function sh(t){t.stopPropagation()}function ch(){var t=this.scrollTop,a=this.scrollHeight,r=t+this.offsetHeight;t===0?this.scrollTop=1:r===a&&(this.scrollTop=t-1)}function hh(){return"ontouchstart"in window||navigator.maxTouchPoints}var vh=!!(typeof window<"u"&&window.document&&window.document.createElement),I3=0,ht={capture:!1,passive:!1};function lz(t){var a=t.isEnabled,r=t.accountForScrollbars,n=r===void 0?!0:r,i=(0,M0.useRef)({}),o=(0,M0.useRef)(null),s=(0,M0.useCallback)(function(v){if(!!vh){var f=document.body,g=f&&f.style;if(n&&lh.forEach(function(y){var F=g&&g[y];i.current[y]=F}),n&&I3<1){var m=parseInt(i.current.paddingRight,10)||0,z=document.body?document.body.clientWidth:0,H=window.innerWidth-z+m||0;Object.keys(oh).forEach(function(y){var F=oh[y];g&&(g[y]=F)}),g&&(g.paddingRight="".concat(H,"px"))}f&&hh()&&(f.addEventListener("touchmove",uh,ht),v&&(v.addEventListener("touchstart",ch,ht),v.addEventListener("touchmove",sh,ht))),I3+=1}},[n]),h=(0,M0.useCallback)(function(v){if(!!vh){var f=document.body,g=f&&f.style;I3=Math.max(I3-1,0),n&&I3<1&&lh.forEach(function(m){var z=i.current[m];g&&(g[m]=z)}),f&&hh()&&(f.removeEventListener("touchmove",uh,ht),v&&(v.removeEventListener("touchstart",ch,ht),v.removeEventListener("touchmove",sh,ht)))}},[n]);return(0,M0.useEffect)(function(){if(!!a){var v=o.current;return s(v),function(){h(v)}}},[a,s,h]),function(v){o.current=v}}var oz=function(){return document.activeElement&&document.activeElement.blur()},uz={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function sz(t){var a=t.children,r=t.lockEnabled,n=t.captureEnabled,i=n===void 0?!0:n,o=t.onBottomArrive,s=t.onBottomLeave,h=t.onTopArrive,v=t.onTopLeave,f=iz({isEnabled:i,onBottomArrive:o,onBottomLeave:s,onTopArrive:h,onTopLeave:v}),g=lz({isEnabled:r}),m=function(H){f(H),g(H)};return(0,G1.jsx)(M0.Fragment,null,r&&(0,G1.jsx)("div",{onClick:oz,css:uz}),a(m))}var cz=function(a){return a.label},hz=function(a){return a.label},vz=function(a){return a.value},dz=function(a){return!!a.isDisabled},fz={clearIndicator:Dc,container:Ec,control:Xc,dropdownIndicator:Nc,group:jc,groupHeading:Uc,indicatorsContainer:Tc,indicatorSeparator:Gc,input:Yc,loadingIndicator:Zc,loadingMessage:Fc,menu:Hc,menuList:yc,menuPortal:Ic,multiValue:Qc,multiValueLabel:$c,multiValueRemove:Kc,noOptionsMessage:Lc,option:th,placeholder:ah,singleValue:eh,valueContainer:Pc};var pz={primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},gz=4,mh=4,mz=38,zz=mh*2,xz={baseUnit:mh,controlHeight:mz,menuGutter:zz},Sr={borderRadius:gz,colors:pz,spacing:xz},Mz={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:Lr(),captureMenuScroll:!Lr(),closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:az(),formatGroupLabel:cz,getOptionLabel:hz,getOptionValue:vz,isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:dz,loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!zc(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(a){var r=a.count;return"".concat(r," result").concat(r!==1?"s":""," available")},styles:{},tabIndex:0,tabSelectsValue:!0};function dh(t,a,r,n){var i=Ch(t,a,r),o=Bh(t,a,r),s=Mh(t,a),h=p6(t,a);return{type:"option",data:a,isDisabled:i,isSelected:o,label:s,value:h,index:n}}function zh(t,a){return t.options.map(function(r,n){if("options"in r){var i=r.options.map(function(s,h){return dh(t,s,a,h)}).filter(function(s){return fh(t,s)});return i.length>0?{type:"group",data:r,options:i,index:n}:void 0}var o=dh(t,r,a,n);return fh(t,o)?o:void 0}).filter(Cc)}function xh(t){return t.reduce(function(a,r){return r.type==="group"?a.push.apply(a,Da(r.options.map(function(n){return n.data}))):a.push(r.data),a},[])}function Cz(t,a){return xh(zh(t,a))}function fh(t,a){var r=t.inputValue,n=r===void 0?"":r,i=a.data,o=a.isSelected,s=a.label,h=a.value;return(!Hh(t)||!o)&&Vh(t,{label:s,value:h,data:i},n)}function Bz(t,a){var r=t.focusedValue,n=t.selectValue,i=n.indexOf(r);if(i>-1){var o=a.indexOf(r);if(o>-1)return r;if(i-1?r:a[0]}var Mh=function(a,r){return a.getOptionLabel(r)},p6=function(a,r){return a.getOptionValue(r)};function Ch(t,a,r){return typeof t.isOptionDisabled=="function"?t.isOptionDisabled(a,r):!1}function Bh(t,a,r){if(r.indexOf(a)>-1)return!0;if(typeof t.isOptionSelected=="function")return t.isOptionSelected(a,r);var n=p6(t,a);return r.some(function(i){return p6(t,i)===n})}function Vh(t,a,r){return t.filterOption?t.filterOption(a,r):!0}var Hh=function(a){var r=a.hideSelectedOptions,n=a.isMulti;return r===void 0?n:r},Hz=1,Ir=function(t){De(r,t);var a=We(r);function r(n){var i;if(Oe(this,r),i=a.call(this,n),i.state={ariaSelection:null,focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!1,prevWasFocused:!1,inputIsHiddenAfterUpdate:void 0,prevProps:void 0},i.blockOptionHover=!1,i.isComposing=!1,i.commonProps=void 0,i.initialTouchX=0,i.initialTouchY=0,i.instancePrefix="",i.openAfterFocus=!1,i.scrollToFocusedOptionOnUpdate=!1,i.userIsDragging=void 0,i.controlRef=null,i.getControlRef=function(h){i.controlRef=h},i.focusedOptionRef=null,i.getFocusedOptionRef=function(h){i.focusedOptionRef=h},i.menuListRef=null,i.getMenuListRef=function(h){i.menuListRef=h},i.inputRef=null,i.getInputRef=function(h){i.inputRef=h},i.focus=i.focusInput,i.blur=i.blurInput,i.onChange=function(h,v){var f=i.props,g=f.onChange,m=f.name;v.name=m,i.ariaOnChange(h,v),g(h,v)},i.setValue=function(h,v,f){var g=i.props,m=g.closeMenuOnSelect,z=g.isMulti,H=g.inputValue;i.onInputChange("",{action:"set-value",prevInputValue:H}),m&&(i.setState({inputIsHiddenAfterUpdate:!z}),i.onMenuClose()),i.setState({clearFocusValueOnUpdate:!0}),i.onChange(h,{action:v,option:f})},i.selectOption=function(h){var v=i.props,f=v.blurInputOnSelect,g=v.isMulti,m=v.name,z=i.state.selectValue,H=g&&i.isOptionSelected(h,z),y=i.isOptionDisabled(h,z);if(H){var F=i.getOptionValue(h);i.setValue(z.filter(function(I){return i.getOptionValue(I)!==F}),"deselect-option",h)}else if(!y)g?i.setValue([].concat(Da(z),[h]),"select-option",h):i.setValue(h,"select-option");else{i.ariaOnChange(h,{action:"select-option",option:h,name:m});return}f&&i.blurInput()},i.removeValue=function(h){var v=i.props.isMulti,f=i.state.selectValue,g=i.getOptionValue(h),m=f.filter(function(H){return i.getOptionValue(H)!==g}),z=b3(v,m,m[0]||null);i.onChange(z,{action:"remove-value",removedValue:h}),i.focusInput()},i.clearValue=function(){var h=i.state.selectValue;i.onChange(b3(i.props.isMulti,[],null),{action:"clear",removedValues:h})},i.popValue=function(){var h=i.props.isMulti,v=i.state.selectValue,f=v[v.length-1],g=v.slice(0,v.length-1),m=b3(h,g,g[0]||null);i.onChange(m,{action:"pop-value",removedValue:f})},i.getValue=function(){return i.state.selectValue},i.cx=function(){for(var h=arguments.length,v=new Array(h),f=0;fz||m>z}},i.onTouchEnd=function(h){i.userIsDragging||(i.controlRef&&!i.controlRef.contains(h.target)&&i.menuListRef&&!i.menuListRef.contains(h.target)&&i.blurInput(),i.initialTouchX=0,i.initialTouchY=0)},i.onControlTouchEnd=function(h){i.userIsDragging||i.onControlMouseDown(h)},i.onClearIndicatorTouchEnd=function(h){i.userIsDragging||i.onClearIndicatorMouseDown(h)},i.onDropdownIndicatorTouchEnd=function(h){i.userIsDragging||i.onDropdownIndicatorMouseDown(h)},i.handleInputChange=function(h){var v=i.props.inputValue,f=h.currentTarget.value;i.setState({inputIsHiddenAfterUpdate:!1}),i.onInputChange(f,{action:"input-change",prevInputValue:v}),i.props.menuIsOpen||i.onMenuOpen()},i.onInputFocus=function(h){i.props.onFocus&&i.props.onFocus(h),i.setState({inputIsHiddenAfterUpdate:!1,isFocused:!0}),(i.openAfterFocus||i.props.openMenuOnFocus)&&i.openMenu("first"),i.openAfterFocus=!1},i.onInputBlur=function(h){var v=i.props.inputValue;if(i.menuListRef&&i.menuListRef.contains(document.activeElement)){i.inputRef.focus();return}i.props.onBlur&&i.props.onBlur(h),i.onInputChange("",{action:"input-blur",prevInputValue:v}),i.onMenuClose(),i.setState({focusedValue:null,isFocused:!1})},i.onOptionHover=function(h){i.blockOptionHover||i.state.focusedOption===h||i.setState({focusedOption:h})},i.shouldHideSelectedOptions=function(){return Hh(i.props)},i.onKeyDown=function(h){var v=i.props,f=v.isMulti,g=v.backspaceRemovesValue,m=v.escapeClearsValue,z=v.inputValue,H=v.isClearable,y=v.isDisabled,F=v.menuIsOpen,I=v.onKeyDown,C=v.tabSelectsValue,M=v.openMenuOnFocus,V=i.state,w=V.focusedOption,E=V.focusedValue,b=V.selectValue;if(!y&&!(typeof I=="function"&&(I(h),h.defaultPrevented))){switch(i.blockOptionHover=!0,h.key){case"ArrowLeft":if(!f||z)return;i.focusValue("previous");break;case"ArrowRight":if(!f||z)return;i.focusValue("next");break;case"Delete":case"Backspace":if(z)return;if(E)i.removeValue(E);else{if(!g)return;f?i.popValue():H&&i.clearValue()}break;case"Tab":if(i.isComposing||h.shiftKey||!F||!C||!w||M&&i.isOptionSelected(w,b))return;i.selectOption(w);break;case"Enter":if(h.keyCode===229)break;if(F){if(!w||i.isComposing)return;i.selectOption(w);break}return;case"Escape":F?(i.setState({inputIsHiddenAfterUpdate:!1}),i.onInputChange("",{action:"menu-close",prevInputValue:z}),i.onMenuClose()):H&&m&&i.clearValue();break;case" ":if(z)return;if(!F){i.openMenu("first");break}if(!w)return;i.selectOption(w);break;case"ArrowUp":F?i.focusOption("up"):i.openMenu("last");break;case"ArrowDown":F?i.focusOption("down"):i.openMenu("first");break;case"PageUp":if(!F)return;i.focusOption("pageup");break;case"PageDown":if(!F)return;i.focusOption("pagedown");break;case"Home":if(!F)return;i.focusOption("first");break;case"End":if(!F)return;i.focusOption("last");break;default:return}h.preventDefault()}},i.instancePrefix="react-select-"+(i.props.instanceId||++Hz),i.state.selectValue=yr(n.value),n.menuIsOpen&&i.state.selectValue.length){var o=i.buildFocusableOptions(),s=o.indexOf(i.state.selectValue[0]);i.state.focusedOption=o[s]}return i}return Ne(r,[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput(),this.props.menuIsOpen&&this.state.focusedOption&&this.menuListRef&&this.focusedOptionRef&&_r(this.menuListRef,this.focusedOptionRef)}},{key:"componentDidUpdate",value:function(i){var o=this.props,s=o.isDisabled,h=o.menuIsOpen,v=this.state.isFocused;(v&&!s&&i.isDisabled||v&&h&&!i.menuIsOpen)&&this.focusInput(),v&&s&&!i.isDisabled?this.setState({isFocused:!1},this.onMenuClose):!v&&!s&&i.isDisabled&&this.inputRef===document.activeElement&&this.setState({isFocused:!0}),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&(_r(this.menuListRef,this.focusedOptionRef),this.scrollToFocusedOptionOnUpdate=!1)}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){this.onInputChange("",{action:"menu-close",prevInputValue:this.props.inputValue}),this.props.onMenuClose()}},{key:"onInputChange",value:function(i,o){this.props.onInputChange(i,o)}},{key:"focusInput",value:function(){!this.inputRef||this.inputRef.focus()}},{key:"blurInput",value:function(){!this.inputRef||this.inputRef.blur()}},{key:"openMenu",value:function(i){var o=this,s=this.state,h=s.selectValue,v=s.isFocused,f=this.buildFocusableOptions(),g=i==="first"?0:f.length-1;if(!this.props.isMulti){var m=f.indexOf(h[0]);m>-1&&(g=m)}this.scrollToFocusedOptionOnUpdate=!(v&&this.menuListRef),this.setState({inputIsHiddenAfterUpdate:!1,focusedValue:null,focusedOption:f[g]},function(){return o.onMenuOpen()})}},{key:"focusValue",value:function(i){var o=this.state,s=o.selectValue,h=o.focusedValue;if(!!this.props.isMulti){this.setState({focusedOption:null});var v=s.indexOf(h);h||(v=-1);var f=s.length-1,g=-1;if(!!s.length){switch(i){case"previous":v===0?g=0:v===-1?g=f:g=v-1;break;case"next":v>-1&&v0&&arguments[0]!==void 0?arguments[0]:"first",o=this.props.pageSize,s=this.state.focusedOption,h=this.getFocusableOptions();if(!!h.length){var v=0,f=h.indexOf(s);s||(f=-1),i==="up"?v=f>0?f-1:h.length-1:i==="down"?v=(f+1)%h.length:i==="pageup"?(v=f-o,v<0&&(v=0)):i==="pagedown"?(v=f+o,v>h.length-1&&(v=h.length-1)):i==="last"&&(v=h.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:h[v],focusedValue:null})}}},{key:"getTheme",value:function(){return this.props.theme?typeof this.props.theme=="function"?this.props.theme(Sr):c0(c0({},Sr),this.props.theme):Sr}},{key:"getCommonProps",value:function(){var i=this.clearValue,o=this.cx,s=this.getStyles,h=this.getValue,v=this.selectOption,f=this.setValue,g=this.props,m=g.isMulti,z=g.isRtl,H=g.options,y=this.hasValue();return{clearValue:i,cx:o,getStyles:s,getValue:h,hasValue:y,isMulti:m,isRtl:z,options:H,selectOption:v,selectProps:g,setValue:f,theme:this.getTheme()}}},{key:"hasValue",value:function(){var i=this.state.selectValue;return i.length>0}},{key:"hasOptions",value:function(){return!!this.getFocusableOptions().length}},{key:"isClearable",value:function(){var i=this.props,o=i.isClearable,s=i.isMulti;return o===void 0?s:o}},{key:"isOptionDisabled",value:function(i,o){return Ch(this.props,i,o)}},{key:"isOptionSelected",value:function(i,o){return Bh(this.props,i,o)}},{key:"filterOption",value:function(i,o){return Vh(this.props,i,o)}},{key:"formatOptionLabel",value:function(i,o){if(typeof this.props.formatOptionLabel=="function"){var s=this.props.inputValue,h=this.state.selectValue;return this.props.formatOptionLabel(i,{context:o,inputValue:s,selectValue:h})}else return this.getOptionLabel(i)}},{key:"formatGroupLabel",value:function(i){return this.props.formatGroupLabel(i)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"renderInput",value:function(){var i=this.props,o=i.isDisabled,s=i.isSearchable,h=i.inputId,v=i.inputValue,f=i.tabIndex,g=i.form,m=i.menuIsOpen,z=this.getComponents(),H=z.Input,y=this.state,F=y.inputIsHidden,I=y.ariaSelection,C=this.commonProps,M=h||this.getElementId("input"),V=c0(c0(c0({"aria-autocomplete":"list","aria-expanded":m,"aria-haspopup":!0,"aria-errormessage":this.props["aria-errormessage"],"aria-invalid":this.props["aria-invalid"],"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],role:"combobox"},m&&{"aria-controls":this.getElementId("listbox"),"aria-owns":this.getElementId("listbox")}),!s&&{"aria-readonly":!0}),this.hasValue()?I?.action==="initial-input-focus"&&{"aria-describedby":this.getElementId("live-region")}:{"aria-describedby":this.getElementId("placeholder")});return s?V0.createElement(H,W({},C,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:M,innerRef:this.getInputRef,isDisabled:o,isHidden:F,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:f,form:g,type:"text",value:v},V)):V0.createElement(rz,W({id:M,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:F3,onFocus:this.onInputFocus,disabled:o,tabIndex:f,inputMode:"none",form:g,value:""},V))}},{key:"renderPlaceholderOrValue",value:function(){var i=this,o=this.getComponents(),s=o.MultiValue,h=o.MultiValueContainer,v=o.MultiValueLabel,f=o.MultiValueRemove,g=o.SingleValue,m=o.Placeholder,z=this.commonProps,H=this.props,y=H.controlShouldRenderValue,F=H.isDisabled,I=H.isMulti,C=H.inputValue,M=H.placeholder,V=this.state,w=V.selectValue,E=V.focusedValue,b=V.isFocused;if(!this.hasValue()||!y)return C?null:V0.createElement(m,W({},z,{key:"placeholder",isDisabled:F,isFocused:b,innerProps:{id:this.getElementId("placeholder")}}),M);if(I)return w.map(function(k,R){var N=k===E,t0="".concat(i.getOptionLabel(k),"-").concat(i.getOptionValue(k));return V0.createElement(s,W({},z,{components:{Container:h,Label:v,Remove:f},isFocused:N,isDisabled:F,key:t0,index:R,removeProps:{onClick:function(){return i.removeValue(k)},onTouchEnd:function(){return i.removeValue(k)},onMouseDown:function(H0){H0.preventDefault()}},data:k}),i.formatOptionLabel(k,"value"))});if(C)return null;var P=w[0];return V0.createElement(g,W({},z,{data:P,isDisabled:F}),this.formatOptionLabel(P,"value"))}},{key:"renderClearIndicator",value:function(){var i=this.getComponents(),o=i.ClearIndicator,s=this.commonProps,h=this.props,v=h.isDisabled,f=h.isLoading,g=this.state.isFocused;if(!this.isClearable()||!o||v||!this.hasValue()||f)return null;var m={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return V0.createElement(o,W({},s,{innerProps:m,isFocused:g}))}},{key:"renderLoadingIndicator",value:function(){var i=this.getComponents(),o=i.LoadingIndicator,s=this.commonProps,h=this.props,v=h.isDisabled,f=h.isLoading,g=this.state.isFocused;if(!o||!f)return null;var m={"aria-hidden":"true"};return V0.createElement(o,W({},s,{innerProps:m,isDisabled:v,isFocused:g}))}},{key:"renderIndicatorSeparator",value:function(){var i=this.getComponents(),o=i.DropdownIndicator,s=i.IndicatorSeparator;if(!o||!s)return null;var h=this.commonProps,v=this.props.isDisabled,f=this.state.isFocused;return V0.createElement(s,W({},h,{isDisabled:v,isFocused:f}))}},{key:"renderDropdownIndicator",value:function(){var i=this.getComponents(),o=i.DropdownIndicator;if(!o)return null;var s=this.commonProps,h=this.props.isDisabled,v=this.state.isFocused,f={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return V0.createElement(o,W({},s,{innerProps:f,isDisabled:h,isFocused:v}))}},{key:"renderMenu",value:function(){var i=this,o=this.getComponents(),s=o.Group,h=o.GroupHeading,v=o.Menu,f=o.MenuList,g=o.MenuPortal,m=o.LoadingMessage,z=o.NoOptionsMessage,H=o.Option,y=this.commonProps,F=this.state.focusedOption,I=this.props,C=I.captureMenuScroll,M=I.inputValue,V=I.isLoading,w=I.loadingMessage,E=I.minMenuHeight,b=I.maxMenuHeight,P=I.menuIsOpen,k=I.menuPlacement,R=I.menuPosition,N=I.menuPortalTarget,t0=I.menuShouldBlockScroll,v0=I.menuShouldScrollIntoView,H0=I.noOptionsMessage,h0=I.onMenuScrollToTop,m0=I.onMenuScrollToBottom;if(!P)return null;var U=function($,i0){var b0=$.type,E0=$.data,e1=$.isDisabled,m1=$.isSelected,n2=$.label,x2=$.value,E2=F===E0,b9=e1?void 0:function(){return i.onOptionHover(E0)},P2=e1?void 0:function(){return i.selectOption(E0)},r9="".concat(i.getElementId("option"),"-").concat(i0),T2={id:r9,onClick:P2,onMouseMove:b9,onMouseOver:b9,tabIndex:-1};return V0.createElement(H,W({},y,{innerProps:T2,data:E0,isDisabled:e1,isSelected:m1,key:r9,label:n2,type:b0,value:x2,isFocused:E2,innerRef:E2?i.getFocusedOptionRef:void 0}),i.formatOptionLabel($.data,"menu"))},O0;if(this.hasOptions())O0=this.getCategorizedOptions().map(function(a0){if(a0.type==="group"){var $=a0.data,i0=a0.options,b0=a0.index,E0="".concat(i.getElementId("group"),"-").concat(b0),e1="".concat(E0,"-heading");return V0.createElement(s,W({},y,{key:E0,data:$,options:i0,Heading:h,headingProps:{id:e1,data:a0.data},label:i.formatGroupLabel(a0.data)}),a0.options.map(function(m1){return U(m1,"".concat(b0,"-").concat(m1.index))}))}else if(a0.type==="option")return U(a0,"".concat(a0.index))});else if(V){var X=w({inputValue:M});if(X===null)return null;O0=V0.createElement(m,y,X)}else{var p0=H0({inputValue:M});if(p0===null)return null;O0=V0.createElement(z,y,p0)}var w0={minMenuHeight:E,maxMenuHeight:b,menuPlacement:k,menuPosition:R,menuShouldScrollIntoView:v0},d0=V0.createElement(Ac,W({},y,w0),function(a0){var $=a0.ref,i0=a0.placerProps,b0=i0.placement,E0=i0.maxHeight;return V0.createElement(v,W({},y,w0,{innerRef:$,innerProps:{onMouseDown:i.onMenuMouseDown,onMouseMove:i.onMenuMouseMove,id:i.getElementId("listbox")},isLoading:V,placement:b0}),V0.createElement(sz,{captureEnabled:C,onTopArrive:h0,onBottomArrive:m0,lockEnabled:t0},function(e1){return V0.createElement(f,W({},y,{innerRef:function(n2){i.getMenuListRef(n2),e1(n2)},isLoading:V,maxHeight:E0,focusedOption:F}),O0)}))});return N||R==="fixed"?V0.createElement(g,W({},y,{appendTo:N,controlElement:this.controlRef,menuPlacement:k,menuPosition:R}),d0):d0}},{key:"renderFormField",value:function(){var i=this,o=this.props,s=o.delimiter,h=o.isDisabled,v=o.isMulti,f=o.name,g=this.state.selectValue;if(!(!f||h))if(v)if(s){var m=g.map(function(y){return i.getOptionValue(y)}).join(s);return V0.createElement("input",{name:f,type:"hidden",value:m})}else{var z=g.length>0?g.map(function(y,F){return V0.createElement("input",{key:"i-".concat(F),name:f,type:"hidden",value:i.getOptionValue(y)})}):V0.createElement("input",{name:f,type:"hidden"});return V0.createElement("div",null,z)}else{var H=g[0]?this.getOptionValue(g[0]):"";return V0.createElement("input",{name:f,type:"hidden",value:H})}}},{key:"renderLiveRegion",value:function(){var i=this.commonProps,o=this.state,s=o.ariaSelection,h=o.focusedOption,v=o.focusedValue,f=o.isFocused,g=o.selectValue,m=this.getFocusableOptions();return V0.createElement($m,W({},i,{id:this.getElementId("live-region"),ariaSelection:s,focusedOption:h,focusedValue:v,isFocused:f,selectValue:g,focusableOptions:m}))}},{key:"render",value:function(){var i=this.getComponents(),o=i.Control,s=i.IndicatorsContainer,h=i.SelectContainer,v=i.ValueContainer,f=this.props,g=f.className,m=f.id,z=f.isDisabled,H=f.menuIsOpen,y=this.state.isFocused,F=this.commonProps=this.getCommonProps();return V0.createElement(h,W({},F,{className:g,innerProps:{id:m,onKeyDown:this.onKeyDown},isDisabled:z,isFocused:y}),this.renderLiveRegion(),V0.createElement(o,W({},F,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:z,isFocused:y,menuIsOpen:H}),V0.createElement(v,W({},F,{isDisabled:z}),this.renderPlaceholderOrValue(),this.renderInput()),V0.createElement(s,W({},F,{isDisabled:z}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}],[{key:"getDerivedStateFromProps",value:function(i,o){var s=o.prevProps,h=o.clearFocusValueOnUpdate,v=o.inputIsHiddenAfterUpdate,f=o.ariaSelection,g=o.isFocused,m=o.prevWasFocused,z=i.options,H=i.value,y=i.menuIsOpen,F=i.inputValue,I=i.isMulti,C=yr(H),M={};if(s&&(H!==s.value||z!==s.options||y!==s.menuIsOpen||F!==s.inputValue)){var V=y?Cz(i,C):[],w=h?Bz(o,C):null,E=Vz(o,V);M={selectValue:C,focusedOption:E,focusedValue:w,clearFocusValueOnUpdate:!1}}var b=v!=null&&i!==s?{inputIsHidden:v,inputIsHiddenAfterUpdate:void 0}:{},P=f,k=g&&m;return g&&!k&&(P={value:b3(I,C,C[0]||null),options:C,action:"initial-input-focus"},k=!m),f?.action==="initial-input-focus"&&(P=null),c0(c0(c0({},M),b),{},{prevProps:i,ariaSelection:P,prevWasFocused:k})}}]),r}(M0.Component);Ir.defaultProps=Mz;var wz=j(Xa());var QB=j(e5());var Az=(0,Er.forwardRef)(function(t,a){var r=es(t);return wh.createElement(Ir,W({ref:a},r))});var Ah=Az;var $0=j(u0()),z2=j(u0());function E3(t,a){t.prototype=Object.create(a.prototype),t.prototype.constructor=t,i5(t,a)}var P3=j(u0()),T3=j(e5());var Pr={disabled:!1};var yh=j(u0()),vt=yh.default.createContext(null);var _h=function(a){return a.scrollTop};var R3="unmounted",u5="exited",s5="entering",ft="entered",Tr="exiting",e9=function(t){E3(a,t);function a(n,i){var o;o=t.call(this,n,i)||this;var s=i,h=s&&!s.isMounting?n.enter:n.appear,v;return o.appearStatus=null,n.in?h?(v=u5,o.appearStatus=s5):v=ft:n.unmountOnExit||n.mountOnEnter?v=R3:v=u5,o.state={status:v},o.nextCallback=null,o}a.getDerivedStateFromProps=function(i,o){var s=i.in;return s&&o.status===R3?{status:u5}:null};var r=a.prototype;return r.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},r.componentDidUpdate=function(i){var o=null;if(i!==this.props){var s=this.state.status;this.props.in?s!==s5&&s!==ft&&(o=s5):(s===s5||s===ft)&&(o=Tr)}this.updateStatus(!1,o)},r.componentWillUnmount=function(){this.cancelNextCallback()},r.getTimeouts=function(){var i=this.props.timeout,o,s,h;return o=s=h=i,i!=null&&typeof i!="number"&&(o=i.exit,s=i.enter,h=i.appear!==void 0?i.appear:s),{exit:o,enter:s,appear:h}},r.updateStatus=function(i,o){if(i===void 0&&(i=!1),o!==null)if(this.cancelNextCallback(),o===s5){if(this.props.unmountOnExit||this.props.mountOnEnter){var s=this.props.nodeRef?this.props.nodeRef.current:T3.default.findDOMNode(this);s&&_h(s)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===u5&&this.setState({status:R3})},r.performEnter=function(i){var o=this,s=this.props.enter,h=this.context?this.context.isMounting:i,v=this.props.nodeRef?[h]:[T3.default.findDOMNode(this),h],f=v[0],g=v[1],m=this.getTimeouts(),z=h?m.appear:m.enter;if(!i&&!s||Pr.disabled){this.safeSetState({status:ft},function(){o.props.onEntered(f)});return}this.props.onEnter(f,g),this.safeSetState({status:s5},function(){o.props.onEntering(f,g),o.onTransitionEnd(z,function(){o.safeSetState({status:ft},function(){o.props.onEntered(f,g)})})})},r.performExit=function(){var i=this,o=this.props.exit,s=this.getTimeouts(),h=this.props.nodeRef?void 0:T3.default.findDOMNode(this);if(!o||Pr.disabled){this.safeSetState({status:u5},function(){i.props.onExited(h)});return}this.props.onExit(h),this.safeSetState({status:Tr},function(){i.props.onExiting(h),i.onTransitionEnd(s.exit,function(){i.safeSetState({status:u5},function(){i.props.onExited(h)})})})},r.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},r.safeSetState=function(i,o){o=this.setNextCallback(o),this.setState(i,o)},r.setNextCallback=function(i){var o=this,s=!0;return this.nextCallback=function(h){s&&(s=!1,o.nextCallback=null,i(h))},this.nextCallback.cancel=function(){s=!1},this.nextCallback},r.onTransitionEnd=function(i,o){this.setNextCallback(o);var s=this.props.nodeRef?this.props.nodeRef.current:T3.default.findDOMNode(this),h=i==null&&!this.props.addEndListener;if(!s||h){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var v=this.props.nodeRef?[this.nextCallback]:[s,this.nextCallback],f=v[0],g=v[1];this.props.addEndListener(f,g)}i!=null&&setTimeout(this.nextCallback,i)},r.render=function(){var i=this.state.status;if(i===R3)return null;var o=this.props,s=o.children,h=o.in,v=o.mountOnEnter,f=o.unmountOnExit,g=o.appear,m=o.enter,z=o.exit,H=o.timeout,y=o.addEndListener,F=o.onEnter,I=o.onEntering,C=o.onEntered,M=o.onExit,V=o.onExiting,w=o.onExited,E=o.nodeRef,b=n5(o,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return P3.default.createElement(vt.Provider,{value:null},typeof s=="function"?s(i,b):P3.default.cloneElement(P3.default.Children.only(s),b))},a}(P3.default.Component);e9.contextType=vt;e9.propTypes={};function dt(){}e9.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:dt,onEntering:dt,onEntered:dt,onExit:dt,onExiting:dt,onExited:dt};e9.UNMOUNTED=R3;e9.EXITED=u5;e9.ENTERING=s5;e9.ENTERED=ft;e9.EXITING=Tr;var g6=e9;var k3=j(u0());var r2=j(u0());function m6(t,a){var r=function(o){return a&&(0,r2.isValidElement)(o)?a(o):o},n=Object.create(null);return t&&r2.Children.map(t,function(i){return i}).forEach(function(i){n[i.key]=r(i)}),n}function yz(t,a){t=t||{},a=a||{};function r(g){return g in a?a[g]:t[g]}var n=Object.create(null),i=[];for(var o in t)o in a?i.length&&(n[o]=i,i=[]):i.push(o);var s,h={};for(var v in a){if(n[v])for(s=0;s0&&arguments[0]!==void 0?arguments[0]:{},r=c6({components:a}),n=r.Input,i=r.MultiValue,o=r.Placeholder,s=r.SingleValue,h=r.ValueContainer,v=u1(r,Zz);return c0({Input:Sz(n),MultiValue:Pz(i),Placeholder:Tz(o),SingleValue:Rz(s),ValueContainer:Nz(h)},v)},O3=bh(),IV=O3.Input,EV=O3.MultiValue,PV=O3.Placeholder,TV=O3.SingleValue,RV=O3.ValueContainer,Wz=h6(bh),Ih=Wz;var Z1=j(u0());var Th=j(Ta()),Rh=j(u0());var Eh=j(u0()),Ph=j(lt()),Xz=["as","disabled"];function jz(t,a){if(t==null)return{};var r={},n=Object.keys(t),i,o;for(o=0;o=0)&&(r[i]=t[i]);return r}function Uz(t){return!t||t.trim()==="#"}function Or({tagName:t,disabled:a,href:r,target:n,rel:i,role:o,onClick:s,tabIndex:h=0,type:v}){t||(r!=null||n!=null||i!=null?t="a":t="button");let f={tagName:t};if(t==="button")return[{type:v||"button",disabled:a},f];let g=z=>{if((a||t==="a"&&Uz(r))&&z.preventDefault(),a){z.stopPropagation();return}s?.(z)},m=z=>{z.key===" "&&(z.preventDefault(),g(z))};return t==="a"&&(r||(r="#"),a&&(r=void 0)),[{role:o??"button",disabled:void 0,tabIndex:a?void 0:h,href:r,target:t==="a"?n:void 0,"aria-disabled":a||void 0,rel:t==="a"?i:void 0,onClick:g,onKeyDown:m},f]}var Yz=Eh.forwardRef((t,a)=>{let{as:r,disabled:n}=t,i=jz(t,Xz),[o,{tagName:s}]=Or(Object.assign({tagName:r,disabled:n},i));return(0,Ph.jsx)(s,Object.assign({},i,o,{ref:a}))});Yz.displayName="Button";var kh=j(lt()),Jz={variant:"primary",active:!1,disabled:!1},Nr=Rh.forwardRef(({as:t,bsPrefix:a,variant:r,size:n,active:i,className:o,...s},h)=>{let v=ot(a,"btn"),[f,{tagName:g}]=Or({tagName:t,...s});return(0,kh.jsx)(g,{...f,...s,ref:h,className:(0,Th.default)(o,v,i&&"active",r&&`${v}-${r}`,n&&`${v}-${n}`,s.href&&s.disabled&&"disabled")})});Nr.displayName="Button";Nr.defaultProps=Jz;var Oh=Nr;function Qz(t){let[a,r]=(0,Z1.useState)(!1),n=()=>r(!1);return Z1.default.createElement("div",null,Z1.default.createElement("button",{onClick:()=>r(!0),className:"about-button"},t.buttonText),a?Z1.default.createElement("div",{class:"Modal"},Z1.default.createElement("aside",{class:"Modal__content"},Z1.default.createElement("div",{class:"Modal__content--header"},Z1.default.createElement("h2",null,t.title),Z1.default.createElement("p",null,t.subtitle)),Z1.default.createElement("p",null,t.content),Z1.default.createElement("div",{class:"Modal__content--footer"},Z1.default.createElement(Oh,{onClick:n},"Close")))):null)}var Nh=Qz;var S9=j(u0()),Dh=j(q2());function Dr(){let[t,a]=(0,S9.useState)(null),[r,n]=(0,S9.useState)([]),i=Be();return(0,S9.useEffect)(()=>{i.locate().on("locationfound",function(o){a(o.latlng);let s=o.accuracy;Dh.default.circle(o.latlng,s).addTo(i),n(o.bounds.toBBoxString().split(","))})},[i]),t===null?null:S9.default.createElement(Ve,{center:t},S9.default.createElement(B3,null,"You are here."))}var Kz=Ih(),Gh=Wu.features.filter(t=>t.geometry.type==="MultiLineString"&&t.properties.route_id).reduce((t,a)=>({...t,[a.properties.route_id]:J.default.createElement(He,{key:a.properties.route_id,data:a,pathOptions:{color:a.properties.route_color}})}),{}),qz=new Wr.default.Icon({iconUrl:Gr(),iconRetinaUrl:Gr(),iconAnchor:null,shadowUrl:null,shadowSize:null,shadowAnchor:null,iconSize:new Wr.default.Point(24,24),className:"leaflet-marker-icon"}),tx=(0,J.forwardRef)(({children:t,...a},r)=>{let n=(0,J.useRef)(),{rotationAngle:i,rotationOrigin:o}=a;return(0,J.useEffect)(()=>{let s=n.current;s&&(s.setRotationAngle(i),s.setRotationOrigin(o))},[i,o]),J.default.createElement(ye,{ref:s=>{n.current=s,r&&(r.current=s)},...a},t)});function ax(t){let a=new Date-new Date(t);if(a<6e4)return"less than a minute ago";let r=Math.round(a/6e4);return r===1?"1 minute ago":r+" minutes ago"}var ex=window.location.protocol=="http:"?"ws":"wss",rx=`${ex}://${window.location.hostname}:${window.location.port}/ws`,Zr=new WebSocket(rx),Xr=class extends J.default.Component{constructor(a){super(a);let r=localStorage.getItem("routes")||"[]";this.state={vehicles:[],routes:JSON.parse(r),connected:!1,lastUpdate:new Date,now:new Date},this.handleRouteChange=this.handleRouteChange.bind(this)}componentWillMount(){Zr.onopen=()=>{console.log("Websocket Open"),this.setState({connected:!0})},Zr.onclose=()=>{console.log("Closing websocket"),this.setState({connected:!1})},Zr.onmessage=a=>{console.log("onmessage"),this.state.connected||this.setState({connected:!0});let r=JSON.parse(a.data),n=new Date;this.setState({vehicles:r,lastUpdate:n}),console.dir(r)},this.interval=setInterval(()=>this.setState({now:Date.now()}),1e3)}componentWillUnmount(){clearInterval(this.interval)}routeComponents(){return this.state.routes.length===0?Object.values(Gh):this.state.routes.map(a=>a.value).map(a=>Gh[a]).filter(a=>a!==null)}markerComponents(){let a=r=>!0;if(this.state.routes.length>0){let r=this.state.routes.map(n=>n.value);a=n=>r.includes(n.rt),console.log("query filter on routes: "+r)}return this.state.vehicles.filter(a).map(r=>{let n=[r.lat,r.lon].map(parseFloat),i=parseInt(r.hdg,10),o=ax(r.tmstmp);return J.default.createElement(tx,{key:r.vid,position:n,icon:qz,rotationAngle:i,rotationOrigin:"center"},J.default.createElement(B3,null,r.rt,r.des?" - "+r.des:"",J.default.createElement("br",null),o))})}mapContainer(){return J.default.createElement(Ae,{center:[29.95569,-90.0786107],zoom:13,zoomControl:!1},J.default.createElement(_e,{attribution:'\xA9 OpenStreetMap contributors',url:"https://tile.openstreetmap.org/{z}/{x}/{y}.png"}),this.markerComponents(),this.routeComponents(),J.default.createElement(Dr,null))}notConnectedScreen(){return J.default.createElement(Ie,{className:"justify-content-md-center"},J.default.createElement(Pe,{md:"auto"},J.default.createElement("p",null,"Looks like you aren't connected. Maybe try refreshing the page. If it's not working please ",J.default.createElement("a",{href:"https://github.com/codefornola/nola-transit-map/issues"},"get in touch with us"),".")))}buildControlBar(){let a=this.state.connected?J.default.createElement(J.default.Fragment,null,J.default.createElement("span",{className:"control-bar__connection-container connected"},J.default.createElement(Nu,null),J.default.createElement("span",{class:"control-bar__label-text"},"Connected"))):J.default.createElement(J.default.Fragment,null,J.default.createElement("span",{className:"control-bar__connection-container not-connected"},J.default.createElement(Du,null),J.default.createElement("span",{class:"control-bar__label-text"},"Not Connected")));if(this.state.connected&&this.lagging()&&(a=J.default.createElement(J.default.Fragment,null,J.default.createElement("span",{className:"control-bar__connection-container trouble-connecting"},J.default.createElement(Gu,null),"Trouble Connecting..."))),!this.state.connected)return this.notConnectedScreen();if(this.state.vehicles.length===0)return J.default.createElement(Ie,{className:"justify-content-md-center"},J.default.createElement(Pe,{md:"auto"},J.default.createElement("p",null,"No Vehicles found yet. Are you connected?")));let n=[...new Set(this.state.vehicles.map(i=>i.rt))].map(i=>({value:i,label:i}));return J.default.createElement("div",{class:"control-bar"},J.default.createElement("label",{class:"control-bar__filter-label"},J.default.createElement("span",{class:"control-bar__label-text"},"Filter Routes:"),J.default.createElement(Ah,{closeMenuOnSelect:!1,components:Kz,defaultValue:[],value:this.state.routes,isMulti:!0,options:n,onChange:this.handleRouteChange,className:"route-filter",placeholder:"Filter Select Route(s)"})),a)}handleRouteChange(a){this.setState({routes:a}),localStorage.setItem("routes",JSON.stringify(a))}lagging(){return Math.floor((this.state.now-this.state.lastUpdate)/1e3)>13}render(){return J.default.createElement("div",{className:"App"},J.default.createElement("main",null,this.buildControlBar(),this.mapContainer(),J.default.createElement(Nh,{title:"NOLA Transit Map",subtitle:["Created by ",J.default.createElement("a",{href:"https://codeforneworleans.org/"}," Code For New Orleans")],buttonText:[J.default.createElement(Zu,null),"About this project"],content:["When the RTA switched to the new LePass app, all of the realtime data stopped working. Relying on public transportation in New Orleans without this data is extremely challenging. We made this map as a stop gap until realtime starts working again.",J.default.createElement("br",null),J.default.createElement("br",null),"If you find a problem, or have a feature request, consider ",J.default.createElement("a",{href:"https://github.com/codefornola/nola-transit-map/issues"},"filing an issue here.")," You can also join us on slack in the #civic-hacking channel of the ",J.default.createElement("a",{href:"https://join.slack.com/t/nola/shared_invite/zt-4882ja82-iGm2yO6KCxsi2aGJ9vnsUQ"},"Nola Devs slack.")," Take a look at ",J.default.createElement("a",{href:"https://github.com/codefornola/nola-transit-map"},"the README on GitHub")," to learn more about how it works."]})))}};window.initApp=function(){console.log("initApp()"),(0,Zh.createRoot)(document.getElementById("main")).render(J.default.createElement(Xr,null))};})(); +`]))),Zc=function(a){var r=a.isFocused,n=a.size,i=a.theme,o=i.colors,s=i.spacing.baseUnit;return{label:"loadingIndicator",color:r?o.neutral60:o.neutral20,display:"flex",padding:s*2,transition:"color 150ms",alignSelf:"center",fontSize:n,lineHeight:1,marginRight:n,textAlign:"center",verticalAlign:"middle"}},yr=function(a){var r=a.delay,n=a.offset;return(0,K.jsx)("span",{css:(0,K.css)({animation:"".concat(Fm," 1s ease-in-out ").concat(r,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:n?"1em":void 0,height:"1em",verticalAlign:"top",width:"1em"},"","")})},Wc=function(a){var r=a.className,n=a.cx,i=a.getStyles,o=a.innerProps,s=a.isRtl;return(0,K.jsx)("div",W({css:i("loadingIndicator",a),className:n({indicator:!0,"loading-indicator":!0},r)},o),(0,K.jsx)(yr,{delay:0,offset:s}),(0,K.jsx)(yr,{delay:160,offset:!0}),(0,K.jsx)(yr,{delay:320,offset:!s}))};Wc.defaultProps={size:4};var Xc=function(a){var r=a.isDisabled,n=a.isFocused,i=a.theme,o=i.colors,s=i.borderRadius,h=i.spacing;return{label:"control",alignItems:"center",backgroundColor:r?o.neutral5:o.neutral0,borderColor:r?o.neutral10:n?o.primary:o.neutral20,borderRadius:s,borderStyle:"solid",borderWidth:1,boxShadow:n?"0 0 0 1px ".concat(o.primary):void 0,cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:h.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms","&:hover":{borderColor:n?o.primary:o.neutral30}}},Sm=function(a){var r=a.children,n=a.cx,i=a.getStyles,o=a.className,s=a.isDisabled,h=a.isFocused,v=a.innerRef,f=a.innerProps,g=a.menuIsOpen;return(0,K.jsx)("div",W({ref:v,css:i("control",a),className:n({control:!0,"control--is-disabled":s,"control--is-focused":h,"control--menu-is-open":g},o)},f),r)},bm=["data"],jc=function(a){var r=a.theme.spacing;return{paddingBottom:r.baseUnit*2,paddingTop:r.baseUnit*2}},Im=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.Heading,h=a.headingProps,v=a.innerProps,f=a.label,g=a.theme,m=a.selectProps;return(0,K.jsx)("div",W({css:o("group",a),className:i({group:!0},n)},v),(0,K.jsx)(s,W({},h,{selectProps:m,theme:g,getStyles:o,cx:i}),f),(0,K.jsx)("div",null,r))},Uc=function(a){var r=a.theme.spacing;return{label:"group",color:"#999",cursor:"default",display:"block",fontSize:"75%",fontWeight:500,marginBottom:"0.25em",paddingLeft:r.baseUnit*3,paddingRight:r.baseUnit*3,textTransform:"uppercase"}},Em=function(a){var r=a.getStyles,n=a.cx,i=a.className,o=gc(a);o.data;var s=u9(o,bm);return(0,K.jsx)("div",W({css:r("groupHeading",a),className:n({"group-heading":!0},i)},s))},Pm=["innerRef","isDisabled","isHidden","inputClassName"],Yc=function(a){var r=a.isDisabled,n=a.value,i=a.theme,o=i.spacing,s=i.colors;return c0({margin:o.baseUnit/2,paddingBottom:o.baseUnit/2,paddingTop:o.baseUnit/2,visibility:r?"hidden":"visible",color:s.neutral80,transform:n?"translateZ(0)":""},km)},Jc={gridArea:"1 / 2",font:"inherit",minWidth:"2px",border:0,margin:0,outline:0,padding:0},km={flex:"1 1 auto",display:"inline-grid",gridArea:"1 / 1 / 2 / 3",gridTemplateColumns:"0 min-content","&:after":c0({content:'attr(data-value) " "',visibility:"hidden",whiteSpace:"pre"},Jc)},Tm=function(a){return c0({label:"input",color:"inherit",background:0,opacity:a?0:1,width:"100%"},Jc)},Rm=function(a){var r=a.className,n=a.cx,i=a.getStyles,o=a.value,s=gc(a),h=s.innerRef,v=s.isDisabled,f=s.isHidden,g=s.inputClassName,m=u9(s,Pm);return(0,K.jsx)("div",{className:n({"input-container":!0},r),css:i("input",a),"data-value":o||""},(0,K.jsx)("input",W({className:n({input:!0},g),ref:h,style:Tm(f),disabled:v},m)))},Qc=function(a){var r=a.theme,n=r.spacing,i=r.borderRadius,o=r.colors;return{label:"multiValue",backgroundColor:o.neutral10,borderRadius:i/2,display:"flex",margin:n.baseUnit/2,minWidth:0}},$c=function(a){var r=a.theme,n=r.borderRadius,i=r.colors,o=a.cropWithEllipsis;return{borderRadius:n/2,color:i.neutral80,fontSize:"85%",overflow:"hidden",padding:3,paddingLeft:6,textOverflow:o||o===void 0?"ellipsis":void 0,whiteSpace:"nowrap"}},Kc=function(a){var r=a.theme,n=r.spacing,i=r.borderRadius,o=r.colors,s=a.isFocused;return{alignItems:"center",borderRadius:i/2,backgroundColor:s?o.dangerLight:void 0,display:"flex",paddingLeft:n.baseUnit,paddingRight:n.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}}},qc=function(a){var r=a.children,n=a.innerProps;return(0,K.jsx)("div",n,r)},Om=qc,Nm=qc;function Dm(t){var a=t.children,r=t.innerProps;return(0,K.jsx)("div",W({role:"button"},r),a||(0,K.jsx)(Sr,{size:14}))}var Gm=function(a){var r=a.children,n=a.className,i=a.components,o=a.cx,s=a.data,h=a.getStyles,v=a.innerProps,f=a.isDisabled,g=a.removeProps,m=a.selectProps,z=i.Container,H=i.Label,y=i.Remove;return(0,K.jsx)(K.ClassNames,null,function(F){var I=F.css,C=F.cx;return(0,K.jsx)(z,{data:s,innerProps:c0({className:C(I(h("multiValue",a)),o({"multi-value":!0,"multi-value--is-disabled":f},n))},v),selectProps:m},(0,K.jsx)(H,{data:s,innerProps:{className:C(I(h("multiValueLabel",a)),o({"multi-value__label":!0},n))},selectProps:m},r),(0,K.jsx)(y,{data:s,innerProps:c0({className:C(I(h("multiValueRemove",a)),o({"multi-value__remove":!0},n)),"aria-label":"Remove ".concat(r||"option")},g),selectProps:m}))})},th=function(a){var r=a.isDisabled,n=a.isFocused,i=a.isSelected,o=a.theme,s=o.spacing,h=o.colors;return{label:"option",backgroundColor:i?h.primary:n?h.primary25:"transparent",color:r?h.neutral20:i?h.neutral0:"inherit",cursor:"default",display:"block",fontSize:"inherit",padding:"".concat(s.baseUnit*2,"px ").concat(s.baseUnit*3,"px"),width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)",":active":{backgroundColor:r?void 0:i?h.primary:h.primary50}}},Zm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.isDisabled,h=a.isFocused,v=a.isSelected,f=a.innerRef,g=a.innerProps;return(0,K.jsx)("div",W({css:o("option",a),className:i({option:!0,"option--is-disabled":s,"option--is-focused":h,"option--is-selected":v},n),ref:f,"aria-disabled":s},g),r)},ah=function(a){var r=a.theme,n=r.spacing,i=r.colors;return{label:"placeholder",color:i.neutral50,gridArea:"1 / 1 / 2 / 3",marginLeft:n.baseUnit/2,marginRight:n.baseUnit/2}},Wm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.innerProps;return(0,K.jsx)("div",W({css:o("placeholder",a),className:i({placeholder:!0},n)},s),r)},eh=function(a){var r=a.isDisabled,n=a.theme,i=n.spacing,o=n.colors;return{label:"singleValue",color:r?o.neutral40:o.neutral80,gridArea:"1 / 1 / 2 / 3",marginLeft:i.baseUnit/2,marginRight:i.baseUnit/2,maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"}},Xm=function(a){var r=a.children,n=a.className,i=a.cx,o=a.getStyles,s=a.isDisabled,h=a.innerProps;return(0,K.jsx)("div",W({css:o("singleValue",a),className:i({"single-value":!0,"single-value--is-disabled":s},n)},h),r)},jm={ClearIndicator:_m,Control:Sm,DropdownIndicator:ym,DownChevron:Rc,CrossIcon:Sr,Group:Im,GroupHeading:Em,IndicatorsContainer:Hm,IndicatorSeparator:Lm,Input:Rm,LoadingIndicator:Wc,Menu:xm,MenuList:Mm,MenuPortal:Cm,LoadingMessage:bc,NoOptionsMessage:Sc,MultiValue:Gm,MultiValueContainer:Om,MultiValueLabel:Nm,MultiValueRemove:Dm,Option:Zm,Placeholder:Wm,SelectContainer:Bm,SingleValue:Xm,ValueContainer:Vm},c7=function(a){return c0(c0({},jm),a.components)};var G9=j(wr());var rh=Number.isNaN||function(a){return typeof a=="number"&&a!==a};function Um(t,a){return!!(t===a||rh(t)&&rh(a))}function Ym(t,a){if(t.length!==a.length)return!1;for(var r=0;r1?"s":""," ").concat(o.join(","),", selected.");case"select-option":return s?"option ".concat(i," is disabled. Select another option."):"option ".concat(i,", selected.");default:return""}},onFocus:function(a){var r=a.context,n=a.focused,i=a.options,o=a.label,s=o===void 0?"":o,h=a.selectValue,v=a.isDisabled,f=a.isSelected,g=function(y,F){return y&&y.length?"".concat(y.indexOf(F)+1," of ").concat(y.length):""};if(r==="value"&&h)return"value ".concat(s," focused, ").concat(g(h,n),".");if(r==="menu"){var m=v?" disabled":"",z="".concat(f?"selected":"focused").concat(m);return"option ".concat(s," ").concat(z,", ").concat(g(i,n),".")}return""},onFilter:function(a){var r=a.inputValue,n=a.resultsMessage;return"".concat(n).concat(r?" for search term "+r:"",".")}},$m=function(a){var r=a.ariaSelection,n=a.focusedOption,i=a.focusedValue,o=a.focusableOptions,s=a.isFocused,h=a.selectValue,v=a.selectProps,f=a.id,g=v.ariaLiveMessages,m=v.getOptionLabel,z=v.inputValue,H=v.isMulti,y=v.isOptionDisabled,F=v.isSearchable,I=v.menuIsOpen,C=v.options,M=v.screenReaderStatus,V=v.tabSelectsValue,w=v["aria-label"],E=v["aria-live"],b=(0,M0.useMemo)(function(){return c0(c0({},Qm),g||{})},[g]),P=(0,M0.useMemo)(function(){var h0="";if(r&&b.onChange){var m0=r.option,U=r.options,O0=r.removedValue,X=r.removedValues,p0=r.value,w0=function(e9){return Array.isArray(e9)?null:e9},d0=O0||m0||w0(p0),a0=d0?m(d0):"",$=U||X||void 0,i0=$?$.map(m):[],b0=c0({isDisabled:d0&&y(d0,h),label:a0,labels:i0},r);h0=b.onChange(b0)}return h0},[r,b,y,h,m]),R=(0,M0.useMemo)(function(){var h0="",m0=n||i,U=!!(n&&h&&h.includes(n));if(m0&&b.onFocus){var O0={focused:m0,label:m(m0),isDisabled:y(m0,h),isSelected:U,options:o,context:m0===n?"menu":"value",selectValue:h};h0=b.onFocus(O0)}return h0},[n,i,m,y,b,o,h]),T=(0,M0.useMemo)(function(){var h0="";if(I&&C.length&&b.onFilter){var m0=M({count:o.length});h0=b.onFilter({inputValue:z,resultsMessage:m0})}return h0},[o,z,I,b,C,M]),N=(0,M0.useMemo)(function(){var h0="";if(b.guidance){var m0=i?"value":I?"menu":"input";h0=b.guidance({"aria-label":w,context:m0,isDisabled:n&&y(n,h),isMulti:H,isSearchable:F,tabSelectsValue:V})}return h0},[w,n,i,H,y,F,I,b,h,V]),t0="".concat(R," ").concat(T," ").concat(N),v0=(0,G9.jsx)(M0.Fragment,null,(0,G9.jsx)("span",{id:"aria-selection"},P),(0,G9.jsx)("span",{id:"aria-context"},t0)),H0=r?.action==="initial-input-focus";return(0,G9.jsx)(M0.Fragment,null,(0,G9.jsx)(nh,{id:f},H0&&v0),(0,G9.jsx)(nh,{"aria-live":E,"aria-atomic":"false","aria-relevant":"additions text"},s&&!H0&&v0))},Ir=[{base:"A",letters:"A\u24B6\uFF21\xC0\xC1\xC2\u1EA6\u1EA4\u1EAA\u1EA8\xC3\u0100\u0102\u1EB0\u1EAE\u1EB4\u1EB2\u0226\u01E0\xC4\u01DE\u1EA2\xC5\u01FA\u01CD\u0200\u0202\u1EA0\u1EAC\u1EB6\u1E00\u0104\u023A\u2C6F"},{base:"AA",letters:"\uA732"},{base:"AE",letters:"\xC6\u01FC\u01E2"},{base:"AO",letters:"\uA734"},{base:"AU",letters:"\uA736"},{base:"AV",letters:"\uA738\uA73A"},{base:"AY",letters:"\uA73C"},{base:"B",letters:"B\u24B7\uFF22\u1E02\u1E04\u1E06\u0243\u0182\u0181"},{base:"C",letters:"C\u24B8\uFF23\u0106\u0108\u010A\u010C\xC7\u1E08\u0187\u023B\uA73E"},{base:"D",letters:"D\u24B9\uFF24\u1E0A\u010E\u1E0C\u1E10\u1E12\u1E0E\u0110\u018B\u018A\u0189\uA779"},{base:"DZ",letters:"\u01F1\u01C4"},{base:"Dz",letters:"\u01F2\u01C5"},{base:"E",letters:"E\u24BA\uFF25\xC8\xC9\xCA\u1EC0\u1EBE\u1EC4\u1EC2\u1EBC\u0112\u1E14\u1E16\u0114\u0116\xCB\u1EBA\u011A\u0204\u0206\u1EB8\u1EC6\u0228\u1E1C\u0118\u1E18\u1E1A\u0190\u018E"},{base:"F",letters:"F\u24BB\uFF26\u1E1E\u0191\uA77B"},{base:"G",letters:"G\u24BC\uFF27\u01F4\u011C\u1E20\u011E\u0120\u01E6\u0122\u01E4\u0193\uA7A0\uA77D\uA77E"},{base:"H",letters:"H\u24BD\uFF28\u0124\u1E22\u1E26\u021E\u1E24\u1E28\u1E2A\u0126\u2C67\u2C75\uA78D"},{base:"I",letters:"I\u24BE\uFF29\xCC\xCD\xCE\u0128\u012A\u012C\u0130\xCF\u1E2E\u1EC8\u01CF\u0208\u020A\u1ECA\u012E\u1E2C\u0197"},{base:"J",letters:"J\u24BF\uFF2A\u0134\u0248"},{base:"K",letters:"K\u24C0\uFF2B\u1E30\u01E8\u1E32\u0136\u1E34\u0198\u2C69\uA740\uA742\uA744\uA7A2"},{base:"L",letters:"L\u24C1\uFF2C\u013F\u0139\u013D\u1E36\u1E38\u013B\u1E3C\u1E3A\u0141\u023D\u2C62\u2C60\uA748\uA746\uA780"},{base:"LJ",letters:"\u01C7"},{base:"Lj",letters:"\u01C8"},{base:"M",letters:"M\u24C2\uFF2D\u1E3E\u1E40\u1E42\u2C6E\u019C"},{base:"N",letters:"N\u24C3\uFF2E\u01F8\u0143\xD1\u1E44\u0147\u1E46\u0145\u1E4A\u1E48\u0220\u019D\uA790\uA7A4"},{base:"NJ",letters:"\u01CA"},{base:"Nj",letters:"\u01CB"},{base:"O",letters:"O\u24C4\uFF2F\xD2\xD3\xD4\u1ED2\u1ED0\u1ED6\u1ED4\xD5\u1E4C\u022C\u1E4E\u014C\u1E50\u1E52\u014E\u022E\u0230\xD6\u022A\u1ECE\u0150\u01D1\u020C\u020E\u01A0\u1EDC\u1EDA\u1EE0\u1EDE\u1EE2\u1ECC\u1ED8\u01EA\u01EC\xD8\u01FE\u0186\u019F\uA74A\uA74C"},{base:"OI",letters:"\u01A2"},{base:"OO",letters:"\uA74E"},{base:"OU",letters:"\u0222"},{base:"P",letters:"P\u24C5\uFF30\u1E54\u1E56\u01A4\u2C63\uA750\uA752\uA754"},{base:"Q",letters:"Q\u24C6\uFF31\uA756\uA758\u024A"},{base:"R",letters:"R\u24C7\uFF32\u0154\u1E58\u0158\u0210\u0212\u1E5A\u1E5C\u0156\u1E5E\u024C\u2C64\uA75A\uA7A6\uA782"},{base:"S",letters:"S\u24C8\uFF33\u1E9E\u015A\u1E64\u015C\u1E60\u0160\u1E66\u1E62\u1E68\u0218\u015E\u2C7E\uA7A8\uA784"},{base:"T",letters:"T\u24C9\uFF34\u1E6A\u0164\u1E6C\u021A\u0162\u1E70\u1E6E\u0166\u01AC\u01AE\u023E\uA786"},{base:"TZ",letters:"\uA728"},{base:"U",letters:"U\u24CA\uFF35\xD9\xDA\xDB\u0168\u1E78\u016A\u1E7A\u016C\xDC\u01DB\u01D7\u01D5\u01D9\u1EE6\u016E\u0170\u01D3\u0214\u0216\u01AF\u1EEA\u1EE8\u1EEE\u1EEC\u1EF0\u1EE4\u1E72\u0172\u1E76\u1E74\u0244"},{base:"V",letters:"V\u24CB\uFF36\u1E7C\u1E7E\u01B2\uA75E\u0245"},{base:"VY",letters:"\uA760"},{base:"W",letters:"W\u24CC\uFF37\u1E80\u1E82\u0174\u1E86\u1E84\u1E88\u2C72"},{base:"X",letters:"X\u24CD\uFF38\u1E8A\u1E8C"},{base:"Y",letters:"Y\u24CE\uFF39\u1EF2\xDD\u0176\u1EF8\u0232\u1E8E\u0178\u1EF6\u1EF4\u01B3\u024E\u1EFE"},{base:"Z",letters:"Z\u24CF\uFF3A\u0179\u1E90\u017B\u017D\u1E92\u1E94\u01B5\u0224\u2C7F\u2C6B\uA762"},{base:"a",letters:"a\u24D0\uFF41\u1E9A\xE0\xE1\xE2\u1EA7\u1EA5\u1EAB\u1EA9\xE3\u0101\u0103\u1EB1\u1EAF\u1EB5\u1EB3\u0227\u01E1\xE4\u01DF\u1EA3\xE5\u01FB\u01CE\u0201\u0203\u1EA1\u1EAD\u1EB7\u1E01\u0105\u2C65\u0250"},{base:"aa",letters:"\uA733"},{base:"ae",letters:"\xE6\u01FD\u01E3"},{base:"ao",letters:"\uA735"},{base:"au",letters:"\uA737"},{base:"av",letters:"\uA739\uA73B"},{base:"ay",letters:"\uA73D"},{base:"b",letters:"b\u24D1\uFF42\u1E03\u1E05\u1E07\u0180\u0183\u0253"},{base:"c",letters:"c\u24D2\uFF43\u0107\u0109\u010B\u010D\xE7\u1E09\u0188\u023C\uA73F\u2184"},{base:"d",letters:"d\u24D3\uFF44\u1E0B\u010F\u1E0D\u1E11\u1E13\u1E0F\u0111\u018C\u0256\u0257\uA77A"},{base:"dz",letters:"\u01F3\u01C6"},{base:"e",letters:"e\u24D4\uFF45\xE8\xE9\xEA\u1EC1\u1EBF\u1EC5\u1EC3\u1EBD\u0113\u1E15\u1E17\u0115\u0117\xEB\u1EBB\u011B\u0205\u0207\u1EB9\u1EC7\u0229\u1E1D\u0119\u1E19\u1E1B\u0247\u025B\u01DD"},{base:"f",letters:"f\u24D5\uFF46\u1E1F\u0192\uA77C"},{base:"g",letters:"g\u24D6\uFF47\u01F5\u011D\u1E21\u011F\u0121\u01E7\u0123\u01E5\u0260\uA7A1\u1D79\uA77F"},{base:"h",letters:"h\u24D7\uFF48\u0125\u1E23\u1E27\u021F\u1E25\u1E29\u1E2B\u1E96\u0127\u2C68\u2C76\u0265"},{base:"hv",letters:"\u0195"},{base:"i",letters:"i\u24D8\uFF49\xEC\xED\xEE\u0129\u012B\u012D\xEF\u1E2F\u1EC9\u01D0\u0209\u020B\u1ECB\u012F\u1E2D\u0268\u0131"},{base:"j",letters:"j\u24D9\uFF4A\u0135\u01F0\u0249"},{base:"k",letters:"k\u24DA\uFF4B\u1E31\u01E9\u1E33\u0137\u1E35\u0199\u2C6A\uA741\uA743\uA745\uA7A3"},{base:"l",letters:"l\u24DB\uFF4C\u0140\u013A\u013E\u1E37\u1E39\u013C\u1E3D\u1E3B\u017F\u0142\u019A\u026B\u2C61\uA749\uA781\uA747"},{base:"lj",letters:"\u01C9"},{base:"m",letters:"m\u24DC\uFF4D\u1E3F\u1E41\u1E43\u0271\u026F"},{base:"n",letters:"n\u24DD\uFF4E\u01F9\u0144\xF1\u1E45\u0148\u1E47\u0146\u1E4B\u1E49\u019E\u0272\u0149\uA791\uA7A5"},{base:"nj",letters:"\u01CC"},{base:"o",letters:"o\u24DE\uFF4F\xF2\xF3\xF4\u1ED3\u1ED1\u1ED7\u1ED5\xF5\u1E4D\u022D\u1E4F\u014D\u1E51\u1E53\u014F\u022F\u0231\xF6\u022B\u1ECF\u0151\u01D2\u020D\u020F\u01A1\u1EDD\u1EDB\u1EE1\u1EDF\u1EE3\u1ECD\u1ED9\u01EB\u01ED\xF8\u01FF\u0254\uA74B\uA74D\u0275"},{base:"oi",letters:"\u01A3"},{base:"ou",letters:"\u0223"},{base:"oo",letters:"\uA74F"},{base:"p",letters:"p\u24DF\uFF50\u1E55\u1E57\u01A5\u1D7D\uA751\uA753\uA755"},{base:"q",letters:"q\u24E0\uFF51\u024B\uA757\uA759"},{base:"r",letters:"r\u24E1\uFF52\u0155\u1E59\u0159\u0211\u0213\u1E5B\u1E5D\u0157\u1E5F\u024D\u027D\uA75B\uA7A7\uA783"},{base:"s",letters:"s\u24E2\uFF53\xDF\u015B\u1E65\u015D\u1E61\u0161\u1E67\u1E63\u1E69\u0219\u015F\u023F\uA7A9\uA785\u1E9B"},{base:"t",letters:"t\u24E3\uFF54\u1E6B\u1E97\u0165\u1E6D\u021B\u0163\u1E71\u1E6F\u0167\u01AD\u0288\u2C66\uA787"},{base:"tz",letters:"\uA729"},{base:"u",letters:"u\u24E4\uFF55\xF9\xFA\xFB\u0169\u1E79\u016B\u1E7B\u016D\xFC\u01DC\u01D8\u01D6\u01DA\u1EE7\u016F\u0171\u01D4\u0215\u0217\u01B0\u1EEB\u1EE9\u1EEF\u1EED\u1EF1\u1EE5\u1E73\u0173\u1E77\u1E75\u0289"},{base:"v",letters:"v\u24E5\uFF56\u1E7D\u1E7F\u028B\uA75F\u028C"},{base:"vy",letters:"\uA761"},{base:"w",letters:"w\u24E6\uFF57\u1E81\u1E83\u0175\u1E87\u1E85\u1E98\u1E89\u2C73"},{base:"x",letters:"x\u24E7\uFF58\u1E8B\u1E8D"},{base:"y",letters:"y\u24E8\uFF59\u1EF3\xFD\u0177\u1EF9\u0233\u1E8F\xFF\u1EF7\u1E99\u1EF5\u01B4\u024F\u1EFF"},{base:"z",letters:"z\u24E9\uFF5A\u017A\u1E91\u017C\u017E\u1E93\u1E95\u01B6\u0225\u0240\u2C6C\uA763"}],Km=new RegExp("["+Ir.map(function(t){return t.letters}).join("")+"]","g"),ph={};for(v7=0;v7-1}},ez=["innerRef"];function rz(t){var a=t.innerRef,r=u9(t,ez),n=Bc(r,"onExited","in","enter","exit","appear");return(0,G9.jsx)("input",W({ref:a},n,{css:(0,G9.css)({label:"dummyInput",background:0,border:0,caretColor:"transparent",fontSize:"inherit",gridArea:"1 / 1 / 2 / 3",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(.01)"},"","")}))}var nz=function(a){a.preventDefault(),a.stopPropagation()};function iz(t){var a=t.isEnabled,r=t.onBottomArrive,n=t.onBottomLeave,i=t.onTopArrive,o=t.onTopLeave,s=(0,M0.useRef)(!1),h=(0,M0.useRef)(!1),v=(0,M0.useRef)(0),f=(0,M0.useRef)(null),g=(0,M0.useCallback)(function(I,C){if(f.current!==null){var M=f.current,V=M.scrollTop,w=M.scrollHeight,E=M.clientHeight,b=f.current,P=C>0,R=w-E-V,T=!1;R>C&&s.current&&(n&&n(I),s.current=!1),P&&h.current&&(o&&o(I),h.current=!1),P&&C>R?(r&&!s.current&&r(I),b.scrollTop=w,T=!0,s.current=!0):!P&&-C>V&&(i&&!h.current&&i(I),b.scrollTop=0,T=!0,h.current=!0),T&&nz(I)}},[r,n,i,o]),m=(0,M0.useCallback)(function(I){g(I,I.deltaY)},[g]),z=(0,M0.useCallback)(function(I){v.current=I.changedTouches[0].clientY},[]),H=(0,M0.useCallback)(function(I){var C=v.current-I.changedTouches[0].clientY;g(I,C)},[g]),y=(0,M0.useCallback)(function(I){if(!!I){var C=Mc?{passive:!1}:!1;I.addEventListener("wheel",m,C),I.addEventListener("touchstart",z,C),I.addEventListener("touchmove",H,C)}},[H,z,m]),F=(0,M0.useCallback)(function(I){!I||(I.removeEventListener("wheel",m,!1),I.removeEventListener("touchstart",z,!1),I.removeEventListener("touchmove",H,!1))},[H,z,m]);return(0,M0.useEffect)(function(){if(!!a){var I=f.current;return y(I),function(){F(I)}}},[a,y,F]),function(I){f.current=I}}var lh=["boxSizing","height","overflow","paddingRight","position"],oh={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function uh(t){t.preventDefault()}function sh(t){t.stopPropagation()}function ch(){var t=this.scrollTop,a=this.scrollHeight,r=t+this.offsetHeight;t===0?this.scrollTop=1:r===a&&(this.scrollTop=t-1)}function hh(){return"ontouchstart"in window||navigator.maxTouchPoints}var vh=!!(typeof window<"u"&&window.document&&window.document.createElement),I8=0,h3={capture:!1,passive:!1};function lz(t){var a=t.isEnabled,r=t.accountForScrollbars,n=r===void 0?!0:r,i=(0,M0.useRef)({}),o=(0,M0.useRef)(null),s=(0,M0.useCallback)(function(v){if(!!vh){var f=document.body,g=f&&f.style;if(n&&lh.forEach(function(y){var F=g&&g[y];i.current[y]=F}),n&&I8<1){var m=parseInt(i.current.paddingRight,10)||0,z=document.body?document.body.clientWidth:0,H=window.innerWidth-z+m||0;Object.keys(oh).forEach(function(y){var F=oh[y];g&&(g[y]=F)}),g&&(g.paddingRight="".concat(H,"px"))}f&&hh()&&(f.addEventListener("touchmove",uh,h3),v&&(v.addEventListener("touchstart",ch,h3),v.addEventListener("touchmove",sh,h3))),I8+=1}},[n]),h=(0,M0.useCallback)(function(v){if(!!vh){var f=document.body,g=f&&f.style;I8=Math.max(I8-1,0),n&&I8<1&&lh.forEach(function(m){var z=i.current[m];g&&(g[m]=z)}),f&&hh()&&(f.removeEventListener("touchmove",uh,h3),v&&(v.removeEventListener("touchstart",ch,h3),v.removeEventListener("touchmove",sh,h3)))}},[n]);return(0,M0.useEffect)(function(){if(!!a){var v=o.current;return s(v),function(){h(v)}}},[a,s,h]),function(v){o.current=v}}var oz=function(){return document.activeElement&&document.activeElement.blur()},uz={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function sz(t){var a=t.children,r=t.lockEnabled,n=t.captureEnabled,i=n===void 0?!0:n,o=t.onBottomArrive,s=t.onBottomLeave,h=t.onTopArrive,v=t.onTopLeave,f=iz({isEnabled:i,onBottomArrive:o,onBottomLeave:s,onTopArrive:h,onTopLeave:v}),g=lz({isEnabled:r}),m=function(H){f(H),g(H)};return(0,G9.jsx)(M0.Fragment,null,r&&(0,G9.jsx)("div",{onClick:oz,css:uz}),a(m))}var cz=function(a){return a.label},hz=function(a){return a.label},vz=function(a){return a.value},dz=function(a){return!!a.isDisabled},fz={clearIndicator:Dc,container:Ec,control:Xc,dropdownIndicator:Nc,group:jc,groupHeading:Uc,indicatorsContainer:kc,indicatorSeparator:Gc,input:Yc,loadingIndicator:Zc,loadingMessage:Fc,menu:Hc,menuList:yc,menuPortal:Ic,multiValue:Qc,multiValueLabel:$c,multiValueRemove:Kc,noOptionsMessage:Lc,option:th,placeholder:ah,singleValue:eh,valueContainer:Pc};var pz={primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},gz=4,mh=4,mz=38,zz=mh*2,xz={baseUnit:mh,controlHeight:mz,menuGutter:zz},br={borderRadius:gz,colors:pz,spacing:xz},Mz={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:Fr(),captureMenuScroll:!Fr(),closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:az(),formatGroupLabel:cz,getOptionLabel:hz,getOptionValue:vz,isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:dz,loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!zc(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(a){var r=a.count;return"".concat(r," result").concat(r!==1?"s":""," available")},styles:{},tabIndex:0,tabSelectsValue:!0};function dh(t,a,r,n){var i=Ch(t,a,r),o=Bh(t,a,r),s=Mh(t,a),h=p7(t,a);return{type:"option",data:a,isDisabled:i,isSelected:o,label:s,value:h,index:n}}function zh(t,a){return t.options.map(function(r,n){if("options"in r){var i=r.options.map(function(s,h){return dh(t,s,a,h)}).filter(function(s){return fh(t,s)});return i.length>0?{type:"group",data:r,options:i,index:n}:void 0}var o=dh(t,r,a,n);return fh(t,o)?o:void 0}).filter(Cc)}function xh(t){return t.reduce(function(a,r){return r.type==="group"?a.push.apply(a,D6(r.options.map(function(n){return n.data}))):a.push(r.data),a},[])}function Cz(t,a){return xh(zh(t,a))}function fh(t,a){var r=t.inputValue,n=r===void 0?"":r,i=a.data,o=a.isSelected,s=a.label,h=a.value;return(!Hh(t)||!o)&&Vh(t,{label:s,value:h,data:i},n)}function Bz(t,a){var r=t.focusedValue,n=t.selectValue,i=n.indexOf(r);if(i>-1){var o=a.indexOf(r);if(o>-1)return r;if(i-1?r:a[0]}var Mh=function(a,r){return a.getOptionLabel(r)},p7=function(a,r){return a.getOptionValue(r)};function Ch(t,a,r){return typeof t.isOptionDisabled=="function"?t.isOptionDisabled(a,r):!1}function Bh(t,a,r){if(r.indexOf(a)>-1)return!0;if(typeof t.isOptionSelected=="function")return t.isOptionSelected(a,r);var n=p7(t,a);return r.some(function(i){return p7(t,i)===n})}function Vh(t,a,r){return t.filterOption?t.filterOption(a,r):!0}var Hh=function(a){var r=a.hideSelectedOptions,n=a.isMulti;return r===void 0?n:r},Hz=1,Er=function(t){Ge(r,t);var a=Xe(r);function r(n){var i;if(Ne(this,r),i=a.call(this,n),i.state={ariaSelection:null,focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!1,prevWasFocused:!1,inputIsHiddenAfterUpdate:void 0,prevProps:void 0},i.blockOptionHover=!1,i.isComposing=!1,i.commonProps=void 0,i.initialTouchX=0,i.initialTouchY=0,i.instancePrefix="",i.openAfterFocus=!1,i.scrollToFocusedOptionOnUpdate=!1,i.userIsDragging=void 0,i.controlRef=null,i.getControlRef=function(h){i.controlRef=h},i.focusedOptionRef=null,i.getFocusedOptionRef=function(h){i.focusedOptionRef=h},i.menuListRef=null,i.getMenuListRef=function(h){i.menuListRef=h},i.inputRef=null,i.getInputRef=function(h){i.inputRef=h},i.focus=i.focusInput,i.blur=i.blurInput,i.onChange=function(h,v){var f=i.props,g=f.onChange,m=f.name;v.name=m,i.ariaOnChange(h,v),g(h,v)},i.setValue=function(h,v,f){var g=i.props,m=g.closeMenuOnSelect,z=g.isMulti,H=g.inputValue;i.onInputChange("",{action:"set-value",prevInputValue:H}),m&&(i.setState({inputIsHiddenAfterUpdate:!z}),i.onMenuClose()),i.setState({clearFocusValueOnUpdate:!0}),i.onChange(h,{action:v,option:f})},i.selectOption=function(h){var v=i.props,f=v.blurInputOnSelect,g=v.isMulti,m=v.name,z=i.state.selectValue,H=g&&i.isOptionSelected(h,z),y=i.isOptionDisabled(h,z);if(H){var F=i.getOptionValue(h);i.setValue(z.filter(function(I){return i.getOptionValue(I)!==F}),"deselect-option",h)}else if(!y)g?i.setValue([].concat(D6(z),[h]),"select-option",h):i.setValue(h,"select-option");else{i.ariaOnChange(h,{action:"select-option",option:h,name:m});return}f&&i.blurInput()},i.removeValue=function(h){var v=i.props.isMulti,f=i.state.selectValue,g=i.getOptionValue(h),m=f.filter(function(H){return i.getOptionValue(H)!==g}),z=b8(v,m,m[0]||null);i.onChange(z,{action:"remove-value",removedValue:h}),i.focusInput()},i.clearValue=function(){var h=i.state.selectValue;i.onChange(b8(i.props.isMulti,[],null),{action:"clear",removedValues:h})},i.popValue=function(){var h=i.props.isMulti,v=i.state.selectValue,f=v[v.length-1],g=v.slice(0,v.length-1),m=b8(h,g,g[0]||null);i.onChange(m,{action:"pop-value",removedValue:f})},i.getValue=function(){return i.state.selectValue},i.cx=function(){for(var h=arguments.length,v=new Array(h),f=0;fz||m>z}},i.onTouchEnd=function(h){i.userIsDragging||(i.controlRef&&!i.controlRef.contains(h.target)&&i.menuListRef&&!i.menuListRef.contains(h.target)&&i.blurInput(),i.initialTouchX=0,i.initialTouchY=0)},i.onControlTouchEnd=function(h){i.userIsDragging||i.onControlMouseDown(h)},i.onClearIndicatorTouchEnd=function(h){i.userIsDragging||i.onClearIndicatorMouseDown(h)},i.onDropdownIndicatorTouchEnd=function(h){i.userIsDragging||i.onDropdownIndicatorMouseDown(h)},i.handleInputChange=function(h){var v=i.props.inputValue,f=h.currentTarget.value;i.setState({inputIsHiddenAfterUpdate:!1}),i.onInputChange(f,{action:"input-change",prevInputValue:v}),i.props.menuIsOpen||i.onMenuOpen()},i.onInputFocus=function(h){i.props.onFocus&&i.props.onFocus(h),i.setState({inputIsHiddenAfterUpdate:!1,isFocused:!0}),(i.openAfterFocus||i.props.openMenuOnFocus)&&i.openMenu("first"),i.openAfterFocus=!1},i.onInputBlur=function(h){var v=i.props.inputValue;if(i.menuListRef&&i.menuListRef.contains(document.activeElement)){i.inputRef.focus();return}i.props.onBlur&&i.props.onBlur(h),i.onInputChange("",{action:"input-blur",prevInputValue:v}),i.onMenuClose(),i.setState({focusedValue:null,isFocused:!1})},i.onOptionHover=function(h){i.blockOptionHover||i.state.focusedOption===h||i.setState({focusedOption:h})},i.shouldHideSelectedOptions=function(){return Hh(i.props)},i.onKeyDown=function(h){var v=i.props,f=v.isMulti,g=v.backspaceRemovesValue,m=v.escapeClearsValue,z=v.inputValue,H=v.isClearable,y=v.isDisabled,F=v.menuIsOpen,I=v.onKeyDown,C=v.tabSelectsValue,M=v.openMenuOnFocus,V=i.state,w=V.focusedOption,E=V.focusedValue,b=V.selectValue;if(!y&&!(typeof I=="function"&&(I(h),h.defaultPrevented))){switch(i.blockOptionHover=!0,h.key){case"ArrowLeft":if(!f||z)return;i.focusValue("previous");break;case"ArrowRight":if(!f||z)return;i.focusValue("next");break;case"Delete":case"Backspace":if(z)return;if(E)i.removeValue(E);else{if(!g)return;f?i.popValue():H&&i.clearValue()}break;case"Tab":if(i.isComposing||h.shiftKey||!F||!C||!w||M&&i.isOptionSelected(w,b))return;i.selectOption(w);break;case"Enter":if(h.keyCode===229)break;if(F){if(!w||i.isComposing)return;i.selectOption(w);break}return;case"Escape":F?(i.setState({inputIsHiddenAfterUpdate:!1}),i.onInputChange("",{action:"menu-close",prevInputValue:z}),i.onMenuClose()):H&&m&&i.clearValue();break;case" ":if(z)return;if(!F){i.openMenu("first");break}if(!w)return;i.selectOption(w);break;case"ArrowUp":F?i.focusOption("up"):i.openMenu("last");break;case"ArrowDown":F?i.focusOption("down"):i.openMenu("first");break;case"PageUp":if(!F)return;i.focusOption("pageup");break;case"PageDown":if(!F)return;i.focusOption("pagedown");break;case"Home":if(!F)return;i.focusOption("first");break;case"End":if(!F)return;i.focusOption("last");break;default:return}h.preventDefault()}},i.instancePrefix="react-select-"+(i.props.instanceId||++Hz),i.state.selectValue=_r(n.value),n.menuIsOpen&&i.state.selectValue.length){var o=i.buildFocusableOptions(),s=o.indexOf(i.state.selectValue[0]);i.state.focusedOption=o[s]}return i}return De(r,[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput(),this.props.menuIsOpen&&this.state.focusedOption&&this.menuListRef&&this.focusedOptionRef&&Lr(this.menuListRef,this.focusedOptionRef)}},{key:"componentDidUpdate",value:function(i){var o=this.props,s=o.isDisabled,h=o.menuIsOpen,v=this.state.isFocused;(v&&!s&&i.isDisabled||v&&h&&!i.menuIsOpen)&&this.focusInput(),v&&s&&!i.isDisabled?this.setState({isFocused:!1},this.onMenuClose):!v&&!s&&i.isDisabled&&this.inputRef===document.activeElement&&this.setState({isFocused:!0}),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&(Lr(this.menuListRef,this.focusedOptionRef),this.scrollToFocusedOptionOnUpdate=!1)}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){this.onInputChange("",{action:"menu-close",prevInputValue:this.props.inputValue}),this.props.onMenuClose()}},{key:"onInputChange",value:function(i,o){this.props.onInputChange(i,o)}},{key:"focusInput",value:function(){!this.inputRef||this.inputRef.focus()}},{key:"blurInput",value:function(){!this.inputRef||this.inputRef.blur()}},{key:"openMenu",value:function(i){var o=this,s=this.state,h=s.selectValue,v=s.isFocused,f=this.buildFocusableOptions(),g=i==="first"?0:f.length-1;if(!this.props.isMulti){var m=f.indexOf(h[0]);m>-1&&(g=m)}this.scrollToFocusedOptionOnUpdate=!(v&&this.menuListRef),this.setState({inputIsHiddenAfterUpdate:!1,focusedValue:null,focusedOption:f[g]},function(){return o.onMenuOpen()})}},{key:"focusValue",value:function(i){var o=this.state,s=o.selectValue,h=o.focusedValue;if(!!this.props.isMulti){this.setState({focusedOption:null});var v=s.indexOf(h);h||(v=-1);var f=s.length-1,g=-1;if(!!s.length){switch(i){case"previous":v===0?g=0:v===-1?g=f:g=v-1;break;case"next":v>-1&&v0&&arguments[0]!==void 0?arguments[0]:"first",o=this.props.pageSize,s=this.state.focusedOption,h=this.getFocusableOptions();if(!!h.length){var v=0,f=h.indexOf(s);s||(f=-1),i==="up"?v=f>0?f-1:h.length-1:i==="down"?v=(f+1)%h.length:i==="pageup"?(v=f-o,v<0&&(v=0)):i==="pagedown"?(v=f+o,v>h.length-1&&(v=h.length-1)):i==="last"&&(v=h.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:h[v],focusedValue:null})}}},{key:"getTheme",value:function(){return this.props.theme?typeof this.props.theme=="function"?this.props.theme(br):c0(c0({},br),this.props.theme):br}},{key:"getCommonProps",value:function(){var i=this.clearValue,o=this.cx,s=this.getStyles,h=this.getValue,v=this.selectOption,f=this.setValue,g=this.props,m=g.isMulti,z=g.isRtl,H=g.options,y=this.hasValue();return{clearValue:i,cx:o,getStyles:s,getValue:h,hasValue:y,isMulti:m,isRtl:z,options:H,selectOption:v,selectProps:g,setValue:f,theme:this.getTheme()}}},{key:"hasValue",value:function(){var i=this.state.selectValue;return i.length>0}},{key:"hasOptions",value:function(){return!!this.getFocusableOptions().length}},{key:"isClearable",value:function(){var i=this.props,o=i.isClearable,s=i.isMulti;return o===void 0?s:o}},{key:"isOptionDisabled",value:function(i,o){return Ch(this.props,i,o)}},{key:"isOptionSelected",value:function(i,o){return Bh(this.props,i,o)}},{key:"filterOption",value:function(i,o){return Vh(this.props,i,o)}},{key:"formatOptionLabel",value:function(i,o){if(typeof this.props.formatOptionLabel=="function"){var s=this.props.inputValue,h=this.state.selectValue;return this.props.formatOptionLabel(i,{context:o,inputValue:s,selectValue:h})}else return this.getOptionLabel(i)}},{key:"formatGroupLabel",value:function(i){return this.props.formatGroupLabel(i)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"renderInput",value:function(){var i=this.props,o=i.isDisabled,s=i.isSearchable,h=i.inputId,v=i.inputValue,f=i.tabIndex,g=i.form,m=i.menuIsOpen,z=this.getComponents(),H=z.Input,y=this.state,F=y.inputIsHidden,I=y.ariaSelection,C=this.commonProps,M=h||this.getElementId("input"),V=c0(c0(c0({"aria-autocomplete":"list","aria-expanded":m,"aria-haspopup":!0,"aria-errormessage":this.props["aria-errormessage"],"aria-invalid":this.props["aria-invalid"],"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],role:"combobox"},m&&{"aria-controls":this.getElementId("listbox"),"aria-owns":this.getElementId("listbox")}),!s&&{"aria-readonly":!0}),this.hasValue()?I?.action==="initial-input-focus"&&{"aria-describedby":this.getElementId("live-region")}:{"aria-describedby":this.getElementId("placeholder")});return s?V0.createElement(H,W({},C,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:M,innerRef:this.getInputRef,isDisabled:o,isHidden:F,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:f,form:g,type:"text",value:v},V)):V0.createElement(rz,W({id:M,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:F8,onFocus:this.onInputFocus,disabled:o,tabIndex:f,inputMode:"none",form:g,value:""},V))}},{key:"renderPlaceholderOrValue",value:function(){var i=this,o=this.getComponents(),s=o.MultiValue,h=o.MultiValueContainer,v=o.MultiValueLabel,f=o.MultiValueRemove,g=o.SingleValue,m=o.Placeholder,z=this.commonProps,H=this.props,y=H.controlShouldRenderValue,F=H.isDisabled,I=H.isMulti,C=H.inputValue,M=H.placeholder,V=this.state,w=V.selectValue,E=V.focusedValue,b=V.isFocused;if(!this.hasValue()||!y)return C?null:V0.createElement(m,W({},z,{key:"placeholder",isDisabled:F,isFocused:b,innerProps:{id:this.getElementId("placeholder")}}),M);if(I)return w.map(function(R,T){var N=R===E,t0="".concat(i.getOptionLabel(R),"-").concat(i.getOptionValue(R));return V0.createElement(s,W({},z,{components:{Container:h,Label:v,Remove:f},isFocused:N,isDisabled:F,key:t0,index:T,removeProps:{onClick:function(){return i.removeValue(R)},onTouchEnd:function(){return i.removeValue(R)},onMouseDown:function(H0){H0.preventDefault()}},data:R}),i.formatOptionLabel(R,"value"))});if(C)return null;var P=w[0];return V0.createElement(g,W({},z,{data:P,isDisabled:F}),this.formatOptionLabel(P,"value"))}},{key:"renderClearIndicator",value:function(){var i=this.getComponents(),o=i.ClearIndicator,s=this.commonProps,h=this.props,v=h.isDisabled,f=h.isLoading,g=this.state.isFocused;if(!this.isClearable()||!o||v||!this.hasValue()||f)return null;var m={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return V0.createElement(o,W({},s,{innerProps:m,isFocused:g}))}},{key:"renderLoadingIndicator",value:function(){var i=this.getComponents(),o=i.LoadingIndicator,s=this.commonProps,h=this.props,v=h.isDisabled,f=h.isLoading,g=this.state.isFocused;if(!o||!f)return null;var m={"aria-hidden":"true"};return V0.createElement(o,W({},s,{innerProps:m,isDisabled:v,isFocused:g}))}},{key:"renderIndicatorSeparator",value:function(){var i=this.getComponents(),o=i.DropdownIndicator,s=i.IndicatorSeparator;if(!o||!s)return null;var h=this.commonProps,v=this.props.isDisabled,f=this.state.isFocused;return V0.createElement(s,W({},h,{isDisabled:v,isFocused:f}))}},{key:"renderDropdownIndicator",value:function(){var i=this.getComponents(),o=i.DropdownIndicator;if(!o)return null;var s=this.commonProps,h=this.props.isDisabled,v=this.state.isFocused,f={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return V0.createElement(o,W({},s,{innerProps:f,isDisabled:h,isFocused:v}))}},{key:"renderMenu",value:function(){var i=this,o=this.getComponents(),s=o.Group,h=o.GroupHeading,v=o.Menu,f=o.MenuList,g=o.MenuPortal,m=o.LoadingMessage,z=o.NoOptionsMessage,H=o.Option,y=this.commonProps,F=this.state.focusedOption,I=this.props,C=I.captureMenuScroll,M=I.inputValue,V=I.isLoading,w=I.loadingMessage,E=I.minMenuHeight,b=I.maxMenuHeight,P=I.menuIsOpen,R=I.menuPlacement,T=I.menuPosition,N=I.menuPortalTarget,t0=I.menuShouldBlockScroll,v0=I.menuShouldScrollIntoView,H0=I.noOptionsMessage,h0=I.onMenuScrollToTop,m0=I.onMenuScrollToBottom;if(!P)return null;var U=function($,i0){var b0=$.type,E0=$.data,e9=$.isDisabled,m9=$.isSelected,n2=$.label,x2=$.value,E2=F===E0,b1=e9?void 0:function(){return i.onOptionHover(E0)},P2=e9?void 0:function(){return i.selectOption(E0)},r1="".concat(i.getElementId("option"),"-").concat(i0),k2={id:r1,onClick:P2,onMouseMove:b1,onMouseOver:b1,tabIndex:-1};return V0.createElement(H,W({},y,{innerProps:k2,data:E0,isDisabled:e9,isSelected:m9,key:r1,label:n2,type:b0,value:x2,isFocused:E2,innerRef:E2?i.getFocusedOptionRef:void 0}),i.formatOptionLabel($.data,"menu"))},O0;if(this.hasOptions())O0=this.getCategorizedOptions().map(function(a0){if(a0.type==="group"){var $=a0.data,i0=a0.options,b0=a0.index,E0="".concat(i.getElementId("group"),"-").concat(b0),e9="".concat(E0,"-heading");return V0.createElement(s,W({},y,{key:E0,data:$,options:i0,Heading:h,headingProps:{id:e9,data:a0.data},label:i.formatGroupLabel(a0.data)}),a0.options.map(function(m9){return U(m9,"".concat(b0,"-").concat(m9.index))}))}else if(a0.type==="option")return U(a0,"".concat(a0.index))});else if(V){var X=w({inputValue:M});if(X===null)return null;O0=V0.createElement(m,y,X)}else{var p0=H0({inputValue:M});if(p0===null)return null;O0=V0.createElement(z,y,p0)}var w0={minMenuHeight:E,maxMenuHeight:b,menuPlacement:R,menuPosition:T,menuShouldScrollIntoView:v0},d0=V0.createElement(Ac,W({},y,w0),function(a0){var $=a0.ref,i0=a0.placerProps,b0=i0.placement,E0=i0.maxHeight;return V0.createElement(v,W({},y,w0,{innerRef:$,innerProps:{onMouseDown:i.onMenuMouseDown,onMouseMove:i.onMenuMouseMove,id:i.getElementId("listbox")},isLoading:V,placement:b0}),V0.createElement(sz,{captureEnabled:C,onTopArrive:h0,onBottomArrive:m0,lockEnabled:t0},function(e9){return V0.createElement(f,W({},y,{innerRef:function(n2){i.getMenuListRef(n2),e9(n2)},isLoading:V,maxHeight:E0,focusedOption:F}),O0)}))});return N||T==="fixed"?V0.createElement(g,W({},y,{appendTo:N,controlElement:this.controlRef,menuPlacement:R,menuPosition:T}),d0):d0}},{key:"renderFormField",value:function(){var i=this,o=this.props,s=o.delimiter,h=o.isDisabled,v=o.isMulti,f=o.name,g=this.state.selectValue;if(!(!f||h))if(v)if(s){var m=g.map(function(y){return i.getOptionValue(y)}).join(s);return V0.createElement("input",{name:f,type:"hidden",value:m})}else{var z=g.length>0?g.map(function(y,F){return V0.createElement("input",{key:"i-".concat(F),name:f,type:"hidden",value:i.getOptionValue(y)})}):V0.createElement("input",{name:f,type:"hidden"});return V0.createElement("div",null,z)}else{var H=g[0]?this.getOptionValue(g[0]):"";return V0.createElement("input",{name:f,type:"hidden",value:H})}}},{key:"renderLiveRegion",value:function(){var i=this.commonProps,o=this.state,s=o.ariaSelection,h=o.focusedOption,v=o.focusedValue,f=o.isFocused,g=o.selectValue,m=this.getFocusableOptions();return V0.createElement($m,W({},i,{id:this.getElementId("live-region"),ariaSelection:s,focusedOption:h,focusedValue:v,isFocused:f,selectValue:g,focusableOptions:m}))}},{key:"render",value:function(){var i=this.getComponents(),o=i.Control,s=i.IndicatorsContainer,h=i.SelectContainer,v=i.ValueContainer,f=this.props,g=f.className,m=f.id,z=f.isDisabled,H=f.menuIsOpen,y=this.state.isFocused,F=this.commonProps=this.getCommonProps();return V0.createElement(h,W({},F,{className:g,innerProps:{id:m,onKeyDown:this.onKeyDown},isDisabled:z,isFocused:y}),this.renderLiveRegion(),V0.createElement(o,W({},F,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:z,isFocused:y,menuIsOpen:H}),V0.createElement(v,W({},F,{isDisabled:z}),this.renderPlaceholderOrValue(),this.renderInput()),V0.createElement(s,W({},F,{isDisabled:z}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}],[{key:"getDerivedStateFromProps",value:function(i,o){var s=o.prevProps,h=o.clearFocusValueOnUpdate,v=o.inputIsHiddenAfterUpdate,f=o.ariaSelection,g=o.isFocused,m=o.prevWasFocused,z=i.options,H=i.value,y=i.menuIsOpen,F=i.inputValue,I=i.isMulti,C=_r(H),M={};if(s&&(H!==s.value||z!==s.options||y!==s.menuIsOpen||F!==s.inputValue)){var V=y?Cz(i,C):[],w=h?Bz(o,C):null,E=Vz(o,V);M={selectValue:C,focusedOption:E,focusedValue:w,clearFocusValueOnUpdate:!1}}var b=v!=null&&i!==s?{inputIsHidden:v,inputIsHiddenAfterUpdate:void 0}:{},P=f,R=g&&m;return g&&!R&&(P={value:b8(I,C,C[0]||null),options:C,action:"initial-input-focus"},R=!m),f?.action==="initial-input-focus"&&(P=null),c0(c0(c0({},M),b),{},{prevProps:i,ariaSelection:P,prevWasFocused:R})}}]),r}(M0.Component);Er.defaultProps=Mz;var wz=j(X6());var QB=j(e5());var Az=(0,Pr.forwardRef)(function(t,a){var r=es(t);return wh.createElement(Er,W({ref:a},r))});var Ah=Az;var $0=j(u0()),z2=j(u0());function E8(t,a){t.prototype=Object.create(a.prototype),t.prototype.constructor=t,i5(t,a)}var P8=j(u0()),k8=j(e5());var kr={disabled:!1};var yh=j(u0()),v3=yh.default.createContext(null);var _h=function(a){return a.scrollTop};var T8="unmounted",u5="exited",s5="entering",f3="entered",Tr="exiting",e1=function(t){E8(a,t);function a(n,i){var o;o=t.call(this,n,i)||this;var s=i,h=s&&!s.isMounting?n.enter:n.appear,v;return o.appearStatus=null,n.in?h?(v=u5,o.appearStatus=s5):v=f3:n.unmountOnExit||n.mountOnEnter?v=T8:v=u5,o.state={status:v},o.nextCallback=null,o}a.getDerivedStateFromProps=function(i,o){var s=i.in;return s&&o.status===T8?{status:u5}:null};var r=a.prototype;return r.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},r.componentDidUpdate=function(i){var o=null;if(i!==this.props){var s=this.state.status;this.props.in?s!==s5&&s!==f3&&(o=s5):(s===s5||s===f3)&&(o=Tr)}this.updateStatus(!1,o)},r.componentWillUnmount=function(){this.cancelNextCallback()},r.getTimeouts=function(){var i=this.props.timeout,o,s,h;return o=s=h=i,i!=null&&typeof i!="number"&&(o=i.exit,s=i.enter,h=i.appear!==void 0?i.appear:s),{exit:o,enter:s,appear:h}},r.updateStatus=function(i,o){if(i===void 0&&(i=!1),o!==null)if(this.cancelNextCallback(),o===s5){if(this.props.unmountOnExit||this.props.mountOnEnter){var s=this.props.nodeRef?this.props.nodeRef.current:k8.default.findDOMNode(this);s&&_h(s)}this.performEnter(i)}else this.performExit();else this.props.unmountOnExit&&this.state.status===u5&&this.setState({status:T8})},r.performEnter=function(i){var o=this,s=this.props.enter,h=this.context?this.context.isMounting:i,v=this.props.nodeRef?[h]:[k8.default.findDOMNode(this),h],f=v[0],g=v[1],m=this.getTimeouts(),z=h?m.appear:m.enter;if(!i&&!s||kr.disabled){this.safeSetState({status:f3},function(){o.props.onEntered(f)});return}this.props.onEnter(f,g),this.safeSetState({status:s5},function(){o.props.onEntering(f,g),o.onTransitionEnd(z,function(){o.safeSetState({status:f3},function(){o.props.onEntered(f,g)})})})},r.performExit=function(){var i=this,o=this.props.exit,s=this.getTimeouts(),h=this.props.nodeRef?void 0:k8.default.findDOMNode(this);if(!o||kr.disabled){this.safeSetState({status:u5},function(){i.props.onExited(h)});return}this.props.onExit(h),this.safeSetState({status:Tr},function(){i.props.onExiting(h),i.onTransitionEnd(s.exit,function(){i.safeSetState({status:u5},function(){i.props.onExited(h)})})})},r.cancelNextCallback=function(){this.nextCallback!==null&&(this.nextCallback.cancel(),this.nextCallback=null)},r.safeSetState=function(i,o){o=this.setNextCallback(o),this.setState(i,o)},r.setNextCallback=function(i){var o=this,s=!0;return this.nextCallback=function(h){s&&(s=!1,o.nextCallback=null,i(h))},this.nextCallback.cancel=function(){s=!1},this.nextCallback},r.onTransitionEnd=function(i,o){this.setNextCallback(o);var s=this.props.nodeRef?this.props.nodeRef.current:k8.default.findDOMNode(this),h=i==null&&!this.props.addEndListener;if(!s||h){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var v=this.props.nodeRef?[this.nextCallback]:[s,this.nextCallback],f=v[0],g=v[1];this.props.addEndListener(f,g)}i!=null&&setTimeout(this.nextCallback,i)},r.render=function(){var i=this.state.status;if(i===T8)return null;var o=this.props,s=o.children,h=o.in,v=o.mountOnEnter,f=o.unmountOnExit,g=o.appear,m=o.enter,z=o.exit,H=o.timeout,y=o.addEndListener,F=o.onEnter,I=o.onEntering,C=o.onEntered,M=o.onExit,V=o.onExiting,w=o.onExited,E=o.nodeRef,b=n5(o,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]);return P8.default.createElement(v3.Provider,{value:null},typeof s=="function"?s(i,b):P8.default.cloneElement(P8.default.Children.only(s),b))},a}(P8.default.Component);e1.contextType=v3;e1.propTypes={};function d3(){}e1.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:d3,onEntering:d3,onEntered:d3,onExit:d3,onExiting:d3,onExited:d3};e1.UNMOUNTED=T8;e1.EXITED=u5;e1.ENTERING=s5;e1.ENTERED=f3;e1.EXITING=Tr;var g7=e1;var R8=j(u0());var r2=j(u0());function m7(t,a){var r=function(o){return a&&(0,r2.isValidElement)(o)?a(o):o},n=Object.create(null);return t&&r2.Children.map(t,function(i){return i}).forEach(function(i){n[i.key]=r(i)}),n}function yz(t,a){t=t||{},a=a||{};function r(g){return g in a?a[g]:t[g]}var n=Object.create(null),i=[];for(var o in t)o in a?i.length&&(n[o]=i,i=[]):i.push(o);var s,h={};for(var v in a){if(n[v])for(s=0;s0&&arguments[0]!==void 0?arguments[0]:{},r=c7({components:a}),n=r.Input,i=r.MultiValue,o=r.Placeholder,s=r.SingleValue,h=r.ValueContainer,v=u9(r,Zz);return c0({Input:Sz(n),MultiValue:Pz(i),Placeholder:kz(o),SingleValue:Tz(s),ValueContainer:Nz(h)},v)},O8=bh(),IV=O8.Input,EV=O8.MultiValue,PV=O8.Placeholder,kV=O8.SingleValue,TV=O8.ValueContainer,Wz=h7(bh),Ih=Wz;var Z9=j(u0());var kh=j(k6()),Th=j(u0());var Eh=j(u0()),Ph=j(l3()),Xz=["as","disabled"];function jz(t,a){if(t==null)return{};var r={},n=Object.keys(t),i,o;for(o=0;o=0)&&(r[i]=t[i]);return r}function Uz(t){return!t||t.trim()==="#"}function Nr({tagName:t,disabled:a,href:r,target:n,rel:i,role:o,onClick:s,tabIndex:h=0,type:v}){t||(r!=null||n!=null||i!=null?t="a":t="button");let f={tagName:t};if(t==="button")return[{type:v||"button",disabled:a},f];let g=z=>{if((a||t==="a"&&Uz(r))&&z.preventDefault(),a){z.stopPropagation();return}s?.(z)},m=z=>{z.key===" "&&(z.preventDefault(),g(z))};return t==="a"&&(r||(r="#"),a&&(r=void 0)),[{role:o??"button",disabled:void 0,tabIndex:a?void 0:h,href:r,target:t==="a"?n:void 0,"aria-disabled":a||void 0,rel:t==="a"?i:void 0,onClick:g,onKeyDown:m},f]}var Yz=Eh.forwardRef((t,a)=>{let{as:r,disabled:n}=t,i=jz(t,Xz),[o,{tagName:s}]=Nr(Object.assign({tagName:r,disabled:n},i));return(0,Ph.jsx)(s,Object.assign({},i,o,{ref:a}))});Yz.displayName="Button";var Rh=j(l3()),Jz={variant:"primary",active:!1,disabled:!1},Dr=Th.forwardRef(({as:t,bsPrefix:a,variant:r,size:n,active:i,className:o,...s},h)=>{let v=o3(a,"btn"),[f,{tagName:g}]=Nr({tagName:t,...s});return(0,Rh.jsx)(g,{...f,...s,ref:h,className:(0,kh.default)(o,v,i&&"active",r&&`${v}-${r}`,n&&`${v}-${n}`,s.href&&s.disabled&&"disabled")})});Dr.displayName="Button";Dr.defaultProps=Jz;var Oh=Dr;function Qz(t){let[a,r]=(0,Z9.useState)(!1),n=()=>r(!1);return Z9.default.createElement("div",null,Z9.default.createElement("button",{onClick:()=>r(!0),className:"about-button"},t.buttonText),a?Z9.default.createElement("div",{class:"Modal"},Z9.default.createElement("aside",{class:"Modal__content"},Z9.default.createElement("div",{class:"Modal__content--header"},Z9.default.createElement("h2",null,t.title),Z9.default.createElement("p",null,t.subtitle)),Z9.default.createElement("p",null,t.content),Z9.default.createElement("div",{class:"Modal__content--footer"},Z9.default.createElement(Oh,{onClick:n},"Close")))):null)}var Nh=Qz;var S1=j(u0()),Dh=j(q2());function Gr(){let[t,a]=(0,S1.useState)(null),[r,n]=(0,S1.useState)([]),i=Ve();return(0,S1.useEffect)(()=>{i.locate().on("locationfound",function(o){a(o.latlng);let s=o.accuracy;Dh.default.circle(o.latlng,s).addTo(i),n(o.bounds.toBBoxString().split(","))})},[i]),t===null?null:S1.default.createElement(He,{center:t},S1.default.createElement(B8,null,"You are here."))}var Kz=Ih(),Gh=Wu.features.filter(t=>t.geometry.type==="GeometryCollection"&&t.properties.route_id).reduce((t,a)=>({...t,[a.properties.route_id]:J.default.createElement(we,{key:a.properties.route_id,data:a,pathOptions:{color:a.properties.route_color},pointToLayer:function(r,n){return x7.default.circleMarker(n,{radius:3,fillColor:a.properties.route_color})}})}),{}),qz=new x7.default.Icon({iconUrl:Zr(),iconRetinaUrl:Zr(),iconAnchor:null,shadowUrl:null,shadowSize:null,shadowAnchor:null,iconSize:new x7.default.Point(24,24),className:"leaflet-marker-icon"}),tx=(0,J.forwardRef)(({children:t,...a},r)=>{let n=(0,J.useRef)(),{rotationAngle:i,rotationOrigin:o}=a;return(0,J.useEffect)(()=>{let s=n.current;s&&(s.setRotationAngle(i),s.setRotationOrigin(o))},[i,o]),J.default.createElement(_e,{ref:s=>{n.current=s,r&&(r.current=s)},...a},t)});function ax(t){let a=new Date-new Date(t);if(a<6e4)return"less than a minute ago";let r=Math.round(a/6e4);return r===1?"1 minute ago":r+" minutes ago"}var ex=window.location.protocol=="http:"?"ws":"wss",rx=`${ex}://${window.location.hostname}:${window.location.port}/ws`,Wr=new WebSocket(rx),Xr=class extends J.default.Component{constructor(a){super(a);let r=localStorage.getItem("routes")||"[]";this.state={vehicles:[],routes:JSON.parse(r),connected:!1,lastUpdate:new Date,now:new Date},this.handleRouteChange=this.handleRouteChange.bind(this)}componentWillMount(){Wr.onopen=()=>{console.log("Websocket Open"),this.setState({connected:!0})},Wr.onclose=()=>{console.log("Closing websocket"),this.setState({connected:!1})},Wr.onmessage=a=>{console.log("onmessage"),this.state.connected||this.setState({connected:!0});let r=JSON.parse(a.data),n=new Date;this.setState({vehicles:r,lastUpdate:n}),console.dir(r)},this.interval=setInterval(()=>this.setState({now:Date.now()}),1e3)}componentWillUnmount(){clearInterval(this.interval)}routeComponents(){return this.state.routes.length===0?Object.values(Gh):this.state.routes.map(a=>a.value).map(a=>Gh[a]).filter(a=>a!==null)}markerComponents(){let a=r=>!0;if(this.state.routes.length>0){let r=this.state.routes.map(n=>n.value);a=n=>r.includes(n.rt),console.log("query filter on routes: "+r)}return this.state.vehicles.filter(a).map(r=>{let n=[r.lat,r.lon].map(parseFloat),i=parseInt(r.hdg,10),o=ax(r.tmstmp);return J.default.createElement(tx,{key:r.vid,position:n,icon:qz,rotationAngle:i,rotationOrigin:"center"},J.default.createElement(B8,null,r.rt,r.des?" - "+r.des:"",J.default.createElement("br",null),o))})}mapContainer(){return J.default.createElement(ye,{center:[29.95569,-90.0786107],zoom:13,zoomControl:!1},J.default.createElement(Le,{attribution:'\xA9 OpenStreetMap contributors',url:"https://tile.openstreetmap.org/{z}/{x}/{y}.png"}),this.markerComponents(),this.routeComponents(),J.default.createElement(Gr,null))}notConnectedScreen(){return J.default.createElement(Ee,{className:"justify-content-md-center"},J.default.createElement(ke,{md:"auto"},J.default.createElement("p",null,"Looks like you aren't connected. Maybe try refreshing the page. If it's not working please ",J.default.createElement("a",{href:"https://github.com/codefornola/nola-transit-map/issues"},"get in touch with us"),".")))}buildControlBar(){let a=this.state.connected?J.default.createElement(J.default.Fragment,null,J.default.createElement("span",{className:"control-bar__connection-container connected"},J.default.createElement(Nu,null),J.default.createElement("span",{class:"control-bar__label-text"},"Connected"))):J.default.createElement(J.default.Fragment,null,J.default.createElement("span",{className:"control-bar__connection-container not-connected"},J.default.createElement(Du,null),J.default.createElement("span",{class:"control-bar__label-text"},"Not Connected")));if(this.state.connected&&this.lagging()&&(a=J.default.createElement(J.default.Fragment,null,J.default.createElement("span",{className:"control-bar__connection-container trouble-connecting"},J.default.createElement(Gu,null),"Trouble Connecting..."))),!this.state.connected)return this.notConnectedScreen();if(this.state.vehicles.length===0)return J.default.createElement(Ee,{className:"justify-content-md-center"},J.default.createElement(ke,{md:"auto"},J.default.createElement("p",null,"No Vehicles found yet. Are you connected?")));let n=[...new Set(this.state.vehicles.map(i=>i.rt))].map(i=>({value:i,label:i}));return J.default.createElement("div",{class:"control-bar"},J.default.createElement("label",{class:"control-bar__filter-label"},J.default.createElement("span",{class:"control-bar__label-text"},"Filter Routes:"),J.default.createElement(Ah,{closeMenuOnSelect:!1,components:Kz,defaultValue:[],value:this.state.routes,isMulti:!0,options:n,onChange:this.handleRouteChange,className:"route-filter",placeholder:"Filter Select Route(s)"})),a)}handleRouteChange(a){this.setState({routes:a}),localStorage.setItem("routes",JSON.stringify(a))}lagging(){return Math.floor((this.state.now-this.state.lastUpdate)/1e3)>13}render(){return J.default.createElement("div",{className:"App"},J.default.createElement("main",null,this.buildControlBar(),this.mapContainer(),J.default.createElement(Nh,{title:"NOLA Transit Map",subtitle:["Created by ",J.default.createElement("a",{href:"https://codeforneworleans.org/"}," Code For New Orleans")],buttonText:[J.default.createElement(Zu,null),"About this project"],content:["When the RTA switched to the new LePass app, all of the realtime data stopped working. Relying on public transportation in New Orleans without this data is extremely challenging. We made this map as a stop gap until realtime starts working again.",J.default.createElement("br",null),J.default.createElement("br",null),"If you find a problem, or have a feature request, consider ",J.default.createElement("a",{href:"https://github.com/codefornola/nola-transit-map/issues"},"filing an issue here.")," You can also join us on slack in the #civic-hacking channel of the ",J.default.createElement("a",{href:"https://join.slack.com/t/nola/shared_invite/zt-4882ja82-iGm2yO6KCxsi2aGJ9vnsUQ"},"Nola Devs slack.")," Take a look at ",J.default.createElement("a",{href:"https://github.com/codefornola/nola-transit-map"},"the README on GitHub")," to learn more about how it works."]})))}};window.initApp=function(){console.log("initApp()"),(0,Zh.createRoot)(document.getElementById("main")).render(J.default.createElement(Xr,null))};})(); /* @preserve * Leaflet 1.9.2, a JS library for interactive maps. https://leafletjs.com * (c) 2010-2022 Vladimir Agafonkin, (c) 2010-2011 CloudMade