
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
   <title>spatial on rlabuonora.com</title>
   <link>https://rlabuonora.com/tags/spatial/</link>
   <description>Recent content in spatial on rlabuonora.com</description>
   <generator>Hugo -- gohugo.io</generator>
   <copyright>Copyright &amp;copy; 2019 - Rafael La Buonora</copyright>
   <lastBuildDate>Sat, 13 Apr 2019 00:00:00 +0000</lastBuildDate>
   
       <atom:link href="https://rlabuonora.com/tags/spatial/index.xml" rel="self" type="application/rss+xml" />
   
   
     <item>
       <title>Flujo de trabajo en Git</title>
       <link>https://rlabuonora.com/posts/2021-05-06-flujo-de-trabajo-en-git/</link>
       <pubDate>Thu, 06 May 2021 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/2021-05-06-flujo-de-trabajo-en-git/</guid>
       <description>&lt;p&gt;Muchas veces usamos &lt;em&gt;software&lt;/em&gt; sin entender totalmente como funciona. Cuando algo (inevitablemente) sale mal, creemos que nos merecemos los tormentos que sufrimos &lt;a href=&#34;https://es.wikipedia.org/wiki/RTFM&#34;&gt;Read the Fucking Manual!&lt;/a&gt;&lt;/p&gt;&lt;p&gt;En este post uso una de las &lt;em&gt;killer features&lt;/em&gt; de Git para seguir el ejemplo del &lt;a href=&#34;https://mastering-shiny.org/action-workflow.html#case-study&#34;&gt;capítulo de flujos de trabajo de Mastering Shiny&lt;/a&gt;. Esta &lt;em&gt;feature&lt;/em&gt; son las branches (si bien otros SVNs tienen branches, Git las hace muy fáciles de usar).&lt;/p&gt;&lt;p&gt;Las branches permiten tener versiones independientes de el programa que estamos desarrollando. Esto me permite moverme fácilmente entre una versión y otra y experimentar interferir con el trabajo de otros miembros del equipo.&lt;/p&gt;&lt;p&gt;En este caso, trato de arreglar un &lt;em&gt;bug&lt;/em&gt;, pero como mi idea original del problema se basa en un modelo mental incorrecto de la función que estoy usando, introduzco un montón de cambios innecesarios y/o contraproducentes en el proceso de aclarar ese malentendido en mi mente.&lt;/p&gt;&lt;p&gt;Trabajar en una &lt;em&gt;branch&lt;/em&gt; de Git me permite experimentar y una vez que llego a la solución correcta quedarme solo con los cambios que necesito, y descartar todos los cambios que no eran necesarios para la solución final.&lt;/p&gt;&lt;p&gt;El ejemplo es una app con un selector para elegir la región y listar los registros del archivo de &lt;code&gt;csv&lt;/code&gt; que pertenecen a esa región.&lt;/p&gt;&lt;div id=&#34;el-ejemplo.&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;El ejemplo.&lt;/h2&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(shiny)library(readr)sales &amp;lt;- readr::read_csv(&amp;quot;https://raw.githubusercontent.com/hadley/mastering-shiny/master/sales-dashboard/sales_data_sample.csv&amp;quot;)sales &amp;lt;- sales[c(    &amp;quot;TERRITORY&amp;quot;, &amp;quot;ORDERDATE&amp;quot;, &amp;quot;ORDERNUMBER&amp;quot;, &amp;quot;PRODUCTCODE&amp;quot;,    &amp;quot;QUANTITYORDERED&amp;quot;, &amp;quot;PRICEEACH&amp;quot;)]ui &amp;lt;- fluidPage(    selectInput(&amp;quot;territory&amp;quot;, &amp;quot;territory&amp;quot;, choices = unique(sales$TERRITORY)),    tableOutput(&amp;quot;selected&amp;quot;))server &amp;lt;- function(input, output, session) {    selected &amp;lt;- reactive(sales[sales$TERRITORY == input$territory, ])    output$selected &amp;lt;- renderTable(head(selected(), 10))}# Run the application shinyApp(ui = ui, server = server)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Si pegás el código en RStudio y corrés la app, ves que hay un montón de &lt;code&gt;NAs&lt;/code&gt;. El problema está muy bien explicado en el capítulo de Hadley que mencioné antes.&lt;/p&gt;&lt;p&gt;Entramos al directorio de la app y chequeamos el estado de Git:&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;# Bashcd appgit statusgit log --oneline&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## On branch master## nothing to commit, working tree clean## bff90c4 Initial commit&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Solo está el commit inicial.&lt;/p&gt;&lt;p&gt;El problema está en esta expresión:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;sales[sales$TERRITORY == input$territory, ]&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Cuando &lt;code&gt;sales$TERRITORY&lt;/code&gt; es &lt;code&gt;NA&lt;/code&gt;, &lt;code&gt;sales$TERRITORY == input$territory&lt;/code&gt; es &lt;code&gt;NA&lt;/code&gt; y &lt;code&gt;sales[NA]&lt;/code&gt; da una fila de &lt;code&gt;NAs&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Vamos a usar &lt;code&gt;subset&lt;/code&gt; para arreglarlo, pero primero hago un branch.&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit checkout -b demasiados_nas&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Switched to a new branch &amp;#39;demasiados_nas&amp;#39;&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appcp app_1.R app.R&lt;/code&gt;&lt;/pre&gt;&lt;!-- Miro GIT --&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit statusgit diff&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## On branch demasiados_nas## Changes not staged for commit:##   (use &amp;quot;git add &amp;lt;file&amp;gt;...&amp;quot; to update what will be committed)##   (use &amp;quot;git restore &amp;lt;file&amp;gt;...&amp;quot; to discard changes in working directory)##  modified:   app.R## ## no changes added to commit (use &amp;quot;git add&amp;quot; and/or &amp;quot;git commit -a&amp;quot;)## diff --git a/app.R b/app.R## index 7ef3837..27c80bb 100644## --- a/app.R## +++ b/app.R## @@ -12,7 +12,7 @@ ui &amp;lt;- fluidPage(##      tableOutput(&amp;quot;selected&amp;quot;)##  )##  server &amp;lt;- function(input, output, session) {## -    selected &amp;lt;- reactive(sales[sales$TERRITORY == input$territory, ])## +    selected &amp;lt;- reactive(subset(sales, sales$TERRITORY == input$territory))##      output$selected &amp;lt;- renderTable(head(selected(), 10))##  }## &lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;a href=&#34;https://www.atlassian.com/git/tutorials/saving-changes/git-diff&#34;&gt;Acá&lt;/a&gt; hay más información sobre como leer esta salida. Muestra 7 líneas a partir de la línea 12. Las que empiezan con &lt;code&gt;-&lt;/code&gt; son la versión anterior, y la que empieza con &lt;code&gt;+&lt;/code&gt; la nueva. Commiteo el cambio y sigo.&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit add app.Rgit commit -m &amp;quot;Usa subset en vez de ==&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [demasiados_nas 5a2006c] Usa subset en vez de ==##  1 file changed, 1 insertion(+), 1 deletion(-)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Pero ahora me encuentro con otro problema. Como dice Hadley, los &lt;code&gt;NA&lt;/code&gt; son infecciosos. Eso implica que &lt;code&gt;sales$TERRITORY == NA&lt;/code&gt; es siempre &lt;code&gt;NA&lt;/code&gt;, por lo si elegimo NA en el dropdown vamos a subsetear por un vector de &lt;code&gt;NA&lt;/code&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;subset(sales, TERRITORY == NA)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## # A tibble: 0 x 6## # … with 6 variables: TERRITORY &amp;lt;chr&amp;gt;, ORDERDATE &amp;lt;chr&amp;gt;, ORDERNUMBER &amp;lt;dbl&amp;gt;,## #   PRODUCTCODE &amp;lt;chr&amp;gt;, QUANTITYORDERED &amp;lt;dbl&amp;gt;, PRICEEACH &amp;lt;dbl&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Para solucionar eso, podemos usar &lt;code&gt;%in%&lt;/code&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;subset(sales, TERRITORY %in% c(&amp;quot;EMEA&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## # A tibble: 1,407 x 6##    TERRITORY ORDERDATE       ORDERNUMBER PRODUCTCODE QUANTITYORDERED PRICEEACH##    &amp;lt;chr&amp;gt;     &amp;lt;chr&amp;gt;                 &amp;lt;dbl&amp;gt; &amp;lt;chr&amp;gt;                 &amp;lt;dbl&amp;gt;     &amp;lt;dbl&amp;gt;##  1 EMEA      5/7/2003 0:00         10121 S10_1678                 34      81.4##  2 EMEA      7/1/2003 0:00         10134 S10_1678                 41      94.7##  3 EMEA      11/11/2003 0:00       10180 S10_1678                 29      86.1##  4 EMEA      11/18/2003 0:00       10188 S10_1678                 48     100  ##  5 EMEA      1/15/2004 0:00        10211 S10_1678                 41     100  ##  6 EMEA      7/23/2004 0:00        10275 S10_1678                 45      92.8##  7 EMEA      9/30/2004 0:00        10299 S10_1678                 23     100  ##  8 EMEA      10/15/2004 0:00       10309 S10_1678                 41     100  ##  9 EMEA      11/24/2004 0:00       10341 S10_1678                 41     100  ## 10 EMEA      2/3/2005 0:00         10375 S10_1678                 21      34.9## # … with 1,397 more rows&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Commiteamos el resultado.&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit add app.Rgit commit -m &amp;quot;Usa %in% en vez de == en subset&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [demasiados_nas 41b2365] Usa %in% en vez de == en subset##  1 file changed, 1 insertion(+), 1 deletion(-)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Y mergear a master&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit checkout mastergit merge demasiados_nasgit log --all --decorate --oneline --graph&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Switched to branch &amp;#39;master&amp;#39;## Updating bff90c4..41b2365## Fast-forward##  app.R | 2 +-##  1 file changed, 1 insertion(+), 1 deletion(-)## * 41b2365 (HEAD -&amp;gt; master, demasiados_nas) Usa %in% en vez de == en subset## * 5a2006c Usa subset en vez de ==## * bff90c4 Initial commit&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;plot-twist&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Plot Twist&lt;/h2&gt;&lt;p&gt;Bueno acá viene lo mejor, en el archivo original, &lt;code&gt;NA&lt;/code&gt; no es &lt;code&gt;NA&lt;/code&gt; de R, sino “NA” de North America. 🤦. Estuvimos todo el tiempo atrás de la pista incorrecta. En realidad &lt;code&gt;sales&lt;/code&gt; no tiene &lt;code&gt;NA&lt;/code&gt; en la variable &lt;code&gt;TERRITORY&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;La solución correcta es especificar los NAs en la llamada a &lt;code&gt;read_csv&lt;/code&gt;, para que no confunda “NA” con &lt;code&gt;NA&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;sales &amp;lt;- readr::read_csv(&amp;quot;https://raw.githubusercontent.com/hadley/mastering-shiny/master/sales-dashboard/sales_data_sample.csv&amp;quot;, na = &amp;quot;&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Pero ahora tenemos toda nuestra app plagada de cambios que hicimos cuando no entendíamos el problema!&lt;/p&gt;&lt;p&gt;Vamos a usar Git para arreglar este problema. Usammos &lt;code&gt;git reset&lt;/code&gt; para volver &lt;code&gt;master&lt;/code&gt; dos commits para atrás. Así, &lt;code&gt;master&lt;/code&gt; apunta al commit donde empezó el problema.&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit reset --hard HEAD~2git checkout -b no_hay_nas_en_territory&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## HEAD is now at bff90c4 Initial commit## Switched to a new branch &amp;#39;no_hay_nas_en_territory&amp;#39;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Hacer los cambios&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit statusgit diff&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## On branch no_hay_nas_en_territory## Changes not staged for commit:##   (use &amp;quot;git add &amp;lt;file&amp;gt;...&amp;quot; to update what will be committed)##   (use &amp;quot;git restore &amp;lt;file&amp;gt;...&amp;quot; to discard changes in working directory)##  modified:   app.R## ## no changes added to commit (use &amp;quot;git add&amp;quot; and/or &amp;quot;git commit -a&amp;quot;)## diff --git a/app.R b/app.R## index 7ef3837..387e0c9 100644## --- a/app.R## +++ b/app.R## @@ -1,7 +1,7 @@##  library(shiny)##  library(readr)##  ## -sales &amp;lt;- readr::read_csv(&amp;quot;https://raw.githubusercontent.com/hadley/mastering-shiny/master/sales-dashboard/sales_data_sample.csv&amp;quot;)## +sales &amp;lt;- readr::read_csv(&amp;quot;https://raw.githubusercontent.com/hadley/mastering-shiny/master/sales-dashboard/sales_data_sample.csv&amp;quot;, na = &amp;quot;&amp;quot;)##  sales &amp;lt;- sales[c(##      &amp;quot;TERRITORY&amp;quot;, &amp;quot;ORDERDATE&amp;quot;, &amp;quot;ORDERNUMBER&amp;quot;, &amp;quot;PRODUCTCODE&amp;quot;,##      &amp;quot;QUANTITYORDERED&amp;quot;, &amp;quot;PRICEEACH&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;La línea que había que cambiar era la 7!&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit add app.Rgit commit -m &amp;quot;Agrega argumento na a la llamada a read_csv&amp;quot;git log --all --decorate --oneline --graph&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [no_hay_nas_en_territory fbc196e] Agrega argumento na a la llamada a read_csv##  1 file changed, 1 insertion(+), 1 deletion(-)## * fbc196e (HEAD -&amp;gt; no_hay_nas_en_territory) Agrega argumento na a la llamada a read_csv## | * 41b2365 (demasiados_nas) Usa %in% en vez de == en subset## | * 5a2006c Usa subset en vez de ==## |/  ## * bff90c4 (master) Initial commit&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ahora tengo que mergeamos estos estos cambios con master.&lt;/p&gt;&lt;pre class=&#34;bash&#34;&gt;&lt;code&gt;cd appgit checkout mastergit merge no_hay_nas_en_territorygit log --all --decorate --oneline --graph&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Switched to branch &amp;#39;master&amp;#39;## Updating bff90c4..fbc196e## Fast-forward##  app.R | 2 +-##  1 file changed, 1 insertion(+), 1 deletion(-)## * fbc196e (HEAD -&amp;gt; master, no_hay_nas_en_territory) Agrega argumento na a la llamada a read_csv## | * 41b2365 (demasiados_nas) Usa %in% en vez de == en subset## | * 5a2006c Usa subset en vez de ==## |/  ## * bff90c4 Initial commit&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Feriados en Uruguay</title>
       <link>https://rlabuonora.com/posts/2021-05-06-feriados-en-uruguay/</link>
       <pubDate>Sat, 06 Feb 2021 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/2021-05-06-feriados-en-uruguay/</guid>
       <description>&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/header-attrs/header-attrs.js&#34;&gt;&lt;/script&gt;&lt;p&gt;El primero de Mayo conmemoramos el días de los trabajadores. Lamentablemente, este año nos cayó sábado, por lo que nos perdimos el día libre. En este post uso &lt;code&gt;lubridate&lt;/code&gt; para visualizar este lamentable fenómeno de la vida labora de este país.&lt;/p&gt;&lt;p&gt;Wikipedia tiene una tabla con los &lt;a href=&#34;https://es.wikipedia.org/wiki/D%C3%ADas_feriados_de_Uruguay&#34;&gt;feriados en Uruguay&lt;/a&gt;. Traté de scrapearla directo con &lt;code&gt;rvest&lt;/code&gt; pero la última columna de la tabla da problemas así que copié los datos a mano.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(tidyverse)feriados_tabla &amp;lt;- tibble::tribble(  ~fecha,       ~nombre,      &amp;quot;1 de enero&amp;quot;, &amp;quot;Año Nuevo&amp;quot;,  &amp;quot;6 de enero&amp;quot;, &amp;quot;Día de los Niños&amp;quot;,  &amp;quot;19 de abril&amp;quot;, &amp;quot;Desembarco de los Treinta y Tres Orientales&amp;quot;,  &amp;quot;1 de mayo&amp;quot;,    &amp;quot;Día de los Trabajadores&amp;quot;,  &amp;quot;18 de mayo&amp;quot;,  &amp;quot;Batalla de Las Piedras&amp;quot;,  &amp;quot;19 de junio&amp;quot;, &amp;quot;Natalicio de Artigas&amp;quot;,  &amp;quot;18 de julio&amp;quot;, &amp;quot;Jura de la Constitución&amp;quot;,  &amp;quot;25 de agosto&amp;quot;,&amp;quot;Declaratoria de la Independencia&amp;quot;,   &amp;quot;12 de octubre&amp;quot;, &amp;quot;Día de la Raza&amp;quot;,  &amp;quot;2 de noviembre&amp;quot;, &amp;quot;Día de los Difuntos&amp;quot;,  &amp;quot;25 de diciembre&amp;quot;, &amp;quot;Día de la Familia&amp;quot;) %&amp;gt;%   # Sacamos &amp;quot; de&amp;quot; para que no moleste a lubridate  mutate(fecha = str_replace(fecha, &amp;quot; de&amp;quot;, &amp;quot;&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;div id=&#34;parsear-fechas-en-español.&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Parsear fechas (en español).&lt;/h1&gt;&lt;p&gt;En Uruguay hay 11 feriados. Para convertirlas en fechas, usamos &lt;code&gt;expand_grid&lt;/code&gt; para combinar las fechas con todos los años entre 2015 y 2030, y para parsear el texto de la fecha usamos &lt;code&gt;readr::parse_date&lt;/code&gt;. La función &lt;code&gt;wday&lt;/code&gt; nos da el día de la semana en que cae determinada fecha.&lt;/p&gt;&lt;p&gt;Para que &lt;code&gt;parse_date&lt;/code&gt; entienda bien el texto de los meses (enero, febrero, etc.) especifico el argumento &lt;code&gt;locale=locale(&#34;es&#34;)&lt;/code&gt;. Para que &lt;code&gt;wday&lt;/code&gt; nos de el día de la semana de cada fecha, hay que setear la locale del sistema con &lt;code&gt;Sys.setlocale&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(lubridate)Sys.setlocale(&amp;quot;LC_TIME&amp;quot;, &amp;quot;Spanish_Spain.1252&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;Spanish_Spain.1252&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;feriados &amp;lt;- expand_grid(t=2017:2032, fecha=feriados_tabla$fecha) %&amp;gt;%   left_join(feriados_tabla, by=&amp;quot;fecha&amp;quot;) %&amp;gt;%   mutate(fecha = paste(fecha, t)) %&amp;gt;%   mutate(fecha=parse_date(fecha, &amp;quot;%d %B %Y&amp;quot;, locale=locale(&amp;quot;es&amp;quot;))) %&amp;gt;%   mutate(wdia=wday(fecha, label=TRUE, abbr=FALSE)) %&amp;gt;%   mutate(wdia = stringr::str_to_title(wdia))&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;visualización&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Visualización&lt;/h1&gt;&lt;p&gt;Ahora una visualización bien simple para ver que nos deparan los próximos años:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;feriados %&amp;gt;%   mutate(fin_de_semana = wdia %in% c(&amp;quot;Sábado&amp;quot;, &amp;quot;Domingo&amp;quot;)) %&amp;gt;%   count(t, fin_de_semana) %&amp;gt;%   ggplot(aes(t, n, fill=fin_de_semana)) +   geom_col() +   scale_x_continuous(breaks=2017:2032) +   theme(legend.position = &amp;quot;bottom&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2021-05-06-feriados-en-uruguay/index_files/figure-html/unnamed-chunk-4-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;p&gt;Parecería que después de dos años medios 2021 y 2022, en 2023 vamos a tener muy pocos feriados que caen fin de semana y 2024 va a ser nefasto. Quiero saber dos cosas: ¿cuáles son los feriados que caen juntos?&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;cómo-juegan-los-años-bisiestos&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;¿Cómo juegan los años bisiestos?&lt;/h1&gt;&lt;p&gt;Los feriados van cambiando de a un día en los años normales y de a dos los años bisiestos:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;feriados %&amp;gt;%   filter(nombre==&amp;quot;Año Nuevo&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## # A tibble: 16 x 4##        t fecha      nombre    wdia     ##    &amp;lt;int&amp;gt; &amp;lt;date&amp;gt;     &amp;lt;chr&amp;gt;     &amp;lt;chr&amp;gt;    ##  1  2017 2017-01-01 Año Nuevo Domingo  ##  2  2018 2018-01-01 Año Nuevo Lunes    ##  3  2019 2019-01-01 Año Nuevo Martes   ##  4  2020 2020-01-01 Año Nuevo Miércoles##  5  2021 2021-01-01 Año Nuevo Viernes  ##  6  2022 2022-01-01 Año Nuevo Sábado   ##  7  2023 2023-01-01 Año Nuevo Domingo  ##  8  2024 2024-01-01 Año Nuevo Lunes    ##  9  2025 2025-01-01 Año Nuevo Miércoles## 10  2026 2026-01-01 Año Nuevo Jueves   ## 11  2027 2027-01-01 Año Nuevo Viernes  ## 12  2028 2028-01-01 Año Nuevo Sábado   ## 13  2029 2029-01-01 Año Nuevo Lunes    ## 14  2030 2030-01-01 Año Nuevo Martes   ## 15  2031 2031-01-01 Año Nuevo Miércoles## 16  2032 2032-01-01 Año Nuevo Jueves&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;El primero de Enero cayó Viernes en 2016, y cómo 2016 fue bisiesto, en 2017 cayó domingo. En 2018 cayó Lunes, 2019 Martes, etc. El día de los Trabajadores es después del 29 de Febrero, por lo que los años bisiestos lo afectan diferente.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;feriados %&amp;gt;%   filter(nombre==&amp;quot;Día de los Trabajadores&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## # A tibble: 16 x 4##        t fecha      nombre                  wdia     ##    &amp;lt;int&amp;gt; &amp;lt;date&amp;gt;     &amp;lt;chr&amp;gt;                   &amp;lt;chr&amp;gt;    ##  1  2017 2017-05-01 Día de los Trabajadores Lunes    ##  2  2018 2018-05-01 Día de los Trabajadores Martes   ##  3  2019 2019-05-01 Día de los Trabajadores Miércoles##  4  2020 2020-05-01 Día de los Trabajadores Viernes  ##  5  2021 2021-05-01 Día de los Trabajadores Sábado   ##  6  2022 2022-05-01 Día de los Trabajadores Domingo  ##  7  2023 2023-05-01 Día de los Trabajadores Lunes    ##  8  2024 2024-05-01 Día de los Trabajadores Miércoles##  9  2025 2025-05-01 Día de los Trabajadores Jueves   ## 10  2026 2026-05-01 Día de los Trabajadores Viernes  ## 11  2027 2027-05-01 Día de los Trabajadores Sábado   ## 12  2028 2028-05-01 Día de los Trabajadores Lunes    ## 13  2029 2029-05-01 Día de los Trabajadores Martes   ## 14  2030 2030-05-01 Día de los Trabajadores Miércoles## 15  2031 2031-05-01 Día de los Trabajadores Jueves   ## 16  2032 2032-05-01 Día de los Trabajadores Sábado&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Esto implica que los años bisiestos cambian la distribución de feriados por día, y esta queda estable y se mueve hacia la derecha cada año hasta el próximo año bisiesto:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;dias &amp;lt;- c(&amp;quot;Domingo&amp;quot;, &amp;quot;Lunes&amp;quot;, &amp;quot;Martes&amp;quot;,          &amp;quot;Miércoles&amp;quot;, &amp;quot;Jueves&amp;quot;, &amp;quot;Viernes&amp;quot;,          &amp;quot;Sábado&amp;quot;)feriados %&amp;gt;%   mutate(wdia=str_sub(wdia, 1, 3)) %&amp;gt;%   count(t, wdia) %&amp;gt;%   mutate(wdia=factor(wdia, levels=str_sub(dias, 1, 3))) %&amp;gt;%   ggplot(aes(wdia, n)) +  geom_col() +  facet_wrap(~t, ncol = 4) +   guides(fill=&amp;quot;none&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2021-05-06-feriados-en-uruguay/index_files/figure-html/unnamed-chunk-7-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Visualizando Homicidios</title>
       <link>https://rlabuonora.com/posts/vacunas/</link>
       <pubDate>Tue, 28 Jul 2020 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/vacunas/</guid>
       <description>&lt;p&gt;Este es mi primer post sobre tidy tuesday. Este proyecto, creado por &lt;a href=&#34;https://twitter.com/thomas_mock&#34;&gt;Thomas Mock&lt;/a&gt;, publica un data set todo los martes y invita a los participantes a postear una visualización usándolo.&lt;/p&gt;&lt;p&gt;Para esta semana se publicaron tres juegos de datos provenientes de &lt;a href=&#34;https://simplystatistics.org/2019/08/28/you-can-replicate-almost-any-plot-with-ggplot2/&#34;&gt;este blog post&lt;/a&gt;. La idea es mostrar el poder de &lt;code&gt;ggplot&lt;/code&gt; para reproducir visualizaciones que encontró el autor por ahí.&lt;/p&gt;&lt;div id=&#34;homicidios&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Homicidios&lt;/h1&gt;&lt;p&gt;El primer dataset tiene la tasa de homicidios en 6 países del G-8:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;homicidios &amp;lt;- read_csv(here(&amp;quot;static&amp;quot;, &amp;quot;data&amp;quot;, &amp;quot;tidytuesday&amp;quot;,&amp;quot;international_murders.csv&amp;quot;))head(homicidios)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## # A tibble: 6 x 4##   country count label code ##   &amp;lt;chr&amp;gt;   &amp;lt;dbl&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;chr&amp;gt;## 1 US       3.2  3.2   us   ## 2 ITALY    0.71 0.71  it   ## 3 CANADA   0.5  0.5   ca   ## 4 UK       0.1  0.1   gb   ## 5 JAPAN    0    0     jp   ## 6 GERMANY  0.2  0.2   de&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Este es el gráfico original:&lt;/p&gt;&lt;div class=&#34;figure&#34;&gt;&lt;img src=&#34;https://abcnews.go.com/images/International/homocides_g8_countries_640x360_wmain.jpg&#34; alt=&#34;grafico original&#34; /&gt;&lt;p class=&#34;caption&#34;&gt;grafico original&lt;/p&gt;&lt;/div&gt;&lt;p&gt;Revisando la fuente de los datos encontré &lt;a href=&#34;https://dataunodc.un.org/GSH_app&#34;&gt;esta app&lt;/a&gt;, sería interesante comparar a Uruguay en estos números, pero los datos no coinciden.&lt;/p&gt;&lt;p&gt;El diseño del gráfico es un bar chart, pero le agrega las banderas de los países y las tasas sobre las barras.&lt;/p&gt;&lt;p&gt;Este es el gráfico base con títulos:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# plot basicohomicidios %&amp;gt;%   ggplot(aes(country, count)) +  geom_col() +   labs(x=&amp;quot;&amp;quot;, y=&amp;quot;# de homicidios con armas de fuego \n cada 100,000 habitantes&amp;quot;,        caption = &amp;quot;Fuente: \nUNODC Homicide Statistics&amp;quot;,       title = &amp;quot;Tasa de Homicidios en países del G-8.&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-homicidios_files/figure-html/unnamed-chunk-3-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;p&gt;Como mapeamos el eje x a una columna de texto, &lt;code&gt;ggplot&lt;/code&gt; la convierte a un factor. El orden en el que aparecen los países en el eje depende de los niveles del factor, por defecto es alfabético:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;levels(factor(homicidios$country))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;CANADA&amp;quot;  &amp;quot;FRANCE&amp;quot;  &amp;quot;GERMANY&amp;quot; &amp;quot;ITALY&amp;quot;   &amp;quot;JAPAN&amp;quot;   &amp;quot;RUSSIA&amp;quot;  &amp;quot;UK&amp;quot;     ## [8] &amp;quot;US&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Esto es algo que puede confundir a alguien que no tiene experiencia trabajando con factores: el orden de los niveles es independiente del orden en que aparecen en el data frame.&lt;/p&gt;&lt;p&gt;En este caso, el orden del factor es alfabético (Canadá, Francia, etc.), y el data frame está ordenado por la tasa de homicidios (descendente): US, Italia, Canadá.&lt;/p&gt;&lt;p&gt;Para controlar el orden en el que aparecen los países ordenar las etiquetas, usamos una función muy útil de &lt;code&gt;forcats&lt;/code&gt;: &lt;code&gt;fct_inorder&lt;/code&gt;. Esta función reordena los niveles del factor para que coincida con el orden en el que aparecen en el data-frame:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;homicidios_2 &amp;lt;- homicidios %&amp;gt;%   arrange(-count) %&amp;gt;%   mutate(country_ordenado = fct_inorder(country))levels(homicidios_2$country_ordenado)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;US&amp;quot;      &amp;quot;ITALY&amp;quot;   &amp;quot;CANADA&amp;quot;  &amp;quot;GERMANY&amp;quot; &amp;quot;UK&amp;quot;      &amp;quot;FRANCE&amp;quot;  &amp;quot;JAPAN&amp;quot;  ## [8] &amp;quot;RUSSIA&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Para la versión final, agrego las etiquetas del texto con &lt;code&gt;geom_text&lt;/code&gt; (nudge_y me permite ajustar el texto un poco para que no toque las barras).&lt;/p&gt;&lt;p&gt;También descubrí &lt;code&gt;ggflags&lt;/code&gt;, que nos da una función &lt;code&gt;geom_flag&lt;/code&gt; con el &lt;code&gt;aes&lt;/code&gt; country para especificar el país. La coordenada y de todas las banderas la fijo en -.4.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# install_github(&amp;quot;rensa/ggflags&amp;quot;)library(ggflags)library(ggthemes)# theme_economist# agrego texto sobre las columnas con geom_text y nudge_yplot &amp;lt;- homicidios %&amp;gt;%   arrange(-count) %&amp;gt;%   mutate(country = fct_inorder(country)) %&amp;gt;% # fct_inorder  ggplot(aes(country, count)) +   geom_col(fill=&amp;quot;darkred&amp;quot;) +   geom_flag(y = -.4, aes(country = code), size = 12) + # geom_flag  geom_text(aes(label = if_else(country == &amp;quot;RUSSIA&amp;quot;, &amp;quot;S/D&amp;quot;, as.character(count))),                 nudge_y = .15) + # nudge, label  scale_x_discrete(labels=NULL) + # remove labels from x-axis  labs(x=&amp;quot;&amp;quot;, y=&amp;quot;# de homicidios con armas de fuego \n cada 100,000 habitantes&amp;quot;,        caption = &amp;quot;Fuente: \nUNODC Homicide Statistics&amp;quot;,       title = &amp;quot;Tasa de Homicidios en países del G-8&amp;quot;) +   theme_economist() +  theme(    axis.line.x = element_blank(),    axis.ticks.x = element_blank(),    plot.caption = element_text(vjust = 170) # mover caption  )&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;plot&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-homicidios_files/figure-html/unnamed-chunk-7-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Un gráfico de barras anotado</title>
       <link>https://rlabuonora.com/posts/examenes-visualizaciones/</link>
       <pubDate>Thu, 28 May 2020 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/examenes-visualizaciones/</guid>
       <description>&lt;p&gt;En este posteo hago un gráfico de barras con anotaciones para mostrar un problema en el sistema de exámenes de las escuelas de Nueva York.&lt;/p&gt;&lt;div id=&#34;diplopma-regents&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Diplopma Regents&lt;/h1&gt;&lt;p&gt;Los exámenes Regents son una serie de tests estándar de temas de secundaria en el estado de Nueva York. Este set de datos muestra las notas de exámenes en varias materias. Lo que llama la atención es que hay un gran número de examenes con 65, la nota mínima de aprobación.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;nyc_regents &amp;lt;-  read_csv(here(&amp;quot;static&amp;quot;, &amp;quot;data&amp;quot;, &amp;quot;tidytuesday&amp;quot;,&amp;quot;nyc_regents.csv&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Parsed with column specification:## cols(##   score = col_double(),##   integrated_algebra = col_double(),##   global_history = col_double(),##   living_environment = col_double(),##   english = col_double(),##   us_history = col_double()## )&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# reshapenyc_reshape &amp;lt;- nyc_regents %&amp;gt;%   gather(k=&amp;quot;subject&amp;quot;, v=&amp;quot;tests&amp;quot;, -score) %&amp;gt;%   group_by(score) %&amp;gt;%   summarize(tests = sum(tests, na.rm = TRUE))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## `summarise()` ungrouping output (override with `.groups` argument)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# plot basicog &amp;lt;- ggplot(nyc_reshape, aes(score, tests)) +   geom_col()# Textog +   labs(caption = &amp;quot;Fuente: New York City Department of Education&amp;quot;,       title = &amp;quot;Salvar Raspando&amp;quot;,       subtitle = &amp;quot;2010 Regents scores on Algebra, \nGlobal History, Biology, English &amp;amp; US History&amp;quot;,        y = &amp;quot;&amp;quot;, x = &amp;quot;&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Warning: Removed 1 rows containing missing values (position_stack).&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-examenes_files/figure-html/unnamed-chunk-2-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Ejes# Scales en el grammar of graphics# Customizando los ejes con scale_x_* y scale_y_*# le pasamos una función a labels# expand es contraintuitivamente importante# labels, breaks, expandg +     labs(caption = &amp;quot;Source: New York City Department of Education&amp;quot;,       title = &amp;quot;Scraping By&amp;quot;,       subtitle = &amp;quot;2010 Regents scores on Algebra, \nGlobal History, Biology, English &amp;amp; US History&amp;quot;,        y = &amp;quot;&amp;quot;, x = &amp;quot;&amp;quot;) +   scale_x_continuous(breaks = seq(0, 100, 5), expand = expand_scale(add = c(0, 0))) +   scale_y_continuous(position = &amp;quot;right&amp;quot;,                      labels = scales::number_format(big.mark = &amp;quot;,&amp;quot;), # function                     breaks = c(1e4, 2e4, 3e4))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Warning: `expand_scale()` is deprecated; use `expansion()` instead.## Warning: Removed 1 rows containing missing values (position_stack).&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-examenes_files/figure-html/unnamed-chunk-2-2.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Themeg + labs(caption = &amp;quot;Fuente: New York City Department of Education&amp;quot;,       title = &amp;quot;Salvar Raspando&amp;quot;,       subtitle = &amp;quot;Notas 2010 Regents en Álgebra, \nHistoria, Biología, e Inglés&amp;quot;,       y = &amp;quot;&amp;quot;, x = &amp;quot;&amp;quot;) +   scale_x_continuous(breaks = seq(0, 100, 5), expand = expand_scale(add = c(0, 0))) +   scale_y_continuous(position = &amp;quot;right&amp;quot;,                      labels = scales::number_format(big.mark = &amp;quot;,&amp;quot;), # function                     breaks = c(1e4, 2e4, 3e4)) +   theme_minimal() +   theme(    panel.grid.major.y = element_line(linetype = &amp;quot;dashed&amp;quot;, color = &amp;quot;gray50&amp;quot;),    panel.grid.major.x = element_blank(),    panel.grid.minor = element_blank(),    axis.text.y = element_text(vjust = 1.5),    axis.text.x = element_text(vjust = 7),    plot.margin = margin(unit(c(20, 20, 20, 20), &amp;quot;cm&amp;quot;))  )&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Warning: `expand_scale()` is deprecated; use `expansion()` instead.## Warning: Removed 1 rows containing missing values (position_stack).&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-examenes_files/figure-html/unnamed-chunk-2-3.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# color a las columnasggplot(nyc_reshape, aes(score, tests)) +   geom_col(color = &amp;quot;black&amp;quot;, fill = &amp;quot;#C4843C&amp;quot;) +   labs(caption = &amp;quot;Fuente: New York City Department of Education&amp;quot;,       title = &amp;quot;Salvar Raspando&amp;quot;,       subtitle = &amp;quot;Notas 2010 Regents en Álgebra, \nHistoria, Biología, e Inglés&amp;quot;,       y = &amp;quot;&amp;quot;, x = &amp;quot;&amp;quot;) +   scale_x_continuous(breaks = seq(0, 100, 5), expand = expand_scale(add = c(0, 0))) +   scale_y_continuous(position = &amp;quot;right&amp;quot;,                      labels = scales::number_format(big.mark = &amp;quot;,&amp;quot;), # function                     breaks = c(1e4, 2e4, 3e4)) +   theme_minimal() +   theme(    panel.grid.major.y = element_line(linetype = &amp;quot;dashed&amp;quot;, color = &amp;quot;gray50&amp;quot;),    panel.grid.major.x = element_blank(),    panel.grid.minor = element_blank(),    axis.text.y = element_text(vjust = 1.5),    axis.text.x = element_text(vjust = 7),    plot.margin = margin(unit(c(20, 20, 20, 20), &amp;quot;cm&amp;quot;))  )&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Warning: `expand_scale()` is deprecated; use `expansion()` instead.## Warning: Removed 1 rows containing missing values (position_stack).&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-examenes_files/figure-html/unnamed-chunk-2-4.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Todo juntonyc_regents %&amp;gt;%   gather(k=&amp;quot;k&amp;quot;, v=&amp;quot;v&amp;quot;, -score) %&amp;gt;%   group_by(score) %&amp;gt;%   summarize(v = sum(v, na.rm = TRUE)) %&amp;gt;%   ggplot(aes(score, v)) +  annotate(&amp;quot;rect&amp;quot;, xmin = 65, xmax=Inf, ymin=0, ymax=Inf, alpha = 0.6, fill = &amp;quot;grey80&amp;quot;) +   annotate(&amp;quot;text&amp;quot;,            label = &amp;quot;Mìnimo para diploma Regents&amp;quot;,           x = 45, y = 2.5e4) +   annotate(&amp;quot;segment&amp;quot;, arrow=arrow(type = &amp;quot;closed&amp;quot;, length = unit(0.2, &amp;quot;cm&amp;quot;)), x=50, y=2.8e4, xend=64, yend=3.2e4) +   geom_col(color = &amp;quot;black&amp;quot;, fill = &amp;quot;#C4843C&amp;quot;) +   theme_minimal() +   scale_x_continuous(breaks = seq(0, 100, 5), expand = expand_scale(add = c(0, 0))) +   scale_y_continuous(position = &amp;quot;right&amp;quot;,                      labels = scales::number_format(big.mark = &amp;quot;,&amp;quot;), # function                     breaks = c(1e4, 2e4, 3e4)) +   labs(caption = &amp;quot;Fuente: New York City Department of Education&amp;quot;,       title = &amp;quot;Salvar Raspando&amp;quot;,       subtitle = &amp;quot;Notas Regents 2010 en Álgebra, \nHistoria, Biología, e Inglés&amp;quot;,       y = &amp;quot;&amp;quot;, x = &amp;quot;&amp;quot;) +  labs(y = &amp;quot;&amp;quot;, x = &amp;quot;&amp;quot;) +  theme(    panel.grid.major.y = element_line(linetype = &amp;quot;dashed&amp;quot;, color = &amp;quot;gray50&amp;quot;),    panel.grid.major.x = element_blank(),    panel.grid.minor = element_blank(),    axis.text.y = element_text(vjust = 1.5),    axis.text.x = element_text(vjust = 7),    plot.margin = margin(unit(c(20, 20, 20, 20), &amp;quot;cm&amp;quot;)) #   )&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## `summarise()` ungrouping output (override with `.groups` argument)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Warning: `expand_scale()` is deprecated; use `expansion()` instead.## Warning: Removed 1 rows containing missing values (position_stack).&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-examenes_files/figure-html/unnamed-chunk-2-5.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>El estilo de Metallica a lo largo de los discos</title>
       <link>https://rlabuonora.com/posts/metallica/</link>
       <pubDate>Sun, 26 Jan 2020 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/metallica/</guid>
       <description>&lt;p&gt;Para este post de &lt;a href=&#34;https://twitter.com/hashtag/tidytuesday?lang=en&#34;&gt;#tidytuesday&lt;/a&gt; usé la API de spotify para bajar datos sobre la música de Metallica.&lt;/p&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2020-01-26-metallica_files/metallica_tempo.png&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&lt;p&gt;Este es el código para bajar los datos y la tapa de los discos:&lt;/p&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(spotifyr)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(tidyverse)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(lubridate)METALLICA_ID &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;2ye2Wgw4gimLv2eAKyk1NB&amp;#34;&lt;/span&gt;metallica_albums &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;get_artist_albums&lt;/span&gt;(id&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;METALLICA_ID,                                      include_groups &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;album&amp;#34;&lt;/span&gt;,                                      limit &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;50&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;slice&lt;/span&gt;(&lt;span style=&#34;color:#ae81ff&#34;&gt;6&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;11&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;13&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;17&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;19&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;21&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;26&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;30&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;35&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;39&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;43&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;mutate&lt;/span&gt;(release_year &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;year&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;as_date&lt;/span&gt;(release_date)))metallica_albums&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;cover_url &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; metallica_albums&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;images &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   purrr&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;map&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;url&amp;#34;&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   purrr&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;map&lt;/span&gt;(&lt;span style=&#34;color:#ae81ff&#34;&gt;3&lt;/span&gt;)metallica_albums &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; metallica_albums &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;select&lt;/span&gt;(album_name&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;name, album_id&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;id, release_year, cover_url)   get_album_tracks &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;function&lt;/span&gt;(album_id, album_name) {  &lt;span style=&#34;color:#75715e&#34;&gt;# get track name, track id &amp;amp; album name (add all album.level data here)&lt;/span&gt;  album &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;get_album&lt;/span&gt;(id&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;album_id)  &lt;span style=&#34;color:#a6e22e&#34;&gt;tibble&lt;/span&gt;(track_name&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;album&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;tracks&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;items&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;name,         track_id   &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; album&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;tracks&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;items&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;id,         album_name &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; album_name)}get_track_info &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;function&lt;/span&gt;(track_id, track_name, album_name) {  features &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;get_track_audio_features&lt;/span&gt;(id&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;track_id)  &lt;span style=&#34;color:#a6e22e&#34;&gt;mutate&lt;/span&gt;(features,          album_name &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; album_name,         track_name &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; track_name) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;     &lt;span style=&#34;color:#a6e22e&#34;&gt;select&lt;/span&gt;(album_name, track_name, danceability&lt;span style=&#34;color:#f92672&#34;&gt;:&lt;/span&gt;tempo, duration_ms)}metallica_tracks &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; metallica_albums &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;pmap&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;function&lt;/span&gt;(&lt;span style=&#34;color:#66d9ef&#34;&gt;...&lt;/span&gt;) {    current &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;tibble&lt;/span&gt;(&lt;span style=&#34;color:#66d9ef&#34;&gt;...&lt;/span&gt;)    &lt;span style=&#34;color:#a6e22e&#34;&gt;get_album_tracks&lt;/span&gt;(current&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;album_id, current&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;album_name)  }) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;map&lt;/span&gt;(purrr&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;transpose) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   flatten &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;map_df&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;function&lt;/span&gt;(x) {    &lt;span style=&#34;color:#a6e22e&#34;&gt;get_track_info&lt;/span&gt;(x&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;track_id, x&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;track_name, x&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;album_name)  }) metallica_tracks_df &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; metallica_tracks &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;left_join&lt;/span&gt;(metallica_albums) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;mutate&lt;/span&gt;(track_name &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;str_remove&lt;/span&gt;(track_name, &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34; - Remastered&amp;#34;&lt;/span&gt;)) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;mutate&lt;/span&gt;(track_name &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;str_remove&lt;/span&gt;(track_name, &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;\\(Remastered\\)&amp;#34;&lt;/span&gt;)) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;mutate&lt;/span&gt;(album_name &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;str_remove&lt;/span&gt;(album_name, &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;\\(Remastered\\)&amp;#34;&lt;/span&gt;)) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;group_by&lt;/span&gt;(album_name) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;mutate&lt;/span&gt;(track_num &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;row_number&lt;/span&gt;()) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;arrange&lt;/span&gt;(release_year, track_num)&lt;span style=&#34;color:#a6e22e&#34;&gt;dir.create&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;data&amp;#39;&lt;/span&gt;)&lt;span style=&#34;color:#a6e22e&#34;&gt;saveRDS&lt;/span&gt;(metallica_tracks_df, file&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;data/metallica.rds&amp;#34;&lt;/span&gt;)download_cover &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;function&lt;/span&gt;(url, release_year) {  file_name &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; glue&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;glue&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{release_year}.jpg&amp;#34;&lt;/span&gt;)  dest &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;file.path&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;covers&amp;#34;&lt;/span&gt;, file_name)  &lt;span style=&#34;color:#a6e22e&#34;&gt;download.file&lt;/span&gt;(url, destfile&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;dest)}&lt;span style=&#34;color:#a6e22e&#34;&gt;dir.create&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;covers&amp;#39;&lt;/span&gt;)purrr&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;walk2&lt;/span&gt;(metallica_albums&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;cover_url,            metallica_albums&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;release_year,             download_cover)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Y este es el código para crear el gráfico:&lt;/p&gt;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4&#34;&gt;&lt;code class=&#34;language-r&#34; data-lang=&#34;r&#34;&gt;&lt;span style=&#34;color:#75715e&#34;&gt;# Evolution of song tempo&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(tidyverse)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(ggplot2)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(jpeg)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(grid)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(ggdark)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(showtext)&lt;span style=&#34;color:#a6e22e&#34;&gt;library&lt;/span&gt;(ggrepel)&lt;span style=&#34;color:#a6e22e&#34;&gt;theme_set&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;dark_theme_grey&lt;/span&gt;())&lt;span style=&#34;color:#75715e&#34;&gt;# Agregar fuente&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;font_add_google&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Metal Mania&amp;#34;&lt;/span&gt;, &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;metal&amp;#34;&lt;/span&gt;)&lt;span style=&#34;color:#a6e22e&#34;&gt;showtext_auto&lt;/span&gt;()metallica &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;readRDS&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;./data/metallica.rds&amp;#34;&lt;/span&gt;)&lt;span style=&#34;color:#75715e&#34;&gt;# metallica$track_name &amp;lt;- fct_inorder(factor(metallica$track_name))&lt;/span&gt;metallica&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;album_name &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;fct_inorder&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;factor&lt;/span&gt;(metallica&lt;span style=&#34;color:#f92672&#34;&gt;$&lt;/span&gt;album_name))fast_songs &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Holier Than Thou&amp;#34;&lt;/span&gt;,                 &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;My Apocalypse&amp;#34;&lt;/span&gt;,                 &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The Four Horsemen&amp;#34;&lt;/span&gt;)highligts &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; metallica &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;filter&lt;/span&gt;(track_name &lt;span style=&#34;color:#f92672&#34;&gt;%in%&lt;/span&gt;  fast_songs)&lt;span style=&#34;color:#75715e&#34;&gt;# Gráfico de base.&lt;/span&gt;tempo &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; metallica &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;ggplot&lt;/span&gt;(&lt;span style=&#34;color:#a6e22e&#34;&gt;aes&lt;/span&gt;(album_name, tempo, group &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;1&lt;/span&gt;)) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;scale_x_discrete&lt;/span&gt;(breaks &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;NULL&lt;/span&gt;, expand&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#ae81ff&#34;&gt;0.1&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;0&lt;/span&gt;)) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;scale_y_continuous&lt;/span&gt;(limits &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;c&lt;/span&gt;(&lt;span style=&#34;color:#ae81ff&#34;&gt;60&lt;/span&gt;, &lt;span style=&#34;color:#ae81ff&#34;&gt;220&lt;/span&gt;)) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;geom_point&lt;/span&gt;() &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;geom_text_repel&lt;/span&gt;(data &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; highligts,                   &lt;span style=&#34;color:#a6e22e&#34;&gt;aes&lt;/span&gt;(label&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;track_name),                   nudge_y &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;10&lt;/span&gt;,                  nudge_x &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;.2&lt;/span&gt;,                  color&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;white&amp;#34;&lt;/span&gt;, size &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;3&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;geom_smooth&lt;/span&gt;(se&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;FALSE&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;guides&lt;/span&gt;(color&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;FALSE&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;labs&lt;/span&gt;(title&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Metallica&amp;#34;&lt;/span&gt;,        subtitle &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;New albums are almost as fast as the early ones.&amp;#34;&lt;/span&gt;,        caption  &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Data: Spotify&amp;#34;&lt;/span&gt;,       x&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Album&amp;#34;&lt;/span&gt;, y&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Tempo (bpm)&amp;#34;&lt;/span&gt;)&lt;span style=&#34;color:#75715e&#34;&gt;# Agregar las tapas de los discos como imágenes.&lt;/span&gt;covers &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;list.files&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;covers&amp;#39;&lt;/span&gt;, full.names &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#66d9ef&#34;&gt;TRUE&lt;/span&gt;) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   purrr&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;map&lt;/span&gt;(readJPEG) &lt;span style=&#34;color:#f92672&#34;&gt;%&amp;gt;%&lt;/span&gt;   purrr&lt;span style=&#34;color:#f92672&#34;&gt;::&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;map&lt;/span&gt;(rasterGrob, interpolate&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;TRUE&lt;/span&gt;)y_coord_cover &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt;  &lt;span style=&#34;color:#ae81ff&#34;&gt;60&lt;/span&gt;y_offset &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;10.5&lt;/span&gt;&lt;span style=&#34;color:#a6e22e&#34;&gt;for &lt;/span&gt;(i in &lt;span style=&#34;color:#a6e22e&#34;&gt;seq_along&lt;/span&gt;(covers)) {  tempo &lt;span style=&#34;color:#f92672&#34;&gt;&amp;lt;-&lt;/span&gt; tempo &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;annotation_custom&lt;/span&gt;(grob&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;covers[[i]], xmin&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;i&lt;span style=&#34;color:#ae81ff&#34;&gt;-1+.5&lt;/span&gt;, xmax&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;i&lt;span style=&#34;color:#ae81ff&#34;&gt;+.5&lt;/span&gt;, ymin&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;y_coord_cover, ymax&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;y_coord_cover&lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;y_offset)}tempo &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;   &lt;span style=&#34;color:#a6e22e&#34;&gt;theme&lt;/span&gt;(    text &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;element_text&lt;/span&gt;(family&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;metal&amp;#34;&lt;/span&gt;),    plot.title &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;element_text&lt;/span&gt;(hjust &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#ae81ff&#34;&gt;.5&lt;/span&gt;),    plot.subtitle &lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;element_text&lt;/span&gt;(hjust&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#ae81ff&#34;&gt;.5&lt;/span&gt;)  ) &lt;span style=&#34;color:#f92672&#34;&gt;+&lt;/span&gt;  &lt;span style=&#34;color:#a6e22e&#34;&gt;ggsave&lt;/span&gt;(&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;metallica_tempo.png&amp;#34;&lt;/span&gt;)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Vacunas</title>
       <link>https://rlabuonora.com/posts/vacunas/</link>
       <pubDate>Thu, 28 Nov 2019 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/vacunas/</guid>
       <description>&lt;p&gt;Este es mi primer post sobre tidy tuesday. Este proyecto, creado por &lt;a href=&#34;https://twitter.com/thomas_mock&#34;&gt;Thomas Mock&lt;/a&gt;, publica un data set todo los martes y invita a los participantes a postear una visualización usándolo.&lt;/p&gt;&lt;p&gt;Para esta semana se publicaron tres juegos de datos provenientes de &lt;a href=&#34;https://simplystatistics.org/2019/08/28/you-can-replicate-almost-any-plot-with-ggplot2/&#34;&gt;este blog post&lt;/a&gt;. La idea es mostrar el poder de &lt;code&gt;ggplot&lt;/code&gt; para reproducir visualizaciones que encontró el autor por ahí.&lt;/p&gt;&lt;div id=&#34;el-efecto-de-la-vacuna-contra-el-sarampión&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;El efecto de la vacuna contra el sarampión&lt;/h1&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Measels# devtools::install_github(&amp;quot;rafalab/dslabs&amp;quot;)library(dslabs)diseases &amp;lt;- dslabs::us_contagious_diseases# Research!jet.colors &amp;lt;- colorRampPalette(c(&amp;quot;#F0FFFF&amp;quot;, &amp;quot;cyan&amp;quot;, &amp;quot;#007FFF&amp;quot;, &amp;quot;yellow&amp;quot;, &amp;quot;#FFBF00&amp;quot;, &amp;quot;orange&amp;quot;, &amp;quot;red&amp;quot;, &amp;quot;#7F0000&amp;quot;), bias = 2.25)diseases %&amp;gt;%   filter(disease == &amp;quot;Measles&amp;quot;) %&amp;gt;%   filter(!state %in% c(&amp;quot;Hawaii&amp;quot;, &amp;quot;Alaska&amp;quot;)) %&amp;gt;%   mutate(rate = count / population * 10000 * 52 / weeks_reporting) %&amp;gt;%   mutate(state = reorder(state, desc(state))) %&amp;gt;%   ggplot(aes(year, state, fill=rate)) +   geom_tile(color = &amp;quot;white&amp;quot;) +   scale_fill_gradientn(colors = jet.colors(16), na.value = &amp;quot;white&amp;quot;, name = &amp;quot;Tasa&amp;quot;) + ## research!  scale_x_continuous(expand = c(0, 0)) +   labs(x = &amp;quot;&amp;quot;, y = &amp;quot;&amp;quot;, title = &amp;quot;Sarampión&amp;quot;, subtitle = &amp;quot;Enfermos cada 10000 habitantes&amp;quot;) +  geom_vline(xintercept = 1963) +   annotate(geom = &amp;quot;text&amp;quot;, x=1970, y = 50, label = &amp;quot;Introducción de la vacuna&amp;quot;) +   theme_minimal() +   coord_cartesian(clip = &amp;#39;off&amp;#39;) +   theme(    legend.position = &amp;quot;bottom&amp;quot;,  )&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-12-28-vacunas_files/figure-html/unnamed-chunk-2-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Personas y lugares en las novelas de Mario Vargas Llosa</title>
       <link>https://rlabuonora.com/posts/personas-y-lugares-vargas-llosa/</link>
       <pubDate>Tue, 15 Oct 2019 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/personas-y-lugares-vargas-llosa/</guid>
       <description>&lt;p&gt;&lt;code&gt;spacyR&lt;/code&gt; es una interfaz para usar una librería de NLP de python -spacy- desde R. En este post exploro un poco como detectar nombres de personas y de lugares usando esta librería para analizar cuáles son los personajes principales y los lugares más mencionados en cada capítulo de Las Travesuras de la Niña Mala.&lt;/p&gt;&lt;div id=&#34;corpus&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Corpus&lt;/h2&gt;&lt;p&gt;A partir del texto de las novelas (en inglés), creo un data frame con una línea por fila y columnas con el texto y el capítulo al que corresponde cada línea.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;bad_girl_url &amp;lt;- &amp;quot;https://raw.githubusercontent.com/rlabuonora/mvll_nlp/master/txt/bad_girl.txt&amp;quot;bad_girl_raw &amp;lt;- readLines(bad_girl_url, encoding = &amp;quot;UTF-8&amp;quot;)bad_girl_lines &amp;lt;- tibble(text = bad_girl_raw) %&amp;gt;%  mutate(chapter = str_detect(text, &amp;quot;\\d{1,2}.?$&amp;quot;), # Detect 1, 2, 3 ..7         chapter = cumsum(chapter)) %&amp;gt;%  # cumsum o fill  tibble::rowid_to_column(var=&amp;quot;doc_id&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;spacy&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Spacy&lt;/h2&gt;&lt;p&gt;Una vez que importé el texto de la novela, uso &lt;code&gt;spacy_parse&lt;/code&gt; para detectar las &lt;strong&gt;named entities&lt;/strong&gt;. Una &lt;strong&gt;named entity&lt;/strong&gt; es una entidad que aparece mencionada en el texto.&lt;/p&gt;&lt;p&gt;&lt;code&gt;Spacy&lt;/code&gt; usa un algoritmo para detectar cuáles &lt;em&gt;tokens&lt;/em&gt; en el texto pertenecen a una entidad y de que tipo de entidad se trata.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;bad_girl_parsed &amp;lt;- spacy_parse(bad_girl_lines$text, lemma = FALSE, entity = TRUE, nounphrase = TRUE)ents &amp;lt;- entity_extract(bad_girl_parsed, type = &amp;quot;all&amp;quot;) %&amp;gt;%   mutate(doc_id = as.numeric(str_extract(doc_id, &amp;quot;\\d{1,4}&amp;quot;))) %&amp;gt;%   left_join(select(bad_girl_lines, chapter, doc_id))head(ents)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##   doc_id sentence_id                  entity entity_type chapter## 1      1           1                       1    CARDINAL       1## 2     10           1       a_fabulous_summer        DATE       1## 3     10           2             Pérez_Prado      PERSON       1## 4     10           2                  twelve    CARDINAL       1## 5     10           2                Carnival      PERSON       1## 6     10           2 the_Lawn_Tennis_of_Lima     PRODUCT       1&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;El data frame &lt;code&gt;ents&lt;/code&gt; tiene un &lt;code&gt;doc_id&lt;/code&gt; que nos permite vincular estos resultados con el input original (donde tenemos a què capítulo pertence cada frase, el nombre de la entidad detectada, y el tipo de entidad detectada.)&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;visualizacion&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Visualización&lt;/h1&gt;&lt;p&gt;Para la visualizión del resultado, veamos cuáles son las entidades de tipo &lt;em&gt;persona&lt;/em&gt; y &lt;em&gt;lugar&lt;/em&gt; más nombradas en cada capítulo:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;personas_por_capitulo &amp;lt;- ents %&amp;gt;%   filter(entity_type  == &amp;quot;PERSON&amp;quot;) %&amp;gt;%   filter(!entity %in% c(&amp;quot;’s&amp;quot;)) %&amp;gt;% # sacar entidades mal clasificadas  group_by(chapter, entity) %&amp;gt;%   summarize(mentions = n()) %&amp;gt;%   arrange(chapter, -mentions) %&amp;gt;%   top_n(5, mentions) # Los 5 personajes más mencionadospersonas_por_capitulo %&amp;gt;%   ggplot(aes(entity, mentions, fill = entity)) +  geom_col() +  coord_flip() +  facet_wrap(~chapter, scales=&amp;quot;free_y&amp;quot;) +   guides(fill=FALSE) +  labs(y=&amp;quot;Menciones&amp;quot;, x=&amp;quot;Personajes&amp;quot;,        title = &amp;quot;Travesuras de la Niña Mala&amp;quot;,       subtitle=&amp;quot;Personajes más mencionados por capítulo&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-10-15-personas-y-lugares-en-vargas-llosa_files/figure-html/unnamed-chunk-4-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;p&gt;Ahora hacemos lo mismo pero nos quedamos con las entidades de tipo &lt;em&gt;GPE&lt;/em&gt;: (&lt;em&gt;Geopolitical Entity&lt;/em&gt;).&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;lugares_por_capitulo &amp;lt;- ents %&amp;gt;%   filter(entity_type  == &amp;quot;GPE&amp;quot;) %&amp;gt;% # GPE =&amp;gt; Geopolitical Entity  filter(!entity %in% c(&amp;quot;Salomón&amp;quot;, &amp;quot;Alberta&amp;quot;, &amp;quot;’s&amp;quot;,                         &amp;quot;Mitsuko&amp;quot;, &amp;quot;Elena&amp;quot;)) %&amp;gt;% # Sacar ents mal clasificadas  group_by(chapter, entity) %&amp;gt;%   summarize(mentions = n()) %&amp;gt;%   arrange(chapter, -mentions) %&amp;gt;%   top_n(5, mentions)lugares_por_capitulo %&amp;gt;%   ggplot(aes(entity, mentions, fill = entity)) +  geom_col() +  coord_flip() +  facet_wrap(~chapter, scales=&amp;quot;free_y&amp;quot;) +   guides(fill=FALSE) +  labs(y=&amp;quot;Menciones&amp;quot;, x=&amp;quot;Lugares&amp;quot;,        title = &amp;quot;Travesuras de la Niña Mala&amp;quot;,       subtitle=&amp;quot;Lugares más mencionados por capítulo&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-10-15-personas-y-lugares-en-vargas-llosa_files/figure-html/unnamed-chunk-5-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Prediciendo Precios de Propiedades</title>
       <link>https://rlabuonora.com/posts/predicting-house-prices/</link>
       <pubDate>Sun, 16 Jun 2019 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/predicting-house-prices/</guid>
       <description>&lt;div id=&#34;TOC&#34;&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&#34;#datos-faltantes&#34;&gt;Datos faltantes&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#analisis-exploratorio&#34;&gt;Análisis Exploratorio&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&#34;#variable-objetivo-saleprice&#34;&gt;Variable objetivo: SalePrice&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#outliers&#34;&gt;Outliers&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#variables-numericas-discontinuas&#34;&gt;Variables numéricas discontinuas&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#variables-categoricas&#34;&gt;Variables categóricas&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#variables-categoricas-ordinales&#34;&gt;Variables Categóricas Ordinales&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#modelos&#34;&gt;Modelos&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&#34;#regresion-sin-regularizacion&#34;&gt;Regresión sin Regularización&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#lasso&#34;&gt;Lasso&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#ridge&#34;&gt;Ridge&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#analisis-de-los-errores&#34;&gt;Análisis de los Errores&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;#conclusiones&#34;&gt;Conclusiones&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;p&gt;En este post estimo tres modelos de regresión para predecir el precio de venta de una propiedad inmobiliaria usando &lt;code&gt;scikit-learn&lt;/code&gt;. Las columnas disponibles incluyen 80 columnas con información sobre la localización de las propiedades, su estructura y estado de conservación, su localización y la fecha y condiciones de la venta.&lt;/p&gt;&lt;p&gt;Dado que la variable objetivo es continua, uso 3 modelos de regresión: regresión lineal sin regularización, regresión Ridge y regresión Lasso.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Importar módulosimport pandas as pdimport numpy as np# Leer los datos casas = pd.read_csv(&amp;quot;../../public/data/precios_casas/train.csv&amp;quot;)# Primeras filasprint(casas.head())&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##    Id  MSSubClass MSZoning  ...  SaleType  SaleCondition SalePrice## 0   1          60       RL  ...        WD         Normal    208500## 1   2          20       RL  ...        WD         Normal    181500## 2   3          60       RL  ...        WD         Normal    223500## 3   4          70       RL  ...        WD        Abnorml    140000## 4   5          60       RL  ...        WD         Normal    250000## ## [5 rows x 81 columns]&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Cantidad de filas y columnas:&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;print(casas.shape)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## (1460, 81)&lt;/code&gt;&lt;/pre&gt;&lt;div id=&#34;datos-faltantes&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Datos faltantes&lt;/h2&gt;&lt;p&gt;Los datos faltantes son un problema habitual en este tipo de tarea. El primer paso para analizarlo es cuantificar cuantos casos tienen datos faltantes en cada columna:&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;print(casas.isnull().any().sum())&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## 19&lt;/code&gt;&lt;/pre&gt;&lt;!-- Columnas numéricas con datos faltantes: --&gt;&lt;!-- ```{python} --&gt;&lt;!-- # Seleccionar numéricas --&gt;&lt;!-- numericas = casas.select_dtypes(include = [np.number]) --&gt;&lt;!-- # Columnas numéricas con faltantes --&gt;&lt;!-- print(casas[numericas.columns[numericas.isnull().any()]].isnull().sum().sort_values(ascending = False)) --&gt;&lt;!-- ``` --&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;continuas = [&amp;quot;LotArea&amp;quot;,      &amp;quot;GrLivArea&amp;quot;,   &amp;quot;GarageArea&amp;quot;,             &amp;quot;WoodDeckSF&amp;quot;,   &amp;quot;OpenPorchSF&amp;quot;, &amp;quot;EnclosedPorch&amp;quot;,             &amp;quot;3SsnPorch&amp;quot;,    &amp;quot;ScreenPorch&amp;quot;,             &amp;quot;LowQualFinSF&amp;quot;, &amp;quot;LotFrontage&amp;quot;,             &amp;quot;1stFlrSF&amp;quot;,     &amp;quot;2ndFlrSF&amp;quot;]&lt;/code&gt;&lt;/pre&gt;&lt;!-- ```{python} --&gt;&lt;!-- # Columnas categóricas --&gt;&lt;!-- categoricas = casas.select_dtypes(include=[object]) --&gt;&lt;!-- # Columnas categóricas con faltantes --&gt;&lt;!-- print(casas[categoricas.columns[categoricas.isnull().any()]].isnull().sum().sort_values(ascending = False)) --&gt;&lt;!-- ``` --&gt;&lt;/div&gt;&lt;div id=&#34;analisis-exploratorio&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Análisis Exploratorio&lt;/h1&gt;&lt;div id=&#34;variable-objetivo-saleprice&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Variable objetivo: SalePrice&lt;/h2&gt;&lt;p&gt;La variable a predecir es el precio de venta de la propiedad. Es continua y no tiene missings. La propiedad promedio se vendió en $ 180.920, la más barata salió $ 34.900 y la más cara $755.000.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;casas[[&amp;quot;SalePrice&amp;quot;]].describe()&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##            SalePrice## count    1460.000000## mean   180921.195890## std     79442.502883## min     34900.000000## 25%    129975.000000## 50%    163000.000000## 75%    214000.000000## max    755000.000000&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Tiene distribución asimétrica, con la cola larga a la derecha (es más probable que una casa sea más cara que más barata que el promedio). Esta asimetría hace que sea conveniente normalizarla para modelarla.&lt;/p&gt;&lt;p&gt;Defino una función &lt;code&gt;helper_curtosis&lt;/code&gt; para anotar los gráficos de asimetría:&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;def helper_curtosis(x):  # Texto sobre la curtosis de x  # para agregar al gráfico  sk = skew(x)  sk_pval = skewtest(x)[0]  return f&amp;#39;Curtosis:\n{sk:.2f} ({sk_pval:.3f})&amp;#39;&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;import matplotlib.pyplot as pltimport seaborn as snsimport scipy.stats as statsfrom scipy.stats import skew, skewtestfig, ax = plt.subplots(1, 2, figsize=(12,4))# SalePrice sin transformarx = casas[&amp;quot;SalePrice&amp;quot;]sns.distplot(x, kde=False, fit=stats.norm, ax=ax[0])ax[0].text(400000, 0.000005, helper_curtosis(x), fontsize = 14)#ax[0].set_title(&amp;quot;SalePrice&amp;quot;)# SalePrice transformadalog1_x = np.log1p(casas[&amp;quot;SalePrice&amp;quot;])sns.distplot(log1_x, kde=False, fit=stats.norm, ax=ax[1])ax[1].text(12.6, 0.6, helper_curtosis(log1_x), fontsize = 14)ax[1].set_xlabel(&amp;quot;log(1+SalePrice)&amp;quot;)_ = fig.suptitle(&amp;quot;La transformación x = log(1+x) corrige la asimetría en SalePrice&amp;quot;, fontsize=16)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-06-16-prediciendo-precios-propiedades_files/figure-html/unnamed-chunk-7-1.png&#34; width=&#34;1152&#34; /&gt;&lt;/p&gt;&lt;p&gt;El &lt;a href=&#34;https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.stats.skewtest.html#scipy.stats.skewtest&#34;&gt;test de curtosis&lt;/a&gt; es una prueba estadística para determinar si la distibución es simétrica. En la variable original rechazamos que la distribución sea simétrica y en la transformada con &lt;code&gt;log(1+x)&lt;/code&gt; no rechazamos la hipótesis nula de que la distribución es simétrica.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Correlaciones con SalePricecorr_sales_price = casas.corr()[&amp;quot;SalePrice&amp;quot;]# Solo las mayores que 0.63 ordenadas descendiendocorrs_altas = corr_sales_price[corr_sales_price &amp;gt; 0.4].sort_values(ascending = False)print(corrs_altas)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## SalePrice       1.000000## OverallQual     0.790982## GrLivArea       0.708624## GarageCars      0.640409## GarageArea      0.623431## TotalBsmtSF     0.613581## 1stFlrSF        0.605852## FullBath        0.560664## TotRmsAbvGrd    0.533723## YearBuilt       0.522897## YearRemodAdd    0.507101## GarageYrBlt     0.486362## MasVnrArea      0.477493## Fireplaces      0.466929## Name: SalePrice, dtype: float64&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Calculamos las correlaciones de la variables objetivo con el resto de las variables para determinar en qué variables enfocarnos:&lt;/p&gt;&lt;p&gt;La calidad de la casa (&lt;code&gt;OverallQual&lt;/code&gt;), el metraje (&lt;code&gt;GrLivArea&lt;/code&gt;), la cantidad de autos que entran en el garage (&lt;code&gt;GarageCars&lt;/code&gt;) y el metraje del garage (&lt;code&gt;GarageArea&lt;/code&gt;) son las variables continuas más importantes.&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;outliers&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Outliers&lt;/h2&gt;&lt;p&gt;Hay dos propiedades que tienen valores atípicos.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Marcar outliercasas[&amp;quot;outlier&amp;quot;] = np.logical_and(casas[&amp;quot;GrLivArea&amp;quot;] &amp;gt; 4000,                                   casas[&amp;quot;SalePrice&amp;quot;] &amp;lt; 300000)# Scatterplotfig, ax = plt.subplots(1, 2, figsize=(12,4))_ = sns.scatterplot(x=&amp;quot;GrLivArea&amp;quot;, y=&amp;quot;SalePrice&amp;quot;, hue=&amp;quot;outlier&amp;quot;, data=casas, ax = ax[0])_ = plt.title(&amp;quot;Dos propiedades baratas para su tamaño&amp;quot;, fontsize = 16)_ = ax[1].set(xscale=&amp;quot;log&amp;quot;, yscale=&amp;quot;log&amp;quot;)_ = ax[1].set_xlabel(&amp;quot;log&amp;quot;) #, ylabel = &amp;quot;log&amp;quot;)_ = sns.scatterplot(x=&amp;quot;GrLivArea&amp;quot;, y=&amp;quot;SalePrice&amp;quot;, hue=&amp;quot;outlier&amp;quot;, data=casas, ax = ax[1])_ = plt.title(&amp;quot;Transformación logarítmica&amp;quot;, fontsize = 16)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-06-16-prediciendo-precios-propiedades_files/figure-html/unnamed-chunk-9-1.png&#34; width=&#34;1152&#34; /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;variables-numericas-discontinuas&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Variables numéricas discontinuas&lt;/h2&gt;&lt;p&gt;Estas variables son numéricas pero representan cuentas (cantidad de baños, cantidad de cuartos, etc.).&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Cantidad de baños, cantidad de garagescuentas =   [&amp;quot;KitchenAbvGr&amp;quot;, &amp;quot;BedroomAbvGr&amp;quot;,              &amp;quot;Fireplaces&amp;quot;,   &amp;quot;BsmtFullBath&amp;quot;,             &amp;quot;TotRmsAbvGrd&amp;quot;, &amp;quot;FullBath&amp;quot;,             &amp;quot;HalfBath&amp;quot;,     &amp;quot;YearBuilt&amp;quot;]   # Panel de (2, 3)dim_panel = (2, 4)fig, ax = plt.subplots(dim_panel[0], dim_panel[1], figsize=(12,8))ax[1,3].tick_params(labelbottom = False)fig.subplots_adjust(hspace=0.4, wspace=0.4)# Ordenar los nombres de las columnas (2, 3) para iterar fácilcols = np.reshape(np.array(cuentas)[:8], dim_panel) # tomo los primeros 6 para que entre en el panel            _ = [sns.countplot(x=cols[i, j], data=casas, ax = ax[i, j]) for i in range(dim_panel[0])                                                               for j in range(dim_panel[1])]plt.show()&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-06-16-prediciendo-precios-propiedades_files/figure-html/unnamed-chunk-10-1.png&#34; width=&#34;1152&#34; /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;variables-categoricas&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Variables categóricas&lt;/h2&gt;&lt;p&gt;Estas variables son categorías y las modelamos como &lt;em&gt;dummies&lt;/em&gt;.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;categoricas = [&amp;quot;LotShape&amp;quot;,     &amp;quot;LandContour&amp;quot;,   &amp;quot;BldgType&amp;quot;,   &amp;quot;Foundation&amp;quot;,               &amp;quot;Neighborhood&amp;quot;, &amp;quot;Exterior1st&amp;quot;,   &amp;quot;LandSlope&amp;quot;,  &amp;quot;HouseStyle&amp;quot;,                 &amp;quot;PavedDrive&amp;quot;,   &amp;quot;SaleCondition&amp;quot;, &amp;quot;RoofStyle&amp;quot;,  &amp;quot;CentralAir&amp;quot;,                    &amp;quot;LotShape&amp;quot;,     &amp;quot;LandContour&amp;quot;,   &amp;quot;MSZoning&amp;quot;,   &amp;quot;SaleType&amp;quot;,               &amp;quot;Street&amp;quot;,       &amp;quot;Utilities&amp;quot;,     &amp;quot;Heating&amp;quot;,    &amp;quot;RoofMatl&amp;quot;,               &amp;quot;Exterior2nd&amp;quot;,  &amp;quot;LotConfig&amp;quot;,                                                    &amp;quot;Alley&amp;quot;,        &amp;quot;Electrical&amp;quot;,   &amp;quot;BsmtFinType1&amp;quot;, &amp;quot;BsmtFinType2&amp;quot;,  # Tienen Nan               &amp;quot;GarageType&amp;quot;,   &amp;quot;MiscFeature&amp;quot;,   &amp;quot;MasVnrType&amp;quot;,  &amp;quot;Fence&amp;quot;          # Tienen Nan              ]dim_panel = (5, 5)fig, ax = plt.subplots(dim_panel[0], dim_panel[1], figsize=(12,16))# Apagar los tick labels cuando son demasiadosapagar_ejes = [    (0, 2), (0, 3), (0, 4),     (1, 0), (1, 2), (1, 4),     (2, 0), (2, 2), (2, 3),    (3, 0), (3, 3), (3, 4),    (4, 0), (4, 1), (4, 3), (4, 4)]_ = [ax[plt].tick_params(labelbottom = False) for plt in apagar_ejes]# Fijar los espacios entre los subplotsfig.subplots_adjust(hspace=0.4, wspace=0.6)cols = np.reshape(np.array(categoricas)[:25], dim_panel)_ = [sns.countplot(x=cols[i, j], data=casas, ax = ax[i, j]) for i in range(dim_panel[0])                                                               for j in range(dim_panel[1])]                                                              plt.show()&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-06-16-prediciendo-precios-propiedades_files/figure-html/unnamed-chunk-11-1.png&#34; width=&#34;1152&#34; /&gt;&lt;/p&gt;&lt;p&gt;&lt;code&gt;Street&lt;/code&gt;, &lt;code&gt;Utilities&lt;/code&gt;, &lt;code&gt;Heating&lt;/code&gt; y &lt;code&gt;RoofMatl&lt;/code&gt; tienen muy poca variación y pueden generar problemas en el modelo.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Sacar las problematicascat_problemas = [&amp;quot;Street&amp;quot;, &amp;quot;Utilities&amp;quot;, &amp;quot;Heating&amp;quot;, &amp;quot;RoofMatl&amp;quot;] #_ = [ categoricas.remove(col) for col in cat_problemas  ]cat_missing = [&amp;quot;MasVnrType&amp;quot;,   &amp;quot;GarageType&amp;quot;,                 #&amp;quot;Electrical&amp;quot;,   &amp;quot;MiscFeature&amp;quot;,               &amp;quot;BsmtFinType1&amp;quot;, &amp;quot;BsmtFinType2&amp;quot;,               &amp;quot;LotConfig&amp;quot;,    &amp;quot;Exterior2nd&amp;quot;,  &amp;quot;LandSlope&amp;quot;,                &amp;quot;Alley&amp;quot;,        &amp;quot;Fence&amp;quot; ]_ = [ categoricas.remove(col) for col in cat_missing  ]&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;variables-categoricas-ordinales&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Variables Categóricas Ordinales&lt;/h2&gt;&lt;p&gt;El último tipo de columna son las variables categóricas ordinales (ej: calidad de la piscina). En estos casos, la variable aparece como texto, pero en realidad queremos modelarla como numérica, porque Calidad = 2 es más que Calidad = 1. Para eso tenemos que recodificar las columnas.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;ordinales = [&amp;quot;OverallQual&amp;quot;,  &amp;quot;OverallCond&amp;quot;, &amp;quot;ExterQual&amp;quot;,             &amp;quot;ExterCond&amp;quot;,    &amp;quot;BsmtQual&amp;quot;,    &amp;quot;BsmtCond&amp;quot;,             &amp;quot;BsmtExposure&amp;quot;, &amp;quot;HeatingQC&amp;quot;,   &amp;quot;KitchenQual&amp;quot;,             &amp;quot;Functional&amp;quot;,   &amp;quot;FireplaceQu&amp;quot;, &amp;quot;PoolQC&amp;quot;,             &amp;quot;GarageFinish&amp;quot;, &amp;quot;GarageCond&amp;quot;,  &amp;quot;GarageQual&amp;quot;,             &amp;quot;Fence&amp;quot;] &lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Llevamos las que tienen escalas de calidad (Ex, Gd, Fa, Po) a una escala común. Por ejemplo,cuando es &lt;em&gt;missing&lt;/em&gt; la dejamos en 0. Si la calidad de la piscina es missing, es porque la propiedad no tiene piscina y está bien que quede en 0.&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;def cambiar_escala(df, col, escala):  # reemplazar missings  casas[col].fillna(&amp;quot;MISSING&amp;quot;, inplace = True)  # aplicar escala_ordinal  casas[col].replace(escala, inplace = True)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Po &amp;lt; Fa &amp;lt; TA &amp;lt; Gd &amp;lt; ExESCALA_ORDINAL = { &amp;quot;MISSING&amp;quot;: 0, &amp;quot;Po&amp;quot; : 1, &amp;quot;Fa&amp;quot; : 2,                    &amp;quot;TA&amp;quot; : 3,     &amp;quot;Gd&amp;quot; : 4, &amp;quot;Ex&amp;quot; : 5}ordinales_escala_comun = [ &amp;quot;ExterQual&amp;quot;,   &amp;quot;ExterCond&amp;quot;,                              &amp;quot;BsmtQual&amp;quot;,    &amp;quot;BsmtCond&amp;quot;,                                &amp;quot;HeatingQC&amp;quot;,   &amp;quot;KitchenQual&amp;quot;,                             &amp;quot;FireplaceQu&amp;quot;, &amp;quot;PoolQC&amp;quot;,                                  &amp;quot;GarageCond&amp;quot;  ]# cambiar casas inplace_ = [ cambiar_escala(casas, col, ESCALA_ORDINAL) for col in ordinales_escala_comun]&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;ESCALA_FUNCTIONAL = { &amp;quot;Sal&amp;quot; : 0, &amp;quot;Sev&amp;quot; : 1,                      &amp;quot;Maj2&amp;quot;: 2, &amp;quot;Maj1&amp;quot;: 3,                      &amp;quot;Mod&amp;quot; : 4, &amp;quot;Min2&amp;quot;: 5,                      &amp;quot;Min1&amp;quot;: 6, &amp;quot;Typ&amp;quot;: 7                    }cambiar_escala(casas, &amp;quot;Functional&amp;quot;, escala = ESCALA_FUNCTIONAL)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Panel con las variables ordinales# TODO refactorear a una funcion con las de las cuentasdim_panel = (4, 4)fig, ax = plt.subplots(dim_panel[0], dim_panel[1], figsize=(16,18))# Fijar los espacios entre los subplotsfig.subplots_adjust(hspace=0.3, wspace=0.6)cols = np.reshape(np.array(ordinales), dim_panel)_ = [sns.countplot(x=cols[i, j], data=casas, ax = ax[i, j]) for i in range(dim_panel[0])                                                               for j in range(dim_panel[1])]plt.show()&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-06-16-prediciendo-precios-propiedades_files/figure-html/unnamed-chunk-17-1.png&#34; width=&#34;1536&#34; /&gt;&lt;/p&gt;&lt;p&gt;Posibles problemas con &lt;code&gt;PoolQC&lt;/code&gt; y &lt;code&gt;Functional&lt;/code&gt;. &lt;code&gt;BsmtCond&lt;/code&gt; y &lt;code&gt;GarageCond&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Missing en &lt;code&gt;PoolQC&lt;/code&gt; (1453) , &lt;code&gt;FireplaceQu&lt;/code&gt; (690) , &lt;code&gt;GarageCond&lt;/code&gt; (81) , &lt;code&gt;GarageQual&lt;/code&gt; (81), &lt;code&gt;GarageFinish&lt;/code&gt; (81), &lt;code&gt;GarageType&lt;/code&gt;(81), &lt;code&gt;BsmtExposure&lt;/code&gt; (38) , &lt;code&gt;BsmtFinType1&lt;/code&gt; (37), &lt;code&gt;BsmtCond&lt;/code&gt; (37), &lt;code&gt;BsmtQual&lt;/code&gt; (37).&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;ordinales_missing = [&amp;quot;PoolQC&amp;quot;,       &amp;quot;FireplaceQu&amp;quot;, &amp;quot;GarageCond&amp;quot;,                     &amp;quot;GarageQual&amp;quot;,                         &amp;quot;BsmtCond&amp;quot;,                     &amp;quot;BsmtQual&amp;quot;]     ordinales_problemas = []   # Problematicasordinales_escala    = [&amp;quot;Fence&amp;quot;, &amp;quot;BsmtExposure&amp;quot;, &amp;quot;GarageFinish&amp;quot;, &amp;quot;ExterCond&amp;quot;]   # Estos los saco pq no arme la escala_ = [ ordinales.remove(col) for col in ordinales_escala + ordinales_missing]&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Para evitar problemas de multicolinealidad nos quedamos sólo con &lt;code&gt;TotalBsmtSF&lt;/code&gt;&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;# Extraer X e y como arraysy = casas[&amp;quot;SalePrice&amp;quot;]X = casas[ordinales + categoricas + continuas + cuentas ]columnas_con_missing = X.columns[X.isnull().any()]print(f&amp;#39;Columnas con missings para imputar: {columnas_con_missing}&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Columnas con missings para imputar: Index([&amp;#39;Electrical&amp;#39;, &amp;#39;MiscFeature&amp;#39;, &amp;#39;LotFrontage&amp;#39;], dtype=&amp;#39;object&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;from sklearn.impute import SimpleImputerfrom sklearn.model_selection import train_test_splitfrom sklearn.linear_model import LinearRegression, Ridge, Lasso, RidgeCV, LassoCVfrom sklearn.compose import TransformedTargetRegressorfrom sklearn.metrics import mean_squared_error, r2_scorefrom sklearn.metrics import make_scorer, mean_absolute_errorfrom sklearn.model_selection import cross_val_scorefrom sklearn.compose import ColumnTransformerfrom sklearn.pipeline import Pipelinefrom sklearn.preprocessing import OneHotEncoder, StandardScaler, OrdinalEncoder, RobustScaler, FunctionTransformer, PolynomialFeaturestransform_categoricas = Pipeline(steps=[    # Imputar faltantes con el valor mas comun y despues hacer dummies    (&amp;#39;imp&amp;#39;, SimpleImputer(strategy=&amp;quot;most_frequent&amp;quot;)),    (&amp;#39;onehot&amp;#39;, OneHotEncoder(handle_unknown=&amp;quot;ignore&amp;quot;))                                                 ])transform_continuas = Pipeline(steps = [    (&amp;#39;imp_cont&amp;#39;, SimpleImputer(strategy=&amp;#39;mean&amp;#39;)),    (&amp;#39;trans&amp;#39;, FunctionTransformer(np.log1p, validate=True)),    (&amp;#39;scale&amp;#39;, StandardScaler())])transform_ordinales = Pipeline(steps = [   (&amp;#39;ord&amp;#39;, OrdinalEncoder())])transform_polys = Pipeline(steps = [   (&amp;#39;polys&amp;#39;, PolynomialFeatures(2))])# ColumnTransformer aplica las pipelines en paralelo y concatena las columnas resultantespreprocesador = ColumnTransformer(  transformers=[#     (&amp;#39;polys&amp;#39;, transform_polys, [&amp;quot;GrLivArea&amp;quot;]),      (&amp;#39;cat&amp;#39;, transform_categoricas, categoricas),      (&amp;#39;num&amp;#39;, transform_continuas, continuas + cuentas),      (&amp;#39;ord&amp;#39;,   transform_ordinales, ordinales)#     (&amp;#39;cnts&amp;#39;, &amp;#39;passthrough&amp;#39;, cuentas )   ])&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id=&#34;modelos&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Modelos&lt;/h1&gt;&lt;p&gt;Estimamos tres modelos: regresión lineal estándar, regresión Ridge y regresión Lasso. La diferencia entre los tres modelos es la forma de regularizar los coeficientes. En el caso de la regresión estándar, se minimiza la suma de cuadrados de los residuos: &lt;span class=&#34;math inline&#34;&gt;\(\sum (y - \hat{y})^2\)&lt;/span&gt;. Ridge y Lasso penalizan la norma del vector de coeficientes &lt;span class=&#34;math inline&#34;&gt;\(\theta\)&lt;/span&gt;. Esto evita el &lt;em&gt;ovefitting&lt;/em&gt; a los datos que usamos para entrenar el modelo.&lt;/p&gt;&lt;p&gt;En el caso de la regresión Ridge, se agrega un término a la función de costos un término que incluye la norma &lt;span class=&#34;math inline&#34;&gt;\(L_2\)&lt;/span&gt; del vector de coeficientes estimados. La regresión Lasso penaliza la norma &lt;span class=&#34;math inline&#34;&gt;\(L_1\)&lt;/span&gt;. Ambos métodos incluyen un parámetro &lt;span class=&#34;math inline&#34;&gt;\(\alpha\)&lt;/span&gt; que pondera el costo de la norma del vector de coeficientes en la función de costos del modelo. Para determinar el valor de este parámetro, uso Cross-Validation con 5 folds.&lt;/p&gt;&lt;p&gt;Hay dos métricas posibles para evaluar los modelos de regresión: &lt;a href=&#34;https://en.wikipedia.org/wiki/Mean_absolute_error&#34;&gt;Mean Absolute&lt;/a&gt; y &lt;a href=&#34;https://en.wikipedia.org/wiki/Mean_squared_error&#34;&gt;Mean Squared Error&lt;/a&gt;. El MSE penaliza más los outliers, pero no está medido en la misma unidad que la variable objetivo, por lo que vamos a usar el MAE, que si se mide en la unidad de la variable de destino (en este caso son dólares)&lt;/p&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;scorer = make_scorer(mean_absolute_error)X_prep = preprocesador.fit_transform(X) # TODO: este paso debería estar adentro del                                         #       pipeline pero no funciona &lt;/code&gt;&lt;/pre&gt;&lt;div id=&#34;regresion-sin-regularizacion&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Regresión sin Regularización&lt;/h2&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;reg = TransformedTargetRegressor(regressor=LinearRegression(),                                        func=np.log1p,                                        inverse_func=np.expm1)cv_linreg = cross_val_score(reg, X_prep, y, cv = 5, scoring = scorer)print(f&amp;#39;MAE Sin Reg: ${cv_linreg.mean():.2f}&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## MAE Sin Reg: $16604.95&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;lasso&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Lasso&lt;/h2&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;lassoCV = TransformedTargetRegressor(regressor=LassoCV(cv = 5),                                        func=np.log1p,                                        inverse_func=np.expm1)lassoCV_score = cross_val_score(lassoCV, X_prep, y, cv = 5, scoring = scorer)print(f&amp;#39;MAE Lasso: ${lassoCV_score.mean():.2f}&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## MAE Lasso: $15978.56&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;lassoCV.fit(X_prep, y)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## TransformedTargetRegressor(check_inverse=True, func=&amp;lt;ufunc &amp;#39;log1p&amp;#39;&amp;gt;,##               inverse_func=&amp;lt;ufunc &amp;#39;expm1&amp;#39;&amp;gt;,##               regressor=LassoCV(alphas=None, copy_X=True, cv=5, eps=0.001, fit_intercept=True,##     max_iter=1000, n_alphas=100, n_jobs=None, normalize=False,##     positive=False, precompute=&amp;#39;auto&amp;#39;, random_state=None,##     selection=&amp;#39;cyclic&amp;#39;, tol=0.0001, verbose=False),##               transformer=None)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;print(f&amp;#39;Mejor Alpha: {lassoCV.regressor_.alpha_:.2f}&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Mejor Alpha: 0.00&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;ridge&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Ridge&lt;/h2&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;ridgeCV = TransformedTargetRegressor(regressor=RidgeCV(cv = 5),                                        func=np.log1p,                                        inverse_func=np.expm1)ridgeCV_score = cross_val_score(ridgeCV, X_prep, y, cv = 5, scoring = scorer)print(f&amp;#39;MAE Ridge: ${ridgeCV_score.mean():.2f}&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## MAE Ridge: $16462.99&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;ridgeCV.fit(X_prep, y)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## TransformedTargetRegressor(check_inverse=True, func=&amp;lt;ufunc &amp;#39;log1p&amp;#39;&amp;gt;,##               inverse_func=&amp;lt;ufunc &amp;#39;expm1&amp;#39;&amp;gt;,##               regressor=RidgeCV(alphas=array([ 0.1,  1. , 10. ]), cv=5, fit_intercept=True,##     gcv_mode=None, normalize=False, scoring=None, store_cv_values=False),##               transformer=None)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;print(f&amp;#39;Mejor Alpha: {ridgeCV.regressor_.alpha_}&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Mejor Alpha: 10.0&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;analisis-de-los-errores&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Análisis de los Errores&lt;/h2&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;fig, ax = plt.subplots(1, 3, figsize=(16, 4))reg.fit(X_prep, y)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## TransformedTargetRegressor(check_inverse=True, func=&amp;lt;ufunc &amp;#39;log1p&amp;#39;&amp;gt;,##               inverse_func=&amp;lt;ufunc &amp;#39;expm1&amp;#39;&amp;gt;,##               regressor=LinearRegression(copy_X=True, fit_intercept=True, n_jobs=None,##          normalize=False),##               transformer=None)&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;python&#34;&gt;&lt;code&gt;preds = reg.predict(X_prep)preds = pd.DataFrame({&amp;quot;preds&amp;quot;:preds, &amp;quot;true&amp;quot;:y})preds[&amp;quot;residuals&amp;quot;] = preds[&amp;quot;true&amp;quot;] - preds[&amp;quot;preds&amp;quot;]_ = preds.plot(x = &amp;quot;preds&amp;quot;, y = &amp;quot;residuals&amp;quot;, kind = &amp;quot;scatter&amp;quot;, ax = ax[0])_ = ax[0].set_title(&amp;quot;Sin Regularización&amp;quot;)preds = lassoCV.predict(X_prep)preds = pd.DataFrame({&amp;quot;preds&amp;quot;:preds, &amp;quot;true&amp;quot;:y})preds[&amp;quot;residuals&amp;quot;] = preds[&amp;quot;true&amp;quot;] - preds[&amp;quot;preds&amp;quot;]_ = preds.plot(x = &amp;quot;preds&amp;quot;, y = &amp;quot;residuals&amp;quot;, kind = &amp;quot;scatter&amp;quot;, ax = ax[1])_ = ax[1].set_title(&amp;quot;Lasso&amp;quot;)preds = ridgeCV.predict(X_prep)preds = pd.DataFrame({&amp;quot;preds&amp;quot;:preds, &amp;quot;true&amp;quot;:y})preds[&amp;quot;residuals&amp;quot;] = preds[&amp;quot;true&amp;quot;] - preds[&amp;quot;preds&amp;quot;]_ = preds.plot(x = &amp;quot;preds&amp;quot;, y = &amp;quot;residuals&amp;quot;, kind = &amp;quot;scatter&amp;quot;, ax = ax[2])_ = ax[2].set_title(&amp;quot;Ridge&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-06-16-prediciendo-precios-propiedades_files/figure-html/unnamed-chunk-25-1.png&#34; width=&#34;1536&#34; /&gt;&lt;/p&gt;&lt;p&gt;Los errores de los tres modelos muestran que hay margen para mejora porque los errores de predicción son sistemáticamente altos para valores alto de la predicción. Agregar cuadrados de los features podría mejorar los resultados.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id=&#34;conclusiones&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Conclusiones&lt;/h1&gt;&lt;p&gt;Entrenamos 3 modelos y elegimos los hiperparámetros con un esquema de Cross-Validation con 5 &lt;em&gt;folds&lt;/em&gt;. El mejor modelo es la regresión Lasso con &lt;span class=&#34;math inline&#34;&gt;\(\alpha = 0.00045\)&lt;/span&gt;, que permite predecir el precio de una vivienda con un error promedio de aproximadamente $ 15.100, menos del 10% de la media de la variable objetivo ($181.000). Dada la alta cantidad de columnas colineales en los regresores, era de esperar que Lasso funcionara mejor, porque tiende a hace que muchos de los coeficientes &lt;span class=&#34;math inline&#34;&gt;\(\theta\)&lt;/span&gt; estimados sean 0.&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Barrios ricos y pobres de Montevideo</title>
       <link>https://rlabuonora.com/posts/mapeando-ingresos-en-las-ciudades-de-uruguay/</link>
       <pubDate>Sat, 13 Apr 2019 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/mapeando-ingresos-en-las-ciudades-de-uruguay/</guid>
       <description>&lt;p&gt;Todas las ciudades tienen zonas ricas y zonas pobres. En Montevideo, las zonas costeras concentran los hogares de mayores ingresos (Carrasco, Punta Gorda, Malvín, Pocitos, etc.).&lt;/p&gt;&lt;p&gt;En este post armo un mapa para visualizar cuáles son los barrios con mayores ingresos en las ciudades de Uruguay.&lt;/p&gt;&lt;pre&gt;&lt;code&gt;## OGR data source with driver: ESRI Shapefile ## Source: &amp;quot;/Users/rlabuonora/Desktop/data_science/work/blog_2/public/shps/ine_seg_11&amp;quot;, layer: &amp;quot;ine_seg_11&amp;quot;## with 4313 features## It has 13 fields&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;en_US.UTF-8/UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;!-- En este post quiero visualizar la distribución del ingreso en las ciudades de Uruguay. En Montevideo sabemos que la zona costera es donde se concentran los hogares de mayores ingresos  --&gt;&lt;!-- Para visualizar esta estructura, linkeo los datos de la [Encuesta Continua de Hogares](http://ine.gub.uy/web/guest/encuesta-continua-de-hogares1) con un mapa de los segmentos censales del país. --&gt;&lt;!-- TODO: Refactor using chunk names --&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-04-13-mapeando-ingresos-en-las-ciudades-de-uruguay_files/figure-html/unnamed-chunk-1-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;div id=&#34;las-zonas-censales&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Las Zonas Censales&lt;/h1&gt;&lt;p&gt;La información geográfica puede venir en formato &lt;code&gt;raster&lt;/code&gt; o en formato &lt;code&gt;shapefile&lt;/code&gt;. Un objeto &lt;code&gt;raster&lt;/code&gt; es una grilla de números, y cada celda de la grilla está georeferenciada a una parte de la superficie de la tierra. Los shapefiles son una forma de almacenar datos de formas, que pueden representar entidades geográficas físicas o imaginarias (ríos, países, etc.)&lt;/p&gt;&lt;p&gt;El INE &lt;a href=&#34;http://ine.gub.uy/mapas-vectoriales&#34;&gt;publica shapefiles&lt;/a&gt; con las formas de los segmentos censales que usa para muestrear la Encuesta de Hogares. En Uruguay hay &lt;code&gt;nrow(ine_seg_11_sf)&lt;/code&gt; segmentos censales.&lt;/p&gt;&lt;p&gt;La librería sf tiene un montón de herramientas para trabajar con datos geográficos. La mejor fuente que conozco para aprender más es &lt;a href=&#34;https://geocompr.robinlovelace.net/&#34;&gt;Geocomputation with R&lt;/a&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(sf)# Cargar mapaine_seg_11_sf &amp;lt;- st_read(&amp;#39;../../public/shps/ine_seg_11/ine_seg_11.shp&amp;#39;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Reading layer `ine_seg_11&amp;#39; from data source `/Users/rlabuonora/Desktop/data_science/work/blog_2/public/shps/ine_seg_11/ine_seg_11.shp&amp;#39; using driver `ESRI Shapefile&amp;#39;## Simple feature collection with 4313 features and 13 fields## geometry type:  MULTIPOLYGON## dimension:      XY## bbox:           xmin: 366582.2 ymin: 6127919 xmax: 858252.1 ymax: 6671738## epsg (SRID):    NA## proj4string:    NA&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# asignar crsst_crs(ine_seg_11_sf) &amp;lt;- &amp;quot;+proj=utm +zone=21 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs&amp;quot;ine_seg_11_sf &amp;lt;- st_transform(ine_seg_11_sf, crs=4326)class(ine_seg_11_sf)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;sf&amp;quot;         &amp;quot;data.frame&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;plot(st_geometry(ine_seg_11_sf))&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-04-13-mapeando-ingresos-en-las-ciudades-de-uruguay_files/figure-html/unnamed-chunk-3-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;div id=&#34;calculamos-las-medianas&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Calculamos las medianas&lt;/h2&gt;&lt;p&gt;Para calcular el ingreso en cada segmento censal, usamos los datos de la Encuesta Continua de Hogares. Los microdatos incluyen el segmento censal de cada hogar y una estimación de su ingreso. &lt;code&gt;dplyr&lt;/code&gt; hace muy fácil calcular la mediana del ingreso de los hogares encuestados:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;Sys.setlocale(&amp;quot;LC_ALL&amp;quot;, &amp;quot;UTF-8&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;en_US.UTF-8/UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;medianas &amp;lt;- read_tsv(&amp;quot;../../public/ech/H_2018_Terceros.dat&amp;quot;) %&amp;gt;%   transmute(id       =as.character(numero),            depto_id = dpto,             depto = nomdpto,            localidad_id = as.numeric(locagr),            localidad = nom_locagr,            seccion_id = as.numeric(secc),            segmento_id = as.numeric(segm),            ingreso = YSVL) %&amp;gt;%   group_by(depto_id, seccion_id, segmento_id) %&amp;gt;%   summarize(mediana = median(ingreso))&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;linkear-los-datos-al-mapa&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Linkear los datos al mapa&lt;/h2&gt;&lt;p&gt;Para visualizar todo en un mapa, hay que linkear los datos con el dataframe de los segmentos censales. Agregarle atributos no espaciales a un objeto &lt;code&gt;sf&lt;/code&gt; es simple, ya que se comportan como &lt;code&gt;data.frames&lt;/code&gt; y soportan las funciones del &lt;code&gt;tidyverse&lt;/code&gt;, por lo que podemos usar &lt;code&gt;left_join&lt;/code&gt; con &lt;code&gt;depto_id&lt;/code&gt;, &lt;code&gt;seccion_id&lt;/code&gt; y &lt;code&gt;segmento_id&lt;/code&gt; como identificadores:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;ine_seg_11_sf &amp;lt;- ine_seg_11_sf %&amp;gt;%   left_join(medianas, by=c(&amp;quot;DEPTO&amp;quot; = &amp;quot;depto_id&amp;quot;,                           &amp;quot;SECCION&amp;quot; = &amp;quot;seccion_id&amp;quot;,                           &amp;quot;SEGMENTO&amp;quot; = &amp;quot;segmento_id&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;elegir-una-localidad&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Elegir una localidad&lt;/h2&gt;&lt;p&gt;Como queremos mapear los ingresos en cada ciudad, tenemos que encontrar una forma de seleccionar una zona del mapa. Para esto podemos usar &lt;code&gt;filter&lt;/code&gt; y seleccionar los polígonos que pertenecen a cierta localidad`:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Montevideo es la localidad 1020cod_loc &amp;lt;- &amp;quot;1020&amp;quot;mapa_loc &amp;lt;- filter(ine_seg_11_sf, CODLOC==cod_loc)plot(st_geometry(mapa_loc))&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-04-13-mapeando-ingresos-en-las-ciudades-de-uruguay_files/figure-html/unnamed-chunk-6-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;agregar-mapa-de-fondo&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Agregar mapa de fondo&lt;/h2&gt;&lt;p&gt;Este mapa funciona bien si conocemos la ciudad, pero para zonas geográficas no tan familiares puede ser conveniente agregar referencias como calles importantes o cuerpos de agua.&lt;/p&gt;&lt;p&gt;Para eso podemos usar google maps, que publica una API con mapas basadas en imágenes satelitales.Para consumir la API, es necesario registrarse y darles una tarjeta de crédito 👎 para obtener una clave. &lt;a href=&#34;https://cran.r-project.org/web/packages/httr/vignettes/secrets.html&#34;&gt;Acá&lt;/a&gt;. hay más info sobre como trabajar con API keys en R.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(ggmap)# Leer la API key de variable de environmentAPI_KEY &amp;lt;- Sys.getenv(&amp;quot;GOOGLE_API&amp;quot;)# Loguearse a la APIregister_google(API_KEY)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Para bajar el mapa de Google Maps, necesitamos las coordenadas del mapa que vamos a dibujar. Para obtener estas coordenadas, subseteo el mapa original con el código de la localidad que quiero mapear y obtengo las coordenadas del mapa subseteado.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;cod_loc &amp;lt;- &amp;quot;1020&amp;quot;mapa_loc &amp;lt;- filter(ine_seg_11_sf, CODLOC==cod_loc)bbox &amp;lt;- st_bbox(mapa_loc) %&amp;gt;%    setNames(c(&amp;quot;left&amp;quot;, &amp;quot;bottom&amp;quot;, &amp;quot;right&amp;quot;, &amp;quot;top&amp;quot;))mapa &amp;lt;- get_map(location=bbox)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Para poder dibujar este mapa con &lt;code&gt;tmap&lt;/code&gt;, tengo que convertirlo a un &lt;code&gt;Raster&lt;/code&gt; con la función &lt;code&gt;ggmap_rast&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# https://gis.stackexchange.com/questions/155334/ggmap-clip-a-maplibrary(raster)library(tmap)ggmap_rast &amp;lt;- function(map) {  map_bbox &amp;lt;- attr(map, &amp;#39;bb&amp;#39;)   .extent &amp;lt;- extent(as.numeric(map_bbox[c(2,4,1,3)]))  my_map &amp;lt;- raster(.extent, nrow= nrow(map), ncol = ncol(map))  rgb_cols &amp;lt;- setNames(as.data.frame(t(col2rgb(map))), c(&amp;#39;red&amp;#39;,&amp;#39;green&amp;#39;,&amp;#39;blue&amp;#39;))  red &amp;lt;- my_map  values(red) &amp;lt;- rgb_cols[[&amp;#39;red&amp;#39;]]  green &amp;lt;- my_map  values(green) &amp;lt;- rgb_cols[[&amp;#39;green&amp;#39;]]  blue &amp;lt;- my_map  values(blue) &amp;lt;- rgb_cols[[&amp;#39;blue&amp;#39;]]  stack(red,green,blue)}mapa_raster &amp;lt;- ggmap_rast(mapa)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ahora que tengo el &lt;code&gt;Raster&lt;/code&gt;, los polígonos de los segmentos censales y la estimación de las medianas, podemos hacer un mapa en capas con &lt;code&gt;tmap&lt;/code&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;tm_shape(mapa_raster) +   tm_rgb() +   tm_shape(mapa_loc) +  tm_fill(col=&amp;quot;mediana&amp;quot;,           style=&amp;quot;quantile&amp;quot;,          title = &amp;quot;Ingreso&amp;quot;,          textNA = &amp;quot;S/D&amp;quot;,          alpha = 0.75) +   tm_layout(&amp;quot;Montevideo&amp;quot;,             frame = FALSE,            legend.position = c(&amp;quot;right&amp;quot;, &amp;quot;bottom&amp;quot;),            legend.format = list(              &amp;quot;text.separator&amp;quot; = &amp;quot;-&amp;quot;            )) +  tm_legend(show=FALSE)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2019-04-13-mapeando-ingresos-en-las-ciudades-de-uruguay_files/figure-html/unnamed-chunk-10-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;!-- # Otras localidades --&gt;&lt;!-- `tmap` nos permite dibujar un mapa con todos los elementos que vinimos desarrollando en distintas capas. También tiene una función que permite armar grillas de mapas.  --&gt;&lt;!-- Podemos hacer el mismo mapa para otras localidades: --&gt;&lt;!-- ```{r} --&gt;&lt;!-- # salto: 15120 --&gt;&lt;!-- mapa_loc &lt;- filter(ine_seg_11_sf, CODLOC==&#34;15120&#34;) --&gt;&lt;!-- bbox &lt;- st_bbox(mapa_loc) %&gt;%  --&gt;&lt;!--     setNames(c(&#34;left&#34;, &#34;bottom&#34;, &#34;right&#34;, &#34;top&#34;)) --&gt;&lt;!-- mapa_raster &lt;- get_map(location=bbox) %&gt;%  --&gt;&lt;!--     ggmap_rast() --&gt;&lt;!-- mapa_salto &lt;- tm_shape(mapa_raster) +  --&gt;&lt;!--     tm_rgb() +  --&gt;&lt;!--     tm_shape(mapa_loc) + --&gt;&lt;!--     tm_fill(col=&#34;mediana&#34;,  --&gt;&lt;!--           style=&#34;quantile&#34;, --&gt;&lt;!--           title = &#34;Ingreso&#34;, --&gt;&lt;!--           textNA = &#34;S/D&#34;, --&gt;&lt;!--           alpha = 0.75) +  --&gt;&lt;!--   tm_layout(&#34;Salto&#34;,  --&gt;&lt;!--             frame = FALSE, --&gt;&lt;!--             legend.position = legend_pos, --&gt;&lt;!--             legend.format = list( --&gt;&lt;!--               &#34;text.separator&#34; = &#34;-&#34; --&gt;&lt;!--             )) --&gt;&lt;!-- ``` --&gt;&lt;!-- ```{r} --&gt;&lt;!-- # Durazno: 6220 --&gt;&lt;!-- mapa_loc &lt;- filter(ine_seg_11_sf, CODLOC==&#34;6220&#34;) --&gt;&lt;!-- bbox &lt;- st_bbox(mapa_loc) %&gt;%  --&gt;&lt;!--     setNames(c(&#34;left&#34;, &#34;bottom&#34;, &#34;right&#34;, &#34;top&#34;)) --&gt;&lt;!-- mapa_raster &lt;- get_map(location=bbox) %&gt;%  --&gt;&lt;!--     ggmap_rast() --&gt;&lt;!-- mapa_durazno &lt;- tm_shape(mapa_raster) +  --&gt;&lt;!--     tm_rgb() +  --&gt;&lt;!--     tm_shape(mapa_loc) + --&gt;&lt;!--     tm_fill(col=&#34;mediana&#34;,  --&gt;&lt;!--           style=&#34;quantile&#34;, --&gt;&lt;!--           title = &#34;Ingreso&#34;, --&gt;&lt;!--           textNA = &#34;S/D&#34;, --&gt;&lt;!--           alpha = 0.75) +  --&gt;&lt;!--   tm_layout(&#34;Durazno&#34;,  --&gt;&lt;!--             frame = FALSE, --&gt;&lt;!--             legend.position = legend_pos, --&gt;&lt;!--             legend.format = list( --&gt;&lt;!--               &#34;text.separator&#34; = &#34;-&#34; --&gt;&lt;!--             )) --&gt;&lt;!-- ``` --&gt;&lt;!-- Para sacar varios mapas a la vez podemos combinar `tmap_arrange` con esta función: --&gt;&lt;!-- ```{r} --&gt;&lt;!-- tmap_arrange( --&gt;&lt;!--             mapa_salto, --&gt;&lt;!--             mapa_durazno, --&gt;&lt;!--             ncol = 1) --&gt;&lt;!-- ``` --&gt;&lt;/div&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Scraping NBA data with rvest and purrr</title>
       <link>https://rlabuonora.com/posts/scraping-nba-data/</link>
       <pubDate>Wed, 01 Aug 2018 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/scraping-nba-data/</guid>
       <description>&lt;p&gt;The NBA does a great job releasing statistics on every aspect of the game. Most teams have analytics experts crunching those numbers for insights to get a competitive advantage.&lt;/p&gt;&lt;p&gt;In this post I go through the process of scraping data from &lt;a href=&#34;https://www.basketball-reference.com/&#34;&gt;basketball-reference.com&lt;/a&gt; using the R package &lt;code&gt;rvest&lt;/code&gt;. We also do some data munging with &lt;code&gt;purrr&lt;/code&gt; and string interpolation with &lt;code&gt;glue&lt;/code&gt;.&lt;/p&gt;&lt;div id=&#34;nba-reference&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;NBA Reference&lt;/h1&gt;&lt;p&gt;This website has statistics on every aspect of the game for a long time. In this post, I’ll focus on individual player stats (Field Goal Percentage, Average Minutes, etc.) from the 2000/2001 season up to 2017/2018.&lt;/p&gt;&lt;p&gt;If you follow &lt;a href=&#34;https://www.basketball-reference.com/leagues/NBA_2017_per_game.html&#34;&gt;this link&lt;/a&gt;, you can find the data for the 2017 season in an html table.&lt;/p&gt;&lt;p&gt;Html uses a special markup language to format the tables so that your browser can render it properly. Typically, an html table has this structure:&lt;/p&gt;&lt;pre class=&#34;html&#34;&gt;&lt;code&gt;&amp;lt;table&amp;gt;  &amp;lt;th&amp;gt;Player&amp;lt;/th&amp;gt;  &amp;lt;td&amp;gt;Data&amp;lt;td&amp;gt;&amp;lt;/table&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;To get this into an R data frame, you can use rvest. The first step is to get all the html from the page using read_html.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(rvest)nba_url &amp;lt;- &amp;quot;https://www.basketball-reference.com/leagues/NBA_2017_per_game.html&amp;quot;web_page &amp;lt;- read_html(nba_url)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now we need to get the actual data from the table. &lt;code&gt;html_table&lt;/code&gt; does just that:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;data &amp;lt;- html_table(web_page)head(data[[1]])&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##   Rk        Player Pos Age  Tm  G GS   MP  FG FGA  FG%  3P 3PA  3P%  2P## 1  1  Álex Abrines  SG  23 OKC 68  6 15.5 2.0 5.0 .393 1.4 3.6 .381 0.6## 2  2    Quincy Acy  PF  26 TOT 38  1 14.7 1.8 4.5 .412 1.0 2.4 .411 0.9## 3  2    Quincy Acy  PF  26 DAL  6  0  8.0 0.8 2.8 .294 0.2 1.2 .143 0.7## 4  2    Quincy Acy  PF  26 BRK 32  1 15.9 2.0 4.8 .425 1.1 2.6 .434 0.9## 5  3  Steven Adams   C  23 OKC 80 80 29.9 4.7 8.2 .571 0.0 0.0 .000 4.7## 6  4 Arron Afflalo  SG  31 SAC 61 45 25.9 3.0 6.9 .440 1.0 2.5 .411 2.0##   2PA  2P% eFG%  FT FTA  FT% ORB DRB TRB AST STL BLK TOV  PF  PTS## 1 1.4 .426 .531 0.6 0.7 .898 0.3 1.0 1.3 0.6 0.5 0.1 0.5 1.7  6.0## 2 2.1 .413 .521 1.2 1.6 .750 0.5 2.5 3.0 0.5 0.4 0.4 0.6 1.8  5.8## 3 1.7 .400 .324 0.3 0.5 .667 0.3 1.0 1.3 0.0 0.0 0.0 0.3 1.5  2.2## 4 2.2 .414 .542 1.3 1.8 .754 0.6 2.8 3.3 0.6 0.4 0.5 0.6 1.8  6.5## 5 8.2 .572 .571 2.0 3.2 .611 3.5 4.2 7.7 1.1 1.1 1.0 1.8 2.4 11.3## 6 4.4 .457 .514 1.4 1.5 .892 0.1 1.9 2.0 1.3 0.3 0.1 0.7 1.7  8.4&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;That was easy! html_table returns a list with all the tables in the web_page as a data_frame. What we want is the first element of that list.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;data &amp;lt;- data[[1]]&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Let’s inspect the data:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;str(data)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## &amp;#39;data.frame&amp;#39;:    619 obs. of  30 variables:##  $ Rk    : chr  &amp;quot;1&amp;quot; &amp;quot;2&amp;quot; &amp;quot;2&amp;quot; &amp;quot;2&amp;quot; ...##  $ Player: chr  &amp;quot;Álex Abrines&amp;quot; &amp;quot;Quincy Acy&amp;quot; &amp;quot;Quincy Acy&amp;quot; &amp;quot;Quincy Acy&amp;quot; ...##  $ Pos   : chr  &amp;quot;SG&amp;quot; &amp;quot;PF&amp;quot; &amp;quot;PF&amp;quot; &amp;quot;PF&amp;quot; ...##  $ Age   : chr  &amp;quot;23&amp;quot; &amp;quot;26&amp;quot; &amp;quot;26&amp;quot; &amp;quot;26&amp;quot; ...##  $ Tm    : chr  &amp;quot;OKC&amp;quot; &amp;quot;TOT&amp;quot; &amp;quot;DAL&amp;quot; &amp;quot;BRK&amp;quot; ...##  $ G     : chr  &amp;quot;68&amp;quot; &amp;quot;38&amp;quot; &amp;quot;6&amp;quot; &amp;quot;32&amp;quot; ...##  $ GS    : chr  &amp;quot;6&amp;quot; &amp;quot;1&amp;quot; &amp;quot;0&amp;quot; &amp;quot;1&amp;quot; ...##  $ MP    : chr  &amp;quot;15.5&amp;quot; &amp;quot;14.7&amp;quot; &amp;quot;8.0&amp;quot; &amp;quot;15.9&amp;quot; ...##  $ FG    : chr  &amp;quot;2.0&amp;quot; &amp;quot;1.8&amp;quot; &amp;quot;0.8&amp;quot; &amp;quot;2.0&amp;quot; ...##  $ FGA   : chr  &amp;quot;5.0&amp;quot; &amp;quot;4.5&amp;quot; &amp;quot;2.8&amp;quot; &amp;quot;4.8&amp;quot; ...##  $ FG%   : chr  &amp;quot;.393&amp;quot; &amp;quot;.412&amp;quot; &amp;quot;.294&amp;quot; &amp;quot;.425&amp;quot; ...##  $ 3P    : chr  &amp;quot;1.4&amp;quot; &amp;quot;1.0&amp;quot; &amp;quot;0.2&amp;quot; &amp;quot;1.1&amp;quot; ...##  $ 3PA   : chr  &amp;quot;3.6&amp;quot; &amp;quot;2.4&amp;quot; &amp;quot;1.2&amp;quot; &amp;quot;2.6&amp;quot; ...##  $ 3P%   : chr  &amp;quot;.381&amp;quot; &amp;quot;.411&amp;quot; &amp;quot;.143&amp;quot; &amp;quot;.434&amp;quot; ......&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Ok, so all the columns are read in as text. That’s natural, since all html pages are text, so we need to convert the data to the correct data types.&lt;/p&gt;&lt;p&gt;Most columns seem to be &lt;code&gt;numeric&lt;/code&gt;, except &lt;code&gt;Player Name&lt;/code&gt; which is a &lt;code&gt;character&lt;/code&gt; vector, &lt;code&gt;Player Position&lt;/code&gt; and &lt;code&gt;Team&lt;/code&gt; which are &lt;code&gt;factors&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;One approach to correcting the data types is to use dplyr’s mutate:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(dplyr)data_1 &amp;lt;- data %&amp;gt;%   mutate(Rk = as.numeric(Rk),         Pos = as.factor(Pos),         Age = as.numeric(Age))#       ...str(select(data_1, Rk, Pos, Age))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## &amp;#39;data.frame&amp;#39;:    619 obs. of  3 variables:##  $ Rk : num  1 2 2 2 3 4 5 6 7 8 ...##  $ Pos: Factor w/ 7 levels &amp;quot;C&amp;quot;,&amp;quot;PF&amp;quot;,&amp;quot;PF-C&amp;quot;,..: 7 2 2 2 1 7 1 1 2 2 ...##  $ Age: num  23 26 26 26 23 31 28 28 31 27 ...&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;But there’s a better way. &lt;code&gt;mutate_at&lt;/code&gt; applies a function to a list of columns.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;data_2 &amp;lt;- data %&amp;gt;%   mutate_at(vars(Tm, Pos), factor)str(select(data_2, Tm, Pos))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## &amp;#39;data.frame&amp;#39;:    619 obs. of  2 variables:##  $ Tm : Factor w/ 32 levels &amp;quot;ATL&amp;quot;,&amp;quot;BOS&amp;quot;,&amp;quot;BRK&amp;quot;,..: 21 30 7 3 21 26 19 18 27 12 ...##  $ Pos: Factor w/ 7 levels &amp;quot;C&amp;quot;,&amp;quot;PF&amp;quot;,&amp;quot;PF-C&amp;quot;,..: 7 2 2 2 1 7 1 1 2 2 ...&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The Columns need to be specified as a list of variables: &lt;code&gt;vars(Tm, Pos)&lt;/code&gt;. In this case, the function applied is &lt;code&gt;factor&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Repeat for all the numeric variables using the &lt;code&gt;:&lt;/code&gt; notation to select all the columns from &lt;code&gt;G&lt;/code&gt; to &lt;code&gt;PS.G&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;data_3 &amp;lt;- data %&amp;gt;%  mutate_at(vars(G:`PTS`, Age), as.numeric)str(select(data_3, G:`PTS`, Age))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## &amp;#39;data.frame&amp;#39;:    619 obs. of  26 variables:##  $ G   : num  68 38 6 32 80 61 39 62 72 61 ...##  $ GS  : num  6 1 0 1 80 45 15 0 72 5 ...##  $ MP  : num  15.5 14.7 8 15.9 29.9 25.9 15 8.6 32.4 14.3 ...##  $ FG  : num  2 1.8 0.8 2 4.7 3 2.3 0.7 6.9 1.3 ...##  $ FGA : num  5 4.5 2.8 4.8 8.2 6.9 4.6 1.4 14.6 2.8 ...##  $ FG% : num  0.393 0.412 0.294 0.425 0.571 0.44 0.5 0.523 0.477 0.458 ...##  $ 3P  : num  1.4 1 0.2 1.1 0 1 0 0 0.3 0 ...##  $ 3PA : num  3.6 2.4 1.2 2.6 0 2.5 0.1 0 0.8 0 ...##  $ 3P% : num  0.381 0.411 0.143 0.434 0 0.411 0 NA 0.411 0 ...##  $ 2P  : num  0.6 0.9 0.7 0.9 4.7 2 2.3 0.7 6.6 1.3 ...##  $ 2PA : num  1.4 2.1 1.7 2.2 8.2 4.4 4.5 1.4 13.8 2.7 ...##  $ 2P% : num  0.426 0.413 0.4 0.414 0.572 0.457 0.511 0.523 0.48 0.461 ...##  $ eFG%: num  0.531 0.521 0.324 0.542 0.571 0.514 0.5 0.523 0.488 0.458 ...##  $ FT  : num  0.6 1.2 0.3 1.3 2 1.4 0.7 0.2 3.1 0.4 ......&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;But wait, what about the rest of the years? You probably heard about the DRY principe: Don’t Repeat Yourself. It’d be silly to write a whole script just to download data from another season, because most of the code would be the same. So we need to &lt;em&gt;reuse&lt;/em&gt; our code to get data from the rest of the seasons.&lt;/p&gt;&lt;p&gt;To make our code more reusable, the first thing we need to do is build the url to get the html. We’ll use a super cool package called &lt;code&gt;glue&lt;/code&gt; for that.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(glue)name &amp;lt;- &amp;quot;Rafa&amp;quot;glue(&amp;quot;Hello, {name}&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## Hello, Rafa&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;I’m sure you get the idea. It’s what programmer’s call &lt;em&gt;string interpolation&lt;/em&gt;.&lt;/p&gt;&lt;p&gt;For loops are used to &lt;em&gt;iterate&lt;/em&gt; over collections, so we can repeat some process without copying the code. With a for loop, we can generate a vector of urls for every season we’re interested in:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;base_url &amp;lt;- &amp;quot;https://www.basketball-reference.com/leagues/&amp;quot;page &amp;lt;- &amp;quot;NBA_{year}_per_game.html&amp;quot;urls &amp;lt;- vector(&amp;quot;double&amp;quot;, length(2000:2017))for (year in 2000:2017) {  urls[[year-1999]] &amp;lt;- glue(base_url, page) ## year -1999 gives 1, 2, 3, ...}head(urls)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;https://www.basketball-reference.com/leagues/NBA_2000_per_game.html&amp;quot;## [2] &amp;quot;https://www.basketball-reference.com/leagues/NBA_2001_per_game.html&amp;quot;## [3] &amp;quot;https://www.basketball-reference.com/leagues/NBA_2002_per_game.html&amp;quot;## [4] &amp;quot;https://www.basketball-reference.com/leagues/NBA_2003_per_game.html&amp;quot;## [5] &amp;quot;https://www.basketball-reference.com/leagues/NBA_2004_per_game.html&amp;quot;## [6] &amp;quot;https://www.basketball-reference.com/leagues/NBA_2005_per_game.html&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Awesome! Now instead of creating a vector of urls, we’ll create a list of data frames, one for every season.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;base_url &amp;lt;- &amp;quot;https://www.basketball-reference.com/leagues/&amp;quot;page &amp;lt;- &amp;quot;NBA_{year}_per_game.html&amp;quot;data &amp;lt;- list()for (year in 2015:2017) {  nba_url &amp;lt;- glue(base_url, page)   web_page &amp;lt;- read_html(nba_url)  data[[year-2014]] &amp;lt;- html_table(web_page)[[1]]}str(data)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## List of 3##  $ :&amp;#39;data.frame&amp;#39;:    675 obs. of  30 variables:##   ..$ Rk    : chr [1:675] &amp;quot;1&amp;quot; &amp;quot;2&amp;quot; &amp;quot;3&amp;quot; &amp;quot;4&amp;quot; ...##   ..$ Player: chr [1:675] &amp;quot;Quincy Acy&amp;quot; &amp;quot;Jordan Adams&amp;quot; &amp;quot;Steven Adams&amp;quot; &amp;quot;Jeff Adrien&amp;quot; ...##   ..$ Pos   : chr [1:675] &amp;quot;PF&amp;quot; &amp;quot;SG&amp;quot; &amp;quot;C&amp;quot; &amp;quot;PF&amp;quot; ...##   ..$ Age   : chr [1:675] &amp;quot;24&amp;quot; &amp;quot;20&amp;quot; &amp;quot;21&amp;quot; &amp;quot;28&amp;quot; ...##   ..$ Tm    : chr [1:675] &amp;quot;NYK&amp;quot; &amp;quot;MEM&amp;quot; &amp;quot;OKC&amp;quot; &amp;quot;MIN&amp;quot; ...##   ..$ G     : chr [1:675] &amp;quot;68&amp;quot; &amp;quot;30&amp;quot; &amp;quot;70&amp;quot; &amp;quot;17&amp;quot; ...##   ..$ GS    : chr [1:675] &amp;quot;22&amp;quot; &amp;quot;0&amp;quot; &amp;quot;67&amp;quot; &amp;quot;0&amp;quot; ...##   ..$ MP    : chr [1:675] &amp;quot;18.9&amp;quot; &amp;quot;8.3&amp;quot; &amp;quot;25.3&amp;quot; &amp;quot;12.6&amp;quot; ...##   ..$ FG    : chr [1:675] &amp;quot;2.2&amp;quot; &amp;quot;1.2&amp;quot; &amp;quot;3.1&amp;quot; &amp;quot;1.1&amp;quot; ...##   ..$ FGA   : chr [1:675] &amp;quot;4.9&amp;quot; &amp;quot;2.9&amp;quot; &amp;quot;5.7&amp;quot; &amp;quot;2.6&amp;quot; ...##   ..$ FG%   : chr [1:675] &amp;quot;.459&amp;quot; &amp;quot;.407&amp;quot; &amp;quot;.544&amp;quot; &amp;quot;.432&amp;quot; ...##   ..$ 3P    : chr [1:675] &amp;quot;0.3&amp;quot; &amp;quot;0.3&amp;quot; &amp;quot;0.0&amp;quot; &amp;quot;0.0&amp;quot; ...##   ..$ 3PA   : chr [1:675] &amp;quot;0.9&amp;quot; &amp;quot;0.8&amp;quot; &amp;quot;0.0&amp;quot; &amp;quot;0.0&amp;quot; ......&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;better-iteration-with-map&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Better iteration with map&lt;/h1&gt;&lt;p&gt;Now our script does everything we want it to do. But there’s a wrinkle we have to iron out.&lt;/p&gt;&lt;p&gt;A lot of programming is about iteration, and every programming language supports for loops. R has a great way to make iteration cleaner with the &lt;code&gt;purrr&lt;/code&gt; package. There’s a whole chapter on iteration in &lt;a href=&#34;http://r4ds.had.co.nz/iteration.html&#34;&gt;R for Data Science&lt;/a&gt;, which is a must read for anyone interested in R.&lt;/p&gt;&lt;p&gt;Our script has to repeat the same steps for every year from 2000 to 2017. That’s a job for &lt;code&gt;map&lt;/code&gt;! &lt;code&gt;map&lt;/code&gt; takes a &lt;code&gt;list&lt;/code&gt; and applies a function to every element of the list.&lt;/p&gt;&lt;p&gt;For example, here we apply the &lt;code&gt;head&lt;/code&gt; function to a list of data frames to get the first 6 lines of each one:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;my_list &amp;lt;- list(mtcars, iris)purrr::map(my_list, head)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [[1]]##                    mpg cyl disp  hp drat    wt  qsec vs am gear carb## Mazda RX4         21.0   6  160 110 3.90 2.620 16.46  0  1    4    4## Mazda RX4 Wag     21.0   6  160 110 3.90 2.875 17.02  0  1    4    4## Datsun 710        22.8   4  108  93 3.85 2.320 18.61  1  1    4    1## Hornet 4 Drive    21.4   6  258 110 3.08 3.215 19.44  1  0    3    1## Hornet Sportabout 18.7   8  360 175 3.15 3.440 17.02  0  0    3    2## Valiant           18.1   6  225 105 2.76 3.460 20.22  1  0    3    1## ## [[2]]##   Sepal.Length Sepal.Width Petal.Length Petal.Width Species## 1          5.1         3.5          1.4         0.2  setosa## 2          4.9         3.0          1.4         0.2  setosa## 3          4.7         3.2          1.3         0.2  setosa## 4          4.6         3.1          1.5         0.2  setosa## 5          5.0         3.6          1.4         0.2  setosa## 6          5.4         3.9          1.7         0.4  setosa&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Instead of &lt;code&gt;head&lt;/code&gt;, which is a predefined function, you can use your own functions:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;my_list &amp;lt;- list(mtcars, iris)my_func &amp;lt;- function(data_frame) { print(&amp;quot;Hello from my fun!&amp;quot;)}purrr::map(my_list, my_func)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] &amp;quot;Hello from my fun!&amp;quot;## [1] &amp;quot;Hello from my fun!&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [[1]]## [1] &amp;quot;Hello from my fun!&amp;quot;## ## [[2]]## [1] &amp;quot;Hello from my fun!&amp;quot;&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;When applying map, you need to figure out our initial list to iterate over, and the function we want to apply to it’s elements in every iteration. The first part is easy, to get a list of seasons, we convert a numeric vector into a list like: &lt;code&gt;as.list(2000:2017)&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Now we need a function that takes one year and does the job for that year. Something like:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;get_player_data &amp;lt;- function(year) {  base_url &amp;lt;- &amp;quot;https://www.basketball-reference.com/leagues/&amp;quot;  page &amp;lt;- &amp;quot;NBA_{year}_per_game.html&amp;quot;  # Download data  nba_url &amp;lt;- glue(base_url, page)   # extract the data frame from the table  web_page &amp;lt;- read_html(nba_url)  data &amp;lt;- html_table(web_page)[[1]]  # return a data frame  data}data.14 &amp;lt;- get_player_data(2014)head(data.14)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##   Rk       Player Pos Age  Tm  G GS   MP  FG FGA  FG%  3P 3PA  3P%  2P 2PA## 1  1   Quincy Acy  SF  23 TOT 63  0 13.4 1.0 2.2 .468 0.1 0.2 .267 1.0 2.0## 2  1   Quincy Acy  SF  23 TOR  7  0  8.7 0.9 2.0 .429 0.3 0.7 .400 0.6 1.3## 3  1   Quincy Acy  SF  23 SAC 56  0 14.0 1.1 2.3 .472 0.0 0.2 .200 1.0 2.1## 4  2 Steven Adams   C  20 OKC 81 20 14.8 1.1 2.3 .503 0.0 0.0      1.1 2.3## 5  3  Jeff Adrien  PF  27 TOT 53 12 18.1 2.7 5.2 .520 0.0 0.0      2.7 5.2## 6  3  Jeff Adrien  PF  27 CHA 25  0 10.2 0.9 1.6 .550 0.0 0.0      0.9 1.6##    2P% eFG%  FT FTA  FT% ORB DRB TRB AST STL BLK TOV  PF PTS## 1 .492 .482 0.6 0.8 .660 1.1 2.3 3.4 0.4 0.4 0.4 0.5 1.9 2.7## 2 .444 .500 0.7 1.1 .625 0.7 1.4 2.1 0.6 0.6 0.4 0.3 1.1 2.7## 3 .496 .480 0.5 0.8 .667 1.2 2.4 3.6 0.4 0.3 0.4 0.5 2.0 2.7## 4 .503 .503 1.0 1.7 .581 1.8 2.3 4.1 0.5 0.5 0.7 0.9 2.5 3.3## 5 .520 .520 1.4 2.2 .639 1.9 3.8 5.8 0.7 0.5 0.7 0.7 2.0 6.8## 6 .550 .550 0.5 1.0 .520 1.3 2.2 3.5 0.3 0.3 0.6 0.3 1.4 2.3&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;pipes&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Pipes&lt;/h1&gt;&lt;p&gt;Pipes are a well known feature in the &lt;code&gt;tidyverse&lt;/code&gt;, so I won’t go into detail of how they work. We could turn our function into a set of pipes easily except for this line: &lt;code&gt;data &amp;lt;- html_table(web_page)[[1]]&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;We’re actually calling two functions in that line: &lt;code&gt;html_table&lt;/code&gt; with the &lt;code&gt;web_page&lt;/code&gt; argument and &lt;code&gt;[[&lt;/code&gt; with &lt;code&gt;1&lt;/code&gt; as an argument.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;web_page &amp;lt;- read_html(nba_url)tbl_lst &amp;lt;- html_table(web_page)df &amp;lt;- `[[`(tbl_lst, 1)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;So we can pipe it like this:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;df_2 &amp;lt;- web_page %&amp;gt;%  html_table %&amp;gt;%  `[[`(1)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Finally, we re-write our get_player_data function as:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;get_player_data &amp;lt;- function(year) {  base_url &amp;lt;- &amp;quot;https://www.basketball-reference.com/leagues/&amp;quot;  page &amp;lt;- &amp;quot;NBA_{year}_per_game.html&amp;quot;    glue(base_url, page) %&amp;gt;%     read_html %&amp;gt;%     html_table %&amp;gt;%     `[[`(1)}df.14 &amp;lt;- get_player_data(2014)head(df.14)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##   Rk       Player Pos Age  Tm  G GS   MP  FG FGA  FG%  3P 3PA  3P%  2P 2PA## 1  1   Quincy Acy  SF  23 TOT 63  0 13.4 1.0 2.2 .468 0.1 0.2 .267 1.0 2.0## 2  1   Quincy Acy  SF  23 TOR  7  0  8.7 0.9 2.0 .429 0.3 0.7 .400 0.6 1.3## 3  1   Quincy Acy  SF  23 SAC 56  0 14.0 1.1 2.3 .472 0.0 0.2 .200 1.0 2.1## 4  2 Steven Adams   C  20 OKC 81 20 14.8 1.1 2.3 .503 0.0 0.0      1.1 2.3## 5  3  Jeff Adrien  PF  27 TOT 53 12 18.1 2.7 5.2 .520 0.0 0.0      2.7 5.2## 6  3  Jeff Adrien  PF  27 CHA 25  0 10.2 0.9 1.6 .550 0.0 0.0      0.9 1.6##    2P% eFG%  FT FTA  FT% ORB DRB TRB AST STL BLK TOV  PF PTS## 1 .492 .482 0.6 0.8 .660 1.1 2.3 3.4 0.4 0.4 0.4 0.5 1.9 2.7## 2 .444 .500 0.7 1.1 .625 0.7 1.4 2.1 0.6 0.6 0.4 0.3 1.1 2.7## 3 .496 .480 0.5 0.8 .667 1.2 2.4 3.6 0.4 0.3 0.4 0.5 2.0 2.7## 4 .503 .503 1.0 1.7 .581 1.8 2.3 4.1 0.5 0.5 0.7 0.9 2.5 3.3## 5 .520 .520 1.4 2.2 .639 1.9 3.8 5.8 0.7 0.5 0.7 0.7 2.0 6.8## 6 .550 .550 0.5 1.0 .520 1.3 2.2 3.5 0.3 0.3 0.6 0.3 1.4 2.3&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Good, now we’re all set for using &lt;code&gt;map&lt;/code&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;list_of_data_frames &amp;lt;- as.list(2000:2017) %&amp;gt;%   purrr::map(get_player_data)  str(list_of_data_frames)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## List of 18##  $ :&amp;#39;data.frame&amp;#39;:    517 obs. of  30 variables:##   ..$ Rk    : chr [1:517] &amp;quot;1&amp;quot; &amp;quot;1&amp;quot; &amp;quot;1&amp;quot; &amp;quot;2&amp;quot; ...##   ..$ Player: chr [1:517] &amp;quot;Tariq Abdul-Wahad&amp;quot; &amp;quot;Tariq Abdul-Wahad&amp;quot; &amp;quot;Tariq Abdul-Wahad&amp;quot; &amp;quot;Shareef Abdur-Rahim&amp;quot; ...##   ..$ Pos   : chr [1:517] &amp;quot;SG&amp;quot; &amp;quot;SG&amp;quot; &amp;quot;SG&amp;quot; &amp;quot;SF&amp;quot; ...##   ..$ Age   : chr [1:517] &amp;quot;25&amp;quot; &amp;quot;25&amp;quot; &amp;quot;25&amp;quot; &amp;quot;23&amp;quot; ...##   ..$ Tm    : chr [1:517] &amp;quot;TOT&amp;quot; &amp;quot;ORL&amp;quot; &amp;quot;DEN&amp;quot; &amp;quot;VAN&amp;quot; ...##   ..$ G     : chr [1:517] &amp;quot;61&amp;quot; &amp;quot;46&amp;quot; &amp;quot;15&amp;quot; &amp;quot;82&amp;quot; ...##   ..$ GS    : chr [1:517] &amp;quot;56&amp;quot; &amp;quot;46&amp;quot; &amp;quot;10&amp;quot; &amp;quot;82&amp;quot; ...##   ..$ MP    : chr [1:517] &amp;quot;25.9&amp;quot; &amp;quot;26.2&amp;quot; &amp;quot;24.9&amp;quot; &amp;quot;39.3&amp;quot; ...##   ..$ FG    : chr [1:517] &amp;quot;4.5&amp;quot; &amp;quot;4.8&amp;quot; &amp;quot;3.4&amp;quot; &amp;quot;7.2&amp;quot; ...##   ..$ FGA   : chr [1:517] &amp;quot;10.6&amp;quot; &amp;quot;11.2&amp;quot; &amp;quot;8.7&amp;quot; &amp;quot;15.6&amp;quot; ...##   ..$ FG%   : chr [1:517] &amp;quot;.424&amp;quot; &amp;quot;.433&amp;quot; &amp;quot;.389&amp;quot; &amp;quot;.465&amp;quot; ...##   ..$ 3P    : chr [1:517] &amp;quot;0.0&amp;quot; &amp;quot;0.0&amp;quot; &amp;quot;0.1&amp;quot; &amp;quot;0.4&amp;quot; ...##   ..$ 3PA   : chr [1:517] &amp;quot;0.4&amp;quot; &amp;quot;0.5&amp;quot; &amp;quot;0.1&amp;quot; &amp;quot;1.2&amp;quot; ......&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;another-functional-idiom-reduce&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Another functional idiom: Reduce&lt;/h1&gt;&lt;p&gt;Map takes list and returns a list. In our script, it takes a list of numbers as input and returns a list of data frames. We now need to roll all those data frames into a single data frame.&lt;/p&gt;&lt;p&gt;That’s what reduce does. It takes a list and applies a function to consequtive pairs. accumulating the results.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;lst &amp;lt;- list(1, 2, 3, 4) purrr::reduce(lst, sum) # don&amp;#39;t do this in real life!&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] 10&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Of course, since R’s sum is vectorized you don’t ever need to do that,&lt;/p&gt;&lt;p&gt;Reduce works great with map:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;lst &amp;lt;- list(1, 2, 3, 4) # Find the sum of the square root of 1, 2, 3, 4purrr::map(lst, sqrt) %&amp;gt;%   purrr::reduce(sum)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] 6.146264&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Another example: get the sum of the rows in a list of data frames:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;list(mtcars, iris) %&amp;gt;%   purrr::map(nrow) %&amp;gt;%   purrr::reduce(sum)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## [1] 182&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;In our case, what we need it to use &lt;code&gt;reduce&lt;/code&gt; with bind_rows, so we accumulate all the rows in our data_frame into a single one.&lt;/p&gt;&lt;p&gt;Putting all the pieces together in the final script:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(glue)library(purrr)library(dplyr)library(rvest)# Download data table from basketball referenceget_player_data &amp;lt;- function(year) {    base_nba_url &amp;lt;- &amp;quot;https://www.basketball-reference.com/leagues/NBA_{year}_per_game.html&amp;quot;    glue(base_nba_url) %&amp;gt;%     read_html() %&amp;gt;%     html_table() %&amp;gt;%     `[[`(1) %&amp;gt;%     mutate(Year = year)}data &amp;lt;- as.list(2000:2018) %&amp;gt;%   purrr::map(get_player_data) %&amp;gt;%   purrr::reduce(bind_rows) %&amp;gt;%   mutate_at(vars(G:`PS/G`, Age), as.numeric) %&amp;gt;%   mutate_at(vars(Tm, Pos), factor)#saveRDS(data, file=&amp;quot;~/Desktop/data_science/nba_data_00_18.rds&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;what-to-do-with-the-data&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;What to do with the data&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&#34;https://fastbreakdata.com/classifying-the-modern-nba-player-with-machine-learning-539da03bb824&#34; class=&#34;uri&#34;&gt;https://fastbreakdata.com/classifying-the-modern-nba-player-with-machine-learning-539da03bb824&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&#34;https://www.reddit.com/r/nba/comments/6pp8jo/ocrethinking_basketball_positions_with_machine/&#34; class=&#34;uri&#34;&gt;https://www.reddit.com/r/nba/comments/6pp8jo/ocrethinking_basketball_positions_with_machine/&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&#34;http://cs229.stanford.edu/proj2012/Wheeler-PredictingNBAPlayerPerformance.pdf&#34; class=&#34;uri&#34;&gt;http://cs229.stanford.edu/proj2012/Wheeler-PredictingNBAPlayerPerformance.pdf&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;Effect of injury&lt;/li&gt;&lt;li&gt;Regression candidates in a team&lt;/li&gt;&lt;li&gt;PCA&lt;/li&gt;&lt;li&gt;player stats predict team offense and defense rating?&lt;/li&gt;&lt;li&gt;&lt;p&gt;predict wins based on offense and defense rating&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Un mapa de Montevideo con leaflet</title>
       <link>https://rlabuonora.com/posts/mapas/</link>
       <pubDate>Tue, 17 Jul 2018 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/mapas/</guid>
       <description>&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/htmlwidgets/htmlwidgets.js&#34;&gt;&lt;/script&gt;&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/jquery/jquery.min.js&#34;&gt;&lt;/script&gt;&lt;link href=&#34;https://rlabuonora.com/rmarkdown-libs/leaflet/leaflet.css&#34; rel=&#34;stylesheet&#34; /&gt;&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/leaflet/leaflet.js&#34;&gt;&lt;/script&gt;&lt;link href=&#34;https://rlabuonora.com/rmarkdown-libs/leafletfix/leafletfix.css&#34; rel=&#34;stylesheet&#34; /&gt;&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/Proj4Leaflet/proj4-compressed.js&#34;&gt;&lt;/script&gt;&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/Proj4Leaflet/proj4leaflet.js&#34;&gt;&lt;/script&gt;&lt;link href=&#34;https://rlabuonora.com/rmarkdown-libs/rstudio_leaflet/rstudio_leaflet.css&#34; rel=&#34;stylesheet&#34; /&gt;&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/leaflet-binding/leaflet.js&#34;&gt;&lt;/script&gt;&lt;p&gt;R tiene abstracciones para trabajar con información geográfica sin entender a fondo los detalles de cómo se hacen las proyecciones cartográficas y qué son los sistemas de coordenadas.&lt;/p&gt;&lt;p&gt;La API de &lt;code&gt;StreetView&lt;/code&gt; publica un mapa con bastante información del terreno como calles, ríos y lugares importantes obtenidos a partir de fotos satelitales. Este es el tipo de mapas que suelen usar aplicaciones como Uber o Google Maps. Leaflet facilita el consumo de la API para hacer mapas interactivos generando un widget HTML con controles para moverse y hacer zoom.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(tidyverse)library(maptools)library(leaflet)library(dplyr)library(rgdal)library(shiny)mvd &amp;lt;- list(lng=-56.164532, lat=-34.901112)leaflet() %&amp;gt;%   setView(lng=mvd$lng, lat=mvd$lat, zoom=12) %&amp;gt;%   addTiles(group=&amp;quot;Google&amp;quot;) &lt;/code&gt;&lt;/pre&gt;&lt;div id=&#34;htmlwidget-1&#34; style=&#34;width:672px;height:480px;&#34; class=&#34;leaflet html-widget&#34;&gt;&lt;/div&gt;&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-1&#34;&gt;{&#34;x&#34;:{&#34;options&#34;:{&#34;crs&#34;:{&#34;crsClass&#34;:&#34;L.CRS.EPSG3857&#34;,&#34;code&#34;:null,&#34;proj4def&#34;:null,&#34;projectedBounds&#34;:null,&#34;options&#34;:{}}},&#34;setView&#34;:[[-34.901112,-56.164532],12,[]],&#34;calls&#34;:[{&#34;method&#34;:&#34;addTiles&#34;,&#34;args&#34;:[&#34;//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&#34;,null,&#34;Google&#34;,{&#34;minZoom&#34;:0,&#34;maxZoom&#34;:18,&#34;tileSize&#34;:256,&#34;subdomains&#34;:&#34;abc&#34;,&#34;errorTileUrl&#34;:&#34;&#34;,&#34;tms&#34;:false,&#34;noWrap&#34;:false,&#34;zoomOffset&#34;:0,&#34;zoomReverse&#34;:false,&#34;opacity&#34;:1,&#34;zIndex&#34;:1,&#34;detectRetina&#34;:false,&#34;attribution&#34;:&#34;&amp;copy; &lt;a href=\&#34;http://openstreetmap.org\&#34;&gt;OpenStreetMap&lt;\/a&gt; contributors, &lt;a href=\&#34;http://creativecommons.org/licenses/by-sa/2.0/\&#34;&gt;CC-BY-SA&lt;\/a&gt;&#34;}]}]},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;&lt;p&gt;Para hacer este mapa llamamos a &lt;code&gt;leaflet::leaflet()&lt;/code&gt; sin argumentos, &lt;code&gt;setView()&lt;/code&gt; para especificar las coordenadas y zoom iniciales y &lt;code&gt;addTiles()&lt;/code&gt; para dibujar el mapa. Leaflet sigue las convenciones del &lt;code&gt;tidyverse&lt;/code&gt;, por lo que podemos encadenar las llamadas a las funciones con &lt;code&gt;%&amp;gt;%&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Hay otro tipo de mapas que representan algun tipo de entidad geográfica (un país o un barrio) mediante un polígono. La información para construir estos mapas no está disponible en las imágenes satelitales, porque las fronteras entre estas entidades no es visible. En Uruguay, el INE publica &lt;em&gt;shapefiles&lt;/em&gt; con la información cartográfica de los departamentos de Uruguay, los barrios de Montevideo, etc.&lt;/p&gt;&lt;p&gt;Los &lt;em&gt;shapefiles&lt;/em&gt; se publican con otros archivos que incluyen datos y otros atributos de las formas. &lt;code&gt;readOGR()&lt;/code&gt; devuelve un objeto &lt;code&gt;SpatialPolygonsDataFrame&lt;/code&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# leer shapefile (cuidado que incluyen los shpx, dbf, etc.)states &amp;lt;- readOGR(&amp;quot;../../static/shps/barrios/ine_barrios_mvd_nbi85.shp&amp;quot;,                  layer = &amp;quot;ine_barrios_mvd_nbi85&amp;quot;, GDAL1_integer64_policy = TRUE)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## OGR data source with driver: ESRI Shapefile ## Source: &amp;quot;/Users/rlabuonora/Desktop/data_science/work/blog_2/static/shps/barrios/ine_barrios_mvd_nbi85.shp&amp;quot;, layer: &amp;quot;ine_barrios_mvd_nbi85&amp;quot;## with 62 features## It has 3 fields&lt;/code&gt;&lt;/pre&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;crswgs84 &amp;lt;- CRS(&amp;quot;+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs&amp;quot;)# proyeccion ineprj &amp;lt;- CRS(&amp;quot;+proj=utm +zone=21 +south +ellps=WGS84 +datum=WGS84 +units=m +no_defs&amp;quot;)# asignar proyproj4string(states) &amp;lt;- prj# transformar la proyecciónst &amp;lt;- spTransform(states, crswgs84)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;El mapa que vamos a usar tiene un &lt;code&gt;data_frame&lt;/code&gt; con tres columnas: un código para cada barrio, el nombre y el área. Estos datos estan en el archivo dbf que viene en el zip.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;head(states@data)&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;##   AREA_KM     NOMBBARR NROBARRIO## 0   2.111 Ciudad Vieja         1## 1   1.297       Centro         2## 2   0.694   Barrio Sur         3## 3   2.279       Cordon         4## 4   0.798      Palermo         5## 5   0.766  Parque Rodo         6&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Los &lt;em&gt;shapefiles&lt;/em&gt; son útiles para dibujar &lt;em&gt;choropleths&lt;/em&gt;, que pintan cada polígono con un color para mostrar alguna variable. Acá pintamos cada barrio según su área:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Paleta de coloresqpal &amp;lt;- colorNumeric(&amp;quot;YlOrRd&amp;quot;, st@data$AREA_KM)leaflet(st) %&amp;gt;%  addPolygons(layerId=~NROBARRIO, color = &amp;quot;#444444&amp;quot;, weight = 1, smoothFactor = 0.5,              opacity = 1.0, fillOpacity = 0.5,              fillColor = ~qpal(AREA_KM),              highlightOptions = highlightOptions(color = &amp;quot;white&amp;quot;, weight = 2,                                                  bringToFront = TRUE), group=&amp;quot;INE&amp;quot;) %&amp;gt;%   addLegend(pal = qpal, values = ~AREA_KM)&lt;/code&gt;&lt;/pre&gt;&lt;div id=&#34;htmlwidget-2&#34; style=&#34;width:672px;height:480px;&#34; class=&#34;leaflet html-widget&#34;&gt;&lt;/div&gt;&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-2&#34;&gt;{&#34;x&#34;:{&#34;options&#34;:{&#34;crs&#34;:{&#34;crsClass&#34;:&#34;L.CRS.EPSG3857&#34;,&#34;code&#34;:null,&#34;proj4def&#34;:null,&#34;projectedBounds&#34;:null,&#34;options&#34;:{}}},&#34;calls&#34;:[{&#34;method&#34;:&#34;addPolygons&#34;,&#34;args&#34;:[[[[{&#34;lng&#34;:[-56.1993400536063,-56.1993135333852,-56.1989766599427,-56.1988297386621,-56.198724611095,-56.1987210522514,-56.1986126969086,-56.198129084123,-56.1980911546398,-56.1980234021982,-56.197922769466,-56.1978214697231,-56.1977387731896,-56.1977097692408,-56.1976609850086,-56.197528111764,-56.1972034437798,-56.1985855913771,-56.1988092260252,-56.1989886772434,-56.1997332467679,-56.1998548316957,-56.2001466712022,-56.2001649048953,-56.2002198654798,-56.200277579179,-56.2004009783015,-56.2004894173719,-56.2005896823842,-56.2006947788146,-56.200817744161,-56.2004935392883,-56.2002195480179,-56.1999003220108,-56.1991116140467,-56.1984579358107,-56.197696565688,-56.1968812854523,-56.1965505761969,-56.1964914702125,-56.1964474223963,-56.1963919015149,-56.196314026272,-56.1955938387079,-56.195369272605,-56.1952618602698,-56.1952449334836,-56.1952390957208,-56.197242904372,-56.1980771022242,-56.1984958091639,-56.1986785406281,-56.1989370539643,-56.1991546071119,-56.199510106462,-56.1996773912618,-56.1997031042969,-56.1995701774477,-56.1994464485996,-56.1994459190977,-56.1994767936232,-56.1994792839619,-56.1996598859496,-56.1996692292318,-56.1996120724077,-56.1996173354264,-56.199785290244,-56.1998918666186,-56.1999324723734,-56.2000095526032,-56.2000801681377,-56.2001845362982,-56.2001737264386,-56.200191724284,-56.2001412086916,-56.2001547555884,-56.2001991944929,-56.2002320820265,-56.2003055937615,-56.2002977501292,-56.200220652508,-56.2001961244031,-56.2001628785235,-56.2000924749708,-56.2000864865967,-56.2000802641901,-56.2000916079239,-56.200089911712,-56.2000645842755,-56.2001203069635,-56.2001280770737,-56.2005045657396,-56.2009758262932,-56.2013301593896,-56.2013818126594,-56.2014005441286,-56.2014363650267,-56.2014662059729,-56.2014923135831,-56.2015248275562,-56.2015436268238,-56.2015323540373,-56.2015446194405,-56.2015775214229,-56.2016029820854,-56.201659342595,-56.2017078498795,-56.2017439642285,-56.2017978938042,-56.2018295932335,-56.2018622497141,-56.2019107520981,-56.2019596510983,-56.2020025553174,-56.2020172826156,-56.2020563287172,-56.2020806717752,-56.2020816677807,-56.2021132991891,-56.2021609018309,-56.2022167985754,-56.2022865938712,-56.202418707378,-56.2025688194495,-56.2026280583777,-56.2026937130717,-56.2028970737822,-56.202967098563,-56.2030630237429,-56.2032446418488,-56.2032549169708,-56.2032860979875,-56.2033570444762,-56.203662447374,-56.2037171438611,-56.2037133967893,-56.20375242666,-56.2038169303282,-56.2039396510151,-56.204075962602,-56.2041167699583,-56.2040155788117,-56.2040106112219,-56.2040645413633,-56.2041505742588,-56.2042200452878,-56.2043698261612,-56.2045783141867,-56.2046903765404,-56.204834966825,-56.2049202769325,-56.2050325094455,-56.2050371376232,-56.2050902175792,-56.2052393256052,-56.2053273449608,-56.2054380839872,-56.2054030526437,-56.2054479480718,-56.2055498934976,-56.2056397966256,-56.2056449272643,-56.2057517441558,-56.2058366016304,-56.2058239778377,-56.2059122874898,-56.2059601821869,-56.20596875458,-56.206055642503,-56.2060389120207,-56.2059057010147,-56.2058299874415,-56.2059683368451,-56.2060901681895,-56.2061713595051,-56.2062619789489,-56.2064806293521,-56.2066090844131,-56.2066996617717,-56.2069001542189,-56.2069408171137,-56.2070956857662,-56.2071087794226,-56.20722465191,-56.2072807166525,-56.2073994321606,-56.2074503653541,-56.2075886415014,-56.2076089799555,-56.2076534532664,-56.2077458474724,-56.2079609296079,-56.2081629883326,-56.2083919531424,-56.2083691023702,-56.2083259530939,-56.2083331528265,-56.208438656848,-56.2084966193616,-56.2086429421314,-56.2088288973817,-56.2088370392856,-56.2088828266812,-56.208924723062,-56.209260459391,-56.2093363632052,-56.2094226193356,-56.2094727278283,-56.2095199162815,-56.2095601033474,-56.2096035271701,-56.2096466871124,-56.2096861353402,-56.2097229273375,-56.2097733139079,-56.2099079110705,-56.2101231663374,-56.2102134375327,-56.2102989019672,-56.2105337787819,-56.2105481991257,-56.2103825111488,-56.2102020869885,-56.2100521217359,-56.209936513881,-56.2100560596585,-56.2098361947104,-56.2097303183059,-56.2098952566226,-56.2099405701312,-56.2100754443097,-56.2101301737139,-56.2102909371424,-56.2103619421057,-56.2104724271802,-56.2105576548474,-56.2106974541641,-56.2108625502858,-56.210942892131,-56.2109734295231,-56.2108789432583,-56.2107841415245,-56.210698677302,-56.2106040334651,-56.2106547057679,-56.2107450161722,-56.2108846573967,-56.2110196102144,-56.2110599190514,-56.2111551151541,-56.2111458956333,-56.2111913661779,-56.2114420829555,-56.2119991119147,-56.2126825391205,-56.2131599169413,-56.2133615569917,-56.2135382335014,-56.2137618794233,-56.2143844033079,-56.2144088625336,-56.2144647821477,-56.2145611738549,-56.2146697007993,-56.2147663749445,-56.2148191076708,-56.2148750586184,-56.2149100156435,-56.2163730598844,-56.2166694094954,-56.2228692362284,-56.2229324886674,-56.2174043600549,-56.2168294396877,-56.216796070476,-56.2168380820377,-56.216796533427,-56.21689517745,-56.2168599288962,-56.2167329890324,-56.2167830963148,-56.216963889191,-56.2172232746478,-56.2171267575049,-56.2170315473805,-56.2170744923746,-56.2172225012063,-56.2172160434275,-56.2169534087339,-56.2167756273672,-56.2168489518492,-56.2189026643346,-56.2194557028841,-56.2196222587812,-56.2171192879351,-56.2169873132057,-56.2167635678144,-56.2140938843237,-56.2140594515658,-56.2140214586386,-56.2131348647327,-56.2144679972633,-56.2146946691638,-56.2141873025018,-56.213246714083,-56.2115297319247,-56.2080073820254,-56.2064722019604,-56.2064439357161,-56.208985711575,-56.2089843475382,-56.2074906005079,-56.2047168116607,-56.2046315526905,-56.2045816753008,-56.2005914307629,-56.2004032449288,-56.2003249672074,-56.1985367244108,-56.1985789731192,-56.1985194281365,-56.1984591099301,-56.1979144484653,-56.1977096879722,-56.1977219094643,-56.1975333903237,-56.1972594167752,-56.1972366250901,-56.1971818606937,-56.1972086673342,-56.1972235613664,-56.1972444929948,-56.1982573444413,-56.1983253504206,-56.1974490668348,-56.1984876895895,-56.1978920183506,-56.1981528742613,-56.198611797249,-56.1986685304016,-56.1977282694206,-56.197673268742,-56.1976629709856,-56.1976758914729,-56.1977139857851,-56.1977422637237,-56.1992576517732,-56.1992915665325,-56.1977268615701,-56.1977459528889,-56.1977707262787,-56.1977740596666,-56.1978572922966,-56.2017503677734,-56.2018129539461,-56.2014203072153,-56.2013159397253,-56.2011500919566,-56.2009683945861,-56.2009853068913,-56.201002573322,-56.2010260083324,-56.2009602185694,-56.2006732268767,-56.2005853307944,-56.2005755976514,-56.2003565316268,-56.200346940227,-56.2004194735719,-56.2007469866774,-56.2009965949421,-56.2011963081609,-56.2013402677371,-56.2014955020317,-56.2015630610595,-56.2015587065697,-56.2015040147606,-56.2013598786413,-56.2009442940756,-56.2005009219135,-56.1998029711616,-56.199520382398,-56.1990442523889,-56.1983337433432,-56.1982386322299,-56.1983746550207,-56.1983339111712,-56.19834865726,-56.198461094852,-56.198528331955,-56.1990628628095,-56.1991139535451,-56.1984980230895,-56.1985178598839,-56.1984898056847,-56.1984071698971,-56.1982692615464,-56.1982020077999,-56.1981995909116,-56.1983111376941,-56.198346246731,-56.1984567369927,-56.1985502443488,-56.1990862523471,-56.1990890156688,-56.1984189379647,-56.1980834180562,-56.1980760432179,-56.197953555343,-56.1979603165028,-56.195933524899,-56.1958372874744,-56.1956888584978,-56.1954930627981,-56.1954852830087,-56.1954723304519,-56.1953679718666,-56.1953001084021,-56.1947090747786,-56.194683173347,-56.1946397283454,-56.1947208731661,-56.1950553083132,-56.1954889095707,-56.1955358593658,-56.1958452963437,-56.1958754454511,-56.1959313399191,-56.1961323521064,-56.1965427730896,-56.1966483819953,-56.1977742873296,-56.1991415520535,-56.1994694291985,-56.1997953338122,-56.2003129721421,-56.2000903228372,-56.1998943523445,-56.1997925454259,-56.1997109458409,-56.1996572473139,-56.1996383667434,-56.1995673960573,-56.1995611994462,-56.1994596970989,-56.1993400536063],&#34;lat&#34;:[-34.9054947739421,-34.905993410815,-34.9059824109592,-34.9060301677527,-34.9061246049084,-34.9065236849936,-34.9064608380557,-34.9064244713197,-34.9067135722207,-34.9073402320718,-34.908273456693,-34.9092111903062,-34.9101395716251,-34.9105588405762,-34.9109501801876,-34.9110565397104,-34.9114834350197,-34.9111073640974,-34.9110451960146,-34.9109981692924,-34.9108030450742,-34.9107711816237,-34.9106922118063,-34.9107228620192,-34.9107301624179,-34.9107270833978,-34.9106950908319,-34.9106733100019,-34.9106486165792,-34.9106373789392,-34.9106501165761,-34.9107306779191,-34.9108070511451,-34.910887454435,-34.9110922296361,-34.9112648438111,-34.9114683370583,-34.9116935847161,-34.9117830199718,-34.9118072732508,-34.9118193876048,-34.9118346573374,-34.9118530120583,-34.9120671968608,-34.9121272113193,-34.912155916689,-34.91246080525,-34.9126233222404,-34.9127311540374,-34.9127748568971,-34.9127246206054,-34.9126860645595,-34.912667761922,-34.9125473350057,-34.9125460396115,-34.9125998871463,-34.9125318078336,-34.9124991460237,-34.9124874916453,-34.9123346338928,-34.9123384749154,-34.9123093902311,-34.9123560502408,-34.9123033660495,-34.9122775261592,-34.9121902575533,-34.9121749942614,-34.9121138561846,-34.912025001432,-34.9120455158746,-34.9120496183513,-34.9119884654786,-34.911964749695,-34.9119303106013,-34.9119026958495,-34.9118718651018,-34.9118430564874,-34.9118429893574,-34.9118001050572,-34.9116981996135,-34.9116795040583,-34.9116884799212,-34.9117173190071,-34.9116913921554,-34.9116258752774,-34.9115638527723,-34.9115531562525,-34.9115003993541,-34.9114584088386,-34.9113259928507,-34.9112078207925,-34.9108629038805,-34.910741525317,-34.9106537827122,-34.9106849867819,-34.9107110361527,-34.9107779391108,-34.9107917156267,-34.9107783067433,-34.9107739935674,-34.9107930473822,-34.9108221918191,-34.9108453179858,-34.9108525301349,-34.910854343521,-34.9108637674039,-34.9108587361867,-34.9108437468694,-34.910843333503,-34.9108445464135,-34.910872892705,-34.9108931260271,-34.9108906123912,-34.9108747491402,-34.9108588401923,-34.9108570871616,-34.9108622705344,-34.9108853853481,-34.9108936306909,-34.9108899243899,-34.9109113902082,-34.9109184188988,-34.9109317231921,-34.9109018537258,-34.9108625722672,-34.9107131379813,-34.9107100642203,-34.9106620377465,-34.9107023369987,-34.9107343824382,-34.9107785277623,-34.9107810336018,-34.9107307115298,-34.9106886352002,-34.9106962396413,-34.9107916529855,-34.9107906040923,-34.9107601721357,-34.9107962384518,-34.9107659181822,-34.9107400971963,-34.9106909486886,-34.9106512459857,-34.9106075212506,-34.9105640067288,-34.9105732772519,-34.910591102354,-34.9105976617248,-34.9106292497257,-34.9106169724982,-34.9106483852408,-34.9106623428543,-34.9107373056706,-34.9107817308465,-34.9107900031231,-34.9107463513997,-34.9107751901713,-34.910807368038,-34.9108402501324,-34.9108176390825,-34.9108717651113,-34.9109660776333,-34.9109842289974,-34.9109754725497,-34.9110147907654,-34.9110388164838,-34.9110122158589,-34.9110438409524,-34.9111009954849,-34.9111714109266,-34.9111132391928,-34.9111964925616,-34.9112767369344,-34.9114053590019,-34.9113089178656,-34.9113447721493,-34.9114211326022,-34.9114175635073,-34.9114578249879,-34.9114526244555,-34.9114197288098,-34.9114515939437,-34.9115028686443,-34.9115012968463,-34.9115482176544,-34.9115516842748,-34.9115376854012,-34.9115572091507,-34.9114991479162,-34.9115048297214,-34.911524816897,-34.911631796486,-34.9117774339904,-34.9117696146603,-34.9117950711038,-34.9118207330055,-34.9118532672867,-34.911818373128,-34.9118450499652,-34.9118224599274,-34.9118795368089,-34.9119145061277,-34.9119230962336,-34.911905765929,-34.9119614893208,-34.9120526107642,-34.9121000735008,-34.912103152876,-34.9120621587744,-34.9120541599613,-34.9120571958026,-34.9120877639514,-34.9121568556012,-34.912154341463,-34.9120734366829,-34.9121279026477,-34.9121210572055,-34.9121010320644,-34.9120603637717,-34.9120948688033,-34.9121567980284,-34.9122134347384,-34.9122411188624,-34.9122236546506,-34.9122764939072,-34.9123349842238,-34.9123005758767,-34.9123823347946,-34.9124040191245,-34.9123754571433,-34.9124010681393,-34.9124344028326,-34.9123694897324,-34.9122710142609,-34.9122305084245,-34.9122145726306,-34.9122484596701,-34.9122536542333,-34.9122253193324,-34.9121719268005,-34.9121094777396,-34.9120800055156,-34.9121206741523,-34.9120747133347,-34.9120090845636,-34.9119849369102,-34.9120353121865,-34.9120526779047,-34.9120240830081,-34.9120123338773,-34.9119298266299,-34.9118847757142,-34.911832812031,-34.9116715304266,-34.9113750269632,-34.9110644063282,-34.9109107105477,-34.9108557897931,-34.9109133011764,-34.9111250946678,-34.911079082221,-34.9110926352844,-34.9110602793417,-34.9110148101533,-34.9109527747933,-34.9108805617642,-34.9108908169435,-34.910846185429,-34.9113277619414,-34.9114246998278,-34.9134716146114,-34.9133806466612,-34.9115902504205,-34.9113928371792,-34.9107018466333,-34.9104828235544,-34.9102225250297,-34.9095993504799,-34.909242660319,-34.9087771672075,-34.9083828346042,-34.9080593635831,-34.9075963594157,-34.9071819858496,-34.9069072314812,-34.9061759137461,-34.9060495588438,-34.9059158435391,-34.9059077862442,-34.9058195011253,-34.9056254793967,-34.9042941377897,-34.9045538333881,-34.9043369882221,-34.9030241594961,-34.9030245647051,-34.9031469361485,-34.9048992598667,-34.9049218982085,-34.9049130002863,-34.9046092219534,-34.9018604576787,-34.9014000619074,-34.9012528776674,-34.901864169593,-34.9029600397613,-34.9018844550547,-34.9014158100292,-34.9012851926664,-34.8996686272956,-34.8995920144511,-34.8990511455112,-34.9007810409959,-34.9008308683598,-34.9008400314187,-34.8996033669726,-34.8999894712142,-34.8999965367198,-34.8993821084401,-34.8992952112887,-34.8992682869082,-34.8993209526344,-34.8990330908615,-34.8988005342424,-34.898455547033,-34.8979189681576,-34.8975881002671,-34.8974799005905,-34.8971705523078,-34.8969836720946,-34.896688190208,-34.8963861644456,-34.8967253822378,-34.89658132843,-34.8962707168868,-34.8944847811466,-34.8942420659285,-34.8937679565358,-34.8939401576235,-34.8938125076549,-34.8934908176708,-34.8934401595031,-34.8933577903918,-34.893170411966,-34.8926768565314,-34.8926221757365,-34.8931488362381,-34.8930850476409,-34.8924940500691,-34.8922427003266,-34.8919776712106,-34.8916347717061,-34.891635320985,-34.8930372076098,-34.8928775885409,-34.8927378409555,-34.892627420343,-34.8925623184854,-34.8924148110423,-34.8923874884881,-34.8923235899584,-34.8921957199441,-34.8921129863146,-34.8919510693702,-34.8918590455933,-34.8916975334214,-34.891418601035,-34.8912630801444,-34.8912224066873,-34.8912108437177,-34.8912216292544,-34.8912275141168,-34.8912604660776,-34.8912752027786,-34.8911750562065,-34.8910515758092,-34.8909689153574,-34.8909542515873,-34.8908920806912,-34.8908342979061,-34.8907062535844,-34.8906632424103,-34.8905503711453,-34.8905731211649,-34.8904688419362,-34.890037120105,-34.8895517937907,-34.8894376496633,-34.8893278953498,-34.8891916235846,-34.8893843004766,-34.8892722685199,-34.8890359805525,-34.8888656856689,-34.8887119303028,-34.8885615606373,-34.8884857387757,-34.8883897819007,-34.8881706472155,-34.8876844523388,-34.8875798065151,-34.8872022274685,-34.8871691334067,-34.887208249468,-34.8871577017974,-34.8871158289613,-34.8870274668216,-34.8870073286826,-34.8869764299381,-34.8870348593441,-34.8869421503336,-34.8878500157315,-34.8887570917345,-34.889995961977,-34.8900451866899,-34.8906202041608,-34.8915275709786,-34.8924593940266,-34.8978419855548,-34.897944395965,-34.8983134033652,-34.8987628168127,-34.899108089413,-34.8993442108843,-34.8993697776452,-34.8994704862788,-34.8994802984816,-34.8994966964637,-34.8995644873385,-34.8996962692686,-34.899728513867,-34.9000848720196,-34.9005092716357,-34.9006665078887,-34.9008424891857,-34.9010727505325,-34.9010894337457,-34.9010808844867,-34.9010801003599,-34.9020441874328,-34.9026753129204,-34.9028962085085,-34.9035761973727,-34.9036355681486,-34.904600345709,-34.9054947739421]}]],[[{&#34;lng&#34;:[-56.18454440373,-56.184430642064,-56.1843315317836,-56.1851956425914,-56.1864455668725,-56.187688419727,-56.1888225945522,-56.18995851272,-56.1906152147313,-56.1910706348297,-56.1922112623745,-56.1933141269034,-56.1944565721292,-56.1955851630692,-56.1967122059807,-56.1967447085765,-56.1978214697231,-56.197922769466,-56.1980234021982,-56.1980911546398,-56.198129084123,-56.1986126969086,-56.1987210522514,-56.198724611095,-56.1988297386621,-56.1989766599427,-56.1993135333852,-56.1993400536063,-56.1994596970989,-56.1995611994462,-56.1995673960573,-56.1996383667434,-56.1996572473139,-56.1997109458409,-56.1997925454259,-56.1998943523445,-56.2000903228372,-56.2003129721421,-56.1997953338122,-56.1994694291985,-56.1991415520535,-56.1977742873296,-56.1966483819953,-56.1965427730896,-56.1961323521064,-56.1959313399191,-56.1958754454511,-56.1957878464699,-56.1957127442462,-56.1956729350184,-56.1954239749404,-56.1946226121794,-56.1943038582987,-56.1932185855745,-56.1930933510572,-56.1921798847217,-56.19198180717,-56.1913702137959,-56.1912075752748,-56.1911028298076,-56.1908862376733,-56.1898429571001,-56.1897621957314,-56.1896347538464,-56.1886868898282,-56.1880714331813,-56.1876167926139,-56.1873947253399,-56.1869074730783,-56.1867640476995,-56.1864471019652,-56.186428796084,-56.1860951509104,-56.186086790036,-56.1859677805353,-56.1858493813759,-56.1856732079912,-56.1854712425232,-56.1854372543254,-56.1852887933549,-56.185281344924,-56.1850839314123,-56.185075254285,-56.1850042246804,-56.1846330658354,-56.1846248604363,-56.18454440373],&#34;lat&#34;:[-34.9063665922554,-34.9072907982442,-34.9082153200438,-34.9082927713322,-34.9083937399265,-34.9084767268401,-34.9085500149176,-34.9086298638346,-34.9086730644476,-34.9087104358567,-34.9088045043205,-34.9089011359108,-34.9089817824196,-34.9090464069899,-34.909128777804,-34.9091331900795,-34.9092111903062,-34.908273456693,-34.9073402320718,-34.9067135722207,-34.9064244713197,-34.9064608380557,-34.9065236849936,-34.9061246049084,-34.9060301677527,-34.9059824109592,-34.905993410815,-34.9054947739421,-34.904600345709,-34.9036355681486,-34.9035761973727,-34.9028962085085,-34.9026753129204,-34.9020441874328,-34.9010801003599,-34.9010808844867,-34.9010894337457,-34.9010727505325,-34.9008424891857,-34.9006665078887,-34.9005092716357,-34.9000848720196,-34.899728513867,-34.8996962692686,-34.8995644873385,-34.8994966964637,-34.8994802984816,-34.899576609227,-34.8996171450772,-34.8996160744185,-34.8996093784061,-34.8995565838248,-34.8995097767629,-34.8994089962199,-34.899398484023,-34.8993251615881,-34.8993078072242,-34.8992656202332,-34.8992835089143,-34.8992950297938,-34.8992829348516,-34.8992286954696,-34.8992264056485,-34.8992150471802,-34.899132875995,-34.8990801632281,-34.8990407283473,-34.8990193474454,-34.8989860026886,-34.8989765128746,-34.8996420981141,-34.899680045549,-34.9005012783818,-34.9005463716375,-34.9009473829752,-34.901723459509,-34.9026432530529,-34.9035586955669,-34.9037324428062,-34.904497233388,-34.9045312569378,-34.9054596154774,-34.9054941170148,-34.9055627427949,-34.9056092934485,-34.9056793797135,-34.9063665922554]}]],[[{&#34;lng&#34;:[-56.1837415802891,-56.1836634531744,-56.1836195816906,-56.1845231170473,-56.1844518295892,-56.1846423809677,-56.1851396759302,-56.1854214341576,-56.1857036798356,-56.185788018528,-56.1857819714791,-56.1857819337712,-56.1857716101788,-56.1857505987006,-56.1860214782134,-56.1861474377397,-56.1861112092611,-56.1861084023471,-56.1860822486775,-56.1864725641099,-56.1868220148852,-56.1873760665409,-56.1880352427029,-56.1882523963238,-56.1886807313038,-56.1887218948088,-56.1888042429304,-56.1887552402541,-56.1889836926338,-56.1890428231852,-56.1890382284881,-56.1890441667461,-56.1890930506178,-56.1891198317267,-56.1892793377429,-56.1892778093689,-56.1893599847079,-56.1894472193911,-56.1895823871719,-56.1896677594444,-56.189700913745,-56.1897684651771,-56.1897792902507,-56.1898037201904,-56.1897839741331,-56.1899030759734,-56.1897827491472,-56.1898032636236,-56.1897153943822,-56.1896580604732,-56.1896583822031,-56.1896586324372,-56.1901204119721,-56.1911232499062,-56.1918709236758,-56.1921203578593,-56.1921625925974,-56.191951947856,-56.1920126550618,-56.1922035117197,-56.1925987678977,-56.1939639570981,-56.1943112831265,-56.1945899343147,-56.1949323642587,-56.1952390957208,-56.1952449334836,-56.1952618602698,-56.195369272605,-56.1955938387079,-56.196314026272,-56.1963919015149,-56.1964474223963,-56.1964914702125,-56.1965505761969,-56.1968812854523,-56.197696565688,-56.1984579358107,-56.1991116140467,-56.1999003220108,-56.2002195480179,-56.2004935392883,-56.200817744161,-56.2006947788146,-56.2005896823842,-56.2004894173719,-56.2004009783015,-56.200277579179,-56.2002198654798,-56.2001649048953,-56.2001466712022,-56.1998548316957,-56.1997332467679,-56.1989886772434,-56.1988092260252,-56.1985855913771,-56.1972034437798,-56.197528111764,-56.1976609850086,-56.1977097692408,-56.1977387731896,-56.1978214697231,-56.1967447085765,-56.1967122059807,-56.1955851630692,-56.1944565721292,-56.1933141269034,-56.1922112623745,-56.1910706348297,-56.1906152147313,-56.18995851272,-56.1888225945522,-56.187688419727,-56.1864455668725,-56.1851956425914,-56.1843315317836,-56.1841650047857,-56.184046572873,-56.1840346319204,-56.1839462878585,-56.1838439563509,-56.1837575084942,-56.1838650937707,-56.1836907938429,-56.1837965460303,-56.1837829028206,-56.183761701258,-56.1837415802891],&#34;lat&#34;:[-34.913574624955,-34.9142794052216,-34.9144668476913,-34.9145312256512,-34.9155308985096,-34.9155492542876,-34.9155764979034,-34.9155715620246,-34.9155666169507,-34.9155565783093,-34.9156273843016,-34.9156832192535,-34.9157310123258,-34.9159437541978,-34.9159611457484,-34.9159723739351,-34.9158869375047,-34.9158557843047,-34.9158186405797,-34.9157506779252,-34.9156891621149,-34.9155668392934,-34.9153343107153,-34.9152416597043,-34.9150411931258,-34.9150653662653,-34.9150243779082,-34.9149883236277,-34.9148843572188,-34.914933859863,-34.9149520173571,-34.914984441174,-34.9149905783305,-34.914961655989,-34.9149081557727,-34.9148390305782,-34.9147904707609,-34.9146764672645,-34.9146780342922,-34.9147034015174,-34.9146999849646,-34.9147913761742,-34.9148132741398,-34.9147988864951,-34.9147860231316,-34.9147995488802,-34.9146859800923,-34.9146206394966,-34.9145745832263,-34.9145669256516,-34.914534189111,-34.9145087273572,-34.9142535339268,-34.9137636764148,-34.9133994310731,-34.9136320792783,-34.9136032589845,-34.9133822720561,-34.9133567219166,-34.913257955839,-34.913128487911,-34.9127385507751,-34.9126699201519,-34.9126244780228,-34.912604921233,-34.9126233222404,-34.91246080525,-34.912155916689,-34.9121272113193,-34.9120671968608,-34.9118530120583,-34.9118346573374,-34.9118193876048,-34.9118072732508,-34.9117830199718,-34.9116935847161,-34.9114683370583,-34.9112648438111,-34.9110922296361,-34.910887454435,-34.9108070511451,-34.9107306779191,-34.9106501165761,-34.9106373789392,-34.9106486165792,-34.9106733100019,-34.9106950908319,-34.9107270833978,-34.9107301624179,-34.9107228620192,-34.9106922118063,-34.9107711816237,-34.9108030450742,-34.9109981692924,-34.9110451960146,-34.9111073640974,-34.9114834350197,-34.9110565397104,-34.9109501801876,-34.9105588405762,-34.9101395716251,-34.9092111903062,-34.9091331900795,-34.909128777804,-34.9090464069899,-34.9089817824196,-34.9089011359108,-34.9088045043205,-34.9087104358567,-34.9086730644476,-34.9086298638346,-34.9085500149176,-34.9084767268401,-34.9083937399265,-34.9082927713322,-34.9082153200438,-34.9091330139181,-34.9100921534471,-34.9101996026721,-34.9109470938341,-34.9118799623286,-34.9126162798143,-34.9126215727896,-34.9127419746145,-34.9128835147558,-34.913087665178,-34.9132726171318,-34.913574624955]}]],[[{&#34;lng&#34;:[-56.1856732079912,-56.1858493813759,-56.1859677805353,-56.186086790036,-56.1860951509104,-56.186428796084,-56.1864471019652,-56.1867640476995,-56.1867935263266,-56.1869651481319,-56.1863193590403,-56.1852137826437,-56.1851767212937,-56.1850872231796,-56.1842940639188,-56.1834950816548,-56.1826923468306,-56.1823511812995,-56.1819648170416,-56.1819138019818,-56.1806403031225,-56.1803882718935,-56.1803138631024,-56.1795941664749,-56.1806581890134,-56.1805937041217,-56.1798244323571,-56.179626994658,-56.1792111650523,-56.1791039334564,-56.1785248194423,-56.1784271675852,-56.1784532102298,-56.1773550354926,-56.1761871473495,-56.17506133007,-56.1739105407452,-56.1729765924175,-56.1730165596963,-56.1730781931489,-56.1729485879749,-56.1715810777148,-56.1714790384239,-56.1714540371968,-56.1713676109579,-56.1712493308539,-56.1711149439844,-56.1710610111699,-56.1709955257307,-56.170377438634,-56.1699415921902,-56.1698361127918,-56.1696070096374,-56.1693236718462,-56.1692728143467,-56.1692175189852,-56.1691178740443,-56.1679596517194,-56.16660296871,-56.1654528722424,-56.1652240659078,-56.1642708159591,-56.1640385795222,-56.1639799993109,-56.1638866861869,-56.1637678982582,-56.1636494138195,-56.1636487651516,-56.1636458805492,-56.1636445668042,-56.1635480815598,-56.1634348715078,-56.1636520685219,-56.1648132390339,-56.1659298744811,-56.1666656660446,-56.1673876520129,-56.1684326956803,-56.1685424672923,-56.169707024551,-56.1708107654451,-56.1713409171912,-56.1720191586444,-56.1731704157104,-56.1731619793153,-56.1737850692133,-56.1743736662575,-56.1752625947007,-56.1762206304509,-56.1762851628986,-56.1762849819719,-56.1774616121236,-56.1773958306984,-56.1777436834283,-56.1784705049354,-56.179573201124,-56.1808958344899,-56.1820823447369,-56.1830145613297,-56.1843315317836,-56.184430642064,-56.18454440373,-56.1846248604363,-56.1846330658354,-56.1850042246804,-56.185075254285,-56.1850839314123,-56.185281344924,-56.1852887933549,-56.1854372543254,-56.1854712425232,-56.1856732079912],&#34;lat&#34;:[-34.9026432530529,-34.901723459509,-34.9009473829752,-34.9005463716375,-34.9005012783818,-34.899680045549,-34.8996420981141,-34.8989765128746,-34.8989214105647,-34.8986024107538,-34.898170566374,-34.8976083390094,-34.8975894916074,-34.8975205194615,-34.8971126090917,-34.8967002014025,-34.8962878003834,-34.8967980318561,-34.8973759915914,-34.8973581057006,-34.8968658701755,-34.8967674143993,-34.8967135366131,-34.8960772824572,-34.8952974096135,-34.8951619815627,-34.8947318387675,-34.8946079173143,-34.894933657832,-34.894913131568,-34.8948796441061,-34.8949431177295,-34.8947497158028,-34.8946484849465,-34.8945570311148,-34.8944699587092,-34.8943784365089,-34.8943088522892,-34.8939572034349,-34.8933801491666,-34.8933714855319,-34.893278555939,-34.8941912016138,-34.8944391503206,-34.8951469711953,-34.8961352470189,-34.8972163325845,-34.8973246434432,-34.8974510136156,-34.8985262531441,-34.8993016813856,-34.8994913258568,-34.8999079390482,-34.900425902842,-34.9006259541185,-34.9012426186969,-34.9021834992795,-34.9021057741947,-34.902023743556,-34.9019591819266,-34.9019417579406,-34.9022056707139,-34.9022738858942,-34.9027743089752,-34.903576787834,-34.9046001722863,-34.9056145420894,-34.9056235567384,-34.9058227997851,-34.9058806662201,-34.9067325253286,-34.9076973045566,-34.9077147618931,-34.907792832156,-34.9078871537302,-34.9079231443613,-34.9079733439503,-34.9080533131593,-34.9070978470677,-34.9071894309665,-34.9072721052704,-34.9073112437885,-34.9073589934142,-34.9074370119837,-34.9076262862094,-34.9075269798133,-34.9075193827978,-34.9075800657602,-34.907649564936,-34.9069463089156,-34.9069012406727,-34.9066450285376,-34.9077274767838,-34.9077535652383,-34.9078056537684,-34.907879236717,-34.9079702286439,-34.90805257111,-34.9081228082495,-34.9082153200438,-34.9072907982442,-34.9063665922554,-34.9056793797135,-34.9056092934485,-34.9055627427949,-34.9054941170148,-34.9054596154774,-34.9045312569378,-34.904497233388,-34.9037324428062,-34.9035586955669,-34.9026432530529]}]],[[{&#34;lng&#34;:[-56.1773958306984,-56.1774616121236,-56.1762849819719,-56.1762851628986,-56.1762206304509,-56.1752625947007,-56.1743736662575,-56.1737850692133,-56.1731619793153,-56.1730653982169,-56.172923300412,-56.1729151290526,-56.1728653984052,-56.1727698224476,-56.1726907149831,-56.1725928144934,-56.1724945396195,-56.1724071718417,-56.1724072878354,-56.1724160120419,-56.1725965409506,-56.1731829207433,-56.1736049687793,-56.1736333208288,-56.1737542599647,-56.1737836853769,-56.1738971397507,-56.1738955649591,-56.1754654506951,-56.1755190326788,-56.1768488877341,-56.1777113600423,-56.1777125285335,-56.1781442818105,-56.1781981936333,-56.1783330793968,-56.1784254896597,-56.1784741125145,-56.1784742448685,-56.1783923822466,-56.1781966720793,-56.1781104448849,-56.1780972133033,-56.1781399411883,-56.1782527668699,-56.1783664811221,-56.1784158609916,-56.178477989413,-56.178532759721,-56.1786064763214,-56.1790589330723,-56.1792221063932,-56.1794538904556,-56.1794604912471,-56.1792642829953,-56.1791908687936,-56.1790926135863,-56.1788960528272,-56.1788536272269,-56.1789953163925,-56.179075583463,-56.1792772846586,-56.1793873704965,-56.179416179452,-56.1796137454287,-56.1796861103191,-56.1804516016399,-56.1811880627709,-56.1811777042064,-56.1822330219922,-56.1822224010418,-56.1824486826935,-56.1824734726021,-56.183004790839,-56.1830185071795,-56.1833731992514,-56.1832682164505,-56.1832427058281,-56.1832931371465,-56.1835012724976,-56.1838617675486,-56.1839775891465,-56.184050033975,-56.1841198460677,-56.1843607598005,-56.1847471932765,-56.1849113402977,-56.1852355185495,-56.1853339157708,-56.1854855290274,-56.1855492211774,-56.1856281071014,-56.1856964771151,-56.185819383825,-56.1858041901819,-56.1857449756934,-56.1857395777416,-56.1858529688871,-56.1859656000441,-56.1861125365333,-56.1861570373794,-56.1861673129811,-56.186045125902,-56.1859811935654,-56.1859327747892,-56.1858789582461,-56.1857325024636,-56.1856200719187,-56.1857505987006,-56.1857716101788,-56.1857819337712,-56.1857819714791,-56.185788018528,-56.1857036798356,-56.1854214341576,-56.1851396759302,-56.1846423809677,-56.1844518295892,-56.1845231170473,-56.1836195816906,-56.1836634531744,-56.1837415802891,-56.183761701258,-56.1837829028206,-56.1837965460303,-56.1836907938429,-56.1838650937707,-56.1837575084942,-56.1838439563509,-56.1839462878585,-56.1840346319204,-56.184046572873,-56.1841650047857,-56.1843315317836,-56.1830145613297,-56.1820823447369,-56.1808958344899,-56.179573201124,-56.1784705049354,-56.1777436834283,-56.1773958306984],&#34;lat&#34;:[-34.9077274767838,-34.9066450285376,-34.9069012406727,-34.9069463089156,-34.907649564936,-34.9075800657602,-34.9075193827978,-34.9075269798133,-34.9076262862094,-34.9083702282672,-34.909627732348,-34.9097046831464,-34.9101825529294,-34.9110841945958,-34.9118280482201,-34.9127477258547,-34.9136510205107,-34.9143964484002,-34.9143981132824,-34.9145233334159,-34.9145093719536,-34.9144658887849,-34.9144379842403,-34.9148053271211,-34.9148040301363,-34.9146919048453,-34.9146672440166,-34.9145676240267,-34.9145253024815,-34.9145701723165,-34.914612469112,-34.914658269953,-34.9147456580274,-34.9147883465606,-34.9149305011204,-34.9149668607314,-34.914947229832,-34.9150032617526,-34.9150751248219,-34.9151014575694,-34.9150883714709,-34.9151432411032,-34.9151931423703,-34.915223814917,-34.9151912544693,-34.9153164975318,-34.9152965756909,-34.915231164675,-34.9152872381305,-34.9152928003602,-34.9153597009642,-34.9153624835906,-34.9153896761113,-34.915344145338,-34.9152921810352,-34.9152562376841,-34.9152454461161,-34.9152289263292,-34.9151678725267,-34.9151384463261,-34.9151035411089,-34.9149427592851,-34.9149502242911,-34.9149252130128,-34.914956793943,-34.9148598199551,-34.9149624303907,-34.9150889292715,-34.9151415243262,-34.9153511878588,-34.9153730860426,-34.9154255595399,-34.915405470605,-34.9155290130175,-34.9154942101532,-34.9156021795452,-34.9156972561326,-34.9158012687495,-34.9158587409064,-34.9158534180278,-34.9159129729262,-34.915986791553,-34.9161209657331,-34.9160242070486,-34.9159953014946,-34.9161138414691,-34.9160578766384,-34.9161005620908,-34.9160971706527,-34.9161832609999,-34.9162079947631,-34.9161882677413,-34.9162373396374,-34.9162422143329,-34.9162866751099,-34.9163065340602,-34.9163551116096,-34.9163275133634,-34.9163768816441,-34.9164386330235,-34.9164146242095,-34.9163701304508,-34.9162923403445,-34.9162919120916,-34.9162146160093,-34.9161858974661,-34.9160755353056,-34.9160059124374,-34.9159437541978,-34.9157310123258,-34.9156832192535,-34.9156273843016,-34.9155565783093,-34.9155666169507,-34.9155715620246,-34.9155764979034,-34.9155492542876,-34.9155308985096,-34.9145312256512,-34.9144668476913,-34.9142794052216,-34.913574624955,-34.9132726171318,-34.913087665178,-34.9128835147558,-34.9127419746145,-34.9126215727896,-34.9126162798143,-34.9118799623286,-34.9109470938341,-34.9101996026721,-34.9100921534471,-34.9091330139181,-34.9082153200438,-34.9081228082495,-34.90805257111,-34.9079702286439,-34.907879236717,-34.9078056537684,-34.9077535652383,-34.9077274767838]}]],[[{&#34;lng&#34;:[-56.1621336187979,-56.1621112631775,-56.1628894707878,-56.1655081769919,-56.1657363546522,-56.1656869417706,-56.165734183739,-56.1657558751755,-56.1657814917199,-56.1657915485732,-56.1657852454934,-56.1657674296883,-56.1657438420913,-56.1657255007547,-56.1657220314791,-56.1657166399971,-56.1657132258895,-56.1657464903355,-56.1657497353423,-56.1657601857319,-56.165765443112,-56.1657772429611,-56.1657816977387,-56.1657857871812,-56.1658415773412,-56.1658458731985,-56.1658553862554,-56.1659096626008,-56.1659536649292,-56.1660009597756,-56.1660560366431,-56.1661254915039,-56.1667354294029,-56.1669910067145,-56.1671508202311,-56.1677767052187,-56.1686663635921,-56.1692175848347,-56.1691527832751,-56.169148956633,-56.1692089480092,-56.1694875997213,-56.1696110934102,-56.1702129838205,-56.1701371997367,-56.1701830540109,-56.1701875373637,-56.1702004173396,-56.1702577385683,-56.1703361243581,-56.17045609246,-56.1704564331521,-56.170525612366,-56.170314792504,-56.1706134502008,-56.1707403285861,-56.1707894269549,-56.1708328456177,-56.1710602168088,-56.1711464537386,-56.1712847368368,-56.1713780160556,-56.1714533040803,-56.171566179431,-56.1715585030365,-56.1716799462679,-56.1719755536679,-56.172045165443,-56.1722431649173,-56.172097748388,-56.1719093163353,-56.1719239881473,-56.172094746996,-56.1722517766552,-56.1723545025592,-56.1724042158481,-56.1724345194023,-56.1724648597574,-56.1725067219295,-56.1725224254695,-56.1727579359667,-56.1729930460894,-56.1732136324658,-56.1734262256278,-56.1735409627927,-56.1736245194462,-56.1736333208288,-56.1736049687793,-56.1731829207433,-56.1725965409506,-56.1724160120419,-56.1724072878354,-56.1724071718417,-56.1724945396195,-56.1725928144934,-56.1726907149831,-56.1727698224476,-56.1728653984052,-56.1729151290526,-56.172923300412,-56.1730653982169,-56.1731619793153,-56.1731704157104,-56.1720191586444,-56.1713409171912,-56.1708107654451,-56.169707024551,-56.1685424672923,-56.1684326956803,-56.1673876520129,-56.1666656660446,-56.1659298744811,-56.1648132390339,-56.1636520685219,-56.1634348715078,-56.163326476079,-56.1633205610139,-56.1630763653556,-56.1630735867893,-56.1630568242241,-56.1630294842004,-56.1629360412339,-56.1628468393874,-56.1628425398437,-56.1628129065468,-56.1627770722926,-56.162763447901,-56.1626588357824,-56.1628855006586,-56.1627804791887,-56.1627277391879,-56.1627123089524,-56.1626892714513,-56.1626004794439,-56.1624868396207,-56.1623674973297,-56.1622523844204,-56.1622271866398,-56.1621336187979],&#34;lat&#34;:[-34.9213877758121,-34.921622640189,-34.9212308377572,-34.9199378028936,-34.9198687861236,-34.9196708127963,-34.9187370449205,-34.9185708990141,-34.9177731075727,-34.9174575981897,-34.9173004958867,-34.9168564400642,-34.9159419496935,-34.9153278241591,-34.915211661241,-34.9150311360174,-34.9149647065164,-34.9144065313432,-34.9143614547627,-34.9142352330002,-34.9139148575009,-34.9136921330929,-34.9135663441432,-34.9135105269924,-34.9127490336167,-34.9126266505718,-34.9124968720334,-34.9117564170517,-34.9114329433537,-34.9113879728906,-34.9113545273466,-34.9113852985392,-34.9114246100568,-34.9114527080615,-34.9114625853717,-34.9115063919326,-34.9115585864656,-34.9116062657983,-34.9116892512746,-34.9120690443231,-34.9121989881819,-34.912508185651,-34.9126070099506,-34.9129659517327,-34.9132591029183,-34.913669532806,-34.9137096619498,-34.9138210460601,-34.9143200367357,-34.9144616009076,-34.9146863530817,-34.9146869913436,-34.9148165933465,-34.9149275700493,-34.9158938396027,-34.9156871016919,-34.9156289059686,-34.9156121466144,-34.9153426293844,-34.915229109129,-34.9150418151291,-34.9149723529901,-34.9149157368781,-34.9148565340221,-34.9148348049126,-34.9147958920178,-34.9147964615094,-34.9148525728829,-34.9148770436619,-34.9150321258327,-34.9151030978303,-34.9151270422648,-34.9150689559055,-34.9148929986264,-34.9148835824885,-34.9149995305501,-34.9150240857515,-34.9150550702741,-34.9150913461046,-34.9151079968811,-34.9151743550141,-34.9152004483011,-34.9151696370435,-34.9151084469873,-34.9150285101313,-34.9149133539321,-34.9148053271211,-34.9144379842403,-34.9144658887849,-34.9145093719536,-34.9145233334159,-34.9143981132824,-34.9143964484002,-34.9136510205107,-34.9127477258547,-34.9118280482201,-34.9110841945958,-34.9101825529294,-34.9097046831464,-34.909627732348,-34.9083702282672,-34.9076262862094,-34.9074370119837,-34.9073589934142,-34.9073112437885,-34.9072721052704,-34.9071894309665,-34.9070978470677,-34.9080533131593,-34.9079733439503,-34.9079231443613,-34.9078871537302,-34.907792832156,-34.9077147618931,-34.9076973045566,-34.9088213411544,-34.9089041898292,-34.9109927161583,-34.911022284907,-34.9112078501354,-34.9113691080543,-34.9123450816125,-34.9130297772413,-34.9131398396927,-34.9135511701731,-34.913806462169,-34.9139035252174,-34.9147469879273,-34.9147529962134,-34.9157294939018,-34.9162577273798,-34.916380397142,-34.9166269751746,-34.9175089329943,-34.9184831649012,-34.9194098168544,-34.9205944455847,-34.9207674889458,-34.9213877758121]}]],[[{&#34;lng&#34;:[-56.1657852454934,-56.1657915485732,-56.1657814917199,-56.1657558751755,-56.165734183739,-56.1656869417706,-56.1657363546522,-56.1655081769919,-56.1628894707878,-56.1621112631775,-56.1621336187979,-56.1622271866398,-56.1622523844204,-56.1623674973297,-56.1624868396207,-56.1626004794439,-56.1626892714513,-56.1627123089524,-56.1627277391879,-56.1627804791887,-56.1628855006586,-56.1626588357824,-56.1623161512218,-56.1619922274994,-56.1613604366687,-56.1604029795502,-56.1601050475658,-56.1598543129794,-56.1588195106077,-56.1575276334673,-56.1562635627911,-56.156246137427,-56.1561394746428,-56.1560420608773,-56.1560136375209,-56.1548990126804,-56.1548733661204,-56.1547786072509,-56.1534986838283,-56.1525737601548,-56.1515473474742,-56.1509845872443,-56.150608049721,-56.1496612414277,-56.1487124344466,-56.1487632137082,-56.1489574006834,-56.1489692363966,-56.1488521762924,-56.1488156892451,-56.1482970916809,-56.1482634505512,-56.1482644434206,-56.148201399886,-56.1480837978826,-56.1480701842121,-56.1480792192945,-56.148062029504,-56.1480079521174,-56.1479565356006,-56.1477943186078,-56.1476472894478,-56.1474876888608,-56.147314816418,-56.1471664047766,-56.1470619375668,-56.1469471917228,-56.1468513056052,-56.1467532850535,-56.146749749897,-56.1467308234695,-56.1466965591318,-56.1466568253068,-56.146642137732,-56.146626372935,-56.1465426831074,-56.1464758486391,-56.1464353944425,-56.1464185390831,-56.1463916485483,-56.1463498303149,-56.146315549302,-56.146282769063,-56.1462762890545,-56.1462119322748,-56.1461609128854,-56.1461103167917,-56.1460477345164,-56.1460090112124,-56.1459134986208,-56.1457971786316,-56.1456869951405,-56.1456209777603,-56.14557653484,-56.1455297507122,-56.1454785209584,-56.1453729298357,-56.1453339797481,-56.145297811095,-56.1452530947003,-56.1452144981284,-56.1451926468591,-56.1451689379652,-56.1451800770432,-56.1452103693324,-56.1452310700083,-56.1452588676776,-56.1452556126655,-56.1453135225311,-56.1454008575721,-56.1454664080448,-56.1454930351104,-56.1454744722037,-56.1454049396773,-56.1454074809879,-56.1454727046254,-56.1455174076799,-56.145597872511,-56.1456393038782,-56.1456569096246,-56.1456533444527,-56.1457228636388,-56.1457755808264,-56.1458301356284,-56.1458512265055,-56.1458151245535,-56.1458016275927,-56.1458387934268,-56.1459236705334,-56.1460417714411,-56.1461711048083,-56.1462655435127,-56.1463200349487,-56.1464093743566,-56.1464898225125,-56.1465628968655,-56.1466989103444,-56.1468311151925,-56.1470049781914,-56.1471332376715,-56.1472689409905,-56.1474236507783,-56.147547387926,-56.1476537327708,-56.14766193199,-56.1476613518377,-56.1477068445046,-56.1477014683199,-56.1476709515501,-56.1475565964124,-56.1473168894676,-56.147335877168,-56.1474082587345,-56.1476382385057,-56.147819228562,-56.1478839558365,-56.1478867265054,-56.1479711833936,-56.1480322793297,-56.1480593747494,-56.148161608545,-56.1483418506024,-56.1483619175117,-56.1483244784933,-56.148524643685,-56.1486572260398,-56.1489490960388,-56.1492112596387,-56.149351048385,-56.1495104233483,-56.1495505151343,-56.1493234695572,-56.1492765668902,-56.1492913988228,-56.1493942316018,-56.1500562512226,-56.1501992209902,-56.1504301918464,-56.1506849818693,-56.1510548258041,-56.1510468960241,-56.1511062209781,-56.1512593150232,-56.1514588749359,-56.1514839615176,-56.1514770672005,-56.1515423798996,-56.1515360967437,-56.1509614090927,-56.1509405975502,-56.1514173366183,-56.1512589516329,-56.1511196960076,-56.1507747625573,-56.1506309840319,-56.1505438593437,-56.1504580738779,-56.1502093315918,-56.1499992100277,-56.1499130724871,-56.1496033315762,-56.1493917306032,-56.1493346595433,-56.1497685905963,-56.1499698883006,-56.1500883260373,-56.1502945852014,-56.1504504672691,-56.1504496990209,-56.1506078921369,-56.1506756485106,-56.150759067734,-56.1509393944481,-56.1509750152863,-56.1509784834474,-56.1509829809215,-56.1510019621317,-56.1510088298212,-56.1510475127161,-56.1510712461725,-56.1510939143558,-56.1510911507394,-56.1511070755924,-56.1511562713815,-56.1512109521617,-56.151306820801,-56.1513460999779,-56.1514304501422,-56.1514410745864,-56.151479719403,-56.1515316142338,-56.1515795124144,-56.1516619108444,-56.1516909203059,-56.1517104648727,-56.1517405399012,-56.1517362787694,-56.151765616026,-56.1518236348028,-56.1519375220305,-56.1519782230211,-56.1519990837795,-56.1520206315589,-56.1520603186932,-56.1520883798317,-56.1521280536259,-56.152169795153,-56.1522289623337,-56.1522624762844,-56.1522963370806,-56.1523250318793,-56.1523527161567,-56.15236261793,-56.152398529784,-56.1524508367601,-56.1524635099626,-56.1524720777146,-56.1524851411184,-56.1524930885504,-56.1524999987808,-56.1525079128623,-56.1525226871485,-56.1525436512935,-56.1525529194067,-56.1525655892742,-56.1526069906259,-56.1526439430166,-56.1526603581489,-56.1526846573473,-56.1527034870583,-56.15271923518,-56.1527507314234,-56.1527719523676,-56.1528037787813,-56.1528232888431,-56.152836609046,-56.1528458104581,-56.1528556788808,-56.1528625023999,-56.152867955212,-56.1528823192866,-56.1528939486175,-56.1528970101964,-56.1528997115896,-56.1529034568545,-56.1529061749229,-56.1529174107175,-56.1529303740697,-56.1529361537171,-56.1529391819455,-56.1529370975372,-56.1529295403064,-56.1529182511509,-56.1528984175889,-56.1528844103651,-56.1528745085918,-56.1528680119079,-56.15285156009,-56.1528234656009,-56.1528176192525,-56.1528186097633,-56.1528209709811,-56.1528192267482,-56.1528164753292,-56.1528054629832,-56.1528006238209,-56.1528039955598,-56.1528049360448,-56.1528069204015,-56.1528109925016,-56.1528218514351,-56.1528313596721,-56.1528395172125,-56.1528514200178,-56.1528616286159,-56.1528677684491,-56.152885844438,-56.1529039204269,-56.1529104171107,-56.1529206790698,-56.1529490803837,-56.152990138225,-56.1530476445491,-56.1530825625572,-56.1531020592788,-56.153123280223,-56.1531345660434,-56.1531537692803,-56.1531743565644,-56.1531829576669,-56.1531871264835,-56.1531913319857,-56.1531934530796,-56.153195230663,-56.1532038484408,-56.1532103951504,-56.1532107886867,-56.1532115924346,-56.1532120193214,-56.1532124428731,-56.1532111788879,-56.1532071568137,-56.1532030880486,-56.1531898011963,-56.1531761374829,-56.1531652251884,-56.1531666459212,-56.15317220212,-56.1531613598617,-56.1531477961999,-56.1531396886853,-56.1531349529096,-56.1531271021941,-56.1531213058715,-56.1531216827325,-56.1531238004913,-56.1531245875639,-56.1531243107545,-56.1531168702506,-56.1531094164064,-56.1531115341653,-56.1531239639089,-56.1531435440069,-56.1531521617846,-56.1531508110881,-56.1531494770667,-56.1531515948256,-56.1531578180351,-56.1531684735304,-56.1531798093766,-56.1531904448615,-56.1532051691219,-56.1532226448012,-56.1532339472969,-56.1532534406834,-56.153278750403,-56.1533054441696,-56.1533276923102,-56.1533478693827,-56.1533653117115,-56.1533796924614,-56.1533916619677,-56.1534056858668,-56.1534323629582,-56.1534515128343,-56.1534699823595,-56.1534873913378,-56.1535037731196,-56.153517813694,-56.1535465585185,-56.1535869660243,-56.1536153873486,-56.1536266898442,-56.1536366082928,-56.1536427314506,-56.1536488679487,-56.1536529900746,-56.1536622415125,-56.1536745878798,-56.1536821284353,-56.1536934142557,-56.1537152855353,-56.153759748466,-56.1537765404594,-56.1538025838906,-56.1538354841915,-56.1538800271634,-56.1538947680991,-56.1539108764065,-56.1539629799443,-56.1539838940636,-56.1540072194264,-56.1540291407318,-56.1540633917292,-56.1541007043056,-56.1541400879501,-56.1541691896253,-56.1541801519455,-56.1541835903854,-56.1541928418233,-56.1542024501119,-56.1542099906674,-56.1542181982336,-56.1542274163209,-56.1542520757051,-56.1542910824885,-56.1543294189263,-56.1543540616352,-56.1543800883912,-56.1544105774485,-56.1544266857559,-56.1544458889929,-56.1544654690908,-56.1544761212511,-56.1544833883322,-56.1544906554134,-56.1545027283064,-56.1545144410136,-56.1545247863489,-56.1545344646736,-56.1545376263041,-56.1545404644345,-56.1545490988875,-56.1545631894877,-56.1545810253528,-56.1545978173462,-56.1546228169058,-56.15464403785,-56.1546649186187,-56.1546861228876,-56.154707670667,-56.1547456502541,-56.1547723440207,-56.1547993779628,-56.1548281261223,-56.1548527654962,-56.1548746734613,-56.154895550895,-56.1549232718581,-56.1549513329966,-56.1549804213315,-56.1550088259805,-56.1550430603027,-56.1550817235757,-56.1551029445199,-56.155117652105,-56.1551566422132,-56.1551983670651,-56.1552565237246,-56.1553098945827,-56.1553519796203,-56.1553749281221,-56.1554212353373,-56.1554470052942,-56.1554504937599,-56.1554389177899,-56.1554246037411,-56.155423970081,-56.1554260744996,-56.1554401284142,-56.1554446274012,-56.1554388310785,-56.1554292694807,-56.15541045978,-56.1553988471244,-56.1553735407399,-56.1553488980311,-56.1553372687002,-56.1553201865572,-56.1552746830899,-56.1552391114113,-56.1552257745331,-56.1552008416746,-56.1551786435598,-56.1551510093081,-56.1551230648965,-56.1551009701683,-56.1550908316063,-56.1550902146214,-56.1550954306448,-56.1551871215768,-56.1556463419005,-56.1557737822202,-56.1559344770432,-56.1559383656609,-56.1559077775764,-56.1559362148771,-56.1565035879338,-56.1566189508364,-56.1569667004112,-56.156967237455,-56.1569161565255,-56.1569920285692,-56.1571311085206,-56.1574486135837,-56.1575183488305,-56.1576977989009,-56.1577548222244,-56.1576273807007,-56.1574767103529,-56.157464925153,-56.1575978202047,-56.1577876900919,-56.1578271335084,-56.1577043646121,-56.1576162681304,-56.157476308645,-56.1563066359659,-56.1563120401244,-56.1575164349126,-56.1576657405251,-56.1579599723532,-56.1580282942316,-56.1577990666332,-56.1577924910945,-56.1578664131649,-56.1579867940825,-56.1581249508717,-56.1581351759308,-56.1579028334888,-56.1578495552994,-56.1579643368304,-56.1578931853196,-56.157950698183,-56.1581070218189,-56.1581986233811,-56.1580577345388,-56.1580454126621,-56.1580326518719,-56.1581178734884,-56.1581195126673,-56.1581149139272,-56.1580486785523,-56.1580371027021,-56.1584156998364,-56.1584945197064,-56.1584283993073,-56.158365402628,-56.1581849793471,-56.158097753651,-56.157963860216,-56.157843263685,-56.1578344896316,-56.1583233042643,-56.158440868936,-56.1586129095991,-56.1587596180777,-56.1588840023365,-56.1588749302377,-56.1588686129949,-56.1588236897878,-56.1588271140502,-56.1588241969983,-56.1588201615838,-56.1588154224731,-56.1588079853042,-56.1588052672358,-56.1587991274026,-56.1587858572255,-56.1587769959889,-56.1587708761661,-56.1587606642329,-56.1587511226454,-56.1587463501841,-56.1587358014105,-56.1587265833231,-56.1587180489217,-56.158708180499,-56.15869354295,-56.1586829741661,-56.1586751401259,-56.1586669659102,-56.1586605192522,-56.1586567906626,-56.1586523950624,-56.1586462919148,-56.1586418963145,-56.1586385112354,-56.1586354996823,-56.158634165661,-56.1586331918254,-56.1586339622227,-56.1586336720731,-56.1586330217377,-56.1586320312269,-56.1586303903806,-56.1586297400452,-56.158630473757,-56.1586336220473,-56.1586336720731,-56.1586381543847,-56.1586498170662,-56.1586590718391,-56.1586703743347,-56.1586861257915,-56.1586943500329,-56.1586995160305,-56.1587053823893,-56.1587160045341,-56.1587235617648,-56.1587259896837,-56.1587225879293,-56.1587164647714,-56.158706239498,-56.1586874964984,-56.1586759171933,-56.1586670592917,-56.158662323516,-56.1586606459842,-56.1586596554734,-56.1586590218133,-56.1586587149884,-56.158660132386,-56.158661192933,-56.158659195236,-56.1586575177042,-56.1586578945653,-56.1586582714263,-56.1586590218133,-56.1586591085247,-56.1586557401208,-56.1586534155887,-56.1586589751225,-56.158669013633,-56.1586732191352,-56.1586756670643,-56.1586812432734,-56.1586843548782,-56.158686782797,-56.1586912984592,-56.1586961542968,-56.1586978818544,-56.1586955239717,-56.1586900844998,-56.1586887504784,-56.1586877933181,-56.1586881701792,-56.1586892307261,-56.1586916586449,-56.1586951304354,-56.1586985855506,-56.1587037515482,-56.1587205969025,-56.1587339871415,-56.1587432585897,-56.1587532437393,-56.1587632488992,-56.158768431572,-56.1587729305589,-56.158781568347,-56.1587853469624,-56.1587936245647,-56.158807031479,-56.1588166964635,-56.15882461388,-56.1588349458751,-56.1588435469776,-56.1588493799859,-56.1588655416542,-56.1588806594508,-56.1588926989932,-56.1588992323627,-56.1589123324521,-56.158921653926,-56.1589275369601,-56.1589317124468,-56.1589328230196,-56.1589321893594,-56.1589305651885,-56.1589313722714,-56.1589338001902,-56.1589410505961,-56.1589524264629,-56.1589589765076,-56.1589631153087,-56.1589717497617,-56.1589772759451,-56.1589810712357,-56.1589862872591,-56.1589883583272,-56.1589918134424,-56.1589980199766,-56.1590025022883,-56.1590039063457,-56.1590040264076,-56.1590037162477,-56.1590030692473,-56.1589963291046,-56.1589913031793,-56.1589937477734,-56.1589999409673,-56.1590085253945,-56.1590205315864,-56.1590369834044,-56.1590445439703,-56.1590503736434,-56.1590620730104,-56.1590772108174,-56.1590837608621,-56.1590937493467,-56.1591013232528,-56.1591061457399,-56.1591119954234,-56.1591175216067,-56.159128177102,-56.1591378054009,-56.159150511954,-56.1591638855177,-56.1591782862779,-56.1591961421533,-56.1592074813346,-56.1592184936806,-56.1592260709217,-56.1592353590451,-56.1592432764617,-56.1592553160041,-56.1592659548242,-56.1592772940054,-56.159294789695,-56.1593171078718,-56.1593215718406,-56.1593287905635,-56.15934014642,-56.1593521692872,-56.1593631666254,-56.1593786279326,-56.1593893001031,-56.1593985865591,-56.1594106261015,-56.1594209564291,-56.159429235699,-56.1594374949585,-56.1594474667679,-56.1594567532238,-56.1594743006067,-56.1594839472484,-56.1594904806179,-56.1594973558302,-56.1595223937429,-56.1595481170091,-56.1595728130788,-56.1596026568033,-56.1596126102699,-56.1596229239223,-56.1596407964729,-56.1596507666148,-56.1596610802671,-56.1596706918908,-56.1596830582684,-56.1596896083131,-56.1596920362319,-56.1596903603676,-56.1596784408871,-56.1596671884173,-56.1596596978875,-56.159654943769,-56.1596553206301,-56.1596591175883,-56.159665667633,-56.1596725428453,-56.1596763398035,-56.1596846174058,-56.1596925364899,-56.1596973606445,-56.1597042358569,-56.1597138641558,-56.1597248614941,-56.1597334475888,-56.1597464959849,-56.1597691760149,-56.1597791461567,-56.1597860213691,-56.1597946424819,-56.1598067003671,-56.1598115228542,-56.1598163636841,-56.159821204514,-56.1598277895767,-56.1598302008203,-56.1598319450531,-56.1598382049482,-56.1598430974714,-56.159845885576,-56.1598479899946,-56.1598501461065,-56.1598505563181,-56.1598502828437,-56.159846949458,-56.1598439579151,-56.1598447099697,-56.1598451218487,-56.1598438228455,-56.1598418735068,-56.1598395990005,-56.1598396690366,-56.1598414816381,-56.1598415850247,-56.1598416383856,-56.1598434176365,-56.1598448367017,-56.1598463091277,-56.1598495591372,-56.1598513734062,-56.1598524689712,-56.1598511349499,-56.1598477998965,-56.159846826061,-56.1598458522254,-56.1598441930364,-56.1598425171721,-56.1598425521902,-56.1598446732841,-56.1598481450746,-56.1598519770508,-56.1598554838594,-56.1598542015314,-56.1598509014961,-56.1598491753302,-56.1598431986295,-56.1598451784904,-56.1598523727948,-56.1598576360171,-56.1598491555016,-56.1598619346001,-56.159867014092,-56.1598691289393,-56.1598672455871,-56.1598689470162,-56.1598657067379,-56.1598455052899,-56.1598452363377,-56.1598543809154,-56.1598391526625,-56.1598392321855,-56.1598290708713,-56.159831078875,-56.1598283849702,-56.1598137682107,-56.159815905998,-56.1598099765886,-56.1598124818946,-56.1598259272318,-56.1598558745012,-56.1599020251228,-56.1599894076244,-56.1600087593743,-56.1601160676556,-56.1601872007981,-56.160254703572,-56.1603216325797,-56.1603978227698,-56.1605018451855,-56.1605955012395,-56.1605880994113,-56.160546565381,-56.1605086386816,-56.1604759756447,-56.1604937128355,-56.160507131321,-56.1604970865241,-56.1605057952035,-56.1605042008766,-56.160495644493,-56.1604891055676,-56.1605612913535,-56.1606477907033,-56.1606497414131,-56.1607458661196,-56.1608026612503,-56.1611910004771,-56.1613091346957,-56.1613957170064,-56.1615676402879,-56.1616349093257,-56.1616228152555,-56.1615292827484,-56.1614373227688,-56.1613763770396,-56.1612703578292,-56.1611929610288,-56.1613346970508,-56.1612763028822,-56.1611581489146,-56.161082641542,-56.1611373196809,-56.1612308304764,-56.1612563426039,-56.1611630181589,-56.1611492424075,-56.1612359685296,-56.1615484245421,-56.1615549715814,-56.1615411019971,-56.1615883745323,-56.1615053995632,-56.1611508567469,-56.1611714526772,-56.1612354039995,-56.161388218587,-56.1617674044221,-56.1618343828061,-56.1619796270538,-56.1619677191268,-56.1618009416012,-56.161784365797,-56.1618021410653,-56.1618989676903,-56.1622664517929,-56.1622634666505,-56.1623027753522,-56.1623573492637,-56.162551383296,-56.1625763567795,-56.162370104688,-56.1622667204882,-56.1618991744694,-56.1618312995879,-56.1618766201829,-56.1618751443319,-56.1620220621763,-56.1620182624729,-56.1619308267633,-56.161911989387,-56.1620299472226,-56.162139858557,-56.1621561603552,-56.162351623961,-56.1624717824468,-56.1635062033852,-56.1636124888161,-56.1636980831365,-56.1637285406296,-56.1638072276733,-56.1638256001194,-56.163950915002,-56.1639553262423,-56.1638962207506,-56.1638225649681,-56.1636990586458,-56.1636845376346,-56.1637209769726,-56.1636837603766,-56.1634596842728,-56.1633386417341,-56.1631618434948,-56.1629962165725,-56.1629012500512,-56.1624956910001,-56.1624891682194,-56.1622989109421,-56.1622934090192,-56.1624169752327,-56.1624176543458,-56.1623048762044,-56.1622210235709,-56.1621296443562,-56.1620309747372,-56.162003408004,-56.161911674465,-56.1618929754635,-56.1618145818866,-56.1617601685782,-56.161699321472,-56.1616110850018,-56.1615435972825,-56.1610824940444,-56.1609625433422,-56.1609279231675,-56.161060199941,-56.1611278650809,-56.1611497023805,-56.1611076193571,-56.1610642297849,-56.1609536480326,-56.1608832542401,-56.1607671563137,-56.1607643984365,-56.1607327730645,-56.1606865068128,-56.1605503119158,-56.1604905588052,-56.1603831433882,-56.1603982579588,-56.1606027091683,-56.1606068872074,-56.1605542180496,-56.1603849784476,-56.1603750188304,-56.1604923828273,-56.1605925009777,-56.1605445133327,-56.1604815299692,-56.1604786244072,-56.1605357965138,-56.1606210366921,-56.1608678685807,-56.1611499706841,-56.1611556366743,-56.1611641083169,-56.1613938077695,-56.161430023819,-56.1615435383722,-56.1615550947106,-56.1614850275571,-56.1613343716235,-56.1611761298459,-56.1612407983864,-56.16139868526,-56.1615184257139,-56.1616351711615,-56.1618605920194,-56.1616887451405,-56.1617210493405,-56.1619318996866,-56.1619645286719,-56.1619447552299,-56.1620441601241,-56.16222095132,-56.1622821564289,-56.1623965908947,-56.1624997290153,-56.1626792499494,-56.1627436796935,-56.1626568928824,-56.162604401797,-56.1626372954739,-56.1626058185902,-56.162596182285,-56.1626771544024,-56.1627441663308,-56.1627867552443,-56.1629532296468,-56.1630380532088,-56.1631972963908,-56.1634518550853,-56.1634875372235,-56.1633645958858,-56.1633583677285,-56.1636133383208,-56.1638900886973,-56.1641587530543,-56.1643542060456,-56.1644618980938,-56.1644060861715,-56.1644147303384,-56.1645059240216,-56.1645897321177,-56.1645947982913,-56.1647720916224,-56.1648836609289,-56.1649506813291,-56.1650403647241,-56.1651126692106,-56.1651016794487,-56.1651413406497,-56.1653943238064,-56.1654849500501,-56.1655621828233,-56.1656396204618,-56.1655943625965,-56.1656555126838,-56.1657295915644,-56.1658272348759,-56.1658957026274,-56.1659816316033,-56.1659773994389,-56.1660336067496,-56.1660723525125,-56.1661347715356,-56.1661905048933,-56.1664133996619,-56.1667540321794,-56.1668970982728,-56.1670043626988,-56.16704369254,-56.1671894234655,-56.1672118132611,-56.1672092901663,-56.167201546366,-56.1672203751061,-56.1672916180668,-56.167404637475,-56.1674531089151,-56.1675308089512,-56.1676434577138,-56.1676909540178,-56.1677460548749,-56.1677603871933,-56.1678389486795,-56.1678784704503,-56.1679738657166,-56.1682667507048,-56.168299927425,-56.1682981381848,-56.1683185651561,-56.1683231850321,-56.1685314983651,-56.1686003974436,-56.1686419669975,-56.1686446853592,-56.1686080546466,-56.1683117948946,-56.1685422311521,-56.1686384570601,-56.1686899456407,-56.1687108885575,-56.1688245482401,-56.1688829792277,-56.1687812905872,-56.1687361124806,-56.1689221082295,-56.1689611875042,-56.1690200912761,-56.1691331051823,-56.1692189348027,-56.1692805705426,-56.169261564536,-56.1692816861993,-56.1693087707252,-56.1692846393105,-56.1692508513041,-56.1692167454532,-56.1691887010506,-56.1691732802042,-56.1691778635241,-56.1691986516565,-56.1692137100518,-56.169264462947,-56.1693374061402,-56.1693673087342,-56.1693972251505,-56.169418020208,-56.1694363941941,-56.1694646389969,-56.1694912743574,-56.1695087952597,-56.169520710723,-56.1695581252413,-56.1695667596191,-56.1695453808882,-56.1695481266199,-56.1695142418795,-56.169461838138,-56.1694360628087,-56.1693846157881,-56.1693739057359,-56.1693373720096,-56.1693232427328,-56.1692761026282,-56.1692704350823,-56.1692798673491,-56.1693016605213,-56.1693327339254,-56.1694269002413,-56.16947029998,-56.1694877931846,-56.1695376583125,-56.1695551722397,-56.1695835274612,-56.1696194774477,-56.1696469450538,-56.1697473451914,-56.1697957251423,-56.16982586241,-56.1698852009892,-56.1699284763234,-56.1699426608067,-56.1699778335554,-56.1701146082472,-56.1701803846268,-56.1703496622706,-56.1704082303817,-56.1704473991184,-56.1704713647676,-56.1704946084687,-56.1705445563646,-56.1705797082286,-56.1705948629906,-56.1706198886661,-56.1706747271649,-56.1707197742353,-56.1707606957719,-56.1707619913972,-56.1706724490607,-56.1706439028809,-56.170643745906,-56.1706515462873,-56.1706527537524,-56.1706871129135,-56.1709585105065,-56.1709541477281,-56.1708459783461,-56.1708497824756,-56.1708308042959,-56.1707844643117,-56.1707872237027,-56.1708200157619,-56.1708795848373,-56.1709466931202,-56.1709932300535,-56.1710003653302,-56.1710073626864,-56.1710370339045,-56.1710586170557,-56.1710433247565,-56.1710448587547,-56.1710639748053,-56.1710688695633,-56.1710844475229,-56.1710857549406,-56.1711166547382,-56.1711260206797,-56.1711419309047,-56.1711737540144,-56.171205715034,-56.171245077261,-56.1712700507397,-56.171309481888,-56.1713200567844,-56.171371261883,-56.1713605885067,-56.1713857293802,-56.1713754695836,-56.1713968185747,-56.1714089371534,-56.1714591005983,-56.1715221287284,-56.171569352564,-56.171597529374,-56.1716614416188,-56.1716864642777,-56.1717279390362,-56.1717930520986,-56.1717898190988,-56.1718041093021,-56.1717899962564,-56.1717745168459,-56.1717735441663,-56.1718120220655,-56.1718488875391,-56.171859777402,-56.1718551583457,-56.17185542406,-56.1718807320204,-56.1718997790222,-56.1719981599184,-56.1720149577462,-56.1719634986635,-56.1725405369609,-56.1725740799619,-56.1725690478213,-56.1724344897299,-56.1726014503428,-56.1727274278973,-56.1727265041233,-56.1726254410065,-56.1724820678973,-56.1726059033882,-56.1729563163569,-56.1729625867192,-56.1726002621593,-56.1725714857801,-56.1726230836857,-56.1727764615125,-56.172849916945,-56.1728772883069,-56.1728849857393,-56.1728479808577,-56.1728359905239,-56.172598346378,-56.1725336180615,-56.1719613268947,-56.1719599029575,-56.1720116191348,-56.1720151277016,-56.1720198845045,-56.1720271476163,-56.1720390396217,-56.172046273213,-56.1720534084154,-56.1720904212024,-56.1721034532141,-56.1721261070466,-56.172136829524,-56.1721487313634,-56.172155797702,-56.1721628837166,-56.1721867267465,-56.172197498408,-56.1721928990001,-56.1721811152097,-56.1721705304593,-56.172183739538,-56.1721814496737,-56.1721839166066,-56.1722376174638,-56.1722613817702,-56.1722888415415,-56.1723161832792,-56.1723352793083,-56.1723425915351,-56.1723582379817,-56.1723655502003,-56.1723938844256,-56.1724415605328,-56.1724488530652,-56.1727399509838,-56.1727511944398,-56.1727131499458,-56.1727105061178,-56.1724538458705,-56.1724564799459,-56.1724448928268,-56.1724120673657,-56.1723568635986,-56.1723083819953,-56.1722275757769,-56.1724660243868,-56.1724563615456,-56.1722147208797,-56.1721791926087,-56.1721340130743,-56.1721233693548,-56.1721114479024,-56.1720758704676,-56.1720724504611,-56.1720832515851,-56.1720727357722,-56.1720752912474,-56.1720706525357,-56.1720696502713,-56.1720495619009,-56.1720226742149,-56.17203858626,-56.1720522078672,-56.1720478150899,-56.1720494542686,-56.1720501012689,-56.1720480135256,-56.1720441798818,-56.1720420921384,-56.1720396625521,-56.1720423456025,-56.172026851821,-56.1720764118064,-56.1720766061832,-56.1720345189152,-56.1719801602588,-56.1719555825303,-56.1719027944252,-56.1718225152519,-56.1717222825717,-56.1717103260294,-56.1715960916896,-56.1715014792398,-56.1714308181981,-56.1712797336249,-56.1712041284515,-56.1711920321548,-56.1711866656035,-56.1712520333203,-56.1712589411664,-56.1712989183344,-56.1713611420668,-56.1714071809309,-56.1714497008303,-56.1715282721105,-56.1715548239928,-56.1715158230257,-56.1715390999626,-56.1716112026183,-56.1716912094674,-56.1717304763698,-56.1717903781439,-56.171821909188,-56.1718945265868,-56.1718881393288,-56.1719209969361,-56.1719572378387,-56.171993505817,-56.1720103139171,-56.1720938403926,-56.1720732826939,-56.1720220676907,-56.1719794155412,-56.1719697779331,-56.1720018090077,-56.172044793734,-56.1721257737306,-56.1721721094555,-56.1721282801744,-56.1721266000431,-56.1722320906442,-56.1723346967335,-56.1723603789523,-56.1723461116048,-56.1723562568849,-56.1724513160207,-56.1724356748126,-56.1723738779198,-56.1723418792747,-56.1722345782372,-56.1722038817813,-56.1721345060646,-56.1721958736618,-56.1722837689571,-56.1722650412675,-56.1722217055081,-56.1721238596818,-56.1720584432983,-56.1720791413825,-56.1721840742018,-56.1723216207447,-56.1724102060096,-56.1724968733847,-56.1725490912124,-56.1725192801305,-56.1725886218806,-56.1726492217123,-56.1727031902883,-56.1726942860013,-56.1728357831394,-56.1729045558805,-56.1729573330299,-56.172993989723,-56.1730266765805,-56.1730439571592,-56.1730384493187,-56.1730253992551,-56.1730037114034,-56.1730248423012,-56.1730390613009,-56.173040663794,-56.1730295764093,-56.1730174818385,-56.1730027042173,-56.1729957206157,-56.1729785684365,-56.1730102114223,-56.1730483510919,-56.173034438917,-56.172997054637,-56.1729603373677,-56.1729473423324,-56.1729360381693,-56.1729134498532,-56.1728994292891,-56.1728597054692,-56.1728174987021,-56.1727917053998,-56.1727990858728,-56.1728190294916,-56.1728216224955,-56.1728256529074,-56.1728269852612,-56.1728190845199,-56.1728151975153,-56.1728188860843,-56.1727911334382,-56.1727690989106,-56.1727165433035,-56.1726637253435,-56.1726834209659,-56.1725549962702,-56.1725650570419,-56.172545775234,-56.1725078873609,-56.1724745718459,-56.1724561056558,-56.1723732212435,-56.1723201071846,-56.1722570930199,-56.1722231838654,-56.1721655891623,-56.1721268191677,-56.1721134105858,-56.1720905337877,-56.1720649756067,-56.1720341980673,-56.172016792424,-56.1720031670638,-56.1719806137658,-56.1719384970451,-56.1719138209857,-56.171917529565,-56.1719472448899,-56.1719482003827,-56.171924603213,-56.1719092502952,-56.1718935905524,-56.1718661797492,-56.1717838539584,-56.1717541710047,-56.1717073044799,-56.1716611556797,-56.171576021774,-56.1714967051097,-56.171430599318,-56.1714038230177,-56.1713374927401,-56.1712035841538,-56.1711209632811,-56.1709416325935,-56.1707894218024,-56.1707451238034,-56.1706676254159,-56.1707557319097,-56.170771716643,-56.1707443278827,-56.1707255565471,-56.1705997288578,-56.1704594459273,-56.1703816207909,-56.1702735967468,-56.1702452985531,-56.1701037632262,-56.170008480323,-56.1700127005292,-56.1700198692263,-56.1700276660906,-56.1700977624016,-56.170097024017,-56.170092523292,-56.1701208592945,-56.170195501471,-56.1702293160974,-56.1703222446213,-56.1703280531647,-56.170329513918,-56.1703382634304,-56.1703743687174,-56.170407002214,-56.1704416867684,-56.17050247145,-56.1705327270536,-56.1706134502008,-56.170314792504,-56.170525612366,-56.1704564331521,-56.17045609246,-56.1703361243581,-56.1702577385683,-56.1702004173396,-56.1701875373637,-56.1701830540109,-56.1701371997367,-56.1702129838205,-56.1696110934102,-56.1694875997213,-56.1692089480092,-56.169148956633,-56.1691527832751,-56.1692175848347,-56.1686663635921,-56.1677767052187,-56.1671508202311,-56.1669910067145,-56.1667354294029,-56.1661254915039,-56.1660560366431,-56.1660009597756,-56.1659536649292,-56.1659096626008,-56.1658553862554,-56.1658458731985,-56.1658415773412,-56.1657857871812,-56.1657816977387,-56.1657772429611,-56.165765443112,-56.1657601857319,-56.1657497353423,-56.1657464903355,-56.1657132258895,-56.1657166399971,-56.1657220314791,-56.1657255007547,-56.1657438420913,-56.1657674296883,-56.1657852454934],&#34;lat&#34;:[-34.9173004958867,-34.9174575981897,-34.9177731075727,-34.9185708990141,-34.9187370449205,-34.9196708127963,-34.9198687861236,-34.9199378028936,-34.9212308377572,-34.921622640189,-34.9213877758121,-34.9207674889458,-34.9205944455847,-34.9194098168544,-34.9184831649012,-34.9175089329943,-34.9166269751746,-34.916380397142,-34.9162577273798,-34.9157294939018,-34.9147529962134,-34.9147469879273,-34.9147310353648,-34.9147093475132,-34.9146614194622,-34.9145827855753,-34.9145610243525,-34.9145753561536,-34.9144806239927,-34.914381161682,-34.9142804420134,-34.9144177504625,-34.9152292854949,-34.9161530887585,-34.9165996957475,-34.9170171843904,-34.9170172477564,-34.9170084765662,-34.9173046893307,-34.9175188597839,-34.9177558186563,-34.917883431136,-34.9179700124549,-34.9181887252507,-34.9184154169275,-34.9182452923915,-34.9175947054883,-34.9175408978328,-34.9175635813488,-34.9175727552191,-34.9175958176106,-34.9175973135779,-34.9177166247676,-34.9179690652826,-34.9183545336634,-34.9185127023339,-34.9186228604736,-34.918767528076,-34.9188869320004,-34.9190402944267,-34.9191939336624,-34.919293454988,-34.9193659218874,-34.9193879784256,-34.9193712717868,-34.9193264620106,-34.9192771699227,-34.9192413547853,-34.9191830080277,-34.9191514684286,-34.9191199655151,-34.9191020229283,-34.9190840970168,-34.9190886393594,-34.9190796647309,-34.9190122699737,-34.9189718724731,-34.9189449319124,-34.9189179313209,-34.9188594078055,-34.9188324705799,-34.9188100223361,-34.9188236226835,-34.9188281450158,-34.9188551181797,-34.9188870220469,-34.9188916544359,-34.9188918111834,-34.9188693729447,-34.9188425691213,-34.9188293356298,-34.918811579806,-34.9188072375666,-34.9188118532804,-34.9188299993054,-34.9188481520006,-34.9188709470899,-34.9188800584555,-34.9189026834572,-34.9189253284691,-34.9189389454918,-34.9189480135017,-34.9190111694062,-34.9190652239501,-34.9191192318033,-34.9191687573449,-34.919195727921,-34.9192408078366,-34.9192722106985,-34.9193080491813,-34.9193709849722,-34.9194520434428,-34.9195196949991,-34.9195829609603,-34.9196235185436,-34.9196909599915,-34.9197584548004,-34.9197852953093,-34.9197987155638,-34.9198437387835,-34.9198978333481,-34.9199247005375,-34.9199380907765,-34.9199875329418,-34.9200505754544,-34.9200912297542,-34.9201408386722,-34.9202038411641,-34.920221660354,-34.9202529164736,-34.9202706222715,-34.9202839091239,-34.920315321991,-34.9203376334976,-34.9203599683496,-34.9204228841302,-34.9204901488203,-34.9205439032095,-34.9205795282489,-34.9205837137408,-34.9205653476023,-34.9206010193324,-34.9206773286871,-34.9207672017036,-34.9207798208953,-34.9207801861338,-34.9208478193809,-34.9208839805203,-34.9209326201949,-34.9209909879762,-34.9211736637412,-34.9212314087521,-34.9212664837142,-34.9212127899011,-34.9212970203255,-34.9212606027299,-34.9212003780856,-34.9212128205209,-34.9212570338603,-34.9213424892583,-34.9213924095896,-34.9214646456527,-34.9215156734507,-34.9216511101027,-34.9217118812772,-34.9218357875604,-34.921990493639,-34.9220304949369,-34.9219551429236,-34.9219774615482,-34.9220837570605,-34.9221330548708,-34.9221878542392,-34.9222473264222,-34.9222607681289,-34.9224689493649,-34.9225844454446,-34.9226539101355,-34.9229101270997,-34.9229932830254,-34.9230008360778,-34.9230021232966,-34.9231346512518,-34.9232547817331,-34.9233185658605,-34.9234881415428,-34.9236454996686,-34.9237557112772,-34.9235651107046,-34.9235861682555,-34.9237888066857,-34.9241001527648,-34.9241972838645,-34.9243777094909,-34.9243767044975,-34.9244065629807,-34.9244218881555,-34.9244360736687,-34.9244550788404,-34.9245045260501,-34.9245410334565,-34.924703351723,-34.924880401552,-34.9251223129713,-34.9251555712995,-34.9251882497179,-34.9252761420249,-34.9252535253975,-34.9251275693365,-34.9251176120867,-34.9252879062902,-34.9253491696687,-34.9253560071602,-34.9253689721646,-34.9253741274532,-34.9253739132454,-34.9253825458173,-34.925373224054,-34.9253781792178,-34.9253881609738,-34.9254226751069,-34.9254280099416,-34.9254334753473,-34.9254465333712,-34.9254545745354,-34.9254765196701,-34.9254750919923,-34.9255034920498,-34.9255275785433,-34.9255301234207,-34.9255400398804,-34.925584180439,-34.9255648439215,-34.9255650464645,-34.9255452710617,-34.9254419393677,-34.9253861564142,-34.925354502253,-34.9253549072804,-34.9253625082874,-34.9253624049008,-34.9253623515399,-34.9253622981791,-34.9253667037845,-34.9253711394054,-34.9253710393538,-34.9253754416241,-34.9253752915467,-34.9253752048354,-34.925375121459,-34.9253660334388,-34.9253614577456,-34.9253569254082,-34.9253568353618,-34.9253521963026,-34.9253566686091,-34.9253611542558,-34.9253791502034,-34.9254016651483,-34.9254196744361,-34.9254331747319,-34.9254511640094,-34.9254781545959,-34.9254871425645,-34.925491618206,-34.9254960204764,-34.9255004327519,-34.9255003927313,-34.9255048383574,-34.9255092973236,-34.92551376296,-34.9255226975678,-34.925527149864,-34.9255315754797,-34.925536034446,-34.9255314921034,-34.925522457444,-34.9255089104575,-34.9255043847901,-34.9254998657929,-34.9254998291073,-34.9254997990918,-34.9254952834296,-34.9254862654455,-34.9254817464483,-34.9254772341211,-34.9254636837996,-34.925454639135,-34.9254456078107,-34.9254320808344,-34.9254230728555,-34.9254140782167,-34.9254141048971,-34.9254141549229,-34.9254187006006,-34.925423229603,-34.9254232462782,-34.9254142749848,-34.9254008247149,-34.925391826741,-34.925382812092,-34.9253737907728,-34.9253647827938,-34.9253602804718,-34.9253422811891,-34.9253287742233,-34.925315243912,-34.9252927056217,-34.9252746729885,-34.9252656516693,-34.9252430866987,-34.9252250373902,-34.9252114937387,-34.9251934377601,-34.9251798907736,-34.9251753684413,-34.9251618014444,-34.9251482344476,-34.9251482177723,-34.9251481910919,-34.9251526267128,-34.9251570289832,-34.925170405882,-34.9251793304846,-34.9251792804588,-34.925183732755,-34.9251837027395,-34.9251971763549,-34.9252151522922,-34.9252286492529,-34.9252466685459,-34.925273699153,-34.925291721781,-34.9253097444091,-34.9253277503619,-34.9253412539927,-34.9253547742988,-34.925386320568,-34.9254088521882,-34.9254313871433,-34.9254584310906,-34.9254809760509,-34.9254900007052,-34.9255035543618,-34.9255080967044,-34.9255171380339,-34.925530655005,-34.92555317662,-34.9255802439126,-34.9256118268674,-34.925638890825,-34.9256524211362,-34.9256569501386,-34.9256614724709,-34.9256704837849,-34.925688506413,-34.9257155470252,-34.9257335729883,-34.9257561279538,-34.9257741739273,-34.9257921965553,-34.9258237128091,-34.9258461977384,-34.9258642036912,-34.9258687126833,-34.9258777306675,-34.9258957532955,-34.9259137659184,-34.9259272595441,-34.9259407498347,-34.9259497378034,-34.9259542067748,-34.9259631780682,-34.9259676537097,-34.925967607019,-34.9259675403179,-34.9259719792739,-34.92597643157,-34.9259763782092,-34.9259763348535,-34.9259808038249,-34.9259807738095,-34.9259807404589,-34.9259806704228,-34.9259806237321,-34.9259805770413,-34.9259715190365,-34.9259624610318,-34.9259669333382,-34.9259713656241,-34.9259847858786,-34.9259937271565,-34.9259982061331,-34.9259981794526,-34.9259891514633,-34.9259846291311,-34.9259891247829,-34.9259936070946,-34.9260025883931,-34.9260070773749,-34.9260070473594,-34.9260024850065,-34.9260023749497,-34.9260113429081,-34.9260247998481,-34.9260427424349,-34.9260651639983,-34.9260741386267,-34.9260831132552,-34.9261145294573,-34.9261279964026,-34.9261459656698,-34.926154923623,-34.9261683572177,-34.9261772751502,-34.9261906954047,-34.9261996333476,-34.9262041123242,-34.9262086113111,-34.9262130969578,-34.9262220849264,-34.9262265739082,-34.9262265505628,-34.9262220215604,-34.9262309728435,-34.9262353784489,-34.9262442963814,-34.9262487386724,-34.9262576866205,-34.9262711302203,-34.9262801015137,-34.9262935751291,-34.9263160600585,-34.9263295536842,-34.926352068629,-34.9263745835739,-34.9264015941706,-34.9264240991103,-34.9264466073851,-34.9264736246519,-34.926496152937,-34.9265231868791,-34.9265456984889,-34.9265636911015,-34.9265771647168,-34.9265861360102,-34.9265950872933,-34.9265995395895,-34.9266039918856,-34.9266039385248,-34.9266038851639,-34.9266082941044,-34.9266127330603,-34.9266171686812,-34.9266216043021,-34.9266260465931,-34.9266304988893,-34.9266349511854,-34.9266393868064,-34.9266438224273,-34.9266482547131,-34.926652690334,-34.9266616182717,-34.9266660238771,-34.9266704761733,-34.9266704394877,-34.9266703394361,-34.9266702327144,-34.926674591629,-34.9266789638839,-34.9266833628192,-34.9266923174374,-34.9267282526367,-34.9267597355399,-34.926777754833,-34.9267913051545,-34.9268048621462,-34.9268183857874,-34.9268318994234,-34.9268408773869,-34.9268543876878,-34.9268589100201,-34.9268634390225,-34.9268634890483,-34.9268680247208,-34.9268680914218,-34.9268636457958,-34.9268636758113,-34.926868224824,-34.9268638358938,-34.9268639259403,-34.9268639592908,-34.9268730373059,-34.9268821086509,-34.9269002079852,-34.9269273219686,-34.9269634305907,-34.9269950068754,-34.9270130361736,-34.9270355577885,-34.9271368210238,-34.9272079405838,-34.9272135991942,-34.9273674529286,-34.9275536284881,-34.9277109262897,-34.9277636272829,-34.9278200709864,-34.9278733752658,-34.9278710156256,-34.9278185159145,-34.9277131545976,-34.9276611776128,-34.9276621425243,-34.9277836707219,-34.9277650621308,-34.9277853984778,-34.9278764815459,-34.9278708249977,-34.9278697802796,-34.9278887907153,-34.9279278965257,-34.9280628579464,-34.928172911275,-34.9282770671079,-34.9283910092917,-34.928475953539,-34.9283771490985,-34.9284153709378,-34.9285191891424,-34.9286538694639,-34.9287847810639,-34.9289045805371,-34.929218012366,-34.9292943354093,-34.9294332659409,-34.9295629723344,-34.9296546174725,-34.9297883334107,-34.9298392266736,-34.9299486372731,-34.9300592127169,-34.9302162298403,-34.9302595858048,-34.9302749882561,-34.9303854028519,-34.9305610290072,-34.930632539189,-34.9307470036689,-34.9309146505613,-34.9309635321751,-34.9310217549468,-34.9310843216716,-34.9311472671669,-34.9312759417263,-34.9313192551361,-34.9313705682695,-34.9313836373924,-34.9313868892284,-34.9313637756354,-34.9313605968133,-34.9313935247076,-34.9314497368454,-34.9314913898347,-34.931487702402,-34.9315023994822,-34.931588950307,-34.9319882240543,-34.9320736961406,-34.9324247956433,-34.9325415323568,-34.9326232141976,-34.932628058651,-34.9326460979543,-34.9326596282656,-34.9326821832311,-34.9326866955582,-34.9326912212255,-34.9327092805392,-34.9327183185336,-34.9327273465229,-34.9327408968445,-34.932749934839,-34.9327544538362,-34.9327680008227,-34.9327725331602,-34.9327770621626,-34.932790605814,-34.9328086717978,-34.9328177131273,-34.9328267477867,-34.9328357824461,-34.9328493194275,-34.9328583440817,-34.932871874393,-34.9328854113743,-34.9328989450207,-34.9329079663399,-34.9329260023081,-34.9329350202923,-34.9329485439334,-34.9329710755536,-34.9329845958597,-34.9329936138438,-34.9330026284929,-34.9330206611261,-34.9330296757752,-34.9330431960813,-34.9330612153743,-34.9330747356804,-34.9330837369893,-34.9330927216229,-34.9330972039345,-34.9331016829111,-34.9331061485475,-34.9331106341942,-34.933119632168,-34.9331331391339,-34.9331376181105,-34.9331466127493,-34.9331556207282,-34.9331601363904,-34.9331691643797,-34.9331782057092,-34.9331962816981,-34.9332098320197,-34.9332188700142,-34.9332324036605,-34.9332414216446,-34.9332504362937,-34.9332639599349,-34.9332729745839,-34.933286491555,-34.933295502869,-34.9333090265102,-34.9333180478294,-34.9333270591434,-34.9333360704574,-34.9333540964205,-34.9333766313757,-34.933390161687,-34.9334081943202,-34.9334307159352,-34.933462238859,-34.9334892694661,-34.9335027831021,-34.9335298103741,-34.933538815018,-34.933547822997,-34.9335658389549,-34.9335838549129,-34.9335883572348,-34.933597375219,-34.9336064032083,-34.9336154211924,-34.9336334504906,-34.9336424651397,-34.9336514764537,-34.9336604844327,-34.9336739947336,-34.9336829993775,-34.9336920006864,-34.9337144922859,-34.9337279759064,-34.9337369672102,-34.9337549698279,-34.9337774781026,-34.9337909850685,-34.9338044953695,-34.9338270069793,-34.9338315026312,-34.9338495085839,-34.9338675011965,-34.9338900128063,-34.9339035131021,-34.9339215123848,-34.9339350126806,-34.9339395016623,-34.9339619965969,-34.9339799858744,-34.933997981822,-34.9340069764608,-34.9340339837225,-34.9340564953323,-34.9340745079552,-34.9340925239132,-34.9341150555333,-34.9341285791745,-34.9341511174647,-34.9341826637339,-34.9341916717129,-34.9342096810008,-34.9342321859404,-34.9342456895713,-34.9342546908802,-34.934277205825,-34.9342907094559,-34.9342997140998,-34.9343222357148,-34.9343267380367,-34.9343357426807,-34.9343492463115,-34.9343582476203,-34.9343672589344,-34.9343988085387,-34.9344078231878,-34.9344168378368,-34.9344438951243,-34.9344709524118,-34.9344844660477,-34.9344934640216,-34.9345024553253,-34.9345114366238,-34.9345204079172,-34.934529402556,-34.9345338948728,-34.9345518908205,-34.934574385755,-34.9345878927209,-34.9346058920036,-34.9346193956344,-34.9346283969433,-34.9346373949171,-34.934650901883,-34.9346643921736,-34.9346778891343,-34.9346913760899,-34.9347003573884,-34.9347093320169,-34.9347273146243,-34.9347408049149,-34.9347588041976,-34.9347723044934,-34.9347858014541,-34.9347993017499,-34.9348172976976,-34.9348262856662,-34.9348397759568,-34.9348532529072,-34.9348757278315,-34.9348802234833,-34.9348892181221,-34.9349072174048,-34.9349207076954,-34.934934197986,-34.9349521872635,-34.9349701865462,-34.934983683507,-34.9350016794546,-34.9350196820724,-34.9350376880251,-34.9350511849859,-34.9350646819466,-34.9350781789073,-34.9351051728288,-34.9351231754465,-34.9351321734203,-34.9351411680591,-34.9351591306562,-34.9351770932533,-34.9351950558504,-34.9352175140994,-34.935226502068,-34.9352399956937,-34.9352624839582,-34.9352759775838,-34.9352894712095,-34.9352984625132,-34.9353119494688,-34.9353254530996,-34.9353344610786,-34.9353434790628,-34.9353570293843,-34.9353660740489,-34.9353751087083,-34.9353841333625,-34.9353931446766,-34.9354021493205,-34.9354156529513,-34.9354246509251,-34.935433652234,-34.9354516615219,-34.9354651584826,-34.9354741597915,-34.9354831577653,-34.935496654726,-34.9355101450166,-34.9355191363203,-34.9355326232759,-34.9355596071922,-34.9355731008179,-34.9355820954567,-34.9356001014095,-34.9356226063492,-34.935631607658,-34.9356451146239,-34.9356586215898,-34.9356811398697,-34.9356856421917,-34.9356946501707,-34.9357216741076,-34.9357487047146,-34.9357622183506,-34.9357757319866,-34.9358027692638,-34.9358207952269,-34.9358388245251,-34.9358613661504,-34.9358839077757,-34.9359019337388,-34.9359199630369,-34.9359379923351,-34.9359650396174,-34.9359965925568,-34.9360146218549,-34.9360416591321,-34.9360686997443,-34.9360822200504,-34.9361002426784,-34.9361137596495,-34.9361407969266,-34.9361858568318,-34.936212894109,-34.9362309200721,-34.9362399347212,-34.9362624796816,-34.9362760033227,-34.9362895269638,-34.936303050605,-34.9363120685891,-34.9363210832382,-34.9363391058663,-34.9363526161672,-34.9363706354602,-34.9363931604103,-34.9364156987005,-34.9364472549749,-34.9364666713545,-34.9365093352585,-34.9365102455732,-34.9366094009716,-34.936629708979,-34.9366566791429,-34.9367446111562,-34.9367829370998,-34.9368437665503,-34.9370284503989,-34.937129820203,-34.9371793506125,-34.9372828213421,-34.9373367178653,-34.937364826963,-34.9374708644266,-34.9375144439215,-34.9375346529582,-34.9375946418284,-34.9376205630453,-34.9377128103813,-34.9377713875816,-34.9378163945848,-34.9378389359172,-34.9378615529108,-34.9378752744245,-34.9379093795884,-34.9379234982398,-34.9379033604431,-34.9378410351575,-34.9378392745198,-34.9379253323703,-34.9380676962317,-34.9381065136363,-34.9380982229166,-34.9380335504646,-34.9379546652977,-34.9377358954357,-34.93743155925,-34.9371475310229,-34.9367489786163,-34.9365058120202,-34.9364178989615,-34.9364202151543,-34.9363985184897,-34.9362587332525,-34.9359313864737,-34.9358729303324,-34.9358633633426,-34.9359142000511,-34.935929094644,-34.9359274540545,-34.9360948032567,-34.9361301786626,-34.9361124799974,-34.9361990496733,-34.9361385260303,-34.9361140474175,-34.9360869738312,-34.9359054083966,-34.935829769315,-34.9358168398402,-34.9356597699136,-34.935559101976,-34.9354753487388,-34.9354420060973,-34.9353418711673,-34.9353056559977,-34.9353347626615,-34.935253621617,-34.9352062198938,-34.9351044782966,-34.9350725502204,-34.9351763535308,-34.9351767017768,-34.9351681712751,-34.9351319047884,-34.9350378173679,-34.9349459209332,-34.9348627130261,-34.9348855167952,-34.9349089339722,-34.9350050656074,-34.9349730008453,-34.9350126284891,-34.9349698548227,-34.9348629919166,-34.9347937579387,-34.9347450902634,-34.934690869166,-34.9347238976902,-34.9347747003535,-34.9347932677742,-34.9347672159765,-34.9348641013637,-34.9348358124908,-34.934726645324,-34.934697471454,-34.9346705412939,-34.9345480972399,-34.934460993919,-34.9343634030999,-34.9342383749045,-34.934126537543,-34.9339856622412,-34.9338960833693,-34.9337058016001,-34.9335784850527,-34.9335766890088,-34.933610834677,-34.9335884239179,-34.9334996890313,-34.9334539424487,-34.9333615750006,-34.933141012527,-34.9330340729653,-34.9329615770024,-34.9324308433233,-34.9323437267721,-34.9322590780134,-34.9322179025378,-34.9322228622288,-34.9322634308281,-34.9324960734081,-34.9326875404097,-34.933217593782,-34.9333271463273,-34.933369502096,-34.9333538366468,-34.9333270382755,-34.9333184334055,-34.9332661003101,-34.9332444543252,-34.9327447742429,-34.932734006608,-34.9326671986736,-34.9326577064208,-34.9325786960185,-34.9325461119934,-34.9325367167865,-34.9324726189266,-34.9324748910507,-34.9325793383248,-34.9326572297017,-34.9328050039901,-34.932891731038,-34.9328969319575,-34.9329429445543,-34.9328468047575,-34.9328488813137,-34.9327847345058,-34.9326113542348,-34.9325479137526,-34.9324645216482,-34.932457722179,-34.9325619988289,-34.9326832408114,-34.9326682301561,-34.9326383792759,-34.9325628329295,-34.9325509948807,-34.932591343807,-34.9324567776258,-34.9324360304738,-34.9322464699441,-34.9321478079314,-34.9321608402543,-34.932096961405,-34.9320733583317,-34.932066379068,-34.9320053074191,-34.9315645742191,-34.9314316407492,-34.9312947790532,-34.9312449606143,-34.9311839377091,-34.9311117103397,-34.9310542013456,-34.9310617162045,-34.9310694740891,-34.9310912035495,-34.9310666668042,-34.9310246790586,-34.9309319723314,-34.9308688480388,-34.9307730661892,-34.9307261042757,-34.9306262979049,-34.9305787271212,-34.9304629777055,-34.9305454047203,-34.930563660537,-34.9305296074203,-34.9302145289032,-34.9301174816763,-34.9300625115184,-34.930139493468,-34.9300525716125,-34.929915905037,-34.9298526829265,-34.9298103286611,-34.929861586397,-34.929881257208,-34.9297977261744,-34.9298338222962,-34.9297413095838,-34.9296041812865,-34.92956315094,-34.9294500866318,-34.9294237256051,-34.9293307024531,-34.9293457850089,-34.9293462468192,-34.9293203962177,-34.929251825697,-34.9292349806671,-34.9291837893832,-34.9291245395113,-34.9290841166133,-34.9290338868229,-34.9289525067817,-34.928852590821,-34.9286918213323,-34.9286326670296,-34.9284887665476,-34.9283035936608,-34.9282422069537,-34.9280854018567,-34.9279061236659,-34.9278870552328,-34.9278855250455,-34.9278516598645,-34.9278362341243,-34.927851538036,-34.9278939854188,-34.9278728920755,-34.927825587974,-34.9277921258021,-34.9277263944584,-34.9276757402058,-34.9276533310535,-34.9276106824351,-34.9275496491611,-34.9274974429563,-34.9274628675428,-34.9273663820089,-34.9272386601728,-34.9271663830785,-34.9270988846084,-34.9270493430529,-34.9269443566974,-34.9269285924382,-34.9268772933494,-34.926740645401,-34.9266263947483,-34.9266068650965,-34.926628111243,-34.9266273013665,-34.9266034715952,-34.9265928299517,-34.9265830970597,-34.9265711693619,-34.9265237999368,-34.9264778692516,-34.9264484174714,-34.9264509086378,-34.9265442789698,-34.9265515278011,-34.9263910060345,-34.9263859859195,-34.9265242614984,-34.9265323561687,-34.9265039057633,-34.9263935266766,-34.9263801885073,-34.9263920704703,-34.9264043986597,-34.9264081534796,-34.9263970287299,-34.9264587854844,-34.9264777676177,-34.9264828511189,-34.9264609311637,-34.9264613660973,-34.9263708987298,-34.9263025467244,-34.9262531578484,-34.9262651650008,-34.9263345518573,-34.9263723507554,-34.9263562965436,-34.9262870429228,-34.9262270883911,-34.9261906538616,-34.9261950346393,-34.9262146337487,-34.9262339172846,-34.9262305399027,-34.9262212140129,-34.9262073724669,-34.9261931128641,-34.9261487353456,-34.9261478847798,-34.9261140603477,-34.9261117704096,-34.926086212192,-34.9260470286895,-34.9260052396542,-34.9260074385402,-34.9260000001257,-34.9260024038851,-34.9260330681097,-34.9260394427584,-34.9260444463344,-34.9260459596503,-34.9260399150333,-34.9260455927458,-34.926045774811,-34.9260417810918,-34.9260158104977,-34.9260201797043,-34.9259893876202,-34.9259631894618,-34.9259385273499,-34.9259143004481,-34.925910514349,-34.9259075958368,-34.925891475805,-34.9258804333089,-34.9258712710079,-34.9258691176708,-34.9258386298593,-34.9258228227705,-34.9257954640615,-34.9257805303019,-34.9257533195448,-34.92574299401,-34.9257316358173,-34.925730384231,-34.9257382664468,-34.9257349582525,-34.9257296674118,-34.9257141447695,-34.9257143324876,-34.9256636000854,-34.9256536469665,-34.925636713385,-34.9256131235049,-34.9256141047378,-34.9256107737414,-34.9255897610418,-34.9255639576945,-34.9255623502017,-34.9255326550878,-34.9255028894686,-34.9254983578368,-34.9255156609603,-34.9255219898692,-34.925521645276,-34.9255026889982,-34.9254856529471,-34.9254803391349,-34.9254903115725,-34.9255034783641,-34.9255144376192,-34.9256432140161,-34.9256525700469,-34.9256658092215,-34.9256814089507,-34.9256905626617,-34.9256938110184,-34.9257067792704,-34.9256831639295,-34.9256439534548,-34.9256383177478,-34.9256148352841,-34.9256098081846,-34.9256055738673,-34.9255117525649,-34.9255000285816,-34.9254896603944,-34.9254391833953,-34.92542382864,-34.9254238773234,-34.9254376383131,-34.9254437178574,-34.9254262337897,-34.9254094776575,-34.9253752050034,-34.925366519762,-34.9253528399077,-34.9253411919718,-34.9253294466786,-34.925331616514,-34.9253463731732,-34.9254199455381,-34.9254485686359,-34.9254634794182,-34.9254519936968,-34.9254521640352,-34.9254338221389,-34.9254466279932,-34.9254401205902,-34.9254371092459,-34.9254206289006,-34.9253764806332,-34.9252639816858,-34.9252415354207,-34.9252203281093,-34.9252207578876,-34.9252553629998,-34.925291797269,-34.9253225980542,-34.9253178710531,-34.9253328465556,-34.9252441542879,-34.9252108286455,-34.9252089670163,-34.9251931985326,-34.9251950520539,-34.9251734960319,-34.9251316390445,-34.9251318903206,-34.9251133537055,-34.9250996089734,-34.9250731638031,-34.9250400326886,-34.9250382034682,-34.9249526763673,-34.9248195764066,-34.9247330281549,-34.9248280544094,-34.9249223165583,-34.9249497087914,-34.9250849453717,-34.9251575872399,-34.9251662811849,-34.9251398279122,-34.9251371807308,-34.9250842899019,-34.9249509392876,-34.9249934852,-34.9249612037887,-34.9249205358175,-34.924825326618,-34.9247796406406,-34.9247836235198,-34.9248115501004,-34.9248097773949,-34.9247741096324,-34.9247674586121,-34.9247771721655,-34.9247559637595,-34.924806457896,-34.9247124434787,-34.9246174205382,-34.9245599814115,-34.924565882428,-34.924565914843,-34.9245532306036,-34.9245533116394,-34.9245435657515,-34.924543614372,-34.9245291738077,-34.9245341601947,-34.924528437442,-34.9245265514637,-34.9245256530378,-34.9245325578087,-34.9245375036773,-34.9245317890156,-34.9245250057773,-34.9245093021545,-34.9244984471737,-34.9244866208431,-34.9244739771047,-34.9244651458421,-34.9244563469879,-34.924438102002,-34.9244402229327,-34.9244296352994,-34.9244308010716,-34.9244240745258,-34.9244064930115,-34.9243879887486,-34.9243704072328,-34.9243911701073,-34.9243807201376,-34.9243650975185,-34.9243925472685,-34.9243387503278,-34.9243375117825,-34.9243639407679,-34.9243416230919,-34.9243161735642,-34.924285729588,-34.9242384891485,-34.9241695468735,-34.9241417901216,-34.9241353625341,-34.9240762566543,-34.9240522288909,-34.924112746043,-34.9240978112215,-34.9240965238839,-34.9240905742551,-34.9240934315814,-34.9240833939848,-34.9240686779111,-34.9240589563287,-34.9240402738329,-34.9240226599215,-34.9240108740975,-34.9239922564258,-34.9239793858085,-34.9238146435607,-34.9237696941594,-34.9237172795469,-34.9237010014058,-34.9236829687726,-34.9236739541235,-34.9236649461445,-34.9236469268515,-34.9236379188725,-34.9236289108936,-34.9236153839174,-34.923560284244,-34.9234631918882,-34.9232335366341,-34.9232175914477,-34.9231615467027,-34.9230848270174,-34.9230827274419,-34.9228734015767,-34.9227578900641,-34.9226864758291,-34.922703095289,-34.9226589546419,-34.9225436445209,-34.9224983182818,-34.9218146355318,-34.9217147421728,-34.921670362961,-34.9216229288917,-34.9215749238272,-34.9215077567147,-34.9215081810702,-34.9214896118919,-34.9214952970175,-34.9214985303484,-34.9214636427015,-34.9214337032889,-34.9213987933154,-34.9213938897157,-34.9213610982045,-34.9212958147238,-34.9212942759667,-34.9212847248001,-34.9212285703116,-34.9212123412355,-34.9212017747987,-34.921180441045,-34.9211564098738,-34.9211133629523,-34.9212067790514,-34.921213778214,-34.9212134292401,-34.9212235229372,-34.9212416298586,-34.9212691070269,-34.9212673605875,-34.9212439908413,-34.9213086919061,-34.9213082610293,-34.9213186339233,-34.9213284389109,-34.9213116142846,-34.9213435912627,-34.9213519313594,-34.921361735783,-34.921311759565,-34.9212999706541,-34.9213332988667,-34.9213025769099,-34.9213161244522,-34.921312670226,-34.9212375601234,-34.9212252284851,-34.921204178857,-34.9211858786858,-34.9211855834702,-34.9211991953288,-34.9211221650945,-34.9211084367548,-34.9210956637277,-34.9210966007224,-34.9210810185538,-34.9210907535479,-34.921069691445,-34.9209819505241,-34.9209257733054,-34.9207616328705,-34.9206055400251,-34.9205137612913,-34.920447284807,-34.9204477529474,-34.9204103458966,-34.9204038943367,-34.920367749029,-34.9203271414199,-34.9203181434461,-34.9203046564905,-34.9202686612602,-34.9202505752661,-34.9202144833193,-34.9201874360369,-34.9201514107911,-34.9201198945374,-34.9201019085949,-34.9200658700089,-34.9200523963935,-34.9200117487638,-34.9199710844589,-34.919912530928,-34.9198855903674,-34.9198541408147,-34.9198541775003,-34.9198496985237,-34.9198452528977,-34.9198452929183,-34.9198318793339,-34.9197959374644,-34.9197599522393,-34.9197238769677,-34.9196652333903,-34.919629171459,-34.9196111321556,-34.9196021141715,-34.9195931228678,-34.9195615832687,-34.9195435473004,-34.9195301003655,-34.9195677559779,-34.9196069199833,-34.9195451166847,-34.919464634826,-34.9194291096575,-34.9193676554611,-34.9193189381304,-34.9192514366515,-34.9192154714366,-34.9192155214624,-34.9191841953067,-34.9191572981018,-34.9191349332343,-34.9191215029746,-34.9190856044609,-34.9190541615783,-34.9190361689657,-34.9190452436458,-34.9190678486371,-34.9190679320134,-34.9190769900182,-34.9190905503449,-34.9190951160329,-34.9190817091186,-34.9190682555136,-34.9190547252023,-34.919045630512,-34.9190276012138,-34.9190276645798,-34.9190367192495,-34.9190547885683,-34.9190413416334,-34.9189784658734,-34.9189962043902,-34.9189921929528,-34.9189968253419,-34.9190015611176,-34.9189741272333,-34.9190052884348,-34.9189418819605,-34.9188590127797,-34.9188174555816,-34.918855277959,-34.9188326035919,-34.9187028592209,-34.9186099790841,-34.9185473552884,-34.9183729618873,-34.9182827511242,-34.91828030622,-34.9183750139543,-34.9186202767445,-34.918567390538,-34.9185180217439,-34.918441695714,-34.9184270563697,-34.9181901292284,-34.9178519080232,-34.9177573427757,-34.9176671862797,-34.9175799505216,-34.9174246275274,-34.917374028424,-34.9172642740028,-34.917036409882,-34.9167653311699,-34.9166103891705,-34.9165015108537,-34.9164720265719,-34.9164089240283,-34.9163728454216,-34.9163366934438,-34.916287031165,-34.9162373622162,-34.9161290330147,-34.916083883063,-34.9158938396027,-34.9149275700493,-34.9148165933465,-34.9146869913436,-34.9146863530817,-34.9144616009076,-34.9143200367357,-34.9138210460601,-34.9137096619498,-34.913669532806,-34.9132591029183,-34.9129659517327,-34.9126070099506,-34.912508185651,-34.9121989881819,-34.9120690443231,-34.9116892512746,-34.9116062657983,-34.9115585864656,-34.9115063919326,-34.9114625853717,-34.9114527080615,-34.9114246100568,-34.9113852985392,-34.9113545273466,-34.9113879728906,-34.9114329433537,-34.9117564170517,-34.9124968720334,-34.9126266505718,-34.9127490336167,-34.9135105269924,-34.9135663441432,-34.9136921330929,-34.9139148575009,-34.9142352330002,-34.9143614547627,-34.9144065313432,-34.9149647065164,-34.9150311360174,-34.915211661241,-34.9153278241591,-34.9159419496935,-34.9168564400642,-34.9173004958867]}]],[[{&#34;lng&#34;:[-56.122563106226,-56.1225028351426,-56.1224934169521,-56.1225311297349,-56.12250767764,-56.1226135589124,-56.1226373912033,-56.1227233221868,-56.1227899165312,-56.1227991212783,-56.122620982741,-56.122563106226,-56.122563106226],&#34;lat&#34;:[-34.9041560649154,-34.9041291610404,-34.904174250961,-34.9042057138539,-34.9042463298006,-34.9043136912073,-34.904385748369,-34.9044170995376,-34.9043944128375,-34.9043853781781,-34.904182973793,-34.9041560649154,-34.9041560649154]}],[{&#34;lng&#34;:[-56.1227976080722,-56.1227918183461,-56.1227237946651,-56.1227097619745,-56.1226936759671,-56.1226373475402,-56.1226092910802,-56.1225937838396,-56.1225831712907,-56.1225787928143,-56.1225885270311,-56.1226137911044,-56.1226283743657,-56.1226451592254,-56.1226592660537,-56.1227197546027,-56.1227497457699,-56.1227709029345,-56.1227919184521,-56.1227976080722],&#34;lat&#34;:[-34.9047511676663,-34.9047447007008,-34.9047099386171,-34.9047034477993,-34.9046911334997,-34.9046837564835,-34.9046749816319,-34.9046695012066,-34.9046729097843,-34.9046868189528,-34.9047020705938,-34.9047108871178,-34.9047319035662,-34.9047448037851,-34.904744324756,-34.9047828939965,-34.9047891236877,-34.904788695536,-34.9047872362653,-34.9047511676663]}],[{&#34;lng&#34;:[-56.1218108782828,-56.1219133778111,-56.121974936225,-56.1220090404801,-56.1219682861287,-56.1218876912305,-56.1218108782828,-56.1218108782828],&#34;lat&#34;:[-34.9047662195877,-34.9049462624405,-34.9049506296928,-34.9049235090393,-34.9048019146633,-34.9047299875686,-34.9047662195877,-34.9047662195877]}],[{&#34;lng&#34;:[-56.1247370940738,-56.1247420032723,-56.124800860293,-56.1248351513111,-56.1248637327179,-56.1247307841529,-56.1247370940738,-56.1247370940738],&#34;lat&#34;:[-34.9065893248098,-34.9066253683983,-34.9066387536348,-34.906566563071,-34.9065259354516,-34.9065442699071,-34.9065893248098,-34.9065893248098]}],[{&#34;lng&#34;:[-56.1246630759007,-56.1246707798739,-56.1247245542734,-56.1247669094504,-56.1248122728454,-56.1248072102345,-56.124804802326,-56.1246910836784,-56.1246318664719,-56.1246630759007,-56.1246630759007],&#34;lat&#34;:[-34.9067427305917,-34.9067967951408,-34.9068237140236,-34.9068100953334,-34.9067784423425,-34.9066973288435,-34.9066928265216,-34.9066344997743,-34.9067157600156,-34.9067427305917,-34.9067427305917]}],[{&#34;lng&#34;:[-56.1248830293363,-56.1248395002206,-56.1248081640597,-56.124848911741,-56.1248830293363,-56.1248830293363],&#34;lat&#34;:[-34.9066701114735,-34.9066386635884,-34.9066747922208,-34.9066927248025,-34.9066701114735,-34.9066701114735]}],[{&#34;lng&#34;:[-56.1245873101597,-56.1245613234244,-56.1245740699981,-56.124665096943,-56.1247071719755,-56.1247431705409,-56.1246928312463,-56.1246611682502,-56.1245873101597,-56.1245873101597],&#34;lat&#34;:[-34.9068871267272,-34.9068871867581,-34.9069141990224,-34.9069365238692,-34.9069409344772,-34.9068687405783,-34.9068463206824,-34.9068869566394,-34.9068871267272,-34.9068871267272]}],[{&#34;lng&#34;:[-56.1256010025402,-56.1256004633382,-56.1256176948888,-56.1256316572797,-56.1256431792541,-56.1256602331739,-56.1256777792092,-56.125677703684,-56.1256506452155,-56.1256265308726,-56.1256171656455,-56.1256010025402],&#34;lat&#34;:[-34.9073621648949,-34.9074130232803,-34.9074300867455,-34.9074273326499,-34.9074156781007,-34.9074121986031,-34.9074029060611,-34.9073846266297,-34.9073669141658,-34.9073733035164,-34.9073607161936,-34.9073621648949]}],[{&#34;lng&#34;:[-56.1243810904736,-56.1244976906073,-56.1245002852788,-56.1242823528855,-56.1243810904736,-56.1243810904736],&#34;lat&#34;:[-34.9075816699209,-34.9075814014491,-34.9075408321931,-34.9075052788573,-34.9075816699209,-34.9075816699209]}],[{&#34;lng&#34;:[-56.1336581784706,-56.1337426724101,-56.1337504429846,-56.1336532022937,-56.1336581784706],&#34;lat&#34;:[-34.9121192075116,-34.9121280217837,-34.9121009611354,-34.9120651363074,-34.9121192075116]}],[{&#34;lng&#34;:[-56.1323914899973,-56.1323533328633,-56.1323044717549,-56.1321848804562,-56.1321566284924,-56.1321853862627,-56.1322972272513,-56.1323398221829,-56.1323954644754,-56.132440139169,-56.1323806962946,-56.1323914899973],&#34;lat&#34;:[-34.9125328607042,-34.9125180878639,-34.9125365042307,-34.9125851222485,-34.9126130683462,-34.912635450813,-34.9126345435132,-34.9126212002019,-34.9126471864321,-34.9126330049687,-34.9125745789424,-34.9125328607042]}],[{&#34;lng&#34;:[-56.1371859109138,-56.1371952557332,-56.1372713817881,-56.1372894299363,-56.1372298135556,-56.137189865761,-56.1371859109138],&#34;lat&#34;:[-34.9120313997604,-34.9120629260193,-34.9120636066998,-34.9119918143049,-34.9119727061572,-34.911982287,-34.9120313997604]}],[{&#34;lng&#34;:[-56.1330346504511,-56.1330040978891,-56.132954281753,-56.1329705673578,-56.1330936814242,-56.1330961198638,-56.1330444305424,-56.1330467972631,-56.1330346504511],&#34;lat&#34;:[-34.9127174265531,-34.9127084173255,-34.9127400835773,-34.912804824781,-34.9128150857296,-34.9127801315459,-34.9127720861083,-34.9127439551366,-34.9127174265531]}],[{&#34;lng&#34;:[-56.1431803137475,-56.1433359612034,-56.1432053519603,-56.1422092119433,-56.1418087550329,-56.141650660166,-56.1406989726897,-56.1399416521201,-56.139301045076,-56.1390474813103,-56.1388192632755,-56.1384029752517,-56.13768342649,-56.1366205493424,-56.1366172923615,-56.1365678633145,-56.1366841988348,-56.136696038274,-56.1368763045753,-56.1371820689324,-56.1360547942347,-56.1349381350116,-56.133814497264,-56.1325183141849,-56.1334846620851,-56.1347567167614,-56.1356678304588,-56.1365566883615,-56.1365897914404,-56.1364476785924,-56.1362381452151,-56.1343881483329,-56.134241221003,-56.1332823010557,-56.1328465063052,-56.1314666480103,-56.1291462355344,-56.1290654462154,-56.1288219874245,-56.1299472570548,-56.1302696006623,-56.128899391465,-56.1288321926876,-56.1287980987702,-56.1287408922683,-56.1286453666634,-56.1285345858708,-56.1283901313719,-56.1283718619499,-56.1283407258923,-56.1282886205735,-56.1282025435446,-56.1268868038898,-56.1267220525716,-56.1265147181002,-56.1261680826825,-56.1258018502662,-56.1256989680314,-56.125582634754,-56.1255074922442,-56.1256205670521,-56.1255008978243,-56.1254452176365,-56.1253229139968,-56.1252102942266,-56.1250529793886,-56.124329251437,-56.1237334555499,-56.122765351129,-56.1214816005353,-56.1204271157994,-56.1201104401865,-56.1201039451875,-56.1188809805929,-56.1193950390393,-56.1199484145114,-56.120036775345,-56.1200699270964,-56.1200797121428,-56.1196585282608,-56.1194913487087,-56.1185090354379,-56.1180329032177,-56.1174506562714,-56.1171659469445,-56.1166700937153,-56.1168063706635,-56.1173678935885,-56.1192534460162,-56.1187381736103,-56.1182038447099,-56.1176763193182,-56.1171671033692,-56.1168586376189,-56.1173157892896,-56.1172690225982,-56.1172601255726,-56.1168968414711,-56.1178505598461,-56.118860097436,-56.1194745600503,-56.1194906416774,-56.1195108320901,-56.1195306756573,-56.1195457300879,-56.1195659205006,-56.1195888723374,-56.1196011920244,-56.1196227764894,-56.1196347760111,-56.1196518981748,-56.1196731424644,-56.1196957541258,-56.1197084206582,-56.1197430118311,-56.1197769026428,-56.1197998544797,-56.1198224661411,-56.1198416426976,-56.1198488530828,-56.1198574308399,-56.1198721651054,-56.1198851851535,-56.1198985653874,-56.1199187824805,-56.1199379723773,-56.119957162274,-56.1199784065635,-56.119990386075,-56.1200112901891,-56.1200318341175,-56.1200479490951,-56.1200640440623,-56.1200845879907,-56.1201037845575,-56.1201205665458,-56.1201400832777,-56.1201544573574,-56.1201684912618,-56.1201842460536,-56.1201996673401,-56.1202147217707,-56.1202325309553,-56.1202671221282,-56.1202928287191,-56.1203099508828,-56.1203281002429,-56.1203466097887,-56.1203620244051,-56.1203774390215,-56.1203942276798,-56.1204178465273,-56.1204305130598,-56.1204500164515,-56.1204688461625,-56.1204787912914,-56.1204986415287,-56.120527062853,-56.1205517555876,-56.1205640952849,-56.1205740404138,-56.1205894817106,-56.1206001138606,-56.1206158886627,-56.12063198363,-56.1206463910602,-56.1206580437365,-56.1206758529211,-56.1206946893022,-56.1207138658587,-56.1207323553943,-56.1207505114244,-56.1207601097079,-56.1207690343105,-56.1207776120676,-56.1207855028037,-56.1207985428622,-56.120816365387,-56.1208331473753,-56.1208499293635,-56.1208680987339,-56.120886248094,-56.1209009956997,-56.1209157299652,-56.1209325119534,-56.1209489671065,-56.1209667896313,-56.120981537237,-56.1209949308111,-56.1210096784168,-56.1210401674742,-56.1210754323278,-56.1210983841647,-56.1211374242987,-56.1211631108792,-56.1211891376352,-56.1212018041677,-56.1212148108756,-56.1212384497334,-56.1212620685809,-56.1212747684639,-56.1216369152322,-56.122410574228,-56.1228760742983,-56.1230487597811,-56.1232009445652,-56.1231982604579,-56.1231599901613,-56.1231763390917,-56.1231619617378,-56.1230931335419,-56.1230576635258,-56.122955515268,-56.1230060346555,-56.1229371324542,-56.1229227983951,-56.1228354666892,-56.1226874970442,-56.1226510182311,-56.1226577550388,-56.1225617470577,-56.1224942507154,-56.1225108792912,-56.1224808638114,-56.1223155852397,-56.1222027803967,-56.1221929419895,-56.1222111109122,-56.12235978014,-56.122412201734,-56.1224835675902,-56.1225680401547,-56.1226242359535,-56.1226683071474,-56.122767631705,-56.1227336675221,-56.1227280190814,-56.1226971845025,-56.1226685595716,-56.1226704816022,-56.1225885966077,-56.1225430412336,-56.1225283349602,-56.1225937727427,-56.1226057949083,-56.122598859395,-56.12257962808,-56.1225523085171,-56.1225204175437,-56.1225077286319,-56.1225378175456,-56.1225128736531,-56.1224595060593,-56.1223266512828,-56.1222686741613,-56.1221685160591,-56.1221159222684,-56.1220391343608,-56.1219945741175,-56.121987636108,-56.1220043880771,-56.122060084989,-56.1221415288077,-56.1222337788639,-56.1222896118446,-56.1221340983089,-56.1221215718487,-56.122159938302,-56.122291850996,-56.1223656932269,-56.122448053557,-56.122573949516,-56.1226272673579,-56.1226197354311,-56.1226225798582,-56.1227293926043,-56.1228057722827,-56.1228708782852,-56.1231865544208,-56.1232082038625,-56.1232352862197,-56.1232328564437,-56.1232135416722,-56.1230815135819,-56.1230346315276,-56.1229958980388,-56.122982729303,-56.1229773696048,-56.1230033641512,-56.1229983054154,-56.1229637711946,-56.1229448341441,-56.1229201950813,-56.1229098650584,-56.1229037878824,-56.1229156190238,-56.1229359718556,-56.1230645565987,-56.1231180916917,-56.1232033399513,-56.1233272901143,-56.123413531314,-56.1234045902322,-56.1233366031819,-56.123321779068,-56.1233472256893,-56.1233903182485,-56.123394931109,-56.1234393360862,-56.1234729495688,-56.1235117390392,-56.1235599372905,-56.1235887408224,-56.1236189834766,-56.1236768298643,-56.1237137016665,-56.1237922130638,-56.1238242327005,-56.1238419631153,-56.1238725717437,-56.1239614207591,-56.1240740269923,-56.124191732817,-56.1242522640345,-56.1241790887221,-56.1241804154154,-56.1242141698274,-56.1242105177364,-56.1242247565149,-56.1243136156752,-56.1243629744641,-56.1244799709591,-56.1244550085951,-56.1244854376215,-56.1245577749277,-56.1246057560214,-56.1246572649783,-56.1247036668325,-56.1248304162526,-56.1248837164917,-56.1250825540569,-56.1252636824057,-56.1253057032016,-56.125339434519,-56.1253959005045,-56.125405298893,-56.1255397422814,-56.1257208028999,-56.1259344258016,-56.126076326406,-56.1261230078332,-56.1261406137008,-56.1259791221457,-56.1259723090675,-56.1260240543623,-56.1261369222116,-56.1262297273951,-56.1262741662654,-56.1262356061205,-56.1262631681836,-56.1263000647167,-56.1263462957814,-56.1264384793711,-56.1265456833688,-56.1266734002117,-56.1268042811243,-56.1268237864566,-56.127015168856,-56.1271939240907,-56.1272503475591,-56.1273611873206,-56.127398512202,-56.1273096193503,-56.1273247891267,-56.1273543148807,-56.1275562024999,-56.1275557364003,-56.127750101787,-56.1277902816174,-56.1278424376109,-56.1278502259451,-56.1278848791476,-56.1278389007236,-56.127906247595,-56.1279441355851,-56.1279577190227,-56.1279845671428,-56.1280712421475,-56.1280889797272,-56.1280410114935,-56.1280452159864,-56.1280704902472,-56.1281089453258,-56.1282275590485,-56.1283833727971,-56.1284068199787,-56.1284926442405,-56.1285283760016,-56.1285899344155,-56.1286884719005,-56.1288578992785,-56.1289344387519,-56.1291065541829,-56.1290837357481,-56.1292769087057,-56.1293693230328,-56.1293710639306,-56.1295264507342,-56.1295942456978,-56.1295760763274,-56.1297096785629,-56.1298175675373,-56.129858782126,-56.129832315143,-56.1298760043413,-56.1299018976952,-56.1300095131952,-56.1299864479666,-56.1300142356307,-56.1301591370268,-56.1302410992968,-56.1302040468546,-56.1301335171473,-56.1301908400435,-56.1303698323544,-56.1303353612434,-56.1303804511641,-56.130440128608,-56.1304575375862,-56.1304835109814,-56.1304981652056,-56.1304347191515,-56.1304150756875,-56.1304736525638,-56.1305017670632,-56.1305780930931,-56.130697081125,-56.1307494414619,-56.1309432111162,-56.1309664387529,-56.1309708970561,-56.1309878688189,-56.1310374919584,-56.1310785933552,-56.1311487133971,-56.1312678107924,-56.1313999241178,-56.1315337521961,-56.131535383646,-56.1316867749214,-56.1317640184305,-56.1317588790279,-56.1317661096441,-56.1316984385851,-56.1317514444536,-56.1317630614259,-56.1318488989672,-56.1318974829479,-56.1319675683138,-56.1319590108353,-56.1319174783059,-56.1320398172571,-56.1320998756118,-56.1321456432591,-56.1321774579265,-56.1323391946716,-56.1324328696489,-56.1325334581916,-56.1326116218359,-56.1325764903844,-56.1324297613792,-56.1324136163861,-56.1325938193214,-56.132441637504,-56.1326552743486,-56.1326903591094,-56.1326714326819,-56.132743259725,-56.1327560396492,-56.1327215818785,-56.1327662048917,-56.1326296211186,-56.1327412653631,-56.1330498178248,-56.1331114929656,-56.133132036894,-56.1330550638637,-56.1329012612104,-56.1325412488761,-56.1325400580503,-56.1323948858386,-56.1322579212234,-56.1321400955687,-56.1320807369759,-56.1322602820279,-56.1322650334973,-56.1322255242815,-56.1321428194088,-56.1320168478805,-56.1319949778685,-56.131976028071,-56.1318640182659,-56.1318102786891,-56.1315315013671,-56.1315088432029,-56.1313723040559,-56.1313555402441,-56.1310443968017,-56.1308244514408,-56.1307833951732,-56.1310118407395,-56.131008920324,-56.1307632446971,-56.1307773728185,-56.1307200027038,-56.1307195996001,-56.1305720899226,-56.130503908304,-56.1305026263492,-56.1304839935177,-56.130170218967,-56.1301396408584,-56.1304585851113,-56.1304463306019,-56.1302279212351,-56.1302265658273,-56.130206239105,-56.1302012751622,-56.1301775606564,-56.1301757931749,-56.1299675178989,-56.1297153173311,-56.1296864772041,-56.1299468820294,-56.1301704171398,-56.1301702110912,-56.1301092014566,-56.1300767672341,-56.1300581475676,-56.1299188410343,-56.1298834356762,-56.129839698951,-56.1298120585673,-56.1297644272748,-56.1290681543791,-56.1291242633159,-56.1289975446305,-56.1289533084835,-56.1285988856986,-56.128646150074,-56.1286512527056,-56.1282690889473,-56.1282116259788,-56.1281945638461,-56.1280535111016,-56.1278358988734,-56.1277168908312,-56.1276708871059,-56.1276776572641,-56.1277253618666,-56.1278961699567,-56.1281371942591,-56.1282198035295,-56.1283363646577,-56.1284456399448,-56.1285349269826,-56.128643648784,-56.1289170164334,-56.1289958585347,-56.1291204791702,-56.1291513973096,-56.1291760468838,-56.1292207543318,-56.1296711277916,-56.1297081110878,-56.1297895223492,-56.1298603095805,-56.129903952088,-56.1299361887133,-56.1299973869414,-56.1300109286978,-56.1300680411075,-56.1300622552812,-56.1300825279082,-56.1300566149182,-56.1298085443597,-56.1298541116226,-56.1300938113187,-56.1308744960166,-56.1311903041876,-56.1314489695801,-56.1315494941654,-56.1316498735105,-56.1317410106055,-56.131781558788,-56.1318641800399,-56.1320988229148,-56.1322585980937,-56.1324687804697,-56.1327837450304,-56.1343856145015,-56.1344551159156,-56.1319294423904,-56.1319748661531,-56.1320875487674,-56.1322467076918,-56.1324525965939,-56.1326455296455,-56.1328784229985,-56.1330018428628,-56.1330644806804,-56.1330960360532,-56.1331301080521,-56.1331640633392,-56.1331323260002,-56.1331217119972,-56.1331863682073,-56.1332489335529,-56.1333070959815,-56.1334113717084,-56.1334746980411,-56.133325351218,-56.1333870883628,-56.1335079241907,-56.1336525547044,-56.1338340890063,-56.1345442619073,-56.1348923994699,-56.1349428274316,-56.1349883101569,-56.1348610676159,-56.1347771048144,-56.1344884733537,-56.1344224467524,-56.1349216174595,-56.1350493626617,-56.1351061893059,-56.1353376753909,-56.1354758012727,-56.1355099265658,-56.1356738210904,-56.1358817316486,-56.1362348971184,-56.1366039641223,-56.1369255484897,-56.1369256087267,-56.1369465412085,-56.1369582412344,-56.1369735232179,-56.1373254795596,-56.1376833474546,-56.1376887569111,-56.1376506135512,-56.1377222956294,-56.1380481514407,-56.13845260418,-56.1384608284214,-56.1398944751596,-56.1407907566917,-56.1418850605363,-56.1422871284089,-56.1424320431451,-56.1425880936244,-56.1429858187414,-56.143103606154,-56.1431803137475],&#34;lat&#34;:[-34.895996684622,-34.8955522665523,-34.8955168786327,-34.8952408407176,-34.8951372119955,-34.8950970362759,-34.8948424624857,-34.8946369865164,-34.8944672773264,-34.8943919783689,-34.8943512641621,-34.8942891738072,-34.8941891571544,-34.8940365735348,-34.8940454680316,-34.894038834063,-34.8938606503067,-34.8938245658637,-34.8935627299949,-34.8931158070053,-34.8926002177694,-34.8920845918479,-34.8915793416451,-34.8909703729052,-34.8902099692237,-34.8891905659126,-34.8884718105503,-34.8877766659035,-34.8877494367237,-34.8876552949327,-34.8876391425478,-34.8876784468742,-34.887701574025,-34.8877393342207,-34.8877583961347,-34.887815743627,-34.8878887501268,-34.8878767414627,-34.887790407227,-34.8869198746198,-34.8866647842144,-34.8866998766139,-34.8859876045589,-34.885659265885,-34.8851855811432,-34.8843912217658,-34.8835455336621,-34.8823920916932,-34.8822479119128,-34.8821398177675,-34.8818054719731,-34.8818190175768,-34.8817039588522,-34.8816895506644,-34.8816875295728,-34.8817295502803,-34.8817953091242,-34.8818253934615,-34.8818722845557,-34.8819035625803,-34.882278243629,-34.8822982637602,-34.8823147668064,-34.8823556487177,-34.8823936172021,-34.8824362355562,-34.8826548315808,-34.8829531912249,-34.8834507315627,-34.8839134335722,-34.8841743445695,-34.8842371525201,-34.8842441318129,-34.8844150041536,-34.8856262127632,-34.8870189102348,-34.8872555619169,-34.8884189934884,-34.8887885411569,-34.8887849880745,-34.8887808592785,-34.8887335002709,-34.8894782185078,-34.8903899303676,-34.8908344274079,-34.8916085555104,-34.891878667314,-34.8917241718034,-34.8925897665461,-34.8933931658797,-34.8942236475136,-34.895049604314,-34.8958304486821,-34.8963223965589,-34.8970431411249,-34.8970831505658,-34.8971122059351,-34.8982976303648,-34.8984511211098,-34.8989307091345,-34.8992370063644,-34.8992414770033,-34.8992459376371,-34.8992503999384,-34.8992548739125,-34.8992593345463,-34.899272803159,-34.8992772821356,-34.8992907540834,-34.8992997403846,-34.8993087166806,-34.8993221886284,-34.8993356589087,-34.8993401362178,-34.8993580871422,-34.899371530742,-34.8993849993548,-34.8993984696351,-34.899407439261,-34.8994164372348,-34.8994254318736,-34.8994344115046,-34.8994433961382,-34.8994568864288,-34.8994703617117,-34.8994838386621,-34.89949731728,-34.8995107892279,-34.8995152682045,-34.8995287418198,-34.8995377097781,-34.8995511933987,-34.8995601713622,-34.8995691393205,-34.8995826162709,-34.8995915925669,-34.8996005621928,-34.8996050361667,-34.8996095101408,-34.8996184897718,-34.8996274677353,-34.8996319400418,-34.8996409146702,-34.8996588639271,-34.8996768331943,-34.8996858078228,-34.8996947807837,-34.8997082594016,-34.8997172390326,-34.8997262169961,-34.8997351932921,-34.8997441529128,-34.8997486318894,-34.8997530941907,-34.8997620654841,-34.8997710567878,-34.8997755190892,-34.8997889743617,-34.8998114542885,-34.8998204389221,-34.8998294302258,-34.8998474228384,-34.8998564124746,-34.8998698977627,-34.8998788757262,-34.8998923643492,-34.8999013506504,-34.8999103236113,-34.8999192949047,-34.8999282661981,-34.8999372374915,-34.8999462104524,-34.8999552017561,-34.8999641963949,-34.8999731910336,-34.8999821856724,-34.8999956776305,-34.900009157916,-34.900018134212,-34.9000271088404,-34.9000405891259,-34.9000495620868,-34.9000630490424,-34.9000720286734,-34.9000810049694,-34.9000944885899,-34.9001079688754,-34.9001214558309,-34.9001394534461,-34.9001529404016,-34.9001708979962,-34.9001843399285,-34.9001978085413,-34.9002157461255,-34.9002292097357,-34.9002426716784,-34.9002471489874,-34.9002516262965,-34.9002650932417,-34.9002740528624,-34.9002875448206,-34.9005120672792,-34.9011007108578,-34.9015548450664,-34.9019395453012,-34.9021673424748,-34.9021940930763,-34.9022839022619,-34.9023471220441,-34.9023789600836,-34.9024353317202,-34.9024362443468,-34.9025011214187,-34.9025776225389,-34.9026273565214,-34.9027355556557,-34.9027943459754,-34.9028172194385,-34.9028488524191,-34.9029209479339,-34.9029866757461,-34.9030024466316,-34.9030655058195,-34.9030881091433,-34.9030479234185,-34.9030571948666,-34.9030797531672,-34.9030935202931,-34.9030917894322,-34.9031062935214,-34.9031889719696,-34.9032484768823,-34.9032993640321,-34.9033130268057,-34.9033623755895,-34.9034300571613,-34.9034637105147,-34.903482184775,-34.9035062840286,-34.9035518899936,-34.9035561882259,-34.9035717516451,-34.9035792557735,-34.9036029676807,-34.9036331619076,-34.9036581600645,-34.9036827991735,-34.9036606285157,-34.9036649066125,-34.903691156431,-34.9037427899647,-34.9037595687655,-34.9037440942283,-34.9037524832998,-34.9037623478594,-34.903746835532,-34.9037649832246,-34.9037924745149,-34.9038211326978,-34.9038464002134,-34.9038585972619,-34.9038504784705,-34.9038550630143,-34.9038424922226,-34.9038637391555,-34.9038821219693,-34.9039182055786,-34.9039406538224,-34.9039134132136,-34.9039250256061,-34.903903939888,-34.9039431480039,-34.9039878494709,-34.9040162194602,-34.9041124559224,-34.9041852413629,-34.9042744257636,-34.9043716927868,-34.9044971641623,-34.9045095503901,-34.90455113533,-34.90457827041,-34.9045917479416,-34.9045785294578,-34.9045872958044,-34.9045829502441,-34.904587769223,-34.9046014042457,-34.9046765235179,-34.9046881043299,-34.9046866933906,-34.9046772628788,-34.9046735998723,-34.9046780757964,-34.9046914883046,-34.9047060953334,-34.9047140710268,-34.9047410918215,-34.9047473785775,-34.9047479936252,-34.9048014498132,-34.9048577140517,-34.9049424376376,-34.9049843412793,-34.905017354688,-34.9050440345171,-34.9050748160618,-34.9050947215385,-34.9051533336186,-34.9051681490021,-34.9051498813644,-34.9051542033982,-34.9051676592489,-34.9051970232342,-34.9052014147948,-34.9052122791654,-34.9052393415019,-34.9052528204841,-34.9052489738669,-34.9052438952727,-34.9052061161533,-34.9052431857333,-34.9052835697318,-34.9053870897864,-34.9054554251196,-34.9054819309535,-34.9054834990122,-34.9055245419178,-34.9055448945037,-34.9055311707593,-34.9055671126288,-34.9055518349036,-34.9055849284835,-34.9056840095822,-34.9056387745867,-34.9056273700653,-34.9056358377913,-34.9056624863324,-34.9057585355909,-34.9058297656963,-34.9058473907427,-34.9059121889407,-34.9058894806018,-34.9059524729462,-34.9059569276765,-34.9059974789094,-34.9060632201037,-34.9061353690557,-34.9061490507167,-34.9062067482337,-34.9062070839073,-34.9061687510823,-34.9061048402095,-34.9060521625324,-34.9060383654014,-34.9060533462798,-34.906106642232,-34.9060867199236,-34.9060155963968,-34.9059651900525,-34.9059614069493,-34.9060042470797,-34.9061162396265,-34.9062020257165,-34.9062069919179,-34.9061451827759,-34.9061594921794,-34.9061851572281,-34.9062431181744,-34.9062516200998,-34.9062261016767,-34.9061818377124,-34.9059909264856,-34.9059505518099,-34.9059467154591,-34.9061432249184,-34.9061469086239,-34.9062049175245,-34.9062305957086,-34.906216688241,-34.9062088098159,-34.906210645357,-34.9063690017426,-34.9063758324876,-34.9062539158809,-34.9062444921684,-34.9062557928564,-34.9062564147379,-34.9062184572729,-34.9062006576244,-34.9061673636585,-34.9061453289033,-34.9061519522472,-34.9062289725925,-34.9062491325405,-34.9062292674523,-34.9062290673491,-34.9061794084054,-34.9061837706551,-34.9061024153648,-34.9061515957283,-34.9061378953294,-34.9059752431121,-34.9059031859504,-34.9058982267261,-34.9058258994251,-34.9057357562693,-34.9056813098566,-34.9056090392514,-34.9056947134358,-34.9056673593286,-34.9056220359541,-34.9055768709947,-34.9055363701074,-34.9055137334331,-34.9054866311224,-34.9055584881809,-34.9056126261012,-34.9056396016799,-34.9056167265493,-34.905589492504,-34.9055535239541,-34.905526648427,-34.9054904580961,-34.9055396134468,-34.9054585699839,-34.9054449429561,-34.9054988857758,-34.9055889839084,-34.9055844165529,-34.9054717084264,-34.9054177739444,-34.9053727507247,-34.9054041619243,-34.9054266301784,-34.9053498322384,-34.9053495520939,-34.9052637978683,-34.9051449581936,-34.9051350515741,-34.9051044207943,-34.9050636586044,-34.9050640134195,-34.9050881560224,-34.9051056921473,-34.9051849036565,-34.905206289718,-34.9053014921411,-34.9053026527172,-34.9054570477519,-34.9055836572079,-34.9056790154306,-34.9057778689862,-34.905920477924,-34.9059924028201,-34.9060674389751,-34.9061634471099,-34.9062625960487,-34.9062835384206,-34.9063107329934,-34.9063274711483,-34.9064918791019,-34.9066796909089,-34.9067356854039,-34.9067747554411,-34.9068735263798,-34.9068687972742,-34.9068865864485,-34.9069449915696,-34.9071659138381,-34.9072518931799,-34.9073285493801,-34.9075264280979,-34.9077160792392,-34.9078913429605,-34.9079498498006,-34.9081121451672,-34.9082156335388,-34.9082516587846,-34.9082742754486,-34.9083237459618,-34.9083781523539,-34.9084274644521,-34.9084627876692,-34.9084986961881,-34.9088006118938,-34.9089855789527,-34.9091031245739,-34.9091174986537,-34.9091177401826,-34.9091532884879,-34.9091928054841,-34.9092302092871,-34.9094210112364,-34.9094875351427,-34.909555060549,-34.9096762630956,-34.9097499131266,-34.909782759196,-34.9097848527064,-34.9097689693445,-34.9097726686728,-34.9096890452811,-34.9097095505198,-34.9095271616158,-34.9095261857599,-34.9095620613895,-34.9095440889959,-34.9089058465447,-34.9089145517632,-34.9095236087632,-34.9095415856062,-34.9095308297592,-34.9094859364984,-34.9094877758589,-34.9095260181418,-34.909529462345,-34.9095265401263,-34.9094874572161,-34.9094873239006,-34.9087203495548,-34.908728503634,-34.9094871421022,-34.9095247326659,-34.9095134012594,-34.9094812952746,-34.9094811497932,-34.9094699503401,-34.9094697806066,-34.9094767454089,-34.9094682770508,-34.9088064041688,-34.9088103841072,-34.909497434615,-34.9095046167421,-34.9095241521357,-34.9095265064231,-34.9095499975934,-34.9095902544541,-34.9098397472598,-34.9098304949039,-34.9098449788339,-34.9098790178735,-34.9098935761031,-34.9096124272344,-34.9095221573465,-34.9094638639498,-34.9095270648775,-34.9093791652685,-34.9093024356971,-34.9092934110429,-34.9091320544939,-34.9092268333737,-34.9092358880435,-34.9091866409788,-34.9090474325188,-34.9090432036712,-34.9090883803033,-34.9091694887997,-34.9092189543103,-34.9092726386634,-34.9093577075356,-34.9094161059865,-34.9094392062934,-34.9094972266625,-34.9095148709451,-34.9095683511699,-34.9097119335523,-34.9097212427061,-34.909765163938,-34.9097564548464,-34.909753106628,-34.9097715440817,-34.9099609249128,-34.9099624677592,-34.9100043913657,-34.9100702766924,-34.9101332725143,-34.9102593892225,-34.9105521968976,-34.9107007580172,-34.910925956453,-34.9110776300044,-34.9111398403394,-34.9112155123236,-34.9113206263121,-34.9113657774699,-34.9112606034686,-34.9114558330666,-34.9116753195431,-34.9117564741061,-34.9117502964,-34.911757909843,-34.9118482107912,-34.9119726309248,-34.9120766632085,-34.9120542027565,-34.9119863823958,-34.9119016813427,-34.911803935445,-34.9112831406582,-34.9114223189197,-34.9122391885833,-34.9122981301961,-34.9123299676348,-34.9123207600425,-34.9122463725727,-34.912209821024,-34.9121791860228,-34.9121606426369,-34.9121748817794,-34.9122150510755,-34.9122759128315,-34.9122583457838,-34.9121970099661,-34.9121500405387,-34.9121274783085,-34.9121486129749,-34.912190404615,-34.9122256289392,-34.9121743594908,-34.9120622805923,-34.9120009584192,-34.911997245077,-34.9119790877037,-34.9118321148118,-34.9115682252124,-34.9115177641687,-34.9113877844982,-34.9112679567325,-34.9112946354994,-34.9113181742135,-34.9114115297783,-34.9112711655439,-34.9111088708225,-34.9111071085805,-34.9109573932142,-34.9102764437978,-34.9098748338133,-34.9097819613341,-34.9093263680397,-34.9087489836011,-34.9077656247911,-34.9067371593852,-34.9058252588391,-34.9058251275235,-34.9057794950538,-34.9057539891634,-34.9057115788779,-34.9047253318342,-34.9037284360429,-34.9037103967396,-34.9035407856623,-34.9032945809708,-34.9023633255528,-34.901216217094,-34.9012207044082,-34.9016452314956,-34.8992680523756,-34.8995460556926,-34.8984756820633,-34.8980832229954,-34.8976501746613,-34.8965449996943,-34.8962157048686,-34.895996684622]}],[{&#34;lng&#34;:[-56.1255666352227,-56.1255563396374,-56.1255491784382,-56.125530362625,-56.1255166102272,-56.1255040445028,-56.1255537907811,-56.1255786098494,-56.1255853247681,-56.1256052704304,-56.1256298074533,-56.1256439216383,-56.1256648005119,-56.1256686245712,-56.1256866789476,-56.1257075578218,-56.1257273293139,-56.1257451597554,-56.1257556157859,-56.1257699207558,-56.1257746946078,-56.1258155357562,-56.125830924857,-56.1259468713202,-56.1260171675738,-56.1261981142259,-56.1261862747867,-56.1260964751414,-56.1260587089978,-56.1260532728609,-56.1259946959846,-56.1256766653014,-56.1255045965611,-56.1254382756911,-56.125352304687,-56.1252644860633,-56.1251529685509,-56.1249146389716,-56.1249720952699,-56.1249600423873,-56.1247915688345,-56.1247834379745,-56.1250057526279,-56.1250965261088,-56.1247406292303,-56.1246674581608,-56.1246135703695,-56.1246747085667,-56.1246608280748,-56.1246197935789,-56.1245350765549,-56.1244388202464,-56.1244249130741,-56.1244917208619,-56.1244963365757,-56.1245193684538,-56.1246972935477,-56.1247513347514,-56.1247946771042,-56.1249206487376,-56.12496521133,-56.1250520163158,-56.1250693118523,-56.1251063289816,-56.1251573908316,-56.1251739719615,-56.1252060658273,-56.1252526307127,-56.1252830988605,-56.1252897142363,-56.1253049109667,-56.125324790291,-56.1253590908079,-56.1253647397956,-56.1253817946304,-56.1253988162775,-56.1254150208868,-56.1254305826888,-56.1254254813062,-56.125417306525,-56.1254195628892,-56.1254138558285,-56.125401525102,-56.1253931263091,-56.1253864943478,-56.1253751715007,-56.1253599748026,-56.1253362465576,-56.125312700872,-56.1252957124686,-56.1252843564413,-56.1252844477233,-56.1252902460617,-56.1252903041498,-56.1252912871359,-56.1252998933595,-56.1253103659752,-56.1253207888022,-56.1253245298878,-56.1253453589499,-56.1253520406917,-56.1253796095802,-56.125388141122,-56.1253928237082,-56.1253984146018,-56.1254079125334,-56.125413470241,-56.1254182192076,-56.1254257511779,-56.1254343159124,-56.1254361408268,-56.1254615114595,-56.1255041277348,-56.1254566127773,-56.1254804861112,-56.1255369719081,-56.1255260927216,-56.1254897514645,-56.1254594491555,-56.1254252314965,-56.1254149247601,-56.1253874635658,-56.1253741165958,-56.1253530633604,-56.1253406744826,-56.1253083149265,-56.1252902687422,-56.1252828695138,-56.1252877014934,-56.1252945990379,-56.125284796538,-56.1252604062888,-56.1252381791697,-56.1252406204219,-56.1252408896101,-56.1252517593733,-56.1252659794467,-56.1252763824361,-56.1253063115254,-56.1253242049572,-56.1253533732446,-56.1253674822664,-56.1253816892768,-56.1253995892487,-56.1254212997628,-56.1254354479861,-56.1254705981794,-56.1254929780516,-56.1255064307957,-56.1255078870822,-56.1255123343193,-56.1255301689905,-56.1255722936878,-56.1255840289176,-56.1256014783008,-56.1256058406496,-56.1256169195892,-56.1256258793961,-56.1256340653421,-56.1256422532138,-56.1256575381491,-56.125661955098,-56.1256941047565,-56.1257178168136,-56.125717605494,-56.1257324995666,-56.1257468176995,-56.1257559581114,-56.1257857726308,-56.1258026690876,-56.1258038156059,-56.1257998583631,-56.1258177957001,-56.1258442129773,-56.1258440016859,-56.1258473673021,-56.1258629799269,-56.1258783812723,-56.1258817257729,-56.1258948446445,-56.12591891611,-56.1259163483941,-56.1259173575949,-56.1259371648837,-56.1259544524165,-56.1259628849205,-56.1259693308647,-56.1260004782661,-56.1260090629007,-56.1260000304023,-56.126008741794,-56.1260384942016,-56.1260459503687,-56.1260632633173,-56.1260753225751,-56.1260858853513,-56.1261148557726,-56.12611658886,-56.1261407497208,-56.1261532399417,-56.1261560508105,-56.1261646692934,-56.1261645848058,-56.1261549422256,-56.1261548130675,-56.1261677218809,-56.1261772564024,-56.1262390146487,-56.1262437030051,-56.1262730959158,-56.1262810437875,-56.1263068472016,-56.1263181837334,-56.1263279622565,-56.126350864905,-56.1263904237941,-56.1264023198784,-56.1263993329624,-56.1263981049247,-56.1263918441599,-56.126348529554,-56.1263277589047,-56.1263180952012,-56.1263003545085,-56.1262876178572,-56.1262713634475,-56.1262488627025,-56.1262473477529,-56.126237583641,-56.1262345393966,-56.1262346972407,-56.1262201156579,-56.1261975862771,-56.1261651493308,-56.1261410476698,-56.1261217634925,-56.1260894127483,-56.1260748743013,-56.1260637101472,-56.1260609243007,-56.1260432412353,-56.1260223561356,-56.1260113499048,-56.1259904217862,-56.1259644466184,-56.1259415873827,-56.1259286500525,-56.1259158849809,-56.1259002859234,-56.1259005615314,-56.1258809186551,-56.1258674236778,-56.1258487595357,-56.1258395285319,-56.1258282298671,-56.1258147900424,-56.1257995949509,-56.1257965669605,-56.1257987816297,-56.1257905201702,-56.1257779212536,-56.1257168793882,-56.125677685848,-56.1256809619196,-56.1256758203568,-56.1256728934734,-56.125657229876,-56.1256288203745,-56.1256203843651,-56.1255916952148,-56.1255212941929,-56.1255442429389,-56.1255572620612,-56.1255621852366,-56.1255719487069,-56.1255745593094,-56.1255738817525,-56.1255689043778,-56.1255644958166,-56.1255697879287,-56.1255666352227],&#34;lat&#34;:[-34.9074978100055,-34.9074973305118,-34.9075018588634,-34.9075123661394,-34.9075133089584,-34.9074584967993,-34.9072460157343,-34.9072344568668,-34.90722824521,-34.9072283887185,-34.9072434326889,-34.9072560541778,-34.9072577693834,-34.907255449406,-34.9072547967982,-34.9072565119965,-34.9072730866566,-34.9072935598321,-34.9072928525533,-34.9072874779827,-34.9072851648343,-34.9072854586184,-34.907289879437,-34.9072986239468,-34.9072578996109,-34.9070772030877,-34.9070141338947,-34.9069512447945,-34.9069062615955,-34.9068161367825,-34.9067847239154,-34.9065736333839,-34.9065514969676,-34.9065561577046,-34.9065112862299,-34.9065295172988,-34.9066154065941,-34.9067151080127,-34.9068186364049,-34.9068952809325,-34.9069227117459,-34.9069452650439,-34.9069627790764,-34.9071112990052,-34.9070264885996,-34.9070266570198,-34.9070673430027,-34.9071483281021,-34.9071889223709,-34.9071890157524,-34.9071125930059,-34.9071623920218,-34.9071939716416,-34.907234380815,-34.9072839463772,-34.9073199482777,-34.9073555949949,-34.907359977255,-34.9074364950505,-34.9074767658191,-34.9074827881657,-34.9074482008115,-34.9074295454167,-34.9074321593983,-34.9074131229969,-34.9074130839338,-34.9074320948683,-34.9074300825535,-34.9074232593865,-34.9074264369863,-34.9074265463639,-34.9074329494122,-34.907423023823,-34.9074277594565,-34.9074317946789,-34.9074389596455,-34.9074335987881,-34.9073992809371,-34.9073429044869,-34.9073076333208,-34.9072740022141,-34.9072747436399,-34.9072730899088,-34.9072589445311,-34.9072573318103,-34.9072502078553,-34.9072500984869,-34.9072483627217,-34.9072294133455,-34.9072191186207,-34.907215124404,-34.9072065176007,-34.9071971693777,-34.9071916923211,-34.9071885694106,-34.9071831538786,-34.9071808817646,-34.9071833042697,-34.9071888086698,-34.9071952185501,-34.907192136653,-34.9071899875732,-34.907191613965,-34.9071979076352,-34.9072081203237,-34.9072081886761,-34.9072215311108,-34.9072215652865,-34.9072278794607,-34.9072263761026,-34.9072334317027,-34.9072594366552,-34.9072714807637,-34.9074526780088,-34.907530316942,-34.9076676602592,-34.9077082717872,-34.9077314851751,-34.9077226596596,-34.9077247609088,-34.9077113842992,-34.9077033617083,-34.907707960631,-34.9077226765426,-34.9077264998606,-34.9077325269314,-34.9077323970448,-34.9077135638768,-34.9077057736921,-34.9076823484477,-34.9076742309903,-34.9076821023409,-34.9077179371837,-34.9077554578811,-34.9077560343939,-34.9077597072367,-34.9077585775369,-34.907764812679,-34.907763180015,-34.9077682370116,-34.9077678309132,-34.9077771728522,-34.9077772750978,-34.907781716104,-34.9077794082388,-34.9077850542933,-34.9077846912145,-34.9077897804709,-34.9077904933008,-34.9077941999387,-34.9077979280986,-34.9078085288804,-34.9078556499958,-34.9078772953592,-34.9079242389198,-34.9079359748096,-34.9079489910772,-34.9079502875944,-34.907954042649,-34.9079640580007,-34.9080060327641,-34.9080459357745,-34.9080950093308,-34.9081410318358,-34.9081609659316,-34.9082398187622,-34.9082588606001,-34.9083097621742,-34.9083508446607,-34.9083549533275,-34.9083609422594,-34.9083918139974,-34.9084118786419,-34.9084310074998,-34.9084509415953,-34.9084758853233,-34.9084869622125,-34.9085179731952,-34.9085449103318,-34.9085629467452,-34.908575081249,-34.9085890177114,-34.9086079638042,-34.9086456848996,-34.9086585680289,-34.9086849436879,-34.9087160896065,-34.9087912715266,-34.9088032946338,-34.9088335318082,-34.9088335944584,-34.908857731163,-34.908884897219,-34.9088953882419,-34.908944915286,-34.90895296549,-34.9089595532121,-34.9089787038641,-34.9090737711213,-34.9090826326036,-34.9090914244853,-34.9091002581266,-34.9091082317646,-34.9091225553459,-34.9091347446749,-34.9091578635381,-34.909189084976,-34.9092572526784,-34.9092803124292,-34.9092994863784,-34.9093252785083,-34.9093728705768,-34.9093892057548,-34.9093974028927,-34.9094084033254,-34.9093992063946,-34.9093627211379,-34.9093342557318,-34.9092949671848,-34.9092651237709,-34.9091632269096,-34.909106189718,-34.9090871576205,-34.9090545227231,-34.9090151514337,-34.9089974264219,-34.9089485036162,-34.9089363024659,-34.9089267509518,-34.9089037030207,-34.9088888049509,-34.9088683830132,-34.908822168938,-34.9087799470387,-34.9087269492816,-34.9086848219464,-34.9086344738075,-34.9086099887427,-34.9085774011024,-34.9085299745067,-34.908491922092,-34.9084457198077,-34.9083982340923,-34.9083560949125,-34.9083247552164,-34.9083096916042,-34.9082892814567,-34.9082526188679,-34.9082134165737,-34.9081874126695,-34.9081543305958,-34.9081368962718,-34.9081107561359,-34.9080881513019,-34.9080620641427,-34.9080394290321,-34.9079838405034,-34.9079716826412,-34.9079612962173,-34.9079465001198,-34.9079438089009,-34.9078454142695,-34.9077705820924,-34.9077593364434,-34.9077480302352,-34.9077263376048,-34.9077149556958,-34.9077147513001,-34.9077164243307,-34.9077024838473,-34.9075337405733,-34.9075381608042,-34.9075339360296,-34.9075293398243,-34.9075207624639,-34.9075158192933,-34.9075114917007,-34.9075112399649,-34.907506781831,-34.9075020696117,-34.9074978100055]}]],[[{&#34;lng&#34;:[-56.1425880936244,-56.1424320431451,-56.1422871284089,-56.1418850605363,-56.1407907566917,-56.1398944751596,-56.1404585322238,-56.1408902285374,-56.141006168464,-56.142276216073,-56.1428820808948,-56.1435556714723,-56.1436943490076,-56.1449625513071,-56.1458738114865,-56.1459052677093,-56.1460933680508,-56.1470098573744,-56.1475153013782,-56.1486855549078,-56.1498817818327,-56.1503605587502,-56.1507582338414,-56.151917104998,-56.1527634103788,-56.1537871459289,-56.1543619839044,-56.1556890834734,-56.156060002469,-56.1562423345244,-56.1564967163919,-56.1567177940058,-56.1575833736433,-56.1590457208333,-56.1591470086293,-56.1603607644455,-56.1603884420529,-56.1611480104484,-56.161367992232,-56.1625034161325,-56.1634002153014,-56.1635655255561,-56.1640385795222,-56.1642708159591,-56.1643433450309,-56.1644040013129,-56.1645435094378,-56.1646515180262,-56.1646776059909,-56.1647450372139,-56.164752218534,-56.1648556542418,-56.1648649043879,-56.1648724652036,-56.1648979643956,-56.1648992066553,-56.1649238118544,-56.1649245380863,-56.1649241572343,-56.1648296167523,-56.1647012956471,-56.1647979161315,-56.1648513753684,-56.1646856165491,-56.1644314271237,-56.1641278799412,-56.1636811559386,-56.1628887682017,-56.1625358695362,-56.1626613492493,-56.1626099810907,-56.1606275807152,-56.1604710391828,-56.1594603558386,-56.1593828453302,-56.1588257878188,-56.1580039172924,-56.1574508473465,-56.1574512389287,-56.1568847059539,-56.1557032411238,-56.1553938552487,-56.1552167154332,-56.1519394989671,-56.1506968783914,-56.1506465377142,-56.1501859745037,-56.1499513269907,-56.1496403958322,-56.1494681517048,-56.1486642734815,-56.1476609547477,-56.1471670050862,-56.1471066339512,-56.1460313612916,-56.1459662582786,-56.1456077402379,-56.1451564732664,-56.1447669507077,-56.1446242298494,-56.1434955249433,-56.14284970571,-56.1422944385453,-56.1419451992934,-56.1416402921217,-56.1412012150423,-56.1401562767768,-56.1394248559534,-56.138535225161,-56.1382281317471,-56.1379149101143,-56.1375286676823,-56.136712953072,-56.1365897914404,-56.1365566883615,-56.1356678304588,-56.1347567167614,-56.1334846620851,-56.1325183141849,-56.133814497264,-56.1349381350116,-56.1360547942347,-56.1371820689324,-56.1368763045753,-56.136696038274,-56.1366841988348,-56.1365678633145,-56.1366172923615,-56.1366205493424,-56.13768342649,-56.1384029752517,-56.1388192632755,-56.1390474813103,-56.139301045076,-56.1399416521201,-56.1406989726897,-56.141650660166,-56.1418087550329,-56.1422092119433,-56.1432053519603,-56.1433359612034,-56.1431803137475,-56.143103606154,-56.1429858187414,-56.1425880936244],&#34;lat&#34;:[-34.8976501746613,-34.8980832229954,-34.8984756820633,-34.8995460556926,-34.8992680523756,-34.9016452314956,-34.9017894939517,-34.9018968735749,-34.9019100955824,-34.9022172508593,-34.902357255252,-34.9025083794044,-34.9025306475574,-34.9027494090675,-34.9028340631252,-34.9028339847515,-34.9028470398176,-34.9028898318866,-34.9029156151837,-34.9029757895505,-34.9030313798865,-34.903057218212,-34.9030652306776,-34.9030941180542,-34.9031041735288,-34.9031251665881,-34.9031296868359,-34.9031324870301,-34.9031247327281,-34.9031461392435,-34.9031542964056,-34.9031492239951,-34.9031284019638,-34.9031018435017,-34.9031157919246,-34.9030226337092,-34.903018054681,-34.9028853779229,-34.9028307214018,-34.9026339582594,-34.9024468250833,-34.902401321616,-34.9022738858942,-34.9022056707139,-34.9015114126672,-34.900929859412,-34.8998734894961,-34.8988912593473,-34.8983134304901,-34.8976497402279,-34.8975803971984,-34.8968769392174,-34.8967951319065,-34.8967282647211,-34.896502751239,-34.8964325518703,-34.8963105109136,-34.8963069088218,-34.8963068467811,-34.8962914461133,-34.8962766495253,-34.8953898022628,-34.8951033461967,-34.8950080378771,-34.8948634558125,-34.8947040435088,-34.8944797506137,-34.8941504155794,-34.8940211255679,-34.8939351654027,-34.8939127646834,-34.8928005108552,-34.8927211526529,-34.8922047058051,-34.8921703436198,-34.8919701011354,-34.8917659058267,-34.8916314943264,-34.89162768621,-34.8915278500633,-34.8912267483497,-34.8911648583085,-34.8911286069328,-34.8903436276693,-34.8900160449383,-34.8900027736823,-34.8898331691882,-34.8897318717964,-34.8895969653303,-34.8895142590147,-34.8891481596437,-34.888686588259,-34.8884643552159,-34.8884403495022,-34.8880574228051,-34.8880342378664,-34.8878963987117,-34.8877111829895,-34.8875513073248,-34.8875020596085,-34.8870926923976,-34.8869122108725,-34.8867735747989,-34.8866957516836,-34.8866478805295,-34.8866249628442,-34.8865553816599,-34.8865072880985,-34.8864845374289,-34.8864655435442,-34.8867088066524,-34.8870174911144,-34.8876524498447,-34.8877494367237,-34.8877766659035,-34.8884718105503,-34.8891905659126,-34.8902099692237,-34.8909703729052,-34.8915793416451,-34.8920845918479,-34.8926002177694,-34.8931158070053,-34.8935627299949,-34.8938245658637,-34.8938606503067,-34.894038834063,-34.8940454680316,-34.8940365735348,-34.8941891571544,-34.8942891738072,-34.8943512641621,-34.8943919783689,-34.8944672773264,-34.8946369865164,-34.8948424624857,-34.8950970362759,-34.8951372119955,-34.8952408407176,-34.8955168786327,-34.8955522665523,-34.895996684622,-34.8962157048686,-34.8965449996943,-34.8976501746613]}]],[[{&#34;lng&#34;:[-56.1174506562714,-56.1180329032177,-56.1185090354379,-56.1194913487087,-56.1196585282608,-56.1200797121428,-56.1200699270964,-56.120036775345,-56.1199484145114,-56.1193950390393,-56.1188809805929,-56.1187569699708,-56.1187002540543,-56.117491992045,-56.1169395059914,-56.1168065574265,-56.1159132367181,-56.1157210776167,-56.1149116551365,-56.1144279432623,-56.1137390933978,-56.1127363689636,-56.1126545926973,-56.1123842074588,-56.1123696079273,-56.1120669941857,-56.1119972312974,-56.1116816194627,-56.1114327470717,-56.1111530455148,-56.1111772229855,-56.1111859155877,-56.1112143937549,-56.1105117161295,-56.1104955914378,-56.1103878977745,-56.1103164541288,-56.1102068170324,-56.1100728246682,-56.1097252320724,-56.1087044596831,-56.1081400756708,-56.1075174699308,-56.1070076783789,-56.1066770206017,-56.1064869338599,-56.1063293571492,-56.106159836522,-56.1062719018018,-56.1055764962057,-56.1045266110105,-56.1037039567921,-56.1038907630875,-56.1039005971556,-56.1039939922139,-56.1039051160513,-56.1026468079467,-56.102331083244,-56.1014504573559,-56.1006877712226,-56.1005834542834,-56.1005594650518,-56.0996234976929,-56.0990506903927,-56.0989772515326,-56.0981874179747,-56.0973839568695,-56.09705979035,-56.0956910583046,-56.0956337071753,-56.0933832574313,-56.0932892489487,-56.0927226033817,-56.0917391515778,-56.0915471519128,-56.0914556845162,-56.0914399618907,-56.0919336425591,-56.0928537776984,-56.0919882913449,-56.0919364045856,-56.0911888434138,-56.0910105935028,-56.0925718789827,-56.0917185455634,-56.0915948539662,-56.0915485997463,-56.0915261258631,-56.0913038185275,-56.0912705078531,-56.0908519013837,-56.0909438389146,-56.0912412010689,-56.091246215304,-56.091260229198,-56.0912732225656,-56.0912862159333,-56.0912995494764,-56.0913125428441,-56.0913255295417,-56.0913388630848,-56.0913518564525,-56.0913737344022,-56.0913939381551,-56.0914066113577,-56.0914295431842,-56.0914442440992,-56.0914763806728,-56.0914968979207,-56.0915116121759,-56.0915314557431,-56.0915632788217,-56.0915851834519,-56.0915975031388,-56.0916104965064,-56.0916327346419,-56.0916693268468,-56.0916850682984,-56.09170456502,-56.0917237282363,-56.0917459597016,-56.0917681978371,-56.0917818848958,-56.0917952184389,-56.0918150620061,-56.091840021545,-56.0918530149127,-56.0918755932236,-56.0918985117099,-56.0919183686173,-56.0919378653389,-56.0919686812315,-56.0919936474405,-56.0920165659268,-56.0920408451149,-56.0920610288575,-56.0920873824487,-56.0920993619602,-56.0921120218226,-56.0921342466178,-56.092155784392,-56.0921786895381,-56.0922009276736,-56.0922313833804,-56.0922512202774,-56.0922713973499,-56.0922850844087,-56.0922980777764,-56.0923107376387,-56.0923237310064,-56.0923452687806,-56.0923572482921,-56.0923853227708,-56.0924000236858,-56.0924208811092,-56.0924482418865,-56.0924660510712,-56.0924879290208,-56.0925091266197,-56.0925399358421,-56.0925597660691,-56.0925727727769,-56.0925857594745,-56.0925987528422,-56.0926192834303,-56.0926353650574,-56.0926514333442,-56.0926658007538,-56.0926805016688,-56.0927000050606,-56.0927201621227,-56.0927413597215,-56.092762910836,-56.0927827544032,-56.0928012439387,-56.0928337473682,-56.0928474277569,-56.0928614283106,-56.0928774965975,-56.0928935648843,-56.0929185244232,-56.0929400621975,-56.0929588785682,-56.092979762672,-56.0929958576393,-56.0930095580383,-56.0930324965349,-56.0930581631052,-56.0930797142196,-56.0931012653341,-56.0931221360977,-56.0931382177247,-56.0931638709547,-56.093180966438,-56.093201490356,-56.0932186125197,-56.0932418645113,-56.093264429482,-56.0932917902593,-56.0933119740019,-56.0933352393338,-56.0933584979955,-56.0933783549029,-56.0933981984701,-56.0934142934373,-56.0934303750644,-56.0934440687933,-56.0934833824016,-56.0935209884627,-56.093536022883,-56.0935620029483,-56.0935934858515,-56.0936191524217,-56.0936369549362,-56.0936544106052,-56.093665716436,-56.0936866005397,-56.0937044030543,-56.093733164554,-56.0937530214614,-56.093777647495,-56.0937923617502,-56.0938115249665,-56.0938303413372,-56.0938495112236,-56.093865926356,-56.093882007983,-56.0938953548664,-56.0939083615743,-56.0939361092178,-56.0939532113711,-56.093971347391,-56.0939891365653,-56.0940226605211,-56.0940459191829,-56.0940640552028,-56.0940849192963,-56.0941095786804,-56.0941253334722,-56.0941404012431,-56.0941541083121,-56.0941678087111,-56.0941808287592,-56.0941938354671,-56.0942037429302,-56.0942427896771,-56.0943250276284,-56.0945362403949,-56.0945732977867,-56.0946490246192,-56.0947103403052,-56.0947779067333,-56.0948395016684,-56.0949581647797,-56.0951036476632,-56.0951555381981,-56.0950683077374,-56.0951005781164,-56.0953715158657,-56.0954273441435,-56.0955034066734,-56.0954781250883,-56.0954112962801,-56.0954522111948,-56.0955473420025,-56.0955734339568,-56.0956126460311,-56.0956927333324,-56.0957110391225,-56.0957168621899,-56.095724539529,-56.0957902156015,-56.0959839814033,-56.0961053371902,-56.0961715336506,-56.096172276916,-56.0962446309906,-56.0962891620707,-56.0962966539735,-56.0963829736258,-56.0964864507457,-56.0965980885197,-56.0966903615989,-56.096778702912,-56.0968573445842,-56.0969462428872,-56.09705537607,-56.0971193648885,-56.0971754155973,-56.0973145591339,-56.0973622075822,-56.0974241188818,-56.0974446137201,-56.097448545691,-56.0974648302388,-56.0974956003516,-56.0975121075623,-56.0975697714732,-56.0976110394885,-56.0976928705862,-56.0977196159664,-56.0977895582949,-56.0978532687001,-56.0978860605598,-56.0979846401933,-56.0980007950684,-56.0981651070079,-56.0981821859963,-56.0981828808362,-56.0981869748313,-56.0982013622512,-56.0982140421239,-56.0982315311434,-56.0982459185634,-56.0982647482744,-56.0982873265852,-56.0983212040567,-56.0983417479851,-56.0983660605237,-56.0983787403963,-56.0983917471042,-56.0984102366398,-56.0984297533717,-56.098447229051,-56.098461302976,-56.0984825405954,-56.0985027510185,-56.0985198731821,-56.0985400769351,-56.0985698189404,-56.0985906763638,-56.0986077851873,-56.0986217990813,-56.0986395949257,-56.0986659485169,-56.0986789552248,-56.0986916150872,-56.0987053221562,-56.0987214171235,-56.0987317424485,-56.0987495449631,-56.0987704157267,-56.0987905994693,-56.0988258576528,-56.098846074746,-56.0988710743055,-56.0988871692728,-56.0989056721485,-56.0989241750243,-56.0989443921174,-56.0989611674355,-56.0989776092483,-56.0990063840883,-56.0990156421962,-56.0990303697916,-56.0990375801769,-56.0990468382848,-56.0990598716732,-56.0990749727945,-56.099095523393,-56.0991071760693,-56.0991184885701,-56.0991267194816,-56.0991479771114,-56.0991668201626,-56.0991777858178,-56.0991976427252,-56.0992164791063,-56.099235295477,-56.099250369918,-56.0992654243486,-56.0992815059757,-56.0992976009429,-56.0993205394395,-56.0993386754594,-56.0993595662333,-56.0993698648779,-56.0993791563364,-56.0993867068971,-56.0993952913243,-56.0994055766287,-56.0994213447608,-56.0994306028687,-56.0994412350187,-56.0994532145301,-56.0994662345783,-56.0994812756687,-56.0995028267831,-56.0995178745436,-56.0995466360433,-56.0995603497825,-56.0995799065351,-56.099593600264,-56.099611742954,-56.0996449534148,-56.0996668713851,-56.0996956929158,-56.0997330655231,-56.0997440912094,-56.0997530224821,-56.0997582385055,-56.0997586187016,-56.0997566243397,-56.0997501810167,-56.0997375745152,-56.0997376632117,-56.0997615935691,-56.0997790825886,-56.0997955244014,-56.0998150277932,-56.0998383264756,-56.0998472444081,-56.0998592266122,-56.0998740953514,-56.0998875320717,-56.0999024842482,-56.099901938409,-56.0998720530426,-56.0998272153861,-56.0997150411175,-56.0996086349463,-56.0995012512756,-56.0995043736807,-56.0995506384762,-56.0996751805772,-56.0998018223588,-56.0998727704949,-56.0999095004768,-56.0999256171092,-56.0999755245407,-56.100117192514,-56.1002427743356,-56.1003311984162,-56.1003768344474,-56.1004930835686,-56.1005506106366,-56.1006038807884,-56.1006311363321,-56.1006952751523,-56.100677937213,-56.1007268792909,-56.1007781455529,-56.1008463530655,-56.1009226575038,-56.1010274739456,-56.1011106800391,-56.1011564841094,-56.1012356524351,-56.1013151715304,-56.1013663157126,-56.1013556900864,-56.1013845375902,-56.1014697929689,-56.101475392097,-56.1014995092859,-56.1015573871331,-56.1016318252722,-56.1017049304932,-56.1017190839534,-56.101689071153,-56.1016097503538,-56.1015572582908,-56.1015324026982,-56.1015739335246,-56.1016315520844,-56.101836416687,-56.1018282431749,-56.101606376424,-56.1015014839728,-56.1014824104668,-56.1014477744166,-56.1013051845513,-56.1012353947711,-56.1012511470234,-56.1012512751694,-56.1012597528749,-56.1012638149698,-56.1012712788191,-56.1012787426684,-56.1012923496859,-56.1013029084646,-56.101311066005,-56.1013195904013,-56.101332523738,-56.1013475114675,-56.1013625125373,-56.1013781806177,-56.1013941955437,-56.1014016927436,-56.1014095234487,-56.1014187281958,-56.1014282731184,-56.1014378047007,-56.1014463224269,-56.1014544999776,-56.1014718822754,-56.1014800598261,-56.1015080275832,-56.1015288249756,-56.1015472411399,-56.1015656639744,-56.1015803248687,-56.1015953392787,-56.1016076056047,-56.1016202254465,-56.1016352398564,-56.1016499007508,-56.1016645616451,-56.1016778551676,-56.101688767462,-56.1016983123846,-56.1017201503136,-56.1017399405199,-56.1017703095153,-56.1018003249951,-56.1018139720332,-56.1018272788959,-56.1018395585622,-56.101851498053,-56.1018675263192,-56.1018835679256,-56.101893793199,-56.1019077804126,-56.1019221144717,-56.1019367887062,-56.101961361379,-56.10197331421,-56.1020013219877,-56.1020187443062,-56.1020306971372,-56.1020467387436,-56.1020846449595,-56.1021263397959,-56.1021417143917,-56.1021642660221,-56.1021929674909,-56.1022121040267,-56.1022159586462,-56.1022165485406,-56.1025126666976,-56.1028788542764,-56.1029752081264,-56.1030391286404,-56.103113195655,-56.1031360147374,-56.1031459077827,-56.1031531100328,-56.10317596712,-56.1032016163813,-56.1032229823096,-56.1032512843448,-56.1032641343091,-56.1032924109978,-56.1033180222115,-56.1033363805173,-56.1033618776858,-56.1033775958473,-56.1034398729725,-56.1034722682727,-56.1035076584795,-56.1035515646308,-56.1036124393293,-56.1036464524313,-56.1036833463969,-56.10368898147,-56.1037101699926,-56.103978231939,-56.1040786466208,-56.1040802274658,-56.1040959088864,-56.1041184605169,-56.1041375970527,-56.1041642774792,-56.1041779378575,-56.1041980949197,-56.1042196060135,-56.1042421443038,-56.1042568318785,-56.1042701454113,-56.1042855200071,-56.1043149084968,-56.1043272015033,-56.1043504468248,-56.1043764469004,-56.1043976444992,-56.1044102776811,-56.1044301079081,-56.1044519791877,-56.1044810074916,-56.1045038992975,-56.1045168926652,-56.1045418522041,-56.1045630364627,-56.104577377192,-56.1045965137278,-56.1046238478247,-56.1046488073637,-56.1046652024857,-56.1046809172569,-56.1046966253579,-56.1047113129327,-56.1047359056158,-56.1047669883126,-56.1047847508065,-56.1048028401356,-56.1048243645697,-56.1048458956738,-56.1048694544904,-56.1048930333172,-56.1049162652986,-56.1049408646517,-56.1049634296224,-56.1049839468703,-56.1050129885145,-56.1050423970146,-56.1050612000451,-56.1050800030756,-56.1050940169696,-56.1051076973583,-56.1051302423186,-56.1051527939491,-56.1051647467801,-56.1051815020879,-56.1052016591501,-56.1052334555483,-56.1052724156411,-56.1052853889984,-56.1053062464218,-56.1053267436594,-56.1053561521595,-56.1053756222007,-56.1053899562598,-56.1054066915572,-56.1054220794932,-56.1054442976183,-56.1054583181824,-56.1054801827919,-56.1055037616188,-56.1055218776283,-56.1055369253888,-56.105557082451,-56.105571096345,-56.1055854570845,-56.1055936838672,-56.1056871313961,-56.1062684837078,-56.106888536475,-56.1080636842859,-56.1090703470688,-56.109507256424,-56.1095116358369,-56.1095257425239,-56.1095466132875,-56.1095674707109,-56.1095896754958,-56.1096033558844,-56.1096286555988,-56.1096406017598,-56.1096628132148,-56.1096843376488,-56.1096973110062,-56.1097174880787,-56.1097376451408,-56.1097591829151,-56.1097779859456,-56.1097967889762,-56.109817986575,-56.1098320071391,-56.1098473884049,-56.1098620893199,-56.1098928585217,-56.1099119883875,-56.1099301110671,-56.1099482337468,-56.1099625878162,-56.1100032754665,-56.1100408815276,-56.11006105193,-56.1100856846337,-56.1100993583523,-56.1101294472032,-56.1101520255141,-56.1101691209973,-56.1101930533398,-56.1102214279734,-56.1102402310039,-56.1102590540448,-56.1102826395417,-56.1102966601058,-56.1103106806699,-56.1103318715986,-56.110353416043,-56.1103763211891,-56.1103995798508,-56.1104136004149,-56.1104454101534,-56.1104693424959,-56.1104878186912,-56.1105062815463,-56.1105182610578,-56.1105418532249,-56.1105545197573,-56.1105709415598,-56.1106037784946,-56.1106314861175,-56.1106461870325,-56.1106591937404,-56.1106827992477,-56.1107087993232,-56.1107388948443,-56.110753955945,-56.1107761740701,-56.1108059360858,-56.1108199699901,-56.1108391131961,-56.1108524600794,-56.110868201531,-56.110883589467,-56.110900358115,-56.1109130179774,-56.1109270385414,-56.1109455147368,-56.1109653583039,-56.1109828073028,-56.1110026708803,-56.1110194328582,-56.1110365416817,-56.111051262607,-56.1110697521425,-56.1110841262223,-56.1111214187883,-56.1111494665866,-56.1111734189395,-56.1111973646222,-56.1112281605044,-56.1112664669267,-56.1112945213951,-56.1113071812574,-56.1113294193929,-56.111355079293,-56.1113725282919,-56.111395433438,-56.111407759795,-56.1114333996848,-56.1114566583466,-56.111475141212,-56.1114932705618,-56.1115113932415,-56.1115312368086,-56.111566108126,-56.1116009994537,-56.1116256121471,-56.1116427076303,-56.1116570683699,-56.1116827082597,-56.1116964019885,-56.1117104158825,-56.1117237494256,-56.1117377699897,-56.1117521440695,-56.111765817788,-56.1117794915066,-56.1118044510455,-56.1118232540761,-56.1118506081833,-56.111878996157,-56.1119019346537,-56.111936866002,-56.1119563827339,-56.1119813822935,-56.1119943890014,-56.1120245045327,-56.1120587088394,-56.1120809469749,-56.1120977156229,-56.1121097084746,-56.1121230887085,-56.1121347547249,-56.1121484751342,-56.1121628892346,-56.1121718271775,-56.1121838467096,-56.1121976271498,-56.1122096533521,-56.1122206190073,-56.1122357067885,-56.1122504543942,-56.1122627940914,-56.1122706848275,-56.1122888475279,-56.1123042621442,-56.1123200302763,-56.1123505059934,-56.1123774999148,-56.1124000515453,-56.1124130249026,-56.1124321881189,-56.1124421332479,-56.1124586017411,-56.1124791590097,-56.1125017506608,-56.1125267568905,-56.1125411443104,-56.1125671710664,-56.112582912518,-56.1125976267732,-56.112623640189,-56.1126438306017,-56.1126626469725,-56.1126893474092,-56.1127222110245,-56.1127348908972,-56.1127502855032,-56.1127656867794,-56.112793067567,-56.1128060742749,-56.1128221625721,-56.1128508907212,-56.1128638840889,-56.1128775578075,-56.1128980283647,-56.1129167780344,-56.1129262896064,-56.1129265897612,-56.1129224409549,-56.1129182921486,-56.1129151705387,-56.1129113685779,-56.1129079067926,-56.1129040981617,-56.11288522176,-56.1128714880105,-56.1128577676012,-56.112850563886,-56.1128388778592,-56.1128299332463,-56.1128175601985,-56.112806581203,-56.1127925206183,-56.1127835960156,-56.1127691952555,-56.1127599371475,-56.112751019215,-56.1127420812721,-56.1127273269963,-56.1127084439245,-56.1126991858165,-56.1126902678839,-56.112680322755,-56.1126683165631,-56.112675446907,-56.112691148338,-56.1127024008079,-56.1127235517159,-56.1127399334978,-56.1127518729886,-56.1127717032156,-56.1127864441512,-56.1128063344091,-56.1128135447943,-56.1128214355304,-56.1128293262666,-56.1128372236728,-56.1128451144089,-56.1128585213232,-56.1128677994415,-56.1128774110651,-56.1128859888222,-56.1128942264039,-56.1129069196168,-56.1129165512507,-56.1129210535727,-56.112920073067,-56.1129283506693,-56.1129386693243,-56.1129438386569,-56.1129500351859,-56.1129637822756,-56.1129737274046,-56.1129833323581,-56.1129932908273,-56.113005283679,-56.1130176367164,-56.1130286090418,-56.1130395947074,-56.1130580975831,-56.1130670288559,-56.1130814362862,-56.1131006395231,-56.1131147001078,-56.1131291208783,-56.1131363312636,-56.1131469700836,-56.1131620445246,-56.1131744109022,-56.1131850563924,-56.1131950148615,-56.1132042729695,-56.1132169928628,-56.1132238764128,-56.1132276850437,-56.113229452622,-56.1132298528284,-56.1132350555115,-56.1132443269597,-56.113251537345,-56.1132590879056,-56.1132676656627,-56.1132834538051,-56.1133060454562,-56.1133221004028,-56.1133364011114,-56.1133483539424,-56.1133719394394,-56.1133910893155,-56.1134106193876,-56.1134219452287,-56.1134294957894,-56.1134367061746,-56.1134442567353,-56.1134511402853,-56.1134481520775,-56.113445490705,-56.1134435096833,-56.1134538283383,-56.1134607118883,-56.113467948954,-56.1134796283106,-56.1134919680079,-56.113499918775,-56.1134975708974,-56.1134918145954,-56.1134840105707,-56.1134772337424,-56.1134741988439,-56.1134783476502,-56.1134869520877,-56.1134952030096,-56.1135055216645,-56.1135175411966,-56.1135210096521,-56.1135254919637,-56.1135320353383,-56.1135399594249,-56.113567680388,-56.113582381303,-56.1136071914405,-56.1137054692835,-56.113732603171,-56.1137781935218,-56.113793641056,-56.1137847486678,-56.1139678083054,-56.1142872101563,-56.1142714942271,-56.1142865388704,-56.1142832345739,-56.1143134849864,-56.1143588606194,-56.1144018179912,-56.114423471168,-56.1145055445986,-56.114613138953,-56.114766054844,-56.1148816288162,-56.1150377140532,-56.1151774129595,-56.115337101715,-56.1154776913596,-56.1157349014706,-56.1157658490276,-56.115636007599,-56.1156857596166,-56.1158502810275,-56.1159728106628,-56.1165258292188,-56.1168968414711,-56.1172601255726,-56.1172690225982,-56.1173157892896,-56.1168586376189,-56.1171671033692,-56.1176763193182,-56.1182038447099,-56.1187381736103,-56.1192534460162,-56.1173678935885,-56.1168063706635,-56.1166700937153,-56.1171659469445,-56.1174506562714],&#34;lat&#34;:[-34.8903899303676,-34.8894782185078,-34.8887335002709,-34.8887808592785,-34.8887849880745,-34.8887885411569,-34.8884189934884,-34.8872555619169,-34.8870189102348,-34.8856262127632,-34.8844150041536,-34.884437818628,-34.884446960426,-34.8845372656176,-34.884568098525,-34.8845774102023,-34.8846515184218,-34.8846384262531,-34.884677970321,-34.8847029025623,-34.8845366374032,-34.8841821212699,-34.8841935811599,-34.8841499095863,-34.8841011394844,-34.8840467052783,-34.8840237174799,-34.8839773859851,-34.8839352103163,-34.8838941195057,-34.8837905347269,-34.8837379722051,-34.8835442581384,-34.8835092530775,-34.8835008151942,-34.8834438047976,-34.8834076625964,-34.8832926518234,-34.8830328958963,-34.8828353484952,-34.882380052792,-34.882387686057,-34.8824949550755,-34.8827384327535,-34.8829302487393,-34.8830796318676,-34.8829655655268,-34.8828428526697,-34.8826962800842,-34.8823158758278,-34.8817378639266,-34.8827554076189,-34.8830560051581,-34.8835415266844,-34.8836467399828,-34.8836485810435,-34.8836970153683,-34.8837033547763,-34.8847601280087,-34.8856670613299,-34.8857744293073,-34.8857821836181,-34.8857386512902,-34.8856654402276,-34.8857685612284,-34.8855839691376,-34.8853961860625,-34.8853221614277,-34.8850405146649,-34.8851122777531,-34.8879402132358,-34.8880530797773,-34.8887843640026,-34.8900105682348,-34.8902523245513,-34.8904673009361,-34.8907294713109,-34.8908527768772,-34.8909113767909,-34.891976782081,-34.8920039294149,-34.892420450496,-34.8927061176115,-34.8935755591112,-34.8946003743012,-34.8946272995684,-34.8946614669498,-34.8946889601911,-34.8949780401687,-34.8950268210649,-34.8956437177069,-34.8956335972396,-34.895677992415,-34.8956784944821,-34.8956784661341,-34.8956784394537,-34.8956784136071,-34.8956783860929,-34.8956783602462,-34.8956783335658,-34.8956783068853,-34.8956782802049,-34.8956782360155,-34.8956872089764,-34.895696196945,-34.8957051640696,-34.8957051340541,-34.8957050690206,-34.8957050273324,-34.8957095046415,-34.8957139711116,-34.8957229198934,-34.8957318895193,-34.8957363718309,-34.8957363451505,-34.8957408066181,-34.8957452397376,-34.8957497145454,-34.8957541818493,-34.895758649987,-34.8957631114546,-34.8957675729221,-34.8957720518987,-34.8957720252183,-34.8957764916884,-34.8957764408289,-34.8957764141484,-34.895780875616,-34.895785335416,-34.8957943092107,-34.8957987765146,-34.8958122342885,-34.8958166907534,-34.8958211513872,-34.8958211013614,-34.8958255678316,-34.8958345274523,-34.8958390105977,-34.8958434912418,-34.8958434462186,-34.8958434020291,-34.8958433553384,-34.8958478176397,-34.8958567689228,-34.8958612353929,-34.8958611945385,-34.8958656735151,-34.8958656468347,-34.8958701283126,-34.8958701016321,-34.8958700582764,-34.8958745405881,-34.8958880041983,-34.8958879741828,-34.8958879316609,-34.8958923831233,-34.895901360253,-34.8959013160636,-34.8959012727079,-34.8959147304817,-34.8959146896273,-34.8959191702714,-34.895919143591,-34.8959191177443,-34.8959235825469,-34.895928056521,-34.8959280240042,-34.8959325013133,-34.8959324712978,-34.8959369386017,-34.8959323904227,-34.8959323470671,-34.8959368102021,-34.8959412766723,-34.8959502529682,-34.8959592000825,-34.8959591725683,-34.8959546368958,-34.8959546035453,-34.8959545710285,-34.8959545201689,-34.8959544759795,-34.8959589449509,-34.8959679154105,-34.8959768967091,-34.8959858830102,-34.895994849301,-34.896003811423,-34.8960082737244,-34.8960127368594,-34.8960172008283,-34.896021675636,-34.8960261295997,-34.8960260945817,-34.8960305593843,-34.8960395390153,-34.896039490657,-34.8960394448001,-34.8960438954287,-34.8960483610651,-34.8960528208651,-34.8960572798314,-34.8960662536261,-34.8960707200962,-34.896079700561,-34.896084174535,-34.8960886535116,-34.8960885734703,-34.8960884959303,-34.8960839585903,-34.8960839052294,-34.896092854845,-34.8961018161332,-34.896110793263,-34.8961152647357,-34.8961242552056,-34.896133226499,-34.8961422036288,-34.8961556655714,-34.8961646385323,-34.8961690958311,-34.8961735714726,-34.8961780404441,-34.896182507748,-34.8961914823764,-34.8961914490259,-34.8961959229999,-34.8962004019765,-34.8962048826206,-34.8962228535553,-34.8962273258618,-34.8962317948332,-34.8962362654722,-34.8962407044282,-34.8962451633944,-34.8962496323658,-34.8962540963347,-34.896267566615,-34.8962765479135,-34.8962855308796,-34.8962945171808,-34.8963035034819,-34.896312489783,-34.8963169704271,-34.8963250940648,-34.8963416954499,-34.8963524863576,-34.8964303957415,-34.8964306717971,-34.8964719482873,-34.8965131173953,-34.8965475476248,-34.8965632734945,-34.8966320111392,-34.8966958592919,-34.8968455244206,-34.896914425359,-34.8969757342209,-34.8970523904497,-34.8970307534001,-34.8970414975564,-34.8970938962727,-34.8971799127811,-34.8972039661827,-34.8971656580641,-34.8971858352247,-34.8972187308495,-34.8972379865868,-34.8972584789848,-34.8972907529614,-34.8973417005848,-34.8973608490401,-34.8973402378207,-34.8973513184732,-34.8973229727869,-34.8972551243043,-34.897228520716,-34.8972984021831,-34.8973663118968,-34.8973805244688,-34.8973320995626,-34.8972905206239,-34.897325133431,-34.8973427534476,-34.8973060181161,-34.8972727516388,-34.897271866078,-34.8972570742747,-34.8972150818674,-34.8971058525542,-34.8970790648107,-34.8970659537669,-34.8970745877095,-34.897091580412,-34.8971086648395,-34.8971190714228,-34.8971158012912,-34.8971145330894,-34.8971063577309,-34.8971544630586,-34.8971563579546,-34.8971619661983,-34.8971726171982,-34.8971864313903,-34.8972092155722,-34.89723817342,-34.8972750160508,-34.8972806306064,-34.8972801800855,-34.8972822048899,-34.897291187856,-34.8973001758247,-34.8973181667697,-34.8973271514033,-34.8973361260317,-34.897340584998,-34.897349529611,-34.8973584992369,-34.8973719695171,-34.8973809574858,-34.8973854364624,-34.8973944127584,-34.8974033857193,-34.8974168693398,-34.8974348686225,-34.8974483439054,-34.8974618225233,-34.8974708021543,-34.8974797734477,-34.8974797117492,-34.897479666726,-34.8974841390325,-34.897484109017,-34.897488579656,-34.8974975376092,-34.8975020182533,-34.8975064972299,-34.897515483531,-34.897524463162,-34.8975469764394,-34.8975559527353,-34.8975604167042,-34.897564880673,-34.8975783292755,-34.8975918062259,-34.8976052748387,-34.8976142561372,-34.8976277380902,-34.8976412200432,-34.8976546986611,-34.8976636766247,-34.8976726562557,-34.8976906238553,-34.8976996184941,-34.8977086014602,-34.8977176011015,-34.8977265957403,-34.897740089366,-34.8977580853136,-34.897771562264,-34.8977805519002,-34.8977895432039,-34.8977985395102,-34.8978165221176,-34.8978300040706,-34.8978389953743,-34.8978479666677,-34.8978569412962,-34.8978614086001,-34.8978703915662,-34.8978748672077,-34.8978793395142,-34.8978883191452,-34.897897285436,-34.8979017544074,-34.8979152313579,-34.8979287316536,-34.8979467392739,-34.8979557372477,-34.8979692408786,-34.8979782321823,-34.8979917208054,-34.8980007154442,-34.8980097067479,-34.898014187392,-34.8980231753607,-34.8980231436777,-34.8980276043115,-34.8980275726284,-34.8980410345711,-34.8980545265293,-34.8980770197963,-34.8980814971053,-34.8980904734013,-34.8981039253388,-34.8981173989542,-34.8981488885275,-34.898184865415,-34.8982118826819,-34.8982253846452,-34.8982524169197,-34.8982659355583,-34.8982839681915,-34.8983020091624,-34.8983155561489,-34.8983250677053,-34.8983425484029,-34.8983605393479,-34.8983695189789,-34.8983739846153,-34.8983919638877,-34.8984009585264,-34.8984227440588,-34.8984324499218,-34.8984465457137,-34.898477448266,-34.8986831895739,-34.8987753437115,-34.8988365952808,-34.8988413629511,-34.8987845896101,-34.898817385135,-34.8988426015748,-34.8989619127272,-34.8990692070739,-34.8992954852311,-34.8993324010174,-34.8993914574097,-34.8994713555608,-34.8995682994741,-34.8996631235345,-34.8996752502942,-34.8996675070891,-34.8996888393073,-34.8997778762724,-34.8997992964292,-34.8997437055149,-34.8997369090609,-34.8997751736112,-34.8998072367686,-34.8998369910871,-34.8998093778309,-34.8997860887686,-34.899799249894,-34.8998462129375,-34.8998496275963,-34.8998555648571,-34.8999177339503,-34.8999477141394,-34.8999312967568,-34.8998150490585,-34.899818061603,-34.8997892997194,-34.8997431533829,-34.8997125398532,-34.8997017706798,-34.8997303134748,-34.8997252552959,-34.8996735736574,-34.8996215655917,-34.8995733919458,-34.899557608021,-34.8995000395263,-34.8994303651138,-34.899443387667,-34.8993511266458,-34.8993216740505,-34.8994152090141,-34.8993752440479,-34.8992547350132,-34.8991593042312,-34.8989930938484,-34.8988498157056,-34.8987950147994,-34.8987946132109,-34.8987720599129,-34.8987585312692,-34.8987404869633,-34.8987224443249,-34.8986998793542,-34.8986863373703,-34.8986727987214,-34.898663767397,-34.8986457114184,-34.8986276521048,-34.8986141001157,-34.8985960391345,-34.8985779781533,-34.8985689484965,-34.8985599171722,-34.8985508841803,-34.8985418495209,-34.8985283092044,-34.8985192778801,-34.8985102465558,-34.898492180572,-34.8984831509152,-34.898460555929,-34.8984424849427,-34.8984289246159,-34.8984153642892,-34.8984018139676,-34.8983927676355,-34.898379220649,-34.898370180987,-34.8983611346549,-34.8983475826658,-34.8983340306767,-34.8983204820226,-34.8983114456957,-34.8983024110363,-34.8982888440395,-34.8982752820452,-34.898257189381,-34.8982345910598,-34.8982255480628,-34.8982165067333,-34.8982074670713,-34.8981984274093,-34.8981848720851,-34.8981758240855,-34.8981667894261,-34.8981577447616,-34.8981487017645,-34.8981396571,-34.898126083433,-34.8981215510955,-34.898112478083,-34.8981079340729,-34.8981034017355,-34.8980943537358,-34.8980807533885,-34.898076157685,-34.8980716186774,-34.8980670629946,-34.8980624956391,-34.898057948294,-34.8980562716213,-34.8980553545346,-34.8978943033026,-34.8977967318321,-34.8977857831166,-34.8977641010978,-34.8977203401662,-34.8977041847316,-34.8977054237181,-34.8976938169928,-34.8976741638701,-34.8976580293055,-34.897645361093,-34.8976455699076,-34.8976351708309,-34.8976377114228,-34.8976250745135,-34.8976287079097,-34.8976265640323,-34.8976126881413,-34.8976119815516,-34.8976262123518,-34.8976253074028,-34.8976221332791,-34.8976202502704,-34.8976158371638,-34.8976067813443,-34.8976091548735,-34.8976128090843,-34.8975588181483,-34.8975187506406,-34.8975176479806,-34.8975040926564,-34.8974995386412,-34.897494991296,-34.8974994402571,-34.8974949045846,-34.8974903539043,-34.897481294232,-34.8974722328922,-34.8974676938847,-34.8974631582122,-34.8974586192046,-34.8974540485141,-34.8974495161766,-34.8974494661508,-34.897453918447,-34.8974538717562,-34.8974493377512,-34.8974492960631,-34.8974447420478,-34.8974356657002,-34.8974311100174,-34.897431083337,-34.8974310299761,-34.8974264776284,-34.8974219402884,-34.8974173912756,-34.8974128255877,-34.8974127722268,-34.8974082315517,-34.8974036908767,-34.8973991502016,-34.897394611194,-34.8973855448516,-34.897376465169,-34.8973719194914,-34.8973628664891,-34.8973583141414,-34.8973537601261,-34.8973446971187,-34.8973401381009,-34.8973355824181,-34.8973310234002,-34.8973309750419,-34.8973309300187,-34.8973263609957,-34.8973262976297,-34.897326257609,-34.8973262175884,-34.8973261875729,-34.8973261575574,-34.8973216035421,-34.8973170478593,-34.8973125155219,-34.8973124788363,-34.8973079281561,-34.897307861455,-34.8973032707541,-34.8972987350816,-34.8972986900584,-34.8972941393782,-34.8972940760121,-34.897289528667,-34.8972804840024,-34.8972759399923,-34.8972759083093,-34.897275859951,-34.8972758299355,-34.8972712759202,-34.8972667185699,-34.8972666802168,-34.8972666468662,-34.897262096186,-34.8972620661705,-34.897262036155,-34.8972620187112,-34.8972505873879,-34.897152705124,-34.8971450038356,-34.8971740648025,-34.8971896205164,-34.8971478725842,-34.8971520972942,-34.897149851632,-34.8971543122657,-34.8971542672425,-34.8971497115597,-34.8971496815442,-34.8971496265159,-34.8971450941784,-34.8971405384956,-34.8971359844803,-34.8971314488078,-34.8971314054521,-34.8971268547719,-34.8971268080811,-34.897126766393,-34.8971267247048,-34.8971266796816,-34.8971266479986,-34.897126614648,-34.897126582965,-34.897126516264,-34.8971219672513,-34.8971219272306,-34.89712188721,-34.8971218571945,-34.8971217671481,-34.8971216854392,-34.8971216420836,-34.8971260943797,-34.8971260643643,-34.8971259993307,-34.8971304566295,-34.8971304199439,-34.897130366583,-34.8971303048845,-34.8971302631964,-34.8971347305003,-34.8971346788069,-34.8971346471239,-34.8971346171085,-34.8971345704177,-34.8971345237269,-34.8971344737012,-34.8971389293324,-34.8971388993169,-34.8971433366053,-34.8971432832445,-34.8971477505484,-34.8971477105277,-34.8971521911718,-34.8971521394785,-34.8971566184551,-34.8971610890941,-34.8971655247149,-34.897169970341,-34.897169938658,-34.8971744176346,-34.8971788715983,-34.8971833222269,-34.8971877628504,-34.8971922368244,-34.8971921884661,-34.8971966307571,-34.8972011063987,-34.8972010647105,-34.8972055420196,-34.897210014326,-34.8972099809755,-34.8972144516145,-34.8972189305911,-34.8972189005756,-34.897223366212,-34.8972278301808,-34.8972322991522,-34.8972412687781,-34.8972457394171,-34.8972502083885,-34.8972546823625,-34.897263656991,-34.8972681326325,-34.8972770639052,-34.8972815095313,-34.897285963495,-34.8972904174587,-34.8972993654067,-34.8973037876874,-34.8973082333134,-34.89731271229,-34.8973171695888,-34.8973216202174,-34.8973260891888,-34.897326039163,-34.8973305198071,-34.8973304631112,-34.8973349187425,-34.8973393843788,-34.8973438516827,-34.8973438116621,-34.8973482756309,-34.8973481989247,-34.897352629543,-34.8973525745147,-34.8973525378291,-34.8973525061461,-34.8973524494501,-34.8973569267592,-34.8973568967437,-34.8973568667283,-34.8973568350453,-34.8973613106868,-34.8973612806713,-34.8973612506558,-34.8973611956274,-34.8973611556068,-34.8973610939083,-34.8973655395344,-34.8973745024901,-34.8973924534146,-34.8974014247079,-34.8974148899857,-34.8974193689623,-34.8974283169103,-34.8974327475286,-34.8974372064949,-34.8974416754663,-34.897450663435,-34.8974641553931,-34.8974776506863,-34.8974911409769,-34.8975091369246,-34.8975226372203,-34.8975406398381,-34.8975721577593,-34.8975901587096,-34.8975991483458,-34.8976126353013,-34.8976261239244,-34.8976351118931,-34.8976441081994,-34.8976575884848,-34.8976665681158,-34.8976800550714,-34.8976935086765,-34.8976889413209,-34.8976843856381,-34.8976798499656,-34.8976843139345,-34.8976933069057,-34.8977112978508,-34.8977247731337,-34.897733737757,-34.8977472030347,-34.8977561860008,-34.8977696479434,-34.8977741202499,-34.8977785958914,-34.8977875521771,-34.8977920144784,-34.8977964801148,-34.8978054347329,-34.8978188833354,-34.8978278696365,-34.897832341943,-34.8978368142495,-34.8978457688676,-34.8978502461767,-34.8978547184831,-34.8978591624417,-34.8978591324262,-34.8978591024107,-34.8978455370814,-34.8978274677626,-34.8978094184541,-34.897795898148,-34.8977823861795,-34.8977688742111,-34.8977553605751,-34.8977418469391,-34.8977283349706,-34.8977148213346,-34.8976923297351,-34.89767433212,-34.8976608418293,-34.8976518438555,-34.8976338412378,-34.8976158336174,-34.8975978326672,-34.8975843357065,-34.8975708454159,-34.8975618524446,-34.897548362154,-34.8975393691828,-34.897530374544,-34.8975168742482,-34.8974988783006,-34.8974763867011,-34.8974673920623,-34.8974583974236,-34.8974494061198,-34.8974359124942,-34.8974223755128,-34.8974133275132,-34.8974042878512,-34.8973907208544,-34.8973816711872,-34.8973726298577,-34.897372586502,-34.8973860751251,-34.8974040594001,-34.8974130573739,-34.8974220536802,-34.8974310499865,-34.8974400462927,-34.897449042599,-34.8974715475388,-34.8974850478345,-34.8974985481303,-34.8975075427691,-34.8975165390754,-34.8975300310335,-34.8975480369863,-34.8975660562793,-34.897579578253,-34.8976020948654,-34.8976200991506,-34.8976336094516,-34.8976471164174,-34.8976696213572,-34.8976786126609,-34.8976876056321,-34.8977011042604,-34.897710092229,-34.8977235858547,-34.8977325754909,-34.8977460707841,-34.8977595510695,-34.8977730530329,-34.8977865416559,-34.8978045275984,-34.8978180162215,-34.8978360121692,-34.897845010143,-34.8978585071037,-34.8978674884023,-34.8978854893525,-34.8978989863132,-34.8979124849415,-34.8979214779127,-34.8979439845199,-34.8979574898183,-34.8979710034543,-34.8979890260824,-34.898007053713,-34.8980295769955,-34.8980430772913,-34.8980520752651,-34.8980610715714,-34.8980700678777,-34.8980880604903,-34.898097023446,-34.8980924811034,-34.8980744217898,-34.8980698894523,-34.8980698360915,-34.8980697944033,-34.8980832713537,-34.8980967683144,-34.8981057646207,-34.8981147625946,-34.8981237605684,-34.8981372658667,-34.898164313149,-34.8981868547743,-34.8982093930646,-34.8982273990174,-34.8982409043157,-34.8982589152711,-34.8982769178888,-34.89828590419,-34.8983129281269,-34.8983264551031,-34.8983444944064,-34.8983625403799,-34.8983805830183,-34.8983941099945,-34.898407621963,-34.8984256312508,-34.8984391332141,-34.8984571374994,-34.8984751401171,-34.8984886520856,-34.8985021640541,-34.8985156693524,-34.8985336803078,-34.8985426332584,-34.8985425999078,-34.8985386960859,-34.8984969325134,-34.8985146396441,-34.8985099694214,-34.8984850688075,-34.8984649933724,-34.8983812829446,-34.8986062288263,-34.8986561407953,-34.8986687570542,-34.8986937462227,-34.8987039719612,-34.8987193105549,-34.8986771010415,-34.8986397389389,-34.8986303316086,-34.8985060491886,-34.8984021073662,-34.8983829384683,-34.898266512752,-34.8982625271733,-34.8983762492158,-34.8985723757876,-34.8986517884253,-34.8985969844218,-34.8985310052936,-34.8984213089775,-34.8983674767207,-34.8982658136447,-34.8982223094916,-34.8982976303648,-34.8971122059351,-34.8970831505658,-34.8970431411249,-34.8963223965589,-34.8958304486821,-34.895049604314,-34.8942236475136,-34.8933931658797,-34.8925897665461,-34.8917241718034,-34.891878667314,-34.8916085555104,-34.8908344274079,-34.8903899303676]}]],[[{&#34;lng&#34;:[-56.1110785383027,-56.1112011399025,-56.1112013400057,-56.1113396046457,-56.1114106079306,-56.1114729956163,-56.1114717327875,-56.1114698938432,-56.1114506236354,-56.1114253156858,-56.1114181321693,-56.1114131792757,-56.1113427624181,-56.1112758384332,-56.1112407284851,-56.1112143937549,-56.1111859155877,-56.1111772229855,-56.1111530455148,-56.1114327470717,-56.1116816194627,-56.1119972312974,-56.1120669941857,-56.1123696079273,-56.1123842074588,-56.1126545926973,-56.1127363689636,-56.1137390933978,-56.1144279432623,-56.1149116551365,-56.1157210776167,-56.1159132367181,-56.1168065574265,-56.1169395059914,-56.117491992045,-56.1187002540543,-56.1187569699708,-56.1188809805929,-56.1201039451875,-56.1201104401865,-56.1204271157994,-56.1214816005353,-56.122765351129,-56.1237334555499,-56.124329251437,-56.1250529793886,-56.1252102942266,-56.1253229139968,-56.1254452176365,-56.1255008978243,-56.1256205670521,-56.1255074922442,-56.125582634754,-56.1256989680314,-56.1258018502662,-56.1261680826825,-56.1265147181002,-56.1267220525716,-56.1268868038898,-56.1282025435446,-56.1282886205735,-56.1281211539381,-56.127894315881,-56.1278569343255,-56.1278190058346,-56.1277790048906,-56.1277377342318,-56.1276615504454,-56.1273133871813,-56.1272676991716,-56.1267761256546,-56.1263923544006,-56.1261492734582,-56.1264517116793,-56.1267692020839,-56.125893116931,-56.1256232911083,-56.1254453593443,-56.1253021721657,-56.1246860877685,-56.124242972576,-56.1236660216944,-56.1234741227272,-56.1225806619466,-56.121478546891,-56.1212098673475,-56.120812995111,-56.120258813709,-56.1191071639081,-56.1190390346398,-56.1189803666,-56.1184724365629,-56.1184622822828,-56.1180565287353,-56.118020970397,-56.1170696797921,-56.1169960465929,-56.1168452240345,-56.1167645076194,-56.1166188005954,-56.1161786043537,-56.1159297519211,-56.1158185897781,-56.115791667355,-56.1149464114349,-56.1149436967015,-56.1139677133619,-56.1135782991977,-56.1135464353018,-56.1134504749564,-56.1133990734331,-56.1133923899863,-56.1130785157223,-56.1126723653178,-56.1122948106032,-56.1119790811067,-56.1118308973294,-56.1116651147912,-56.1115222964281,-56.1114918262102,-56.1113251770893,-56.1110785383027],&#34;lat&#34;:[-34.8780935668744,-34.8789410763173,-34.8789426183626,-34.8799001847041,-34.8803918947498,-34.88083704078,-34.8811684610783,-34.8812275986571,-34.8818472915102,-34.8825555390461,-34.8825882936816,-34.8826205197638,-34.8829219842233,-34.8832439608969,-34.8834155532717,-34.8835442581384,-34.8837379722051,-34.8837905347269,-34.8838941195057,-34.8839352103163,-34.8839773859851,-34.8840237174799,-34.8840467052783,-34.8841011394844,-34.8841499095863,-34.8841935811599,-34.8841821212699,-34.8845366374032,-34.8847029025623,-34.884677970321,-34.8846384262531,-34.8846515184218,-34.8845774102023,-34.884568098525,-34.8845372656176,-34.884446960426,-34.884437818628,-34.8844150041536,-34.8842441318129,-34.8842371525201,-34.8841743445695,-34.8839134335722,-34.8834507315627,-34.8829531912249,-34.8826548315808,-34.8824362355562,-34.8823936172021,-34.8823556487177,-34.8823147668064,-34.8822982637602,-34.882278243629,-34.8819035625803,-34.8818722845557,-34.8818253934615,-34.8817953091242,-34.8817295502803,-34.8816875295728,-34.8816895506644,-34.8817039588522,-34.8818190175768,-34.8818054719731,-34.8812892030404,-34.880607190875,-34.8804533449564,-34.8803512829478,-34.8802402771181,-34.8801256302419,-34.8798881629441,-34.8788589133117,-34.8787395684362,-34.877226373668,-34.8760464413967,-34.8752966730446,-34.8743111256167,-34.873399984051,-34.8733794793095,-34.8733350330541,-34.8733054769779,-34.8732816913777,-34.8731298755824,-34.8730231121885,-34.8728798316284,-34.8728352027788,-34.8726254212558,-34.8723665319066,-34.8723111641155,-34.8722143261385,-34.8721164056763,-34.8719392407082,-34.8719272046834,-34.8719162732135,-34.8718279983377,-34.8718258204768,-34.8717387948332,-34.8717343683837,-34.8716012947542,-34.8715895488517,-34.8715654896219,-34.8715396529298,-34.8714930130772,-34.8713478733143,-34.8712658217135,-34.8714330683875,-34.8714734496545,-34.8725131074994,-34.8725164458877,-34.8737219709412,-34.8741985809078,-34.8742384083683,-34.8743583512552,-34.8744225989396,-34.8744308365213,-34.874816609724,-34.8753157899978,-34.8757808385852,-34.8762322292956,-34.876516582969,-34.8768873534467,-34.8771948143735,-34.8772541277151,-34.8775785252869,-34.8780935668744]}]],[[{&#34;lng&#34;:[-56.0786414941687,-56.0782917925105,-56.0769582080793,-56.0767581347958,-56.0761009538039,-56.0759561026119,-56.0751144223297,-56.0750330939709,-56.0731725356505,-56.0729575212448,-56.0718679014116,-56.071466947963,-56.071203323055,-56.0710840838435,-56.0699914937002,-56.0686396631933,-56.0685228562863,-56.0678851674138,-56.0672430629308,-56.0660223400394,-56.0654457893641,-56.0637314919237,-56.0637116817071,-56.0619146309646,-56.0605682905517,-56.0602782585179,-56.0601867914669,-56.059444014095,-56.0594632506825,-56.0594725221307,-56.0594821270842,-56.0594941466163,-56.05950751351,-56.0595294448205,-56.0595462134685,-56.0595547912256,-56.0595719067192,-56.0595863008093,-56.0596003347136,-56.0596137016072,-56.0596232932205,-56.0596613261684,-56.0596993724565,-56.059714793743,-56.059729868184,-56.0597545342382,-56.0597788667871,-56.0598062809253,-56.0598333615582,-56.0598477556482,-56.0598621497383,-56.0598758634775,-56.0598919784551,-56.0599070662362,-56.0599252222664,-56.0599389360056,-56.0599529699099,-56.0599875877632,-56.0600221922763,-56.0600691231464,-56.0601160673568,-56.0601283937138,-56.0601403865655,-56.0601492978279,-56.060159249627,-56.0601959352133,-56.060220627948,-56.060234328347,-56.0602627830218,-56.0602847143323,-56.0603069924884,-56.0603313250373,-56.0603580588246,-56.0603858198084,-56.0604146079885,-56.0604437430142,-56.0604728780398,-56.0605009858691,-56.0605283866671,-56.0605544401035,-56.0605797998488,-56.0606041323977,-56.0606281314413,-56.0606517702992,-56.0606750756517,-56.0606983676639,-56.060722019862,-56.0607453118743,-56.0607692975777,-56.0607929364355,-56.0608172556442,-56.0608415881931,-56.0608662542474,-56.0608912671471,-56.0609166135523,-56.0609426536485,-56.0609686937447,-56.060995427532,-56.0610221479791,-56.0610499089628,-56.0610776566063,-56.0611060846007,-56.0611352062861,-56.0611643413118,-56.0611941433482,-56.0612236118792,-56.0612527335646,-56.0612818419099,-56.0613102832445,-56.0613380175478,-56.0613650981806,-56.0613911249366,-56.0614164846819,-56.0614408038906,-56.0614644427485,-56.0614870544099,-56.0615089857204,-56.0615298898345,-56.0615501002576,-56.0615696436699,-56.061588480051,-56.0616066494214,-56.0616244719463,-56.0616419476256,-56.0616590897996,-56.0616762186334,-56.0616933608074,-56.0617105029814,-56.0617279786607,-56.0617454676802,-56.0617632902051,-56.061781806421,-56.061800322637,-56.0618198793896,-56.0618397563073,-56.0618603269161,-56.0618808975249,-56.0619018149792,-56.0619220387424,-56.0619422758459,-56.0619614724127,-56.0619799886287,-56.0619974776482,-56.0620139261311,-56.0620296942631,-56.0620444351988,-56.062058842629,-56.062072543028,-56.0620859232619,-56.0620993034957,-56.0621123235438,-56.0621253569322,-56.0621380434749,-56.0621507433579,-56.0621634165605,-56.0621764499488,-56.0621891364916,-56.0622018230343,-56.0622145095771,-56.0622275296252,-56.0622405630135,-56.0622535964019,-56.0622669632955,-56.0622806770347,-56.0622943907739,-56.062308784864,-56.0623231922943,-56.0623379465701,-56.0623533811968,-56.062369162669,-56.0623852776466,-56.0624020863152,-56.0624195753348,-56.0624374111999,-56.0624559274158,-56.0624751239826,-56.0624946540548,-56.062514877818,-56.0625351015813,-56.0625424605421,-56.0625410572255,-56.0625690344178,-56.0626666677207,-56.0627110676575,-56.0626911181756,-56.0626063027801,-56.0625864878837,-56.062622080491,-56.0627128786099,-56.0629224721388,-56.0630353261336,-56.0631062649009,-56.0630795695969,-56.0630764981207,-56.0631814619069,-56.0632580277201,-56.0633419679063,-56.063408850876,-56.0634204385679,-56.0634197880525,-56.063416582217,-56.0634569270747,-56.0635263431349,-56.0635785001407,-56.063698123604,-56.0637844624265,-56.0640299406205,-56.0640554477235,-56.0640050832746,-56.0639808760188,-56.063977975486,-56.0640029179051,-56.0640124394063,-56.0640422948869,-56.0640305677821,-56.0639150362537,-56.0639259383336,-56.0639545925651,-56.0640162046502,-56.0640350504239,-56.0640654081311,-56.0641382452297,-56.0642347516716,-56.0642354330156,-56.0641974186118,-56.0641485558129,-56.0641511199986,-56.064184059751,-56.0642128035827,-56.064313649198,-56.0642665796686,-56.0643315448498,-56.0644503577886,-56.0645114499026,-56.0645536960895,-56.0645805930606,-56.0646656230774,-56.0648419776606,-56.0649129856631,-56.0649854644231,-56.0650403529114,-56.0652495398794,-56.0653501336665,-56.0655709755923,-56.0656284456252,-56.0656726283262,-56.0656904690625,-56.0657423084323,-56.0658437642255,-56.0659157959739,-56.0658963230713,-56.0658747346165,-56.0659759400954,-56.0660910415401,-56.0660934970331,-56.0661571705033,-56.0662756976653,-56.0664347313715,-56.0668184624932,-56.0669948179321,-56.0670427664613,-56.0671789016916,-56.0672667845804,-56.0672275356604,-56.06715457299,-56.067021613446,-56.0669997573339,-56.0671684744617,-56.067347517658,-56.0675799793866,-56.0676601701114,-56.0677696767203,-56.0679778743705,-56.0680389321822,-56.0681526330803,-56.0681497777999,-56.068136365055,-56.0680119916423,-56.0679709420104,-56.0681215433701,-56.0681894817825,-56.0682364042088,-56.0684927250384,-56.068507193293,-56.06869330223,-56.0690964502931,-56.0693361930437,-56.0695552212223,-56.0696843743653,-56.069761153864,-56.0698351041462,-56.0698947685965,-56.0700028792734,-56.0701838761291,-56.0706613545087,-56.0707834150663,-56.0709611846055,-56.071014401073,-56.0709890196151,-56.0709565189039,-56.0709212857183,-56.0709645062074,-56.0710074187362,-56.0710390439723,-56.0712026625033,-56.0713151723701,-56.0714215286077,-56.0714810385837,-56.0716496053672,-56.0715414489594,-56.0715622527356,-56.0717197691694,-56.0717892772879,-56.0718617447166,-56.0719993080829,-56.0721151182263,-56.0721780486717,-56.0722938586251,-56.0724317619533,-56.0724877606009,-56.0725598745796,-56.0725788489382,-56.0725700117524,-56.0725295217779,-56.0724555600451,-56.072524641486,-56.0725312551568,-56.0724064641879,-56.0723634620406,-56.0723673612433,-56.0724621172073,-56.0728874913077,-56.0729317933037,-56.0729318591173,-56.0725063038325,-56.072503473692,-56.0725413066223,-56.0725033014304,-56.0726443227512,-56.0730192683143,-56.0732900850805,-56.0736177107741,-56.0743967340809,-56.0753335544987,-56.076322331236,-56.0765061789742,-56.077052298019,-56.0774660519986,-56.0779542692699,-56.0781618352586,-56.078192020382,-56.0781057397483,-56.0781286818753,-56.0781902870566,-56.0783434062786,-56.0785112594531,-56.0785884027709,-56.0784910527471,-56.0783534709554,-56.0782350339253,-56.0782313980923,-56.0782777242149,-56.0784243187986,-56.0787028311117,-56.0788180631032,-56.0788266454938,-56.0789511773591,-56.0790759961429,-56.0793018216479,-56.0795343735845,-56.0797947110662,-56.0798003185857,-56.0800358193514,-56.0800848073779,-56.0802861714002,-56.0804244671114,-56.0804570869937,-56.080519039,-56.0806061155729,-56.0806429073969,-56.0806435487637,-56.080704054626,-56.0809934568484,-56.0811389001846,-56.0812254927688,-56.0811191960595,-56.0811342715125,-56.0811866547958,-56.0812724173466,-56.0813847268765,-56.0814708069911,-56.0817092451518,-56.0817990451208,-56.0818145772473,-56.082123683408,-56.0822501378728,-56.0823586933313,-56.0823820766358,-56.0823564629705,-56.0824127976524,-56.0824394045178,-56.0824437925893,-56.0824926524158,-56.0825604730152,-56.0825911252945,-56.0825973280169,-56.0827093404712,-56.0827178764705,-56.0827779477636,-56.0828348293869,-56.0828030761588,-56.0828377732615,-56.0828394163376,-56.0828754482252,-56.0829821463005,-56.0830608691142,-56.083091383464,-56.0830514709944,-56.0831282699331,-56.0831811051284,-56.0832671651997,-56.0832973029211,-56.0833583993596,-56.0834507620212,-56.0836494867097,-56.0837801540353,-56.0838860281746,-56.0838718997197,-56.0839750035848,-56.083945570548,-56.0839738188223,-56.0840310897859,-56.0840647158352,-56.0839286077583,-56.0840401595571,-56.0843002158505,-56.084455028476,-56.084604107728,-56.0847488197553,-56.0847271968889,-56.0848507065851,-56.0851648510846,-56.0852495881651,-56.0851652550022,-56.0849982974279,-56.0850399822779,-56.0852788831247,-56.085640343521,-56.0858856993785,-56.086050218437,-56.0861715282357,-56.0863276094729,-56.086453339797,-56.0867597998923,-56.0870258022833,-56.0870880684739,-56.0874298640256,-56.0876382716654,-56.0877958899397,-56.087942629047,-56.0882090991051,-56.0883745835745,-56.0886845707679,-56.0887121463049,-56.0888356156509,-56.088975342158,-56.0890109173704,-56.0889083753145,-56.0888289438469,-56.0888100151163,-56.0888616628526,-56.0889328890537,-56.0889689818811,-56.0890654734621,-56.0891568240657,-56.0892313484292,-56.0892570034419,-56.0893287233828,-56.0894483515708,-56.0894379391411,-56.0893556251401,-56.089404831977,-56.0895075037958,-56.0895811709655,-56.0896500603331,-56.0895084646621,-56.0895155796329,-56.0895815345803,-56.0896778444173,-56.0898058595249,-56.0900358185683,-56.0901903710149,-56.0903082842613,-56.0905806196187,-56.0907148402405,-56.0908519013837,-56.0912705078531,-56.0913038185275,-56.0915261258631,-56.0915485997463,-56.0915948539662,-56.0917185455634,-56.0925718789827,-56.0910105935028,-56.0911888434138,-56.0919364045856,-56.0919882913449,-56.0928537776984,-56.0919336425591,-56.0914399618907,-56.0914556845162,-56.0915471519128,-56.0917391515778,-56.0927226033817,-56.0932892489487,-56.0933832574313,-56.0956337071753,-56.0956910583046,-56.0957707837804,-56.0958677156385,-56.0960684222395,-56.0961437845809,-56.0963087595209,-56.0966672043801,-56.096924545001,-56.0961358941345,-56.0956019216532,-56.0955764618563,-56.0943600411836,-56.0934843156421,-56.0921824314679,-56.0920200864848,-56.0910334425624,-56.0903331243996,-56.0901240682325,-56.0901020135166,-56.0895249637128,-56.0894585653357,-56.0889475176914,-56.0877043348992,-56.0876427569405,-56.0868224360984,-56.0859759709326,-56.0858678281988,-56.0853333859066,-56.0849845993617,-56.0843849634475,-56.0842713915422,-56.0837740016922,-56.0836851710056,-56.0836517513532,-56.0834676837162,-56.0833778746469,-56.0832604101532,-56.0832068025064,-56.0830703894689,-56.0829005224721,-56.0828213272908,-56.0827741752289,-56.0826198671053,-56.0824859164462,-56.0823184977182,-56.0821685670618,-56.0818868900187,-56.0818012390868,-56.0814501085462,-56.0812630005757,-56.0802132673423,-56.0799449513126,-56.0790950578575,-56.0787855386792,-56.0786414941687],&#34;lat&#34;:[-34.8883438702898,-34.8885277498698,-34.8891743117954,-34.8892691849955,-34.889596992805,-34.8896538287432,-34.8899725444296,-34.8900152273337,-34.8906963149776,-34.8907778871886,-34.8911281977777,-34.891268662719,-34.891362253759,-34.8914045853178,-34.8917897072684,-34.8922654359472,-34.8923062136439,-34.8925237208179,-34.8927502468098,-34.8931716232912,-34.89337097777,-34.8939689986847,-34.8939735410273,-34.8945486685643,-34.8950177479329,-34.8951572645393,-34.8951989898366,-34.8954233845821,-34.8954548991683,-34.8954729109574,-34.8954864145882,-34.8955044213748,-34.8955179183355,-34.8955359076131,-34.8955448914129,-34.8955538902205,-34.8955628740203,-34.8955763693135,-34.895585358116,-34.8955943485859,-34.895603345726,-34.8956348269616,-34.8956708155219,-34.8956843091475,-34.8956978027732,-34.8957202943727,-34.8957427859722,-34.8957652717353,-34.8957922656568,-34.89580576095,-34.8958192562432,-34.8958327532039,-34.8958507524866,-34.8958687534368,-34.8958822420599,-34.8958957390207,-34.8959047278231,-34.8959362148951,-34.8959631954763,-34.8959991681951,-34.8960396474046,-34.8960486395421,-34.8960576316795,-34.8960666296533,-34.8960801332842,-34.8961206308364,-34.896147628093,-34.8961611250537,-34.8961881156401,-34.8962061049176,-34.8962285998522,-34.8962510914517,-34.8962780853731,-34.8963050792946,-34.896332069881,-34.8963590587999,-34.8963860493863,-34.8964130416402,-34.8964355265696,-34.8964625221586,-34.8964850120905,-34.89650750369,-34.8965299952895,-34.896547981232,-34.896570474499,-34.8965884604415,-34.8966109537085,-34.896628939651,-34.8966469255934,-34.896664911536,-34.8966828958109,-34.8967053874104,-34.8967233716853,-34.8967458616173,-34.8967638442247,-34.8967863324892,-34.8968088207536,-34.8968313073505,-34.896853795615,-34.8968762805443,-34.8968987654737,-34.8969212504031,-34.896943733665,-34.8969707225839,-34.8969932041782,-34.8970156857725,-34.8970381690344,-34.8970606522963,-34.8970831355581,-34.8971011148305,-34.8971236014274,-34.8971415823673,-34.8971640722993,-34.8971820565742,-34.8972000425167,-34.8972180301267,-34.8972360177367,-34.8972540086817,-34.8972719996268,-34.8972899939069,-34.8973034808625,-34.8973214751426,-34.8973394710902,-34.8973529613808,-34.897370958996,-34.8973844492866,-34.8974024469018,-34.8974204428494,-34.8974384404646,-34.8974564364122,-34.8974744323599,-34.89749242664,-34.8975149282446,-34.8975374281817,-34.8975554207943,-34.8975779190639,-34.8976004173335,-34.8976229139356,-34.8976454122052,-34.8976679104748,-34.8976859047549,-34.8977084063596,-34.8977264023072,-34.8977444015899,-34.8977578935481,-34.8977758944983,-34.8977893897915,-34.8978028867522,-34.8978208910375,-34.8978343879982,-34.8978478849589,-34.8978613819196,-34.8978748805479,-34.8978928865007,-34.8979063834614,-34.8979198820897,-34.8979333790504,-34.8979468776787,-34.8979603763069,-34.8979738732677,-34.8979873702284,-34.8980008688566,-34.8980143658174,-34.8980278611106,-34.8980458653958,-34.898059360689,-34.8980773616392,-34.8980953625895,-34.8981133635397,-34.8981358701469,-34.8981538694296,-34.8981718670448,-34.898194370317,-34.8982123662646,-34.8982348678692,-34.8982528604818,-34.8982708530944,-34.898288845707,-34.8983068366521,-34.8983133874643,-34.898316494014,-34.8983381741079,-34.8984001855435,-34.8985032840546,-34.8985703168939,-34.8986467298609,-34.8987019072452,-34.8987357750956,-34.8987661165165,-34.8986847373339,-34.8986737509034,-34.898763221303,-34.8987906806267,-34.8988499393178,-34.8989001503773,-34.8989165491398,-34.8989171960534,-34.8989414244158,-34.8989770831306,-34.8990343844071,-34.8991054985445,-34.8991433549305,-34.8991557462746,-34.8992095022639,-34.8992361128793,-34.8992367779679,-34.8993750180589,-34.8994522815619,-34.8994518937112,-34.8994714680755,-34.899536853949,-34.8995370460361,-34.8995434428144,-34.8996179732949,-34.8996368533433,-34.8996723234423,-34.899726156752,-34.8997374434782,-34.8997189476134,-34.899749129142,-34.8997793993172,-34.8997862836389,-34.899736439084,-34.8996763715318,-34.8996444615826,-34.8995539761546,-34.8994970848257,-34.8994688829171,-34.8994722659565,-34.8995473429325,-34.8996370897546,-34.8996613028484,-34.8996748643679,-34.8997022092795,-34.8996993727125,-34.8996964179984,-34.8996433230437,-34.899658907852,-34.8996578733194,-34.8996963716407,-34.8997631901435,-34.8997600565656,-34.8996881104681,-34.8996724190552,-34.8996807652009,-34.8996763622686,-34.8996259117889,-34.8996231485527,-34.8996444796057,-34.8997224955241,-34.8997476396793,-34.8997901570685,-34.8998336181755,-34.8998360835285,-34.8997886764954,-34.8997575484739,-34.8997963998306,-34.8998165918543,-34.8998195387379,-34.899835120434,-34.8998370693662,-34.8998460185993,-34.899879891204,-34.8999570523025,-34.8999612349102,-34.9000108019744,-34.9000770304629,-34.9000893915484,-34.9000370162355,-34.900011925161,-34.9000473193341,-34.9000355124091,-34.8999501616427,-34.899980666255,-34.8999372738719,-34.8998503044786,-34.8998486207784,-34.8998176307178,-34.8997145597972,-34.8996319288102,-34.8995628916858,-34.8994857890903,-34.8993752581092,-34.8993707631484,-34.8993162781332,-34.8992727739016,-34.8992764736042,-34.8993116972838,-34.8994934655549,-34.8995052354729,-34.8995673037904,-34.8996926287908,-34.8997344576382,-34.8997321150332,-34.8997171298593,-34.8997255179447,-34.899808880055,-34.8999335240753,-34.9000004192903,-34.9000292974002,-34.9000539001751,-34.9000607758446,-34.9000244502331,-34.9000027652367,-34.9000604624548,-34.9001135060046,-34.9001457349914,-34.9001329852624,-34.9001621540258,-34.9003058964715,-34.900322835679,-34.9001644970422,-34.900169416593,-34.9001619671066,-34.900083329905,-34.9000482351673,-34.8999998870322,-34.8999647921207,-34.8999067363952,-34.8999200133727,-34.8998871546633,-34.8998641701328,-34.8998178440649,-34.8998123952452,-34.8997321631737,-34.8996915715673,-34.8996582130213,-34.8996598306081,-34.8996003941529,-34.8995310359589,-34.899426392231,-34.899601822659,-34.8995456222511,-34.8995454262257,-34.8993804707952,-34.8993547499547,-34.8993190597164,-34.8990926163521,-34.8987570323049,-34.8984232323879,-34.898321339412,-34.8981862221672,-34.8979788534766,-34.897885757059,-34.8978881355163,-34.8979049520983,-34.8979490028897,-34.897981629494,-34.8981164004071,-34.8982439012472,-34.8983340775993,-34.8985184578776,-34.8986985267152,-34.8987683819648,-34.8987438439087,-34.8987965151503,-34.8988716278562,-34.898929998103,-34.8989597940148,-34.8989511860751,-34.898997417168,-34.8990388873103,-34.8990399989364,-34.8989598727734,-34.8989761657445,-34.8990456187954,-34.8990671219775,-34.8990629279454,-34.8992316840215,-34.8993568018786,-34.8995078289268,-34.8995644097563,-34.8997049685432,-34.899787576968,-34.8999124573377,-34.9000985384408,-34.9002504108737,-34.900289428463,-34.9003132165239,-34.9003552773832,-34.9003559025264,-34.9003983968003,-34.9004487737322,-34.9004632020791,-34.9003982385837,-34.9003328421523,-34.9003159090389,-34.900309770632,-34.9003292708155,-34.9002917874722,-34.9003030560495,-34.9003726037376,-34.9003640441044,-34.9003118123096,-34.900412686646,-34.9004690700722,-34.9004544929261,-34.9003684473627,-34.9003189842012,-34.9002947746352,-34.9002549438115,-34.9001964690774,-34.900172203042,-34.9001234452229,-34.9000559306492,-34.8998342634533,-34.8995086965683,-34.8994133007812,-34.8993891192371,-34.8993156438062,-34.8991460392928,-34.8990508409088,-34.8989030439378,-34.8986877604927,-34.8985038038346,-34.8984828422244,-34.8984276439067,-34.8983195651252,-34.8981353827513,-34.8980895908712,-34.8980810019181,-34.8980596736893,-34.8979431187001,-34.8977036249502,-34.8976466154586,-34.8976599179746,-34.8975498589644,-34.8974758477634,-34.8973796249223,-34.8973375237582,-34.8972170256247,-34.8971755778984,-34.8971093170582,-34.8969801897927,-34.8968972718161,-34.8969041582966,-34.8969644483073,-34.8970025235258,-34.8968952197223,-34.8966881236687,-34.8966052949804,-34.8965879519271,-34.8964811313903,-34.89635811228,-34.896215642772,-34.8960629760755,-34.8959000259742,-34.8957615328949,-34.8957892673954,-34.8958940606212,-34.8960314784203,-34.8961244401026,-34.8961206780693,-34.8960476675626,-34.8960167162322,-34.896068961942,-34.8961586098489,-34.8961695885834,-34.8961237006769,-34.8960283064479,-34.895954992189,-34.8959727082993,-34.896097417316,-34.8961870588476,-34.8963880359755,-34.8964102652717,-34.8962928545696,-34.8962661969565,-34.8962161770393,-34.8961195397152,-34.8960987449667,-34.896115753702,-34.8962101661133,-34.8962673744397,-34.896272766132,-34.8962497891109,-34.8962546884401,-34.8962269832513,-34.896258475605,-34.8961666092664,-34.8961189216433,-34.896060451622,-34.8960753420527,-34.8961300254478,-34.896099945318,-34.895988268007,-34.8958612297575,-34.8958381883241,-34.8959118696367,-34.8959598992815,-34.8958298224499,-34.8958027368456,-34.8957306594303,-34.8956432625554,-34.8956466202721,-34.8956437177069,-34.8950268210649,-34.8949780401687,-34.8946889601911,-34.8946614669498,-34.8946272995684,-34.8946003743012,-34.8935755591112,-34.8927061176115,-34.892420450496,-34.8920039294149,-34.891976782081,-34.8909113767909,-34.8908527768772,-34.8907294713109,-34.8904673009361,-34.8902523245513,-34.8900105682348,-34.8887843640026,-34.8880530797773,-34.8879402132358,-34.8851122777531,-34.8850405146649,-34.8849639211014,-34.8848707968193,-34.8845851969264,-34.8844856796051,-34.8842377047991,-34.8837194464784,-34.8833680311008,-34.8824085225789,-34.8816403208347,-34.8816055545715,-34.8799745342981,-34.8787691987176,-34.8771730932732,-34.8769751698252,-34.8757722746755,-34.8761877659481,-34.8763193865915,-34.8763429581455,-34.876697398868,-34.8767172523704,-34.8770341020826,-34.877805409736,-34.8778436138218,-34.8783472755698,-34.8788724374625,-34.8790090526245,-34.8795329194627,-34.879957263933,-34.8806344919468,-34.8808420360659,-34.8816542682361,-34.8819069894321,-34.8820020671162,-34.8825257285298,-34.8827812403088,-34.8831335598425,-34.8833495053778,-34.8837661002359,-34.8841557453438,-34.8843574632863,-34.8844789093764,-34.8849489434219,-34.8852260466451,-34.8854519812409,-34.8856190317682,-34.8859799127536,-34.886070805101,-34.8864081553537,-34.8865840078672,-34.8872749486143,-34.887456287555,-34.8880446112479,-34.8882627250765,-34.8883438702898]}]],[[{&#34;lng&#34;:[-56.0751144223297,-56.0759561026119,-56.0761009538039,-56.0767581347958,-56.0769582080793,-56.0782917925105,-56.0786414941687,-56.0787855386792,-56.0790950578575,-56.0799449513126,-56.0802132673423,-56.0812630005757,-56.0814501085462,-56.0818012390868,-56.0818868900187,-56.0821685670618,-56.0823184977182,-56.0824859164462,-56.0826198671053,-56.0827741752289,-56.0828213272908,-56.0829005224721,-56.0830703894689,-56.0832068025064,-56.0832604101532,-56.0827662825194,-56.0823189447352,-56.0815096283972,-56.0808385042783,-56.0805215233486,-56.0795758546278,-56.0781686508694,-56.0780214611176,-56.077137948697,-56.076577676636,-56.0753118257345,-56.0736826158153,-56.0726130527079,-56.0713603282583,-56.070897245641,-56.0702134225918,-56.0698650226508,-56.0692901453302,-56.0692150132493,-56.0690936573296,-56.0687466116827,-56.0687010014937,-56.0669262462069,-56.066903661226,-56.0651636820353,-56.0642741727427,-56.0634796111977,-56.0634422484209,-56.0633064831819,-56.0631417070615,-56.0631429884174,-56.0627635127121,-56.0622029270399,-56.0621663028211,-56.062460293165,-56.0628208332586,-56.0629412172366,-56.0629611477887,-56.0623716482966,-56.0620478994395,-56.0619134337332,-56.0616117970669,-56.0614718934195,-56.0607229886187,-56.0605885122877,-56.0603692997376,-56.0596568827564,-56.0592703769342,-56.0589140931547,-56.0586912665712,-56.0582821152207,-56.0582250608806,-56.0580569999418,-56.0579918128389,-56.0579009408981,-56.0580741210344,-56.0569334259872,-56.0560031862387,-56.0556244532174,-56.055618241046,-56.0552196354749,-56.0548839156689,-56.0542781099061,-56.0536871582934,-56.0528880682132,-56.0524122599326,-56.0514777818601,-56.0513256800059,-56.0495898235754,-56.0493978312216,-56.0491789280137,-56.0475968541006,-56.0457148384887,-56.0451758376343,-56.0448187579034,-56.0446343543641,-56.0443776541883,-56.043839415591,-56.0439757967395,-56.0439804680203,-56.0422585047669,-56.042161431972,-56.0403763804285,-56.0386329630082,-56.0384127049636,-56.0382741642586,-56.0382567875226,-56.0383760300842,-56.0385178859209,-56.0387082815551,-56.0392639912133,-56.0394673442501,-56.0395877355202,-56.0398553682598,-56.0398021371513,-56.0393713501914,-56.0390810008952,-56.0387630068583,-56.0382817472824,-56.0380031290216,-56.0376623644025,-56.0373996536875,-56.0370715702996,-56.0367412868383,-56.0364375602693,-56.0361729191833,-56.0361043543909,-56.0361071946635,-56.0360552573299,-56.0360361547606,-56.0359962060598,-56.0358255620693,-56.0357349464781,-56.0356530920354,-56.0356343277822,-56.035559620236,-56.0355300785551,-56.0355112495182,-56.0354322370201,-56.0351541221522,-56.0349673162743,-56.0347993767428,-56.0346930356241,-56.0343387118373,-56.0342354665326,-56.0337833954114,-56.0333256857362,-56.0331753294956,-56.0328202704662,-56.0325913639698,-56.032471385251,-56.0323895047598,-56.0322040113305,-56.0318955089453,-56.0315132000765,-56.0313508794181,-56.0310540713801,-56.0308612831723,-56.0307702255941,-56.030781097192,-56.0308541870228,-56.0306364539347,-56.0303439537105,-56.029851022741,-56.0294324806627,-56.0292184418483,-56.0286100926559,-56.028061939209,-56.0275639473431,-56.026779024878,-56.026084485429,-56.0255936497888,-56.0252281608196,-56.0246668135335,-56.0244723470038,-56.0241748845991,-56.0238970841174,-56.0236490073619,-56.0241553989048,-56.0245273705739,-56.0249541186179,-56.0251346925012,-56.025347807112,-56.0258166609144,-56.0264345949003,-56.0274549645058,-56.0281147041391,-56.0285951118386,-56.0292556904841,-56.030010988031,-56.0312144847003,-56.0322153680003,-56.0322190674881,-56.0322595603607,-56.0325876602599,-56.0326832017016,-56.0335360229292,-56.0350978777981,-56.0368095086856,-56.0376489177502,-56.0381211773879,-56.0384625489254,-56.0384825954867,-56.0385913420222,-56.038593007364,-56.0386238232565,-56.0386412722554,-56.0386590680999,-56.0386758367479,-56.0386926187361,-56.0387182853064,-56.0387439385364,-56.0387723531906,-56.0388096657669,-56.0388288223131,-56.0388503934379,-56.0388688696332,-56.0388917881195,-56.0389147066059,-56.0389331961414,-56.0389615974553,-56.0389988833513,-56.039027644851,-56.0390386105063,-56.039052297565,-56.0390663314693,-56.039082766612,-56.0391084331823,-56.0391269093776,-56.0391539499898,-56.0391700382869,-56.0391874872858,-56.0392022148812,-56.0392165822909,-56.039244996945,-56.0392727179081,-56.0392925814856,-56.0393045609971,-56.0393162070032,-56.0393234107184,-56.039336777612,-56.0393501445057,-56.0393645119153,-56.0393758244161,-56.0393977290462,-56.0394302391459,-56.0394456337519,-56.0394606815124,-56.0394859878969,-56.0394993414503,-56.0395126816636,-56.0395311578589,-56.039551688447,-56.0395725658807,-56.0395975387599,-56.0396160282954,-56.0396324500979,-56.0396526338405,-56.039667681601,-56.0396827427017,-56.039694708873,-56.03970703523,-56.0397275524779,-56.0397402256805,-56.0397593822267,-56.0397751370185,-56.0397912253157,-56.0398035383325,-56.0398158646895,-56.0398336605339,-56.039851122873,-56.0398647965916,-56.0398784969906,-56.0398945852877,-56.0399106735848,-56.0399291497802,-56.0399476393157,-56.0399633674271,-56.0399760406296,-56.0400047754489,-56.0400328432575,-56.0400550947332,-56.0400721968865,-56.0400875914926,-56.040107761895,-56.0401221293046,-56.0401358163634,-56.040148489566,-56.0401628703158,-56.0401885235459,-56.040204611843,-56.0402165913545,-56.0402302784132,-56.0402443123175,-56.0402631353584,-56.0402822919046,-56.0403089856713,-56.0403298497647,-56.0403428431324,-56.0403555029948,-56.0403746595409,-56.0404009931218,-56.0404557146765,-56.040472136479,-56.0404912930252,-56.0405231094337,-56.0405354357907,-56.0405518575932,-56.0405727350269,-56.0405949865025,-56.0406145032345,-56.0406240948478,-56.0406367813906,-56.0406460394985,-56.0406617809501,-56.0406881412115,-56.0407008277542,-56.0407210248371,-56.0407309632959,-56.0407518407296,-56.0407686093776,-56.0407775206401,-56.0407933021123,-56.0408076962024,-56.0408173144961,-56.0408255454077,-56.0408330826281,-56.0408402863433,-56.0408502248021,-56.0408693946885,-56.0408806938491,-56.0408971156516,-56.0409094286684,-56.0409296257512,-56.0409415919225,-56.0409617890053,-56.040981292397,-56.0410069589673,-56.0410240611206,-56.0410462859159,-56.0410685240513,-56.0410870002466,-56.0411085580312,-56.0411393472433,-56.0411567962422,-56.0411742585813,-56.0411941088186,-56.041220789245,-56.0412474830117,-56.0412652788561,-56.0412793127604,-56.0413059931869,-56.0413326869535,-56.0413494556016,-56.0413679317969,-56.0413860611466,-56.0414024962893,-56.0414202921338,-56.0414339791925,-56.0414507478406,-56.0414647950851,-56.0414744000386,-56.0414822841046,-56.0414990394124,-56.0415120461203,-56.0415339507504,-56.0415503725529,-56.0415626855697,-56.0415750119267,-56.0415866579329,-56.0416099232647,-56.0416294133162,-56.041648916708,-56.0416680865944,-56.0416814268076,-56.0417002898691,-56.0417184192189,-56.0417399770034,-56.0417519565149,-56.0417735142995,-56.0417954322698,-56.0418118407321,-56.0418299967623,-56.0418399352211,-56.0418560235183,-56.0418717649699,-56.0419025675222,-56.0419244721523,-56.041939533253,-56.0419617847287,-56.0419696687947,-56.0419905595686,-56.0420073282166,-56.042019988079,-56.0420552329223,-56.0420812463381,-56.0421021237718,-56.0421175183778,-56.0421329129839,-56.0421486410953,-56.0421708792307,-56.0421975729974,-56.0422068177652,-56.0422218788659,-56.0422403684014,-56.0422636470735,-56.0422862453947,-56.0423081366846,-56.042337565195,-56.0423591229795,-56.0423864970971,-56.0424053334781,-56.0424214217753,-56.0424286254904,-56.0424419790438,-56.042464577365,-56.0424768903818,-56.042491604637,-56.0425117883796,-56.0425251285929,-56.0425381219605,-56.0425607069415,-56.0425743940003,-56.0426068907597,-56.0426281150389,-56.042643509645,-56.0426592510966,-56.0426722578045,-56.0426849176668,-56.042704074213,-56.0427968020351,-56.0428286317839,-56.0428495092176,-56.0428707201566,-56.0428847407207,-56.0428950260251,-56.0429172775008,-56.0429453453094,-56.0429583386771,-56.0429781889143,-56.0429973588007,-56.0430076307649,-56.0430278278477,-56.0430398073592,-56.0430617253295,-56.0430955961309,-56.0431168204101,-56.0431366839876,-56.0431609898561,-56.0431699011186,-56.0431887241594,-56.0432027580637,-56.0432366288651,-56.0432616150845,-56.0432818255075,-56.0433020092501,-56.0433184443928,-56.0433341858444,-56.0433499406362,-56.0433687636771,-56.0433872532126,-56.0434132666284,-56.0434409875915,-56.0434533006083,-56.0434656403055,-56.0434813817571,-56.0434902930195,-56.0435149323934,-56.0435375173743,-56.0435501772367,-56.0435881568237,-56.0436151974359,-56.0436282041438,-56.0436411975115,-56.0436617280997,-56.0436822586878,-56.0437031361215,-56.0437240135552,-56.0437380341193,-56.0437524148691,-56.0437801358322,-56.0438078567953,-56.0438321626638,-56.0438520129011,-56.0438670606616,-56.0438868975586,-56.0439067344557,-56.0439402584115,-56.0439631902381,-56.0439782379986,-56.0439909112011,-56.0440035710635,-56.0440189656695,-56.0440347071211,-56.0440552377093,-56.0440764619885,-56.0440980197731,-56.0441219654558,-56.0441315570691,-56.0441438834262,-56.044171964575,-56.0441894135739,-56.0442041411693,-56.0442393860126,-56.0442653860882,-56.0442773655997,-56.0442989233842,-56.0443173862393,-56.0443358757749,-56.0443642770888,-56.0443930252483,-56.0444358073121,-56.0444789228812,-56.0444963718801,-56.0445083380514,-56.044529895836,-56.0445634197918,-56.0445972905932,-56.0446157534483,-56.0446280798053,-56.0446602297191,-56.0446814539984,-56.044712590056,-56.0447303859005,-56.0447485152503,-56.0447676851367,-56.0447871885284,-56.0448289300556,-56.0448415899179,-56.0448542631205,-56.0448703380774,-56.0448994464227,-56.044925806684,-56.0449477113141,-56.044963786271,-56.0449760992878,-56.0449887591502,-56.0450099834294,-56.0450175339901,-56.045048309862,-56.0450773915268,-56.0451105686371,-56.0451341674743,-56.0451512829679,-56.0451964395896,-56.0452416095516,-56.0452744531566,-56.0453073101017,-56.0453333101773,-56.045360003944,-56.0453815483883,-56.0454065212675,-56.0454215957084,-56.0454294931146,-56.0454414859663,-56.045449036527,-56.0454678595679,-56.0454890571667,-56.0455085205378,-56.0455242219687,-56.0455443790309,-56.0455645627735,-56.0455809979162,-56.0455793303896,-56.0455653498461,-56.0455530635097,-56.0455551579232,-56.0455825453809,-56.0455965792852,-56.045610266344,-56.0456242869081,-56.045638667658,-56.0456995790715,-56.0457461097353,-56.0458179868041,-56.045896000371,-56.0459736937728,-56.0460164624964,-56.0460592445602,-56.0460859249867,-56.046105775224,-56.0461256254612,-56.0461458092038,-56.0461861900293,-56.0462060269263,-56.0462258771636,-56.0462453805553,-56.0462915777137,-56.0463224336269,-56.0463388821098,-56.0463573716453,-56.0463761946862,-56.0463970587797,-56.0464189500696,-56.0464411615246,-56.0464630394743,-56.0464859312802,-56.0464982309568,-56.046523524001,-56.0465488170453,-56.0465614769076,-56.0465734564191,-56.0465984292983,-56.046612116357,-56.0466254699105,-56.0466388234639,-56.0466518301718,-56.0466648368797,-56.0466775100823,-56.0467001084034,-56.0467141423078,-56.046730924296,-56.046747692944,-56.0467651419429,-56.0467829511276,-56.0468181959709,-56.0468534408142,-56.0468821889737,-56.0469106036279,-56.0469225831394,-56.0469338823,-56.0469479028641,-56.0469622836139,-56.0469818003459,-56.046998889159,-56.0470159646319,-56.0470364551994,-56.0470556250858,-56.0470611345939,-56.0470495819692,-56.0470530370845,-56.047067084329,-56.0470876282574,-56.0471002881197,-56.0471132948276,-56.0471262881953,-56.0471396284085,-56.0471533154673,-56.047167002526,-56.0471810364303,-56.0471950569944,-56.0472111319514,-56.0472272069083,-56.0472429483599,-56.0472590233168,-56.0472747514282,-56.0472904928798,-56.0473062343314,-56.0473216289375,-56.0473370235435,-56.0473524181496,-56.0473674792503,-56.0473931324804,-56.047459179876,-56.0475248804262,-56.0475443971581,-56.0475635537043,-56.0475946897619,-56.0476254923143,-56.047658696105,-56.0476912062046,-56.0477069609964,-56.0477169127955,-56.0477217286125,-56.0477320272571,-56.0477395778178,-56.0477648975425,-56.0477857482957,-56.0478052116668,-56.047826742771,-56.0478472733591,-56.0478650692035,-56.0478729532696,-56.0478849461212,-56.0478938707239,-56.0479069041122,-56.0479233525951,-56.0479432028324,-56.0479551823439,-56.0479678422062,-56.0479808355739,-56.0479938422818,-56.0480071691548,-56.0480208428733,-56.0480417069668,-56.0480615438639,-56.0480800333994,-56.0480971622332,-56.0481232023294,-56.0481440797631,-56.0481632496495,-56.0481947192125,-56.0482073790748,-56.0482200389372,-56.0482330323049,-56.0482583386894,-56.0482720257481,-56.0482976923184,-56.0483110458718,-56.0483339643581,-56.0483466242205,-56.0483664744577,-56.0483873385512,-56.0484003452591,-56.0484191549597,-56.0484352432569,-56.048452705596,-56.0484667395003,-56.0484804265591,-56.0485006236419,-56.0485129499989,-56.0485218612613,-56.0485406843022,-56.048558813652,-56.0485807049419,-56.0485916705971,-56.048610493638,-56.0486293300191,-56.0486536225473,-56.0486762075283,-56.048690574938,-56.0487063163896,-56.0487254729358,-56.0487562621479,-56.0487860108234,-56.0488000313875,-56.0488140652918,-56.0488270719997,-56.0488462285459,-56.0488684666813,-56.0488821537401,-56.0489036981844,-56.0489190794503,-56.0489546444587,-56.0489799508432,-56.049002522484,-56.0490247472792,-56.0490404887308,-56.0490507740352,-56.0490768007912,-56.0490894739938,-56.0491024807017,-56.0491158342551,-56.0491360046575,-56.0491527866457,-56.0491695419535,-56.0491822018159,-56.0491948616782,-56.0492130043682,-56.0492283856341,-56.0492499434186,-56.0492656982104,-56.0492930856682,-56.0493115752037,-56.049335867732,-56.0493608539513,-56.0493745410101,-56.0493899356162,-56.049399874075,-56.0494135611338,-56.0494269146872,-56.0494508737102,-56.0494714042983,-56.049492281732,-56.0495042479033,-56.049516240755,-56.0495299278137,-56.0495436148725,-56.0495535533314,-56.0495703219794,-56.0495833420275,-56.0496021784085,-56.049623042502,-56.0496518040017,-56.0496647973694,-56.0496815793576,-56.0496894634237,-56.0497062320717,-56.0497301910946,-56.0497534697667,-56.0497657827835,-56.0497794698423,-56.0497921297046,-56.0498051364125,-56.0498225854114,-56.0498400477505,-56.049862285886,-56.0498749457483,-56.0498886461473,-56.0499023332061,-56.0499177278121,-56.0499300408289,-56.0499515986135,-56.0499796397417,-56.0500011708458,-56.0500264905705,-56.050035401833,-56.0500549185649,-56.050070313171,-56.0500911639242,-56.0501110008213,-56.0501233271783,-56.0501421635594,-56.0501606530949,-56.0501733129572,-56.0501945105561,-56.0502146942987,-56.050228728203,-56.0502448165001,-56.0502571295169,-56.0502691090284,-56.0502845169747,-56.0503002584263,-56.0503173739198,-56.0503392518695,-56.050351231381,-56.0503700677621,-56.0503827409646,-56.0504066999876,-56.0504217610883,-56.0504443460693,-56.0504665975449,-56.0504953323642,-56.0505240938639,-56.0505566039636,-56.0505685701348,-56.0505805496463,-56.0505925291578,-56.050611685704,-56.0506305087448,-56.050645223,-56.0506595904096,-56.0506719034264,-56.0506842297835,-56.0507071482698,-56.0507300800963,-56.0507492366425,-56.0507687400342,-56.050783801135,-56.0508005431025,-56.050818338947,-56.0508361214512,-56.0508535704501,-56.050871019449,-56.0508850400131,-56.0509117337798,-56.0509326112135,-56.0509445907249,-56.0509671757059,-56.0509918017395,-56.0510054887983,-56.0510226042919,-56.0510551143915,-56.051073603927,-56.0510944813607,-56.0511156922997,-56.0511300730496,-56.0511447873048,-56.0511663317491,-56.051188223039,-56.0512193724369,-56.0512313519484,-56.0512481205964,-56.0512686511845,-56.0512881679165,-56.0513076713082,-56.051321358367,-56.0513350454257,-56.0513531881157,-56.0513887798046,-56.0514072426597,-56.0514291472898,-56.0514397660995,-56.0514558543967,-56.0514746774375,-56.0514979561096,-56.051510615972,-56.0515352553458,-56.0515609085758,-56.0515742621292,-56.0515876156827,-56.0516149898002,-56.0516293705501,-56.0516430576088,-56.0516625610006,-56.0516765815647,-56.0516981526895,-56.0517234724141,-56.0517381733291,-56.0517518470477,-56.0517727244814,-56.0518058749112,-56.05181956197,-56.0518359704323,-56.0518493106455,-56.0518636780551,-56.0518828346013,-56.0519019778073,-56.0519248962936,-56.0519385700121,-56.0519522437307,-56.0519748153715,-56.0520107405657,-56.05202477447,-56.0520490669983,-56.0520648084499,-56.0520877269362,-56.0521205838814,-56.0521411144695,-56.0521681417415,-56.0521838965333,-56.0522013455322,-56.0522253045552,-56.0522355898595,-56.0522434739256,-56.0522622969664,-56.0522879768769,-56.0523068132579,-56.0523263166497,-56.0523406973995,-56.052352676911,-56.0523653501136,-56.0523821187616,-56.052401288648,-56.0524132681595,-56.0524276489093,-56.0524519414376,-56.0524683632401,-56.0524871862809,-56.0525056624762,-56.0525196830403,-56.0525323429027,-56.052545002765,-56.0525669073951,-56.0525812748048,-56.0525956555546,-56.0526124108624,-56.0526288326649,-56.0526411456817,-56.0526534720387,-56.0526702406868,-56.0526873428401,-56.0527020570953,-56.0527201864451,-56.0527379822895,-56.052757472341,-56.0527704790489,-56.0527909962969,-56.052817343218,-56.0528300030803,-56.0528481457703,-56.0528652612639,-56.0528799755191,-56.0528947031145,-56.0529128458044,-56.0529248253159,-56.0529371516729,-56.0529676073797,-56.0529809475929,-56.0529946346517,-56.0530161924363,-56.0530367096842,-56.0530545188689,-56.0530730350848,-56.0531068792058,-56.0531188587172,-56.0531328926215,-56.0531469131856,-56.0531626546372,-56.0531787295942,-56.0531992735225,-56.0532197907705,-56.0532331309837,-56.0532461376916,-56.0532629196798,-56.0532807155243,-56.0532981645232,-56.0533098238695,-56.0533255653211,-56.0533447352075,-56.0533594494627,-56.053369041076,-56.0533909590463,-56.0534186666692,-56.0534460274465,-56.0534580202982,-56.0534771768444,-56.0535021497235,-56.0535148095859,-56.0535278162938,-56.0535456121382,-56.0535634079827,-56.0535753874941,-56.0535877138512,-56.0536072305831,-56.0536175025473,-56.0536370192792,-56.0536472912434,-56.0536596176004,-56.0536736381645,-56.0537064951097,-56.0537304674729,-56.0537544131556,-56.0537746235786,-56.0537920725775,-56.0538143373934,-56.0538266504102,-56.0538400039636,-56.0538588270045,-56.0538725274035,-56.0538882821953,-56.0539040236469,-56.0539139621057,-56.0539358800761,-56.0539482064331,-56.0539684168561,-56.0539886139389,-56.0540026611834,-56.0540146406949,-56.0540372256759,-56.0540529671275,-56.0540721236737,-56.0540909467146,-56.0541176404812,-56.0541368103676,-56.054155980254,-56.0541741096038,-56.0541925991393,-56.0542066330436,-56.0542210004533,-56.054241877887,-56.054263088826,-56.0542843131052,-56.0543079252826,-56.0543287893761,-56.0543407822278,-56.0543732923274,-56.054389033779,-56.0544088973565,-56.0544256793447,-56.0544393664035,-56.0544523864516,-56.0544705424818,-56.0544941679994,-56.0545068278618,-56.0545201814152,-56.0545338818142,-56.0545523580095,-56.0545609357666,-56.0545797588075,-56.0545910579681,-56.0546033843251,-56.0546150303312,-56.0546324793301,-56.0546475537711,-56.0546667236575,-56.0546817980984,-56.0546982332411,-56.0547147084044,-56.0547338782908,-56.054753034837,-56.0547660682253,-56.0547804756556,-56.0547941893948,-56.0548013931099,-56.0548123587652,-56.0548263926695,-56.054840439914,-56.0548551541692,-56.0548678273718,-56.0548777658306,-56.0549000306465,-56.0549123570035,-56.0549260574025,-56.0549397444613,-56.0549537917058,-56.0549678256101,-56.0549832335564,-56.0550024034428,-56.0550147164596,-56.0550379951317,-56.0550602466073,-56.0550722261188,-56.0550873005597,-56.0551064837863,-56.0551314700057,-56.0551451570645,-56.0551612453616,-56.055177346999,-56.0551982244327,-56.055218768361,-56.0552406729911,-56.0552625776213,-56.0552810671568,-56.0553142576073,-56.0553262371188,-56.0553560124747,-56.0553686856772,-56.0553899232967,-56.0554039705412,-56.0554224734169,-56.0554399357561,-56.0554607998495,-56.0554796228904,-56.0554888809984,-56.0554967650644,-56.0555101186178,-56.0555214311186,-56.0555467641835,-56.0555631993262,-56.0555748453324,-56.055595029075,-56.0556124914141,-56.0556265253184,-56.055646082071,-56.0556649184521,-56.0556875167733,-56.0556994829445,-56.0557169586238,-56.0557344209629,-56.0557515497967,-56.0557696924867,-56.0557915837766,-56.0558087126104,-56.0558306172405,-56.0558525218706,-56.0558727322936,-56.0558891674363,-56.0559059627648,-56.0559272003842,-56.0559484513439,-56.0559638459499,-56.0559772128436,-56.0559973965862,-56.0560080287361,-56.0560330149555,-56.0560549329258,-56.0560638441883,-56.0560854286533,-56.056096047463,-56.0561104415531,-56.0561200331664,-56.0561279172324,-56.0561358012984,-56.0561467802939,-56.0561598136822,-56.0561687249446,-56.0561827588489,-56.0561933776587,-56.0562057173559,-56.0562132545764,-56.0562341586905,-56.0562475255841,-56.0562557564957,-56.0562646677581,-56.056279048508,-56.0562893204722,-56.0562989254257,-56.0563088638845,-56.0563225642835,-56.0563314755459,-56.0563513524636,-56.0563592365297,-56.0563784197563,-56.0563897189169,-56.0563976163231,-56.0564270848541,-56.0564486826593,-56.0564839808635,-56.0565199460784,-56.0565357008702,-56.0565490677638,-56.0565713325797,-56.0565792166457,-56.0565888215992,-56.0565984132125,-56.0566097257133,-56.0566210515544,-56.0566299628168,-56.0566388740792,-56.0566522276327,-56.0566693564664,-56.0566772405325,-56.0566919814681,-56.0567111780349,-56.056730708107,-56.0567457958882,-56.0567656861461,-56.0567759714505,-56.0567862567549,-56.0567958483682,-56.0568139910582,-56.0568222219698,-56.056839003958,-56.0568595745668,-56.0568804786809,-56.0568928183781,-56.0569051580754,-56.0569157902253,-56.0569376815152,-56.0569674168505,-56.0569893081404,-56.056998232743,-56.0570051296333,-56.0570075708923,-56.0570093318004,-56.057013120421,-56.057024446262,-56.057032330328,-56.0570405612396,-56.0570549419894,-56.0570631595608,-56.0570727645143,-56.0570833966642,-56.0570950426704,-56.0571162802898,-56.0571334224638,-56.0571505512976,-56.0571758843625,-56.057194373898,-56.0572029383149,-56.0572190399523,-56.0572385833647,-56.0572509230619,-56.0572632494189,-56.0572738682286,-56.0572937318061,-56.057322506646,-56.0573389417887,-56.0573468258547,-56.0573666894322,-56.0573872333606,-56.057403334998,-56.0574166885514,-56.0574379128306,-56.0574574295626,-56.0574748919017,-56.0574875651042,-56.0575002383068,-56.0575177139861,-56.0575355231708,-56.0575533190152,-56.0575694073124,-56.0575947403773,-56.057605359187,-56.057627944168,-56.0576399370197,-56.0576546646151,-56.0576861475183,-56.0577107735519,-56.0577302636034,-56.0577531820897,-56.0577696172324,-56.0577939231009,-56.0578110519347,-56.0578288877998,-56.0578415743425,-56.0578559684326,-56.057872763761,-56.0578840629216,-56.0579004980643,-56.0579117972249,-56.0579227628802,-56.0579375038158,-56.0579501770184,-56.0579662653155,-56.0579888769769,-56.0580025907161,-56.058011155133,-56.0580303250194,-56.0580433450675,-56.0580525898353,-56.0580618479433,-56.0580752014967,-56.0580861804922,-56.0580964791368,-56.0581091523393,-56.0581297096079,-56.0581502535363,-56.0581635937495,-56.0581769473029,-56.0581906477019,-56.0582132727036,-56.0582283604847,-56.0582369382418,-56.0582451691534,-56.0582564949944,-56.0582845894834,-56.0583051334118,-56.0583123371269,-56.0583243299786,-56.0583373633669,-56.0583531181588,-56.0583675122488,-56.0583788247496,-56.0583942460361,-56.0584123887261,-56.0584206196377,-56.0584350003875,-56.0584497413231,-56.0584655094552,-56.0584733935212,-56.0584901755094,-56.0585113997886,-56.05853776005,-56.0585494193963,-56.0585631197953,-56.0585771670398,-56.0585908674388,-56.0586049013431,-56.0586189352474,-56.0586357172357,-56.0586524858837,-56.0586644653952,-56.0586726963067,-56.0586901586458,-56.0587055799323,-56.0587244029732,-56.0587466411086,-56.0587743620717,-56.0587935319581,-56.058808606399,-56.0588202524052,-56.0588394356318,-56.0588514151433,-56.0588637415003,-56.058875734352,-56.0588942372277,-56.0589058832339,-56.0589219581908,-56.0589394205299,-56.0589476514415,-56.0589654606261,-56.0589750522394,-56.0589843103474,-56.0589932216098,-56.0590107106294,-56.059019635232,-56.0590401791604,-56.0590600427379,-56.059080573326,-56.0591038653383,-56.0591158448498,-56.0591278243612,-56.0591504226824,-56.0591915238794,-56.0592240739996,-56.0592497539101,-56.059267576435,-56.0592853989598,-56.0593097181685,-56.0593347310683,-56.0593518599021,-56.0593635059082,-56.0593909067062,-56.059444014095,-56.0601867914669,-56.0602782585179,-56.0605682905517,-56.0619146309646,-56.0637116817071,-56.0637314919237,-56.0654457893641,-56.0660223400394,-56.0672430629308,-56.0678851674138,-56.0685228562863,-56.0686396631933,-56.0699914937002,-56.0710840838435,-56.071203323055,-56.071466947963,-56.0718679014116,-56.0723034420361,-56.0729575212448,-56.0731725356505,-56.0750330939709,-56.0751144223297],&#34;lat&#34;:[-34.8899725444296,-34.8896538287432,-34.889596992805,-34.8892691849955,-34.8891743117954,-34.8885277498698,-34.8883438702898,-34.8882627250765,-34.8880446112479,-34.887456287555,-34.8872749486143,-34.8865840078672,-34.8864081553537,-34.886070805101,-34.8859799127536,-34.8856190317682,-34.8854519812409,-34.8852260466451,-34.8849489434219,-34.8844789093764,-34.8843574632863,-34.8841557453438,-34.8837661002359,-34.8833495053778,-34.8831335598425,-34.8829281892775,-34.8828243457152,-34.8825394206631,-34.882315074002,-34.8821714898039,-34.8818797123203,-34.8813902422274,-34.8812962250388,-34.8809767698733,-34.8807841109708,-34.8803468476374,-34.8797788982366,-34.8793959890501,-34.8789648894536,-34.8788078358684,-34.8785859193187,-34.8785398659901,-34.8796672885519,-34.8798206641099,-34.8800687712318,-34.8807860185304,-34.8808582139926,-34.880221483948,-34.8802125114039,-34.8797394716142,-34.8797740044318,-34.8799542724287,-34.8798503427007,-34.879748162284,-34.8797201834856,-34.8797190569168,-34.8789220058572,-34.8778010298394,-34.877696512686,-34.8777243768234,-34.8777585474913,-34.8776431746892,-34.8775496602758,-34.8774908244266,-34.8774770165333,-34.8774737169333,-34.8774465057901,-34.8774386394927,-34.8773598163698,-34.8773442344989,-34.8773253033112,-34.8772673999749,-34.8772359840433,-34.8772070235093,-34.877188910506,-34.8771556505564,-34.8771510124927,-34.8771153010919,-34.8770908178013,-34.8770861172893,-34.8758878523463,-34.875836042472,-34.8757655519515,-34.875735170206,-34.8757346718592,-34.8757083211861,-34.8756818604563,-34.8756333300113,-34.8755661691459,-34.8754839015499,-34.8754060697853,-34.8753246585892,-34.8764779620707,-34.8763226217217,-34.8763156168744,-34.8762932636638,-34.8761640258312,-34.8759894986725,-34.8759588119053,-34.8758514136594,-34.8758288279347,-34.8758479472773,-34.8758162375653,-34.8749115177542,-34.8747766361189,-34.8746527084178,-34.8746479413916,-34.8745117399119,-34.8743683888482,-34.8743603216912,-34.8742096901067,-34.8740262209025,-34.8738406159999,-34.8737415462991,-34.8734604981862,-34.873194637877,-34.873024140861,-34.8729328934941,-34.8724629698398,-34.8709780610017,-34.871261619886,-34.8714107865445,-34.8715149995236,-34.8716768725964,-34.8717001574691,-34.8717484388783,-34.8717336146933,-34.8717827240954,-34.8720330439512,-34.8724696641371,-34.8730093523612,-34.873256886203,-34.8734824336264,-34.873712057248,-34.8739419411771,-34.874046000232,-34.874634887861,-34.8748957780245,-34.8753869816766,-34.8755444914553,-34.8757966597508,-34.8760353085655,-34.8761005763185,-34.8761892021203,-34.87663677002,-34.8773569284261,-34.877803368314,-34.8778779682775,-34.8781089301469,-34.8781868205704,-34.8783406496058,-34.8783932328414,-34.8783994310551,-34.8784223850169,-34.8783393748447,-34.8783023361169,-34.8782836424767,-34.8782325505512,-34.8781794539795,-34.8781800085567,-34.8782865666284,-34.8783751490478,-34.8785254112115,-34.8787270837648,-34.8789633019809,-34.8792810593782,-34.87939517795,-34.8795012398778,-34.879456727684,-34.8793775062575,-34.8793083477767,-34.8788397730823,-34.8784728508857,-34.8781906393584,-34.8779482851366,-34.8778499801418,-34.8778291847215,-34.8775901815648,-34.8774760739871,-34.8774829448968,-34.8775480071309,-34.8776806759807,-34.8779824079398,-34.8782039446576,-34.8782541648139,-34.8783899633543,-34.878514961617,-34.8786049204597,-34.8788028286209,-34.879072529022,-34.8797249218398,-34.8800831983017,-34.8802105881075,-34.8804982650403,-34.8809278943793,-34.8814934667998,-34.8819868144777,-34.8819962634933,-34.8819798920076,-34.8820729267215,-34.8821132471831,-34.8824930262885,-34.8832344711009,-34.8840731575719,-34.8844301959304,-34.88451305404,-34.8846457382091,-34.8846911084288,-34.8847534546751,-34.8847544267025,-34.8847724053496,-34.8847813914423,-34.8847903769096,-34.8847993640445,-34.8848083511794,-34.884821831048,-34.8848308040089,-34.8848487864079,-34.8848667548414,-34.8848757380159,-34.8848892245546,-34.8848982087713,-34.8849026792018,-34.88491165654,-34.8849206409651,-34.8849341164565,-34.8849475775654,-34.8849655595475,-34.8849745558538,-34.8849835479912,-34.8849880323873,-34.8850015270552,-34.8850104998077,-34.8850194842328,-34.8850329618085,-34.8850419499856,-34.8850509360783,-34.8850599263398,-34.8850689172266,-34.885082392718,-34.8851003761592,-34.8851138651992,-34.8851228598379,-34.8851318553104,-34.8851408576615,-34.8851543571235,-34.8851678565856,-34.8851768474724,-34.8851858433618,-34.8851993290667,-34.885212797888,-34.8852172801996,-34.8852217629281,-34.8852262293982,-34.8852352219526,-34.8852397073909,-34.8852441846999,-34.88525316579,-34.8852621462548,-34.8852711200495,-34.8852846113823,-34.8852890920265,-34.8852980735334,-34.885302556262,-34.8853070391989,-34.88531152693,-34.8853160140358,-34.8853204880098,-34.8853294816064,-34.8853384647809,-34.8853474533749,-34.885356441552,-34.8853609286578,-34.8853699228796,-34.8853789081386,-34.8853878940228,-34.8853923790442,-34.8854013709732,-34.8854103591503,-34.885419347119,-34.8854283313357,-34.8854373155524,-34.8854417972388,-34.8854507908353,-34.8854597585852,-34.885473234285,-34.8854867193646,-34.8854911989665,-34.8854956810697,-34.8855001556691,-34.8855046394398,-34.8855091244611,-34.8855181180577,-34.8855316156437,-34.8855360814886,-34.8855450694572,-34.8855495571883,-34.8855540420013,-34.8855630335134,-34.8855720171048,-34.8855810000709,-34.8855899711559,-34.8855944445045,-34.8855989305681,-34.8856034170486,-34.885607893107,-34.8856123577012,-34.8856257904621,-34.8856302708978,-34.8856347471646,-34.8856482166112,-34.885652703717,-34.8856616910603,-34.8856706715251,-34.8856841563963,-34.8856976458531,-34.8857066442438,-34.8857201449565,-34.8857336506717,-34.8857426394742,-34.8857561176752,-34.885769617971,-34.8857831065941,-34.885792104151,-34.8858055915235,-34.8858145782415,-34.8858235778828,-34.8858460874082,-34.8858640916935,-34.8858821043164,-34.8858911047915,-34.8859001065173,-34.8859091086599,-34.8859226135414,-34.8859315965075,-34.8859405923969,-34.8859450726241,-34.8859495599383,-34.8859585412369,-34.885963028968,-34.8859720102665,-34.8859809923988,-34.8859899649429,-34.8859944443364,-34.8859989153922,-34.886003386448,-34.8860123702479,-34.886021349462,-34.8860303136684,-34.8860392995527,-34.88604828502,-34.8860572667354,-34.886066237612,-34.8860797153961,-34.886084193539,-34.8860931848427,-34.8861021553023,-34.8861156330865,-34.8861201128968,-34.8861290971136,-34.8861335748395,-34.8861425619744,-34.8861515470249,-34.8861560318378,-34.8861650185558,-34.8861785167672,-34.8861920220656,-34.8862010233744,-34.8862055031848,-34.8862099888315,-34.8862189672119,-34.8862279547636,-34.886232441661,-34.8862369285583,-34.886245923614,-34.8862548999099,-34.8862593755515,-34.8862683576838,-34.8862773406499,-34.8862818258797,-34.8863043299856,-34.8863133146192,-34.8863222934165,-34.8863267811476,-34.8863357599449,-34.8863492452329,-34.886353725877,-34.8863672170014,-34.8863762149752,-34.8863852029439,-34.8863941913294,-34.8864076620266,-34.8864211473146,-34.8864301369508,-34.8864436214051,-34.886452622714,-34.8864661096695,-34.8864750963876,-34.886479582868,-34.8864930464782,-34.8865065250962,-34.8865155051441,-34.8865199870388,-34.8865244689336,-34.8865289504115,-34.8865379279581,-34.8865468988346,-34.8865558976422,-34.8865648868615,-34.8865738706613,-34.8865873538649,-34.8866008379024,-34.8866098162827,-34.8866232894812,-34.8866322682785,-34.8866412374875,-34.8866547277781,-34.8866637157467,-34.8866727178894,-34.8866862169345,-34.8866997009719,-34.8867041878692,-34.8867086710147,-34.8867131449887,-34.8867176302185,-34.8867176089575,-34.8867265860872,-34.8867310709002,-34.8867445386792,-34.8867535183102,-34.8867580002049,-34.8867669885905,-34.8867714742372,-34.8867759603008,-34.8867849432669,-34.886820847617,-34.8868343166467,-34.8868432966946,-34.8868522759087,-34.8868567598879,-34.8868657570279,-34.8868792418991,-34.8868927167651,-34.8868972024118,-34.8869061841272,-34.8869151666764,-34.8869241638165,-34.8869331446981,-34.8869421393369,-34.8869556242081,-34.8869690899027,-34.8869825760245,-34.8869960646476,-34.8870095457668,-34.8870185449912,-34.8870275283742,-34.887036519261,-34.8870499849557,-34.8870634648242,-34.8870769526136,-34.8870859334952,-34.8870949206301,-34.8871039090157,-34.8871128969843,-34.8871218803673,-34.8871353706579,-34.8871488492758,-34.8871623245587,-34.8871668114561,-34.8871758052611,-34.8871847932297,-34.8871937928711,-34.8872072731565,-34.8872162502863,-34.8872207363499,-34.8872341953744,-34.8872476719079,-34.8872521575546,-34.8872566432013,-34.887265623666,-34.887274603714,-34.887283583345,-34.8872925633929,-34.887297047372,-34.8873060374251,-34.8873150062172,-34.8873284815001,-34.8873419626193,-34.8873509439179,-34.8873554262295,-34.8873599006204,-34.8873643750113,-34.8873733342151,-34.8873823105111,-34.8873867928227,-34.887395785794,-34.8874002718576,-34.8874047537523,-34.887413741721,-34.8874227221858,-34.887431700983,-34.8874406797803,-34.8874496544087,-34.8874586523826,-34.8874631392799,-34.8874856279612,-34.8874946130117,-34.8875036030648,-34.8875170658412,-34.8875260371346,-34.8875305244488,-34.8875395028292,-34.8875439797214,-34.8875529631043,-34.8875664371366,-34.8875799107519,-34.8875978683465,-34.8876158255241,-34.8876203036669,-34.8876247909812,-34.8876337693616,-34.8876427281485,-34.8876516865185,-34.8876561629938,-34.8876606494743,-34.8876696107625,-34.8876785895598,-34.8876920594232,-34.8877010440568,-34.887705520949,-34.8877145034982,-34.8877234852136,-34.8877369371511,-34.8877414232147,-34.8877504166028,-34.8877548968301,-34.8877773838439,-34.8877908612112,-34.8877998391746,-34.8878043194019,-34.8878088062992,-34.8878132923628,-34.8878267780677,-34.8878357797935,-34.8878402358416,-34.8878492017155,-34.8878581609193,-34.887862629057,-34.8878716145244,-34.8878850610424,-34.8879030144681,-34.8879164809965,-34.8879299475249,-34.8879389188183,-34.8879478884441,-34.8879523599168,-34.8879613324609,-34.8879748285878,-34.8879883363875,-34.888001837517,-34.8880108388259,-34.888019821792,-34.8880197867739,-34.8880107404418,-34.8880017007799,-34.8879971605217,-34.8880016340788,-34.8880151277044,-34.8880331582533,-34.8880467023216,-34.8880557365641,-34.8880737608598,-34.8880872365595,-34.8880962270295,-34.8881007114255,-34.8881051954047,-34.8881141854578,-34.8881366195276,-34.888154570452,-34.8881859999943,-34.8882174195315,-34.8882533463933,-34.8882713035709,-34.8882892603317,-34.8882982303744,-34.8883072112561,-34.8883161921378,-34.8883206656949,-34.8883386266245,-34.8883431005985,-34.8883520814801,-34.8883610631956,-34.8883790145369,-34.8884150189386,-34.8884285125643,-34.888442002438,-34.8884509854041,-34.8884554577106,-34.8884599283495,-34.8884598912471,-34.8884553480707,-34.8884508032268,-34.8884462758919,-34.8884462337869,-34.8884461916818,-34.8884506777454,-34.8884551646428,-34.8884641371868,-34.888468621166,-34.8884776128866,-34.8884866046072,-34.8884910902539,-34.8885000823913,-34.8885090753626,-34.8885225585662,-34.8885315490362,-34.8885405353373,-34.8885495212215,-34.8885585058551,-34.8885674904887,-34.888585459756,-34.8885989216986,-34.8886123948971,-34.8886258685124,-34.8886303554098,-34.8886393504654,-34.8886438340277,-34.8886528240808,-34.8886618057962,-34.8886617770314,-34.8886527348681,-34.8886481937762,-34.8886571754916,-34.8886751943677,-34.8887022554071,-34.8887157702938,-34.8887292680883,-34.8887427546269,-34.8887472402736,-34.8887517259203,-34.8887562111502,-34.8887606959631,-34.8887651799423,-34.8887696639214,-34.8887741474837,-34.8887786314629,-34.8887786043656,-34.8887830845928,-34.8887875652369,-34.8887920454641,-34.8887965261083,-34.8888010071693,-34.8888054878134,-34.8888099688744,-34.8888144503523,-34.8888189314133,-34.8888279202157,-34.8888368915091,-34.8888638228983,-34.8888907551213,-34.8888997364198,-34.8889042112276,-34.8889176802572,-34.8889311497038,-34.8889491218892,-34.8889625888344,-34.8889760832938,-34.8889895873415,-34.8890031001438,-34.8890211106823,-34.8890301119912,-34.8890390837014,-34.8890390491002,-34.8890300023513,-34.8890299664995,-34.8890344392228,-34.8890434234395,-34.8890524239146,-34.8890659246273,-34.8890794307595,-34.8890974367122,-34.8891109303379,-34.8891199108027,-34.8891243977,-34.8891288837636,-34.8891333689934,-34.8891378538064,-34.8891378317116,-34.8891378087831,-34.8891422806728,-34.8891467546468,-34.8891557371959,-34.8891692299879,-34.8891917207536,-34.8892052068754,-34.8892141890077,-34.889223150296,-34.8892276359427,-34.8892321215893,-34.8892320999115,-34.8892365638803,-34.8892410478595,-34.8892500191529,-34.8892590104566,-34.8892679859188,-34.8892724715655,-34.8892769455395,-34.889281417846,-34.8892904099835,-34.8892948847912,-34.8893038719262,-34.8893128565598,-34.8893173397052,-34.8893263310089,-34.8893353114737,-34.8893443044449,-34.8893533032525,-34.8893622853848,-34.8893667618601,-34.8893712324991,-34.8893802279716,-34.8893892101039,-34.8894026995607,-34.8894116725217,-34.8894206488177,-34.8894251311293,-34.8894296117734,-34.8894340865812,-34.8894430487032,-34.8894475060019,-34.8894519891473,-34.8894564731265,-34.8894609579394,-34.889469939238,-34.8894744090432,-34.8894788930223,-34.8894833636613,-34.8894833378146,-34.8894877851082,-34.8894922499108,-34.8894922115577,-34.8894966813629,-34.889501162007,-34.8895146656379,-34.8895326490791,-34.8895416420503,-34.8895461268632,-34.8895551181669,-34.8895595913072,-34.8895685767745,-34.8895730557511,-34.8895775413978,-34.8895820270445,-34.8895910108444,-34.8895909849977,-34.8895954556367,-34.8896089500961,-34.8896224245452,-34.8896359140021,-34.889644886963,-34.8896583664147,-34.8896628495601,-34.889667331038,-34.889676328178,-34.8896808121572,-34.8896898034609,-34.8896987772556,-34.8897077560529,-34.8897167348501,-34.8897212221643,-34.8897302151356,-34.8897346991148,-34.8897391830939,-34.889748180234,-34.8897571657014,-34.8897706651634,-34.8897796472957,-34.8897886260929,-34.8898020980408,-34.8898065828537,-34.8898155691548,-34.8898245696299,-34.8898335550973,-34.8898470353828,-34.8898560100112,-34.8898604964917,-34.8898649804708,-34.8898694661176,-34.8898739509305,-34.8898829355641,-34.8898919193639,-34.8899008956599,-34.8899053813066,-34.8899143726103,-34.8899188565895,-34.8899233372336,-34.8899278237141,-34.8899322935193,-34.8899367533193,-34.8899367174675,-34.8899456879271,-34.8899546867347,-34.8899636680332,-34.8899681486773,-34.8899681136593,-34.8899725867995,-34.8899815797708,-34.8899950692276,-34.8900040521937,-34.8900085370067,-34.8900130084794,-34.8900174816196,-34.890021964765,-34.8900309510661,-34.8900354375466,-34.8900399240271,-34.8900489119957,-34.8900533918061,-34.8900623772735,-34.8900668470786,-34.8900713335591,-34.8900848230159,-34.8900938151534,-34.8901027889481,-34.8901117769168,-34.890120752379,-34.8901342359995,-34.8901432006228,-34.8901566734044,-34.8901701386821,-34.8901746259963,-34.8901791124768,-34.8901835989572,-34.890188073765,-34.8901970558973,-34.8902015373752,-34.8902060196869,-34.8902105061673,-34.8902149926478,-34.8902239672762,-34.8902329427384,-34.8902374167124,-34.890246398011,-34.8902508786551,-34.8902508503071,-34.8902553276162,-34.8902598040915,-34.8902642814006,-34.8902687587096,-34.890273241855,-34.8902822106471,-34.8902911894444,-34.8902956759249,-34.890304651387,-34.8903136235142,-34.8903181074934,-34.890327092127,-34.8903405574047,-34.8903495403708,-34.8903585183343,-34.8903674962978,-34.890376485934,-34.8903809682456,-34.8903854380508,-34.890389907856,-34.890403375635,-34.8904078629492,-34.8904168475828,-34.8904258272139,-34.8904348076787,-34.8904437881434,-34.8904482721226,-34.8904527561018,-34.8904617390679,-34.890475199343,-34.8904796749845,-34.8904886512805,-34.8904976475868,-34.8905066338879,-34.8905156160203,-34.8905245898149,-34.8905290754616,-34.8905380475888,-34.8905470172147,-34.8905515020276,-34.8905604933313,-34.8905739669466,-34.8905784492583,-34.890587440562,-34.8905919137022,-34.8905963968476,-34.8906053739774,-34.8906143452708,-34.8906143202579,-34.8906188034033,-34.890623274876,-34.8906232181801,-34.8906277021593,-34.8906276738113,-34.8906276512997,-34.8906321336113,-34.8906366084191,-34.8906365750686,-34.8906410432062,-34.8906410198609,-34.8906409965155,-34.8906454654869,-34.8906589249283,-34.8906634080737,-34.8906723802009,-34.8906768600112,-34.8906813281489,-34.8906992999174,-34.8907037713901,-34.8907127393485,-34.8907262338079,-34.8907307102832,-34.8907396832441,-34.890753186875,-34.8907621873501,-34.8907711694824,-34.8907846464328,-34.8907981350559,-34.8908071155207,-34.8908161043231,-34.8908205908035,-34.8908295837748,-34.8908385684084,-34.890847549707,-34.8908520361874,-34.8908610258236,-34.8908699979507,-34.8908744769273,-34.8908834582259,-34.8908879338674,-34.8908924170128,-34.8908969018258,-34.8909013874724,-34.8909103637684,-34.8909148460801,-34.8909193283917,-34.8909238073683,-34.8909282855111,-34.8909327719916,-34.8909372576383,-34.8909462431057,-34.8909507204147,-34.8909552018926,-34.8909596783679,-34.8909641548432,-34.8909686279834,-34.8909731127964,-34.8909775842691,-34.8909820465704,-34.8909865313833,-34.8909955143494,-34.891004498983,-34.8910134877855,-34.8910224765879,-34.891031459554,-34.8910404525252,-34.8910449390056,-34.8910584076184,-34.8910628915976,-34.8910628682522,-34.8910718445482,-34.8910763168547,-34.8910898071453,-34.8911078030929,-34.8911122520541,-34.8911167385345,-34.8911212208462,-34.8911257039916,-34.8911301838019,-34.8911346636123,-34.8911436424095,-34.8911481138822,-34.8911525978614,-34.8911570826743,-34.8911660673079,-34.8911750511078,-34.8911840349076,-34.8911975360372,-34.8912020158475,-34.8912109963123,-34.891215478624,-34.891224475764,-34.8912379593845,-34.8912469256753,-34.8912513854754,-34.8912603784466,-34.8912648524206,-34.891273823714,-34.8912783085269,-34.8912827933399,-34.8912917771397,-34.8913007601058,-34.8913052465863,-34.8913142395575,-34.8913232191885,-34.8913322154948,-34.8913411959596,-34.8913501922659,-34.8913546779126,-34.891359161058,-34.891372625502,-34.8913861049537,-34.8913950779146,-34.8914085640364,-34.8914175478362,-34.8914310297892,-34.8914355162697,-34.8914445067396,-34.8914534880382,-34.8914624785081,-34.891471465643,-34.8914804519441,-34.8914894490842,-34.891502931871,-34.8915119248422,-34.891525410964,-34.8915388970858,-34.891547886722,-34.8915523732024,-34.8915613478309,-34.8915703349658,-34.8915748089398,-34.8915837902384,-34.8915927581967,-34.8916017386615,-34.89161071996,-34.8916197020923,-34.8916286842247,-34.8916331673701,-34.8916376496817,-34.8916466276452,-34.891655604775,-34.8916645819047,-34.8916735548656,-34.8916780263383,-34.8916870193096,-34.8917004837535,-34.8917094708884,-34.8917229570102,-34.8917319424776,-34.8917409329475,-34.8917499242512,-34.8917634137081,-34.8917768939936,-34.8917813788065,-34.8917903692764,-34.8917993597464,-34.8918083418787,-34.8918173406863,-34.8918263219848,-34.8918353166236,-34.8918398022703,-34.8918487960753,-34.8918577798752,-34.8918667678438,-34.8918757483086,-34.8918892436018,-34.8918982290692,-34.8919252421672,-34.8919387299565,-34.8919432039305,-34.891956701725,-34.8919792116673,-34.8919927094618,-34.8920017107707,-34.8920107054094,-34.8920196950456,-34.8920286846818,-34.8920376734842,-34.892046664788,-34.892055661928,-34.892069143881,-34.8920781368522,-34.8920871273222,-34.8920961169583,-34.8921051065945,-34.8921140962307,-34.8921230833656,-34.8921320646642,-34.8921365503109,-34.8921455241056,-34.8921590060585,-34.892163492539,-34.8921769869984,-34.8921904747878,-34.8922039525719,-34.8922084357173,-34.8922174211847,-34.8922264074858,-34.8922353854493,-34.8922488707374,-34.8922578461996,-34.8922713289863,-34.8922803111187,-34.8922937747289,-34.8922982603756,-34.8923117298221,-34.8923207219596,-34.8923342064139,-34.8923477025408,-34.8923656984884,-34.8923746814545,-34.8923791529272,-34.8923881342258,-34.8923971313659,-34.8924061318409,-34.8924151223109,-34.8924241169497,-34.8924375939001,-34.8924465793675,-34.8924555731725,-34.8924645519697,-34.8924735357695,-34.892482524572,-34.8925050261766,-34.892518513966,-34.892531995919,-34.8925364815656,-34.8925499718563,-34.8925589556561,-34.8925724467805,-34.8925814289128,-34.8925904052088,-34.8925993890086,-34.8926128717954,-34.8926218480914,-34.8926353333794,-34.8926488261713,-34.8926623172957,-34.8926803082407,-34.8926982991858,-34.8927072863207,-34.8927162776244,-34.8927252564217,-34.8927342510604,-34.8927477288446,-34.8927612116313,-34.8927702096052,-34.8927882005502,-34.8927971960228,-34.892810691316,-34.892819688456,-34.8928286889311,-34.8928376894062,-34.8928511905358,-34.892864689164,-34.8928736871379,-34.892882676774,-34.8928916722466,-34.8929006643841,-34.8929096656929,-34.892927656638,-34.8929411544325,-34.8929501540738,-34.8929591528814,-34.8929681416838,-34.8929771371563,-34.8929861342964,-34.8929951314365,-34.8930086283972,-34.893017626371,-34.8930356198174,-34.8930446202924,-34.893058107248,-34.8930671018868,-34.8930761015281,-34.8931030921146,-34.8931255895504,-34.8931615831132,-34.8931885620269,-34.8931975491618,-34.8932110461225,-34.8932290354,-34.8932380358751,-34.8932470330152,-34.8932560301553,-34.8932695312848,-34.8932830324144,-34.8932920303882,-34.8933010291958,-34.8933100196657,-34.8933235107901,-34.8933325104314,-34.8933460057246,-34.8933685073293,-34.8933865007756,-34.8934045025596,-34.8934270024968,-34.8934405052938,-34.8934495007663,-34.8934584979064,-34.8934674808725,-34.8934764796801,-34.8934899716382,-34.8935124707416,-34.8935304616866,-34.8935439611486,-34.8935529532861,-34.8935664560832,-34.8935709242209,-34.8935708725275,-34.893575341499,-34.8935888467973,-34.8936113692461,-34.8936293927079,-34.8936474178372,-34.8936609314732,-34.8936744326028,-34.8936834330779,-34.8936924327192,-34.8937014215217,-34.8937104203292,-34.8937194174693,-34.8937329202664,-34.8937419132376,-34.8937599041826,-34.8937779017978,-34.8937913929222,-34.8938048698726,-34.8938138511712,-34.8938228499788,-34.8938363427707,-34.8938588435415,-34.893867835679,-34.8938768278165,-34.893885823289,-34.8938993094108,-34.8939217935065,-34.8939307789738,-34.8939397794489,-34.8939487582462,-34.8939622435343,-34.8939757354924,-34.8939847259623,-34.8939937030921,-34.8940071900476,-34.8940161730137,-34.8940251651512,-34.8940341564549,-34.8940476467455,-34.8940611362024,-34.8940701191685,-34.8940791046358,-34.8940880742617,-34.8940970697342,-34.8941060443627,-34.8941150373339,-34.8941285317934,-34.8941374905803,-34.8941419545491,-34.8941464268556,-34.8941508941595,-34.8941598787931,-34.8941733574111,-34.8941868477017,-34.8942048444831,-34.8942228504359,-34.8942363457291,-34.8942498368535,-34.8942588314922,-34.8942678161258,-34.8942768107646,-34.8942858054034,-34.8942992998628,-34.8943082920003,-34.8943172774677,-34.8943352659114,-34.8943487620384,-34.894357760846,-34.8943667413108,-34.8943757326145,-34.8943847297545,-34.8943937277283,-34.8944027181983,-34.8944162201616,-34.8944342294494,-34.8944432207532,-34.8944567060412,-34.8944701904955,-34.8944746744746,-34.8944836649446,-34.8944926545808,-34.8945151495153,-34.8945331504655,-34.8945421492731,-34.8945511489145,-34.8945691565348,-34.8945916422979,-34.8946051267522,-34.8946141280611,-34.8946276283569,-34.8946411261514,-34.8946546189433,-34.8946681150702,-34.8946771088752,-34.8946906025009,-34.8946995846333,-34.8947085834408,-34.8947175722432,-34.8947355740272,-34.8947490676529,-34.8947580672942,-34.8947715584186,-34.8947805355484,-34.8947940099975,-34.8948075102933,-34.8948164999295,-34.8948299960564,-34.8948389856926,-34.8948434680042,-34.8948524576404,-34.8948614414403,-34.8948704260739,-34.8948749117206,-34.8948839113619,-34.8948974016525,-34.8949063879537,-34.8949153692522,-34.8949243438807,-34.894933308504,-34.8949422889687,-34.8949557834282,-34.8949647763994,-34.894978263355,-34.8949827490017,-34.8949917411392,-34.8950007341104,-34.8950142227335,-34.8950232157047,-34.8950276946813,-34.8950366776474,-34.8950456772887,-34.8950591667456,-34.8950681630519,-34.8950771610257,-34.8950861589995,-34.8951086631055,-34.8951176610793,-34.8951311455336,-34.8951446316554,-34.8951536096189,-34.8951670890706,-34.8951715747173,-34.8951805676885,-34.8951940488077,-34.8952210177163,-34.8952480016326,-34.89526598424,-34.8952794736969,-34.8952974704783,-34.8953154547532,-34.8953379455189,-34.8953514358096,-34.8953604296146,-34.8953784088869,-34.8954233845821,-34.8951989898366,-34.8951572645393,-34.8950177479329,-34.8945486685643,-34.8939735410273,-34.8939689986847,-34.89337097777,-34.8931716232912,-34.8927502468098,-34.8925237208179,-34.8923062136439,-34.8922654359472,-34.8917897072684,-34.8914045853178,-34.891362253759,-34.891268662719,-34.8911281977777,-34.8909881738824,-34.8907778871886,-34.8906963149776,-34.8900152273337,-34.8899725444296]}]],[[{&#34;lng&#34;:[-56.0628208332586,-56.062460293165,-56.0621663028211,-56.0622029270399,-56.0627635127121,-56.0631429884174,-56.0631417070615,-56.0633064831819,-56.0634422484209,-56.0634796111977,-56.0642741727427,-56.0651636820353,-56.066903661226,-56.0669262462069,-56.0687010014937,-56.0687466116827,-56.0690936573296,-56.0692150132493,-56.0692901453302,-56.0698650226508,-56.0702134225918,-56.070897245641,-56.0713603282583,-56.0726130527079,-56.0736826158153,-56.0753118257345,-56.076577676636,-56.077137948697,-56.0780214611176,-56.0781686508694,-56.0795758546278,-56.0805215233486,-56.0808385042783,-56.0815096283972,-56.0823189447352,-56.0827662825194,-56.0832604101532,-56.0833778746469,-56.0834676837162,-56.0836517513532,-56.0836851710056,-56.0837740016922,-56.0842713915422,-56.0843849634475,-56.0849845993617,-56.0853333859066,-56.0858678281988,-56.0859759709326,-56.0868224360984,-56.0876427569405,-56.0877043348992,-56.0889475176914,-56.0894585653357,-56.0895249637128,-56.0901020135166,-56.0901240682325,-56.0903331243996,-56.0910334425624,-56.0917583614843,-56.0926670949189,-56.0933451773316,-56.0936591172733,-56.0944688626605,-56.095409091083,-56.0958269456088,-56.0961804454135,-56.0966160937078,-56.0966712448561,-56.0967104878872,-56.0967253048489,-56.0967355243881,-56.0967275881534,-56.0959590783828,-56.0947843581043,-56.094351243313,-56.0937405062069,-56.0927222144031,-56.0912359441254,-56.0896521532054,-56.0877397483119,-56.0863473088125,-56.0862166814447,-56.0855870433909,-56.084641889284,-56.0825970413703,-56.080854095822,-56.079607366185,-56.0767700962656,-56.0748043091256,-56.073652581817,-56.073012798531,-56.0719378123165,-56.0712533044483,-56.0704370571371,-56.0694665627334,-56.0681906020986,-56.0681421481228,-56.0675716993824,-56.0669152563341,-56.0655807704035,-56.0646660199141,-56.0640190451945,-56.0636604025765,-56.0628663500904,-56.0617366496963,-56.0607182735182,-56.0605497450745,-56.0601324008425,-56.0598919373592,-56.059829318272,-56.0596540881044,-56.059498162809,-56.0592618410289,-56.059063853314,-56.0589391877752,-56.0584888809782,-56.0580737504347,-56.0578259966669,-56.0575274729744,-56.0572947053423,-56.056618252415,-56.0563104246246,-56.0561681160973,-56.0554793830326,-56.0543837804535,-56.0538572371935,-56.0535604055947,-56.0530166347252,-56.0527432922523,-56.0524631589255,-56.0521559021274,-56.0520311109168,-56.0516988062658,-56.0512822645799,-56.0505481878113,-56.0502853610258,-56.0500314831862,-56.0494677552536,-56.0494311866851,-56.0491151630853,-56.0485378307815,-56.0480975362171,-56.0478839001822,-56.0475883284529,-56.0473853229749,-56.0465452536988,-56.0463602642186,-56.0458003725903,-56.0455424136149,-56.0452485663677,-56.0448445185585,-56.0442944056305,-56.044055439249,-56.043576865906,-56.0430235039084,-56.0425426539112,-56.0422557595253,-56.0420407596805,-56.0419162540743,-56.0417492752976,-56.0414990772964,-56.0412942279058,-56.041311632619,-56.0411854601181,-56.0411117040887,-56.0409342102461,-56.0408083367415,-56.0405055824781,-56.0403685570173,-56.0398021371513,-56.0398553682598,-56.0395877355202,-56.0394673442501,-56.0392639912133,-56.0387082815551,-56.0385178859209,-56.0383760300842,-56.0382567875226,-56.0382741642586,-56.0384127049636,-56.0386329630082,-56.0403763804285,-56.042161431972,-56.0422585047669,-56.0439804680203,-56.0439757967395,-56.043839415591,-56.0443776541883,-56.0446343543641,-56.0448187579034,-56.0451758376343,-56.0457148384887,-56.0475968541006,-56.0491789280137,-56.0493978312216,-56.0495898235754,-56.0513256800059,-56.0514777818601,-56.0524122599326,-56.0528880682132,-56.0536871582934,-56.0542781099061,-56.0548839156689,-56.0552196354749,-56.055618241046,-56.0556244532174,-56.0560031862387,-56.0569334259872,-56.0580741210344,-56.0579009408981,-56.0579918128389,-56.0580569999418,-56.0582250608806,-56.0582821152207,-56.0586912665712,-56.0589140931547,-56.0592703769342,-56.0596568827564,-56.0603692997376,-56.0605885122877,-56.0607229886187,-56.0614718934195,-56.0616117970669,-56.0619134337332,-56.0620478994395,-56.0623716482966,-56.0629611477887,-56.0629412172366,-56.0628208332586],&#34;lat&#34;:[-34.8777585474913,-34.8777243768234,-34.877696512686,-34.8778010298394,-34.8789220058572,-34.8797190569168,-34.8797201834856,-34.879748162284,-34.8798503427007,-34.8799542724287,-34.8797740044318,-34.8797394716142,-34.8802125114039,-34.880221483948,-34.8808582139926,-34.8807860185304,-34.8800687712318,-34.8798206641099,-34.8796672885519,-34.8785398659901,-34.8785859193187,-34.8788078358684,-34.8789648894536,-34.8793959890501,-34.8797788982366,-34.8803468476374,-34.8807841109708,-34.8809767698733,-34.8812962250388,-34.8813902422274,-34.8818797123203,-34.8821714898039,-34.882315074002,-34.8825394206631,-34.8828243457152,-34.8829281892775,-34.8831335598425,-34.8827812403088,-34.8825257285298,-34.8820020671162,-34.8819069894321,-34.8816542682361,-34.8808420360659,-34.8806344919468,-34.879957263933,-34.8795329194627,-34.8790090526245,-34.8788724374625,-34.8783472755698,-34.8778436138218,-34.877805409736,-34.8770341020826,-34.8767172523704,-34.876697398868,-34.8763429581455,-34.8763193865915,-34.8761877659481,-34.8757722746755,-34.8753231029877,-34.8747241217217,-34.8743469610404,-34.874134303431,-34.8736446464345,-34.8731499826364,-34.8729830406174,-34.8728309435377,-34.8726434989824,-34.8725892236096,-34.872539678599,-34.8725118802002,-34.8724621195534,-34.8724147632104,-34.8723704742613,-34.8723081560007,-34.8722851766162,-34.8722111877273,-34.8720691112915,-34.8718226678943,-34.8715469675696,-34.8712218034284,-34.8709226080714,-34.8709003332504,-34.8707573595152,-34.870603345086,-34.8702539615667,-34.8699418722809,-34.869971329973,-34.8700353713341,-34.8700796716809,-34.8701043810909,-34.870119106185,-34.8701679549695,-34.8701990549166,-34.870144641575,-34.8699947742604,-34.8696333443933,-34.8696196189477,-34.8694331140745,-34.8692184895338,-34.868780910059,-34.8684800865573,-34.8682769579555,-34.8681513048939,-34.8678913000488,-34.8675327042694,-34.8671791357984,-34.8670648352666,-34.8667875704847,-34.8666580760245,-34.8667671978595,-34.8668838800436,-34.8671018860564,-34.8673761476007,-34.8675116561521,-34.8676793159331,-34.8680012972006,-34.868131887146,-34.8681979057185,-34.8682750464655,-34.8683351947437,-34.8684707283152,-34.868552651804,-34.8686263032485,-34.8687654108004,-34.8690695127682,-34.8692755346282,-34.8692900868846,-34.8694016775554,-34.8694226670984,-34.8694342747138,-34.8694222991751,-34.869408354417,-34.8692749583666,-34.8690193957698,-34.8686395140566,-34.8685310335353,-34.8683688570658,-34.8681659942859,-34.8680859352117,-34.8679907207406,-34.8676800927988,-34.8675274722861,-34.8674246249446,-34.8674424406504,-34.8674303858689,-34.867612161797,-34.8676891945777,-34.868023770809,-34.8682156641272,-34.8683031062396,-34.8684125329078,-34.8684682738332,-34.8685327998399,-34.8684835606527,-34.8684235076484,-34.8684281533158,-34.8684680498694,-34.8684832185617,-34.8686339993913,-34.8686965408913,-34.8689367150027,-34.8692664579131,-34.869607254204,-34.8699013516749,-34.8700862566536,-34.8701973905905,-34.8702921988293,-34.8705172023498,-34.870653715776,-34.8709780610017,-34.8724629698398,-34.8729328934941,-34.873024140861,-34.873194637877,-34.8734604981862,-34.8737415462991,-34.8738406159999,-34.8740262209025,-34.8742096901067,-34.8743603216912,-34.8743683888482,-34.8745117399119,-34.8746479413916,-34.8746527084178,-34.8747766361189,-34.8749115177542,-34.8758162375653,-34.8758479472773,-34.8758288279347,-34.8758514136594,-34.8759588119053,-34.8759894986725,-34.8761640258312,-34.8762932636638,-34.8763156168744,-34.8763226217217,-34.8764779620707,-34.8753246585892,-34.8754060697853,-34.8754839015499,-34.8755661691459,-34.8756333300113,-34.8756818604563,-34.8757083211861,-34.8757346718592,-34.875735170206,-34.8757655519515,-34.875836042472,-34.8758878523463,-34.8770861172893,-34.8770908178013,-34.8771153010919,-34.8771510124927,-34.8771556505564,-34.877188910506,-34.8772070235093,-34.8772359840433,-34.8772673999749,-34.8773253033112,-34.8773442344989,-34.8773598163698,-34.8774386394927,-34.8774465057901,-34.8774737169333,-34.8774770165333,-34.8774908244266,-34.8775496602758,-34.8776431746892,-34.8777585474913]}]],[[{&#34;lng&#34;:[-56.1127831674957,-56.1126521807929,-56.1124419545007,-56.1121456061296,-56.1119476182874,-56.1117744829585,-56.1116685028704,-56.1115378192849,-56.1112859039072,-56.1108435393357,-56.1106906753705,-56.1104815866984,-56.1103391912725,-56.1102232658038,-56.1098392595768,-56.1079561292495,-56.1075819250533,-56.106744748294,-56.1066756793401,-56.1066463708916,-56.1065592859797,-56.1064974741017,-56.1064719142532,-56.1064210613604,-56.1062885396822,-56.1061680975671,-56.1060528002862,-56.1059798323051,-56.105766797273,-56.1055876382094,-56.1054500739306,-56.1054000681414,-56.1052645849359,-56.1047551555435,-56.1047213914638,-56.104608353167,-56.1045070942786,-56.1043391143137,-56.104306290719,-56.1042532100106,-56.1041901374825,-56.1041395847445,-56.1040217973319,-56.1039474123029,-56.1039443440539,-56.1038828856916,-56.1037972481928,-56.103725377794,-56.1036436689881,-56.1036085375365,-56.1033503844004,-56.1032054296435,-56.1030896099123,-56.1029911257882,-56.102913158912,-56.1030347149349,-56.1030858946629,-56.1031154365651,-56.1030552722034,-56.1031018228775,-56.1031682037785,-56.103045607219,-56.1029214898751,-56.1028913743438,-56.1029467428988,-56.1029464093934,-56.1030103156849,-56.1030572732354,-56.1031384417628,-56.1034929179085,-56.103561139759,-56.1035737062398,-56.1037614163801,-56.1039491465306,-56.104064472674,-56.1042093607298,-56.1044185486133,-56.1046834111613,-56.1046190593796,-56.1045069690715,-56.1044282494017,-56.1042427672738,-56.1038234499696,-56.1034766245899,-56.103352243825,-56.1032627788961,-56.1028779700287,-56.1022368815088,-56.1017530317598,-56.1010499823023,-56.100781106385,-56.1003590129248,-56.1000162106482,-56.0999745986506,-56.09947568625,-56.0994423930755,-56.0987493715403,-56.0978750646556,-56.0978748830763,-56.0971307892559,-56.0957298676382,-56.0953175207612,-56.0939340815053,-56.0938009528196,-56.0935326604637,-56.0927736770136,-56.0926878951189,-56.0925009965925,-56.0918903298169,-56.0915597306336,-56.0907391204488,-56.0847091039484,-56.0804323183006,-56.0799503830876,-56.079562069491,-56.0789789420906,-56.0791713346457,-56.0798308014163,-56.0804895344751,-56.0811875878124,-56.0813784595832,-56.0811831055007,-56.0809498585427,-56.0804449448124,-56.0803057730379,-56.0811173916104,-56.0815494210857,-56.0815951379964,-56.0827155758349,-56.0839474044538,-56.0839988910067,-56.0846320241964,-56.0849907025093,-56.0854227608551,-56.0854117129685,-56.0856049592972,-56.0861858455418,-56.0871362090019,-56.0877768260511,-56.0879478409146,-56.0881234381412,-56.0883497735965,-56.0883603336476,-56.0882135312712,-56.087540324081,-56.0873849839682,-56.0874276910594,-56.0866390427235,-56.0838189034298,-56.083218975451,-56.0794749845791,-56.0773413883839,-56.0756926405942,-56.076860149375,-56.0780351553556,-56.0780875090224,-56.0790789603392,-56.0792746812775,-56.0801815565771,-56.080219482809,-56.0801804047086,-56.0754894007073,-56.0747077359181,-56.0734752906404,-56.0724091305939,-56.0717218480525,-56.071372073932,-56.0706612464804,-56.0696365023789,-56.0695799270232,-56.0695073549521,-56.0695003637894,-56.0694656007516,-56.0694681837713,-56.0694865489221,-56.0694203941217,-56.0692811465684,-56.0690898148352,-56.0670988943915,-56.0636503167263,-56.0592416430604,-56.0536586304246,-56.0464633476432,-56.0465935334409,-56.0467352713734,-56.0470804642302,-56.0472522850699,-56.0475759711986,-56.0476824087281,-56.0478476626045,-56.0480093401625,-56.0482446831066,-56.0484253660035,-56.048557662513,-56.0485897526071,-56.0487093533386,-56.048763365573,-56.048958172309,-56.0489862648421,-56.0490864417163,-56.0494400025258,-56.0495799106721,-56.0498223866915,-56.0499093505699,-56.0500687394686,-56.0505778001457,-56.0508780840236,-56.0512584940632,-56.0521148178834,-56.0527122288226,-56.052915302899,-56.0529758874394,-56.0528138666178,-56.0525361121064,-56.0522499622273,-56.0518519035488,-56.0518941734802,-56.0519384880674,-56.0521985174546,-56.052972859782,-56.0534970403985,-56.0539297972641,-56.054810188787,-56.0550316418539,-56.0550212407381,-56.0549345660831,-56.0549108559572,-56.0548956224188,-56.0548454886065,-56.0547370977791,-56.0545972608936,-56.0545040002179,-56.0542597601137,-56.0542508918342,-56.0542379151735,-56.0542033552029,-56.0542102101923,-56.0542974203813,-56.054460904669,-56.0548241905291,-56.0552611352239,-56.0562132261242,-56.056222572477,-56.0561862677297,-56.0561709834348,-56.0561196541214,-56.0560516994283,-56.0560255865395,-56.0560936139779,-56.0563045476113,-56.0564060551675,-56.0566175658439,-56.0567110705447,-56.0571010930323,-56.0568165402312,-56.0567447524995,-56.0570844669653,-56.0573437733033,-56.0577281081568,-56.0581027952284,-56.0585074969795,-56.0587315542326,-56.0590662006642,-56.0591094207942,-56.0589921629445,-56.0587701613496,-56.058911434239,-56.0593764177753,-56.0595616205055,-56.0596624629524,-56.0598237155597,-56.0599751244624,-56.0601104604601,-56.060223005786,-56.0604557251165,-56.0605258854956,-56.0605547489635,-56.060635713378,-56.0607768110023,-56.060802023933,-56.060677652173,-56.0604915252251,-56.0602433547267,-56.0601204200854,-56.0599241583521,-56.0598919373592,-56.0601324008425,-56.0605497450745,-56.0607182735182,-56.0617366496963,-56.0628663500904,-56.0636604025765,-56.0640190451945,-56.0646660199141,-56.0655807704035,-56.0669152563341,-56.0675716993824,-56.0681421481228,-56.0681906020986,-56.0694665627334,-56.0704370571371,-56.0712533044483,-56.0719378123165,-56.073012798531,-56.073652581817,-56.0748043091256,-56.0767700962656,-56.079607366185,-56.080854095822,-56.0825970413703,-56.084641889284,-56.0855870433909,-56.0862166814447,-56.0863473088125,-56.0877397483119,-56.0896521532054,-56.0912359441254,-56.0927222144031,-56.0937405062069,-56.094351243313,-56.0942247447411,-56.0931112037929,-56.0930188361566,-56.0923351882115,-56.0931064239665,-56.093353630511,-56.0951611612191,-56.0952981670352,-56.095323200034,-56.095983195328,-56.096224904645,-56.0968670266725,-56.0986637253138,-56.0976310874432,-56.0966172331275,-56.0957481628381,-56.0961051945372,-56.0961672532091,-56.0967521415177,-56.0973674988732,-56.0974191944446,-56.0983311758661,-56.099043283118,-56.0993420105127,-56.0994824362672,-56.0997083861287,-56.1006679676761,-56.1010566347883,-56.1027101275369,-56.1038105217049,-56.1037636441957,-56.1043312702683,-56.1045490292388,-56.1049443998082,-56.1052871098859,-56.1054995661217,-56.1056898976139,-56.1058083653774,-56.106157825603,-56.10642478995,-56.1064840071565,-56.106548353675,-56.1069798428716,-56.1069884606494,-56.1072189661937,-56.1072631289695,-56.1077507938041,-56.1081667083018,-56.1083162987828,-56.1086506712272,-56.1096138746426,-56.110386079555,-56.1106627555773,-56.1106513697053,-56.1110061793564,-56.1114170645938,-56.1118720587996,-56.1119722042268,-56.1123477512393,-56.1124511078516,-56.112669937399,-56.1127552147469,-56.1130422472243,-56.1131651327839,-56.1134725968298,-56.1135836219428,-56.1136675064557,-56.1137748672396,-56.1139504044353,-56.1140674194239,-56.1140507160387,-56.1139853030124,-56.1138665649261,-56.1138705966647,-56.113647701657,-56.1146427815118,-56.1151220420121,-56.1152102341617,-56.1147093946461,-56.114590894356,-56.114415983113,-56.1143594817446,-56.1140892760549,-56.11405080288,-56.1139855292167,-56.1139592393426,-56.1139031395647,-56.1138782739024,-56.1138169889628,-56.1137240143468,-56.1136533112167,-56.1135805023191,-56.1124981935306,-56.1124178940805,-56.1119714438346,-56.1119637331914,-56.1131145600356,-56.1136159652898,-56.1143262982933,-56.1153854845428,-56.1162210917689,-56.1174892763913,-56.1181138394236,-56.1182217253417,-56.1200413627692,-56.1200703038901,-56.1203748051675,-56.1219485049878,-56.1220741080446,-56.1222474885701,-56.1237219992046,-56.123804174633,-56.1241178752676,-56.1241783058924,-56.1237254970011,-56.1222902149711,-56.1221219630728,-56.1206597112631,-56.1191682687547,-56.1179588183436,-56.1166908710974,-56.1164755392429,-56.1153852756853,-56.1142216509907,-56.112993331111,-56.112913431074,-56.1127831674957],&#34;lat&#34;:[-34.8348876798837,-34.8348073200078,-34.8346811762834,-34.8344827528851,-34.8342725858889,-34.8340553972328,-34.8340886098004,-34.8341332668734,-34.8342118483175,-34.8343538576803,-34.8344001597437,-34.8344657572966,-34.8345109037894,-34.8345406745819,-34.8346542969565,-34.8352065327656,-34.8353098643308,-34.8355208079574,-34.8353928319569,-34.8352677541177,-34.835154715821,-34.8350356644231,-34.8349522914256,-34.8348689717888,-34.8347508341956,-34.8345951505722,-34.8344792865753,-34.8343407218938,-34.8341918759265,-34.833982004357,-34.8334846978834,-34.8333571954604,-34.83317448123,-34.8328884637235,-34.8328877833726,-34.83293016523,-34.8329454331041,-34.8329292347502,-34.8329383361106,-34.8329371555018,-34.8329958624451,-34.8330104132827,-34.8329986305393,-34.8328623836066,-34.8328134450344,-34.8327662340198,-34.8327640095393,-34.8328090961249,-34.8328188978466,-34.8327884821605,-34.8326991660979,-34.8327131132908,-34.8327053359465,-34.8326421566966,-34.8326046106665,-34.8325581200235,-34.8325121629889,-34.8323851441487,-34.8322935802602,-34.8321347850321,-34.8320081397179,-34.8319374132424,-34.8319094654957,-34.8318531030948,-34.8317789281743,-34.8316731302783,-34.8315918817096,-34.8315635704421,-34.8315351858034,-34.8313722050835,-34.8313050571202,-34.8312203901219,-34.8310683483768,-34.8309233569343,-34.8308772664976,-34.830707679037,-34.8305873269684,-34.8303605190981,-34.8303376171488,-34.8302850164411,-34.8302423578358,-34.8301542347887,-34.8299192407472,-34.8297234304858,-34.8296666846227,-34.8296095960714,-34.8293852628283,-34.829020215084,-34.8287386835695,-34.8283319928565,-34.8281824467751,-34.8279631350736,-34.8277714324087,-34.8277711245573,-34.8274618239622,-34.8274411837144,-34.8270624257533,-34.8275839933257,-34.8275841186066,-34.8280975016067,-34.8272579899441,-34.8270249562714,-34.8262430998727,-34.8261885244938,-34.8261578107031,-34.8259634544491,-34.8259370050567,-34.8258793777991,-34.8256486061331,-34.8255236705208,-34.8252129952881,-34.8227912596704,-34.8210599201076,-34.8207093059536,-34.8206109018707,-34.8202289315455,-34.8196561694908,-34.8196188435742,-34.8192029224064,-34.8190438203534,-34.8178265592473,-34.8174753914745,-34.8172504954899,-34.8172199263913,-34.8170444225461,-34.8161144029112,-34.8156223024557,-34.8156041864462,-34.8151783401597,-34.8146531092847,-34.8146214596288,-34.8142326124237,-34.8138983800515,-34.8132866915317,-34.813271076535,-34.8131309776158,-34.8128684155391,-34.8126997685635,-34.8123108880079,-34.8122789982282,-34.8120623131448,-34.8112436988171,-34.8112055046001,-34.8108767884061,-34.8102786999565,-34.8099499971027,-34.8096157384727,-34.8092465098878,-34.8077707896172,-34.8074568446536,-34.8055272228316,-34.8044273115299,-34.8035773038751,-34.8020832533551,-34.8005845671109,-34.8005124632584,-34.7992559085543,-34.7989958277574,-34.7977969513357,-34.7977468124647,-34.7977964370989,-34.7952421950262,-34.7948165474719,-34.7941454130582,-34.7935648114019,-34.7931837880327,-34.7929898735328,-34.7925951532663,-34.7920333153595,-34.7921309564293,-34.7922415516453,-34.7922732456393,-34.7924308412827,-34.7924623599484,-34.7924910760289,-34.7929274016091,-34.7932015797124,-34.7934283176712,-34.7951247110823,-34.7971860744213,-34.7997539120542,-34.8029996726426,-34.8071718254637,-34.8072406150283,-34.8073597636815,-34.8075648186268,-34.8077347900626,-34.8080324195179,-34.8082086045998,-34.8082935802237,-34.8085402837739,-34.8088457421419,-34.8090573082464,-34.809201977484,-34.8093237654647,-34.8094075667364,-34.8095532876854,-34.8096897829497,-34.8097909157331,-34.8099202386985,-34.8103908966087,-34.8106702223374,-34.8118103412129,-34.8122494477025,-34.8126132378961,-34.8129894801251,-34.8135182127851,-34.8140558409029,-34.815158583374,-34.8159494790543,-34.8164111384431,-34.8167419404559,-34.8174994955275,-34.8185428129232,-34.819425869574,-34.8210727041919,-34.8214298837569,-34.8216086541598,-34.8221319118177,-34.8232593027621,-34.8239125908684,-34.8245145780912,-34.8259131997021,-34.8265129243469,-34.8274234218647,-34.8296401747947,-34.8308203692551,-34.8312586772057,-34.8329614049512,-34.8352875934477,-34.8385747007638,-34.8413647238013,-34.8456608484667,-34.8464404371091,-34.8475746054823,-34.8492438787732,-34.8513467897493,-34.8518317623411,-34.8524065400087,-34.8530848271472,-34.8540823000646,-34.8560013804168,-34.8565367254092,-34.8570079931523,-34.8583460553589,-34.8587789725908,-34.8593137173199,-34.8594615732221,-34.8596429512454,-34.8601129436989,-34.8601811813083,-34.8604694844471,-34.8607135908429,-34.8611224399277,-34.860960039654,-34.8609763452882,-34.8612250055307,-34.8613688273083,-34.8617512117478,-34.8620829328323,-34.8624739038166,-34.8625599507707,-34.8628154778301,-34.8629563260737,-34.8629376198746,-34.8627625992707,-34.8629323174273,-34.8631741156363,-34.8633251845796,-34.863452432993,-34.8636644607787,-34.8638426873113,-34.86409308255,-34.864264722696,-34.8647569751199,-34.8648839857328,-34.8650444021835,-34.8651209088002,-34.8656846618614,-34.8657882609574,-34.8659306311892,-34.8661062490677,-34.8663404057683,-34.8663563180348,-34.8665234254431,-34.8666580760245,-34.8667875704847,-34.8670648352666,-34.8671791357984,-34.8675327042694,-34.8678913000488,-34.8681513048939,-34.8682769579555,-34.8684800865573,-34.868780910059,-34.8692184895338,-34.8694331140745,-34.8696196189477,-34.8696333443933,-34.8699947742604,-34.870144641575,-34.8701990549166,-34.8701679549695,-34.870119106185,-34.8701043810909,-34.8700796716809,-34.8700353713341,-34.869971329973,-34.8699418722809,-34.8702539615667,-34.870603345086,-34.8707573595152,-34.8709003332504,-34.8709226080714,-34.8712218034284,-34.8715469675696,-34.8718226678943,-34.8720691112915,-34.8722111877273,-34.8722851766162,-34.8718351261804,-34.8688808375782,-34.8686241293538,-34.8667285743762,-34.8665437254206,-34.8671612042094,-34.8666478420726,-34.8671248766742,-34.8671663086239,-34.8670194287106,-34.8676511485928,-34.8674547997336,-34.8669330764219,-34.8645863662446,-34.8622822070646,-34.860306987848,-34.8601915779713,-34.860156206396,-34.8599270081926,-34.8588846189391,-34.8588666204672,-34.8585490975689,-34.8584169077285,-34.8584343100367,-34.8579833174482,-34.8577845365986,-34.8578951953347,-34.8577140969377,-34.8577827106568,-34.8580102263258,-34.8579012084359,-34.8582119286822,-34.8583038377488,-34.8584805055275,-34.8586515670817,-34.858727729694,-34.858722815493,-34.8587946725515,-34.8587533579111,-34.8589916541399,-34.8590230753447,-34.8590544848767,-34.8589093316841,-34.8588236808451,-34.8586654392359,-34.8586499996066,-34.858479503344,-34.8584876175287,-34.8585684175327,-34.8586172693935,-34.8585746107266,-34.8582213818908,-34.8576528987095,-34.8574050408829,-34.8568003290175,-34.8561008482774,-34.8559742556157,-34.8559463919537,-34.855945566528,-34.8559784652456,-34.8558825690385,-34.8558493880668,-34.8563678125692,-34.856325402419,-34.8562129612197,-34.8561723584904,-34.8561383307888,-34.8561002129497,-34.8560339904638,-34.8559978006443,-34.8554201272526,-34.8547093493582,-34.8535617796701,-34.8535618090473,-34.8515483971285,-34.8512487325839,-34.8510989353296,-34.8510040930837,-34.8494730239889,-34.8492874882302,-34.8488113361495,-34.8484844456798,-34.8475948014915,-34.8474281255324,-34.8472381475559,-34.8471228050427,-34.8469306065063,-34.8469102050942,-34.8467279344259,-34.8464731196781,-34.8462391656887,-34.8460504182486,-34.8463610706155,-34.8462689310395,-34.8454408106233,-34.8453292697654,-34.8450009337675,-34.8448420818435,-34.8446286817876,-34.8443153468595,-34.8440611362125,-34.8436711041743,-34.843472412748,-34.8434339104478,-34.8428947137988,-34.8428801735683,-34.8427848543685,-34.8423201945813,-34.8422814218947,-34.8422279004003,-34.8420186246197,-34.8419743080587,-34.8415552825694,-34.8414745617939,-34.841206278377,-34.8403558698155,-34.8402537850571,-34.8393503196012,-34.838488351729,-34.8377609465876,-34.8370021052336,-34.8368788554606,-34.8362548084739,-34.835583720403,-34.834876742948,-34.8349627548676,-34.8348876798837]}]],[[{&#34;lng&#34;:[-56.1225806619466,-56.1234741227272,-56.1236660216944,-56.1242413917608,-56.1246860877685,-56.1253021721657,-56.1254453593443,-56.1256232911083,-56.1265312060099,-56.1273811776954,-56.1275687010726,-56.1282475044823,-56.1282503192673,-56.1283385585703,-56.1287231097641,-56.1290626715515,-56.129787145181,-56.1299095483075,-56.1299391232986,-56.1299733985989,-56.1306750887641,-56.1313684940565,-56.1319989697148,-56.1321823011207,-56.1327580937595,-56.1334537797335,-56.1342385175343,-56.1343009842906,-56.1342586926352,-56.1342195306285,-56.1340495021928,-56.1340988603845,-56.1340888320128,-56.1339794038225,-56.1339898643204,-56.1339393399447,-56.1338847202785,-56.1339041784404,-56.1338209855357,-56.1338112905358,-56.1337914836542,-56.1337779233274,-56.1337523817384,-56.1337499398396,-56.1336981755328,-56.133675599174,-56.1336318746731,-56.1336089917777,-56.1336009934944,-56.133551067045,-56.1335082331493,-56.1329220227109,-56.1322143816704,-56.132157030725,-56.1316477814254,-56.1310235294827,-56.129461930793,-56.1289578708364,-56.1284814851521,-56.1284030113478,-56.1274365662607,-56.1264015057868,-56.1257470682767,-56.124831389371,-56.1245997965993,-56.1245905985223,-56.124214691324,-56.123573967553,-56.1234914316538,-56.1234393848119,-56.1233936345507,-56.1230429737059,-56.1229996240524,-56.122998646546,-56.1229090898159,-56.1228619889753,-56.1227754120922,-56.1224853921388,-56.1224386553768,-56.122398501335,-56.1202006293504,-56.1195309891523,-56.1189246431108,-56.1190480256381,-56.1192684047304,-56.1193412913202,-56.1193549717089,-56.119507741724,-56.1203329649196,-56.1206551088896,-56.1206192570665,-56.1192860905384,-56.1193473804715,-56.1195399808986,-56.1190130953945,-56.1184823016506,-56.1179783728127,-56.1174263675883,-56.1173109108678,-56.1172717286993,-56.1172335451597,-56.1171577425747,-56.1170184932402,-56.1168598668795,-56.1163729604761,-56.115743369113,-56.1153177162596,-56.1148745810568,-56.1147518977859,-56.1147160639123,-56.1144103216263,-56.1143549470424,-56.1139304780352,-56.113525041906,-56.1135201267205,-56.1131216343608,-56.1128835834617,-56.112738813245,-56.1127526307245,-56.1127687990742,-56.1127654755541,-56.1127728496097,-56.1125693774606,-56.1127577426824,-56.1127611418654,-56.112039100282,-56.1129526979916,-56.1150539869143,-56.1154043676146,-56.1169370513922,-56.1164925621725,-56.1164034071754,-56.1158385982251,-56.1157434474697,-56.1155485916479,-56.1154458490076,-56.114507151564,-56.1136321269581,-56.1128476824,-56.1120372448043,-56.1114042814688,-56.1126383053101,-56.112737322752,-56.1127997461267,-56.1132957190556,-56.1136856394719,-56.1146849899465,-56.1148054320616,-56.1159297519021,-56.1159297519211,-56.1161786043537,-56.1166188005954,-56.1167645076194,-56.1168452240345,-56.1169960465929,-56.1170696797921,-56.118020970397,-56.1180565287353,-56.1184622822828,-56.1184724365629,-56.1189803666,-56.1190390346398,-56.1191071639081,-56.120258813709,-56.120812995111,-56.1212098673475,-56.121478546891,-56.1225806619466],&#34;lat&#34;:[-34.8726254212558,-34.8728352027788,-34.8728798316284,-34.8730227328262,-34.8731298755824,-34.8732816913777,-34.8733054769779,-34.8733350330541,-34.8726659021328,-34.8720509816692,-34.8719153367137,-34.8714224967102,-34.8714204623276,-34.871356707139,-34.8710788569864,-34.8708301804041,-34.8703056765708,-34.87021975726,-34.8701920867237,-34.8701600185177,-34.8696565418195,-34.8691913410461,-34.868741488207,-34.8686120465384,-34.8682104442501,-34.8677212449214,-34.867194366155,-34.8671723828428,-34.8669643770668,-34.8668113742038,-34.8660618156744,-34.8659491513852,-34.8658452276198,-34.8650221928597,-34.864969202002,-34.8641197963623,-34.8631887223883,-34.8629721386443,-34.8617873843028,-34.8616247771088,-34.8613363783742,-34.8610793608237,-34.8606289416629,-34.8605858792144,-34.8595743763313,-34.8593472585296,-34.8586021532644,-34.8583171257957,-34.8582174994297,-34.8577029453199,-34.8576035743712,-34.8568177168311,-34.8560160676375,-34.8558913602391,-34.8552588640446,-34.8544783248339,-34.8550864167758,-34.8552849708419,-34.8554726242862,-34.8555035335602,-34.8558843716349,-34.856287894742,-34.8565271764791,-34.8560589399975,-34.8559405122547,-34.8559357964893,-34.8557430904392,-34.8553389353394,-34.855285040878,-34.8551983278245,-34.8551221101838,-34.8545379105638,-34.8544668280558,-34.8544651671008,-34.8544184136793,-34.8543720182777,-34.8543406900083,-34.8543710072175,-34.8543860555816,-34.8543902544137,-34.8546201015261,-34.8546901223966,-34.85475008332,-34.8554053659869,-34.8558757390706,-34.8558801994832,-34.8558831743507,-34.8558688969984,-34.8556469406178,-34.8563912113584,-34.8564003077163,-34.8568191375262,-34.8569648964381,-34.8574229327651,-34.8575891608383,-34.8577409641271,-34.8578772427765,-34.8580450326109,-34.8578109001949,-34.8576934487416,-34.8576079998987,-34.8574383649154,-34.8574671316854,-34.8574888857823,-34.8575275990893,-34.8574884422284,-34.8573226317157,-34.8571388319254,-34.8570202574402,-34.8569856221254,-34.8573002635132,-34.8573914151689,-34.8573347338397,-34.8573069742701,-34.8573605989374,-34.8572134146623,-34.8572330661011,-34.8573319598062,-34.8577510685446,-34.8579512533461,-34.8582607664561,-34.8588534710101,-34.8594635112179,-34.8596269634519,-34.8596714107163,-34.8616974887248,-34.8618984112533,-34.863299460786,-34.863533042917,-34.8645481947901,-34.8650130282495,-34.8651072148226,-34.8656773904785,-34.8657749947491,-34.8659699490848,-34.8660748788068,-34.8670549776021,-34.8679673231221,-34.8687848163909,-34.8696296853284,-34.870292745704,-34.8704397143514,-34.8704490830341,-34.8704598470852,-34.8705510520272,-34.8706375779172,-34.8708539526641,-34.8708942476119,-34.8712658217422,-34.8712658217135,-34.8713478733143,-34.8714930130772,-34.8715396529298,-34.8715654896219,-34.8715895488517,-34.8716012947542,-34.8717343683837,-34.8717387948332,-34.8718258204768,-34.8718279983377,-34.8719162732135,-34.8719272046834,-34.8719392407082,-34.8721164056763,-34.8722143261385,-34.8723111641155,-34.8723665319066,-34.8726254212558]}]],[[{&#34;lng&#34;:[-56.1139304780352,-56.1143549470424,-56.1144103216263,-56.1147160639123,-56.1147518977859,-56.1148745810568,-56.1153177162596,-56.115743369113,-56.1163729604761,-56.1168598668795,-56.1170184932402,-56.1171577425747,-56.1172335451597,-56.1172717286993,-56.1173109108678,-56.1174263675883,-56.1179783728127,-56.1184823016506,-56.1190130953945,-56.1195399836542,-56.1193473804715,-56.1192860905384,-56.1206192570665,-56.1206551088896,-56.1203329649196,-56.119507741724,-56.1193549717089,-56.1193412913202,-56.1192684047304,-56.1190480256381,-56.1189246431108,-56.1195309891523,-56.1202006293504,-56.122398501335,-56.1224386553768,-56.1224853921388,-56.1227754120922,-56.1228619889753,-56.1229090898159,-56.122998646546,-56.1229996240524,-56.1230429737059,-56.1233936345507,-56.1234393848119,-56.1234914316538,-56.123573967553,-56.124214691324,-56.1245905985223,-56.1245997965993,-56.124831389371,-56.1257470682767,-56.1264015057868,-56.1274365662607,-56.1284030113478,-56.1284814851521,-56.1289578708364,-56.129461930793,-56.1310235294827,-56.1316477814254,-56.132157030725,-56.1322143816704,-56.1329220227109,-56.1335082331493,-56.133551067045,-56.1336009934944,-56.1336089917777,-56.1336318746731,-56.133675599174,-56.1336981755328,-56.1337499398396,-56.1337523817384,-56.1337779233274,-56.1337914836542,-56.1338112905358,-56.1338209855357,-56.1349821143596,-56.1349443982417,-56.1357512410179,-56.1361839131038,-56.1363539465286,-56.1364944678594,-56.1367853997413,-56.1379596266055,-56.1371516499112,-56.1369802619526,-56.1367963833578,-56.13696043463,-56.1376408488703,-56.1385040807277,-56.1376981717665,-56.1376671193971,-56.1380922850208,-56.1382397472852,-56.13835907261,-56.1385698079583,-56.1387459521337,-56.1382030254658,-56.1378828536784,-56.1373582631336,-56.136522858961,-56.1357903945437,-56.1355131949181,-56.1350158517588,-56.134641702622,-56.1343513954097,-56.1342547174812,-56.1337392404206,-56.1335864279017,-56.132663992178,-56.1297835900142,-56.1293782609757,-56.1290509321638,-56.1288734139465,-56.128855744834,-56.1287324946041,-56.1286269134865,-56.1259878924759,-56.1257875624939,-56.1255772673727,-56.1254058523029,-56.1254049303887,-56.125349804915,-56.1253249169575,-56.1248730255117,-56.1246918907613,-56.1246917397738,-56.1245606001451,-56.1245580923384,-56.1241783058924,-56.1241178752676,-56.123804174633,-56.1237219992046,-56.1222474885701,-56.1219485049878,-56.1203748051675,-56.1200703038901,-56.1200413627692,-56.1182217253417,-56.1181138394236,-56.1174892763913,-56.1162210917689,-56.1153854845428,-56.1143262982933,-56.1136159652898,-56.1131145600356,-56.1119637331914,-56.1119714438346,-56.1124178940805,-56.1124981935306,-56.1135805023191,-56.1136533112167,-56.1137240143468,-56.1138169889628,-56.1138782739024,-56.1139031395647,-56.1139592393426,-56.1139855292167,-56.11405080288,-56.1140892760549,-56.1143594817446,-56.114415983113,-56.114590894356,-56.1147093946461,-56.1152102341617,-56.1151220420121,-56.1146427815118,-56.113647701657,-56.1138705966647,-56.1138665649261,-56.1139853030124,-56.1140507160387,-56.1140674194239,-56.1139504044353,-56.1137748672396,-56.1136675064557,-56.1135836219428,-56.1134725968298,-56.1131651327839,-56.1130422472243,-56.1127552147469,-56.112669937399,-56.1124511078516,-56.1125888289026,-56.112752399927,-56.1129845529876,-56.1131074897226,-56.1132870956833,-56.1134050088391,-56.1135270287595,-56.113525041906,-56.1139304780352],&#34;lat&#34;:[-34.8573347338397,-34.8573914151689,-34.8573002635132,-34.8569856221254,-34.8570202574402,-34.8571388319254,-34.8573226317157,-34.8574884422284,-34.8575275990893,-34.8574888857823,-34.8574671316854,-34.8574383649154,-34.8576079998987,-34.8576934487416,-34.8578109001949,-34.8580450326109,-34.8578772427765,-34.8577409641271,-34.8575891608383,-34.8574229393184,-34.8569648964381,-34.8568191375262,-34.8564003077163,-34.8563912113584,-34.8556469406178,-34.8558688969984,-34.8558831743507,-34.8558801994832,-34.8558757390706,-34.8554053659869,-34.85475008332,-34.8546901223966,-34.8546201015261,-34.8543902544137,-34.8543860555816,-34.8543710072175,-34.8543406900083,-34.8543720182777,-34.8544184136793,-34.8544651671008,-34.8544668280558,-34.8545379105638,-34.8551221101838,-34.8551983278245,-34.855285040878,-34.8553389353394,-34.8557430904392,-34.8559357964893,-34.8559405122547,-34.8560589399975,-34.8565271764791,-34.856287894742,-34.8558843716349,-34.8555035335602,-34.8554726242862,-34.8552849708419,-34.8550864167758,-34.8544783248339,-34.8552588640446,-34.8558913602391,-34.8560160676375,-34.8568177168311,-34.8576035743712,-34.8577029453199,-34.8582174994297,-34.8583171257957,-34.8586021532644,-34.8593472585296,-34.8595743763313,-34.8605858792144,-34.8606289416629,-34.8610793608237,-34.8613363783742,-34.8616247771088,-34.8617873843028,-34.8612388947661,-34.8605223769062,-34.8601328493502,-34.8599573501106,-34.8598730420645,-34.8598071146005,-34.8596801082599,-34.8590954476689,-34.8580968476654,-34.8578783280425,-34.8576515113273,-34.8575609779703,-34.8571852625376,-34.8567144547299,-34.8557158513913,-34.855693072493,-34.85545800508,-34.854912089988,-34.8544703340461,-34.8539605377979,-34.8536220899183,-34.853348475475,-34.8529661549692,-34.8523679931485,-34.8514190270757,-34.850586994642,-34.850272168945,-34.8497370296267,-34.8493233820123,-34.8489838889868,-34.8488620731633,-34.848266246241,-34.8481404562329,-34.8478812392147,-34.8469956458249,-34.846870401233,-34.8467720138255,-34.8467183428126,-34.8467129700417,-34.8466754907127,-34.8466433841545,-34.8458400398493,-34.8457790517295,-34.8450495455045,-34.8444548821547,-34.8444514948271,-34.8442489504919,-34.8441963277823,-34.8426305625593,-34.8419731789436,-34.8419729430903,-34.8417680930291,-34.8417641756336,-34.8414745617939,-34.8415552825694,-34.8419743080587,-34.8420186246197,-34.8422279004003,-34.8423201945813,-34.8427848543685,-34.8428801735683,-34.8428947137988,-34.8434339104478,-34.843472412748,-34.8436711041743,-34.8440611362125,-34.8443153468595,-34.8446286817876,-34.8448420818435,-34.8450009337675,-34.8453292697654,-34.8454408106233,-34.8462689310395,-34.8463610706155,-34.8460504182486,-34.8462391656887,-34.8464731196781,-34.8467279344259,-34.8469102050942,-34.8469306065063,-34.8471228050427,-34.8472381475559,-34.8474281255324,-34.8475948014915,-34.8484844456798,-34.8488113361495,-34.8492874882302,-34.8494730239889,-34.8510040930837,-34.8510989353296,-34.8512487325839,-34.8515483971285,-34.8535618090473,-34.8535617796701,-34.8547093493582,-34.8554201272526,-34.8559978006443,-34.8560339904638,-34.8561002129497,-34.8561383307888,-34.8561723584904,-34.8562129612197,-34.856325402419,-34.8563678125692,-34.8558493880668,-34.8558825690385,-34.8559784652456,-34.8560446626343,-34.8562067062044,-34.8565646024473,-34.8567659346128,-34.8570491756874,-34.857129202071,-34.8571833925206,-34.8573069742701,-34.8573347338397]}]],[[{&#34;lng&#34;:[-56.1062719018018,-56.106159836522,-56.1063293571492,-56.1064869338599,-56.1066770206017,-56.1070076783789,-56.1075174699308,-56.1081400756708,-56.1087044596831,-56.1097252320724,-56.1100728246682,-56.1102068170324,-56.1103164541288,-56.1103878977745,-56.1104955914378,-56.1105117161295,-56.1112143937549,-56.1112407284851,-56.1112758384332,-56.1113427624181,-56.1114131792757,-56.1114181321693,-56.1114253156858,-56.1114506236354,-56.1114698938432,-56.1114717327875,-56.1114729956163,-56.1114106079306,-56.1113396046457,-56.1112013400057,-56.1112011399025,-56.1110785383027,-56.1113251770893,-56.1114918262102,-56.1115222964281,-56.1116651147912,-56.1118308973294,-56.1119790811067,-56.1122948106032,-56.1126723653178,-56.1130785157223,-56.1133923899863,-56.1133990734331,-56.1134504749564,-56.1135464353018,-56.1135782991977,-56.1139677133619,-56.1149436967015,-56.1149464114349,-56.115791667355,-56.1158185897781,-56.1159297519021,-56.1148054320616,-56.1146849899465,-56.1136856394719,-56.1132957190556,-56.1127997461267,-56.112737322752,-56.1126383053101,-56.1114042814688,-56.1120372448043,-56.1128476824,-56.1136321269581,-56.114507151564,-56.1154458490076,-56.1155485916479,-56.1157434474697,-56.1158385982251,-56.1164034071754,-56.1164925621725,-56.1169370513922,-56.1154043676146,-56.1150539869143,-56.1129526979916,-56.112039100282,-56.1127611418654,-56.1127577426824,-56.1125693774606,-56.1127728496097,-56.1127654755541,-56.1127687990742,-56.1127526307245,-56.112738813245,-56.1128835834617,-56.1131216343608,-56.1135201267205,-56.113525041906,-56.1135270287595,-56.1134050088391,-56.1132870956833,-56.1131074897226,-56.1129845529876,-56.112752399927,-56.1125888289026,-56.1124511078516,-56.1123477512393,-56.1119722042268,-56.1118720587996,-56.1114170645938,-56.1110061793564,-56.1106513697053,-56.1106627555773,-56.110386079555,-56.1096138746426,-56.1086506712272,-56.1083162987828,-56.1081667083018,-56.1077507938041,-56.1072631289695,-56.1072189661937,-56.1069884606494,-56.1069798428716,-56.106548353675,-56.1064840071565,-56.10642478995,-56.106157825603,-56.1058083653774,-56.1056898976139,-56.1054995661217,-56.1052871098859,-56.1049443998082,-56.1045490292388,-56.1043312702683,-56.1037636441957,-56.1038105217049,-56.1027101275369,-56.1010566347883,-56.1006679676761,-56.0997083861287,-56.0994824362672,-56.0993420105127,-56.099043283118,-56.0983311758661,-56.0974191944446,-56.0973674988732,-56.0967521415177,-56.0961672532091,-56.0961051945372,-56.0957481628381,-56.0966172331275,-56.0976310874432,-56.0986637253138,-56.0968670266725,-56.096224904645,-56.095983195328,-56.095323200034,-56.0952981670352,-56.0951611612191,-56.093353630511,-56.0931064239665,-56.0923351882115,-56.0930188361566,-56.0931112037929,-56.0942247447411,-56.094351243313,-56.0947843581043,-56.0959590783828,-56.0967275881534,-56.0967355243881,-56.0967253048489,-56.0967104878872,-56.0966712448561,-56.0966160937078,-56.0961804454135,-56.0958269456088,-56.095409091083,-56.0944688626605,-56.0936591172733,-56.0933451773316,-56.0926670949189,-56.0917583614843,-56.0910334425624,-56.0920200864848,-56.0921824314679,-56.0934843156421,-56.0943600411836,-56.0955764618563,-56.0956019216532,-56.0961358941345,-56.096924545001,-56.0966672043801,-56.0963087595209,-56.0961437845809,-56.0960684222395,-56.0958677156385,-56.0957707837804,-56.0956910583046,-56.09705979035,-56.0973839568695,-56.0981874179747,-56.0989772515326,-56.0990506903927,-56.0996234976929,-56.1005594650518,-56.1005834542834,-56.1006877712226,-56.1014504573559,-56.102331083244,-56.1026468079467,-56.1039051160513,-56.1039939922139,-56.1039005971556,-56.1038907630875,-56.1037039567921,-56.1045266110105,-56.1055764962057,-56.1062719018018],&#34;lat&#34;:[-34.8826962800842,-34.8828428526697,-34.8829655655268,-34.8830796318676,-34.8829302487393,-34.8827384327535,-34.8824949550755,-34.882387686057,-34.882380052792,-34.8828353484952,-34.8830328958963,-34.8832926518234,-34.8834076625964,-34.8834438047976,-34.8835008151942,-34.8835092530775,-34.8835442581384,-34.8834155532717,-34.8832439608969,-34.8829219842233,-34.8826205197638,-34.8825882936816,-34.8825555390461,-34.8818472915102,-34.8812275986571,-34.8811684610783,-34.88083704078,-34.8803918947498,-34.8799001847041,-34.8789426183626,-34.8789410763173,-34.8780935668744,-34.8775785252869,-34.8772541277151,-34.8771948143735,-34.8768873534467,-34.876516582969,-34.8762322292956,-34.8757808385852,-34.8753157899978,-34.874816609724,-34.8744308365213,-34.8744225989396,-34.8743583512552,-34.8742384083683,-34.8741985809078,-34.8737219709412,-34.8725164458877,-34.8725131074994,-34.8714734496545,-34.8714330683875,-34.8712658217422,-34.8708942476119,-34.8708539526641,-34.8706375779172,-34.8705510520272,-34.8704598470852,-34.8704490830341,-34.8704397143514,-34.870292745704,-34.8696296853284,-34.8687848163909,-34.8679673231221,-34.8670549776021,-34.8660748788068,-34.8659699490848,-34.8657749947491,-34.8656773904785,-34.8651072148226,-34.8650130282495,-34.8645481947901,-34.863533042917,-34.863299460786,-34.8618984112533,-34.8616974887248,-34.8596714107163,-34.8596269634519,-34.8594635112179,-34.8588534710101,-34.8582607664561,-34.8579512533461,-34.8577510685446,-34.8573319598062,-34.8572330661011,-34.8572134146623,-34.8573605989374,-34.8573069742701,-34.8571833925206,-34.857129202071,-34.8570491756874,-34.8567659346128,-34.8565646024473,-34.8562067062044,-34.8560446626343,-34.8559784652456,-34.855945566528,-34.8559463919537,-34.8559742556157,-34.8561008482774,-34.8568003290175,-34.8574050408829,-34.8576528987095,-34.8582213818908,-34.8585746107266,-34.8586172693935,-34.8585684175327,-34.8584876175287,-34.858479503344,-34.8586499996066,-34.8586654392359,-34.8588236808451,-34.8589093316841,-34.8590544848767,-34.8590230753447,-34.8589916541399,-34.8587533579111,-34.8587946725515,-34.858722815493,-34.858727729694,-34.8586515670817,-34.8584805055275,-34.8583038377488,-34.8582119286822,-34.8579012084359,-34.8580102263258,-34.8577827106568,-34.8577140969377,-34.8578951953347,-34.8577845365986,-34.8579833174482,-34.8584343100367,-34.8584169077285,-34.8585490975689,-34.8588666204672,-34.8588846189391,-34.8599270081926,-34.860156206396,-34.8601915779713,-34.860306987848,-34.8622822070646,-34.8645863662446,-34.8669330764219,-34.8674547997336,-34.8676511485928,-34.8670194287106,-34.8671663086239,-34.8671248766742,-34.8666478420726,-34.8671612042094,-34.8665437254206,-34.8667285743762,-34.8686241293538,-34.8688808375782,-34.8718351261804,-34.8722851766162,-34.8723081560007,-34.8723704742613,-34.8724147632104,-34.8724621195534,-34.8725118802002,-34.872539678599,-34.8725892236096,-34.8726434989824,-34.8728309435377,-34.8729830406174,-34.8731499826364,-34.8736446464345,-34.874134303431,-34.8743469610404,-34.8747241217217,-34.8753231029877,-34.8757722746755,-34.8769751698252,-34.8771730932732,-34.8787691987176,-34.8799745342981,-34.8816055545715,-34.8816403208347,-34.8824085225789,-34.8833680311008,-34.8837194464784,-34.8842377047991,-34.8844856796051,-34.8845851969264,-34.8848707968193,-34.8849639211014,-34.8850405146649,-34.8853221614277,-34.8853961860625,-34.8855839691376,-34.8857685612284,-34.8856654402276,-34.8857386512902,-34.8857821836181,-34.8857744293073,-34.8856670613299,-34.8847601280087,-34.8837033547763,-34.8836970153683,-34.8836485810435,-34.8836467399828,-34.8835415266844,-34.8830560051581,-34.8827554076189,-34.8817378639266,-34.8823158758278,-34.8826962800842]}]],[[{&#34;lng&#34;:[-56.1103391912725,-56.1104815866984,-56.1106906753705,-56.1108435393357,-56.1112859039072,-56.1115378192849,-56.1116685028704,-56.1117744829585,-56.1119476182874,-56.1121456061296,-56.1124419545007,-56.1126521807929,-56.1127831674957,-56.112913431074,-56.112993331111,-56.1142216509907,-56.1153852756853,-56.1164755392429,-56.1166908710974,-56.1179588183436,-56.1191682687547,-56.1200731620981,-56.1209824577117,-56.1218549743576,-56.1223398911082,-56.1227690390975,-56.1232958441176,-56.1233233382971,-56.123339346553,-56.1233434686788,-56.1235020504635,-56.122538426996,-56.1218830981701,-56.12147753968,-56.1212736514076,-56.1207820082982,-56.1203288451862,-56.1200286225682,-56.1199792468499,-56.1196261340738,-56.1201259893424,-56.1206941371636,-56.121188967594,-56.1213398361492,-56.1214770824496,-56.1215285012307,-56.1215513986332,-56.1214628744544,-56.1212354713874,-56.120744625176,-56.1198319741111,-56.1196925254837,-56.1195077500931,-56.1191845976844,-56.1186951908957,-56.1184076017343,-56.1177225836862,-56.1176641169993,-56.1156151029629,-56.1132866154356,-56.11299408457,-56.1125038050536,-56.1119208234024,-56.1112117819533,-56.1100157340321,-56.1087875474937,-56.1077563104461,-56.1074197430728,-56.1067154475063,-56.1059624848607,-56.1045259840205,-56.1043198977365,-56.1041531050506,-56.1039962708339,-56.1036672211345,-56.1034596457521,-56.1033210326393,-56.1032786073831,-56.1029633714746,-56.1027959249456,-56.1027580922735,-56.1026691106616,-56.1023201597538,-56.1021356360941,-56.1018255113176,-56.1002208304093,-56.0987255459195,-56.0986374044881,-56.0978796296588,-56.0973418620757,-56.0963751804425,-56.096166412582,-56.0958788673111,-56.0957430070309,-56.0955314670136,-56.0955111962912,-56.0953420795779,-56.0951902947827,-56.0920085979836,-56.0918316185246,-56.0900712093233,-56.0888669082344,-56.0887794990812,-56.0885612701521,-56.0877203213366,-56.0875354933371,-56.0874276910594,-56.0873849839682,-56.087540324081,-56.0882135312712,-56.0883603336476,-56.0883497735965,-56.0881234381412,-56.0879478409146,-56.0877768260511,-56.0871362090019,-56.0861858455418,-56.0856049592972,-56.0854117129685,-56.0854227608551,-56.0849907025093,-56.0846320241964,-56.0839988910067,-56.0839474044538,-56.0827155758349,-56.0815951379964,-56.0815494210857,-56.0811173916104,-56.0803057730379,-56.0804449448124,-56.0809498585427,-56.0811831055007,-56.0813784595832,-56.0811875878124,-56.0804895344751,-56.0798308014163,-56.0791713346457,-56.0789789420906,-56.079562069491,-56.0799503830876,-56.0804323183006,-56.0847091039484,-56.0907391204488,-56.0915597306336,-56.0918903298169,-56.0925009965925,-56.0926878951189,-56.0927736770136,-56.0935326604637,-56.0938009528196,-56.0939340815053,-56.0953175207612,-56.0957298676382,-56.0971307892559,-56.0978750646556,-56.0987493715403,-56.0994423930755,-56.09947568625,-56.0999745986506,-56.1000162106482,-56.1003590129248,-56.100781106385,-56.1010499823023,-56.1017530317598,-56.1022368815088,-56.1028779700287,-56.1032627788961,-56.103352243825,-56.1034766245899,-56.1038234499696,-56.1042427672738,-56.1044282494017,-56.1045069690715,-56.1046190593796,-56.1046834111613,-56.1044185486133,-56.1042093607298,-56.104064472674,-56.1039491465306,-56.1037614163801,-56.1035737062398,-56.103561139759,-56.1034929179085,-56.1031384417628,-56.1030572732354,-56.1030103156849,-56.1029464093934,-56.1029467428988,-56.1028913743438,-56.1029214898751,-56.103045607219,-56.1031682037785,-56.1031018228775,-56.1030552722034,-56.1031154365651,-56.1030858946629,-56.1030347149349,-56.102913158912,-56.1029911257882,-56.1030896099123,-56.1032054296435,-56.1033503844004,-56.1036085375365,-56.1036436689881,-56.103725377794,-56.1037972481928,-56.1038828856916,-56.1039443440539,-56.1039474123029,-56.1040217973319,-56.1041395847445,-56.1041901374825,-56.1042532100106,-56.104306290719,-56.1043391143137,-56.1045070942786,-56.104608353167,-56.1047213914638,-56.1047551555435,-56.1052645849359,-56.1054000681414,-56.1054500739306,-56.1055876382094,-56.105766797273,-56.1059798323051,-56.1060528002862,-56.1061680975671,-56.1062885396822,-56.1064210613604,-56.1064719142532,-56.1064974741017,-56.1065592859797,-56.1066463708916,-56.1066756793401,-56.106744748294,-56.1075819250533,-56.1079561292495,-56.1098392595768,-56.1102232658038,-56.1103391912725],&#34;lat&#34;:[-34.8345109037894,-34.8344657572966,-34.8344001597437,-34.8343538576803,-34.8342118483175,-34.8341332668734,-34.8340886098004,-34.8340553972328,-34.8342725858889,-34.8344827528851,-34.8346811762834,-34.8348073200078,-34.8348876798837,-34.8349627548676,-34.834876742948,-34.835583720403,-34.8362548084739,-34.8368788554606,-34.8370021052336,-34.8377609465876,-34.838488351729,-34.8374226587905,-34.8363524401848,-34.8353228625386,-34.8347538757642,-34.8342616352365,-34.8336564931493,-34.8330975648956,-34.8327676914381,-34.8326828743625,-34.8304740852334,-34.8298878949032,-34.8294686593425,-34.8291980288206,-34.8290890794462,-34.8287771972651,-34.8284926838316,-34.8283041903964,-34.8282804655964,-34.8280480266118,-34.8273005852449,-34.8265604349335,-34.8257693518272,-34.8255719282442,-34.8253694867761,-34.8253112108253,-34.8252852598084,-34.8252545720974,-34.8251546352022,-34.8249190044374,-34.8244946533717,-34.8244361299075,-34.8243582650271,-34.8242028703647,-34.8239735692691,-34.8244000408513,-34.824083262763,-34.8240559006364,-34.8230092054039,-34.821816603682,-34.821668513975,-34.8214217133603,-34.8211281652546,-34.8207554720214,-34.8201458853093,-34.8195606855548,-34.8190442278167,-34.8188756669657,-34.8185229362382,-34.8181458239003,-34.8174232712614,-34.8173215854861,-34.8172392830406,-34.8171623366908,-34.8170008934304,-34.8169038900663,-34.8168313999886,-34.816810735361,-34.8166571761666,-34.8165756129497,-34.8165571845984,-34.8164832974895,-34.8163192418852,-34.8162369158691,-34.8160769102419,-34.8152870562273,-34.814553151067,-34.8145098891037,-34.8141379502706,-34.8138750445805,-34.8133995027677,-34.8132980797847,-34.8132743647974,-34.8132679004944,-34.8128902404274,-34.8128761320852,-34.8129143265397,-34.8128376725048,-34.8112513567978,-34.8111581238275,-34.8103231962377,-34.8097261883455,-34.8096707907621,-34.8097208778461,-34.8096433651662,-34.8096267198718,-34.8096157384727,-34.8099499971027,-34.8102786999565,-34.8108767884061,-34.8112055046001,-34.8112436988171,-34.8120623131448,-34.8122789982282,-34.8123108880079,-34.8126997685635,-34.8128684155391,-34.8131309776158,-34.813271076535,-34.8132866915317,-34.8138983800515,-34.8142326124237,-34.8146214596288,-34.8146531092847,-34.8151783401597,-34.8156041864462,-34.8156223024557,-34.8161144029112,-34.8170444225461,-34.8172199263913,-34.8172504954899,-34.8174753914745,-34.8178265592473,-34.8190438203534,-34.8192029224064,-34.8196188435742,-34.8196561694908,-34.8202289315455,-34.8206109018707,-34.8207093059536,-34.8210599201076,-34.8227912596704,-34.8252129952881,-34.8255236705208,-34.8256486061331,-34.8258793777991,-34.8259370050567,-34.8259634544491,-34.8261578107031,-34.8261885244938,-34.8262430998727,-34.8270249562714,-34.8272579899441,-34.8280975016067,-34.8275839933257,-34.8270624257533,-34.8274411837144,-34.8274618239622,-34.8277711245573,-34.8277714324087,-34.8279631350736,-34.8281824467751,-34.8283319928565,-34.8287386835695,-34.829020215084,-34.8293852628283,-34.8296095960714,-34.8296666846227,-34.8297234304858,-34.8299192407472,-34.8301542347887,-34.8302423578358,-34.8302850164411,-34.8303376171488,-34.8303605190981,-34.8305873269684,-34.830707679037,-34.8308772664976,-34.8309233569343,-34.8310683483768,-34.8312203901219,-34.8313050571202,-34.8313722050835,-34.8315351858034,-34.8315635704421,-34.8315918817096,-34.8316731302783,-34.8317789281743,-34.8318531030948,-34.8319094654957,-34.8319374132424,-34.8320081397179,-34.8321347850321,-34.8322935802602,-34.8323851441487,-34.8325121629889,-34.8325581200235,-34.8326046106665,-34.8326421566966,-34.8327053359465,-34.8327131132908,-34.8326991660979,-34.8327884821605,-34.8328188978466,-34.8328090961249,-34.8327640095393,-34.8327662340198,-34.8328134450344,-34.8328623836066,-34.8329986305393,-34.8330104132827,-34.8329958624451,-34.8329371555018,-34.8329383361106,-34.8329292347502,-34.8329454331041,-34.83293016523,-34.8328877833726,-34.8328884637235,-34.83317448123,-34.8333571954604,-34.8334846978834,-34.833982004357,-34.8341918759265,-34.8343407218938,-34.8344792865753,-34.8345951505722,-34.8347508341956,-34.8348689717888,-34.8349522914256,-34.8350356644231,-34.835154715821,-34.8352677541177,-34.8353928319569,-34.8355208079574,-34.8353098643308,-34.8352065327656,-34.8346542969565,-34.8345406745819,-34.8345109037894]}]],[[{&#34;lng&#34;:[-56.1351569511941,-56.1357175936651,-56.1367360084622,-56.1375141201798,-56.1382987108388,-56.1393016920763,-56.140166568115,-56.139710342828,-56.1406009706715,-56.1408794107368,-56.1414589361383,-56.1419181681267,-56.1422838033608,-56.1424933869653,-56.143185016518,-56.1440626807734,-56.1449389328894,-56.1454286085506,-56.1460495654606,-56.1464099880064,-56.1465219824315,-56.1484879948259,-56.1496276506483,-56.1498369151617,-56.1493893828979,-56.1486887014429,-56.1481507390896,-56.1480710082019,-56.1476553169211,-56.1474149462891,-56.1468185120261,-56.1461012621219,-56.1458889750411,-56.1446001479589,-56.1438752274322,-56.1435045562676,-56.1430488979396,-56.1422244360769,-56.1415621111656,-56.1414798987666,-56.1411151076245,-56.1410233025351,-56.1407716068156,-56.1407622986819,-56.1407525669963,-56.1407130532847,-56.1399451005652,-56.1395107365526,-56.1382553591223,-56.1369681786237,-56.1369554048194,-56.1358768572299,-56.1349154805425,-56.1346990469534,-56.1343672037433,-56.134303314285,-56.1338210589069,-56.1335135903375,-56.1333071872235,-56.133303031747,-56.1332700947606,-56.133227389403,-56.1330432465243,-56.1329467302625,-56.1328233450436,-56.1324188737586,-56.132301006048,-56.1321505334339,-56.1321506830111,-56.131961623602,-56.1317600069634,-56.1308038895421,-56.1307303491841,-56.1295164522444,-56.1291452074507,-56.1290486458915,-56.1289740258346,-56.1289337984216,-56.1282440772872,-56.1274519509172,-56.1263476320236,-56.1263853425093,-56.1267526507429,-56.1268867196977,-56.1269553778857,-56.1270363616882,-56.1270644211228,-56.1271501252024,-56.1274651476675,-56.1281083660583,-56.1282848508837,-56.1285072848495,-56.1283875300304,-56.1262574388558,-56.1262673882352,-56.126278207509,-56.1251035926275,-56.1240836410331,-56.1236039959933,-56.1235020504635,-56.1233434686788,-56.123339346553,-56.1233233382971,-56.1232958441176,-56.1227690390975,-56.1223398911082,-56.1218549743576,-56.1209824577117,-56.1200731620981,-56.1191682687547,-56.1206597112631,-56.1221219630728,-56.1222902149711,-56.1237254970011,-56.1241783058924,-56.1245580923384,-56.1245606001451,-56.1246917397738,-56.1248730255117,-56.1253249169575,-56.125349804915,-56.1254049303887,-56.1254058523029,-56.1255772673727,-56.1257875624939,-56.1259878924759,-56.1286269134865,-56.1287324946041,-56.128855744834,-56.1288734139465,-56.1290509321638,-56.1293782609757,-56.1297835900142,-56.132663992178,-56.1335864279017,-56.1337392404206,-56.1342217455513,-56.1344495196869,-56.1349665896864,-56.1350185998427,-56.1351569511941],&#34;lat&#34;:[-34.8460364644839,-34.8462154034339,-34.8465810414419,-34.8468826308735,-34.8461375101008,-34.8455081920402,-34.8449607497102,-34.8444570766198,-34.8438408175459,-34.8436420564058,-34.8432533813673,-34.8429194136076,-34.8426480136397,-34.8425061464823,-34.8420379762841,-34.8414673280633,-34.8408670414268,-34.840525769144,-34.8400968045826,-34.8399967596536,-34.839978453546,-34.8396490424849,-34.8394225894368,-34.8394033676148,-34.8388551462677,-34.8380330349117,-34.8373967954522,-34.8372987891867,-34.8367878113835,-34.8364923390008,-34.8357592309182,-34.8348775929016,-34.8346153047728,-34.8330335418773,-34.8321433094284,-34.8316871041516,-34.831126294928,-34.8301140662291,-34.829300096444,-34.8292149391929,-34.8287543321009,-34.8290320465201,-34.8290090696874,-34.829346583752,-34.8295220275662,-34.8299241282732,-34.8298268414332,-34.8297783197427,-34.8296417459747,-34.8295000195495,-34.8295268613553,-34.8294262503741,-34.8293157376079,-34.829282021756,-34.8292630268688,-34.8292692638762,-34.8292230100219,-34.8291791907565,-34.8291432088664,-34.8291430020931,-34.8291372924818,-34.8291298919986,-34.8291133777083,-34.8291044892525,-34.8290836940653,-34.829042150258,-34.8289798708002,-34.8289008695475,-34.8288992384809,-34.8288846010734,-34.8288646707978,-34.8287577900961,-34.8287470949282,-34.8286380483422,-34.8286162504338,-34.8286101667894,-34.8286066154648,-34.8286046344431,-34.8285435727761,-34.8284506952704,-34.8282650186353,-34.8281812739441,-34.8276108034221,-34.8273820176812,-34.8272587999393,-34.8271280964895,-34.8270803284608,-34.8271008622427,-34.8271587687732,-34.827276999748,-34.8272973678162,-34.8258312475668,-34.8258156727709,-34.8256027586242,-34.8256442308514,-34.8256893290336,-34.8277857831038,-34.8295246452546,-34.8303471430194,-34.8304740852334,-34.8326828743625,-34.8327676914381,-34.8330975648956,-34.8336564931493,-34.8342616352365,-34.8347538757642,-34.8353228625386,-34.8363524401848,-34.8374226587905,-34.838488351729,-34.8393503196012,-34.8402537850571,-34.8403558698155,-34.841206278377,-34.8414745617939,-34.8417641756336,-34.8417680930291,-34.8419729430903,-34.8426305625593,-34.8441963277823,-34.8442489504919,-34.8444514948271,-34.8444548821547,-34.8450495455045,-34.8457790517295,-34.8458400398493,-34.8466433841545,-34.8466754907127,-34.8467129700417,-34.8467183428126,-34.8467720138255,-34.846870401233,-34.8469956458249,-34.8478812392147,-34.8481404562329,-34.848266246241,-34.8475890952153,-34.8472595419229,-34.84651015211,-34.8464334091984,-34.8460364644839]}]],[[{&#34;lng&#34;:[-56.142231263169,-56.1422298571768,-56.1418226788804,-56.1429784082529,-56.1430578725681,-56.1432020769379,-56.1434502215792,-56.1435463289609,-56.1436253518983,-56.1436585223385,-56.1437286092453,-56.143737968653,-56.1437648838585,-56.1437849475392,-56.1439507964051,-56.1440391308261,-56.1441895808516,-56.1442585864512,-56.144301021318,-56.1443314760646,-56.1444462685994,-56.1445559051418,-56.1448279821255,-56.1455098671244,-56.1461252611655,-56.1465572272748,-56.1472800000272,-56.1480689068867,-56.1483027067508,-56.1484962864772,-56.1495573645224,-56.1502034410539,-56.1512716452875,-56.1520271015623,-56.1523883245209,-56.1528081343609,-56.153533955352,-56.1535350781902,-56.1543265365753,-56.1552363199717,-56.1554459160988,-56.1556394227482,-56.1553024037939,-56.154809857284,-56.1544928400498,-56.1539033548897,-56.1532900756471,-56.1526768835324,-56.1522865842358,-56.1516117456223,-56.1515587946976,-56.1509311551103,-56.1500351243882,-56.1498369151617,-56.1496276506483,-56.1484879948259,-56.1465219824315,-56.1464099880064,-56.1460495654606,-56.1454286085506,-56.1449389328894,-56.1440626807734,-56.143185016518,-56.1424933869653,-56.1422838033608,-56.1419181681267,-56.1414589361383,-56.1408794107368,-56.1406009706715,-56.139710342828,-56.140166568115,-56.1393016920763,-56.1382987108388,-56.1375141201798,-56.1367360084622,-56.1357175936651,-56.1351569511941,-56.1350185998427,-56.1349665896864,-56.1344495196869,-56.1342217455513,-56.1337392404206,-56.1342547174812,-56.1343513954097,-56.134641702622,-56.1350158517588,-56.1355131949181,-56.1357903945437,-56.136522858961,-56.1373582631336,-56.1378828536784,-56.1382030254658,-56.1387459521337,-56.1385698079583,-56.13835907261,-56.1382397472852,-56.1380922850208,-56.1376671193971,-56.1376981717665,-56.1385040807277,-56.1393669490644,-56.1410257396549,-56.1411240385737,-56.1413781429656,-56.1415472888842,-56.1416433465587,-56.1417736636553,-56.1423747790405,-56.1422767059218,-56.1422186408446,-56.142224084674,-56.142089553181,-56.1420545084408,-56.1421414959433,-56.142231263169],&#34;lat&#34;:[-34.8575393286888,-34.8576747668511,-34.8578872145522,-34.85943070557,-34.8593579680574,-34.8592428870405,-34.8590103804642,-34.8588601409396,-34.8585760381294,-34.8584004392353,-34.8580294149092,-34.8579798680373,-34.8578373838532,-34.8577344024097,-34.8569559259295,-34.8565541375626,-34.8557547919987,-34.8552294320145,-34.8548092840918,-34.8546360411722,-34.8534053548091,-34.8532969188859,-34.8531294892048,-34.8527086555035,-34.852328546138,-34.8520615651157,-34.8516135774103,-34.8511248586989,-34.8510063404009,-34.8508838833972,-34.8502017126089,-34.8498124918778,-34.8491675726097,-34.8487134550764,-34.8485100468402,-34.848242001936,-34.8477984631916,-34.8477977633818,-34.8472708930896,-34.8467350047389,-34.8465924317718,-34.8464800098699,-34.8460352077634,-34.8455023870418,-34.8451058354338,-34.8443967703368,-34.8436322345368,-34.8428926517448,-34.8424262544256,-34.8415798089546,-34.8415217761153,-34.8407486174655,-34.8396460736138,-34.8394033676148,-34.8394225894368,-34.8396490424849,-34.839978453546,-34.8399967596536,-34.8400968045826,-34.840525769144,-34.8408670414268,-34.8414673280633,-34.8420379762841,-34.8425061464823,-34.8426480136397,-34.8429194136076,-34.8432533813673,-34.8436420564058,-34.8438408175459,-34.8444570766198,-34.8449607497102,-34.8455081920402,-34.8461375101008,-34.8468826308735,-34.8465810414419,-34.8462154034339,-34.8460364644839,-34.8464334091984,-34.84651015211,-34.8472595419229,-34.8475890952153,-34.848266246241,-34.8488620731633,-34.8489838889868,-34.8493233820123,-34.8497370296267,-34.850272168945,-34.850586994642,-34.8514190270757,-34.8523679931485,-34.8529661549692,-34.853348475475,-34.8536220899183,-34.8539605377979,-34.8544703340461,-34.854912089988,-34.85545800508,-34.855693072493,-34.8557158513913,-34.8567144547299,-34.8562391345952,-34.8553288247339,-34.8552748789705,-34.8555603788598,-34.8557504219804,-34.8558583466504,-34.8558906942782,-34.8559895983766,-34.8560690698686,-34.8561709374624,-34.8562926027346,-34.8569088099639,-34.8570708868845,-34.857358423682,-34.8575393286888]}]],[[{&#34;lng&#34;:[-56.1440987326996,-56.1431880497037,-56.1421653889581,-56.141337275212,-56.1410715048141,-56.1407036884551,-56.1404099036094,-56.1396643224274,-56.1393228062988,-56.1392254527578,-56.1389766877966,-56.1393516678501,-56.1392298817086,-56.1391768807245,-56.1390925149158,-56.1389419325063,-56.1386874467489,-56.1386159862638,-56.1374194680319,-56.1373401871447,-56.1372406618515,-56.1372235554743,-56.1370161994713,-56.1369616685997,-56.1361346821016,-56.135260554625,-56.1340988603845,-56.1340495021928,-56.1342195306285,-56.1342586926352,-56.1343009842906,-56.1342385175343,-56.1334537797335,-56.1327580937595,-56.1321823011207,-56.1319989697148,-56.1313684940565,-56.1306750887641,-56.1299733985989,-56.1299095483075,-56.129787145181,-56.1290626715515,-56.1287231097641,-56.1282503192673,-56.1282475044823,-56.1275687010726,-56.1273811776954,-56.1265312060099,-56.1256232911083,-56.125893116931,-56.1267692020839,-56.1264517116793,-56.1261492734582,-56.1263923544006,-56.1267761256546,-56.1272676991716,-56.1273133871813,-56.1276615504454,-56.1277377342318,-56.1277790048906,-56.1278190058346,-56.1278569343255,-56.127894315881,-56.1281211539381,-56.1282886205735,-56.1283407258923,-56.1283718619499,-56.1283901313719,-56.1285345858708,-56.1286453666634,-56.1287408922683,-56.1287980987702,-56.1288321926876,-56.128899391465,-56.1302696006623,-56.1299472570548,-56.1288219874245,-56.1290654462154,-56.1291462355344,-56.1314666480103,-56.1328465063052,-56.1332823010557,-56.134241221003,-56.1343881483329,-56.1362381452151,-56.1364476785924,-56.1365897914404,-56.136712953072,-56.1375286676823,-56.1379149101143,-56.1382281317471,-56.138535225161,-56.1394248559534,-56.1401562767768,-56.1412012150423,-56.1416402921217,-56.1419451992934,-56.1422944385453,-56.14284970571,-56.1434955249433,-56.1446242298494,-56.144690304455,-56.1451708823013,-56.1455993332644,-56.1457489737711,-56.1460980037749,-56.1463816567286,-56.1464277071446,-56.146785474988,-56.1471783509375,-56.1479765647942,-56.1481252059215,-56.1482709577562,-56.1492245395427,-56.1495702711787,-56.1501436182991,-56.1505072866416,-56.1510732902759,-56.1511441428646,-56.1518307464378,-56.1518939761871,-56.1522882206343,-56.1523736351886,-56.1524908347617,-56.1528220796073,-56.152865582492,-56.1533704543637,-56.1534670486114,-56.1538395887221,-56.1541279083354,-56.1544333391873,-56.1545822226369,-56.1546574070797,-56.1548913484326,-56.1552214881461,-56.1543638414131,-56.1543100448443,-56.1536349112912,-56.1530920642205,-56.1524618750628,-56.1523193448638,-56.152240488708,-56.1513340084713,-56.1512194086558,-56.1501541156155,-56.1493073689266,-56.1492707338135,-56.1484072638955,-56.1475327236966,-56.1466291577045,-56.146073928025,-56.1458026714644,-56.1454338145688,-56.1440987326996],&#34;lat&#34;:[-34.8726329126193,-34.8721168531408,-34.8715379629257,-34.87107126307,-34.8709186743761,-34.870712250418,-34.8705465482945,-34.8701199065978,-34.8699223813956,-34.869841492179,-34.8695671698706,-34.8689832879144,-34.8683046079018,-34.8679248389629,-34.8676401108087,-34.8670935132936,-34.8661414322889,-34.8661538619859,-34.8663619752031,-34.865979074398,-34.8655830293651,-34.865469777861,-34.8645261431648,-34.8645738113345,-34.86526987031,-34.8657812490411,-34.8659491513852,-34.8660618156744,-34.8668113742038,-34.8669643770668,-34.8671723828428,-34.867194366155,-34.8677212449214,-34.8682104442501,-34.8686120465384,-34.868741488207,-34.8691913410461,-34.8696565418195,-34.8701600185177,-34.87021975726,-34.8703056765708,-34.8708301804041,-34.8710788569864,-34.8714204623276,-34.8714224967102,-34.8719153367137,-34.8720509816692,-34.8726659021328,-34.8733350330541,-34.8733794793095,-34.873399984051,-34.8743111256167,-34.8752966730446,-34.8760464413967,-34.877226373668,-34.8787395684362,-34.8788589133117,-34.8798881629441,-34.8801256302419,-34.8802402771181,-34.8803512829478,-34.8804533449564,-34.880607190875,-34.8812892030404,-34.8818054719731,-34.8821398177675,-34.8822479119128,-34.8823920916932,-34.8835455336621,-34.8843912217658,-34.8851855811432,-34.885659265885,-34.8859876045589,-34.8866998766139,-34.8866647842144,-34.8869198746198,-34.887790407227,-34.8878767414627,-34.8878887501268,-34.887815743627,-34.8877583961347,-34.8877393342207,-34.887701574025,-34.8876784468742,-34.8876391425478,-34.8876552949327,-34.8877494367237,-34.8876524498447,-34.8870174911144,-34.8867088066524,-34.8864655435442,-34.8864845374289,-34.8865072880985,-34.8865553816599,-34.8866249628442,-34.8866478805295,-34.8866957516836,-34.8867735747989,-34.8869122108725,-34.8870926923976,-34.8875020596085,-34.8874728388656,-34.887079547285,-34.8867359596714,-34.8866184082138,-34.886338112825,-34.8861300892919,-34.8861029332035,-34.8858766973612,-34.8856233312772,-34.8852950592591,-34.885237880407,-34.8851789262528,-34.8847664082984,-34.884616812398,-34.8843459501058,-34.8841679631601,-34.8838899822248,-34.8837885495124,-34.8828025574547,-34.8828293201962,-34.8823005615193,-34.8821939535827,-34.8820419064168,-34.8816908406366,-34.8816473539287,-34.8811509507978,-34.8810425280542,-34.8808205981486,-34.8806094354828,-34.880404604638,-34.8802233843031,-34.8800951470463,-34.8797628667774,-34.8792986150613,-34.8787388247358,-34.8786628114693,-34.8782165447075,-34.8778613008871,-34.8774601593825,-34.8773737160059,-34.8773258902567,-34.8767553099044,-34.8766750917614,-34.8761152418789,-34.875626109204,-34.8756026035634,-34.8750741906279,-34.8745984512978,-34.8740778928325,-34.8737547703567,-34.8736022058419,-34.8733920866447,-34.8726329126193]}]],[[{&#34;lng&#34;:[-56.1481510492496,-56.1486726916072,-56.1489951050089,-56.1493174874783,-56.1495207771109,-56.1499708811168,-56.1501622246637,-56.1502350849462,-56.1509209110716,-56.1517181422241,-56.1521278301773,-56.1521401465291,-56.1523639920627,-56.1523532434631,-56.1523538361309,-56.1523484220139,-56.1523631849268,-56.1521225167466,-56.1521198208966,-56.1521149325825,-56.1521169025814,-56.1521132105772,-56.1521234542168,-56.152084342998,-56.1520767047417,-56.1520305724162,-56.1520302292352,-56.1519680272488,-56.1519642400764,-56.1519192331881,-56.151848068241,-56.1517682133157,-56.1517623903318,-56.15169969047,-56.1516439018965,-56.1516199656629,-56.1514889187318,-56.1515775541013,-56.1516539749261,-56.1517521970759,-56.1518123409529,-56.151944995885,-56.1522822331402,-56.1523147443359,-56.1523582323349,-56.1526467211159,-56.1527547001368,-56.1529196852239,-56.1529617469162,-56.1531996962994,-56.153275121865,-56.1531331119602,-56.1506145988262,-56.1504801809911,-56.1504407043617,-56.150230949824,-56.1498214270451,-56.149561970327,-56.1495285259004,-56.1491070828348,-56.1487970676645,-56.1483027067508,-56.1480689068867,-56.1472792870932,-56.1472792863258,-56.1465572272748,-56.1461252611655,-56.1455098671244,-56.1448279821255,-56.1445559051418,-56.1444462685994,-56.1443314760646,-56.144301021318,-56.1442585864512,-56.1441895808516,-56.1440391308261,-56.1439507964051,-56.1437849475392,-56.1437648838585,-56.143737968653,-56.1437286092453,-56.1436585223385,-56.1436253518983,-56.1435463289609,-56.1434502215792,-56.1432020769379,-56.1430578725681,-56.1429784082529,-56.1418226788804,-56.1422298571768,-56.142231263169,-56.1421414959433,-56.1420545084408,-56.142089553181,-56.142224084674,-56.1422186408446,-56.1422767059218,-56.1423747790405,-56.1417736636553,-56.1416433465587,-56.1415472888842,-56.1413781429656,-56.1411240385737,-56.1410257396549,-56.1393669490644,-56.1385040807277,-56.1376408488703,-56.13696043463,-56.1367963833578,-56.1369802619526,-56.1371516499112,-56.1379596266055,-56.1367853997413,-56.1364944678594,-56.1363539465286,-56.1361839131038,-56.1357512410179,-56.1349443982417,-56.1349821143596,-56.1338209855357,-56.1339041784404,-56.1338847202785,-56.1339393399447,-56.1339898643204,-56.1339794038225,-56.1340888320128,-56.1340988603845,-56.135260554625,-56.1361346821016,-56.1369616685997,-56.1370161994713,-56.1372235554743,-56.1372406618515,-56.1373401871447,-56.1374194680319,-56.1386159862638,-56.1386874467489,-56.1389419325063,-56.1390925149158,-56.1391768807245,-56.1392298817086,-56.1393516678501,-56.1389766877966,-56.1392254527578,-56.1393228062988,-56.1396643224274,-56.1404099036094,-56.1407036884551,-56.1410715048141,-56.141337275212,-56.1421653889442,-56.1421653889581,-56.1431880497037,-56.1440987326996,-56.1454324238516,-56.1458026714644,-56.146073928025,-56.1466291577045,-56.1475327236966,-56.1478257514852,-56.1481510492496],&#34;lat&#34;:[-34.8738577693092,-34.8732254923945,-34.8728418395339,-34.872439667958,-34.8722012562529,-34.8716718469731,-34.8714273701354,-34.8713224229425,-34.8705291976796,-34.8695717122132,-34.8698156997105,-34.8698230343265,-34.8698762572366,-34.8696564660544,-34.8689651677897,-34.8682255971647,-34.8680542141827,-34.8680632540669,-34.867929565615,-34.8676571989357,-34.8674652889256,-34.8674590720919,-34.8671929267015,-34.8657993589174,-34.8655271975485,-34.8645332057224,-34.864530502721,-34.8640405777414,-34.8640436468753,-34.8636718674509,-34.8633635842532,-34.8630176538019,-34.8629942013044,-34.8627416721504,-34.8625441632176,-34.8624594212045,-34.8620078171147,-34.8618764247843,-34.8617647487886,-34.8616306190664,-34.8615335335829,-34.8613729805842,-34.8608623188896,-34.8608164869575,-34.8607499742839,-34.8597577125492,-34.8593878684778,-34.8588195720595,-34.8586436946884,-34.8576650799917,-34.8575477061257,-34.8564889300878,-34.8575274955584,-34.85757881034,-34.8575992958731,-34.8576571844818,-34.8562270974362,-34.8553525665605,-34.8552417162327,-34.8538118048437,-34.8527688635785,-34.8510063404009,-34.8511248586989,-34.8516140193044,-34.8516140176374,-34.8520615651157,-34.852328546138,-34.8527086555035,-34.8531294892048,-34.8532969188859,-34.8534053548091,-34.8546360411722,-34.8548092840918,-34.8552294320145,-34.8557547919987,-34.8565541375626,-34.8569559259295,-34.8577344024097,-34.8578373838532,-34.8579798680373,-34.8580294149092,-34.8584004392353,-34.8585760381294,-34.8588601409396,-34.8590103804642,-34.8592428870405,-34.8593579680574,-34.85943070557,-34.8578872145522,-34.8576747668511,-34.8575393286888,-34.857358423682,-34.8570708868845,-34.8569088099639,-34.8562926027346,-34.8561709374624,-34.8560690698686,-34.8559895983766,-34.8558906942782,-34.8558583466504,-34.8557504219804,-34.8555603788598,-34.8552748789705,-34.8553288247339,-34.8562391345952,-34.8567144547299,-34.8571852625376,-34.8575609779703,-34.8576515113273,-34.8578783280425,-34.8580968476654,-34.8590954476689,-34.8596801082599,-34.8598071146005,-34.8598730420645,-34.8599573501106,-34.8601328493502,-34.8605223769062,-34.8612388947661,-34.8617873843028,-34.8629721386443,-34.8631887223883,-34.8641197963623,-34.864969202002,-34.8650221928597,-34.8658452276198,-34.8659491513852,-34.8657812490411,-34.86526987031,-34.8645738113345,-34.8645261431648,-34.865469777861,-34.8655830293651,-34.865979074398,-34.8663619752031,-34.8661538619859,-34.8661414322889,-34.8670935132936,-34.8676401108087,-34.8679248389629,-34.8683046079018,-34.8689832879144,-34.8695671698706,-34.869841492179,-34.8699223813956,-34.8701199065978,-34.8705465482945,-34.870712250418,-34.8709186743761,-34.87107126307,-34.8715379629436,-34.8715379629257,-34.8721168531408,-34.8726329126193,-34.8733912962371,-34.8736022058419,-34.8737547703567,-34.8740778928325,-34.8745984512978,-34.8742551926039,-34.8738577693092]}]],[[{&#34;lng&#34;:[-56.1714042548561,-56.1709588835,-56.1700576887308,-56.1699185549977,-56.1695059491846,-56.1694863807593,-56.1694466135837,-56.1694195446236,-56.169403429646,-56.1693571891319,-56.1693082305494,-56.1692617179787,-56.1692030828467,-56.1691502795638,-56.1690915713514,-56.1690357303079,-56.1689785588626,-56.1689221881241,-56.1688665194143,-56.1688118945762,-56.1687735084756,-56.1687357903273,-56.1686227490093,-56.1685731497827,-56.1685346749403,-56.1685002988783,-56.1684700432747,-56.1684442299622,-56.1684232174588,-56.1684069907569,-56.168395890032,-56.1683895734411,-56.16838872467,-56.1683926783757,-56.1684090234719,-56.1684259271896,-56.1684476333841,-56.1684737651942,-56.1685046828059,-56.168513602406,-56.1684314183549,-56.1681077473746,-56.1675813299425,-56.1674746449224,-56.1674167050413,-56.1662216937434,-56.1661731988665,-56.1660885067221,-56.1657366648005,-56.1656150515745,-56.1649908664899,-56.1648927039683,-56.1638975874868,-56.1630652122078,-56.1622539558127,-56.1618069993379,-56.1606575177597,-56.1602891956663,-56.1601940467983,-56.1599733578007,-56.1596495562588,-56.1592616126644,-56.1585212440911,-56.1584284262225,-56.158146802383,-56.1579808169148,-56.1578229612497,-56.1577515447895,-56.1576268205638,-56.1574372363561,-56.1573078844536,-56.1569126146779,-56.1569119524785,-56.1565160740799,-56.1560489770182,-56.1559689795618,-56.1558490034003,-56.1560408346842,-56.1563049515843,-56.1564797057693,-56.1565427887702,-56.1564585920166,-56.1556404383859,-56.1548702011548,-56.1540752745242,-56.153275121865,-56.1531996962994,-56.1529617469162,-56.1529196852239,-56.1527547001368,-56.1526467211159,-56.1523582323349,-56.1523147443359,-56.1522822331402,-56.151944995885,-56.1518123409529,-56.1517521970759,-56.1516539749261,-56.1515775541013,-56.1514889187318,-56.1516199656629,-56.1516439018965,-56.15169969047,-56.1517623903318,-56.1517682133157,-56.151848068241,-56.1519192331881,-56.1519642400764,-56.1519680272488,-56.1520302292352,-56.1520305724162,-56.1520767047417,-56.152084342998,-56.1521234542168,-56.1521132105772,-56.1521169025814,-56.1521149325825,-56.1521198208966,-56.1521225167466,-56.1523631849268,-56.1523484220139,-56.1523538361309,-56.1523532434631,-56.1523639920627,-56.1521401465291,-56.1521278301773,-56.1517181422241,-56.1509209110716,-56.1502350849462,-56.1501622246637,-56.1499708811168,-56.1495207771109,-56.1493174874783,-56.1489951050089,-56.1486726916072,-56.1481510492496,-56.1478257514852,-56.1475327236966,-56.1484072638955,-56.1492707338135,-56.1493073689266,-56.1501541156155,-56.1512194086558,-56.1513340084713,-56.152240488708,-56.1523193448638,-56.1524618750628,-56.1530920642205,-56.1536349112912,-56.1543100448443,-56.1543638414131,-56.1552214881461,-56.1553454686586,-56.1553817095978,-56.156130659982,-56.1563684006017,-56.1569899710411,-56.1570135347651,-56.1571610592757,-56.1577924395273,-56.1585602885748,-56.1592498231713,-56.1600954859679,-56.1610876993444,-56.1612954998458,-56.162065123427,-56.1622291630264,-56.1627940693631,-56.1630502154265,-56.1631951720123,-56.1637576113627,-56.1644721261384,-56.164517341074,-56.1655570058091,-56.1662499464727,-56.1663367896346,-56.1666893029887,-56.1670276727048,-56.1673587597289,-56.167402692189,-56.1677539695296,-56.1684501680246,-56.1689252265851,-56.1683083560016,-56.1682641387512,-56.1687514471461,-56.1687894636535,-56.1689043587124,-56.1690323168887,-56.1691143993718,-56.1693203587637,-56.1700121505595,-56.1700054118491,-56.1699363311436,-56.1712741210761,-56.1712328698017,-56.171215931066,-56.1725205689011,-56.173732909136,-56.173770902897,-56.1737975649807,-56.1738392660065,-56.1741003258169,-56.1743865191893,-56.1743775212621,-56.1742631027844,-56.1742197538036,-56.1738432578672,-56.1737843107862,-56.1735062946987,-56.1734642643561,-56.173097756126,-56.1734195378294,-56.1738446457931,-56.1742894551923,-56.1745505488748,-56.1742217437102,-56.1740131603354,-56.1735949541814,-56.1743798636203,-56.1745218401746,-56.1749453219083,-56.1754692513141,-56.1747312973637,-56.173985134785,-56.1734933485155,-56.1725091868572,-56.1724782737551,-56.1722654389908,-56.1714310169913,-56.1714042548561],&#34;lat&#34;:[-34.8637289606234,-34.8632794604714,-34.8624120331169,-34.862511284236,-34.8628056144301,-34.8627831311683,-34.8627516882857,-34.8627337340263,-34.8627202554083,-34.8626933381931,-34.862670933305,-34.8626423911215,-34.8626250246871,-34.8626125454548,-34.8626024495422,-34.8625996442689,-34.8626132235426,-34.862617879277,-34.862627042336,-34.8626407093844,-34.8626511732831,-34.8626679534348,-34.8627301244525,-34.8627630324696,-34.8627991911175,-34.8628353380928,-34.8628759823874,-34.8629166133418,-34.8629617382806,-34.8630068515466,-34.863051949805,-34.8630970363906,-34.8631421079685,-34.8631916751982,-34.8632637423651,-34.8633042599277,-34.8633492714747,-34.8633897640244,-34.8634302449014,-34.8634392345376,-34.8634845228939,-34.8637493718845,-34.8641448000825,-34.8642171940846,-34.8642579117504,-34.8651624682533,-34.8652053715596,-34.8652754948774,-34.8655791045068,-34.865663020586,-34.8661231256899,-34.8661976130107,-34.8669513336351,-34.8665304025324,-34.8661599209985,-34.8659309404185,-34.8653573127869,-34.8651676730726,-34.8651177501911,-34.8650183572468,-34.8647854278068,-34.8645219424059,-34.863935333722,-34.8638622927195,-34.8636404996588,-34.8635071400563,-34.8633872986654,-34.8633272202521,-34.8632222968836,-34.8630770847886,-34.8629780071909,-34.8626591350395,-34.8626586008266,-34.8623342457087,-34.8619441969253,-34.8618473622674,-34.8617001847323,-34.8615982589696,-34.861454774671,-34.861356156577,-34.8613307028255,-34.8611806548303,-34.8597861488812,-34.8585216584178,-34.8572205090484,-34.8575477061257,-34.8576650799917,-34.8586436946884,-34.8588195720595,-34.8593878684778,-34.8597577125492,-34.8607499742839,-34.8608164869575,-34.8608623188896,-34.8613729805842,-34.8615335335829,-34.8616306190664,-34.8617647487886,-34.8618764247843,-34.8620078171147,-34.8624594212045,-34.8625441632176,-34.8627416721504,-34.8629942013044,-34.8630176538019,-34.8633635842532,-34.8636718674509,-34.8640436468753,-34.8640405777414,-34.864530502721,-34.8645332057224,-34.8655271975485,-34.8657993589174,-34.8671929267015,-34.8674590720919,-34.8674652889256,-34.8676571989357,-34.867929565615,-34.8680632540669,-34.8680542141827,-34.8682255971647,-34.8689651677897,-34.8696564660544,-34.8698762572366,-34.8698230343265,-34.8698156997105,-34.8695717122132,-34.8705291976796,-34.8713224229425,-34.8714273701354,-34.8716718469731,-34.8722012562529,-34.872439667958,-34.8728418395339,-34.8732254923945,-34.8738577693092,-34.8742551926039,-34.8745984512978,-34.8750741906279,-34.8756026035634,-34.875626109204,-34.8761152418789,-34.8766750917614,-34.8767553099044,-34.8773258902567,-34.8773737160059,-34.8774601593825,-34.8778613008871,-34.8782165447075,-34.8786628114693,-34.8787388247358,-34.8792986150613,-34.8791301318735,-34.8790837602943,-34.8780793216337,-34.8777881263967,-34.8769659035035,-34.8769227929462,-34.8767141282399,-34.8758649599417,-34.8749111760303,-34.8740417475248,-34.8733989568545,-34.8728785351264,-34.8727717925765,-34.8723750829833,-34.8722876862439,-34.8719567322291,-34.8718326863377,-34.8717516121469,-34.8714104021033,-34.8709528723945,-34.8708953778591,-34.8702161608822,-34.8698219012021,-34.8697762630192,-34.8695890864622,-34.8694380338731,-34.8693082859339,-34.8692880847305,-34.8691265580119,-34.868831853149,-34.8686431529051,-34.8690675993026,-34.8691997879023,-34.8697216276986,-34.8697449192523,-34.8698153117967,-34.8698521466006,-34.869857076859,-34.8698696139263,-34.8699117217861,-34.8699958924883,-34.8709935996836,-34.8710936729606,-34.87172475676,-34.8720222610239,-34.8721179020151,-34.8722092724705,-34.8718801627402,-34.8712806660644,-34.8702909328306,-34.8703115869209,-34.870333043278,-34.8703274662361,-34.8702565479306,-34.8702526746972,-34.8702190341042,-34.8702144613007,-34.8701996686564,-34.8702018717024,-34.8701495267482,-34.8701635442182,-34.8701845228398,-34.8702172905248,-34.8702318116937,-34.8698632279831,-34.8696350448755,-34.8691179144565,-34.8683450629321,-34.8682094688361,-34.8677891729121,-34.8672189647961,-34.8664016123116,-34.8655683083887,-34.8658710820772,-34.8648509574479,-34.8648212606171,-34.8645829643883,-34.8637559311995,-34.8637289606234]}]],[[{&#34;lng&#34;:[-56.1618138796767,-56.1616745908669,-56.1616638755623,-56.1615595443536,-56.1614165706184,-56.1613238511339,-56.1611617858861,-56.1608958870886,-56.1606365966992,-56.1605305701722,-56.1603533906426,-56.1597278212949,-56.1596250841851,-56.1595748683754,-56.1594609653961,-56.1593832536515,-56.1591705827458,-56.1589778221761,-56.1583338419212,-56.1581867356957,-56.1580684584097,-56.1578084752613,-56.1572948409927,-56.1563180713664,-56.1556394227482,-56.1554459160988,-56.1552363199717,-56.1543265365753,-56.1535350781902,-56.153533955352,-56.1528081343609,-56.1523883245209,-56.1520271015623,-56.1512716452875,-56.1502034410539,-56.1495573645224,-56.1484962864772,-56.1483027067508,-56.1487970676645,-56.1491070828348,-56.1495285259004,-56.149561970327,-56.1498214270451,-56.150230949824,-56.1504407043617,-56.1504801809911,-56.1506145988262,-56.1531331119602,-56.153275121865,-56.1540752745242,-56.1548702011548,-56.1556404383859,-56.1564585920166,-56.1565427887702,-56.1564797057693,-56.1563049515843,-56.1560408346842,-56.1558490034003,-56.1559689795618,-56.1560489770182,-56.1565160740799,-56.1569119524785,-56.1569126146779,-56.1573078844536,-56.1574372363561,-56.1576268205638,-56.1577515447895,-56.1578229612497,-56.1579808169148,-56.158146802383,-56.1584284262225,-56.1585212440911,-56.1592616126644,-56.1596495562588,-56.1599733578007,-56.1601940467983,-56.1602891956663,-56.1606575177597,-56.1618069993379,-56.1622539558127,-56.1630652122078,-56.1638975874868,-56.1648927039683,-56.1649908664899,-56.1656150515745,-56.1657366648005,-56.1660885067221,-56.1661731988665,-56.1662216937434,-56.1674167050413,-56.1674746449224,-56.1675813299425,-56.1681077473746,-56.1684314183549,-56.168513602406,-56.1685046828059,-56.1684737651942,-56.1684476333841,-56.1684259271896,-56.1684090234719,-56.1683926783757,-56.16838872467,-56.1683895734411,-56.168395890032,-56.1684069907569,-56.1684232174588,-56.1684442299622,-56.1684700432747,-56.1685002988783,-56.1685346749403,-56.1685731497827,-56.1686227490093,-56.1685332308622,-56.1683580216049,-56.1683182216431,-56.1679950016169,-56.1678606803824,-56.1675224045532,-56.1674887205148,-56.1674447495045,-56.1670027332121,-56.1666287253791,-56.1667735904837,-56.1666252630246,-56.1661034524744,-56.1654987312972,-56.1648601749066,-56.1642070486136,-56.1640310238478,-56.1635257176054,-56.1634901139123,-56.1628797464491,-56.162449390292,-56.1622054655608,-56.1618138796767],&#34;lat&#34;:[-34.8540599559269,-34.853885265425,-34.8537267127643,-34.8533439364674,-34.8528620612854,-34.8525468020315,-34.8519972219323,-34.8510966875036,-34.8502185012672,-34.8502415727117,-34.8502802197637,-34.8504106170174,-34.850431516965,-34.8504431754168,-34.8504687803425,-34.8504829843346,-34.8505286665913,-34.8505700716899,-34.8497848367236,-34.8496006117093,-34.8494524892204,-34.8491468412036,-34.8485392609555,-34.847317136505,-34.8464800098699,-34.8465924317718,-34.8467350047389,-34.8472708930896,-34.8477977633818,-34.8477984631916,-34.848242001936,-34.8485100468402,-34.8487134550764,-34.8491675726097,-34.8498124918778,-34.8502017126089,-34.8508838833972,-34.8510063404009,-34.8527688635785,-34.8538118048437,-34.8552417162327,-34.8553525665605,-34.8562270974362,-34.8576571844818,-34.8575992958731,-34.85757881034,-34.8575274955584,-34.8564889300878,-34.8575477061257,-34.8572205090484,-34.8585216584178,-34.8597861488812,-34.8611806548303,-34.8613307028255,-34.861356156577,-34.861454774671,-34.8615982589696,-34.8617001847323,-34.8618473622674,-34.8619441969253,-34.8623342457087,-34.8626586008266,-34.8626591350395,-34.8629780071909,-34.8630770847886,-34.8632222968836,-34.8633272202521,-34.8633872986654,-34.8635071400563,-34.8636404996588,-34.8638622927195,-34.863935333722,-34.8645219424059,-34.8647854278068,-34.8650183572468,-34.8651177501911,-34.8651676730726,-34.8653573127869,-34.8659309404185,-34.8661599209985,-34.8665304025324,-34.8669513336351,-34.8661976130107,-34.8661231256899,-34.865663020586,-34.8655791045068,-34.8652754948774,-34.8652053715596,-34.8651624682533,-34.8642579117504,-34.8642171940846,-34.8641448000825,-34.8637493718845,-34.8634845228939,-34.8634392345376,-34.8634302449014,-34.8633897640244,-34.8633492714747,-34.8633042599277,-34.8632637423651,-34.8631916751982,-34.8631421079685,-34.8630970363906,-34.863051949805,-34.8630068515466,-34.8629617382806,-34.8629166133418,-34.8628759823874,-34.8628353380928,-34.8627991911175,-34.8627630324696,-34.8627301244525,-34.8626053961725,-34.8623818295474,-34.8623310446824,-34.8619127572942,-34.8617360478211,-34.8613100798113,-34.8612605926229,-34.8612021191333,-34.8606399225275,-34.8601630531612,-34.8600864342199,-34.8599091667419,-34.8592886086192,-34.8584972619718,-34.8576800026877,-34.8568898130323,-34.8566909542919,-34.856112887226,-34.8560653017999,-34.8553346897706,-34.8548336776422,-34.854551062651,-34.8540599559269]}]],[[{&#34;lng&#34;:[-56.1741255266189,-56.1731046918149,-56.1720671433913,-56.1710434787946,-56.1710432553461,-56.170081132488,-56.1699807840691,-56.1689538644604,-56.168145440869,-56.1679252473095,-56.1667952688337,-56.1658043212694,-56.1647550006655,-56.1636751254129,-56.162736252879,-56.1627027638538,-56.1625991705154,-56.161703496311,-56.1615828352138,-56.1614742953635,-56.1610318622144,-56.1606365966992,-56.1608958870886,-56.1611617858861,-56.1613238511339,-56.1614165706184,-56.1615595443536,-56.1616638755623,-56.1616745908669,-56.1618138796767,-56.1622054655608,-56.162449390292,-56.1628797464491,-56.1634901139123,-56.1635257176054,-56.1640310238478,-56.1642070486136,-56.1648601749066,-56.1654987312972,-56.1661034524744,-56.1666252630246,-56.1667735904837,-56.1666287253791,-56.1670027332121,-56.1674447495045,-56.1674887205148,-56.1675224045532,-56.1678606803824,-56.1679950016169,-56.1683182216431,-56.1683580216049,-56.1685332308622,-56.1686227490093,-56.1687357903273,-56.1687735084756,-56.1688118945762,-56.1688665194143,-56.1689221881241,-56.1689785588626,-56.1690357303079,-56.1690915713514,-56.1691502795638,-56.1692030828467,-56.1692617179787,-56.1693082305494,-56.1693571891319,-56.169403429646,-56.1694195446236,-56.1694968194762,-56.1698025770337,-56.1698767470812,-56.1708795000687,-56.170959044416,-56.1710666378508,-56.1714094694705,-56.1717811685021,-56.1718509486548,-56.172695034079,-56.1727952271031,-56.1728452665145,-56.172895953203,-56.172977788183,-56.1735911854432,-56.1736818764537,-56.1737629604676,-56.1745267452042,-56.1746186962728,-56.1746032136635,-56.174461816719,-56.174193023929,-56.1741063884155,-56.1738953345696,-56.1746744713904,-56.1754659691445,-56.1759241672981,-56.1759896136121,-56.1760688356797,-56.1761916794222,-56.1764251304897,-56.1764580230552,-56.1765264929171,-56.1773241663225,-56.1783647440519,-56.1784264356097,-56.1793932299619,-56.1795963372226,-56.1796659556266,-56.1807190399791,-56.1810200093634,-56.1820796662722,-56.182930123208,-56.18250563137,-56.1817713656328,-56.1816936590934,-56.1813161220763,-56.1808969408938,-56.1799923714676,-56.1796354724056,-56.179495586096,-56.1785918016579,-56.1777100102288,-56.1773494217641,-56.1768101978392,-56.1760391499546,-56.1758730862134,-56.1757765576287,-56.1751567384412,-56.1741255266189],&#34;lat&#34;:[-34.846991773828,-34.8472784750205,-34.8475742242126,-34.8478698666829,-34.8478699300489,-34.8481474331644,-34.8481747439159,-34.8483983258895,-34.8485762509834,-34.8486264135202,-34.8488415222709,-34.8490677932947,-34.8493198578138,-34.849552551153,-34.8497564329668,-34.84976935346,-34.8497861983175,-34.8499742481694,-34.8499949463232,-34.8500229374615,-34.8501314397006,-34.8502185012672,-34.8510966875036,-34.8519972219323,-34.8525468020315,-34.8528620612854,-34.8533439364674,-34.8537267127643,-34.853885265425,-34.8540599559269,-34.854551062651,-34.8548336776422,-34.8553346897706,-34.8560653017999,-34.856112887226,-34.8566909542919,-34.8568898130323,-34.8576800026877,-34.8584972619718,-34.8592886086192,-34.8599091667419,-34.8600864342199,-34.8601630531612,-34.8606399225275,-34.8612021191333,-34.8612605926229,-34.8613100798113,-34.8617360478211,-34.8619127572942,-34.8623310446824,-34.8623818295474,-34.8626053961725,-34.8627301244525,-34.8626679534348,-34.8626511732831,-34.8626407093844,-34.862627042336,-34.862617879277,-34.8626132235426,-34.8625996442689,-34.8626024495422,-34.8626125454548,-34.8626250246871,-34.8626423911215,-34.862670933305,-34.8626933381931,-34.8627202554083,-34.8627337340263,-34.8626569094058,-34.8624275837726,-34.8623719541138,-34.861633749154,-34.861572947169,-34.8614887900333,-34.861228619551,-34.8609207674415,-34.860855932632,-34.8602291854726,-34.8601559412269,-34.8601178377975,-34.860079679514,-34.8600168541591,-34.8595490481164,-34.8594817618525,-34.8594229615762,-34.8588259736943,-34.8587570685136,-34.8587200970878,-34.8583979879711,-34.8574928178183,-34.8572767180368,-34.8566237813007,-34.8564549108765,-34.8572181684201,-34.8576663396312,-34.8577296898521,-34.8578115451029,-34.8577187843895,-34.857546988509,-34.8575149907369,-34.8574617535209,-34.8568013663423,-34.8559775059909,-34.8559286619041,-34.8551658412556,-34.855706820067,-34.8556840933462,-34.8553251382239,-34.8552206460012,-34.8548841941511,-34.8546159207956,-34.8540942934457,-34.8532657707044,-34.8531754814621,-34.8527500101645,-34.8522689253901,-34.8512393277335,-34.8508617263282,-34.8507449327614,-34.8499857378918,-34.8492535236036,-34.8489513377586,-34.848539375299,-34.847927514268,-34.8478072944128,-34.8476603756306,-34.8467169821109,-34.846991773828]}]],[[{&#34;lng&#34;:[-56.1701616640202,-56.170284452829,-56.170342565317,-56.1704079511917,-56.1704391838109,-56.1699417642981,-56.1695791676643,-56.1691671787588,-56.1691595238473,-56.1690652744003,-56.1689171590015,-56.1687114692974,-56.1687059802809,-56.1686384849909,-56.1683552868395,-56.1683509626508,-56.1683279033029,-56.1683261675592,-56.1683242097313,-56.1683225422047,-56.1683259251587,-56.1683194137994,-56.1682917946807,-56.1683931769662,-56.1680143932844,-56.1658708311279,-56.165696848067,-56.1653727792698,-56.1649768538336,-56.1633236983429,-56.1630364710425,-56.1630138176929,-56.1629028319421,-56.1628597098823,-56.1624077495955,-56.1624067629526,-56.1624270634221,-56.1624632020597,-56.1624618330203,-56.1614491524217,-56.1604385412236,-56.1599096434575,-56.1594282918788,-56.1591145900948,-56.1579340946164,-56.1574036643933,-56.1570327487404,-56.1565362903997,-56.1558039660546,-56.1554170198299,-56.1534938780164,-56.1520175166191,-56.1517372654197,-56.1505106895098,-56.1499043968291,-56.1492834132387,-56.1484136146613,-56.1479374124049,-56.1473695261982,-56.1468521093531,-56.1460035117095,-56.1451932138182,-56.144867679265,-56.1446001479589,-56.1458889750411,-56.1461012621219,-56.1468185120261,-56.1474149462891,-56.1476553169211,-56.1480710082019,-56.1481507390896,-56.1486887014429,-56.1493893828979,-56.1498369151617,-56.1500351243882,-56.1509311551103,-56.1515587946976,-56.1516117456223,-56.1522865842358,-56.1526768835324,-56.1532900756471,-56.1539033548897,-56.1544928400498,-56.154809857284,-56.1553024037939,-56.1556394227482,-56.1563180713664,-56.1572948409927,-56.1578084752613,-56.1580684584097,-56.1581867356957,-56.1583338419212,-56.1589778221761,-56.1591705827458,-56.1593832536515,-56.1594609653961,-56.1595748683754,-56.1596250841851,-56.1597278212949,-56.1603533906426,-56.1605305701722,-56.1606365966992,-56.1609069500102,-56.1610318622144,-56.1614742953635,-56.1615828352138,-56.161703496311,-56.1625991705154,-56.1627027638538,-56.162736252879,-56.1636751254129,-56.1647550006655,-56.1658043212694,-56.1667952688337,-56.1679252473095,-56.168145440869,-56.1689538644604,-56.1699807840691,-56.170081132488,-56.1710432553461,-56.1710434787946,-56.1720671433913,-56.1731046918149,-56.1741255266189,-56.1751567384412,-56.1744484528169,-56.1742726725845,-56.1738720183782,-56.1732870225142,-56.1726924025201,-56.1726796709541,-56.172152245614,-56.1721116415934,-56.1720971305231,-56.1714913680012,-56.1714200079804,-56.1713828771644,-56.1699744241224,-56.1700491793423,-56.1701309715246,-56.1701616640202],&#34;lat&#34;:[-34.8371862602071,-34.8365384017036,-34.8362456241217,-34.8359026197125,-34.8357387770363,-34.8356850316894,-34.835649638498,-34.8356097438331,-34.8356089098731,-34.8355986418799,-34.8355811540254,-34.8355603223249,-34.8355597664072,-34.8355511745071,-34.8355231776977,-34.8356826646165,-34.8365331367079,-34.8366265097176,-34.8367318291787,-34.8368215954735,-34.8369048744845,-34.8370907227352,-34.8384802442144,-34.8388946179175,-34.8387468950664,-34.8384686348938,-34.838446560176,-34.8384062127011,-34.8383493778603,-34.8381282129791,-34.8380118693282,-34.8379848854119,-34.8378437080431,-34.8378005036548,-34.8372378799602,-34.8371977528008,-34.8363458801349,-34.8352596032475,-34.8349035562916,-34.8347935228779,-34.834687981781,-34.8346350845005,-34.834586939671,-34.8345652184688,-34.8344330536413,-34.8343758274617,-34.8343376618797,-34.8342924211136,-34.8342176258731,-34.8341781054914,-34.8339666664469,-34.8338261839965,-34.8337953414235,-34.8336677289438,-34.8336016481976,-34.833535600802,-34.8334386207869,-34.8333863638366,-34.8333240416955,-34.8332712444667,-34.8331787034075,-34.8330950769459,-34.8330623734132,-34.8330335418773,-34.8346153047728,-34.8348775929016,-34.8357592309182,-34.8364923390008,-34.8367878113835,-34.8372987891867,-34.8373967954522,-34.8380330349117,-34.8388551462677,-34.8394033676148,-34.8396460736138,-34.8407486174655,-34.8415217761153,-34.8415798089546,-34.8424262544256,-34.8428926517448,-34.8436322345368,-34.8443967703368,-34.8451058354338,-34.8455023870418,-34.8460352077634,-34.8464800098699,-34.847317136505,-34.8485392609555,-34.8491468412036,-34.8494524892204,-34.8496006117093,-34.8497848367236,-34.8505700716899,-34.8505286665913,-34.8504829843346,-34.8504687803425,-34.8504431754168,-34.850431516965,-34.8504106170174,-34.8502802197637,-34.8502415727117,-34.8502185012672,-34.8501589531437,-34.8501314397006,-34.8500229374615,-34.8499949463232,-34.8499742481694,-34.8497861983175,-34.84976935346,-34.8497564329668,-34.849552551153,-34.8493198578138,-34.8490677932947,-34.8488415222709,-34.8486264135202,-34.8485762509834,-34.8483983258895,-34.8481747439159,-34.8481474331644,-34.8478699300489,-34.8478698666829,-34.8475742242126,-34.8472784750205,-34.846991773828,-34.8467169821109,-34.8455412343997,-34.8452529476164,-34.8445947542903,-34.8436363500168,-34.8426599431254,-34.8426374415208,-34.8417778682168,-34.8417040681254,-34.8416880418911,-34.8406857285262,-34.840576638712,-34.8405181485471,-34.8382233650686,-34.8377724691967,-34.8373462126987,-34.8371862602071]}]],[[{&#34;lng&#34;:[-56.1845628904762,-56.1847681926489,-56.1849738107316,-56.1851371173721,-56.1852173405078,-56.1854328126132,-56.185798687651,-56.1862659354433,-56.186290909168,-56.1871911476669,-56.1884130945245,-56.1884180754788,-56.1896926087115,-56.1899812763347,-56.1900478804759,-56.1910403237626,-56.191839848631,-56.1924303258158,-56.1924776187715,-56.1927113359054,-56.1933159989213,-56.1940528944127,-56.1944117211678,-56.1946746167829,-56.1948182437204,-56.1950553658965,-56.1950562329385,-56.1951549889955,-56.1957174022057,-56.1960115276817,-56.1961075675166,-56.1962120609832,-56.1962965495387,-56.1964829825515,-56.1967163129219,-56.1968646541104,-56.1969940079799,-56.1990134377848,-56.1992011663592,-56.1997390685154,-56.1997928247818,-56.2000889811927,-56.2000275332798,-56.1997290463737,-56.1996093743978,-56.1994389299433,-56.1992559482763,-56.1991644694848,-56.1990608084479,-56.1988210938305,-56.1981194313609,-56.1976393170502,-56.1974643891276,-56.1970940393578,-56.1966586449823,-56.1961826924267,-56.1958284710493,-56.1955882888479,-56.1954281220791,-56.1952372753212,-56.195065178233,-56.1949959166797,-56.1948909717236,-56.1946911711814,-56.193839375415,-56.1936738461978,-56.1934216472887,-56.1932406463657,-56.1929423614453,-56.192698334826,-56.1925983129564,-56.1925374399388,-56.1924838416246,-56.1922832922933,-56.1921052221246,-56.1919494176055,-56.1917119214496,-56.1914127785584,-56.19129816257,-56.1912810975191,-56.1909042409773,-56.1906448959618,-56.1900980699796,-56.190017183342,-56.1899654664328,-56.189866299724,-56.1897669688264,-56.1895230888204,-56.1893677134877,-56.1891635934209,-56.1889531766201,-56.1888902451892,-56.1888133543826,-56.1887120347011,-56.1886030521971,-56.1884526472366,-56.1882917161563,-56.1880504626775,-56.1879139326868,-56.1878760862632,-56.1877466787747,-56.1875929570674,-56.1875249837049,-56.1874364302758,-56.1873284756446,-56.1872621417053,-56.1872204642721,-56.1871424468053,-56.1871046465347,-56.1869924327316,-56.1869368536479,-56.186867230143,-56.1868112518095,-56.1867692609547,-56.1867555303324,-56.1867490074441,-56.1867282688707,-56.1866831023064,-56.1866170260847,-56.1865283566174,-56.1864073704924,-56.1863733952271,-56.1863413441726,-56.1862422148226,-56.1861760986734,-56.1861267592434,-56.1860777403754,-56.1860781853388,-56.186068126602,-56.1860973933308,-56.1860518752587,-56.1860492249437,-56.1860333940007,-56.1860502150865,-56.1860668271932,-56.1862421747386,-56.1863047884747,-56.1863108757298,-56.1863286535212,-56.1863285814931,-56.186328461443,-56.1862687690956,-56.1861994685639,-56.1861631291977,-56.1861263747217,-56.186069307895,-56.1860305222673,-56.1859843296946,-56.1858843874226,-56.1858215641897,-56.1856877534093,-56.1856313287167,-56.1851735546864,-56.1824801378057,-56.1797515397645,-56.1767398707364,-56.1766456454753,-56.1760391499546,-56.1768101978392,-56.1773494217641,-56.1777100102288,-56.1785918016579,-56.179495586096,-56.1796354724056,-56.1799923714676,-56.1808969408938,-56.1813161220763,-56.1816936590934,-56.1817713656328,-56.18250563137,-56.182930123208,-56.1833488295622,-56.1834698886622,-56.1836403403184,-56.1841095064461,-56.1843304754054,-56.1843525307383,-56.1845628904762],&#34;lat&#34;:[-34.8577031429551,-34.8582611528329,-34.8587385936301,-34.8592811173404,-34.8594576706142,-34.8596991355887,-34.8602189654054,-34.8609743149566,-34.8610580752891,-34.8606064914695,-34.860031894243,-34.8600286846592,-34.8592706363515,-34.8591123513866,-34.8590758292178,-34.8587620257147,-34.8584856947252,-34.8582889269148,-34.8582736694935,-34.8582090250074,-34.8580844398548,-34.8579050930735,-34.8578180064947,-34.8577542014302,-34.8577217059627,-34.8576627873501,-34.8576625764559,-34.8576385555664,-34.8575017554115,-34.8573976864921,-34.8573638052711,-34.857327609937,-34.857204854543,-34.8564761453292,-34.8554031558298,-34.8548162420183,-34.8543641592891,-34.853943652423,-34.853904156994,-34.853783507404,-34.8537154701447,-34.8536326136348,-34.8534667164549,-34.8527872907279,-34.8525760384288,-34.8523962662433,-34.8522849346858,-34.8522280452513,-34.8522028899613,-34.8521254458164,-34.8519274875291,-34.8518435612277,-34.8518203816481,-34.8517445192648,-34.8516413062157,-34.8514350384506,-34.8511585760878,-34.850924905578,-34.8507045285906,-34.8503400139344,-34.8497230557533,-34.8492635454387,-34.8489303335928,-34.8485478163189,-34.8473639708536,-34.8471343628504,-34.8468928995026,-34.8467545700345,-34.8466120247823,-34.8465218059003,-34.8464998440277,-34.8464900688242,-34.8464760823046,-34.846436450767,-34.846423437389,-34.8464238809511,-34.8464262557794,-34.8464708566067,-34.8465023580904,-34.8465069137733,-34.8466285402456,-34.8467553218943,-34.8470445388867,-34.8470899153147,-34.8471510835043,-34.8472171392363,-34.8472616567158,-34.847412100632,-34.8474690792575,-34.8474735200232,-34.847402500113,-34.8473614705627,-34.8473087450551,-34.8472355516112,-34.8472261224845,-34.8471351971184,-34.8470413006122,-34.8468859528835,-34.8468154244201,-34.8467281505478,-34.8466489673397,-34.8465377138264,-34.846404347673,-34.8463539237386,-34.8462400749411,-34.8461874189952,-34.84613202708,-34.8460886817331,-34.8461022460032,-34.84606378679,-34.845990897618,-34.8459150138215,-34.8458827318029,-34.845859245401,-34.8458243451245,-34.8457720888063,-34.8457342409621,-34.8456759248265,-34.8455971639014,-34.8454712796703,-34.8453023562926,-34.8452738880286,-34.8452470320564,-34.8451731921262,-34.845127014292,-34.8450672280463,-34.84503143878,-34.8449296966174,-34.8448244377402,-34.8446691330113,-34.8445701882877,-34.8444904423587,-34.8444080125767,-34.8443307711921,-34.8442625451242,-34.8440192813652,-34.8438884441573,-34.8438336023149,-34.8437491415195,-34.8436697069218,-34.8435373156088,-34.843366964421,-34.8432447247122,-34.8431053361593,-34.8429695027732,-34.8427839971032,-34.8427088716925,-34.8426368278709,-34.8425375333289,-34.8424866270752,-34.8423069844289,-34.8422545088319,-34.8425689686679,-34.8441790398958,-34.8456837292359,-34.8474488795691,-34.847535210759,-34.847927514268,-34.848539375299,-34.8489513377586,-34.8492535236036,-34.8499857378918,-34.8507449327614,-34.8508617263282,-34.8512393277335,-34.8522689253901,-34.8527500101645,-34.8531754814621,-34.8532657707044,-34.8540942934457,-34.8546159207956,-34.8551420704778,-34.8553310245929,-34.8557316695491,-34.8567263992233,-34.8571945056378,-34.8572395138497,-34.8577031429551]}]],[[{&#34;lng&#34;:[-56.1680932055034,-56.1658760538213,-56.1653014524847,-56.1648789939124,-56.1637164633986,-56.1632679104017,-56.1627476759388,-56.1620973419977,-56.1617337341878,-56.1609718968289,-56.1606559810752,-56.1604722544254,-56.1601966165746,-56.1597544320503,-56.159045309527,-56.1586963198324,-56.1584939405565,-56.1582314788655,-56.1582297814696,-56.1579560553973,-56.1577248857383,-56.1577236402605,-56.1575480891236,-56.1573862912943,-56.1570616498818,-56.1564669271171,-56.1564489507581,-56.1564348648979,-56.1558177568642,-56.1557902042804,-56.1555580686506,-56.1553150639153,-56.1527287169663,-56.1526453051394,-56.1525837367924,-56.152491795734,-56.1523483386232,-56.152097876172,-56.1520160371937,-56.1519564454457,-56.1517073454109,-56.1516110423196,-56.1512990254814,-56.1509405467087,-56.1509095070067,-56.1505022785053,-56.1501658791703,-56.1499613895551,-56.149753013207,-56.1496103306694,-56.1492973931825,-56.149127941213,-56.1479544750193,-56.1478628724803,-56.1477014273681,-56.1475253732391,-56.1480922189093,-56.1481536472561,-56.1487885580292,-56.1486081216402,-56.148393515783,-56.1482027825965,-56.1489669933862,-56.1492614352374,-56.1493907752747,-56.149981343179,-56.1504347436759,-56.1506088434636,-56.150999584979,-56.153262452141,-56.1534997340343,-56.1546122472396,-56.1545998499177,-56.1545151647201,-56.1543870086267,-56.1543346249445,-56.1541922315085,-56.1537002677903,-56.1536416769246,-56.1534047938633,-56.1531676816076,-56.1530772569408,-56.1529698744411,-56.1527817671367,-56.1527104473145,-56.1517875746988,-56.1517372654197,-56.1520175166191,-56.1534938780164,-56.1554170198299,-56.1558039660546,-56.1565362903997,-56.1570327487404,-56.1574036643933,-56.1579340946164,-56.1591145900948,-56.1594282918788,-56.1599096434575,-56.1604385412236,-56.1614491524217,-56.1624618330203,-56.1624632020597,-56.1624270634221,-56.1624067629526,-56.1624077495955,-56.1628597098823,-56.1629028319421,-56.1630138176929,-56.1630364710425,-56.1633236983429,-56.1649768538336,-56.1653727792698,-56.165696848067,-56.1658708311279,-56.1680143932844,-56.1683931769662,-56.1682917946807,-56.1683194137994,-56.1683259251587,-56.1683225422047,-56.1683242097313,-56.1683261675592,-56.1683279033029,-56.1683509626508,-56.1683552868395,-56.1686384849909,-56.1687059802809,-56.1687114692974,-56.1689171590015,-56.1690652744003,-56.1691595238473,-56.1691671787588,-56.1695791676643,-56.1699417642981,-56.1704391838109,-56.1704079511917,-56.170342565317,-56.170284452829,-56.1701616640202,-56.1701309715246,-56.1700491793423,-56.1699744241224,-56.1713828771644,-56.1714200079804,-56.1714913680012,-56.1720971305231,-56.1721116415934,-56.172152245614,-56.1726796709541,-56.1726924025201,-56.1732870225142,-56.1738720183782,-56.1742726725845,-56.1744484528169,-56.1751567384412,-56.1757765576287,-56.1758730862134,-56.1760391499546,-56.1766456454753,-56.1767398707364,-56.1797515397645,-56.1824801378057,-56.1851735546864,-56.1856313287167,-56.1855859709174,-56.1855746961444,-56.1855637444547,-56.1855500781358,-56.1855346848846,-56.185526808114,-56.185509346296,-56.1855000658848,-56.1854962332833,-56.185494810883,-56.1854940905115,-56.1854937115661,-56.1854929911946,-56.1854915687943,-56.1854901649453,-56.1854880778273,-56.185484263777,-56.1854808101208,-56.185472914799,-56.1854664047749,-56.1854595529079,-56.1854506326825,-56.1854420726429,-56.1854345189556,-56.1854232070801,-56.1854122182879,-56.185402956428,-56.1853940362026,-56.1853816808723,-56.1853706735289,-56.1853596661855,-56.1853507086492,-56.1853420929558,-56.1853334772625,-56.1853248615692,-56.185318295683,-56.1853114069219,-56.1853045179524,-56.1852972875569,-56.1852697135446,-56.1852645515074,-56.1852569794773,-56.1852473757744,-56.1852391204753,-56.1852026114383,-56.1851477942093,-56.1851361221481,-56.1851244500868,-56.1851103680327,-56.1850595801734,-56.1850389880952,-56.1850166690847,-56.184994026991,-56.1849844234965,-56.184977571838,-56.184968651821,-56.1849600917814,-56.1848678710958,-56.1848346193637,-56.1848226242192,-56.1848102690973,-56.1847979325267,-56.1847890308525,-56.1847633140481,-56.1847379574293,-56.1846930338444,-56.1846783056237,-56.1846594959231,-56.1846406678796,-56.1846321265997,-56.1846232249255,-56.1846146650943,-56.1846064654489,-56.1845965388712,-56.18458797904,-56.1845787357313,-56.1845722257072,-56.1845656973404,-56.184556093846,-56.1845145313695,-56.1844942996855,-56.184479211279,-56.1844525066734,-56.184440188654,-56.1843666774091,-56.1843611443472,-56.1842709957719,-56.1842540890436,-56.1841876917447,-56.184099359677,-56.1839969644609,-56.1839244925962,-56.1838656046856,-56.1837813975271,-56.1837513453842,-56.183681790444,-56.1836391517837,-56.1835814625237,-56.1835015107844,-56.1834089105475,-56.1833976176402,-56.1833893996519,-56.1833808398207,-56.1833731846228,-56.1833640803441,-56.1833555209298,-56.1833442280224,-56.1833329346982,-56.1832627489182,-56.1832545492728,-56.1832401626866,-56.1832254350912,-56.1832103839956,-56.1831953141404,-56.1831829965379,-56.183152534161,-56.1830987660147,-56.1830922559907,-56.1830854045405,-56.1830425691159,-56.1830264562227,-56.1830093182175,-56.1829918204435,-56.1829829191862,-56.1829736577432,-56.1829643963002,-56.1829551348571,-56.182935245433,-56.1829156974349,-56.1829037029157,-56.1828841365748,-56.1828762416699,-56.1828687069507,-56.1828594271649,-56.18284500431,-56.182837109405,-56.1828054564141,-56.1827975431664,-56.182787377507,-56.1828103330958,-56.1828140541815,-56.1828198071485,-56.1828255596986,-56.1828381086704,-56.1828425130252,-56.1828482843349,-56.182855745266,-56.1828618763447,-56.1828747855022,-56.1828876942429,-56.1829073994054,-56.1829287941892,-56.18293963478,-56.1829419893276,-56.1829687026877,-56.1829720823474,-56.18297580385,-56.1830056471576,-56.1830127850054,-56.183023985782,-56.1830358881703,-56.1830420009062,-56.1830600343732,-56.1830777076544,-56.1831358893268,-56.1831420208223,-56.1831870073564,-56.1831937850185,-56.1832005439209,-56.1832028801257,-56.1832052346733,-56.1832092609164,-56.183214634938,-56.1832176356522,-56.1832209786262,-56.1832226499048,-56.1832246626095,-56.1832273406573,-56.183230378474,-56.1832347273835,-56.1832390950527,-56.1832427794528,-56.183246805279,-56.1832488184006,-56.1832508311052,-56.1832528442268,-56.1832683201248,-56.1832841191061,-56.1832861318107,-56.1832884863584,-56.1832904994799,-56.1832928540275,-56.1832934818513,-56.1832864544771,-56.1832675080393,-56.1832623462105,-56.1832544517225,-56.1832496317367,-56.1832372953745,-56.1832304443413,-56.1832235928911,-56.1832088469529,-56.1832047102362,-56.1831730389025,-56.1831644611454,-56.1831582746215,-56.1831132976757,-56.1830837136685,-56.1830452467468,-56.1830092265036,-56.1829492730841,-56.18290850706,-56.1828259865854,-56.1827968919972,-56.1827763564065,-56.1827561443159,-56.1827445099825,-56.182733217492,-56.1827198564347,-56.1827089053703,-56.1826880466963,-56.1826740211296,-56.1826599955629,-56.1826483612294,-56.182638435277,-56.1826285272506,-56.1825246128259,-56.1825129972521,-56.1825017231044,-56.1824901071138,-56.1824743915088,-56.1824518432134,-56.1824405507229,-56.1824296180013,-56.1824135426275,-56.1823988517177,-56.1822854269716,-56.1822103757658,-56.1821452296683,-56.1820379826916,-56.1819271355249,-56.1818124434586,-56.1817370274813,-56.1815843145567,-56.181484419705,-56.1814154078638,-56.1814104598954,-56.181399695594,-56.1814875659109,-56.1814717319116,-56.1814588523526,-56.1813984032608,-56.1814186053462,-56.1814496029992,-56.1814609655258,-56.1814438692088,-56.1814486566778,-56.1814456109403,-56.1814423008999,-56.1814380362005,-56.1814204633878,-56.181415474148,-56.1814341825464,-56.1814453520568,-56.1814377902403,-56.1813924414361,-56.1813584868415,-56.1813415793719,-56.1813227638349,-56.1813151807575,-56.1813130880115,-56.1813091105436,-56.1813760896698,-56.1813756315168,-56.181377621293,-56.1814167714838,-56.1814860638863,-56.1815961765075,-56.181722362835,-56.181770999168,-56.1817868073207,-56.1818199319039,-56.1818342959785,-56.1818802325858,-56.1818978896087,-56.1819522301335,-56.1819759231859,-56.1820064760262,-56.1820142746314,-56.1820099544868,-56.1820759322632,-56.1820655477409,-56.1820823964303,-56.1820807672567,-56.182106398392,-56.1821457115835,-56.1821737668857,-56.1822487693163,-56.182293711244,-56.1823246496998,-56.1823326067201,-56.1823681058613,-56.1823604406581,-56.1823603397727,-56.1824179744964,-56.182500008887,-56.18256005944,-56.1825852382586,-56.1827024412032,-56.1827342275963,-56.1827548328062,-56.1828014376749,-56.1828577371266,-56.1828817503442,-56.1829002157006,-56.1829266026423,-56.1829669630406,-56.1829863676313,-56.1830419041896,-56.1831267938027,-56.1831510167117,-56.1831470121465,-56.1831266232981,-56.1831392960838,-56.1831599767493,-56.1831805369361,-56.1831690197464,-56.1831771960464,-56.1831742932994,-56.1832172925586,-56.183251064559,-56.1833299481579,-56.1833543478248,-56.1834756720615,-56.1834851777972,-56.183488813839,-56.1835049025531,-56.1835037011001,-56.1835176128581,-56.1835300459368,-56.1835392181672,-56.1835258350151,-56.1835068356333,-56.1834803807399,-56.1834501939217,-56.1834144296439,-56.1833860708518,-56.1833765205098,-56.1833781071614,-56.1833354509959,-56.1832833412049,-56.1832438012298,-56.1832192439816,-56.1832001753975,-56.1831530081555,-56.1831378232409,-56.1831253122053,-56.1829826928195,-56.1829692721481,-56.1829384374959,-56.1829162422992,-56.1828502736942,-56.1828366825182,-56.1828366254054,-56.1828249548033,-56.1828184322728,-56.1828193027217,-56.1827964530208,-56.1827510066663,-56.1827458560934,-56.1827244383811,-56.1826701924884,-56.1826432540122,-56.1826374989608,-56.1826148326879,-56.182607325066,-56.182579174298,-56.1825691783095,-56.1825709171229,-56.1825761915097,-56.1825120830306,-56.1824611038227,-56.1824608570287,-56.182441258588,-56.182417264547,-56.1824140712334,-56.1824186431746,-56.1824417300811,-56.1824627959453,-56.1824878167659,-56.1825121330564,-56.1825376549687,-56.1825301565183,-56.1825241546729,-56.182501477978,-56.1824844266842,-56.1824851433038,-56.182500875584,-56.1824328092304,-56.1823564907044,-56.1823237625756,-56.1822860898135,-56.1822519713844,-56.182241006146,-56.1822180113703,-56.1821841901779,-56.1821634724099,-56.1821352957951,-56.1821068148568,-56.1821364943299,-56.1821495410585,-56.1821512586109,-56.1821525942998,-56.1821545815746,-56.1822253105514,-56.1822232107184,-56.1822415255806,-56.1822728867543,-56.1823252245796,-56.1823755446976,-56.1823791240436,-56.1823733885857,-56.1823394285716,-56.1822950836185,-56.1822915939021,-56.1823234519988,-56.1823380374375,-56.1823376997634,-56.1823284316502,-56.1823351226009,-56.1823198943307,-56.1823010554483,-56.1823890216481,-56.1824564539246,-56.182473704071,-56.1825407774124,-56.1825800805987,-56.1826062745243,-56.1826249174722,-56.1826285280843,-56.1826901673733,-56.1828324236551,-56.1829841906753,-56.1830085949278,-56.1830348134494,-56.1830816292602,-56.1831229051305,-56.1831941310302,-56.1832129069635,-56.1832448109171,-56.1833068675046,-56.1833520520575,-56.1833971861676,-56.1834440966105,-56.1834759563748,-56.1834852582553,-56.1834707774539,-56.1834216277311,-56.1834208258592,-56.1829308223185,-56.18268562378,-56.1822721538472,-56.1819353794668,-56.1817350425673,-56.1813172236905,-56.1797007635779,-56.1776546713286,-56.1774731036307,-56.1756097167326,-56.1755678621349,-56.1746959162015,-56.1744132926006,-56.1735266351039,-56.1721029466285,-56.1719279665217,-56.1711652322253,-56.1709392916958,-56.1706707687627,-56.1700006993399,-56.1697341120847,-56.1696246103812,-56.169563114487,-56.1694070234903,-56.1685993803386,-56.1685391055586,-56.1678896328169,-56.167687689795,-56.1679151370954,-56.1680024154404,-56.1680255390325,-56.1680954167369,-56.1681240314943,-56.1681270280397,-56.1681306982658,-56.168137497197,-56.1681947613048,-56.1684695997127,-56.1685310399204,-56.1685635936573,-56.1686144110622,-56.1686201486346,-56.1687230670989,-56.1687742779823,-56.1687809069284,-56.1688014983919,-56.168826867298,-56.1689440603747,-56.1689633226716,-56.1690505910114,-56.1690678899329,-56.1690599109817,-56.1690578819017,-56.1690339020383,-56.169034609436,-56.1690196758547,-56.1689927328557,-56.1689904549977,-56.1689658872955,-56.1689239206843,-56.1688897980864,-56.1688794377433,-56.1680932055034],&#34;lat&#34;:[-34.82364419235,-34.8232755827815,-34.823173443439,-34.8230785052074,-34.8228981748092,-34.8228227559138,-34.8227430511429,-34.8226515327134,-34.8226014551166,-34.8225089698111,-34.8224712220741,-34.822441499488,-34.8224016572469,-34.8223393230731,-34.8222300888382,-34.8221856513884,-34.8221598816126,-34.8221227258609,-34.8221224855648,-34.8220836837656,-34.8220479879645,-34.8220477956442,-34.8220260125766,-34.8220018688788,-34.8219534247447,-34.8218646757327,-34.8218535640117,-34.8218448571195,-34.8216595956156,-34.8217642439013,-34.822726267768,-34.823677089849,-34.8234583762175,-34.8234607850609,-34.8234543766882,-34.8234315946693,-34.8234252154684,-34.8233950862459,-34.8233852413614,-34.8234709023223,-34.8234458867976,-34.823436215553,-34.823414510477,-34.8234101953855,-34.8233799183186,-34.8233498544186,-34.8233263457672,-34.8233120549245,-34.8233156491845,-34.8232339553925,-34.8232042428706,-34.8231983039975,-34.8231201543593,-34.8231464116383,-34.8232095353859,-34.8246657330509,-34.8247048865767,-34.8247091020841,-34.8247527245813,-34.8258483696335,-34.827080414996,-34.8280262594937,-34.8281181168669,-34.8281535084526,-34.8281690564711,-34.8282561713985,-34.8283169060542,-34.828340228082,-34.8283783710867,-34.8285254551996,-34.8285502407766,-34.8286664433773,-34.8288242634905,-34.8293579329384,-34.8301650091683,-34.8304986612412,-34.8314274602466,-34.8318985732116,-34.8319546802652,-34.8321777686459,-34.8324037343889,-34.8324962460775,-34.8325979939208,-34.8327911996176,-34.8328464153714,-34.8337276098259,-34.8337953414235,-34.8338261839965,-34.8339666664469,-34.8341781054914,-34.8342176258731,-34.8342924211136,-34.8343376618797,-34.8343758274617,-34.8344330536413,-34.8345652184688,-34.834586939671,-34.8346350845005,-34.834687981781,-34.8347935228779,-34.8349035562916,-34.8352596032475,-34.8363458801349,-34.8371977528008,-34.8372378799602,-34.8378005036548,-34.8378437080431,-34.8379848854119,-34.8380118693282,-34.8381282129791,-34.8383493778603,-34.8384062127011,-34.838446560176,-34.8384686348938,-34.8387468950664,-34.8388946179175,-34.8384802442144,-34.8370907227352,-34.8369048744845,-34.8368215954735,-34.8367318291787,-34.8366265097176,-34.8365331367079,-34.8356826646165,-34.8355231776977,-34.8355511745071,-34.8355597664072,-34.8355603223249,-34.8355811540254,-34.8355986418799,-34.8356089098731,-34.8356097438331,-34.835649638498,-34.8356850316894,-34.8357387770363,-34.8359026197125,-34.8362456241217,-34.8365384017036,-34.8371862602071,-34.8373462126987,-34.8377724691967,-34.8382233650686,-34.8405181485471,-34.840576638712,-34.8406857285262,-34.8416880418911,-34.8417040681254,-34.8417778682168,-34.8426374415208,-34.8426599431254,-34.8436363500168,-34.8445947542903,-34.8452529476164,-34.8455412343997,-34.8467169821109,-34.8476603756306,-34.8478072944128,-34.847927514268,-34.847535210759,-34.8474488795691,-34.8456837292359,-34.8441790398958,-34.8425689686679,-34.8422545088319,-34.8422008296822,-34.8422008630327,-34.8421963840561,-34.8421964240768,-34.8421919584404,-34.8421874761287,-34.8421785081704,-34.8421650145447,-34.8421469985868,-34.8421334816157,-34.8421244703017,-34.8421154556526,-34.8421064443386,-34.8420929273675,-34.8420839160535,-34.8420749080745,-34.8420613977736,-34.8420523931297,-34.8420434018259,-34.8420389128442,-34.8420344271975,-34.8420254358938,-34.8420209535821,-34.8420119622784,-34.8420029776448,-34.8419894906893,-34.8419805027206,-34.8419715114169,-34.8419580244613,-34.8419400285137,-34.841922032566,-34.8419040299483,-34.8418860239955,-34.8418680213778,-34.84185001876,-34.8418320094721,-34.8418185058413,-34.8418050055455,-34.8417915052498,-34.8417329917395,-34.8417239904307,-34.8417104934699,-34.8417015055013,-34.8416880085406,-34.8416483047309,-34.8415800962207,-34.8415666059301,-34.8415531189745,-34.841535129697,-34.8414811885448,-34.8414587102855,-34.8414317330394,-34.8414092614502,-34.8414002734815,-34.8413957844998,-34.8413867965311,-34.8413823142195,-34.841305954839,-34.8412790042732,-34.8412700229747,-34.8412565393542,-34.8412475580556,-34.841243075744,-34.84122061416,-34.8412026548979,-34.8411622207116,-34.8411532460832,-34.841148793787,-34.8411398324988,-34.8411398558442,-34.8411353735325,-34.8411308912209,-34.8411309112312,-34.8411264322546,-34.841121949943,-34.8411174676313,-34.8411129819846,-34.8411039840108,-34.8410949960422,-34.8410410315446,-34.8410230589424,-34.8410095786569,-34.840996135057,-34.8409916594155,-34.8409783458827,-34.8409780990887,-34.8409741070299,-34.8409738490259,-34.8409728357512,-34.8409722432666,-34.8409047939948,-34.8407889909465,-34.8407885958382,-34.8406745825072,-34.8406577715621,-34.8406370731843,-34.8406110662787,-34.8404892929322,-34.8403855780402,-34.8402869426417,-34.8402824670001,-34.8402779846885,-34.8402734990418,-34.8402703540865,-34.8402690400755,-34.8402645577639,-34.8402600821224,-34.8402556064808,-34.8402197446526,-34.840219767998,-34.8402107933695,-34.8402018220761,-34.8401973564398,-34.8401883851464,-34.8401839128399,-34.8401704759101,-34.8401390763833,-34.8401345874015,-34.8401300984198,-34.8400986688774,-34.8400851952621,-34.8400717216467,-34.8400537423743,-34.8400492600627,-34.840040272094,-34.8400312841254,-34.8400222961567,-34.8400043235544,-34.8399863476171,-34.8399773696536,-34.8399548880593,-34.8399458967556,-34.8399414111089,-34.8399279141482,-34.8399099282057,-34.8399009335669,-34.8398469390539,-34.8398334387581,-34.8397703695651,-34.8397027013335,-34.8396936766792,-34.8396801396979,-34.8396666027165,-34.8396440344108,-34.8396350097565,-34.8396259784322,-34.8396124381158,-34.8396079124484,-34.8395898497997,-34.839571783816,-34.8395446898429,-34.8395130802077,-34.839490515237,-34.8394814939178,-34.8394138156811,-34.8394047910269,-34.8393957697077,-34.8393416017719,-34.8393325671125,-34.8393145077988,-34.8393009541422,-34.8392919228178,-34.8392738468289,-34.8392512618479,-34.8391925082138,-34.8391879858815,-34.8391608185373,-34.8391472782209,-34.8391292322475,-34.8391157052713,-34.8391066839521,-34.8390886446487,-34.8390660930183,-34.83904805705,-34.8390300210817,-34.8390210030976,-34.8390119817784,-34.8389984548022,-34.838989433483,-34.8389668851876,-34.8389488458843,-34.8389308065809,-34.8389127672776,-34.8389037492935,-34.8388947279743,-34.8388857099901,-34.838827076418,-34.8387639338537,-34.8387549158696,-34.8387458945504,-34.8387368732312,-34.8387278552471,-34.8387143316059,-34.8386640256619,-34.8386287708134,-34.8386197728396,-34.8386107782008,-34.838601780227,-34.8385927989284,-34.8385883099467,-34.8385838243,-34.8385703440145,-34.8385613427056,-34.8385028392006,-34.8384938478968,-34.8384848532581,-34.8384308920956,-34.8383813999045,-34.8383319310589,-34.8382959725141,-34.8382555783485,-34.838228647793,-34.8381838080013,-34.8381703677365,-34.8381614131184,-34.8381479461731,-34.8381434738667,-34.8381389982251,-34.8381300202616,-34.8381255446201,-34.838121095659,-34.8381166266876,-34.8381121577161,-34.8381076854096,-34.838103206433,-34.8381032331135,-34.8380899996219,-34.8380900329725,-34.838090062988,-34.8380900963385,-34.8380901396942,-34.8380902030602,-34.8380857274187,-34.8380857574341,-34.8380812951328,-34.8380813351535,-34.8380835796443,-34.838108899369,-34.8381418597009,-34.8382265600496,-34.8382303786857,-34.8382136633985,-34.8381665791159,-34.8379844418498,-34.8379154129165,-34.8378677283243,-34.8378271774111,-34.8377129384952,-34.8375776087022,-34.837520535935,-34.837461979069,-34.837395594833,-34.8372475885023,-34.8371960419184,-34.8371419773693,-34.837065257803,-34.8369837691106,-34.8369537803112,-34.8369211868353,-34.8368806359222,-34.8368480991421,-34.8368112167876,-34.8367925771747,-34.8367677677131,-34.836736414877,-34.8366904745177,-34.8366419895128,-34.8366549928856,-34.8366473022527,-34.8366302868107,-34.8365776329891,-34.8365234350379,-34.8363652734699,-34.8363280342647,-34.8362800862033,-34.8362071852731,-34.8361558854831,-34.836100260129,-34.8360623038874,-34.8360126082581,-34.8359533376907,-34.8358973288055,-34.8358730429473,-34.8358274027429,-34.8358062685101,-34.8357735916578,-34.835743389415,-34.8357176861592,-34.8356706919231,-34.8356495310099,-34.835553818315,-34.8354635217468,-34.8354495345332,-34.8354202027394,-34.8353472484483,-34.8353146149517,-34.8352851097351,-34.835252379522,-34.8352181818854,-34.8351109665917,-34.835083329005,-34.8350367649907,-34.834999615832,-34.8349748363859,-34.8348290912214,-34.8346786302915,-34.8346645263511,-34.8346482946466,-34.8345727523542,-34.8345370406034,-34.8345230433847,-34.8345197083314,-34.8344236354508,-34.8343244476305,-34.834280561664,-34.8342685654773,-34.83421680545,-34.8341847655929,-34.8341452218658,-34.834074412014,-34.8340409947799,-34.8339659394052,-34.833923881048,-34.8339164005235,-34.8339209895568,-34.8338961534148,-34.8338357822799,-34.8337977826825,-34.8337474867436,-34.8336978044545,-34.8336884196146,-34.8336866487012,-34.8336819362709,-34.8335668602566,-34.8335220471453,-34.8334926086298,-34.8334827502122,-34.8334584943695,-34.8334448506665,-34.8334326577116,-34.8334165794196,-34.8333593098842,-34.8333067060884,-34.8332680594907,-34.8332356194272,-34.8332171332268,-34.8331722967701,-34.8331336034817,-34.8330172801574,-34.8329452863617,-34.832855083175,-34.8328319612504,-34.8327979570469,-34.8327283144637,-34.8326773348389,-34.8326386582257,-34.8326043038416,-34.8323680520005,-34.8323014910066,-34.832252649151,-34.8321947726359,-34.8321392006427,-34.8320633648656,-34.8320168842276,-34.8319979244496,-34.8319615290129,-34.8319147115346,-34.8318388857626,-34.8317491828338,-34.8317362861827,-34.8316826585256,-34.8316082634915,-34.8315806659254,-34.8315512540903,-34.8315203414812,-34.8314831456317,-34.831419599526,-34.8313795288605,-34.8313454512858,-34.8312571557496,-34.8311763340677,-34.8311320245495,-34.8310716200641,-34.8310136501675,-34.8309757172712,-34.8309332286921,-34.8308533608355,-34.8308269338731,-34.8308028214377,-34.8307741799999,-34.8307493305178,-34.8306624690544,-34.8305634279764,-34.8304736149909,-34.8304284917197,-34.8304040291037,-34.8303516320812,-34.8302924715706,-34.830182698291,-34.8301555176066,-34.8301566715351,-34.8301304446758,-34.8300546489194,-34.830042679413,-34.8300175731318,-34.8300145682487,-34.8300006877569,-34.8299579390436,-34.8299249553664,-34.8298334948646,-34.8298086753978,-34.8297590631449,-34.8297204765781,-34.8296630769757,-34.8295049054026,-34.8294507041162,-34.8293360416485,-34.8291965630492,-34.8291344676917,-34.8290383047647,-34.8289949290614,-34.8289701629555,-34.8289330871679,-34.828815279745,-34.8287179395441,-34.8286680538168,-34.8285923581119,-34.8285629329366,-34.8285397243006,-34.8283383637872,-34.8282888449157,-34.8282749577538,-34.8281988251569,-34.828153721896,-34.8281202813165,-34.8281054770149,-34.8280712927185,-34.8280464399013,-34.8280123156358,-34.8279766839263,-34.8278928773718,-34.8277732256643,-34.8276829757868,-34.8276798074862,-34.827661151198,-34.8276269468913,-34.8276159912412,-34.8275801694336,-34.8275785686081,-34.8275722853676,-34.8275906981969,-34.8276169017107,-34.8276307155015,-34.8276197431762,-34.8276026176774,-34.8275809098155,-34.8275147290177,-34.8274645648134,-34.8274637660681,-34.8269850458465,-34.8267454923026,-34.8263398295107,-34.8260094101575,-34.8258128519902,-34.8254029099305,-34.8238016741003,-34.821818330681,-34.8216366131989,-34.8197981572953,-34.8197495643236,-34.8189018670827,-34.8186383675499,-34.8177911984179,-34.8163720187128,-34.8161783910817,-34.8154354350844,-34.8152137722166,-34.814945663755,-34.8142416304078,-34.8139820439822,-34.8138820783109,-34.8138257224642,-34.8136723666762,-34.8128739027913,-34.8128168155944,-34.8121750258077,-34.8119537304793,-34.8134359282199,-34.814008089965,-34.8141567533012,-34.8146138290268,-34.8148009922184,-34.8148685937489,-34.8149552784544,-34.8151158653361,-34.8164683921391,-34.8177747125087,-34.8180975189577,-34.8182244643306,-34.8184629874697,-34.818490257473,-34.8189794138039,-34.8192228036344,-34.8192543089077,-34.8193545603881,-34.8194780709742,-34.8200549931424,-34.8201440544389,-34.8206623017123,-34.8207657350555,-34.8208331940836,-34.8209321855822,-34.8213964070473,-34.8214426108043,-34.8216263496234,-34.8220938045944,-34.8221292249088,-34.822462039763,-34.8231638384855,-34.8236957528073,-34.8237543763743,-34.82364419235]}]],[[{&#34;lng&#34;:[-56.1509095070067,-56.1509405467087,-56.1512990254814,-56.1516110423196,-56.1517073454109,-56.1519564454457,-56.1520160371937,-56.152097876172,-56.1523483386232,-56.152491795734,-56.1525837367924,-56.1526453051394,-56.1527287169663,-56.1553150639153,-56.1555580686506,-56.1557902042804,-56.1558177568642,-56.155884543298,-56.1559491442601,-56.156479060885,-56.1567593621101,-56.1563291070297,-56.156216848288,-56.1549704461871,-56.1539281586527,-56.1536260328387,-56.1521454626041,-56.1512842751344,-56.1500458097594,-56.1493215028825,-56.149072781277,-56.1488123969902,-56.1481778343537,-56.1477873920567,-56.1472506431256,-56.1462188561015,-56.1451489569346,-56.1450511670622,-56.144242249711,-56.1438364207519,-56.1430975988293,-56.1430136753319,-56.1418044520255,-56.141380086598,-56.1410729260473,-56.140623537119,-56.1392596677534,-56.1390912675397,-56.1375642260206,-56.136497705989,-56.1358313423282,-56.1337679982088,-56.1336730983217,-56.1334638346867,-56.1334190982722,-56.1330281949717,-56.1321935646264,-56.1319841982575,-56.1318348612406,-56.131839142349,-56.1305533710264,-56.1305224542787,-56.1303876859592,-56.1303866694474,-56.1304336966511,-56.1301470044819,-56.1298216567617,-56.1297487169541,-56.1290401922487,-56.1289421691167,-56.1289265552307,-56.1289193646156,-56.1289053764244,-56.1289421290504,-56.1289640572105,-56.1289603017068,-56.1286370380021,-56.1285152535127,-56.1280757959278,-56.1277111531603,-56.1275484304003,-56.1274897403506,-56.1268704961171,-56.1266193996657,-56.126525547803,-56.1264468638495,-56.1264384416508,-56.1263447359642,-56.126268785834,-56.1262574388558,-56.1283875300304,-56.1285072848495,-56.1282848508837,-56.1281083660583,-56.1274651476675,-56.1271501252024,-56.1270644211228,-56.1270363616882,-56.1269553778857,-56.1268867196977,-56.1267526507429,-56.1263853425093,-56.1263476320236,-56.1274519509172,-56.1282440772872,-56.1289337984216,-56.1289740258346,-56.1290486458915,-56.1291452074507,-56.1295164522444,-56.1307303491841,-56.1308038895421,-56.1317600069634,-56.131961623602,-56.1321506830111,-56.1321505334339,-56.132301006048,-56.1324188737586,-56.1328233450436,-56.1329467302625,-56.1330432465243,-56.133227389403,-56.1332700947606,-56.133303031747,-56.1333071872235,-56.1335135903375,-56.1338210589069,-56.134303314285,-56.1343672037433,-56.1346990469534,-56.1349154805425,-56.1358768572299,-56.1369554048194,-56.1369681786237,-56.1382553591223,-56.1395107365526,-56.1399451005652,-56.1407130532847,-56.1407525669963,-56.1407622986819,-56.1407716068156,-56.1410233025351,-56.1411151076245,-56.1414798987666,-56.1415621111656,-56.1422244360769,-56.1430488979396,-56.1435045562676,-56.1438752274322,-56.1446001479589,-56.144867679265,-56.1451932138182,-56.1460035117095,-56.1468521093531,-56.1473695261982,-56.1479374124049,-56.1484136146613,-56.1492834132387,-56.1499043968291,-56.1505106895098,-56.1517372654197,-56.1517875746988,-56.1527104473145,-56.1527817671367,-56.1529698744411,-56.1530772569408,-56.1531676816076,-56.1534047938633,-56.1536416769246,-56.1537002677903,-56.1541922315085,-56.1543346249445,-56.1543870086267,-56.1545151647201,-56.1545998499177,-56.1546122472396,-56.1534997340343,-56.153262452141,-56.150999584979,-56.1506088434636,-56.1504347436759,-56.149981343179,-56.1493907752747,-56.1492614352374,-56.1489669933862,-56.1482027825965,-56.148393515783,-56.1486081216402,-56.1487885580292,-56.1481536472561,-56.1480922189093,-56.1475253732391,-56.1477014273681,-56.1478628724803,-56.1479544750193,-56.149127941213,-56.1492973931825,-56.1496103306694,-56.149753013207,-56.1499613895551,-56.1501658791703,-56.1505022785053,-56.1509095070067],&#34;lat&#34;:[-34.8233799183186,-34.8234101953855,-34.823414510477,-34.823436215553,-34.8234458867976,-34.8234709023223,-34.8233852413614,-34.8233950862459,-34.8234252154684,-34.8234315946693,-34.8234543766882,-34.8234607850609,-34.8234583762175,-34.823677089849,-34.822726267768,-34.8217642439013,-34.8216595956156,-34.821405930903,-34.8211605653462,-34.8196538749741,-34.8188959841104,-34.8188515374475,-34.8188394564947,-34.8186797125737,-34.818542655223,-34.8184938433828,-34.8182497108108,-34.8181301958405,-34.8179575334608,-34.8179052665053,-34.8178878641972,-34.8178569615933,-34.8177651862663,-34.8177221566386,-34.8176524578543,-34.81756144919,-34.8177183004783,-34.8177249398137,-34.8176400495327,-34.8175493029258,-34.8174744247982,-34.8174612066688,-34.817298988198,-34.8172784866029,-34.8172150419683,-34.8171244905059,-34.8169277056856,-34.8169034070706,-34.8166541479382,-34.8165079792219,-34.8164149312347,-34.8161223870288,-34.8161091285806,-34.8160798921153,-34.8160736418897,-34.8160194902906,-34.8159001182983,-34.8158697167203,-34.8158475319457,-34.815851020195,-34.8152146384417,-34.8152004943485,-34.8155176826412,-34.8156144203888,-34.8156413993501,-34.8164484865529,-34.8172615490485,-34.8173265763185,-34.8182870159151,-34.8184410957893,-34.8185144245818,-34.8185481944193,-34.8189402205009,-34.8191510003145,-34.8198948420234,-34.8199578628006,-34.8199242007449,-34.819910936047,-34.8198630695278,-34.8207988168686,-34.8212028292982,-34.8213288921567,-34.822748389284,-34.8240314512287,-34.8245110079454,-34.8247756668745,-34.824811241167,-34.825207039812,-34.8255513228694,-34.8256027586242,-34.8258156727709,-34.8258312475668,-34.8272973678162,-34.827276999748,-34.8271587687732,-34.8271008622427,-34.8270803284608,-34.8271280964895,-34.8272587999393,-34.8273820176812,-34.8276108034221,-34.8281812739441,-34.8282650186353,-34.8284506952704,-34.8285435727761,-34.8286046344431,-34.8286066154648,-34.8286101667894,-34.8286162504338,-34.8286380483422,-34.8287470949282,-34.8287577900961,-34.8288646707978,-34.8288846010734,-34.8288992384809,-34.8289008695475,-34.8289798708002,-34.829042150258,-34.8290836940653,-34.8291044892525,-34.8291133777083,-34.8291298919986,-34.8291372924818,-34.8291430020931,-34.8291432088664,-34.8291791907565,-34.8292230100219,-34.8292692638762,-34.8292630268688,-34.829282021756,-34.8293157376079,-34.8294262503741,-34.8295268613553,-34.8295000195495,-34.8296417459747,-34.8297783197427,-34.8298268414332,-34.8299241282732,-34.8295220275662,-34.829346583752,-34.8290090696874,-34.8290320465201,-34.8287543321009,-34.8292149391929,-34.829300096444,-34.8301140662291,-34.831126294928,-34.8316871041516,-34.8321433094284,-34.8330335418773,-34.8330623734132,-34.8330950769459,-34.8331787034075,-34.8332712444667,-34.8333240416955,-34.8333863638366,-34.8334386207869,-34.833535600802,-34.8336016481976,-34.8336677289438,-34.8337953414235,-34.8337276098259,-34.8328464153714,-34.8327911996176,-34.8325979939208,-34.8324962460775,-34.8324037343889,-34.8321777686459,-34.8319546802652,-34.8318985732116,-34.8314274602466,-34.8304986612412,-34.8301650091683,-34.8293579329384,-34.8288242634905,-34.8286664433773,-34.8285502407766,-34.8285254551996,-34.8283783710867,-34.828340228082,-34.8283169060542,-34.8282561713985,-34.8281690564711,-34.8281535084526,-34.8281181168669,-34.8280262594937,-34.827080414996,-34.8258483696335,-34.8247527245813,-34.8247091020841,-34.8247048865767,-34.8246657330509,-34.8232095353859,-34.8231464116383,-34.8231201543593,-34.8231983039975,-34.8232042428706,-34.8232339553925,-34.8233156491845,-34.8233120549245,-34.8233263457672,-34.8233498544186,-34.8233799183186]}]],[[{&#34;lng&#34;:[-56.0948474452023,-56.0949007251342,-56.0954451405316,-56.0956798535142,-56.0956891202551,-56.0958692305434,-56.0961015675165,-56.0966608937402,-56.0971049553768,-56.0972428361623,-56.0973484068594,-56.0971188787873,-56.0972847916968,-56.0977863112589,-56.098400709732,-56.0987651021445,-56.0990605148009,-56.0995143914795,-56.0999830006857,-56.0998343472218,-56.0993102508622,-56.0990699390684,-56.0985775549284,-56.0983476626535,-56.0984150839052,-56.098733215222,-56.099039371798,-56.0990356007265,-56.0988352491633,-56.0985123667271,-56.0981594563556,-56.0978618521291,-56.0978848490416,-56.0980586299097,-56.0982319756319,-56.0983135552067,-56.0981990363623,-56.0979664989175,-56.0977886684968,-56.0980519540444,-56.0984269935704,-56.098550120581,-56.0984337420954,-56.0975453960009,-56.0972963983669,-56.0971105060456,-56.0967697491886,-56.0962737099936,-56.0957807835852,-56.0952967131745,-56.0951165192745,-56.0950624739424,-56.0949407465037,-56.0948734434172,-56.0945754926346,-56.0942358800278,-56.0939984906352,-56.0934974202672,-56.093302957248,-56.093268724086,-56.09313000177,-56.0928989753288,-56.0928392372023,-56.0928521422394,-56.0923215622954,-56.0918388483763,-56.0911668467289,-56.0908317295127,-56.0906491276462,-56.0901143223369,-56.0897347187576,-56.0892429776583,-56.0891048409519,-56.0891361802442,-56.0890118072512,-56.0887589198236,-56.0885687405771,-56.0884000225305,-56.0880225848157,-56.0882376587876,-56.0887369895641,-56.0887717647764,-56.0897647639833,-56.0913504686964,-56.0916202174816,-56.0971658215297,-56.1008193657559,-56.1019242822563,-56.1064611335719,-56.1064704992007,-56.1070732310343,-56.1084355536189,-56.1087939651276,-56.1094199904411,-56.110903772787,-56.110544882026,-56.1102777821024,-56.1102440835799,-56.1101738610328,-56.1100264176792,-56.1098033804489,-56.1093512098734,-56.1091701410911,-56.1089768712297,-56.1086204074487,-56.1083569457956,-56.1079425563844,-56.1075620173117,-56.1074246122783,-56.1065363769234,-56.1065237420024,-56.107472420337,-56.1077891939012,-56.1083916994424,-56.1088967911412,-56.1090035117604,-56.1093598131148,-56.1098175005026,-56.1099971845762,-56.1105119438891,-56.110862620383,-56.1109564824026,-56.1110007979505,-56.1138286788765,-56.1174963184997,-56.1178073388063,-56.1178661438823,-56.118530126315,-56.1201062658372,-56.120258477639,-56.1206842170877,-56.1221324175659,-56.1227936066443,-56.1229851483037,-56.1232155856523,-56.1234585255296,-56.1237492993997,-56.1241813942945,-56.1246438400609,-56.124937052827,-56.1250856471649,-56.1251509123095,-56.1263212644043,-56.1273983332096,-56.1274322240213,-56.1293205845638,-56.136096150902,-56.1362068340459,-56.1364390323961,-56.1439315731578,-56.1433034192027,-56.1432460162652,-56.1427829707942,-56.1431280420896,-56.1446177670456,-56.1475142008106,-56.1475986777108,-56.1480273393263,-56.1484315311149,-56.1487001847588,-56.1489688953858,-56.1489776322062,-56.1491156167017,-56.1494005936009,-56.1494854474329,-56.1497241138526,-56.1521075263728,-56.1525603089104,-56.1538187196216,-56.1552192118279,-56.1557076414564,-56.155820812113,-56.1604661020779,-56.1606364830267,-56.1610171584451,-56.1644974378338,-56.1675957383687,-56.167687689795,-56.1678896328169,-56.1685391055586,-56.1685993803386,-56.1694070234903,-56.169563114487,-56.1696246103812,-56.1697341120847,-56.1700006993399,-56.1706707687627,-56.1709392916958,-56.1711652322253,-56.1719279665217,-56.1721029466285,-56.1735266351039,-56.1744132926006,-56.1746959162015,-56.1755678621349,-56.1756097167326,-56.1774731036307,-56.1776546713286,-56.1797007635779,-56.1813172236905,-56.1817350425673,-56.1819353794668,-56.1822721538472,-56.18268562378,-56.1829308223185,-56.1834208258592,-56.1834216277311,-56.1834707774539,-56.1835035902096,-56.183576687491,-56.183755390903,-56.1838431499125,-56.1838939183868,-56.1840347439308,-56.1841245656708,-56.1842005363092,-56.1844504768766,-56.1844775026895,-56.1845129974534,-56.184693738166,-56.1847227691797,-56.1847712796144,-56.184803696541,-56.1849297511339,-56.1849864503752,-56.1849928955741,-56.1850074332799,-56.1850695246771,-56.1851164026032,-56.1852005760136,-56.1852417211915,-56.1852736270212,-56.185390378066,-56.1854591958488,-56.185473092599,-56.1854926710295,-56.1854812169973,-56.185482380514,-56.1854692533273,-56.1854497755738,-56.185434635474,-56.1853872925164,-56.1853665945503,-56.1853434959711,-56.1852948356674,-56.1852647893384,-56.1852510259903,-56.1852039733907,-56.1851551327857,-56.1851452868746,-56.1851567092237,-56.1851656600899,-56.1853788671295,-56.1854422514851,-56.1854550412061,-56.1854449557965,-56.1854360111835,-56.1853964747519,-56.1853370113768,-56.1853433142107,-56.1853337315603,-56.1853726362078,-56.1853699098017,-56.1853509437704,-56.1853565153938,-56.1853346263968,-56.1853079663976,-56.1852934126418,-56.1852596625277,-56.1852595155769,-56.1852673458652,-56.185300274514,-56.1853373304997,-56.1854367767867,-56.1855459325603,-56.1857283682095,-56.1857619951351,-56.1859575582837,-56.1860055760685,-56.1860451555432,-56.186079280955,-56.1860990278057,-56.1861445598294,-56.186176919122,-56.1862128597409,-56.1862547404023,-56.1863699790005,-56.1864400555452,-56.1864851721585,-56.1865219968834,-56.1865753938444,-56.186631784489,-56.186695455555,-56.1867245344058,-56.1867445734384,-56.1867697247429,-56.1867972628798,-56.1868247901207,-56.1868596475246,-56.1869064184425,-56.1869417311333,-56.1869760501085,-56.1869941423298,-56.1870373096964,-56.1870732868445,-56.1870959971375,-56.1871150563809,-56.1871226340389,-56.1871352396285,-56.1871949647271,-56.1872237093887,-56.1872681247666,-56.1872993143762,-56.1873678594011,-56.1873979743072,-56.187458064516,-56.1875151936795,-56.1875420749647,-56.1875682553937,-56.1875884341077,-56.1875862629098,-56.1876198470269,-56.1876305873316,-56.1876556395485,-56.1877023064544,-56.1877408960695,-56.1877585438168,-56.1878063303365,-56.1878289561198,-56.1878384008865,-56.1878369317434,-56.1878688007312,-56.1878613628849,-56.1878358628589,-56.1878213325527,-56.1878094000446,-56.1877534889182,-56.1876986740081,-56.1876136723841,-56.1875815692913,-56.1875542552047,-56.1875418619642,-56.1875405039462,-56.1875338056479,-56.1875120378071,-56.1874915021382,-56.1874934994183,-56.1874920387691,-56.1875295972796,-56.1875294001467,-56.1875543409781,-56.1876069385728,-56.1876572513433,-56.1877021209681,-56.1878107206736,-56.1878226290026,-56.1878188752437,-56.1877786772209,-56.1877612953921,-56.1877651333507,-56.1877693583003,-56.1877937640641,-56.1878257555108,-56.1878509713278,-56.1878446986136,-56.187849444655,-56.1878478275189,-56.1878294329803,-56.1876255562473,-56.1874783102567,-56.1874161800766,-56.1873804993053,-56.1873514809348,-56.187284244565,-56.1872326186514,-56.1872095748791,-56.1872103847695,-56.1871736218646,-56.1871058717353,-56.1870898502565,-56.18707647681,-56.1870895829051,-56.1870834470193,-56.1870578536118,-56.1870553185804,-56.1870335326443,-56.1870321380188,-56.187010274191,-56.18697327055,-56.1869630393621,-56.1869664974476,-56.1869496135057,-56.186931490774,-56.186842213794,-56.1868360471762,-56.1868257818822,-56.1868192550786,-56.1868037732922,-56.1867938309251,-56.1867845530152,-56.1867498883148,-56.186739262835,-56.186713848895,-56.1866885624167,-56.1866815369705,-56.1866884119224,-56.1867074235501,-56.1867429855883,-56.186750678983,-56.1867164284546,-56.1867068276699,-56.1866948360167,-56.1866359583603,-56.1866267177614,-56.1866188433879,-56.1866109690665,-56.1866024115802,-56.1865924878686,-56.1865784469294,-56.1865688648001,-56.1865616735914,-56.1865534390322,-56.1865434781138,-56.1865369699657,-56.1865239164629,-56.1865078075822,-56.1864627848837,-56.1864545503765,-56.1864439250009,-56.1864370753225,-56.1864254253039,-56.1863859977826,-56.1863712551795,-56.1863568541066,-56.1863472534261,-56.1863383359105,-56.1863308030673,-56.1863235933073,-56.1863105584599,-56.1863043732909,-56.1862995543473,-56.1862889289717,-56.1862806945167,-56.1862666350784,-56.186202218628,-56.1861717460375,-56.1861556558644,-56.1861436643675,-56.1861339212178,-56.186133154885,-56.1859364201948,-56.1859249532393,-56.1858729413112,-56.1858276255449,-56.1858093705053,-56.1857773934931,-56.185754582458,-56.1857205267697,-56.1857190012954,-56.185715890316,-56.1857158058975,-56.185675058112,-56.1856725424396,-56.1856339079314,-56.185626729125,-56.1856107063825,-56.1856159678459,-56.1856152642539,-56.1856133128309,-56.1856113075258,-56.1856093129555,-56.1856073076505,-56.1856042943256,-56.185601194602,-56.1855981920118,-56.1855961975457,-56.1855942137101,-56.1855922515523,-56.185589313683,-56.1855873406864,-56.1855853353813,-56.1855823112175,-56.1855802951778,-56.1855782790339,-56.1855762737288,-56.1855732711387,-56.1855702792832,-56.1855672982666,-56.1855652929616,-56.1855632876566,-56.1855612716169,-56.1855582690267,-56.1855552664365,-56.1855532287189,-56.1855502153941,-56.1855472020692,-56.18553656648,-56.1855338662332,-56.1855373344802,-56.1855496318639,-56.1855593034143,-56.1855515448297,-56.1855387976306,-56.1855335206383,-56.1855208074151,-56.1855003866753,-56.1854800845383,-56.1854798602559,-56.1854770934123,-56.1854757804435,-56.1854713712946,-56.1854702505083,-56.185466070019,-56.1854701045997,-56.185472088748,-56.185479428575,-56.1854832301189,-56.18548214977,-56.1854769896088,-56.1854680723016,-56.1854612306482,-56.1854552915436,-56.1854513105321,-56.1854364461995,-56.1854291009531,-56.1854620400239,-56.185537666318,-56.1855707582802,-56.1855942791605,-56.1855774352654,-56.1854939969216,-56.1855104783381,-56.1856523040855,-56.1857207697074,-56.1858384939625,-56.1858804313199,-56.1858158209153,-56.1857728763718,-56.1856846974582,-56.1855178227508,-56.1853395466426,-56.1852327582358,-56.1850216983451,-56.1847703276652,-56.1847038954877,-56.1846016719351,-56.1844827020376,-56.1842164605634,-56.1839289416575,-56.1838575123196,-56.1836956021517,-56.1836195120768,-56.1835508116462,-56.183490702313,-56.1834857214108,-56.1834685192059,-56.1836685978082,-56.1837228153529,-56.1837504529397,-56.1837002954055,-56.1836595564787,-56.1836943852741,-56.1837214217175,-56.1839110941198,-56.1840243810864,-56.1841425370225,-56.1842158056423,-56.1844220545101,-56.1845120769787,-56.1845736293478,-56.1848718210496,-56.1849971592313,-56.1851226743794,-56.1852102535045,-56.1853970548427,-56.1855035735271,-56.1855626583737,-56.1856354344479,-56.1856754747852,-56.1856584224492,-56.1855964119271,-56.1854677469255,-56.1853890146545,-56.1852842962736,-56.1852222705353,-56.1851840376927,-56.1851386050953,-56.1850953421585,-56.1850878933169,-56.1850236422643,-56.1848787723429,-56.1846723277491,-56.1846128983498,-56.1845390456788,-56.1844915486834,-56.1843440526159,-56.1842010171822,-56.1839489594812,-56.18380629403,-56.1836212016982,-56.1834597580209,-56.1834074410397,-56.1833126129677,-56.1832218615816,-56.1831669507627,-56.1830545582156,-56.1829647235523,-56.1829170919041,-56.1828383817279,-56.1827859459354,-56.1827294434623,-56.1827320652311,-56.1827786438362,-56.1828165066964,-56.1828599403462,-56.1830014320671,-56.1831889600301,-56.1834599852214,-56.1835373617931,-56.1837179044869,-56.1838763347351,-56.1841105098802,-56.1842073000057,-56.1842772619202,-56.1843280881326,-56.184381170717,-56.1845149603407,-56.1845615326926,-56.1845498716787,-56.1845370540266,-56.1844365744985,-56.1843607937497,-56.1842708131778,-56.1841853643179,-56.1841016594825,-56.1840410521841,-56.1839883014376,-56.1839652753958,-56.1840301140431,-56.1841245152282,-56.1842082527888,-56.1843361981485,-56.1844515609774,-56.1845159568963,-56.1845844855716,-56.1846890642972,-56.1847925570461,-56.1848864250396,-56.1850061953498,-56.1850533146505,-56.185086314586,-56.1851511292626,-56.1852076388227,-56.1852725914871,-56.1853420817,-56.1854033101521,-56.1854778350448,-56.1855383363511,-56.1855884908629,-56.1856787406361,-56.1857715650706,-56.1858437077973,-56.1859800518634,-56.1860621094951,-56.1861443088666,-56.1862184362627,-56.1862833574525,-56.186329294581,-56.1863634895078,-56.1864017288643,-56.1864496917249,-56.1864882660458,-56.1865281884056,-56.1865678014913,-56.1866027667634,-56.186643988387,-56.186647889722,-56.1866502225917,-56.1866270522047,-56.1865727569637,-56.1865270141542,-56.1864793564509,-56.1864724031774,-56.1864323449142,-56.1863813305839,-56.1863184134485,-56.1862514808046,-56.1861652984415,-56.1860603043975,-56.1859188049643,-56.1859083117402,-56.1858912320984,-56.1858659596898,-56.1858809213643,-56.1859117412172,-56.1859543509004,-56.1859308226204,-56.1858940470919,-56.1858689651982,-56.1858445278035,-56.1857899147423,-56.1857084631523,-56.1856031082973,-56.1854960877916,-56.1854068826195,-56.1853216344882,-56.1852571009983,-56.1851893621053,-56.1851273555436,-56.1850835271068,-56.1850386531308,-56.1849987911146,-56.1849550093686,-56.1849179802717,-56.1848830526753,-56.1848348052929,-56.1848537890417,-56.1848320146871,-56.1849042679916,-56.1849292085624,-56.184943268105,-56.1848548989891,-56.1848400592525,-56.1848137779903,-56.1847857772996,-56.1847535608931,-56.1848324163526,-56.184878347332,-56.1849311416427,-56.1849829919249,-56.1850450947863,-56.185098593627,-56.1851789604909,-56.185241989038,-56.1853058061168,-56.1853830384475,-56.1854562883076,-56.1855122129827,-56.1855432453411,-56.1855839357011,-56.1856834834988,-56.1857557007431,-56.1858405719092,-56.1859392847971,-56.1860250513208,-56.186086458094,-56.1862389822754,-56.1863571357102,-56.1864725328276,-56.1865805680233,-56.1867042154893,-56.186813933011,-56.1869271412391,-56.1869915332237,-56.1870470192091,-56.1871727593104,-56.1872870360355,-56.1874323655202,-56.187498099525,-56.187573142289,-56.1876176966991,-56.1876966763372,-56.1877493432385,-56.1877479828494,-56.1877591818021,-56.1879318343851,-56.1879187791626,-56.1879480668191,-56.1880441172922,-56.1881244372049,-56.1882120873562,-56.188286965035,-56.1883650479085,-56.1884465998628,-56.1884880464462,-56.1885442512658,-56.1886388482811,-56.188736279779,-56.188825478802,-56.1889119459995,-56.1890113695665,-56.1890936827467,-56.1891882508929,-56.1892873324084,-56.189367825379,-56.1894237898664,-56.1894886508168,-56.1895967634483,-56.1896650009317,-56.1897490013362,-56.1898258499274,-56.1899037227967,-56.1900037520927,-56.1900707168365,-56.1901144068686,-56.1901429601359,-56.1901447525186,-56.1901472517242,-56.190143442468,-56.1901650769587,-56.1901911918852,-56.1902590677239,-56.1903509386457,-56.1904672778115,-56.1905754598537,-56.1907074677252,-56.1908203544855,-56.190942820561,-56.1910587616048,-56.1911548228127,-56.1912176510481,-56.1912678077486,-56.1913097510465,-56.1913653705642,-56.1913629497324,-56.1913605188954,-56.1913229432667,-56.1912553584115,-56.1911949064015,-56.1912744457553,-56.1913731433228,-56.1914383415305,-56.1914960279476,-56.1915280311191,-56.1915341409367,-56.1915313736763,-56.1915305315753,-56.1914360591034,-56.1914151199712,-56.1914040638527,-56.1913983471544,-56.1913543152794,-56.1913030759373,-56.1912437115716,-56.1911363120162,-56.191019333354,-56.1909088426211,-56.190751405385,-56.1907447863464,-56.1907117816167,-56.1906774887226,-56.190598353744,-56.1905748710084,-56.1905504990641,-56.1905125838853,-56.190494322384,-56.1904711791985,-56.1904629972705,-56.1904543200872,-56.1904730947698,-56.1904887136581,-56.1905464186264,-56.1906016769162,-56.1906419310096,-56.1906584637026,-56.1906732513289,-56.1906841231858,-56.1906962365163,-56.1907428142877,-56.1907918889717,-56.1908058040648,-56.1908119764147,-56.190846710578,-56.190896491668,-56.1909348985588,-56.1909636554728,-56.1910012536131,-56.1910350193603,-56.1910612174547,-56.1911078281597,-56.1911226061977,-56.1911424885349,-56.1911496230477,-56.1911137566338,-56.1910345858034,-56.1909902391827,-56.1909112046726,-56.19084796831,-56.190776842045,-56.1907382688185,-56.1907005001735,-56.190669737225,-56.190659973648,-56.1906481577625,-56.1906199563433,-56.1905645929994,-56.1905450971115,-56.1905428257318,-56.1905306719638,-56.1904818359445,-56.1904802955667,-56.1905539402138,-56.1906378374401,-56.1906683796498,-56.1906927055286,-56.190721554365,-56.1907715568193,-56.1907971708624,-56.1908092195762,-56.1908254429431,-56.1908767539888,-56.1909308902416,-56.1909879296583,-56.1910498240788,-56.1911211833806,-56.1911718857791,-56.1912222284088,-56.1912975134852,-56.1913409312936,-56.1913190800243,-56.1912565202607,-56.1912139403845,-56.1911580778247,-56.1911271877272,-56.1911025212561,-56.191082307498,-56.1910423473062,-56.1909957386856,-56.191032980809,-56.1910585748418,-56.1910992537376,-56.1911367897626,-56.1912198188328,-56.191250840248,-56.1912847047961,-56.1913043336693,-56.1913349944818,-56.1913263579444,-56.1913589768501,-56.1912543011996,-56.1911601714044,-56.1910888400337,-56.1910119712238,-56.1909353496247,-56.1908579888945,-56.1908007335331,-56.1907462470997,-56.1907239647748,-56.1907070698117,-56.1907162526725,-56.1907618893335,-56.1908000340057,-56.1907754588316,-56.190745421674,-56.1907350696686,-56.1907329438275,-56.1907319432645,-56.1907065324512,-56.1906823556076,-56.1907127637899,-56.1907506445759,-56.1908135409716,-56.1908188578803,-56.1908341853684,-56.1908462515913,-56.1907782431843,-56.1906972995646,-56.1906146823734,-56.1905484953224,-56.1903471179253,-56.1902220015245,-56.1900744518877,-56.1899723014978,-56.1898827440608,-56.1897540383089,-56.1896425662366,-56.189535549587,-56.1894423104596,-56.1893862788543,-56.1893752260708,-56.1893931747023,-56.1894255090863,-56.1894588792128,-56.1894949601123,-56.1894932154626,-56.1894219311995,-56.1893659177286,-56.1892747813522,-56.1890739536135,-56.1890323907201,-56.1888602190101,-56.1887555508634,-56.1885725947374,-56.1884546692327,-56.1883357106953,-56.1883063050092,-56.1882475970236,-56.1882738282601,-56.1882788368848,-56.1882708231686,-56.1883372178267,-56.1883672877095,-56.1883539063292,-56.1883343761528,-56.1883699646109,-56.1883619535002,-56.1883846671934,-56.1884007993673,-56.1884160749537,-56.1883674065208,-56.1882460046399,-56.1882053992195,-56.1882317937693,-56.1882150451316,-56.188217151322,-56.1882423502552,-56.1882857487828,-56.1883026535427,-56.1883260557159,-56.1883737451022,-56.1884331427143,-56.188475102479,-56.188566554539,-56.1886803335302,-56.1887891472524,-56.1889446569319,-56.1890309568557,-56.189182131487,-56.1892673087484,-56.1893120976805,-56.1893680434082,-56.1893876260074,-56.189409333244,-56.1894140337932,-56.1894266475902,-56.1894429951877,-56.1894773872996,-56.1895340552747,-56.1895610842142,-56.1895560678772,-56.1896475352576,-56.1897537710878,-56.1898575325169,-56.1899538884601,-56.1900625897285,-56.1901709447766,-56.1903115051839,-56.1904229528686,-56.1905283309648,-56.1906630777488,-56.1907417030896,-56.1907959381433,-56.190877116259,-56.1909005520954,-56.1909790013037,-56.1910639109271,-56.1911347282827,-56.1912095714646,-56.1913126713025,-56.1913945251833,-56.1914778231422,-56.1916023569508,-56.1916916650926,-56.1918160909289,-56.191972547034,-56.1921299336189,-56.1922873010273,-56.192365889891,-56.1924212592797,-56.1924613578762,-56.1925534883069,-56.1926562183708,-56.1928293626657,-56.192960140111,-56.1931119300596,-56.1932534034377,-56.1934119814705,-56.193506042897,-56.1936409216241,-56.1937477158673,-56.1938462200017,-56.1939042036554,-56.193912920651,-56.1939358045361,-56.1938979400084,-56.1938108413394,-56.1937113550318,-56.1936205673769,-56.1934920773613,-56.1933189118054,-56.1931900149133,-56.1930610379799,-56.1929445441511,-56.1928300280089,-56.1926638681493,-56.1925506931154,-56.1923851748367,-56.1922671477171,-56.1921848390184,-56.1921162140434,-56.1920070098073,-56.1919789053131,-56.1919758158031,-56.1919988243359,-56.1920440109731,-56.1920844434919,-56.1920970966841,-56.192069033878,-56.192013077103,-56.191964243585,-56.1918894741912,-56.1918157124003,-56.1917104451947,-56.1916081566085,-56.1915734766398,-56.1915768066906,-56.191544652191,-56.191461587269,-56.1914069624309,-56.1913544803645,-56.1912372061332,-56.1911555144194,-56.1911114629509,-56.1910330508451,-56.190896537525,-56.1908374074468,-56.1907887902903,-56.1907554222483,-56.1906323775409,-56.1905497190785,-56.1903940750589,-56.1902624380037,-56.190187047873,-56.1899816152595,-56.1898679049495,-56.1897520401951,-56.1896175108149,-56.189444819045,-56.1893067226168,-56.1891889879397,-56.1890724009378,-56.1888347600469,-56.1887554483105,-56.1887076006134,-56.1886389536479,-56.1884462767795,-56.1883776412783,-56.1883185794644,-56.188191378968,-56.1880304587899,-56.1879242381237,-56.1877861642071,-56.1877175040578,-56.1876965308976,-56.1875780064642,-56.1874456640843,-56.1872905218974,-56.187142265726,-56.1870645541898,-56.186958239595,-56.1868156750031,-56.1866593124359,-56.1865489120621,-56.1863955029451,-56.1863059904791,-56.1862305203072,-56.1861108183655,-56.1859971298376,-56.1858825858685,-56.1857588071368,-56.1855931425327,-56.1854751055121,-56.1853294564388,-56.1852207622575,-56.185103618927,-56.1849949247456,-56.1848323323509,-56.1847898248037,-56.1847884563896,-56.1846708605341,-56.1845723711989,-56.1844557172875,-56.1843492665548,-56.1842687944283,-56.1841991528874,-56.1841298527725,-56.1840557558088,-56.183982756703,-56.1838784656258,-56.1837571634838,-56.1836502337541,-56.1835371237537,-56.1834294382175,-56.1833207288199,-56.1832031448455,-56.1830893340671,-56.182984434551,-56.1828757805988,-56.1827412774821,-56.1826303811233,-56.1825146326789,-56.1823944106773,-56.1822725365737,-56.1821274154811,-56.1820068703962,-56.1818897383215,-56.1817679196632,-56.1817116239634,-56.1816546704243,-56.1815439391507,-56.1814643418503,-56.1813854636708,-56.1813130709194,-56.1812482053832,-56.1811826753377,-56.1811345780327,-56.1810809441223,-56.1809758090682,-56.1809264940518,-56.1808809910014,-56.180825993888,-56.1807891186204,-56.1806769699492,-56.180612527131,-56.1804660224081,-56.1803427830171,-56.1802336825845,-56.1801074766636,-56.1799776430384,-56.1798522642107,-56.1797143097307,-56.1795896887938,-56.1794586170301,-56.179350018523,-56.1792259878906,-56.179122076801,-56.1790069757738,-56.1788866995776,-56.1788184835635,-56.1787502500404,-56.1786724048937,-56.1786122913916,-56.1785545299359,-56.1784869976077,-56.1784031360248,-56.1783151606537,-56.1782571499027,-56.1781750467267,-56.178160348313,-56.1782064245757,-56.178272621215,-56.1783204033575,-56.1783643952119,-56.1784049844781,-56.1784494549127,-56.1785777210628,-56.1786826318346,-56.1787646007748,-56.1787686386906,-56.1787344844097,-56.1786812344473,-56.1786269422808,-56.1785747161798,-56.1784951843298,-56.1784341019948,-56.1783767390779,-56.1783401960651,-56.1783152040094,-56.1783023515477,-56.1782832450273,-56.1782680138389,-56.1782545777429,-56.1782647313127,-56.1782644778486,-56.1782641143278,-56.1782915701541,-56.1783579102007,-56.1784123691199,-56.1784686731573,-56.178524099242,-56.1786028323467,-56.1786569744358,-56.1786852123321,-56.1787215710833,-56.178815448665,-56.1788393484908,-56.1788556952545,-56.1788889790865,-56.1789969105829,-56.1790483421075,-56.179097945189,-56.1791704934374,-56.1792792203439,-56.1793416241939,-56.179387255227,-56.1794201997173,-56.1794462531537,-56.1794969901534,-56.1795701387113,-56.1796000207889,-56.1796054060663,-56.1795846895489,-56.1795766495691,-56.1795788773847,-56.1795616418293,-56.1795539320198,-56.1795313878932,-56.1794972961445,-56.1794817206118,-56.1794354492485,-56.1794026965238,-56.1793847189189,-56.1793675967552,-56.1793518211194,-56.1793360679951,-56.1793226944313,-56.1793258210438,-56.1792911056402,-56.1791805677996,-56.1790735817909,-56.1789643004317,-56.1788101359251,-56.1787455426127,-56.1786699919826,-56.1785823817998,-56.1784978640452,-56.1784222058596,-56.1783320018391,-56.1782787143574,-56.1782159136361,-56.1781940882135,-56.1781726038001,-56.1781225229722,-56.1780619158822,-56.1779962253372,-56.1779247509761,-56.177823564625,-56.1777864729959,-56.1777155497523,-56.1776490479557,-56.1775828688254,-56.1775167255469,-56.1774769717115,-56.1774228471314,-56.1774095002481,-56.1773718850156,-56.1773349701444,-56.1773007675052,-56.1772050581454,-56.1771063138871,-56.1770841107698,-56.1770677106451,-56.1770465138801,-56.1770177898997,-56.177003419155,-56.1769870190304,-56.1769362486802,-56.1768847529558,-56.1767917566619,-56.1766991914237,-56.176654354967,-56.1766457680385,-56.1766378639622,-56.1766193077256,-56.1766068221198,-56.1766115287138,-56.1766176176873,-56.1766223242813,-56.1766242994666,-56.1766245329204,-56.1766237600218,-56.1766223226138,-56.1766205441966,-56.1766170407231,-56.1766128727403,-56.1766073223778,-56.1766018070334,-56.1765935619478,-56.1765842930009,-56.176571610627,-56.1765643894028,-56.1765615862905,-56.1765642093099,-56.1766025749294,-56.1766333266222,-56.1766469728265,-56.1766606648879,-56.176695001763,-56.1767085337417,-56.1767255716953,-56.17681869222,-56.1769117793941,-56.1769909360505,-56.1770010987917,-56.177021653559,-56.1770799127714,-56.1771137252094,-56.1771066573976,-56.17704783873,-56.1769544105467,-56.176861004875,-56.1767711051781,-56.1766845855577,-56.1766292953765,-56.1765389904706,-56.1764202567366,-56.1763728748005,-56.176336270923,-56.1762982388088,-56.1762715292007,-56.1762457200569,-56.176182241486,-56.1761427261069,-56.176025563183,-56.1759573788519,-56.1759193417352,-56.1759140356654,-56.1759223557897,-56.1759485451295,-56.1759685162625,-56.1759571095464,-56.175927726893,-56.1758690699755,-56.1757786908646,-56.1757030085,-56.1755277322722,-56.1754486123014,-56.1753968872921,-56.1753752244534,-56.1753661531084,-56.1753699325575,-56.1753726481247,-56.175390313902,-56.1754329667325,-56.1754362692691,-56.1754309623655,-56.1754016030575,-56.1753448612943,-56.175247822082,-56.1750055037789,-56.1748904611152,-56.1748114270219,-56.1747280498555,-56.1745953680948,-56.1745970214475,-56.1745986197718,-56.1746344199015,-56.1746326022974,-56.1746084881945,-56.1745723945801,-56.1745397844289,-56.174424939367,-56.1742288373989,-56.1740554162945,-56.1740193627008,-56.173994758345,-56.1739936669488,-56.1737979560157,-56.173734864311,-56.1736528945371,-56.1734782644759,-56.1733826826819,-56.1732343036591,-56.1731331548273,-56.173037380434,-56.172978690166,-56.1728579528987,-56.1727401538133,-56.1726144940074,-56.172505262674,-56.1723744335354,-56.1722860262748,-56.1722831214434,-56.172168007076,-56.17215903078,-56.1720945608645,-56.1720584739202,-56.1719844757575,-56.1718341882504,-56.1717764317972,-56.1717810458435,-56.1717873607669,-56.1717859352752,-56.1716392310393,-56.1715664268256,-56.1714945731022,-56.1714621196984,-56.1714221941078,-56.1713704590934,-56.1713215171861,-56.171318192138,-56.1713148670898,-56.1713121706992,-56.1713092058368,-56.1713069596784,-56.1713034995606,-56.1713110651291,-56.1713023823178,-56.1713013032464,-56.1712963041831,-56.1712905528837,-56.1712877247585,-56.1712846181564,-56.171281248085,-56.1712782832226,-56.1712746413444,-56.1712709977987,-56.1712680296012,-56.1712650664063,-56.1713016252607,-56.1713384692621,-56.1713690933891,-56.171381099581,-56.1713848681912,-56.171386172197,-56.1713712828516,-56.1714336083277,-56.171479080112,-56.171678969867,-56.1716166477258,-56.1715512223176,-56.1714885449933,-56.1714541439185,-56.1713921302698,-56.1713748546936,-56.1712060759835,-56.1711597270802,-56.1711251892681,-56.1710872096811,-56.1710131314771,-56.1709268970037,-56.1708185061038,-56.1708475010572,-56.1708317912886,-56.1707796960885,-56.1707937618407,-56.1705359503826,-56.1704121098482,-56.1701916494844,-56.1701725446316,-56.170161872461,-56.1701993434524,-56.1702419187429,-56.1703119098391,-56.1703386736419,-56.1703595477405,-56.1703473481155,-56.1703081662418,-56.1702056483707,-56.1700441133963,-56.1699579989849,-56.1698689297163,-56.1697877845343,-56.1697069745252,-56.1696634654197,-56.1696014334282,-56.1694825504506,-56.1693796357082,-56.1692809681561,-56.1691997395978,-56.1691396869604,-56.1690730275825,-56.1690040319997,-56.1689411462346,-56.1689049142155,-56.1688859744477,-56.1687961814726,-56.1687616519981,-56.1687983659325,-56.1688053545367,-56.1688552669444,-56.1689358301596,-56.1689476662638,-56.1689279744416,-56.1689036035395,-56.1688630909795,-56.1688575848065,-56.1688045774692,-56.1688089663994,-56.1688189982397,-56.1687963548953,-56.1687623506918,-56.1687098119296,-56.1686475948426,-56.1686557223675,-56.1686334608867,-56.1686300207792,-56.1686013276481,-56.1685773602875,-56.1685595877885,-56.1684922497272,-56.1683809956839,-56.1682680891218,-56.1681741173248,-56.1681661215345,-56.1680949581671,-56.1680093173332,-56.1679342002601,-56.1678307235612,-56.1678408254377,-56.1677992106425,-56.1678040814879,-56.1677762387953,-56.1677657167022,-56.1679310719801,-56.1679073697563,-56.1678767439618,-56.1678705924559,-56.1679358010857,-56.1679725867237,-56.1671742983593,-56.1667492291402,-56.1658856187542,-56.1658397621723,-56.1658200489076,-56.1657850106595,-56.1659196687754,-56.1660352634235,-56.1662421860708,-56.1663946762351,-56.1665811577819,-56.1669172991515,-56.1670504906147,-56.1671856594106,-56.1669903343624,-56.1669332025668,-56.1668453180124,-56.1667899812814,-56.1665115651755,-56.1658382228093,-56.1634809298297,-56.1621719196986,-56.1612620216369,-56.1590992759346,-56.1587788383486,-56.1557181942738,-56.1554740391783,-56.1550695891248,-56.1545897280537,-56.1541828977502,-56.1538875168263,-56.1535066565311,-56.1526960043016,-56.1523827873107,-56.1519916035666,-56.1517103207974,-56.1513990672528,-56.1508918072804,-56.1507669854209,-56.1501260096782,-56.1495003292081,-56.1492063862406,-56.1486613091863,-56.148216999116,-56.1478090709583,-56.1466069501885,-56.1454465386501,-56.1452663204778,-56.1443884655269,-56.1440564329509,-56.1424707541495,-56.1420766372579,-56.1417110670632,-56.141432546639,-56.1411460337974,-56.1407086765796,-56.1403843020003,-56.1400186127012,-56.1397229057578,-56.1393290320231,-56.1390469359918,-56.1386787148104,-56.138465030172,-56.1381803972581,-56.1379220160412,-56.1375233060598,-56.1373376801201,-56.137178788771,-56.1368404336002,-56.1365154456541,-56.1358536750119,-56.1352057075378,-56.1343722027637,-56.1340547711833,-56.1334537009063,-56.1331872169456,-56.13291903955,-56.1328241473797,-56.1326692451102,-56.1324421760115,-56.1321468289841,-56.1320365162596,-56.1318677196337,-56.1316969452079,-56.1311464638158,-56.1307657073319,-56.1303579213697,-56.1300776721262,-56.1298384827695,-56.1292347417816,-56.1288735747501,-56.1284931825083,-56.128196005628,-56.1278272624577,-56.1273790877883,-56.1268631774688,-56.1266072962215,-56.1263646562572,-56.1261424623202,-56.1258031210801,-56.1256061065633,-56.1254594906209,-56.1252741931278,-56.1249632796233,-56.1245614462783,-56.1244516224937,-56.1244504274867,-56.124639119831,-56.1245522272851,-56.1242499872708,-56.1240083295603,-56.1240884051049,-56.1241577731858,-56.1246409548431,-56.1246106239637,-56.1243995382199,-56.1244256019849,-56.1244930785018,-56.1244212122518,-56.1241371596412,-56.1240649261901,-56.1240063339645,-56.124032031235,-56.1241115635621,-56.124246883859,-56.1242021769796,-56.1241574698096,-56.1240162930188,-56.1238995930157,-56.1237701041351,-56.1235442667885,-56.1231627521036,-56.1230179072434,-56.1228852810772,-56.12277055488,-56.1227828056426,-56.1229679422684,-56.1230313524695,-56.1229581730273,-56.1230565946294,-56.1234448018581,-56.1235803698845,-56.1237415152763,-56.1242430225743,-56.1248260256449,-56.1250624694549,-56.1253406971808,-56.1254626349576,-56.1260731854605,-56.1262285098158,-56.1261971335962,-56.1260941752306,-56.1261498237983,-56.1264435110341,-56.126681672915,-56.1268206740692,-56.1269907513296,-56.1269032888602,-56.1268449396025,-56.1268821020647,-56.12689841595,-56.1271737348569,-56.1270853623788,-56.1268278303356,-56.1265807353798,-56.1264667085966,-56.1263250265786,-56.126044583728,-56.1257913079863,-56.1257004336919,-56.1256226951123,-56.1255881916371,-56.1254782139789,-56.1250853227296,-56.1245928966369,-56.1239469672411,-56.1237369375622,-56.1233899797161,-56.1230029872973,-56.1228992639027,-56.1224080557403,-56.1220431321387,-56.122004515345,-56.1219791888135,-56.1219104330302,-56.1218892092668,-56.1218762816856,-56.1218748746415,-56.1219025109384,-56.1218969042049,-56.1218741992159,-56.1218291410218,-56.1217092485086,-56.1216708693658,-56.1216063326441,-56.1215249306804,-56.1214548960441,-56.1214181490756,-56.1214062496054,-56.1213157829494,-56.1212495108531,-56.1211707674322,-56.1211139481356,-56.1210534795647,-56.1210045496833,-56.120932386032,-56.1208730592506,-56.120824309484,-56.1207875772069,-56.1207239910805,-56.1206591525599,-56.1206242347586,-56.1205841240624,-56.1205202770785,-56.1204839157824,-56.1204436039543,-56.1204055536113,-56.1203446486144,-56.1203084321859,-56.1202665426989,-56.1202397146601,-56.1201970663544,-56.1201271366008,-56.1201116019225,-56.1200998225142,-56.1200897973439,-56.1200825062162,-56.1201288975089,-56.1201429647637,-56.1202166860646,-56.1201695418255,-56.1201550265678,-56.1201352736158,-56.1201066115352,-56.1200790913214,-56.1200653604991,-56.1200451076296,-56.1200436535464,-56.1200467101042,-56.1200550496686,-56.1200620239689,-56.1200395960598,-56.1200237934788,-56.1200103528682,-56.1200139796202,-56.1200465395667,-56.1200393557593,-56.1200219867977,-56.1200204204695,-56.1200224250599,-56.1200398860861,-56.1200584555366,-56.1200719324265,-56.1200849402649,-56.1200818969787,-56.120064963529,-56.1200223213647,-56.1200169160296,-56.1200191440068,-56.1200264980953,-56.1200361025119,-56.1200409047248,-56.1200403797821,-56.1200285612024,-56.1200255066968,-56.1200457792961,-56.1201935804481,-56.1203390314398,-56.1205458885237,-56.1206992759977,-56.1207399614602,-56.12076516523,-56.1206235819565,-56.1205658207912,-56.1205354691161,-56.1205301486542,-56.1204920866291,-56.1202124727529,-56.1200975611713,-56.1201474560641,-56.1200758227772,-56.1202207633156,-56.1201284450184,-56.1199333668899,-56.119789050008,-56.1198010496599,-56.119807420181,-56.1197253717858,-56.1197227789062,-56.1196499399234,-56.1195216939903,-56.1192495892003,-56.1189769143368,-56.1187092025229,-56.1184400569916,-56.1179472261874,-56.1171176413018,-56.1166396551454,-56.1159493257359,-56.115497058242,-56.1153831187029,-56.1153293754243,-56.1152888737413,-56.1152575731647,-56.1152296135788,-56.1151957938547,-56.1151619290296,-56.11512140793,-56.1150804603949,-56.1139637344798,-56.1132282436836,-56.1131700180811,-56.1131279806902,-56.113122075266,-56.1131049615799,-56.1130308133373,-56.1129567628616,-56.1128086689123,-56.1123311845816,-56.1117818292001,-56.1108654630238,-56.1105538610385,-56.1100708810209,-56.1096305686108,-56.1091214705925,-56.1087756005183,-56.1085634024113,-56.1080219379048,-56.1074026866501,-56.1067703257921,-56.1066626564098,-56.1064018212082,-56.1061996513645,-56.1060269649727,-56.105539287475,-56.1048401861566,-56.1048409558613,-56.1043147621045,-56.1040659347719,-56.1033825842767,-56.1030107846331,-56.1022791243016,-56.1017417803751,-56.1016008599165,-56.1012772810229,-56.1012477967426,-56.1011551256817,-56.1006452888072,-56.1004190618104,-56.1001270791567,-56.0995496815903,-56.0995755723809,-56.0996029193211,-56.0995864991048,-56.0996206723689,-56.0996667800802,-56.0997125336828,-56.0997194172802,-56.1000341799867,-56.0999175292365,-56.0994017538858,-56.0991064375634,-56.0981733264163,-56.0978933072633,-56.0974456527658,-56.0964585535924,-56.096172232008,-56.0958006756905,-56.0954118707303,-56.0952836159353,-56.0950316910008,-56.0942414575411,-56.0941767177163,-56.0941268248063,-56.0943201065325,-56.0941641909896,-56.0942029469891,-56.0939765839171,-56.0937062834335,-56.0934102290727,-56.0930843757259,-56.0932064515746,-56.0935123506558,-56.0935189434842,-56.0935889747749,-56.0938650811788,-56.0943656662483,-56.0948138607291,-56.0954593571769,-56.0958462291446,-56.095732351069,-56.0952549891749,-56.0952676152237,-56.0951245713839,-56.094954508072,-56.0948262341843,-56.0948474452023],&#34;lat&#34;:[-34.7639565764822,-34.7642114285427,-34.7644120995473,-34.76473769617,-34.765297036964,-34.765564279622,-34.7659090118892,-34.7660288249643,-34.7664369352014,-34.7666461488671,-34.767248372872,-34.7677324503253,-34.7679418718027,-34.7682231776235,-34.768435920323,-34.768438618319,-34.7685750833525,-34.7690418775568,-34.7692646028959,-34.7696073436552,-34.7698652922642,-34.7699305794762,-34.770218420767,-34.7705618425621,-34.7709805850462,-34.7712184717551,-34.7715750815044,-34.7719220387225,-34.7720765946718,-34.7723461135702,-34.772574823112,-34.772873338467,-34.7733361555653,-34.773567088851,-34.7736394477174,-34.7738713753158,-34.7740902841909,-34.7741778576713,-34.7744457946898,-34.7747253336138,-34.7750403981641,-34.7753188979166,-34.7755794379927,-34.7761904820581,-34.7763274480079,-34.776377048585,-34.7764637343069,-34.7766257351487,-34.7768012549079,-34.7767289665739,-34.7765425687411,-34.776357108468,-34.7759513879786,-34.7756964320888,-34.7757945974073,-34.776007250184,-34.7762335328363,-34.7767707246766,-34.7770264190601,-34.777592905627,-34.7779073871245,-34.7780759293563,-34.7784109025944,-34.7787669000024,-34.779259991519,-34.779613245129,-34.7797578295742,-34.7799573555748,-34.7799906900445,-34.7801833181387,-34.7802845753883,-34.7803849924858,-34.7801989005699,-34.7798984153278,-34.77973555858,-34.7795626713627,-34.7794326539583,-34.7792798989225,-34.7791845426259,-34.7799746088903,-34.7802847793933,-34.7803063806342,-34.7807614991054,-34.7815088354993,-34.7816507516544,-34.7845465625683,-34.78640484093,-34.7869658902775,-34.7892714561283,-34.7892762153071,-34.7895824930598,-34.7894578621178,-34.789425532111,-34.7897760709164,-34.7905771618972,-34.7904860745134,-34.7904108936146,-34.7904014084046,-34.7903883179559,-34.7903608323417,-34.790312719557,-34.7902764245399,-34.7902823222726,-34.790280907542,-34.7902950505738,-34.790305502985,-34.7903509004327,-34.7904186109884,-34.7904430595922,-34.7906410141156,-34.7906800754462,-34.7904832932618,-34.7904175837787,-34.7903493481054,-34.7903316071801,-34.7903278584378,-34.7903214697824,-34.7903518074801,-34.7903859744852,-34.7905068255358,-34.7906146251356,-34.7906438353673,-34.7906612064423,-34.7920123623764,-34.7938212884092,-34.7939440826825,-34.794173940987,-34.795583214452,-34.798928299598,-34.7990045725056,-34.7993867025417,-34.8000865036063,-34.8003848956393,-34.8004585287604,-34.8005716057188,-34.8006908169392,-34.8008361310061,-34.8010520679576,-34.8012831696531,-34.8014296976278,-34.8015039545959,-34.8014257220881,-34.800022804062,-34.7987267890072,-34.7986500961214,-34.7987358336717,-34.7996900980217,-34.7997184982919,-34.7997780778504,-34.8008821739277,-34.8036825714977,-34.8036737002559,-34.8060545281097,-34.8060942485946,-34.8062933979677,-34.8066783364903,-34.80668957562,-34.8067426974188,-34.8067948416881,-34.8068360927981,-34.806866883377,-34.8068729968817,-34.8068905659425,-34.8069268576072,-34.8069376635653,-34.806968052571,-34.8072715290816,-34.8073374416147,-34.8075206218077,-34.8076995789246,-34.8077598628842,-34.8077720655217,-34.8083881820713,-34.8084091440759,-34.8084579381114,-34.8088748692985,-34.8119167981545,-34.8119537304793,-34.8121750258077,-34.8128168155944,-34.8128739027913,-34.8136723666762,-34.8138257224642,-34.8138820783109,-34.8139820439822,-34.8142416304078,-34.814945663755,-34.8152137722166,-34.8154354350844,-34.8161783910817,-34.8163720187128,-34.8177911984179,-34.8186383675499,-34.8189018670827,-34.8197495643236,-34.8197981572953,-34.8216366131989,-34.821818330681,-34.8238016741003,-34.8254029099305,-34.8258128519902,-34.8260094101575,-34.8263398295107,-34.8267454923026,-34.8269850458465,-34.8274637660681,-34.8274645648134,-34.8275147290177,-34.827470893077,-34.8274335204697,-34.8273825041593,-34.8273739230671,-34.8273877201826,-34.8273636977937,-34.8273589420077,-34.8273408693538,-34.8272814120235,-34.8272559922472,-34.827209431568,-34.8270996015925,-34.8270663577812,-34.8270416450362,-34.8269777287396,-34.8267018131095,-34.826617386235,-34.8265281735591,-34.8264866254651,-34.8264365796551,-34.826417863336,-34.8263339934154,-34.8263103345473,-34.8262857752148,-34.8262395146904,-34.8261954286207,-34.8261698354216,-34.8261147937019,-34.8260699105545,-34.825896447762,-34.8258183007929,-34.8257323698094,-34.8257045287844,-34.8256101867965,-34.825600955369,-34.8255572461604,-34.8255066800821,-34.8254402858409,-34.8253581167976,-34.8252554905373,-34.825107073995,-34.8248727398096,-34.8248095405495,-34.8247600083378,-34.8244765021264,-34.8243617095916,-34.8242749448448,-34.8242319093169,-34.8242145937201,-34.8241914751306,-34.8240654568064,-34.8240318661495,-34.8240057927028,-34.8238755855516,-34.8236696059893,-34.8236247428523,-34.8234908871528,-34.8234294888215,-34.823377028433,-34.8233707518626,-34.8233226470538,-34.8232869619834,-34.8232736217702,-34.8232462543228,-34.82321042251,-34.8231328291598,-34.8230780075536,-34.8230130607255,-34.8230060304331,-34.8229182518301,-34.8229032507604,-34.8228823266359,-34.8228590079432,-34.8228296394638,-34.8227948215073,-34.8227719297014,-34.8227430814903,-34.8227269598426,-34.8226603721683,-34.8226312298648,-34.8226124674626,-34.8226107931585,-34.8226083653471,-34.8226051170052,-34.8225783632075,-34.8225658500875,-34.8225572189696,-34.8225353410199,-34.8225080015267,-34.8224806728261,-34.8224566937928,-34.8224478358913,-34.8224411524444,-34.8224346490905,-34.8224397850726,-34.8224245638893,-34.8224046402809,-34.8223738510687,-34.8223321629024,-34.8223030945778,-34.822271638355,-34.8221812717507,-34.8221564122633,-34.8221424050394,-34.8221274506604,-34.8221351879841,-34.8221509627862,-34.8221488150119,-34.8221393634708,-34.8221178457069,-34.822085128834,-34.8219928212286,-34.8218146560109,-34.8217602746317,-34.8217230887873,-34.8216774252374,-34.8216267390973,-34.8215787476802,-34.8215651273226,-34.8214946109554,-34.8214443983929,-34.8214023367006,-34.8213379168109,-34.8211970708397,-34.8211425760687,-34.8210801972317,-34.8210544706305,-34.8210117886183,-34.8209257976038,-34.8208916266477,-34.8208320292451,-34.8207645411064,-34.8207063110757,-34.8206161445745,-34.8205784784825,-34.8205161063156,-34.8203803162852,-34.8202960728387,-34.8202574595915,-34.8201950140534,-34.8199768415363,-34.8199292636658,-34.8198568329781,-34.8197872971167,-34.8197465160849,-34.8197241178668,-34.8196548888303,-34.8196280950121,-34.8195924232819,-34.8194636768841,-34.819329907896,-34.8192981485602,-34.8192631868196,-34.8192180502081,-34.819222672592,-34.8192166561559,-34.8191532367822,-34.8191383557744,-34.8190382441442,-34.8190061209108,-34.8187692587549,-34.818621982801,-34.8185431621511,-34.8185122328668,-34.8184706781026,-34.8184172438785,-34.8183227418081,-34.8181469444782,-34.8180666564049,-34.8178962685315,-34.8177730183016,-34.8177462511637,-34.8176566716319,-34.8176288772977,-34.8176020434588,-34.8175129908654,-34.8174812811786,-34.8174446689634,-34.8173980849388,-34.8173426363426,-34.8172849866111,-34.8172555447606,-34.81721984635,-34.817206019219,-34.8171832741554,-34.8170844165053,-34.8170799275236,-34.817075451882,-34.8170664539082,-34.8170394533167,-34.8170304686831,-34.8170169750574,-34.8169765075206,-34.816967522887,-34.8169495002589,-34.8169053108026,-34.816881058295,-34.8168688986906,-34.8168609946143,-34.8168780300666,-34.8168544445696,-34.8168143505587,-34.8168053659251,-34.8167963879617,-34.8167649984399,-34.8167605227984,-34.8167560338167,-34.816751551505,-34.8167470691934,-34.8167425868817,-34.8167336155883,-34.8167291332767,-34.8167246442949,-34.8167156596613,-34.8167021660357,-34.8166976770539,-34.8166796811063,-34.8166662074909,-34.8165987326924,-34.8165897413887,-34.8165807567551,-34.8165762677734,-34.8165672831398,-34.8165313379352,-34.8165178576498,-34.8165043773643,-34.8164953927307,-34.816486401427,-34.8164819191154,-34.8164729278116,-34.8164594408561,-34.8164504428823,-34.8164414449084,-34.8164324602748,-34.8164234689711,-34.8164099886857,-34.8163605898761,-34.8163426472893,-34.816333682666,-34.8163246980324,-34.8163174009358,-34.8163155266358,-34.8161840321541,-34.8161375681914,-34.8161023833791,-34.8160504299187,-34.8159984097572,-34.8158999323032,-34.8158367597235,-34.8157810643333,-34.8157811977354,-34.8157717928851,-34.815771539421,-34.8156919183584,-34.8156286924179,-34.8155562684003,-34.8154558566153,-34.8153982469045,-34.8153199398529,-34.8153167582121,-34.815307933661,-34.815298862316,-34.8152898376618,-34.8152807729869,-34.815267139289,-34.8152531187249,-34.8152395383878,-34.8152305137336,-34.8152215424402,-34.8152126645283,-34.8151993776759,-34.8151904530733,-34.8151813817283,-34.8151677013396,-34.8151585833039,-34.8151494652681,-34.8151403939231,-34.8151268135861,-34.8151132799398,-34.8150997929842,-34.8150907216392,-34.8150816502942,-34.8150725322585,-34.8150589519214,-34.8150453715844,-34.815036153497,-34.8150225197991,-34.8150088927713,-34.8149607812923,-34.8149330136385,-34.8149318063492,-34.8148843752211,-34.8148060481592,-34.8147421885585,-34.8146804033609,-34.8146124216343,-34.8145588806886,-34.8144538398497,-34.8143776538919,-34.8143776338816,-34.8143491858769,-34.814335678911,-34.8142903355263,-34.8142667100087,-34.8142456191316,-34.814231258392,-34.8142160572191,-34.8141902505766,-34.8141181267138,-34.8141046064077,-34.8140956084339,-34.8140866171302,-34.8140694482758,-34.8140586627134,-34.814046249645,-34.8140005060538,-34.8139438234878,-34.8138831188476,-34.8138262094979,-34.8138026573515,-34.8137576207917,-34.8136970562236,-34.8135838911949,-34.8135564703866,-34.8134563654266,-34.8133877366996,-34.8131918956994,-34.8130138572138,-34.8128674016829,-34.8128010407922,-34.8126878891037,-34.8124615590461,-34.8123447454691,-34.8123176715063,-34.8123225406842,-34.8122779110008,-34.8122644107051,-34.8121943078845,-34.8120871059311,-34.811907973548,-34.8117425882545,-34.8116665356989,-34.8114929728548,-34.811436490392,-34.8113605312179,-34.8112413297427,-34.8111826861653,-34.8110341428911,-34.810687524131,-34.810613072401,-34.8104155238535,-34.8103237698669,-34.81021635447,-34.8100383359947,-34.8099225296037,-34.80970144225,-34.8095799062374,-34.8094896396846,-34.8094366456876,-34.8094399807409,-34.8094260402181,-34.8094063167129,-34.8092862214433,-34.8092135239513,-34.809183848647,-34.8091523190531,-34.8090384003023,-34.8090009543237,-34.8089577720535,-34.8087855165503,-34.8087228375585,-34.808611440108,-34.808519719472,-34.8083597569752,-34.8082368002299,-34.8081354279497,-34.8080397986312,-34.8079656070353,-34.8078699310261,-34.8077253698055,-34.8076432741333,-34.8075828429674,-34.8075167688914,-34.8074645552968,-34.8074236675433,-34.807333934599,-34.8073125635774,-34.8071839305714,-34.8069868556015,-34.8067939961389,-34.8066868608866,-34.8066384959435,-34.8065763839108,-34.8065354694768,-34.8064788469418,-34.8063678430276,-34.8062721936988,-34.8061790123094,-34.8060909202114,-34.8060363120486,-34.8059172639858,-34.805847021093,-34.8056977307669,-34.8056706768145,-34.8055075526871,-34.8054128038227,-34.8053728632244,-34.8053162606997,-34.8052412420106,-34.805187901168,-34.8051726733146,-34.805101183112,-34.8050207416263,-34.8049457229372,-34.8048909880423,-34.804851360939,-34.8048091525043,-34.8047587331684,-34.8046381176306,-34.8045027811674,-34.8044362535241,-34.8043631291453,-34.8042721088705,-34.8042034601333,-34.8041219514305,-34.8040445448433,-34.8039687190713,-34.8039138174238,-34.8038041475309,-34.8037562828458,-34.8036614539401,-34.8035304863968,-34.8034928136347,-34.8034352506146,-34.803403741031,-34.80338615863,-34.8033674423108,-34.8033388809143,-34.8033106196726,-34.8032849797828,-34.8032070195767,-34.8031763437564,-34.8031309536809,-34.8030418010359,-34.8029640742836,-34.8028747348757,-34.8027791455778,-34.8026949288117,-34.8025924159432,-34.8025091996931,-34.8024402107805,-34.8023515650636,-34.8022603913763,-34.8021895348338,-34.8020556124333,-34.8019750175351,-34.8018942758945,-34.8018214716809,-34.8017577054617,-34.8016421792152,-34.8015561882007,-34.8014600252737,-34.8013394030658,-34.8012423997053,-34.8011420012606,-34.8010423832184,-34.8009544512029,-34.8008507844059,-34.8007605178532,-34.8007065433505,-34.8006577115,-34.8005432924911,-34.8004468961104,-34.8003464643152,-34.8002338062145,-34.8001706069544,-34.800090125448,-34.7999908609214,-34.7999465113825,-34.7998894019297,-34.7998198327178,-34.7997260710291,-34.7996643458626,-34.7995638873869,-34.7994152307208,-34.799370941213,-34.7992797141648,-34.7991535824488,-34.799060307678,-34.7989145258278,-34.7988151012187,-34.7987182245903,-34.7986267440781,-34.7985619039717,-34.7984780340512,-34.7983928301094,-34.7983218201544,-34.7982539518196,-34.7981576354802,-34.7980565300041,-34.7979639822749,-34.7978985618693,-34.7977881049038,-34.7976899809654,-34.7975822053828,-34.7974910517058,-34.7974050740316,-34.7972863061133,-34.7972088061446,-34.7971696192682,-34.7970011990763,-34.7968979925167,-34.7968398091767,-34.7966913259335,-34.7966332893359,-34.796530502993,-34.7964209931826,-34.7962949948687,-34.7961545824545,-34.7960727936072,-34.7959787851246,-34.7958864575089,-34.7957758738114,-34.7957218392777,-34.7956406707504,-34.795577017923,-34.7954756323025,-34.7953529423615,-34.7952365756815,-34.7951477298615,-34.7950984311035,-34.79506692819,-34.7949898684483,-34.7949323187685,-34.7948646838874,-34.7947860233202,-34.7947176747377,-34.7946687428356,-34.7946182301182,-34.7945790966028,-34.794540883562,-34.7945051051101,-34.7944437334592,-34.7943892787088,-34.7943330897307,-34.7943011332499,-34.7942907679043,-34.7942672691187,-34.7942459181074,-34.7942187641034,-34.7941530368728,-34.7940780048436,-34.7940334552015,-34.7939115590032,-34.7938302704139,-34.7937491485773,-34.793649964092,-34.7935367990632,-34.793393445132,-34.7933339411109,-34.7932423071863,-34.7931656876716,-34.7931131472418,-34.7930106343733,-34.7929361426227,-34.7928734302803,-34.7928392259736,-34.7928022602428,-34.7927595982409,-34.792705236872,-34.7926418908695,-34.7925785448671,-34.7925106631921,-34.7924338102237,-34.7923479059206,-34.7922800242456,-34.7921761306651,-34.7920858374319,-34.7920000198402,-34.7918870349043,-34.7917921926584,-34.791710830698,-34.7916339977399,-34.7915571514417,-34.7914712404685,-34.7913989365128,-34.7913131789521,-34.7912004207999,-34.7911514755576,-34.7910832270267,-34.7909885915541,-34.7909456494078,-34.7908938093392,-34.7907944647713,-34.7907175851225,-34.790694719997,-34.7906808861959,-34.7906489630657,-34.7906170932963,-34.7905897058385,-34.790553320407,-34.7904989590381,-34.7904176571086,-34.7903273705455,-34.7902326083409,-34.7901423084376,-34.7900523553798,-34.7899620421363,-34.7898765180294,-34.7898000852777,-34.7897146278718,-34.7896287702595,-34.7895518706004,-34.7894660463386,-34.7893802487573,-34.789276501919,-34.789186342088,-34.7890962089373,-34.7890498316861,-34.7889207050922,-34.7888125960042,-34.7886999579139,-34.7886258330191,-34.7884914770616,-34.7883661057378,-34.7883218229,-34.7882770598145,-34.7882278144174,-34.78817854901,-34.7881136488726,-34.7880573264924,-34.7880132170774,-34.7879673801047,-34.7879045076798,-34.7878581304286,-34.7878099922692,-34.7877244681622,-34.7876788046123,-34.7876209280973,-34.7875662665735,-34.787508296677,-34.7874516608018,-34.7874045431687,-34.7873232479093,-34.787228445684,-34.7871381924715,-34.7870834242261,-34.7870344389631,-34.7869397634699,-34.7868964878182,-34.7868494568965,-34.7868100165561,-34.7867610513035,-34.7867320763603,-34.7866283161819,-34.7865493087691,-34.7864883506647,-34.7864296670668,-34.7863529475005,-34.7862627142983,-34.7861589808003,-34.7859560294664,-34.7858695115136,-34.7857531181532,-34.7856629583221,-34.785577420875,-34.785505537136,-34.7854360079447,-34.785312084034,-34.7852131129921,-34.7851051439764,-34.7850392166426,-34.7849746633508,-34.7848846102415,-34.7848030681881,-34.7847043906309,-34.7846284181166,-34.7844792745328,-34.7843891880729,-34.7842539850119,-34.7841233176234,-34.7839566983602,-34.7838730485532,-34.783726633043,-34.7836227327923,-34.7834964543339,-34.7833459100277,-34.7832303837812,-34.7831040452919,-34.7828605997408,-34.7827208476671,-34.7825179830446,-34.7823781175791,-34.7822607837337,-34.7821028756298,-34.7819629834838,-34.7818005263672,-34.7816786901998,-34.7815523517105,-34.7814430886941,-34.7812815920728,-34.7811984025032,-34.7810937351902,-34.7810402742857,-34.7809891612587,-34.7808726144859,-34.7807307279781,-34.7806236194061,-34.7805212199294,-34.780376665379,-34.780306909404,-34.7801636621944,-34.7800257644103,-34.7798985254567,-34.7797448995612,-34.7797354880407,-34.7797307322547,-34.7796980620725,-34.7796024527644,-34.7795628723517,-34.779474233305,-34.7794249545573,-34.7793666311451,-34.7792902117337,-34.7791957830344,-34.7790788160448,-34.7789483354193,-34.7788087834488,-34.7786782294521,-34.7785746360263,-34.778452993292,-34.7783628267909,-34.7782545309399,-34.7781507574213,-34.777988573779,-34.7778264101471,-34.7777182677086,-34.777653919045,-34.777623632236,-34.7775065185041,-34.7773578618381,-34.7772000271053,-34.7770331610482,-34.7768887532401,-34.7766904309602,-34.7766002511188,-34.776530061587,-34.7763660436654,-34.7762761306283,-34.7762363301021,-34.7762044403224,-34.776132903429,-34.7760926960264,-34.7760279359613,-34.7759762226247,-34.7759278376714,-34.77585642751,-34.7757663277099,-34.7757025281401,-34.775600975767,-34.7755181663934,-34.7754063487262,-34.7752882878391,-34.7751879761058,-34.7750844493811,-34.7749725049818,-34.7748933374865,-34.7748149704039,-34.7747825336755,-34.7747297531218,-34.7746757852892,-34.7746417210548,-34.7746182489496,-34.774568970202,-34.7744928642855,-34.7744571458647,-34.7744488749324,-34.7744079871789,-34.7743164332956,-34.7742323032409,-34.7742052426183,-34.7741397288312,-34.7740474145557,-34.7739661259665,-34.7738855310683,-34.7737679104083,-34.773678050732,-34.7735822279804,-34.773429295776,-34.7733206730899,-34.7732178200459,-34.7730610125096,-34.7730279954819,-34.7729836392729,-34.7728501504293,-34.7726729123564,-34.7725828925976,-34.7724879236197,-34.7724139187868,-34.772313827167,-34.7721724475873,-34.7721543782685,-34.7721582936211,-34.7721336809277,-34.7721109625445,-34.7721024714988,-34.7720899183582,-34.7720016861879,-34.771929989212,-34.7718377149571,-34.7717821796494,-34.7717086950849,-34.7715430229769,-34.7714267363382,-34.7712919268135,-34.7711998126412,-34.7711056774266,-34.7710570390092,-34.7709977350913,-34.7709404121951,-34.7708954156559,-34.7708791005751,-34.7708604642973,-34.770823411855,-34.770786372753,-34.7707534290965,-34.7707143356016,-34.7706692923717,-34.7706209207585,-34.7705663125957,-34.7705146793004,-34.7704486519151,-34.7704061566658,-34.7703590457029,-34.7702465210043,-34.7702091550671,-34.7701291404682,-34.7700425224637,-34.7699702852091,-34.7698740088903,-34.769788778268,-34.7697285205249,-34.7696899406283,-34.769615408857,-34.7695619679628,-34.7694875028926,-34.7693857704266,-34.7693087040148,-34.7692271286109,-34.7691638026188,-34.7691294382295,-34.7690553733657,-34.7688838315639,-34.7687979072505,-34.7687343144541,-34.7686618370756,-34.7685532343998,-34.7684266224361,-34.7683089884359,-34.7682178080785,-34.76803708821,-34.7678871575536,-34.7677488729033,-34.7675898842421,-34.7674735175622,-34.7673790421721,-34.7672775231495,-34.7671573144882,-34.7670330637422,-34.7669337458548,-34.7668184597321,-34.7666667014665,-34.7665834318556,-34.7665306446318,-34.7664799384814,-34.766453764983,-34.7664722678588,-34.7664275114434,-34.7664243631531,-34.7664553658086,-34.7664392374908,-34.7664048464211,-34.7663473767826,-34.7662250737078,-34.766091137967,-34.7660400182699,-34.7659917800589,-34.7658654749201,-34.7656265650415,-34.7654463654413,-34.7652076423257,-34.7651947823601,-34.7651989845273,-34.7651411280226,-34.7649966801938,-34.7649937186665,-34.7649482819002,-34.764919800545,-34.7648574350482,-34.7647272212269,-34.7646416037384,-34.7645390441792,-34.7643754931651,-34.7642474404584,-34.7641583411743,-34.7640554614499,-34.7638970997787,-34.7637777315508,-34.7636981705191,-34.7636202503337,-34.763491197111,-34.7634044990652,-34.7633292869431,-34.7633073156119,-34.7633071021685,-34.7632123066133,-34.7631990464414,-34.7632001803595,-34.7631948709547,-34.7631355870471,-34.7631018229674,-34.7631198989564,-34.7631508749314,-34.7632312363759,-34.7632743652853,-34.7633397590105,-34.7634196402073,-34.7635311910702,-34.7636139270726,-34.7636874983486,-34.7638077870512,-34.7638938314265,-34.7639212188842,-34.7640339837066,-34.764111023438,-34.7641607290724,-34.7642241617863,-34.7642626483014,-34.7642773091957,-34.7642891152845,-34.7642887150781,-34.7642852199422,-34.7642805375274,-34.7642648494366,-34.7642566318653,-34.7642667304067,-34.7642637955597,-34.7642499350782,-34.7642379288863,-34.7642070462927,-34.7641859954363,-34.7641848348377,-34.7641568470704,-34.7641111168194,-34.7640843430115,-34.7640643727123,-34.7640428416082,-34.764022871309,-34.7639929892313,-34.7639473123413,-34.763948046053,-34.7638221811412,-34.7637773847053,-34.7637146056618,-34.763642795294,-34.7635799228691,-34.7634944788034,-34.7634090347378,-34.7633191083604,-34.7632471912709,-34.7632024215154,-34.7631712054164,-34.763148967281,-34.7631177378418,-34.7630774637381,-34.7630372029746,-34.7629969688915,-34.7629612304603,-34.7629344833328,-34.7629077362053,-34.7629036140794,-34.7629129255482,-34.7629042410694,-34.7628865386064,-34.7628823764599,-34.7628692496901,-34.7628560695595,-34.7628428760886,-34.762852227578,-34.7628613389437,-34.762870557031,-34.7629204494285,-34.7629882710725,-34.7630651107007,-34.7631419236484,-34.763223232248,-34.7633090498396,-34.7633714019962,-34.7633918658833,-34.7634069269841,-34.7633885975311,-34.7633234039091,-34.7632289151788,-34.763180250081,-34.7631214597613,-34.7631123217152,-34.7630946859534,-34.7630905238068,-34.763091284199,-34.763059627873,-34.7630284251143,-34.7630017313476,-34.7629876440825,-34.762979920099,-34.7629802802848,-34.7629670601335,-34.7629358573747,-34.7629000789229,-34.7628823631197,-34.7628511470208,-34.7627792299313,-34.7627027905095,-34.7626128641322,-34.7625183754019,-34.7624148820277,-34.7623429515981,-34.7622845881652,-34.7622217290805,-34.7621407673264,-34.7620102867009,-34.7619201869008,-34.76183442267,-34.7617441094265,-34.7616583451957,-34.761563576321,-34.7615311996235,-34.7614957279965,-34.7614773585229,-34.7614229838138,-34.7613506398375,-34.7612514820326,-34.7611614355934,-34.7610759381668,-34.7609859450884,-34.7609004610021,-34.7608150436168,-34.7607340818628,-34.7606441021246,-34.7605540556853,-34.7604504689297,-34.7603484563192,-34.7602400537465,-34.7601436040049,-34.760058520125,-34.7599508779445,-34.7598579633594,-34.7597676634561,-34.759666304516,-34.759508516474,-34.7594451504612,-34.7593734868358,-34.7592818395709,-34.7591516524301,-34.759108350098,-34.7590954767922,-34.7590566834522,-34.7588930390566,-34.7588332082003,-34.7587493783004,-34.7586731256416,-34.758565229997,-34.758491085092,-34.758408255708,-34.7583163016183,-34.7582235871364,-34.7581877286433,-34.7581534442953,-34.7581058997754,-34.7580364773058,-34.7579550619844,-34.7578947909011,-34.7578463792673,-34.7577049063061,-34.7576485172248,-34.7575447703866,-34.7574581390419,-34.7573510838308,-34.7572515791804,-34.7571996057097,-34.7571272217127,-34.7570855869073,-34.756992912446,-34.7569049604202,-34.756791768711,-34.756683966448,-34.7565846352203,-34.756485450735,-34.7563983658231,-34.7563186580491,-34.7562618287408,-34.7562165920777,-34.7561969686241,-34.7561774518921,-34.7561313747957,-34.7560925547752,-34.7560210378921,-34.7559520689897,-34.7558855280062,-34.7558259639541,-34.7557878109443,-34.7557778991659,-34.7557904656467,-34.7557950413399,-34.7557996036928,-34.7558222687151,-34.7558585007342,-34.7559037507374,-34.755953523073,-34.7559988664577,-34.7560040958213,-34.755958592354,-34.7558866619243,-34.7558102225025,-34.7557428010649,-34.7557023535384,-34.7556529147082,-34.7556439367447,-34.7556260208384,-34.7556126005839,-34.7555946579971,-34.755558866205,-34.7555320923971,-34.755527650106,-34.7555231811346,-34.7555142298516,-34.7555007829166,-34.7554918182933,-34.7554873493219,-34.755460642215,-34.755433548242,-34.7553932341176,-34.7553754649536,-34.7553440354113,-34.7553305351155,-34.7553170348197,-34.7552777212113,-34.7552359930244,-34.7552179570561,-34.7552044167397,-34.7551863674312,-34.7551683448031,-34.7551412908507,-34.7551187592306,-34.7551007366025,-34.7550827139745,-34.7550601956945,-34.7550421730665,-34.7550196547866,-34.7550061411505,-34.754992654195,-34.7549791538992,-34.7549656669436,-34.7549521666479,-34.7549341440198,-34.7549070900674,-34.754885919149,-34.7548146824104,-34.7547776499785,-34.7547519967484,-34.7547148976155,-34.7546493971686,-34.7545981173889,-34.7546007053903,-34.7545947689954,-34.7545546949949,-34.7545091381667,-34.7544749205198,-34.7543836868016,-34.7542156668161,-34.7541729914739,-34.7541247666031,-34.7540453256334,-34.7539715809347,-34.7539120569033,-34.7538354440588,-34.7538071361263,-34.7537616193188,-34.7536812178537,-34.7536338867772,-34.7534923471149,-34.7534230580474,-34.7533955105071,-34.7533785817765,-34.7533829973871,-34.7533717782678,-34.7532545311338,-34.7531548664008,-34.7530841499305,-34.7530445028168,-34.752979322535,-34.7528765628725,-34.7527207091615,-34.7526577166747,-34.7526053830181,-34.7525276495957,-34.7524563594962,-34.7524126569577,-34.7523536531947,-34.7523085365935,-34.7522477719223,-34.7521947178943,-34.7520715210252,-34.7519433215761,-34.7517634288008,-34.7516748631252,-34.7516124175871,-34.7515798407864,-34.7515401936728,-34.7514935296069,-34.7514653550766,-34.7514450779525,-34.7513565122769,-34.7513398236702,-34.7513159580287,-34.7512786454523,-34.7511416147821,-34.751126033413,-34.7510962847376,-34.7510367073453,-34.7510112141979,-34.7509886158767,-34.7509745419517,-34.7509732212706,-34.7510061048962,-34.7511036618755,-34.7510786356355,-34.7510744868292,-34.751085425804,-34.7510858793712,-34.7512098099521,-34.751167321373,-34.7511200703377,-34.7510881205271,-34.7510691240634,-34.7509904968467,-34.7508927397642,-34.7507931150518,-34.7507342847115,-34.750673373298,-34.7506139426481,-34.7505505366146,-34.7504954281938,-34.750429434159,-34.7503395211219,-34.7502088270529,-34.7500964624369,-34.7499838176765,-34.7499267349041,-34.7499140750418,-34.7498629553447,-34.7497589150218,-34.7497189210626,-34.7496466037667,-34.7495476327248,-34.749557456377,-34.749243956111,-34.7490955062182,-34.7489489773162,-34.7488165623597,-34.7487005158449,-34.7485711157767,-34.7484221189352,-34.748255246208,-34.7480884668623,-34.7479532371208,-34.747804467063,-34.7476917556015,-34.747518172747,-34.7474968817667,-34.7474621705319,-34.7473948596338,-34.7472614003229,-34.7470693679536,-34.7469748925635,-34.7468711990861,-34.746758634367,-34.7466596233044,-34.7465380672816,-34.7464163778565,-34.7463172467321,-34.746218329051,-34.7460819120306,-34.7459444144529,-34.7458301421865,-34.7457853324103,-34.7457573579831,-34.7456525439278,-34.7456321200614,-34.7454755993396,-34.7453614071145,-34.7453383418858,-34.7452395576069,-34.7451358641295,-34.7450687094961,-34.745047551918,-34.7449868139271,-34.7449571186125,-34.7448003577669,-34.7447718497313,-34.7447396597968,-34.7446816965703,-34.7446068179535,-34.7445418244347,-34.744434729203,-34.7443778065131,-34.7443098648072,-34.7442785019659,-34.744269703919,-34.7441307724447,-34.7440560405702,-34.7439226117575,-34.7437875687791,-34.7436912791201,-34.7436203625466,-34.7435380934516,-34.743445832537,-34.7433858682785,-34.7433423124824,-34.7432941943333,-34.7432642588948,-34.7432284804429,-34.7431973710657,-34.7430804174164,-34.7429371168459,-34.742809864552,-34.7426799575557,-34.7426118957878,-34.7425454882064,-34.7424211707593,-34.7423112474024,-34.7422123564018,-34.7421224300244,-34.7420369592783,-34.7419199522681,-34.7418164722342,-34.7417512385915,-34.7417003456781,-34.7416455174017,-34.7415465997207,-34.7414840207805,-34.7414068876676,-34.7413387725389,-34.7412897205749,-34.741217216516,-34.7411019170531,-34.7410147520999,-34.7409255727745,-34.7407667041753,-34.7406675730508,-34.74055052602,-34.7404513548749,-34.7403507429868,-34.7402644051268,-34.7401359922343,-34.7400720125717,-34.7400236142781,-34.739919934141,-34.739811825053,-34.7397171895804,-34.7396226074687,-34.7395468750782,-34.7394199029287,-34.7393029092588,-34.7392130629227,-34.7391367435629,-34.7391003648014,-34.7390648931745,-34.7389298768764,-34.7388444728314,-34.7387455151297,-34.738599880022,-34.738550267769,-34.7384384901224,-34.7383676535902,-34.738267161764,-34.7382091184962,-34.7380659646681,-34.7376384775354,-34.7368431740437,-34.7366834249904,-34.7365736750562,-34.7364557208909,-34.7361374901045,-34.7359678025923,-34.7356230381218,-34.7355260177865,-34.7354672166681,-34.7352326507393,-34.7346852215699,-34.7341985896048,-34.7338039745907,-34.7333175947422,-34.7331208550185,-34.732762843046,-34.7323167699979,-34.7321318390609,-34.7312953801427,-34.7309745028727,-34.730677072543,-34.7305692932908,-34.7300026137762,-34.7286320795572,-34.7239144943238,-34.7212441301351,-34.7194003274622,-34.7200842428731,-34.7200657235761,-34.7218066007347,-34.7217126069022,-34.7215363074929,-34.7212801119062,-34.721091081529,-34.7210308408199,-34.7209471410172,-34.7207680105498,-34.7206945192754,-34.7203542978013,-34.7202941499732,-34.7204083612048,-34.7203931887431,-34.7201944744051,-34.7200329965033,-34.7200110694553,-34.719811172715,-34.7194328871173,-34.7190480927228,-34.7186259785485,-34.7176516180847,-34.7167357278855,-34.7164435161594,-34.7156471266792,-34.7154961128242,-34.7141893943342,-34.7141400680646,-34.7140560279339,-34.7140732154893,-34.7141800629501,-34.7142235306184,-34.7142445181451,-34.7141721100033,-34.7141467465336,-34.7140741373103,-34.7140954199424,-34.7142673857193,-34.7144869948529,-34.7147526533153,-34.7152047031454,-34.7155975695556,-34.7158290131408,-34.7162003004604,-34.7162095415712,-34.7162887038245,-34.7162258221587,-34.7161573772179,-34.7163782353267,-34.7163805281941,-34.7162605912497,-34.7162933944408,-34.7164042769083,-34.7161577441634,-34.7161450035881,-34.716294679328,-34.7162343863408,-34.7160008427664,-34.7160255363231,-34.7161264397792,-34.716203980319,-34.7162245400298,-34.7162732311215,-34.7162827966225,-34.7163565448477,-34.7165196671787,-34.7165601616339,-34.7165458031849,-34.7166600557497,-34.7168785361696,-34.7171541028328,-34.7174186106613,-34.7176262582657,-34.7177135812638,-34.7175996491621,-34.7177019554876,-34.717916332635,-34.7182115556802,-34.7184080692127,-34.7184873015173,-34.7186837722045,-34.7188909508766,-34.7189937657829,-34.7198233279642,-34.7200438230958,-34.7203239476503,-34.7206576327095,-34.7209985961901,-34.7210982263719,-34.7217725442616,-34.7219920858533,-34.7220830991487,-34.7222683471406,-34.7225117242136,-34.7226847020457,-34.7230527813278,-34.7232604551509,-34.7235029258813,-34.7237228701395,-34.7241513946535,-34.7246034527476,-34.7248575896262,-34.7251117264737,-34.7252148079014,-34.7256534874474,-34.7259764120169,-34.7261367152689,-34.7264462592519,-34.7268963014997,-34.7270727387565,-34.7272581182786,-34.7274327743157,-34.7276477499647,-34.7279233538257,-34.7281788597183,-34.7285389916731,-34.7289234730491,-34.7293524007991,-34.7300128378995,-34.7302824689757,-34.7307955753622,-34.7309592018398,-34.7311462604614,-34.7315403893662,-34.7320999526886,-34.7321941460142,-34.7324965049931,-34.7329030910107,-34.7329733173492,-34.7331965431084,-34.7333379051284,-34.7335251072438,-34.7341074979767,-34.73443072665,-34.7346500675149,-34.7351129847225,-34.7355157360898,-34.7361461529124,-34.7365062926899,-34.7368652197671,-34.737123354535,-34.7373075970195,-34.7374569422172,-34.7374780627185,-34.7375803414209,-34.7376790891811,-34.7377204828798,-34.7377344160497,-34.7380407442459,-34.7380957538376,-34.7382888419176,-34.738422992638,-34.7384099154677,-34.7382860330831,-34.7381351951149,-34.7381119185452,-34.7382037209703,-34.7385735084691,-34.7386612029912,-34.7387210994652,-34.7388321791593,-34.7388727940681,-34.7389106481824,-34.7389992858579,-34.7390896036865,-34.7391281855086,-34.739185955175,-34.7392682389858,-34.7394218634272,-34.7394870298981,-34.7395823023177,-34.7397240049577,-34.7398309367474,-34.7398831551731,-34.7398967088298,-34.7399870487537,-34.7400675016216,-34.7401533043308,-34.7402171458281,-34.7402641081059,-34.7403058871139,-34.740372777688,-34.7404323877556,-34.7404749270317,-34.7405110656693,-34.7405788206123,-34.7406299178503,-34.7406739044749,-34.740726280019,-34.7408511620736,-34.7409109377807,-34.7409822712815,-34.7410810069855,-34.7411690445712,-34.741215128325,-34.7413148895525,-34.7413866772446,-34.7414892360042,-34.7416032689465,-34.7416528811994,-34.7417024934524,-34.7417656060012,-34.7418436472528,-34.7419277696331,-34.7419502745728,-34.7421244940699,-34.7422800677924,-34.742325254959,-34.7423830439195,-34.7424386619032,-34.7425069277654,-34.7425984659174,-34.7427978316797,-34.7428744445242,-34.7429132687426,-34.7429691540532,-34.7430334559215,-34.7431028118624,-34.743149043007,-34.7432131973648,-34.743232183022,-34.7432903499425,-34.743366135841,-34.7434397415387,-34.7434671160943,-34.7435187424166,-34.7435567874835,-34.7436106400985,-34.7436634026127,-34.7437604004529,-34.7438067237866,-34.7438392538239,-34.7438895042454,-34.7439179043622,-34.7439484662403,-34.7439769585524,-34.7440339062975,-34.7440623801696,-34.7441118816043,-34.7441433952893,-34.74419077184,-34.7442820907433,-34.744290465101,-34.7443767392515,-34.74469052185,-34.7447610269033,-34.7448885493475,-34.745154754938,-34.7452925275968,-34.7454540379093,-34.7456735773482,-34.7458043094213,-34.7458004927208,-34.7457406418174,-34.7460058351813,-34.7464239743754,-34.7467343513166,-34.7470133819858,-34.7472389295905,-34.7475689460594,-34.7478821239783,-34.7480800535207,-34.7482591552162,-34.7485682945948,-34.7488126698817,-34.7490332617347,-34.7491603504596,-34.749040083086,-34.7486792601358,-34.7486727954748,-34.7487801152322,-34.7487183575267,-34.7485028653312,-34.7483713831244,-34.7483198223758,-34.7484212785446,-34.7485108624091,-34.7485412760219,-34.7485651418055,-34.7485839404196,-34.7485982332955,-34.7486130875872,-34.7486321695453,-34.7486578471325,-34.7486829523419,-34.7494109831157,-34.7497949986306,-34.7498338346345,-34.7498643325035,-34.7498691214972,-34.7498955728704,-34.7499521108472,-34.7500337154998,-34.7501630607368,-34.7504464958633,-34.7503959389273,-34.7503993897363,-34.7505149917549,-34.7508489591818,-34.7511483232389,-34.7512607654264,-34.7512556071256,-34.7512531780988,-34.7513629070737,-34.751511307853,-34.7514429466846,-34.7514039222786,-34.7512490701687,-34.750982197708,-34.7501018975186,-34.7498438595953,-34.7496999279448,-34.7499376305239,-34.750048465115,-34.7502123178427,-34.7505768891792,-34.750688854777,-34.7506873355439,-34.7511344553298,-34.7513531852646,-34.7518355161349,-34.7520017675173,-34.752252048879,-34.7527456314541,-34.7527512866474,-34.7527186706196,-34.7529804250865,-34.7531772420421,-34.7534323470111,-34.7534877152354,-34.7536185317818,-34.7537429083652,-34.7538999232753,-34.7541267344452,-34.7548230334457,-34.7554198588752,-34.7559895631274,-34.7561658063318,-34.7567706512976,-34.7569597496267,-34.7569436874461,-34.7563001596958,-34.7561822964145,-34.7562687517444,-34.7565207606586,-34.7569531321747,-34.7573973292689,-34.7578451238304,-34.7579135100278,-34.7580755948723,-34.7583430550646,-34.7585038219046,-34.7588048311551,-34.7589997722094,-34.7593678786187,-34.7595276012653,-34.7598490278369,-34.7602200550047,-34.760442090327,-34.760831517708,-34.76112506569,-34.7615088049148,-34.7618710810467,-34.7618975463101,-34.7620778592795,-34.7623331658556,-34.7624942467278,-34.7625716637389,-34.76269898558,-34.7629639447789,-34.7631361734897,-34.7633318450052,-34.7639565764822]}]],[[{&#34;lng&#34;:[-56.2130865181325,-56.2131013324393,-56.2126580171436,-56.2122188306438,-56.2117366603096,-56.211716039675,-56.2111917342773,-56.2105911278625,-56.2103845211583,-56.2101162524611,-56.2093762277085,-56.2087921517512,-56.2087658000257,-56.2087051670365,-56.208654570501,-56.2083752136867,-56.2072071992613,-56.2070257257601,-56.20590675201,-56.2058782573146,-56.2052849996898,-56.2048671975519,-56.2038690261027,-56.2033329529694,-56.2013809696149,-56.2012471900888,-56.201203405441,-56.201165599357,-56.2010825912929,-56.2010423180061,-56.2010238929024,-56.2010338130991,-56.2001507730982,-56.1992967379625,-56.1992550542861,-56.1975341197172,-56.1974593363354,-56.1973277419817,-56.1972645400889,-56.1971411572018,-56.1970194667932,-56.1969578468307,-56.1961993738019,-56.1969518487373,-56.1977838961788,-56.198544261652,-56.1986635089843,-56.1985388407362,-56.1974725973007,-56.1969580794506,-56.1964070744499,-56.1960043092336,-56.195431789804,-56.195055574947,-56.1944384785338,-56.1944329305592,-56.1943986914646,-56.1943176619054,-56.1942623789389,-56.1941498227479,-56.1940172183777,-56.193839375415,-56.1946911711814,-56.1948909717236,-56.1949959166797,-56.195065178233,-56.1952372753212,-56.1954281220791,-56.1955882888479,-56.1958284710493,-56.1961826924267,-56.1966586449823,-56.1970940393578,-56.1974643891276,-56.1976393170502,-56.1981194313609,-56.1988210938305,-56.1990608084479,-56.1991644694848,-56.1992559482763,-56.1994389299433,-56.1996093743978,-56.1997290463737,-56.2000275332798,-56.2000889811927,-56.2001127822449,-56.2001544028764,-56.2003267184106,-56.2005229396069,-56.2006708283769,-56.2008235184431,-56.2010456910213,-56.2014849515744,-56.2018108446458,-56.2021283917463,-56.2023864131479,-56.202498942849,-56.2026055720265,-56.2027036000626,-56.2026986758564,-56.2026580565747,-56.2025870788383,-56.2028584020419,-56.2029436203061,-56.202970595973,-56.2030662113669,-56.2030914219146,-56.2032565536871,-56.2037684625728,-56.2040296089193,-56.2059131553124,-56.2059830280142,-56.2076265920587,-56.2082945203184,-56.2084583003915,-56.2085101889277,-56.2095432243409,-56.2097417814996,-56.210519647665,-56.2109678704917,-56.2117665920006,-56.2126917945634,-56.212742343856,-56.2128908382648,-56.2129331603158,-56.2130865181325],&#34;lat&#34;:[-34.8476687062727,-34.8474658483203,-34.8468181876385,-34.8461750226085,-34.845468885102,-34.8454419045207,-34.844708853134,-34.8438723650691,-34.8436356707288,-34.8432819958951,-34.8426850876278,-34.8422237081479,-34.8421786095064,-34.8421470983588,-34.8420801833707,-34.8418700163823,-34.8409708510138,-34.8408137976876,-34.8399427751457,-34.8399113089178,-34.8402691201168,-34.8405137362716,-34.8410980843015,-34.8414106488324,-34.8425791848096,-34.8426717875661,-34.8420048500811,-34.8414289720048,-34.8400377680957,-34.8391135645409,-34.838872301193,-34.8387901824504,-34.8393220318052,-34.8398501032509,-34.8398745490879,-34.8408769959187,-34.840918793558,-34.8410003927469,-34.8410380375872,-34.8411132621291,-34.8411844385693,-34.8412309728355,-34.8416919716781,-34.8423892802042,-34.8432116443185,-34.8439666036703,-34.8440473819964,-34.8441356604288,-34.8448035052819,-34.8451340057294,-34.8454826355267,-34.8457406986165,-34.8460938941018,-34.846329342195,-34.8467421614383,-34.846870135773,-34.8469783265653,-34.847095326634,-34.847141232769,-34.8472235552786,-34.8472951725082,-34.8473639708536,-34.8485478163189,-34.8489303335928,-34.8492635454387,-34.8497230557533,-34.8503400139344,-34.8507045285906,-34.850924905578,-34.8511585760878,-34.8514350384506,-34.8516413062157,-34.8517445192648,-34.8518203816481,-34.8518435612277,-34.8519274875291,-34.8521254458164,-34.8522028899613,-34.8522280452513,-34.8522849346858,-34.8523962662433,-34.8525760384288,-34.8527872907279,-34.8534667164549,-34.8536326136348,-34.8536859328437,-34.8537825760184,-34.8542012202573,-34.8544575424492,-34.854557010414,-34.8546582576812,-34.8547708232915,-34.8548738704936,-34.8550081230644,-34.8551874688909,-34.8554300856813,-34.8556018676069,-34.8557980478871,-34.8562358962584,-34.8564772007053,-34.856664437268,-34.8568890495076,-34.856840795657,-34.8565978633361,-34.8565209632866,-34.8563872875577,-34.8563628381827,-34.8562026916778,-34.8559352978988,-34.8557948104459,-34.8546985467413,-34.8546577757146,-34.8537011571622,-34.8533099972711,-34.8532168350975,-34.8531873195184,-34.8526153117714,-34.8525463084436,-34.8521158097577,-34.851873451434,-34.851446188104,-34.8509509690196,-34.8505185467726,-34.8492836190027,-34.8489417086267,-34.8476687062727]}]],[[{&#34;lng&#34;:[-56.1944384785338,-56.195055574947,-56.195431789804,-56.1960043092336,-56.1964070744499,-56.1969580794506,-56.1974725973007,-56.1985388407362,-56.1986635089843,-56.198544261652,-56.1977838961788,-56.1969518487373,-56.1961993738019,-56.1969578468307,-56.1970194667932,-56.1971411572018,-56.1972645400889,-56.1973277419817,-56.1974593363354,-56.1975341197172,-56.1992550542861,-56.1992967379625,-56.2001507730982,-56.2010338130991,-56.2009909268572,-56.2010420266923,-56.2010112098063,-56.2009981970521,-56.200977337906,-56.2009396712669,-56.2009367233813,-56.2008696463817,-56.201064247123,-56.202457306376,-56.2036349670591,-56.2054238796471,-56.2066670885218,-56.2067894094922,-56.2075381216825,-56.2084271468422,-56.2092882275902,-56.2101374188131,-56.2102005597699,-56.2107371948597,-56.2111311013407,-56.2116673995901,-56.2120671174014,-56.2123689780787,-56.2126461810394,-56.2136216504233,-56.2140510910004,-56.2141907428371,-56.2144699582746,-56.2148243243636,-56.215114650759,-56.2156560933282,-56.2159443653307,-56.2163965218528,-56.2166166320359,-56.2168578797869,-56.2169476994425,-56.2173454764758,-56.2176033208966,-56.2179471795718,-56.2179525276581,-56.2178930436474,-56.217869311408,-56.21785004147,-56.2178043212243,-56.2177576004625,-56.2177094923186,-56.2176600168028,-56.2176091939255,-56.2175573505218,-56.2175041364113,-56.2174495582639,-56.2173939562552,-56.217337006885,-56.217279013643,-56.2172196730396,-56.2171593085747,-56.217097576738,-56.2170351812257,-56.2169714016663,-56.2169066182559,-56.216840807649,-56.2167739731807,-56.2167061348615,-56.2166372693457,-56.2165673599584,-56.2164964667302,-56.2164259170126,-56.2163550237845,-56.2163009092096,-56.2162464744695,-56.2161913360332,-56.2161355339213,-56.2160848677915,-56.2160790514585,-56.2160218819747,-56.2159643723155,-56.2159062023158,-56.2158476654602,-56.2157888117745,-56.2157289308924,-56.2156690500103,-56.2156085087876,-56.2155667739305,-56.2155476040441,-56.2154863758005,-56.215424467206,-56.2153625586115,-56.215299966331,-56.2152370505504,-56.2151747801026,-56.2151245458622,-56.2151108821488,-56.2150469425068,-56.2149830045324,-56.2149190849007,-56.2148544632403,-56.2147898615903,-56.2147355285694,-56.2147989061534,-56.2148276334851,-56.216512281553,-56.218865088289,-56.2189575245888,-56.2189823621034,-56.2190984019481,-56.2191171682931,-56.219307763564,-56.2192968761959,-56.2193472440348,-56.2200334826945,-56.2201454441548,-56.2201678601618,-56.2202788107151,-56.2203900900667,-56.220469809218,-56.2205046438497,-56.220524010001,-56.2205284626774,-56.2205468731556,-56.2206444993101,-56.220788957144,-56.2206701558697,-56.2206528457481,-56.2200550152981,-56.2200165221129,-56.2198474648602,-56.2186995862687,-56.2167700178075,-56.2159720629485,-56.2146255168335,-56.2138050203491,-56.2129963549664,-56.2124763601251,-56.2119707993945,-56.2117732515364,-56.2116148209194,-56.2106901388868,-56.2106253478518,-56.2105507489668,-56.2105413095197,-56.2101270999462,-56.2101051522325,-56.2096663992897,-56.2095600961331,-56.2092162754827,-56.2086262661998,-56.2072636084423,-56.2047329978223,-56.2043222477078,-56.2037749409139,-56.2031545251758,-56.1962468368113,-56.1958662399487,-56.1940661434219,-56.1928418170054,-56.1924235229471,-56.1939339073077,-56.20090782727,-56.1999961162439,-56.1997170865078,-56.1980926220633,-56.1946290308006,-56.1921247351046,-56.1908523701634,-56.1902226806248,-56.1895263014842,-56.1865939164699,-56.184381170717,-56.1843280881326,-56.1842772619202,-56.1842073000057,-56.1841105098802,-56.1838763347351,-56.1837179044869,-56.1835373617931,-56.1834599852214,-56.1831889600301,-56.1830014320671,-56.1828599403462,-56.1828165066964,-56.1827786438362,-56.1827320652311,-56.1827294434623,-56.1827859459354,-56.1828383817279,-56.1829170919041,-56.1829647235523,-56.1830545582156,-56.1831669507627,-56.1832218615816,-56.1833126129677,-56.1834074410397,-56.1834597580209,-56.1836212016982,-56.18380629403,-56.1839489594812,-56.1842010171822,-56.1843440526159,-56.1844915486834,-56.1845390456788,-56.1846128983498,-56.1846723277491,-56.1848787723429,-56.1850236422643,-56.1850878933169,-56.1850953421585,-56.1851386050953,-56.1851840376927,-56.1852222705353,-56.1852842962736,-56.1853890146545,-56.1854677469255,-56.1855964119271,-56.1856584224492,-56.1856754747852,-56.1856354344479,-56.1855626583737,-56.1855035735271,-56.1853970548427,-56.1852102535045,-56.1851226743794,-56.1849971592313,-56.1848718210496,-56.1845736293478,-56.1845120769787,-56.1844220545101,-56.1842158056423,-56.1841425370225,-56.1840243810864,-56.1839110941198,-56.1837214217175,-56.1836943852741,-56.1836595564787,-56.1837002954055,-56.1837504529397,-56.1837228153529,-56.1836685978082,-56.1834685192059,-56.1834857214108,-56.183490702313,-56.1835508116462,-56.1836195120768,-56.1836956021517,-56.1838575123196,-56.1839289416575,-56.1842164605634,-56.1844827020376,-56.1846016719351,-56.1847038954877,-56.1847703276652,-56.1850216983451,-56.1852327582358,-56.1853395466426,-56.1855178227508,-56.1856846974582,-56.1857728763718,-56.1858158209153,-56.1858804313199,-56.1858384939625,-56.1857207697074,-56.1856523040855,-56.1855104783381,-56.1854939969216,-56.1855774352654,-56.1855942791605,-56.1855707582802,-56.185537666318,-56.1854620400239,-56.1854291009531,-56.1854364461995,-56.1854513105321,-56.1854552915436,-56.1854612306482,-56.1854680723016,-56.1854769896088,-56.18548214977,-56.1854832301189,-56.185479428575,-56.185472088748,-56.1854701045997,-56.185466070019,-56.1854702505083,-56.1854713712946,-56.1854757804435,-56.1854770934123,-56.1854784032045,-56.1854797168831,-56.1854798602559,-56.1854800845383,-56.1855003866753,-56.1855208074151,-56.1855335206383,-56.1855387976306,-56.1855515448297,-56.1855593034143,-56.1855496318639,-56.1855373344802,-56.1855338662332,-56.18553656648,-56.1855472020692,-56.1855502153941,-56.1855532287189,-56.1855552664365,-56.1855582690267,-56.1855612716169,-56.1855632876566,-56.1855652929616,-56.1855672982666,-56.1855702792832,-56.1855732711387,-56.1855762737288,-56.1855782790339,-56.1855802951778,-56.1855823112175,-56.1855853353813,-56.1855873406864,-56.185589313683,-56.1855922515523,-56.1855942137101,-56.1855961975457,-56.1855981920118,-56.185601194602,-56.1856042943256,-56.1856073076505,-56.1856093129555,-56.1856113075258,-56.1856133128309,-56.1856152642539,-56.1856159678459,-56.1856107063825,-56.185626729125,-56.1856339079314,-56.1856725424396,-56.185675058112,-56.1857158058975,-56.185715890316,-56.1857190012954,-56.1857205267697,-56.185754582458,-56.1857773934931,-56.1858093705053,-56.1858276255449,-56.1858729413112,-56.1859249532393,-56.1859364201948,-56.186133154885,-56.1861339212178,-56.1861436643675,-56.1861556558644,-56.1861717460375,-56.186202218628,-56.1862666350784,-56.1862806945167,-56.1862889289717,-56.1862995543473,-56.1863043732909,-56.1863105584599,-56.1863235933073,-56.1863308030673,-56.1863383359105,-56.1863472534261,-56.1863568541066,-56.1863712551795,-56.1863859977826,-56.1864254253039,-56.1864370753225,-56.1864439250009,-56.1864545503765,-56.1864627848837,-56.1865078075822,-56.1865239164629,-56.1865369699657,-56.1865434781138,-56.1865534390322,-56.1865616735914,-56.1865688648001,-56.1865784469294,-56.1865924878686,-56.1866024115802,-56.1866109690665,-56.1866188433879,-56.1866267177614,-56.1866359583603,-56.1866948360167,-56.1867068276699,-56.1867164284546,-56.186750678983,-56.1867429855883,-56.1867074235501,-56.1866884119224,-56.1866815369705,-56.1866885624167,-56.186713848895,-56.186739262835,-56.1867498883148,-56.1867845530152,-56.1867938309251,-56.1868037732922,-56.1868192550786,-56.1868257818822,-56.1868360471762,-56.186842213794,-56.186931490774,-56.1869496135057,-56.1869664974476,-56.1869630393621,-56.18697327055,-56.187010274191,-56.1870321380188,-56.1870335326443,-56.1870553185804,-56.1870578536118,-56.1870834470193,-56.1870895829051,-56.18707647681,-56.1870898502565,-56.1871058717353,-56.1871736218646,-56.1872103847695,-56.1872095748791,-56.1872326186514,-56.187284244565,-56.1873514809348,-56.1873804993053,-56.1874161800766,-56.1874783102567,-56.1876255562473,-56.1878294329803,-56.1878478275189,-56.187849444655,-56.1878446986136,-56.1878509713278,-56.1878257555108,-56.1877937640641,-56.1877693583003,-56.1877651333507,-56.1877612953921,-56.1877786772209,-56.1878188752437,-56.1878226290026,-56.1878107206736,-56.1877021209681,-56.1876572513433,-56.1876069385728,-56.1875543409781,-56.1875294001467,-56.1875295972796,-56.1874920387691,-56.1874934994183,-56.1874915021382,-56.1875120378071,-56.1875338056479,-56.1875405039462,-56.1875418619642,-56.1875542552047,-56.1875815692913,-56.1876136723841,-56.1876986740081,-56.1877534889182,-56.1878094000446,-56.1878213325527,-56.1878358628589,-56.1878613628849,-56.1878688007312,-56.1878369317434,-56.1878384008865,-56.1878289561198,-56.1878063303365,-56.1877585438168,-56.1877408960695,-56.1877023064544,-56.1876556395485,-56.1876305873316,-56.1876198470269,-56.1875862629098,-56.1875884341077,-56.1875682553937,-56.1875420749647,-56.1875151936795,-56.187458064516,-56.1873979743072,-56.1873678594011,-56.1872993143762,-56.1872681247666,-56.1872237093887,-56.1871949647271,-56.1871352396285,-56.1871226340389,-56.1871150563809,-56.1870959971375,-56.1870732868445,-56.1870373096964,-56.1869941423298,-56.1869760501085,-56.1869417311333,-56.1869064184425,-56.1868596475246,-56.1868247901207,-56.1867972628798,-56.1867697247429,-56.1867445734384,-56.1867245344058,-56.186695455555,-56.186631784489,-56.1865753938444,-56.1865219968834,-56.1864851721585,-56.1864400555452,-56.1863699790005,-56.1862547404023,-56.1862128597409,-56.186176919122,-56.1861445598294,-56.1860990278057,-56.186079280955,-56.1860451555432,-56.1860055760685,-56.1859575582837,-56.1857619951351,-56.1857283682095,-56.1855459325603,-56.1854367767867,-56.1853373304997,-56.185300274514,-56.1852673458652,-56.1852595155769,-56.1852596625277,-56.1852934126418,-56.1853079663976,-56.1853346263968,-56.1853565153938,-56.1853509437704,-56.1853699098017,-56.1853726362078,-56.1853337315603,-56.1853433142107,-56.1853370113768,-56.1853964747519,-56.1854360111835,-56.1854449557965,-56.1854550412061,-56.1854422514851,-56.1853788671295,-56.1851656600899,-56.1851567092237,-56.1851452868746,-56.1851551327857,-56.1852039733907,-56.1852510259903,-56.1852647893384,-56.1852948356674,-56.1853434959711,-56.1853665945503,-56.1853872925164,-56.185434635474,-56.1854497755738,-56.1854692533273,-56.185482380514,-56.1854812169973,-56.1854926710295,-56.185473092599,-56.1854591958488,-56.185390378066,-56.1852736270212,-56.1852417211915,-56.1852005760136,-56.1851164026032,-56.1850695246771,-56.1850074332799,-56.1849928955741,-56.1849864503752,-56.1849297511339,-56.184803696541,-56.1847712796144,-56.1847227691797,-56.184693738166,-56.1845129974534,-56.1844775026895,-56.1844504768766,-56.1842005363092,-56.1841245656708,-56.1840347439308,-56.1838939183868,-56.1838431499125,-56.183755390903,-56.183576687491,-56.1835035902096,-56.1834707774539,-56.1834852582553,-56.1834759563748,-56.1834440966105,-56.1833971861676,-56.1833520520575,-56.1833068675046,-56.1832448109171,-56.1832129069635,-56.1831941310302,-56.1831229051305,-56.1830816292602,-56.1830348134494,-56.1830085949278,-56.1829841906753,-56.1828324236551,-56.1826901673733,-56.1826285280843,-56.1826249174722,-56.1826062745243,-56.1825800805987,-56.1825407774124,-56.182473704071,-56.1824564539246,-56.1823890216481,-56.1823010554483,-56.1823198943307,-56.1823351226009,-56.1823284316502,-56.1823376997634,-56.1823380374375,-56.1823234519988,-56.1822915939021,-56.1822950836185,-56.1823394285716,-56.1823733885857,-56.1823791240436,-56.1823755446976,-56.1823252245796,-56.1822728867543,-56.1822415255806,-56.1822232107184,-56.1822253105514,-56.1821545815746,-56.1821525942998,-56.1821512586109,-56.1821495410585,-56.1821364943299,-56.1821068148568,-56.1821352957951,-56.1821634724099,-56.1821841901779,-56.1822180113703,-56.182241006146,-56.1822519713844,-56.1822860898135,-56.1823237625756,-56.1823564907044,-56.1824328092304,-56.182500875584,-56.1824851433038,-56.1824844266842,-56.182501477978,-56.1825241546729,-56.1825301565183,-56.1825376549687,-56.1825121330564,-56.1824878167659,-56.1824627959453,-56.1824417300811,-56.1824186431746,-56.1824140712334,-56.182417264547,-56.182441258588,-56.1824608570287,-56.1824611038227,-56.1825120830306,-56.1825761915097,-56.1825709171229,-56.1825691783095,-56.182579174298,-56.182607325066,-56.1826148326879,-56.1826374989608,-56.1826432540122,-56.1826701924884,-56.1827244383811,-56.1827458560934,-56.1827510066663,-56.1827964530208,-56.1828193027217,-56.1828184322728,-56.1828249548033,-56.1828366254054,-56.1828366825182,-56.1828502736942,-56.1829162422992,-56.1829384374959,-56.1829692721481,-56.1829826928195,-56.1831253122053,-56.1831378232409,-56.1831530081555,-56.1832001753975,-56.1832192439816,-56.1832438012298,-56.1832833412049,-56.1833354509959,-56.1833781071614,-56.1833765205098,-56.1833860708518,-56.1834144296439,-56.1834501939217,-56.1834803807399,-56.1835068356333,-56.1835258350151,-56.1835392181672,-56.1835300459368,-56.1835176128581,-56.1835037011001,-56.1835049025531,-56.183488813839,-56.1834851777972,-56.1834756720615,-56.1833543478248,-56.1833299481579,-56.183251064559,-56.1832172925586,-56.1831742932994,-56.1831771960464,-56.1831690197464,-56.1831805369361,-56.1831599767493,-56.1831392960838,-56.1831266232981,-56.1831470121465,-56.1831510167117,-56.1831267938027,-56.1830419041896,-56.1829863676313,-56.1829669630406,-56.1829266026423,-56.1829002157006,-56.1828817503442,-56.1828577371266,-56.1828014376749,-56.1827548328062,-56.1827342275963,-56.1827024412032,-56.1825852382586,-56.18256005944,-56.182500008887,-56.1824179744964,-56.1823603397727,-56.1823604406581,-56.1823681058613,-56.1823326067201,-56.1823246496998,-56.182293711244,-56.1822487693163,-56.1821737668857,-56.1821457115835,-56.182106398392,-56.1820807672567,-56.1820823964303,-56.1820655477409,-56.1820759322632,-56.1820099544868,-56.1820142746314,-56.1820064760262,-56.1819759231859,-56.1819522301335,-56.1818978896087,-56.1818802325858,-56.1818342959785,-56.1818199319039,-56.1817868073207,-56.181770999168,-56.181722362835,-56.1815961765075,-56.1814860638863,-56.1814167714838,-56.181377621293,-56.1813756315168,-56.1813760896698,-56.1813091105436,-56.1813130880115,-56.1813151807575,-56.1813227638349,-56.1813415793719,-56.1813584868415,-56.1813924414361,-56.1814377902403,-56.1814453520568,-56.1814341825464,-56.181415474148,-56.1814204633878,-56.1814380362005,-56.1814423008999,-56.1814456109403,-56.1814486566778,-56.1814438692088,-56.1814609655258,-56.1814496029992,-56.1814186053462,-56.1813984032608,-56.1814588523526,-56.1814717319116,-56.1814875659109,-56.181399695594,-56.1814104598954,-56.1814154078638,-56.181484419705,-56.1815843145567,-56.1817370274813,-56.1818124434586,-56.1819271355249,-56.1820379826916,-56.1821452296683,-56.1822103757658,-56.1822854269716,-56.1823988517177,-56.1824135426275,-56.1824296180013,-56.1824405507229,-56.1824518432134,-56.1824743915088,-56.1824901071138,-56.1825017231044,-56.1825129972521,-56.1825246128259,-56.1826285272506,-56.182638435277,-56.1826483612294,-56.1826599955629,-56.1826740211296,-56.1826880466963,-56.1827089053703,-56.1827198564347,-56.182733217492,-56.1827445099825,-56.1827561443159,-56.1827763564065,-56.1827968919972,-56.1828259865854,-56.18290850706,-56.1829492730841,-56.1830092265036,-56.1830452467468,-56.1830837136685,-56.1831132976757,-56.1831582746215,-56.1831644611454,-56.1831730389025,-56.1832047102362,-56.1832088469529,-56.1832235928911,-56.1832304443413,-56.1832372953745,-56.1832496317367,-56.1832544517225,-56.1832623462105,-56.1832675080393,-56.1832864544771,-56.1832934818513,-56.1832928540275,-56.1832904994799,-56.1832884863584,-56.1832861318107,-56.1832841191061,-56.1832683201248,-56.1832528442268,-56.1832508311052,-56.1832488184006,-56.183246805279,-56.1832427794528,-56.1832390950527,-56.1832347273835,-56.183230378474,-56.1832273406573,-56.1832246626095,-56.1832226499048,-56.1832209786262,-56.1832176356522,-56.183214634938,-56.1832092609164,-56.1832052346733,-56.1832028801257,-56.1832005439209,-56.1831937850185,-56.1831870073564,-56.1831420208223,-56.1831358893268,-56.1830777076544,-56.1830600343732,-56.1830420009062,-56.1830358881703,-56.183023985782,-56.1830127850054,-56.1830056471576,-56.18297580385,-56.1829720823474,-56.1829687026877,-56.1829419893276,-56.18293963478,-56.1829287941892,-56.1829073994054,-56.1828876942429,-56.1828747855022,-56.1828618763447,-56.182855745266,-56.1828482843349,-56.1828425130252,-56.1828381086704,-56.1828255596986,-56.1828198071485,-56.1828140541815,-56.1828103330958,-56.182787377507,-56.1827975431664,-56.1828054564141,-56.182837109405,-56.18284500431,-56.1828594271649,-56.1828687069507,-56.1828762416699,-56.1828841365748,-56.1829037029157,-56.1829156974349,-56.182935245433,-56.1829551348571,-56.1829643963002,-56.1829736577432,-56.1829829191862,-56.1829918204435,-56.1830093182175,-56.1830264562227,-56.1830425691159,-56.1830854045405,-56.1830922559907,-56.1830987660147,-56.183152534161,-56.1831829965379,-56.1831953141404,-56.1832103839956,-56.1832254350912,-56.1832401626866,-56.1832545492728,-56.1832627489182,-56.1833329346982,-56.1833442280224,-56.1833555209298,-56.1833640803441,-56.1833731846228,-56.1833808398207,-56.1833893996519,-56.1833976176402,-56.1834089105475,-56.1835015107844,-56.1835814625237,-56.1836391517837,-56.183681790444,-56.1837513453842,-56.1837813975271,-56.1838656046856,-56.1839244925962,-56.1839969644609,-56.184099359677,-56.1841876917447,-56.1842540890436,-56.1842709957719,-56.1843611443472,-56.1843666774091,-56.184440188654,-56.1844525066734,-56.184479211279,-56.1844942996855,-56.1845145313695,-56.184556093846,-56.1845656973404,-56.1845722257072,-56.1845787357313,-56.18458797904,-56.1845965388712,-56.1846064654489,-56.1846146650943,-56.1846232249255,-56.1846321265997,-56.1846406678796,-56.1846594959231,-56.1846783056237,-56.1846930338444,-56.1847379574293,-56.1847633140481,-56.1847890308525,-56.1847979325267,-56.1848102690973,-56.1848226242192,-56.1848346193637,-56.1848678710958,-56.1849600917814,-56.184968651821,-56.184977571838,-56.1849844234965,-56.184994026991,-56.1850166690847,-56.1850389880952,-56.1850595801734,-56.1851103680327,-56.1851244500868,-56.1851361221481,-56.1851477942093,-56.1852026114383,-56.1852391204753,-56.1852473757744,-56.1852569794773,-56.1852645515074,-56.1852697135446,-56.1852972875569,-56.1853045179524,-56.1853114069219,-56.185318295683,-56.1853248615692,-56.1853334772625,-56.1853420929558,-56.1853507086492,-56.1853596661855,-56.1853706735289,-56.1853816808723,-56.1853940362026,-56.185402956428,-56.1854122182879,-56.1854232070801,-56.1854345189556,-56.1854420726429,-56.1854506326825,-56.1854595529079,-56.1854664047749,-56.185472914799,-56.1854808101208,-56.185484263777,-56.1854880778273,-56.1854901649453,-56.1854915687943,-56.1854929911946,-56.1854937115661,-56.1854940905115,-56.185494810883,-56.1854962332833,-56.1855000658848,-56.185509346296,-56.185526808114,-56.1855346848846,-56.1855500781358,-56.1855637444547,-56.1855746961444,-56.1855859709174,-56.1856313287167,-56.1856877534093,-56.1858215641897,-56.1858843874226,-56.1859843296946,-56.1860305222673,-56.186069307895,-56.1861263747217,-56.1861631291977,-56.1861994685639,-56.1862687690956,-56.186328461443,-56.1863285814931,-56.1863286535212,-56.1863108757298,-56.1863047884747,-56.1862421747386,-56.1860668271932,-56.1860502150865,-56.1860333940007,-56.1860492249437,-56.1860518752587,-56.1860973933308,-56.186068126602,-56.1860781853388,-56.1860777403754,-56.1861267592434,-56.1861760986734,-56.1862422148226,-56.1863413441726,-56.1863733952271,-56.1864073704924,-56.1865283566174,-56.1866170260847,-56.1866831023064,-56.1867282688707,-56.1867490074441,-56.1867555303324,-56.1867692609547,-56.1868112518095,-56.186867230143,-56.1869368536479,-56.1869924327316,-56.1871046465347,-56.1871424468053,-56.1872204642721,-56.1872621417053,-56.1873284756446,-56.1874364302758,-56.1875249837049,-56.1875929570674,-56.1877466787747,-56.1878760862632,-56.1879139326868,-56.1880504626775,-56.1882917161563,-56.1884526472366,-56.1886030521971,-56.1887120347011,-56.1888133543826,-56.1888902451892,-56.1889531766201,-56.1891635934209,-56.1893677134877,-56.1895230888204,-56.1897669688264,-56.189866299724,-56.1899654664328,-56.190017183342,-56.1900980699796,-56.1906448959618,-56.1909042409773,-56.1912810975191,-56.19129816257,-56.1914127785584,-56.1917119214496,-56.1919494176055,-56.1921052221246,-56.1922832922933,-56.1924838416246,-56.1925374399388,-56.1925983129564,-56.192698334826,-56.1929423614453,-56.1932406463657,-56.1934216472887,-56.1936738461978,-56.193839375415,-56.1940172183777,-56.1941498227479,-56.1942623789389,-56.1943176619054,-56.1943986914646,-56.1944329305592,-56.1944384785338],&#34;lat&#34;:[-34.8467421614383,-34.846329342195,-34.8460938941018,-34.8457406986165,-34.8454826355267,-34.8451340057294,-34.8448035052819,-34.8441356604288,-34.8440473819964,-34.8439666036703,-34.8432116443185,-34.8423892802042,-34.8416919716781,-34.8412309728355,-34.8411844385693,-34.8411132621291,-34.8410380375872,-34.8410003927469,-34.840918793558,-34.8408769959187,-34.8398745490879,-34.8398501032509,-34.8393220318052,-34.8387901824504,-34.8387202518293,-34.8386481046635,-34.8380100024964,-34.8377405547796,-34.8371686874177,-34.8362032613148,-34.8361277039349,-34.8349650028437,-34.8348485357512,-34.8339947542658,-34.8333017201837,-34.8322417968875,-34.8314434367922,-34.8313672241383,-34.8309059512911,-34.8303940072685,-34.8299001692502,-34.829368327365,-34.8294106768064,-34.8296344121925,-34.8297954785919,-34.8300192106429,-34.830180253697,-34.8303055383094,-34.8304173726519,-34.8308278539514,-34.8310095198944,-34.8309318021367,-34.8307769080735,-34.8305730162546,-34.8304098821222,-34.8301017565473,-34.8299386257499,-34.8296803492168,-34.8295534804539,-34.8294175336761,-34.829364039421,-34.8291271344617,-34.828973568045,-34.8287657571274,-34.8287651772392,-34.8286797265034,-34.8286437446132,-34.8286122550399,-34.8285492959036,-34.8284908490944,-34.8284278999633,-34.8283649541672,-34.8283065173632,-34.8282480872293,-34.8281896570953,-34.8281312336316,-34.8280728135028,-34.8280189057011,-34.8279604922425,-34.827906591111,-34.8278526933145,-34.8277987988531,-34.8277494100487,-34.8276955222574,-34.8276461434581,-34.8275967679939,-34.8275473958648,-34.8275025360628,-34.8274576762608,-34.8274083141368,-34.8273679666619,-34.827327619187,-34.8272872717121,-34.8272558888605,-34.827229015001,-34.8271976321494,-34.8271707616249,-34.8271466591946,-34.8271438944355,-34.827117027246,-34.8270901600566,-34.8270678018592,-34.8270409380049,-34.8270185831426,-34.8269962316153,-34.826973880088,-34.8269560342178,-34.8269426406437,-34.8269336860256,-34.8269158468255,-34.8268980076253,-34.8268801684252,-34.8268623292251,-34.826848999017,-34.8268266541599,-34.8268223019153,-34.8268223419359,-34.8268090150629,-34.826795691525,-34.826786870309,-34.826773546771,-34.8267647288901,-34.8267603866507,-34.8267232180888,-34.8267063705704,-34.8257183625855,-34.8243346089484,-34.8242819153427,-34.8239846217844,-34.8227251322334,-34.8225239418077,-34.8206936107889,-34.8206479835708,-34.8201164085214,-34.8197005166431,-34.8196361866287,-34.8192846979134,-34.8180674701579,-34.8168251636535,-34.8159756380132,-34.8154482126732,-34.8153240185013,-34.8152954636506,-34.8150764873838,-34.813829778005,-34.8122473819229,-34.8123214319443,-34.812332221495,-34.8127048511848,-34.8127275028668,-34.8128341886521,-34.8135278889798,-34.8147430823527,-34.815254812932,-34.8160611554501,-34.8165698311205,-34.8170711563334,-34.8162704834059,-34.8154877930858,-34.8151835891409,-34.8149344971255,-34.8135572339431,-34.8134588183662,-34.8133455046397,-34.8133188531283,-34.8121450896529,-34.8120873794054,-34.8108525358984,-34.8106004658995,-34.8091502446499,-34.809494542213,-34.8102828220824,-34.8117184406115,-34.8119576188064,-34.8122672321601,-34.8126521994908,-34.8165528223486,-34.8161006900109,-34.8138005362576,-34.8120781613181,-34.8114988825692,-34.810791757887,-34.807587005114,-34.8065820268209,-34.8062744481948,-34.8050366231501,-34.8023694809699,-34.8022709701654,-34.802535033016,-34.8022311362887,-34.8025192515438,-34.8037975708057,-34.8047587331684,-34.8048091525043,-34.804851360939,-34.8048909880423,-34.8049457229372,-34.8050207416263,-34.805101183112,-34.8051726733146,-34.805187901168,-34.8052412420106,-34.8053162606997,-34.8053728632244,-34.8054128038227,-34.8055075526871,-34.8056706768145,-34.8056977307669,-34.805847021093,-34.8059172639858,-34.8060363120486,-34.8060909202114,-34.8061790123094,-34.8062721936988,-34.8063678430276,-34.8064788469418,-34.8065354694768,-34.8065763839108,-34.8066384959435,-34.8066868608866,-34.8067939961389,-34.8069868556015,-34.8071839305714,-34.8073125635774,-34.807333934599,-34.8074236675433,-34.8074645552968,-34.8075167688914,-34.8075828429674,-34.8076432741333,-34.8077253698055,-34.8078699310261,-34.8079656070353,-34.8080397986312,-34.8081354279497,-34.8082368002299,-34.8083597569752,-34.808519719472,-34.808611440108,-34.8087228375585,-34.8087855165503,-34.8089577720535,-34.8090009543237,-34.8090384003023,-34.8091523190531,-34.809183848647,-34.8092135239513,-34.8092862214433,-34.8094063167129,-34.8094260402181,-34.8094399807409,-34.8094366456876,-34.8094896396846,-34.8095799062374,-34.80970144225,-34.8099225296037,-34.8100383359947,-34.81021635447,-34.8103237698669,-34.8104155238535,-34.810613072401,-34.810687524131,-34.8110341428911,-34.8111826861653,-34.8112413297427,-34.8113605312179,-34.811436490392,-34.8114929728548,-34.8116665356989,-34.8117425882545,-34.811907973548,-34.8120871059311,-34.8121943078845,-34.8122644107051,-34.8122779110008,-34.8123225406842,-34.8123176715063,-34.8123447454691,-34.8124615590461,-34.8126878891037,-34.8128010407922,-34.8128674016829,-34.8130138572138,-34.8131918956994,-34.8133877366996,-34.8134563654266,-34.8135564703866,-34.8135838911949,-34.8136970562236,-34.8137576207917,-34.8138026573515,-34.8138262094979,-34.8138831188476,-34.8139438234878,-34.8140005060538,-34.814046249645,-34.8140586627134,-34.8140694482758,-34.8140866171302,-34.8140956084339,-34.8141046064077,-34.8141181267138,-34.8141902505766,-34.8142160572191,-34.814231258392,-34.8142456191316,-34.8142667100087,-34.8142903355263,-34.814335678911,-34.8143491858769,-34.8143626528393,-34.8143761597582,-34.8143776338816,-34.8143776538919,-34.8144538398497,-34.8145588806886,-34.8146124216343,-34.8146804033609,-34.8147421885585,-34.8148060481592,-34.8148843752211,-34.8149318063492,-34.8149330136385,-34.8149607812923,-34.8150088927713,-34.8150225197991,-34.815036153497,-34.8150453715844,-34.8150589519214,-34.8150725322585,-34.8150816502942,-34.8150907216392,-34.8150997929842,-34.8151132799398,-34.8151268135861,-34.8151403939231,-34.8151494652681,-34.8151585833039,-34.8151677013396,-34.8151813817283,-34.8151904530733,-34.8151993776759,-34.8152126645283,-34.8152215424402,-34.8152305137336,-34.8152395383878,-34.8152531187249,-34.815267139289,-34.8152807729869,-34.8152898376618,-34.815298862316,-34.815307933661,-34.8153167582121,-34.8153199398529,-34.8153982469045,-34.8154558566153,-34.8155562684003,-34.8156286924179,-34.8156919183584,-34.815771539421,-34.8157717928851,-34.8157811977354,-34.8157810643333,-34.8158367597235,-34.8158999323032,-34.8159984097572,-34.8160504299187,-34.8161023833791,-34.8161375681914,-34.8161840321541,-34.8163155266358,-34.8163174009358,-34.8163246980324,-34.816333682666,-34.8163426472893,-34.8163605898761,-34.8164099886857,-34.8164234689711,-34.8164324602748,-34.8164414449084,-34.8164504428823,-34.8164594408561,-34.8164729278116,-34.8164819191154,-34.816486401427,-34.8164953927307,-34.8165043773643,-34.8165178576498,-34.8165313379352,-34.8165672831398,-34.8165762677734,-34.8165807567551,-34.8165897413887,-34.8165987326924,-34.8166662074909,-34.8166796811063,-34.8166976770539,-34.8167021660357,-34.8167156596613,-34.8167246442949,-34.8167291332767,-34.8167336155883,-34.8167425868817,-34.8167470691934,-34.816751551505,-34.8167560338167,-34.8167605227984,-34.8167649984399,-34.8167963879617,-34.8168053659251,-34.8168143505587,-34.8168544445696,-34.8168780300666,-34.8168609946143,-34.8168688986906,-34.816881058295,-34.8169053108026,-34.8169495002589,-34.816967522887,-34.8169765075206,-34.8170169750574,-34.8170304686831,-34.8170394533167,-34.8170664539082,-34.817075451882,-34.8170799275236,-34.8170844165053,-34.8171832741554,-34.817206019219,-34.81721984635,-34.8172555447606,-34.8172849866111,-34.8173426363426,-34.8173980849388,-34.8174446689634,-34.8174812811786,-34.8175129908654,-34.8176020434588,-34.8176288772977,-34.8176566716319,-34.8177462511637,-34.8177730183016,-34.8178962685315,-34.8180666564049,-34.8181469444782,-34.8183227418081,-34.8184172438785,-34.8184706781026,-34.8185122328668,-34.8185431621511,-34.818621982801,-34.8187692587549,-34.8190061209108,-34.8190382441442,-34.8191383557744,-34.8191532367822,-34.8192166561559,-34.819222672592,-34.8192180502081,-34.8192631868196,-34.8192981485602,-34.819329907896,-34.8194636768841,-34.8195924232819,-34.8196280950121,-34.8196548888303,-34.8197241178668,-34.8197465160849,-34.8197872971167,-34.8198568329781,-34.8199292636658,-34.8199768415363,-34.8201950140534,-34.8202574595915,-34.8202960728387,-34.8203803162852,-34.8205161063156,-34.8205784784825,-34.8206161445745,-34.8207063110757,-34.8207645411064,-34.8208320292451,-34.8208916266477,-34.8209257976038,-34.8210117886183,-34.8210544706305,-34.8210801972317,-34.8211425760687,-34.8211970708397,-34.8213379168109,-34.8214023367006,-34.8214443983929,-34.8214946109554,-34.8215651273226,-34.8215787476802,-34.8216267390973,-34.8216774252374,-34.8217230887873,-34.8217602746317,-34.8218146560109,-34.8219928212286,-34.822085128834,-34.8221178457069,-34.8221393634708,-34.8221488150119,-34.8221509627862,-34.8221351879841,-34.8221274506604,-34.8221424050394,-34.8221564122633,-34.8221812717507,-34.822271638355,-34.8223030945778,-34.8223321629024,-34.8223738510687,-34.8224046402809,-34.8224245638893,-34.8224397850726,-34.8224346490905,-34.8224411524444,-34.8224478358913,-34.8224566937928,-34.8224806728261,-34.8225080015267,-34.8225353410199,-34.8225572189696,-34.8225658500875,-34.8225783632075,-34.8226051170052,-34.8226083653471,-34.8226107931585,-34.8226124674626,-34.8226312298648,-34.8226603721683,-34.8227269598426,-34.8227430814903,-34.8227719297014,-34.8227948215073,-34.8228296394638,-34.8228590079432,-34.8228823266359,-34.8229032507604,-34.8229182518301,-34.8230060304331,-34.8230130607255,-34.8230780075536,-34.8231328291598,-34.82321042251,-34.8232462543228,-34.8232736217702,-34.8232869619834,-34.8233226470538,-34.8233707518626,-34.823377028433,-34.8234294888215,-34.8234908871528,-34.8236247428523,-34.8236696059893,-34.8238755855516,-34.8240057927028,-34.8240318661495,-34.8240654568064,-34.8241914751306,-34.8242145937201,-34.8242319093169,-34.8242749448448,-34.8243617095916,-34.8244765021264,-34.8247600083378,-34.8248095405495,-34.8248727398096,-34.825107073995,-34.8252554905373,-34.8253581167976,-34.8254402858409,-34.8255066800821,-34.8255572461604,-34.825600955369,-34.8256101867965,-34.8257045287844,-34.8257323698094,-34.8258183007929,-34.825896447762,-34.8260699105545,-34.8261147937019,-34.8261698354216,-34.8261954286207,-34.8262395146904,-34.8262857752148,-34.8263103345473,-34.8263339934154,-34.826417863336,-34.8264365796551,-34.8264866254651,-34.8265281735591,-34.826617386235,-34.8267018131095,-34.8269777287396,-34.8270416450362,-34.8270663577812,-34.8270996015925,-34.827209431568,-34.8272559922472,-34.8272814120235,-34.8273408693538,-34.8273589420077,-34.8273636977937,-34.8273877201826,-34.8273739230671,-34.8273825041593,-34.8274335204697,-34.827470893077,-34.8275147290177,-34.8275809098155,-34.8276026176774,-34.8276197431762,-34.8276307155015,-34.8276169017107,-34.8275906981969,-34.8275722853676,-34.8275785686081,-34.8275801694336,-34.8276159912412,-34.8276269468913,-34.827661151198,-34.8276798074862,-34.8276829757868,-34.8277732256643,-34.8278928773718,-34.8279766839263,-34.8280123156358,-34.8280464399013,-34.8280712927185,-34.8281054770149,-34.8281202813165,-34.828153721896,-34.8281988251569,-34.8282749577538,-34.8282888449157,-34.8283383637872,-34.8285397243006,-34.8285629329366,-34.8285923581119,-34.8286680538168,-34.8287179395441,-34.828815279745,-34.8289330871679,-34.8289701629555,-34.8289949290614,-34.8290383047647,-34.8291344676917,-34.8291965630492,-34.8293360416485,-34.8294507041162,-34.8295049054026,-34.8296630769757,-34.8297204765781,-34.8297590631449,-34.8298086753978,-34.8298334948646,-34.8299249553664,-34.8299579390436,-34.8300006877569,-34.8300145682487,-34.8300175731318,-34.830042679413,-34.8300546489194,-34.8301304446758,-34.8301566715351,-34.8301555176066,-34.830182698291,-34.8302924715706,-34.8303516320812,-34.8304040291037,-34.8304284917197,-34.8304736149909,-34.8305634279764,-34.8306624690544,-34.8307493305178,-34.8307741799999,-34.8308028214377,-34.8308269338731,-34.8308533608355,-34.8309332286921,-34.8309757172712,-34.8310136501675,-34.8310716200641,-34.8311320245495,-34.8311763340677,-34.8312571557496,-34.8313454512858,-34.8313795288605,-34.831419599526,-34.8314831456317,-34.8315203414812,-34.8315512540903,-34.8315806659254,-34.8316082634915,-34.8316826585256,-34.8317362861827,-34.8317491828338,-34.8318388857626,-34.8319147115346,-34.8319615290129,-34.8319979244496,-34.8320168842276,-34.8320633648656,-34.8321392006427,-34.8321947726359,-34.832252649151,-34.8323014910066,-34.8323680520005,-34.8326043038416,-34.8326386582257,-34.8326773348389,-34.8327283144637,-34.8327979570469,-34.8328319612504,-34.832855083175,-34.8329452863617,-34.8330172801574,-34.8331336034817,-34.8331722967701,-34.8332171332268,-34.8332356194272,-34.8332680594907,-34.8333067060884,-34.8333593098842,-34.8334165794196,-34.8334326577116,-34.8334448506665,-34.8334584943695,-34.8334827502122,-34.8334926086298,-34.8335220471453,-34.8335668602566,-34.8336819362709,-34.8336866487012,-34.8336884196146,-34.8336978044545,-34.8337474867436,-34.8337977826825,-34.8338357822799,-34.8338961534148,-34.8339209895568,-34.8339164005235,-34.833923881048,-34.8339659394052,-34.8340409947799,-34.834074412014,-34.8341452218658,-34.8341847655929,-34.83421680545,-34.8342685654773,-34.834280561664,-34.8343244476305,-34.8344236354508,-34.8345197083314,-34.8345230433847,-34.8345370406034,-34.8345727523542,-34.8346482946466,-34.8346645263511,-34.8346786302915,-34.8348290912214,-34.8349748363859,-34.834999615832,-34.8350367649907,-34.835083329005,-34.8351109665917,-34.8352181818854,-34.835252379522,-34.8352851097351,-34.8353146149517,-34.8353472484483,-34.8354202027394,-34.8354495345332,-34.8354635217468,-34.835553818315,-34.8356495310099,-34.8356706919231,-34.8357176861592,-34.835743389415,-34.8357735916578,-34.8358062685101,-34.8358274027429,-34.8358730429473,-34.8358973288055,-34.8359533376907,-34.8360126082581,-34.8360623038874,-34.836100260129,-34.8361558854831,-34.8362071852731,-34.8362800862033,-34.8363280342647,-34.8363652734699,-34.8365234350379,-34.8365776329891,-34.8366302868107,-34.8366473022527,-34.8366549928856,-34.8366419895128,-34.8366904745177,-34.836736414877,-34.8367677677131,-34.8367925771747,-34.8368112167876,-34.8368480991421,-34.8368806359222,-34.8369211868353,-34.8369537803112,-34.8369837691106,-34.837065257803,-34.8371419773693,-34.8371960419184,-34.8372475885023,-34.837395594833,-34.837461979069,-34.837520535935,-34.8375776087022,-34.8377129384952,-34.8378271774111,-34.8378677283243,-34.8379154129165,-34.8379844418498,-34.8381665791159,-34.8382136633985,-34.8382303786857,-34.8382265600496,-34.8381418597009,-34.838108899369,-34.8380835796443,-34.8380813351535,-34.8380812951328,-34.8380857574341,-34.8380857274187,-34.8380902030602,-34.8380901396942,-34.8380900963385,-34.838090062988,-34.8380900329725,-34.8380899996219,-34.8381032331135,-34.838103206433,-34.8381076854096,-34.8381121577161,-34.8381166266876,-34.838121095659,-34.8381255446201,-34.8381300202616,-34.8381389982251,-34.8381434738667,-34.8381479461731,-34.8381614131184,-34.8381703677365,-34.8381838080013,-34.838228647793,-34.8382555783485,-34.8382959725141,-34.8383319310589,-34.8383813999045,-34.8384308920956,-34.8384848532581,-34.8384938478968,-34.8385028392006,-34.8385613427056,-34.8385703440145,-34.8385838243,-34.8385883099467,-34.8385927989284,-34.838601780227,-34.8386107782008,-34.8386197728396,-34.8386287708134,-34.8386640256619,-34.8387143316059,-34.8387278552471,-34.8387368732312,-34.8387458945504,-34.8387549158696,-34.8387639338537,-34.838827076418,-34.8388857099901,-34.8388947279743,-34.8389037492935,-34.8389127672776,-34.8389308065809,-34.8389488458843,-34.8389668851876,-34.838989433483,-34.8389984548022,-34.8390119817784,-34.8390210030976,-34.8390300210817,-34.83904805705,-34.8390660930183,-34.8390886446487,-34.8391066839521,-34.8391157052713,-34.8391292322475,-34.8391472782209,-34.8391608185373,-34.8391879858815,-34.8391925082138,-34.8392512618479,-34.8392738468289,-34.8392919228178,-34.8393009541422,-34.8393145077988,-34.8393325671125,-34.8393416017719,-34.8393957697077,-34.8394047910269,-34.8394138156811,-34.8394814939178,-34.839490515237,-34.8395130802077,-34.8395446898429,-34.839571783816,-34.8395898497997,-34.8396079124484,-34.8396124381158,-34.8396259784322,-34.8396350097565,-34.8396440344108,-34.8396666027165,-34.8396801396979,-34.8396936766792,-34.8397027013335,-34.8397703695651,-34.8398334387581,-34.8398469390539,-34.8399009335669,-34.8399099282057,-34.8399279141482,-34.8399414111089,-34.8399458967556,-34.8399548880593,-34.8399773696536,-34.8399863476171,-34.8400043235544,-34.8400222961567,-34.8400312841254,-34.840040272094,-34.8400492600627,-34.8400537423743,-34.8400717216467,-34.8400851952621,-34.8400986688774,-34.8401300984198,-34.8401345874015,-34.8401390763833,-34.8401704759101,-34.8401839128399,-34.8401883851464,-34.8401973564398,-34.8402018220761,-34.8402107933695,-34.840219767998,-34.8402197446526,-34.8402556064808,-34.8402600821224,-34.8402645577639,-34.8402690400755,-34.8402703540865,-34.8402734990418,-34.8402779846885,-34.8402824670001,-34.8402869426417,-34.8403855780402,-34.8404892929322,-34.8406110662787,-34.8406370731843,-34.8406577715621,-34.8406745825072,-34.8407885958382,-34.8407889909465,-34.8409047939948,-34.8409722432666,-34.8409728357512,-34.8409738490259,-34.8409741070299,-34.8409780990887,-34.8409783458827,-34.8409916594155,-34.840996135057,-34.8410095786569,-34.8410230589424,-34.8410410315446,-34.8410949960422,-34.8411039840108,-34.8411129819846,-34.8411174676313,-34.841121949943,-34.8411264322546,-34.8411309112312,-34.8411308912209,-34.8411353735325,-34.8411398558442,-34.8411398324988,-34.841148793787,-34.8411532460832,-34.8411622207116,-34.8412026548979,-34.84122061416,-34.841243075744,-34.8412475580556,-34.8412565393542,-34.8412700229747,-34.8412790042732,-34.841305954839,-34.8413823142195,-34.8413867965311,-34.8413957844998,-34.8414002734815,-34.8414092614502,-34.8414317330394,-34.8414587102855,-34.8414811885448,-34.841535129697,-34.8415531189745,-34.8415666059301,-34.8415800962207,-34.8416483047309,-34.8416880085406,-34.8417015055013,-34.8417104934699,-34.8417239904307,-34.8417329917395,-34.8417915052498,-34.8418050055455,-34.8418185058413,-34.8418320094721,-34.84185001876,-34.8418680213778,-34.8418860239955,-34.8419040299483,-34.841922032566,-34.8419400285137,-34.8419580244613,-34.8419715114169,-34.8419805027206,-34.8419894906893,-34.8420029776448,-34.8420119622784,-34.8420209535821,-34.8420254358938,-34.8420344271975,-34.8420389128442,-34.8420434018259,-34.8420523931297,-34.8420613977736,-34.8420749080745,-34.8420839160535,-34.8420929273675,-34.8421064443386,-34.8421154556526,-34.8421244703017,-34.8421334816157,-34.8421469985868,-34.8421650145447,-34.8421785081704,-34.8421874761287,-34.8421919584404,-34.8421964240768,-34.8421963840561,-34.8422008630327,-34.8422008296822,-34.8422545088319,-34.8423069844289,-34.8424866270752,-34.8425375333289,-34.8426368278709,-34.8427088716925,-34.8427839971032,-34.8429695027732,-34.8431053361593,-34.8432447247122,-34.843366964421,-34.8435373156088,-34.8436697069218,-34.8437491415195,-34.8438336023149,-34.8438884441573,-34.8440192813652,-34.8442625451242,-34.8443307711921,-34.8444080125767,-34.8444904423587,-34.8445701882877,-34.8446691330113,-34.8448244377402,-34.8449296966174,-34.84503143878,-34.8450672280463,-34.845127014292,-34.8451731921262,-34.8452470320564,-34.8452738880286,-34.8453023562926,-34.8454712796703,-34.8455971639014,-34.8456759248265,-34.8457342409621,-34.8457720888063,-34.8458243451245,-34.845859245401,-34.8458827318029,-34.8459150138215,-34.845990897618,-34.84606378679,-34.8461022460032,-34.8460886817331,-34.84613202708,-34.8461874189952,-34.8462400749411,-34.8463539237386,-34.846404347673,-34.8465377138264,-34.8466489673397,-34.8467281505478,-34.8468154244201,-34.8468859528835,-34.8470413006122,-34.8471351971184,-34.8472261224845,-34.8472355516112,-34.8473087450551,-34.8473614705627,-34.847402500113,-34.8474735200232,-34.8474690792575,-34.847412100632,-34.8472616567158,-34.8472171392363,-34.8471510835043,-34.8470899153147,-34.8470445388867,-34.8467553218943,-34.8466285402456,-34.8465069137733,-34.8465023580904,-34.8464708566067,-34.8464262557794,-34.8464238809511,-34.846423437389,-34.846436450767,-34.8464760823046,-34.8464900688242,-34.8464998440277,-34.8465218059003,-34.8466120247823,-34.8467545700345,-34.8468928995026,-34.8471343628504,-34.8473639708536,-34.8472951725082,-34.8472235552786,-34.847141232769,-34.847095326634,-34.8469783265653,-34.846870135773,-34.8467421614383]}]],[[{&#34;lng&#34;:[-56.2447061185028,-56.2448790952488,-56.2448696769578,-56.2447870492621,-56.244371143031,-56.2441897416103,-56.2437731354973,-56.2436389720547,-56.2434520266545,-56.2429842291742,-56.2426014404429,-56.2424089620469,-56.2422981233346,-56.24217762117,-56.2421716149805,-56.2420963612401,-56.2420871602821,-56.2415012398561,-56.2414439510744,-56.2414977205562,-56.2415688821869,-56.2417960285313,-56.2417844201158,-56.2419220078838,-56.2417221023215,-56.2418984142964,-56.2418633796925,-56.2418126283182,-56.2418670691022,-56.2420433403671,-56.2421928308506,-56.2422870846804,-56.2423080827651,-56.242235622103,-56.2420586804513,-56.2420249020268,-56.2420793014353,-56.242361436181,-56.2424172170477,-56.242455439256,-56.2425217402271,-56.2425600880547,-56.2422665541398,-56.2421663909954,-56.2424360811959,-56.2425523384478,-56.2426471367509,-56.2427351478877,-56.2428733242401,-56.2430457224795,-56.242918166319,-56.2428690050394,-56.2427529571645,-56.242831200737,-56.242770473582,-56.2427161569612,-56.2428570094269,-56.2427101544385,-56.2428163083016,-56.2428822323356,-56.242947529187,-56.2430413226005,-56.2431356595734,-56.2431641139646,-56.2430708641786,-56.2431494410174,-56.2431393803794,-56.2430299113336,-56.2432095682655,-56.2433544023325,-56.2434668800779,-56.243324325877,-56.2432187028409,-56.243222184312,-56.2434758004133,-56.2435622897051,-56.2437280047273,-56.243976001963,-56.2441088555212,-56.2443219137073,-56.2444117784381,-56.2443464370133,-56.2444566701952,-56.2446216616129,-56.2445689078981,-56.2444679392314,-56.2443818862677,-56.2443097474175,-56.2442797827106,-56.2443524836695,-56.244431970451,-56.2444379535366,-56.2444224722192,-56.244438600537,-56.2444488791713,-56.2444612322087,-56.2444712373686,-56.2444788212798,-56.2444785678158,-56.2444663215,-56.2444492727075,-56.2444414553426,-56.2444285086657,-56.2444238062405,-56.2444351320815,-56.2444511603477,-56.2444596647336,-56.244471264049,-56.244489340038,-56.2445084832439,-56.2445238711799,-56.2445338696697,-56.2445257121293,-56.2445124186068,-56.2444718910391,-56.2444695831822,-56.244469009553,-56.2444763199899,-56.2444873056554,-56.2445200391323,-56.2445356083562,-56.2445009660338,-56.2444948762264,-56.2444761599073,-56.2444615056831,-56.2444496062129,-56.2444554825768,-56.2444712707192,-56.2444818895289,-56.2445075294187,-56.2445318086068,-56.2445434279325,-56.2445540467422,-56.2445711622358,-56.2445869103575,-56.2446166323525,-56.2446296457305,-56.2446344748877,-56.2446386703848,-56.2446448869241,-56.2446282301162,-56.2446215870924,-56.2446213902037,-56.2446540556537,-56.2446667574344,-56.2446602894349,-56.2447111886279,-56.2447380416331,-56.2447538764662,-56.2447629146337,-56.2447726928369,-56.2447963050143,-56.2448246996582,-56.2448414749763,-56.2448603447079,-56.2448757726645,-56.2448963299331,-56.2449468456497,-56.2448683445878,-56.2447419490288,-56.2448214811168,-56.2449345212635,-56.2450348265558,-56.2450977979218,-56.2451783658712,-56.2452104186878,-56.2452527370235,-56.2452961995329,-56.2453931558223,-56.2454397810123,-56.2454316344908,-56.2454800976637,-56.2454900561329,-56.2455072183172,-56.2455261480797,-56.2455398884994,-56.2455625001608,-56.2455984853859,-56.2456241719665,-56.2456419878213,-56.245669748805,-56.2457156257982,-56.2457361363761,-56.2457559866134,-56.2457721015909,-56.2457888969194,-56.2458056722375,-56.2458282372082,-56.2458525497468,-56.2458734471908,-56.2458894954673,-56.2459045165474,-56.2459236864338,-56.2459538353157,-56.2459771273279,-56.2459932423055,-56.2460065758486,-56.24602605923,-56.2460459294776,-56.2460548674205,-56.2460518525323,-56.2460252521471,-56.2459890334682,-56.2459497398702,-56.2459249495024,-56.2459035693922,-56.2458994768909,-56.2458031871491,-56.2457654337003,-56.2457392382398,-56.2457410589148,-56.2457524714672,-56.2457679928052,-56.2457762637374,-56.2457903243222,-56.2458143166957,-56.2458287441363,-56.245840430163,-56.2458687612773,-56.2458920767985,-56.2459070778683,-56.2459152153984,-56.2459069044455,-56.245900361071,-56.2458564893213,-56.2458410496023,-56.2458209134311,-56.2457830472359,-56.2458010965444,-56.2458161290838,-56.2458454994441,-56.2458565081335,-56.2458689062367,-56.2458585218385,-56.2458980356372,-56.2459424020879,-56.245953728594,-56.2459676984078,-56.2459725583049,-56.2459731519444,-56.2459719243741,-56.2460106600376,-56.2460230492078,-56.2460177616174,-56.2460082567155,-56.2459943695535,-56.2459930688827,-56.2459996322676,-56.2460054886213,-56.2460303881292,-56.246041006939,-56.2460669669939,-56.2460929070385,-56.2461174530308,-56.2461392709496,-56.2461655044789,-56.2461801653732,-56.2461968539799,-56.2462197324456,-56.2462420039316,-56.2462512953901,-56.246252729463,-56.2462449521187,-56.2462395493323,-56.2462410034156,-56.2462479069759,-56.246249121851,-56.2462501931679,-56.2462634721159,-56.2463180281438,-56.2463927255791,-56.2463828003024,-56.2463898360671,-56.2464126024914,-56.2464652532723,-56.2465136300908,-56.2466729514818,-56.2466987623553,-56.2467341336803,-56.2468371759741,-56.2468842859388,-56.2468967903436,-56.2469878295493,-56.2470298616237,-56.2470786620843,-56.2471016139211,-56.2471283276981,-56.2471745248565,-56.2471933478973,-56.2472131781243,-56.2472363834252,-56.2472363167241,-56.2472174469925,-56.2471982104051,-56.2471916737006,-56.2472107768859,-56.2472285327097,-56.2472469688844,-56.2472732491044,-56.2472937396719,-56.2473118623516,-56.2473463934935,-56.2473880349691,-56.2474242269676,-56.2474471321137,-56.2474756001287,-56.2475030409473,-56.2475620580506,-56.2475761253055,-56.2475980699562,-56.2476549993161,-56.2477016433717,-56.247735260709,-56.2477530632235,-56.2477749411732,-56.2477947513898,-56.2478182701858,-56.2478335914206,-56.2478479054694,-56.2478618993531,-56.2478735053386,-56.2478779009389,-56.2478716377088,-56.2478589244856,-56.2478455242414,-56.2478335580701,-56.2478232594255,-56.2478300095734,-56.2478354323701,-56.2478265010973,-56.2477976929069,-56.247766857004,-56.2477552109979,-56.2477288440664,-56.2477140964607,-56.2476891169114,-56.2476548859243,-56.2476333281397,-56.2476024922369,-56.2475798872456,-56.2475459497431,-56.2475222508543,-56.2475163945007,-56.2475267731866,-56.2475399533173,-56.2475484310228,-56.2475640924331,-56.2476057339087,-56.2476392178439,-56.2476928921918,-56.2477331615891,-56.2477691782011,-56.24778975548,-56.2477976862368,-56.247811153182,-56.2478191706502,-56.2478115424188,-56.2478645930716,-56.24789611335,-56.2479127587406,-56.2479287407782,-56.2479710380106,-56.2480157762026,-56.248084871229,-56.2481305313084,-56.248175159973,-56.2482057233386,-56.2482386336446,-56.2482937820861,-56.2483731139633,-56.2484227619376,-56.2484545516657,-56.2485023963405,-56.2485488936536,-56.2485639147337,-56.2485836515792,-56.2486109123049,-56.2486327702443,-56.2486721105331,-56.2487012122082,-56.2487371574127,-56.248789851255,-56.248800363343,-56.2488016640138,-56.248812876463,-56.2488299919566,-56.2488399971165,-56.2488527570304,-56.2488847068411,-56.2489022092008,-56.2489231066449,-56.2489569974565,-56.2489953105489,-56.2490294948453,-56.2490725303732,-56.2490984704178,-56.2491172067472,-56.249144467473,-56.2491710678581,-56.249184701556,-56.2491987354604,-56.2492231413804,-56.2492249423092,-56.2492407104413,-56.2492656699802,-56.249292997407,-56.2493380406369,-56.2493578241731,-56.2493748262749,-56.2493816031032,-56.249396917668,-56.2494235180532,-56.2494497782629,-56.2494627449501,-56.2494829153525,-56.2495130242138,-56.249541378837,-56.2495646241585,-56.2495878961605,-56.2496149501129,-56.24964229755,-56.249666570068,-56.2496963587641,-56.2497223855201,-56.2497483722554,-56.24976993004,-56.2497911276388,-56.2498109578658,-56.2498369579414,-56.2498735834968,-56.2499040125231,-56.2499334143531,-56.2499700599188,-56.2500114946211,-56.2500583788004,-56.2500977190892,-56.2501432559071,-56.2501822693606,-56.250216140162,-56.2502561874821,-56.2502914456656,-56.2503232820845,-56.2503482416234,-56.2503790308356,-56.2504317246778,-56.2504775816607,-56.250526833728,-56.250574698413,-56.2506089093898,-56.2506622635726,-56.2507238686772,-56.250780664635,-56.2508001280061,-56.2508209854295,-56.2508391481298,-56.250859365223,-56.2508928691685,-56.2509294280228,-56.2509626318135,-56.2509876313731,-56.2510269249711,-56.2510662452496,-56.2511291510251,-56.251152736522,-56.2511807709801,-56.2512313970893,-56.25127586002,-56.2513299012237,-56.2513657997375,-56.2514006443745,-56.2514280451724,-56.2514646707278,-56.2515200726333,-56.2515631748623,-56.2515830250995,-56.2515984530561,-56.2516295891138,-56.2517034538744,-56.2525644045554,-56.2526100347547,-56.2526661703719,-56.2526781565535,-56.2527137349022,-56.2527684831372,-56.2528040548158,-56.2528373786684,-56.253024608561,-56.253146985007,-56.2532641515581,-56.2533506720641,-56.2533743603399,-56.2533019982847,-56.2536800199067,-56.2538653454434,-56.2540580181068,-56.2540648416329,-56.2540975669488,-56.2541512314078,-56.254161056702,-56.2542344312131,-56.2542448072083,-56.2546327186115,-56.2546963760944,-56.2547286683313,-56.2547751218632,-56.2548196176283,-56.2549161700214,-56.2549068262991,-56.2549185620027,-56.2549716326514,-56.2550728413454,-56.2552061293604,-56.2552934473774,-56.2553899996836,-56.2554147778138,-56.2555276795774,-56.2555977135646,-56.2559706794631,-56.256098959263,-56.2561155606818,-56.2560925988572,-56.2559774026346,-56.2557636745992,-56.2556957805002,-56.2555780738362,-56.255548971184,-56.2553722561786,-56.2553370268852,-56.2551311934161,-56.2548941800829,-56.2550129503183,-56.255109011026,-56.255206956369,-56.2553091081414,-56.2553518919913,-56.2553729380146,-56.2553674994736,-56.2553597296515,-56.2553903891083,-56.2554578543621,-56.2556298921956,-56.2559024662351,-56.2565464535438,-56.2570791700861,-56.2575842570514,-56.2580699705833,-56.2594589335737,-56.2598249700815,-56.260247052817,-56.2604610336989,-56.2605560817874,-56.2607569229801,-56.2609359286312,-56.2610067651634,-56.2610294235156,-56.2610101268972,-56.260966257606,-56.2609946789302,-56.2610890609388,-56.2612377709657,-56.2614710379341,-56.2617765688375,-56.2618604654385,-56.2619626981625,-56.2621669501672,-56.2622136275732,-56.2625494874515,-56.2629036057294,-56.2630948351103,-56.2631275848571,-56.263157901226,-56.2633402891303,-56.2633581015494,-56.2633873717191,-56.2634688043426,-56.2635530184442,-56.2636263193768,-56.2636372119107,-56.2636552601831,-56.2636858448916,-56.2637005739323,-56.2658539188129,-56.2660974206239,-56.2653150600679,-56.265288209838,-56.2650942583612,-56.2650922413686,-56.2650187641425,-56.2649849540599,-56.2649801667714,-56.2649748038746,-56.2649777311765,-56.2650580065808,-56.2651229825678,-56.265136103766,-56.2651312444124,-56.2651246973489,-56.2650844879045,-56.2650366693245,-56.2649988496741,-56.264946654395,-56.2648893741909,-56.2646167402533,-56.2643691421245,-56.2641872567082,-56.2643776203229,-56.2644202978036,-56.2644836258904,-56.2645434890017,-56.2648422098671,-56.2649359115247,-56.2650442073757,-56.2650512043175,-56.2650526917513,-56.2651396733715,-56.2652128903409,-56.2652225126656,-56.2653872718205,-56.2653932109007,-56.2653904792903,-56.2653938064633,-56.265453422031,-56.2655466186948,-56.2655597720065,-56.2657222298119,-56.2657229053674,-56.2657749952684,-56.2658900098702,-56.2659114194176,-56.2659244800152,-56.2660864390067,-56.2661130199941,-56.2662620071738,-56.2664978370497,-56.2664976070422,-56.2665979553499,-56.2666916036468,-56.2669806260363,-56.2670672106903,-56.2670820572822,-56.2665042003314,-56.2663385266008,-56.265301893393,-56.2645993581202,-56.2641892284863,-56.263832315014,-56.2629211287977,-56.2626868512282,-56.2626110795582,-56.262519205574,-56.2622408961686,-56.2620931308182,-56.2617481364544,-56.2615279581489,-56.2604617925674,-56.2598468389914,-56.2593409627728,-56.259238682322,-56.2588281946112,-56.2585130624811,-56.2581503086332,-56.2578686500683,-56.2575188071968,-56.2574045340673,-56.2571414984131,-56.2570296674057,-56.2567545337139,-56.2564297460446,-56.2560651880033,-56.2559504770825,-56.2557900853087,-56.2556138368053,-56.2552938855519,-56.2552794514412,-56.2550613307946,-56.2549558445488,-56.254386831094,-56.2534787761202,-56.2530457661392,-56.2529342819773,-56.2530424607926,-56.2528673395895,-56.2527707677607,-56.2527655057167,-56.2522040349325,-56.2517083497327,-56.251273045235,-56.2497965370953,-56.2478371399174,-56.2476757099971,-56.247700448993,-56.2473223736235,-56.2472441196895,-56.2471590921426,-56.2470582582281,-56.2469293183972,-56.2468419199903,-56.2467844436816,-56.2466968251612,-56.2465621957294,-56.246484969235,-56.2464003819521,-56.2462731599996,-56.2461744357516,-56.2460822066491,-56.2460705745218,-56.2460456840385,-56.2460115114838,-56.2460002872684,-56.2459825966087,-56.2459691561381,-56.2459464719065,-56.2458829320824,-56.2458410971737,-56.2457416681649,-56.2455657551728,-56.2454073268006,-56.245302119209,-56.2451280160862,-56.2449951475625,-56.2449601561832,-56.2448103255784,-56.2446811789742,-56.2446194204571,-56.244531448421,-56.2444384871452,-56.2444025886314,-56.2443250953328,-56.24425604151,-56.2441803471721,-56.2441649327328,-56.2441474650792,-56.2441059222996,-56.244069501715,-56.243982507459,-56.24397179867,-56.2438954604257,-56.2435828058484,-56.2434846685698,-56.2432831312986,-56.2431611817394,-56.2422939911737,-56.2421654184502,-56.2420617781912,-56.2421008282005,-56.2422190091702,-56.2424168870386,-56.2426945810234,-56.2427309473311,-56.2430815909608,-56.2432286283499,-56.243739873976,-56.2441664050108,-56.2445533545898,-56.2446572454505,-56.244922544494,-56.2456261935297,-56.2456429448824,-56.2457741550035,-56.2457957944228,-56.2464948380615,-56.2465007496566,-56.2467800120172,-56.2472239308626,-56.247374604977,-56.2473509602522,-56.2474657249045,-56.2474637022103,-56.2474988498167,-56.2477329219,-56.2478427216117,-56.2477554278146,-56.2477286871337,-56.2475842416771,-56.2475962414875,-56.2476402926836,-56.2476082795315,-56.2475864667118,-56.2475487615468,-56.2473974118975,-56.2472825552799,-56.2472285198455,-56.2470006077602,-56.2469433623594,-56.2468565985439,-56.2468432365563,-56.2468461097091,-56.2467396563536,-56.246738861693,-56.2468638676303,-56.2468529873001,-56.246733390668,-56.2465119234337,-56.2459831323283,-56.2457650868717,-56.2445266310044,-56.2443068129865,-56.2443010640419,-56.244176237704,-56.244163862311,-56.2441909374381,-56.2442508396871,-56.2441603045992,-56.2439928706411,-56.2439351008658,-56.2439747697515,-56.2440674073303,-56.2442533577968,-56.2442765595474,-56.2443090115766,-56.2438256352046,-56.2438043892521,-56.2443767688145,-56.2443879215739,-56.2442571945601,-56.2442969562231,-56.244442993297,-56.2444497131545,-56.2446081813275,-56.2446078526936,-56.244611796507,-56.2446916582359,-56.2446544154424,-56.244629976387,-56.2446613019785,-56.2450908274955,-56.2450972422523,-56.2449098776691,-56.2448725252145,-56.2449979629011,-56.2450136107736,-56.2448656101527,-56.244843231058,-56.2447684640561,-56.2448571321135,-56.2450521695451,-56.2450579408677,-56.2450036530982,-56.2450162384396,-56.2450531975004,-56.2450327432797,-56.2449828573888,-56.2447497594297,-56.2444328234821,-56.2444080333649,-56.2448904495334,-56.2449301827799,-56.2449495591484,-56.244886251073,-56.244889734079,-56.2447824122857,-56.2445733349189,-56.2446177466387,-56.2447962520913,-56.2447826768918,-56.2447856387694,-56.2447202871661,-56.2445898290758,-56.2442689755249,-56.2441672505471,-56.2440534216336,-56.2433713080719,-56.2433636678138,-56.2433465476827,-56.2433339832194,-56.244953532154,-56.244839630523,-56.2430776634388,-56.2430566915851,-56.2444492645282,-56.2443717467772,-56.2442904703345,-56.2441960468823,-56.2440181222089,-56.2438507674801,-56.2438295506537,-56.2439952179696,-56.2441292524288,-56.2440994142342,-56.2439111486881,-56.2438493392883,-56.2439913210211,-56.2440190423372,-56.244141771126,-56.2441575111555,-56.2441523720144,-56.244074393082,-56.2441139119334,-56.2437876049956,-56.2435846720338,-56.2435353958295,-56.2438265403665,-56.2439161638084,-56.2443142378108,-56.2446506256565,-56.2447061185028],&#34;lat&#34;:[-34.8905830132787,-34.8912136180717,-34.8913542583211,-34.8914977937201,-34.8916292078522,-34.8916810877097,-34.8916448896928,-34.8916963324231,-34.891820261542,-34.8924241410297,-34.8926532709358,-34.892639002104,-34.8926177736821,-34.8926618317234,-34.8928223607213,-34.8928741689763,-34.8930023218941,-34.8935502131099,-34.893764092453,-34.8939330825211,-34.8940155747046,-34.8939805259329,-34.8940397105199,-34.8941180585993,-34.8941988598457,-34.8942774495175,-34.8944777931399,-34.8945823158795,-34.8946783782771,-34.8947615257165,-34.8947487831088,-34.894726579542,-34.8948497826491,-34.8949085879341,-34.8948983682719,-34.8949619728588,-34.8950625931306,-34.895064352028,-34.8950145591722,-34.8950694961508,-34.8950790258011,-34.8951202888399,-34.8951549251809,-34.8952181159524,-34.8953702186752,-34.8953618267328,-34.8952803692974,-34.8953356164001,-34.8953501518545,-34.8953439437928,-34.8952866159432,-34.8952179362811,-34.8952035386826,-34.895117419734,-34.8951033667456,-34.8949936308335,-34.8947164562376,-34.8944420475655,-34.8943287531098,-34.8943793042889,-34.8944982249853,-34.8945261584986,-34.8944948383262,-34.8944084091156,-34.8943212220827,-34.8941986391375,-34.8940891789521,-34.8939608668149,-34.8936748169304,-34.8935663210273,-34.8933664589385,-34.8931339630354,-34.8928008784712,-34.8926683394668,-34.892440270783,-34.8921514159752,-34.892118840165,-34.8921583290427,-34.892100671499,-34.8920945280002,-34.892179103979,-34.8923859405864,-34.8927208281248,-34.893400115297,-34.8937526984544,-34.8941679006518,-34.8942211368283,-34.8942214005215,-34.8942850273701,-34.8944228943383,-34.8944688789858,-34.8945049150705,-34.8945545423312,-34.8945680101102,-34.8945724832504,-34.8945814562114,-34.8945994504915,-34.8946129466185,-34.8946309750829,-34.8946445362434,-34.8946536059208,-34.8946626455828,-34.8946717019201,-34.8946897453922,-34.8946987216882,-34.8946896553458,-34.8946806131825,-34.8946760683386,-34.8946669953261,-34.8946669319601,-34.8946668811005,-34.8946848762144,-34.8946939167101,-34.8947029747149,-34.8947346560538,-34.8947526911883,-34.894775227811,-34.8948022450778,-34.8948112230413,-34.8948134774711,-34.8948553961886,-34.8948787820499,-34.8948923223663,-34.8949104116955,-34.894919473869,-34.8949330341958,-34.8949465353253,-34.8949600039381,-34.8949644762446,-34.8949643920345,-34.8949643119932,-34.8949642736401,-34.8949687459466,-34.8949731965752,-34.8949776513727,-34.8949730464978,-34.8949775104667,-34.8949865084405,-34.8950045227309,-34.8950180230267,-34.8950352087454,-34.8951271757518,-34.8951486829593,-34.8952241654626,-34.895262481604,-34.8953353310922,-34.8953201135124,-34.8953332005718,-34.8953556829999,-34.8953730110786,-34.8954998423466,-34.8955042712974,-34.8955086844067,-34.8955131367028,-34.8955265953105,-34.8955355582662,-34.8955445045467,-34.895559365252,-34.8957381145038,-34.896079074236,-34.896104661555,-34.8961137282014,-34.896088063177,-34.8960215391751,-34.8958759379088,-34.8957593577663,-34.8957309426364,-34.8957359921536,-34.8957592974588,-34.8957356886522,-34.8956639517147,-34.8956507460048,-34.8956597273034,-34.8956731917473,-34.895700170661,-34.8957136459439,-34.8957225855543,-34.8957404939568,-34.895749423562,-34.8957583781801,-34.895771807606,-34.895785177001,-34.8957851094662,-34.8957895500896,-34.8957985113779,-34.895807469331,-34.8958119207934,-34.8958118465885,-34.8958207803625,-34.8958297249755,-34.8958251651239,-34.8958206086073,-34.8958250525658,-34.8958384736541,-34.8958474107632,-34.8958563712177,-34.8958563270282,-34.8958562628284,-34.8958652107764,-34.8958741954101,-34.8958877257213,-34.8959013344063,-34.895905960959,-34.8959105975169,-34.8959090988667,-34.895906242771,-34.8959051788847,-34.89590736454,-34.895943348565,-34.8960146437116,-34.8960239593138,-34.8960509632404,-34.8960779538268,-34.8960914466187,-34.8961004145771,-34.8961138556756,-34.896127329291,-34.896140811244,-34.8961422113752,-34.8961451476471,-34.8961360846397,-34.8961225368194,-34.8961000293784,-34.8960910372409,-34.8960550155795,-34.896054430348,-34.8960642584304,-34.8960102997692,-34.8959967194322,-34.895986244083,-34.8959875597083,-34.8959879629264,-34.8959963602653,-34.8960276197587,-34.8960366294768,-34.8960144359395,-34.8960277646096,-34.8960415118629,-34.8960322094019,-34.89601417927,-34.8959691015089,-34.8959556375814,-34.8959650137219,-34.8959779764326,-34.8959915292554,-34.8960186165584,-34.8960321410333,-34.8960456404953,-34.8960546351341,-34.896113142808,-34.8961176142807,-34.8961130219123,-34.8961039222194,-34.8960903202045,-34.896076727361,-34.8960586130189,-34.8960495508453,-34.8960359746771,-34.8960313923139,-34.896040332758,-34.8960538230486,-34.8960673391859,-34.8960853918295,-34.8960989304783,-34.8961169539402,-34.8961304517347,-34.8961323901641,-34.8961322282951,-34.8961383032035,-34.896137642736,-34.8961880439167,-34.8962129513962,-34.8962389627956,-34.8962680680052,-34.8963433014697,-34.8963555864961,-34.89629864591,-34.8962598542091,-34.896236103161,-34.8962357429303,-34.8962540125236,-34.8962121420504,-34.8961987234324,-34.896179078732,-34.8961953076825,-34.8962042456254,-34.8962131702281,-34.8962220314647,-34.8962264754232,-34.8962264103897,-34.8962173190344,-34.8962037987283,-34.8961903401206,-34.8961723775235,-34.8961633845523,-34.8961543082047,-34.8961497425168,-34.8961451734937,-34.896136072967,-34.8961314981076,-34.8961314380767,-34.8961313238511,-34.8961176651403,-34.8961085312631,-34.8961084553906,-34.896126388806,-34.8961443255564,-34.8961891978649,-34.8961981658232,-34.8962116144257,-34.8962474812564,-34.8962788741132,-34.8963012973441,-34.8963057446377,-34.8963056729341,-34.896301100576,-34.8962875018961,-34.8962739298967,-34.8962648685569,-34.8962603145416,-34.8962557688639,-34.8962467408746,-34.8962242275973,-34.8962107489793,-34.8961972720289,-34.8961973120496,-34.8961883324186,-34.8961702831101,-34.8961612501182,-34.8961522671521,-34.8961343345705,-34.8961209159835,-34.8961164478458,-34.8961075215757,-34.8960985561186,-34.8960941321704,-34.8960852317469,-34.896080796126,-34.896067377539,-34.8960584387624,-34.8960405236898,-34.8960180679421,-34.8960090733034,-34.8959639700425,-34.8959323779163,-34.8959188292622,-34.895905256429,-34.8958915977182,-34.8958869795031,-34.8958868019115,-34.8958866315113,-34.8958955622628,-34.8959090150341,-34.8959225094935,-34.8959495059163,-34.8959810280064,-34.8960117619316,-34.8960432515516,-34.8960444771149,-34.8960787059661,-34.896091724513,-34.8960672254157,-34.8961046434003,-34.8961075469268,-34.8961255967299,-34.8960932489472,-34.8960969244438,-34.8961148428514,-34.8961371943787,-34.8961365665549,-34.896154793455,-34.8961546884008,-34.8961500226612,-34.8961498675812,-34.8961453110647,-34.8961272175667,-34.8961090990559,-34.8961045200277,-34.8961088956176,-34.8961178127164,-34.8961267073036,-34.8961355460286,-34.8961174833799,-34.8961039580712,-34.8960904002457,-34.8960948500406,-34.8961128443207,-34.896135336754,-34.8961667796366,-34.8961802415792,-34.8961891861922,-34.8961980874495,-34.8962024663744,-34.8962023529826,-34.8961931949263,-34.8961840952333,-34.8961705115612,-34.8961523938841,-34.8961387843653,-34.8961297255268,-34.8961341853268,-34.896161145064,-34.8961791676921,-34.8961881289803,-34.896188045604,-34.896183448233,-34.8961652705249,-34.8961561908423,-34.8961381065158,-34.8961245628643,-34.8961109908649,-34.8960973813461,-34.8960837734948,-34.8960792236483,-34.8960791561135,-34.8960835625527,-34.8960789618467,-34.8960788843067,-34.8960833132575,-34.8960922370264,-34.8960921461462,-34.8960920652711,-34.8961009798686,-34.8961099069725,-34.8961098202611,-34.8961142550483,-34.8961141841784,-34.8961141183111,-34.8961185389243,-34.8961274301764,-34.8961273284572,-34.8961272309069,-34.8961406294836,-34.896154011385,-34.8961628692866,-34.8961672448765,-34.8961806134377,-34.8961894980197,-34.8961938919524,-34.8962027715318,-34.8962116677865,-34.8962205757139,-34.8962204923376,-34.8962248962755,-34.8962337341667,-34.8962425954034,-34.8962469376428,-34.8962467775602,-34.8962511698254,-34.8962554987246,-34.8962688139249,-34.8962776368084,-34.8962730661179,-34.8962729960818,-34.8962819490324,-34.8962908953128,-34.8962907835886,-34.8962861545346,-34.8962950574594,-34.8963039870646,-34.896299349673,-34.8962992179384,-34.89629900783,-34.8962989277887,-34.8962988344072,-34.8963031716441,-34.8963075305587,-34.8963118561229,-34.896311736061,-34.8963071120096,-34.8963160349447,-34.8963249261968,-34.8963292467583,-34.8963336106756,-34.8963380496315,-34.8963470125873,-34.8963514148577,-34.8963556753883,-34.8965202636039,-34.8965419247752,-34.8965552583183,-34.8965597239547,-34.8965641112173,-34.8965729424384,-34.8965773297011,-34.8966087659135,-34.8966532054988,-34.896672735571,-34.8967270766825,-34.8955686283082,-34.8954716700861,-34.8954354066154,-34.8954837106938,-34.8946113008556,-34.8937453624522,-34.8937154780336,-34.8936463077893,-34.8933655225789,-34.8933015811508,-34.892959165,-34.8928342729195,-34.8928869392571,-34.8925962741257,-34.8925019933794,-34.8924795849994,-34.8924806379949,-34.8924843507055,-34.8921558243657,-34.8921145450868,-34.8920048605386,-34.8920171839879,-34.8920381458022,-34.8920558511124,-34.8920782204309,-34.8920858622421,-34.8921329919598,-34.89216238232,-34.8923339081492,-34.8924157002269,-34.8925244498376,-34.8925700607837,-34.8927010904615,-34.8928772127059,-34.892932328197,-34.8929871385982,-34.8930031467097,-34.8930076203894,-34.8930042377105,-34.8929844735923,-34.8929302392815,-34.8929946705689,-34.8930429474631,-34.8930921713761,-34.8931305786176,-34.8931719557479,-34.8932309791724,-34.8934415527219,-34.8937268842822,-34.8939028466085,-34.894092016758,-34.8941558150837,-34.8942658271101,-34.8945257395123,-34.894700407508,-34.8947930946803,-34.89483788846,-34.8948872389113,-34.8948457169086,-34.8947041453876,-34.894569097855,-34.8945151362571,-34.8943194377484,-34.894021368193,-34.8937642314143,-34.8934441630135,-34.8932098696825,-34.8928494663132,-34.8925203640867,-34.8921865294197,-34.8918480006651,-34.891531716716,-34.8912422265852,-34.891201376351,-34.8912055318275,-34.891303982601,-34.891272273748,-34.8910998564947,-34.8908295559031,-34.8906804230511,-34.8906501893255,-34.8906186750037,-34.8904143209018,-34.8903850656063,-34.8903369919345,-34.8902132835142,-34.8900161490894,-34.8896418918093,-34.8895767930428,-34.8894255483305,-34.8892636591969,-34.8892717519741,-34.8898564672714,-34.8899554281895,-34.889406392418,-34.8893875495622,-34.8891992781737,-34.8891951996901,-34.8890466239082,-34.8889204874637,-34.8888716062681,-34.8888168476915,-34.8887047886404,-34.8886814278822,-34.8886428720405,-34.888619164436,-34.8885817169492,-34.8885586261228,-34.8885242036021,-34.8885070234993,-34.8884998397176,-34.8885114471761,-34.8880451131687,-34.8873384695678,-34.886891446575,-34.8868689115559,-34.8859729270105,-34.8857246251774,-34.8854295393165,-34.8851100327274,-34.8834281839752,-34.8829834963572,-34.8824695181344,-34.8824334385637,-34.8824259388105,-34.8820072668663,-34.8816253887391,-34.8815720238413,-34.8807682703722,-34.8807311710938,-34.8807301010465,-34.8807248538811,-34.8803690265873,-34.8798127572979,-34.8797472301076,-34.8789125897887,-34.8788366282611,-34.8786332168998,-34.8779502208958,-34.8778985554273,-34.8778433865619,-34.8770639901718,-34.8769018604082,-34.8761672741307,-34.8751452374561,-34.8751155355658,-34.8747392664198,-34.8742702211878,-34.8728405213551,-34.8723940344236,-34.8723213823549,-34.8725383221699,-34.8726120581153,-34.8730384934344,-34.8733450030605,-34.8735113440245,-34.8736756959071,-34.8740656326161,-34.8737365933595,-34.8736821587002,-34.8736554039874,-34.873603878745,-34.8736034818578,-34.8735490286866,-34.8735350613146,-34.8733934207394,-34.8732627355972,-34.8732040926163,-34.8731922356351,-34.873163136427,-34.8731337106598,-34.8730982508585,-34.8730559970021,-34.8730136143138,-34.8729997701504,-34.872964441097,-34.8729512993194,-34.8729161715784,-34.8728685221583,-34.8728173344883,-34.8728038243139,-34.8727814956005,-34.8727536351127,-34.8727092936776,-34.8727093503735,-34.8726785786298,-34.8726636968288,-34.8725816528499,-34.8724585160118,-34.8723968742216,-34.8723837274414,-34.8716958963433,-34.8716820826369,-34.8723503015188,-34.8723479538099,-34.8723155805061,-34.8722571371556,-34.8722135246635,-34.8720066279616,-34.8717382195365,-34.8717162198573,-34.871648625231,-34.8715972969521,-34.8716019691787,-34.87166332285,-34.8717019208163,-34.8717961936018,-34.8718205695065,-34.8718052040821,-34.871882277164,-34.8718699249603,-34.8719554949243,-34.8719881418705,-34.8720372437509,-34.8721089407269,-34.8721448337199,-34.8721353132871,-34.8721269704136,-34.8721307477907,-34.8721323578848,-34.8721446359559,-34.8721657588006,-34.8721948028851,-34.8722221057556,-34.8722351082947,-34.8722601527174,-34.8722720340049,-34.872301019787,-34.8722986852497,-34.8723069361715,-34.872322360793,-34.8723828319796,-34.8724387800001,-34.8724903941188,-34.8725631141224,-34.8725676698052,-34.8726106327956,-34.8726790022222,-34.8727091169198,-34.8726873565515,-34.8727251005003,-34.872769363824,-34.8728347626814,-34.8728669066293,-34.872908068472,-34.872974098135,-34.8731643313176,-34.8732475295929,-34.8734282744744,-34.8734850070662,-34.8736941432564,-34.8737830849592,-34.8744155669797,-34.8747177019276,-34.8750601756563,-34.875498192561,-34.8758084540772,-34.8761598665208,-34.8763601265022,-34.8763875121224,-34.8763645829879,-34.8761143719559,-34.8760233807139,-34.8760323112476,-34.8762042264987,-34.876506223635,-34.8766522692386,-34.8768731698449,-34.876864864301,-34.8768801110833,-34.8768806889997,-34.877082453083,-34.8770788316131,-34.8771014994168,-34.8774559965776,-34.8776495531762,-34.8780137169495,-34.8782447383709,-34.8784666619008,-34.8785129416504,-34.8784767029625,-34.8786951308832,-34.8787950901312,-34.8789414862058,-34.8791792782573,-34.8795352876423,-34.8797198090187,-34.8798871097713,-34.8800502861679,-34.8802845512088,-34.8803317702955,-34.8804449584395,-34.8805752729687,-34.8806040113382,-34.880640506504,-34.88088381406,-34.8809212842958,-34.8810519511794,-34.8811350410567,-34.8812221355191,-34.8813334592085,-34.8816348896674,-34.8818217473601,-34.8820347733914,-34.8823091926096,-34.8823517399299,-34.8821933012645,-34.8822254348133,-34.8822263729707,-34.882291762799,-34.8822982455914,-34.8824491627984,-34.8825667843228,-34.8826868205699,-34.8827695288371,-34.8828629688641,-34.8829704147556,-34.8830647901105,-34.883179845365,-34.8832372496685,-34.8833175402872,-34.8832743349024,-34.8833747019815,-34.8834653603364,-34.8835793287892,-34.8836488656474,-34.8837462620791,-34.8837806695399,-34.8839348101227,-34.8839897066918,-34.883993665017,-34.8839927669293,-34.8841507119298,-34.8841970020988,-34.8842273780882,-34.8843582217191,-34.8845116385752,-34.8846992769582,-34.8847383130133,-34.8848218303486,-34.8848862589588,-34.8849533556182,-34.8851333349602,-34.885357644182,-34.8855313783383,-34.885615678496,-34.8856269397941,-34.8858849235908,-34.8860420351886,-34.8860840834822,-34.8862326901225,-34.8864174128505,-34.8865377020573,-34.8866870028801,-34.8866682835525,-34.886711679116,-34.8868620754624,-34.8869628214478,-34.8870667909538,-34.8873209956404,-34.887384666754,-34.8875615485982,-34.8877511979308,-34.8877849736332,-34.8878262823922,-34.8879769468055,-34.8880975642035,-34.8881306579041,-34.8881700469457,-34.8881345529533,-34.8881439704184,-34.8881432626135,-34.8880452196893,-34.8880406206372,-34.8880852652336,-34.8881253866869,-34.8884101545422,-34.8888616932166,-34.8885894369854,-34.8886596557971,-34.8888693174714,-34.8888989853858,-34.8888951301681,-34.8889950422716,-34.8888900867782,-34.8889627452608,-34.8890597624522,-34.8891713419321,-34.8891855753275,-34.8893361384958,-34.8894723164702,-34.8895623812261,-34.8895967640382,-34.8896773357462,-34.8895943496595,-34.889651397039,-34.8897686140715,-34.8898485284827,-34.8899727231522,-34.8900879426297,-34.8900498303453,-34.8901031232392,-34.890275783199,-34.8902562408579,-34.8902955658702,-34.8904115556157,-34.8905830132787]}]],[[{&#34;lng&#34;:[-56.3556231747956,-56.3515790088226,-56.3451289094162,-56.344503613043,-56.3403431075348,-56.3395910799038,-56.3336360216468,-56.3334581832313,-56.3297962329481,-56.3291718796572,-56.3274086503147,-56.3211747130629,-56.3190460441714,-56.3170963319883,-56.3152571370977,-56.314870272716,-56.3131270555737,-56.3118104192411,-56.3113910162776,-56.3099961369026,-56.3068342262244,-56.3008085586334,-56.2989870725798,-56.2917625039077,-56.2910945723533,-56.2907788897276,-56.2907610348562,-56.2907285347879,-56.2906889186399,-56.2906381346846,-56.2905885190044,-56.2904158236594,-56.2897606970584,-56.2899237115777,-56.2900978009922,-56.2902089053901,-56.2902139555942,-56.2903298521415,-56.2903980872565,-56.2903596921627,-56.2903334817669,-56.2897876790965,-56.2896050736959,-56.2885634768648,-56.2884739707042,-56.2877276191249,-56.2873522522052,-56.2869701951686,-56.286966213115,-56.2868487125169,-56.286579186849,-56.2861714165514,-56.2857776134571,-56.2857586903646,-56.285728247998,-56.2842130198895,-56.283855867529,-56.2830934688189,-56.2825936703958,-56.2823666564034,-56.2821187745512,-56.2820934944316,-56.2817075530625,-56.2814774955979,-56.2808868529889,-56.2807321208345,-56.2807216636504,-56.280469961421,-56.2788351599156,-56.2777602787124,-56.2767037582764,-56.2762312436901,-56.2760540473589,-56.2742034760941,-56.2727474639901,-56.2726187203774,-56.2723076745701,-56.2718626740872,-56.2716481669088,-56.2714568515104,-56.2710802173262,-56.2707914729084,-56.2706453104601,-56.2703186323076,-56.2699878784084,-56.2698324629532,-56.2696997620726,-56.2696099357731,-56.2695373983192,-56.2693094631937,-56.2691327717003,-56.2688079651153,-56.268534953971,-56.2683961560614,-56.2682362602198,-56.2680638780304,-56.2670828787707,-56.2670672106903,-56.2669806260363,-56.2666916036468,-56.2665979553499,-56.2664976070422,-56.2664978370497,-56.2662620071738,-56.2661130199941,-56.2660864390067,-56.2659244800152,-56.2659114194176,-56.2658900098702,-56.2657749952684,-56.2657229053674,-56.2657222298119,-56.2655597720065,-56.2655466186948,-56.265453422031,-56.2653938064633,-56.2653904792903,-56.2653932109007,-56.2653872718205,-56.2652225126656,-56.2652128903409,-56.2651396733715,-56.2650526917513,-56.2650512043175,-56.2650442073757,-56.2649359115247,-56.2648422098671,-56.2645434890017,-56.2644836258904,-56.2644202978036,-56.2643776203229,-56.2641872567082,-56.2643691421245,-56.2646167402533,-56.2648893741909,-56.264946654395,-56.2649988496741,-56.2650366693245,-56.2650844879045,-56.2651246973489,-56.2651312444124,-56.265136103766,-56.2651229825678,-56.2650580065808,-56.2649777311765,-56.2649748038746,-56.2649801667714,-56.2649849540599,-56.2650187641425,-56.2650922413686,-56.2650942583612,-56.265288209838,-56.2653150600679,-56.2660974206239,-56.2658539188129,-56.2636858448916,-56.2636552601831,-56.2636372119107,-56.2636263193768,-56.2635530184442,-56.2634688043426,-56.2633873717191,-56.2633581015494,-56.2633402891303,-56.263157901226,-56.2631275848571,-56.2630948351103,-56.2629036057294,-56.2625494874515,-56.2622136275732,-56.2621669501672,-56.2619626981625,-56.2618604654385,-56.2617765688375,-56.2614710379341,-56.2612377709657,-56.2610890609388,-56.2609946789302,-56.260966257606,-56.2610101268972,-56.2610294235156,-56.2610067651634,-56.2609359286312,-56.2607569229801,-56.2605560817874,-56.2604610336989,-56.260247052817,-56.2598249700815,-56.2594589335737,-56.2580699705833,-56.2575842570514,-56.2570791700861,-56.2565464535438,-56.2559024662351,-56.2556298921956,-56.2554578543621,-56.2553903891083,-56.2553597296515,-56.2553674994736,-56.2553729380146,-56.2553518919913,-56.2553091081414,-56.255206956369,-56.2550129503183,-56.2548941800829,-56.2551311934161,-56.2553370268852,-56.2553722561786,-56.255548971184,-56.2555780738362,-56.2556957805002,-56.2557636745992,-56.2559774026346,-56.2560925988572,-56.2561155606818,-56.256098959263,-56.2559706794631,-56.2555977135646,-56.2555276795774,-56.2554147778138,-56.2553899996836,-56.2552934473774,-56.2552061293604,-56.2550728413454,-56.2549716326514,-56.2549185620027,-56.2549068262991,-56.2549161700214,-56.2548196176283,-56.2547751218632,-56.2547286683313,-56.2546963760944,-56.2546327186115,-56.2542448072083,-56.2542344312131,-56.254161056702,-56.2541512314078,-56.2540975669488,-56.2540648416329,-56.2540580181068,-56.2538653454434,-56.2536800199067,-56.2533019982847,-56.2533743603399,-56.2533506720641,-56.2532641515581,-56.253362654736,-56.2534949311184,-56.2535965702029,-56.2536329156139,-56.2537923111515,-56.2539376727849,-56.2540272256363,-56.2541133834034,-56.2542253211325,-56.2544165730994,-56.2544508040865,-56.2544743762433,-56.2544719283142,-56.2544274453732,-56.2544285059201,-56.2544520647367,-56.2544995825762,-56.2546266014164,-56.2546359929265,-56.2545736607802,-56.2545738075226,-56.2545937444712,-56.254703280962,-56.2547340301535,-56.2547871842331,-56.2547927337618,-56.2547540404733,-56.2547707624306,-56.2548818330459,-56.2549261092136,-56.2549249686253,-56.2548835405932,-56.2548408385706,-56.2548592013741,-56.2549270563687,-56.2549973726326,-56.2550792481912,-56.2551547537981,-56.2553051180114,-56.2554452236008,-56.255500545465,-56.2555750972466,-56.2555983625785,-56.2555868366343,-56.2555584753409,-56.2554332974502,-56.255203739061,-56.2551583089649,-56.2551232909052,-56.2551000389136,-56.2550928218582,-56.2551434079467,-56.2552149181597,-56.2553197388851,-56.2553470062809,-56.2554054564252,-56.2554214446707,-56.2553952178115,-56.255246907991,-56.255202671844,-56.2551637184214,-56.2551505382907,-56.2551447553083,-56.2551860632785,-56.2552334299346,-56.255274682315,-56.2551956749021,-56.2551210097287,-56.255121836822,-56.2551571083457,-56.255225943846,-56.2553111677981,-56.2553702649427,-56.2553527559128,-56.2552787444099,-56.255178814774,-56.2551095304753,-56.2550717910121,-56.2550530947032,-56.2550567032309,-56.2550957767154,-56.2551470765054,-56.2552254169075,-56.2553175844407,-56.2554168556374,-56.2554909538517,-56.2555791593416,-56.2555952679207,-56.2556567927124,-56.2556936396773,-56.2557378723858,-56.2557960178477,-56.2558486959882,-56.2557594323129,-56.2557248678205,-56.2557143716579,-56.2557433773663,-56.2557481868522,-56.2556482403583,-56.2556083077074,-56.2555889577282,-56.2555881506453,-56.255597141949,-56.2556497757602,-56.255726275213,-56.2557707381436,-56.2558431554911,-56.2559298023507,-56.2559600527875,-56.2559486365571,-56.2559406591096,-56.2558971863261,-56.2558580808015,-56.2558504281137,-56.2558995005835,-56.2560241713806,-56.256047032935,-56.256080564154,-56.2561227730304,-56.2560894353013,-56.2560444392983,-56.2560846115491,-56.2561254517768,-56.2561627536494,-56.256215548221,-56.2562640728127,-56.2562959556784,-56.2562936344813,-56.2562790850762,-56.2562867576014,-56.2562968990253,-56.2563282881393,-56.2563698871401,-56.2564890952855,-56.2565661793927,-56.2566066825949,-56.2565382539712,-56.2564555246389,-56.2563957471434,-56.2564055382377,-56.2563881098714,-56.2563877802295,-56.2564279704285,-56.2564597302471,-56.256494324649,-56.2565276757635,-56.2565660082848,-56.2565974758771,-56.2566457160588,-56.2566900893978,-56.2567434264506,-56.2567915607643,-56.2568903755693,-56.2569930551905,-56.2570234935999,-56.2570349234497,-56.2570715854408,-56.2571107825722,-56.2571446878513,-56.2571989213609,-56.2572496314862,-56.2573049293653,-56.2573692799643,-56.2574097300804,-56.2573668056475,-56.2573371259699,-56.2573264482361,-56.2573502794202,-56.2573972657903,-56.2574226700872,-56.2574518670836,-56.2574817939122,-56.2575793909122,-56.2576438707521,-56.2576724388994,-56.257703041996,-56.2577078104747,-56.2578065070771,-56.25801445619,-56.258146170793,-56.2584559804881,-56.2585404212909,-56.2585515131384,-56.2582610837294,-56.2581677882722,-56.2581359745397,-56.2581168953881,-56.2581054755608,-56.258144969262,-56.2581583228155,-56.258177125846,-56.2581919401528,-56.2582037595817,-56.2582028618206,-56.2582048637407,-56.2582028057565,-56.2581119920089,-56.2571771219756,-56.2574001575526,-56.2571845662537,-56.257143457941,-56.2571430600279,-56.2573516161789,-56.2574645870332,-56.2573529459482,-56.2569135368125,-56.2569194019226,-56.2576210962487,-56.2577029153528,-56.257432561834,-56.2565059969242,-56.2561958547162,-56.2561480610469,-56.2564611240184,-56.2569339535024,-56.2569426927022,-56.2568022498774,-56.2567675913707,-56.2567547370443,-56.2567357131679,-56.2567354789601,-56.2567164316516,-56.2566911679568,-56.2566531435832,-56.256154905949,-56.256088368957,-56.2564662233661,-56.2565192264625,-56.2564116657254,-56.2563514150435,-56.255613507233,-56.2555659233821,-56.2555687265661,-56.2556095781051,-56.2565423975605,-56.2565921992125,-56.2566246795526,-56.2567718439026,-56.2568152187669,-56.2568436379379,-56.2568563753625,-56.2568657703582,-56.2571695478851,-56.2571756239651,-56.2573812190597,-56.257362475803,-56.2573910821157,-56.2586253704666,-56.2588430697618,-56.2588894148472,-56.2587527893105,-56.2574459313511,-56.2574176759846,-56.2572910045034,-56.2572782437272,-56.2572842730451,-56.2563285539531,-56.2562880298197,-56.256215204748,-56.2562022796449,-56.2562362122889,-56.2562708246775,-56.2571252544946,-56.2571911837543,-56.2572001340735,-56.2572846663652,-56.2574708172848,-56.2575369299783,-56.2576315636517,-56.257846344418,-56.2579221136002,-56.258148205454,-56.2581655117776,-56.2582459669651,-56.2583434246588,-56.2583494587879,-56.2584156883174,-56.2585349048301,-56.2585758044555,-56.2588182342289,-56.2589004773917,-56.2591466696409,-56.2592100286988,-56.2593614740932,-56.2594342517179,-56.2595862103985,-56.2596839254788,-56.2597505793579,-56.2598418909076,-56.2599084280739,-56.2599526229101,-56.2600349355443,-56.2601580313497,-56.2602842822511,-56.2603475708576,-56.2603852689797,-56.260423223487,-56.260455007604,-56.2605597319362,-56.2605859047987,-56.2605673470275,-56.2605647511661,-56.2605864312186,-56.2607381314778,-56.2607137527871,-56.2605905416167,-56.2606021175211,-56.2605708232571,-56.2603655814926,-56.2603154502197,-56.2603091867275,-56.260151410693,-56.2599060394153,-56.259844127874,-56.2598382609236,-56.2599312030588,-56.2598908638852,-56.2599198188915,-56.2599329398036,-56.2599652252528,-56.2600064504687,-56.2600161487207,-56.2600478855072,-56.2600576303722,-56.2601463440465,-56.2601312683392,-56.260179036554,-56.260391215101,-56.2604512535843,-56.2605140742474,-56.2606560732276,-56.2607766393014,-56.2607802601695,-56.2607961982672,-56.2608689498111,-56.2609070428064,-56.260989003158,-56.2611123278751,-56.2611572662437,-56.2611236088778,-56.261167406468,-56.2612084328267,-56.2612897182771,-56.2613301645458,-56.2613606910184,-56.2614012682544,-56.2614570058367,-56.2615229999652,-56.2615487535153,-56.2615136412458,-56.2615624438711,-56.2616540229978,-56.2617432342736,-56.261788771353,-56.2619073684524,-56.2619453908506,-56.2620011844539,-56.2620418924579,-56.2620438344893,-56.2620358542979,-56.2620815221956,-56.2621854448845,-56.2623303183465,-56.2624194542962,-56.262447612541,-56.262559330114,-56.2625817624681,-56.262683615921,-56.2627569377023,-56.2627951467196,-56.2628540363045,-56.2628843943744,-56.262896533281,-56.2629781353558,-56.2629965597953,-56.2630324379584,-56.2630225737092,-56.2630380327112,-56.2631805184876,-56.2632745578196,-56.2633508074027,-56.2634773116852,-56.2634871760986,-56.2634741786882,-56.2634891711885,-56.2635546797156,-56.2636283187227,-56.2636514789641,-56.2637204374125,-56.2639112383122,-56.2640911118719,-56.2642346048807,-56.2643577725318,-56.2644591778324,-56.2645939617594,-56.2646470887086,-56.2647587499912,-56.2648504579037,-56.2649193225528,-56.2649706767291,-56.2650540688304,-56.2651680240105,-56.2652540453574,-56.2653302016192,-56.2655110432638,-56.2655744075189,-56.265645063767,-56.2657088930109,-56.2657724060461,-56.2658597372188,-56.2658632929995,-56.2659683429678,-56.2660767103402,-56.2661429547549,-56.2662468822083,-56.2663177782912,-56.2664132203837,-56.266504162312,-56.2665903618302,-56.2666063018254,-56.2667131840373,-56.2668415060987,-56.2670944375259,-56.2672734566939,-56.2673065485381,-56.2673810051886,-56.26744335502,-56.2675475536988,-56.2676966482999,-56.2678593317975,-56.2679670311253,-56.2680415782187,-56.2680662155936,-56.2680618372371,-56.2680160639497,-56.2679290771323,-56.2678330309558,-56.2677783493389,-56.2677740616168,-56.2677861685787,-56.2680017192529,-56.2681463146583,-56.2682208620113,-56.2683038334411,-56.2684576386921,-56.2685658517994,-56.2685208038706,-56.2684753027096,-56.2684508163174,-56.2683352370363,-56.2683019075194,-56.2682159445888,-56.2682825511572,-56.2684109929566,-56.2685896764609,-56.2686768441036,-56.2687591200469,-56.2689332437676,-56.2690040164271,-56.2689881651694,-56.2690672105719,-56.2692545882122,-56.2692718584162,-56.2691979158214,-56.2691909631476,-56.2692369850913,-56.2692378605026,-56.2692474917057,-56.2694299463118,-56.2694177785275,-56.2692830910836,-56.2692117130329,-56.2691999679649,-56.2691223727504,-56.2691352649621,-56.2690986715039,-56.2689869287646,-56.2689081864819,-56.2688385928055,-56.2687939685423,-56.2688372652275,-56.2689334283342,-56.268958790027,-56.2690587871804,-56.2691385250471,-56.2695011079045,-56.2695042433439,-56.2696667671221,-56.2698585763712,-56.2704355741615,-56.2704382244594,-56.2707011414586,-56.27109885904,-56.2713138263678,-56.2714585969806,-56.2717276071122,-56.271872407788,-56.272050058338,-56.2722089598765,-56.2722235726944,-56.2723226035776,-56.2723511670063,-56.2723923197234,-56.2727090432459,-56.2727376670556,-56.2727165047891,-56.2725592042274,-56.2725422983467,-56.2726079387827,-56.2727010984726,-56.2728469479217,-56.272956338577,-56.2729670783764,-56.2729466297188,-56.2727700894942,-56.2727807694671,-56.2728657767357,-56.2729645675194,-56.2729723832708,-56.2729170300323,-56.2729192167682,-56.2729548785576,-56.2730698590855,-56.2731111299363,-56.2731472499657,-56.2731227863244,-56.273191843244,-56.2733064851223,-56.2733389839007,-56.2734703335535,-56.2734640474901,-56.2733785219823,-56.2734126503755,-56.2733870512911,-56.2734935594204,-56.2735670906685,-56.273371375609,-56.2733574326604,-56.2734306054805,-56.2736560354658,-56.2737579305368,-56.2737989229888,-56.2737542103378,-56.2736495902587,-56.2736002439851,-56.273454053821,-56.2735223746366,-56.2736019533949,-56.2737058569422,-56.274051978249,-56.2741513276147,-56.2742090276922,-56.2742197680859,-56.2743186995657,-56.2744009634414,-56.274370373048,-56.2741744191212,-56.2739870771059,-56.273868255015,-56.2739065228828,-56.2740630158738,-56.2740956350242,-56.2742191507572,-56.2743980198361,-56.2744334435896,-56.2744992788619,-56.2745647959849,-56.2745287954743,-56.2745691123727,-56.2744970913181,-56.2739897392859,-56.2739976354037,-56.2740496276299,-56.2742780637416,-56.2744482021961,-56.2745588099136,-56.2746244665733,-56.2746266745275,-56.2743065658044,-56.2743439190984,-56.2743374348721,-56.2744049018657,-56.2744315744712,-56.2744948845907,-56.2745861202265,-56.2746131111748,-56.27459324116,-56.2745374893827,-56.2745370916516,-56.2745505175466,-56.2745696916466,-56.2745944946223,-56.2746274724538,-56.2746463880689,-56.274645871094,-56.2746729616166,-56.2746736860742,-56.274785798377,-56.2747893781675,-56.2748147178433,-56.2749289674289,-56.2750306855085,-56.2752338632653,-56.275259123094,-56.275291981683,-56.2753321212833,-56.2753506597881,-56.2756032053524,-56.2757434108234,-56.2757083830532,-56.2756788450234,-56.2758245001517,-56.2758292156324,-56.2759142461674,-56.2760961796299,-56.2760670580122,-56.2760704180248,-56.2761729093792,-56.2762208214026,-56.2762269260887,-56.27635312839,-56.2764303602655,-56.2765623496382,-56.2766704286612,-56.27676369294,-56.2768255352011,-56.2768613764606,-56.2768273787735,-56.276907414458,-56.2769202465911,-56.2769767382186,-56.2770946267989,-56.2771578963906,-56.277095994103,-56.2771375824558,-56.2770618373883,-56.2771526539012,-56.2772946708253,-56.277372238668,-56.2773619131088,-56.2774461922484,-56.2775459503971,-56.2775471105044,-56.2775575243789,-56.2776633077197,-56.277871803441,-56.2778332874241,-56.2778757482667,-56.2780673045843,-56.2781538624697,-56.278145767697,-56.2791176377354,-56.2790732531131,-56.2783652220663,-56.2777779525118,-56.2775820276038,-56.2775700415663,-56.2770699259891,-56.2771240328102,-56.2770590148493,-56.2771345103502,-56.2771394208036,-56.2773054271745,-56.2773306219939,-56.2772277372208,-56.2772861571116,-56.2771788097655,-56.2771550772344,-56.2773250084588,-56.2772592149466,-56.2771517485298,-56.2771782563601,-56.2772044954912,-56.2775661614583,-56.2778402272502,-56.2779365116854,-56.2780232943563,-56.2780482005344,-56.2782217833888,-56.2783202208222,-56.2784739417879,-56.2785364987297,-56.2785922024186,-56.2787108444695,-56.278896113536,-56.2790356725132,-56.2790813111589,-56.2791668068842,-56.279182487491,-56.2790756940605,-56.2791477694346,-56.2792038309662,-56.2792798091827,-56.2794389043273,-56.2794463285377,-56.2793443661582,-56.2792626299868,-56.2793361096602,-56.2795315630025,-56.2796572013449,-56.2797922627716,-56.2799476689927,-56.2796448039347,-56.2797177359124,-56.2798399714493,-56.2799953773731,-56.2800773996545,-56.2801701767535,-56.2802401577222,-56.2802511737509,-56.2802098876379,-56.2802668996973,-56.2801749314373,-56.2802360888844,-56.2802852942608,-56.2803344996373,-56.2805727583163,-56.2805864397368,-56.28037470704,-56.2802952850354,-56.2802559516374,-56.2803722605693,-56.2804754819467,-56.2804162560899,-56.2803971241279,-56.2805440315397,-56.2806133701246,-56.2809513262873,-56.2811197464198,-56.2811994582226,-56.2815472177688,-56.2816434192095,-56.2814887035829,-56.2812809264097,-56.281373302041,-56.2816912420597,-56.2819591705324,-56.2820883513887,-56.2821037507027,-56.2821361378881,-56.2822412659271,-56.2824701743928,-56.2825682853179,-56.2825691800612,-56.2827814743393,-56.283362240564,-56.2836874573308,-56.2836764229725,-56.2836954872742,-56.2836156577741,-56.2834236334029,-56.2834891208535,-56.2836209241976,-56.2834928252355,-56.2834780806432,-56.2835868030771,-56.2836483620143,-56.2838126600803,-56.2838461412954,-56.2838985888859,-56.283979590381,-56.2840643642682,-56.284167502541,-56.2843067964422,-56.2843067992027,-56.2843128246947,-56.28450644903,-56.2846371687398,-56.2847322064677,-56.2847905060414,-56.2849606340617,-56.2849730986855,-56.2851487291253,-56.2852510801636,-56.2854247628086,-56.2854187550513,-56.2855652706131,-56.2858460744627,-56.2859503973348,-56.2859098025776,-56.2855910182841,-56.2855441314893,-56.2856837918129,-56.2858355212167,-56.2858733616594,-56.2857614850588,-56.2856989630359,-56.2857955304448,-56.2856908947654,-56.2855023842309,-56.285563713587,-56.2855497530588,-56.2853868409399,-56.2853710484425,-56.2853214546736,-56.2851757608406,-56.2849157774754,-56.2848762168171,-56.2847690646347,-56.2847593049675,-56.2846941950529,-56.2848014182268,-56.2849916182935,-56.2850521687651,-56.2847810084902,-56.2843718225211,-56.2843372500774,-56.2841898859165,-56.2840911896621,-56.2840334067504,-56.2842259132055,-56.2844983129633,-56.2845048497547,-56.2846235056958,-56.2847357863937,-56.2847060640691,-56.2848949761724,-56.2849995346411,-56.2851155775681,-56.2852291958272,-56.2853223453303,-56.2854040808167,-56.2856632751899,-56.2857550618266,-56.285820902449,-56.285875337189,-56.2860374158044,-56.2860480577998,-56.2860716924491,-56.2859409881098,-56.2859109981126,-56.2860039638489,-56.2860984466595,-56.2861640216297,-56.2862461657697,-56.2864022659164,-56.2865051219852,-56.2864199494306,-56.28651711958,-56.2866063497622,-56.286691169287,-56.2867399077101,-56.2867833721526,-56.2869367645943,-56.2870034122996,-56.2870421271939,-56.2871227091876,-56.2871620274348,-56.2870912043875,-56.2871142845374,-56.2871983339116,-56.2872401641026,-56.2873142392676,-56.2873933111703,-56.2874589327901,-56.2877107499574,-56.2878362045502,-56.2878951291744,-56.2880282965816,-56.2881106988285,-56.287941351644,-56.2879754882991,-56.288002293141,-56.2881064299393,-56.2881021610575,-56.2879844193492,-56.2878295503458,-56.2878325742313,-56.2878809264417,-56.2879665277262,-56.2881181940123,-56.2882477235109,-56.2883505583572,-56.2883801692831,-56.2884460404604,-56.2885792518559,-56.2887050276316,-56.2887341987388,-56.2888395792578,-56.2888726162959,-56.2888794598253,-56.2889562661029,-56.288977170217,-56.2889857879948,-56.289013208803,-56.2890208327349,-56.289016337083,-56.2890034904577,-56.2890151831546,-56.2890312781219,-56.2890490606261,-56.2890651756037,-56.2890771417749,-56.289100046921,-56.2891352650839,-56.289154728455,-56.2891830563978,-56.289212411537,-56.2892225701094,-56.2892258918225,-56.2892172206839,-56.2891938753107,-56.2891622523353,-56.2891532677017,-56.2891340244441,-56.2891459372545,-56.2891421086133,-56.2891540747846,-56.2891995449013,-56.2892286265662,-56.2892512182173,-56.2892635045536,-56.2893050659879,-56.289321087584,-56.2893189398097,-56.2893503960325,-56.2893626756987,-56.2893745684988,-56.2893871483199,-56.2893997214709,-56.2894071519696,-56.2894197718113,-56.2894423167717,-56.289503715103,-56.28969188345,-56.2898457302487,-56.2898660255923,-56.2898234981833,-56.289873690325,-56.28983805337,-56.2897930890043,-56.2897510037601,-56.2896554795182,-56.2896392810798,-56.2896978678979,-56.2897133013173,-56.2896806227133,-56.2896252194545,-56.2895366917141,-56.2895337573459,-56.2894482816187,-56.2893161121847,-56.289233476968,-56.2889466728487,-56.2889275643649,-56.2888680878005,-56.2888343730047,-56.2886972751625,-56.288519174393,-56.2883483321974,-56.2881838758394,-56.2880273213187,-56.2878950988318,-56.2877481630532,-56.2875675638797,-56.2875966709472,-56.2876780456061,-56.2876046990218,-56.2876313107023,-56.2877527693905,-56.2878491230727,-56.2879150291103,-56.2880450961893,-56.2881437245706,-56.2882431848854,-56.2883196888626,-56.2884308551322,-56.2885799869874,-56.288722131342,-56.288936502577,-56.2889556257727,-56.2889744021228,-56.2889959465671,-56.2890013626937,-56.289018338115,-56.2890230738907,-56.2890288168525,-56.2890430775405,-56.2890508882353,-56.2890572915376,-56.289066009367,-56.2890686707395,-56.2890716722875,-56.2890764147333,-56.2890749473098,-56.2890663295321,-56.2890693310801,-56.2890638149019,-56.2890589790746,-56.2890619806226,-56.2890581719917,-56.2890567312487,-56.2890607866735,-56.2890782223322,-56.289078148961,-56.2890928031852,-56.2890981726211,-56.2890800032507,-56.2890754875885,-56.2890709986067,-56.2890569313519,-56.289054123237,-56.2890440847265,-56.2890364941452,-56.2890237475715,-56.2890229404886,-56.2890190384762,-56.2890185515584,-56.2890215531064,-56.2890303709874,-56.2890436044789,-56.289051054988,-56.2890578184761,-56.2890676635534,-56.2890802367044,-56.2891929081453,-56.2892056080282,-56.2892199687678,-56.2892377446019,-56.2892637513476,-56.2892808201504,-56.2893057996997,-56.2893167186642,-56.2893327402603,-56.2893556187259,-56.2893627490699,-56.2893742550038,-56.2895856342334,-56.2896012320617,-56.2896495836645,-56.2896839947445,-56.2897190861754,-56.2897711997184,-56.2898073116755,-56.2898458248711,-56.2899205434054,-56.2899950484962,-56.2900114369482,-56.2900237166144,-56.2900428398101,-56.2900729219909,-56.2901152438174,-56.2901401766759,-56.2901549042713,-56.2901726801054,-56.2902030824513,-56.2902256407519,-56.2902464981753,-56.2902868656605,-56.2903661798982,-56.2903891050546,-56.2904777240911,-56.2905177514008,-56.2905488807884,-56.2905686843349,-56.290588834727,-56.2906080046134,-56.2906501530171,-56.2906720776575,-56.2906854578914,-56.2907022131992,-56.2907186216614,-56.290740552972,-56.2907662395525,-56.2908039189848,-56.2908532444232,-56.2908970803638,-56.2909179577975,-56.2909391553963,-56.2909617670577,-56.2910108457022,-56.2910389535314,-56.2910634575163,-56.2910800747227,-56.2910709563622,-56.2910490526484,-56.2910507511536,-56.291153982698,-56.2911637350315,-56.2911840793904,-56.2912088105308,-56.2912103592061,-56.2912499942211,-56.2913075060046,-56.2913467255907,-56.291347492653,-56.2913608462064,-56.2913773347099,-56.291405802725,-56.2914353312869,-56.2914535206677,-56.2914686151189,-56.2914891990679,-56.2915005515894,-56.2915177204438,-56.2915345224423,-56.2915564537529,-56.291578671878,-56.2915974749085,-56.291637795703,-56.2916651431401,-56.2916822586337,-56.291696666064,-56.2917220391495,-56.2917330048048,-56.2917480458952,-56.2919075305807,-56.2920130492308,-56.2920299246006,-56.2921596813609,-56.2922147450685,-56.2922186824569,-56.2921551001604,-56.292034006254,-56.2920062572221,-56.2920057716332,-56.2920242349996,-56.2920602535753,-56.292082131525,-56.2921217919789,-56.2921607920923,-56.2921823298665,-56.2922127789032,-56.292246676385,-56.2922727098111,-56.2922953214725,-56.2923134374821,-56.2923315801721,-56.2923599347953,-56.2923975408563,-56.292443691324,-56.2924758545781,-56.2924909223489,-56.2925247931503,-56.2925435494901,-56.2926132543147,-56.2928298563788,-56.2928708916421,-56.2928841251336,-56.2928943370669,-56.2929107455291,-56.2929339708404,-56.2929582166779,-56.2930105946504,-56.2930464282264,-56.2931566156528,-56.293222555591,-56.2932476177494,-56.2932963562245,-56.293370739878,-56.2933736654431,-56.2933294030334,-56.2934186303559,-56.2935164806935,-56.2934849586278,-56.2935148703866,-56.2935237624449,-56.2934838265764,-56.2935138429018,-56.2934781737703,-56.2934085504629,-56.2934089241195,-56.2933645572838,-56.2933543987566,-56.2931692256199,-56.2932892304577,-56.2934244977546,-56.2934378287366,-56.2932706450082,-56.2931456333357,-56.2931220611767,-56.2931367087308,-56.2931311458619,-56.2931180524426,-56.2931200067839,-56.2931492618714,-56.2931454265601,-56.2931631290231,-56.2931992528758,-56.2932605637592,-56.2933018456168,-56.2933227388146,-56.2933044218914,-56.2933245922938,-56.2933498920082,-56.2933631221969,-56.2933754931986,-56.2934117083876,-56.2933950519727,-56.2933907697236,-56.2934066954609,-56.2934518125411,-56.2934691148309,-56.2935398972556,-56.2935513999408,-56.2936238073819,-56.2936885279343,-56.293745727107,-56.2937586428115,-56.2937619491455,-56.293761887199,-56.2938130520949,-56.2939425341956,-56.2940387192913,-56.2940799375087,-56.2941714023488,-56.2941314549154,-56.2941242425037,-56.2941438872513,-56.2941752614519,-56.2941856154582,-56.294222990051,-56.294297587546,-56.2943192711419,-56.2944095043604,-56.2944466721246,-56.2944294554334,-56.2944814013718,-56.2945362300758,-56.2945755883015,-56.294574128137,-56.2946196166777,-56.2946432839124,-56.2946931580982,-56.2947764705045,-56.2949112000716,-56.294932511651,-56.2949151535147,-56.2949197278035,-56.2949567716498,-56.2949785514929,-56.2950413013271,-56.2951117244778,-56.2951607946517,-56.2951688259511,-56.2951143277804,-56.2950085003688,-56.2949784652384,-56.2950284065878,-56.2950463428222,-56.2950954129314,-56.2950740875503,-56.2951348947927,-56.2951254029474,-56.2951611238107,-56.2951183354128,-56.2949655459412,-56.294937677256,-56.2949727510214,-56.2949471001662,-56.2949097672159,-56.2947945583625,-56.2947593468748,-56.2947103180475,-56.2946281854527,-56.2946266288092,-56.2946487944561,-56.2946705605381,-56.294725609381,-56.2948258020366,-56.2948981672404,-56.2949629555703,-56.2949347960504,-56.2949743564528,-56.2950121492768,-56.2950405505908,-56.2949611629819,-56.2949442676018,-56.2950600339722,-56.2950945517739,-56.295135853074,-56.2951476524926,-56.2951078786469,-56.2950657235731,-56.2950477743162,-56.2950965127852,-56.2951101064625,-56.2951531419904,-56.295195790652,-56.2952402402425,-56.2952066629258,-56.2952054889871,-56.2952954287046,-56.2953499368158,-56.2953111101252,-56.2953910646932,-56.2954017968947,-56.295429277734,-56.2954207058664,-56.2954539237779,-56.2955424360926,-56.2956651860646,-56.2957431129201,-56.2958256268825,-56.2959118965129,-56.2960043048444,-56.2961119564755,-56.2961701598258,-56.2962566444281,-56.2963565359448,-56.2963851234308,-56.2964400611131,-56.2965135969451,-56.2966056036494,-56.2966479195521,-56.2967389531671,-56.2967557351553,-56.2967827711872,-56.2968172547267,-56.2968531933285,-56.2968843492353,-56.2969281784523,-56.2969269101302,-56.2970022232411,-56.2971210299007,-56.2972752723716,-56.2974766909744,-56.297552463555,-56.2977612533658,-56.297995005933,-56.2981143195385,-56.2982368125629,-56.2983125853455,-56.2984970203305,-56.2987723383967,-56.2988066928867,-56.2988396486283,-56.2989166295839,-56.2989480991469,-56.298958498982,-56.2989948099035,-56.2990370049979,-56.2990610307219,-56.2990827660714,-56.2991190963089,-56.2991636282958,-56.2992084267378,-56.2994224485532,-56.2995167732306,-56.2995818437921,-56.2996685708614,-56.299736998439,-56.2998000385138,-56.2999592806391,-56.3001142805765,-56.3002218293755,-56.3006343754694,-56.3008290155661,-56.3009580357226,-56.3009724164725,-56.3009867972223,-56.3010011779722,-56.3010159055676,-56.3010299261317,-56.3010443068815,-56.3010580072805,-56.3010713608339,-56.3010840073561,-56.3010966805586,-56.3011086734103,-56.3011203194165,-56.3011319520824,-56.3011435980885,-56.3011552440947,-56.3011668634204,-56.3011788562721,-56.3011911959693,-56.3012038424914,-56.301216515694,-56.3012291622161,-56.3012421822642,-56.3012551622917,-56.3012678488345,-56.3012808555424,-56.3012938755905,-56.3013068689582,-56.3013198756661,-56.3013332425597,-56.3013465961131,-56.3013602698317,-56.3013739702307,-56.3013880174752,-56.3014023715446,-56.30141709914,-56.3014318267354,-56.3014468878361,-56.3014619355967,-56.3014776770483,-56.3014930849945,-56.3015088397864,-56.3015249547639,-56.3015413899066,-56.3015578250493,-56.3015749405429,-56.3015924295624,-56.3016105722524,-56.3016290884683,-56.3016482583547,-56.3016677617465,-56.3016879588293,-56.3017085294381,-56.3017290600262,-56.3017496039546,-56.3017701345427,-56.3017906918113,-56.3018108888941,-56.301831085977,-56.3018509362142,-56.3018708131319,-56.3018906767094,-56.3019105269467,-56.3019304038644,-56.3019506009472,-56.3019708247105,-56.3019917288246,-56.3020122594127,-56.3020335103724,-56.3020544144865,-56.302075652106,-56.3020969030656,-56.3021178071797,-56.3021390447992,-56.3021602957589,-56.302181199873,-56.3022024508326,-56.3022233549468,-56.3022445925662,-56.3022658435259,-56.3022870811453,-56.302308332105,-56.3023295830647,-56.3023504871788,-56.3023713912929,-56.3023919485615,-56.3024114919738,-56.3024306752005,-56.302449164736,-56.30246630691,-56.3024827687331,-56.3024978298338,-56.3025119037588,-56.3025245769613,-56.3025359028024,-56.3025533918219,-56.3025647443433,-56.3025719747389,-56.3025775242676,-56.3025841009927,-56.3025937459669,-56.3025996023205,-56.3026061523652,-56.3026130359152,-56.3026202663108,-56.3026281770572,-56.3026436383644,-56.3026601268679,-56.3026779493928,-56.302687914532,-56.3026988801873,-56.3027105261934,-56.302723199396,-56.3027365662897,-56.3027509470395,-56.3027656746349,-56.3027807357356,-56.3027961436819,-56.3028112448033,-56.302826305904,-56.3028410334994,-56.3028557610948,-56.3028708221955,-56.3028869371731,-56.3029041060275,-56.3029226222435,-56.3029435797184,-56.302966578246,-56.302982719904,-56.3029936855593,-56.3030187251395,-56.3030334660751,-56.3030577452632,-56.3030830649879,-56.3031050229789,-56.3031314499413,-56.3031732581695,-56.3032242978253,-56.3032636514543,-56.3032961882343,-56.3033208943092,-56.303353164285,-56.3033922110891,-56.3034148227505,-56.3034234405283,-56.3034409562282,-56.303467716696,-56.3035075772531,-56.3035353915976,-56.3035594039814,-56.3035888991929,-56.303610176833,-56.3036331753606,-56.3036544263202,-56.3036743032379,-56.3036822406648,-56.3036898179059,-56.3037055860379,-56.3037552383115,-56.3038028361923,-56.3038213257279,-56.3038364401894,-56.3038704310527,-56.3039167616133,-56.3039425082248,-56.3039767125315,-56.3040140251079,-56.3040366634497,-56.3040631170925,-56.3041124758814,-56.3041522297168,-56.3041704257677,-56.3041883016534,-56.3042098861184,-56.304227695303,-56.3042352592039,-56.3042424895995,-56.3042658216324,-56.3042918483884,-56.3043388859803,-56.3044034125916,-56.3044638037369,-56.3044881763064,-56.3045097474312,-56.3045248352124,-56.3045664566776,-56.3046681624632,-56.3047178547575,-56.3047644788027,-56.3048806720599,-56.3049053647945,-56.3049290570132,-56.3049771484819,-56.3050183430603,-56.3050406478968,-56.3050642600742,-56.3050896064794,-56.3051030133936,-56.3051198754232,-56.3051391120106,-56.3051730361729,-56.3051973553816,-56.3051977822684,-56.3052132435755,-56.3052382964959,-56.3052658440362,-56.3052885624194,-56.3053184578372,-56.3053472993782,-56.3053548632791,-56.3053627873657,-56.3053863995431,-56.305413480176,-56.3054179758278,-56.3054420015519,-56.3054907066703,-56.3055177339423,-56.3055314343413,-56.3055403722842,-56.3055538058789,-56.3055964011797,-56.3056290313412,-56.3056418379459,-56.3056525101165,-56.3056686517745,-56.3056830858852,-56.3056961592942,-56.3057119807871,-56.305732938262,-56.305744264103,-56.3057488131158,-56.3057564170373,-56.3057708644882,-56.3057891138999,-56.305809391024,-56.3058215039376,-56.3058328831395,-56.3058462767136,-56.3058556015226,-56.3058619381239,-56.3058703691386,-56.3058731972638,-56.3058736108105,-56.3058693552824,-56.3058588832151,-56.3058555348215,-56.3058613911751,-56.305874144419,-56.3058807211441,-56.3058684614882,-56.3058606441232,-56.3058604039994,-56.3058735441094,-56.3058996775871,-56.3059124575114,-56.3059056673428,-56.3058954887601,-56.305898983896,-56.3059028525578,-56.3058882450244,-56.3058811480309,-56.3058883784265,-56.3058979967202,-56.3059139249348,-56.3059095360047,-56.3059058140852,-56.3059082820246,-56.3059042799607,-56.3059040398368,-56.3059189008343,-56.3059408721655,-56.3059532652236,-56.3059478891177,-56.3059540923168,-56.3059661118489,-56.3059847481268,-56.3059788672763,-56.3060368298596,-56.3061085483924,-56.3061522372191,-56.3061400507601,-56.3061175660666,-56.3061349494271,-56.3061822919172,-56.306214572923,-56.3062134527423,-56.3062364646101,-56.3062457493985,-56.3062547140218,-56.3062811409842,-56.3063270980187,-56.3063617825731,-56.3063851279463,-56.3064146098175,-56.3064499213619,-56.3064846059163,-56.306528882084,-56.3065679822489,-56.3065957298924,-56.3066145796137,-56.306628987044,-56.3066424206387,-56.3066548136968,-56.3066729830672,-56.3066969821108,-56.3067144711303,-56.3067182864313,-56.3067235157949,-56.3067402044016,-56.3067505030462,-56.3067896032112,-56.3068208459905,-56.3068452185601,-56.3068801699187,-56.3069222716317,-56.3069413881572,-56.3069588238159,-56.3069834631897,-56.3069900132344,-56.3069966299802,-56.3070065951195,-56.3070162534338,-56.3070409728489,-56.3070636378712,-56.3070698410703,-56.3070753772588,-56.3070883973069,-56.3071068868425,-56.307122001304,-56.3071367822603,-56.3071593939217,-56.3071806182009,-56.3071922908875,-56.3072064181733,-56.3072150893119,-56.3072241072961,-56.3072470791432,-56.307262206945,-56.3072660355862,-56.3072733460231,-56.3072778416749,-56.3073172353246,-56.3073689019704,-56.3073785602847,-56.3073861241856,-56.3074094028577,-56.3074340422315,-56.3074508509002,-56.3074802927508,-56.3074953405113,-56.3075014236485,-56.307497261502,-56.3074787052654,-56.3074714748698,-56.307465538475,-56.3074636174843,-56.3074775846875,-56.3074829607934,-56.3075061594242,-56.3075314257881,-56.3075402703494,-56.3075477408688,-56.3075640692898,-56.3075773294618,-56.3075830657534,-56.3075964326471,-56.307609439355,-56.3076138416253,-56.3076133880581,-56.3076036897231,-56.307599807721,-56.307598366978,-56.3075972597403,-56.3076016620107,-56.3075943515738,-56.3075815716496,-56.3075937245838,-56.3076014619075,-56.3075890821896,-56.3075767024717,-56.3075782632767,-56.307581158103,-56.3075749282234,-56.3075690718698,-56.3075549979448,-56.3075379091317,-56.3075280640543,-56.3075069198164,-56.3074946067996,-56.3074720218186,-56.3074637108657,-56.3074656451967,-56.3074739828299,-56.3074810664831,-56.3074895375185,-56.3075014503289,-56.3075160978831,-56.3075304386123,-56.3075458198781,-56.3075687250242,-56.3076059442191,-56.3076229796714,-56.307616696431,-56.3076005014121,-56.3076010883815,-56.3076085589009,-56.3076156158737,-56.3076134814396,-56.3076260879411,-56.3076434702389,-56.307653235275,-56.3076418960938,-56.307649980263,-56.3076352526676,-56.3076266615703,-56.3076245004557,-56.307634905822,-56.3076457647556,-56.3076600921446,-56.3076603589489,-56.3076431900944,-56.3076434568987,-56.3076553430287,-56.3076758335962,-56.3076864123853,-56.3076802091861,-56.307667816128,-56.307659118309,-56.3076652014463,-56.3076856653333,-56.3077003395679,-56.3077126259043,-56.3077200697432,-56.3077237516421,-56.3077274335409,-56.3077397465577,-56.3077534469567,-56.3077628918277,-56.3077566352677,-56.3077610108576,-56.3077694552126,-56.307784809798,-56.3077964824846,-56.307810209564,-56.3078317673486,-56.3078475221404,-56.3078602220234,-56.3078753231447,-56.3078870225117,-56.307901056416,-56.3079126357211,-56.3079156372691,-56.3079114884628,-56.3079052585832,-56.3078924519785,-56.3078878762854,-56.307909687534,-56.3079584993742,-56.3079785363744,-56.3079918232268,-56.3080198376746,-56.3080687162158,-56.308114900034,-56.3081354439624,-56.3081946344884,-56.3082292123211,-56.3082733417464,-56.3083202059155,-56.3083516621383,-56.3083910024271,-56.3084231656811,-56.3084440431148,-56.308458383844,-56.3084782074009,-56.3085096903041,-56.3085480033965,-56.3085921061414,-56.3086474813665,-56.3086891962132,-56.3087398223224,-56.3087870733576,-56.3088134736396,-56.3088241458102,-56.308836899054,-56.3088644065737,-56.3088877252664,-56.3089233302955,-56.3089647516575,-56.3089898179182,-56.3090079872886,-56.3090322798169,-56.3090719936316,-56.3091319445499,-56.309166549063,-56.3091837445978,-56.3092002597818,-56.3092235651343,-56.3092485380134,-56.3092598771947,-56.3092708695304,-56.3092958424095,-56.3093238301769,-56.3093350626364,-56.3093490832005,-56.3093763505963,-56.3094060992718,-56.3094157175655,-56.3094366083395,-56.3094625817346,-56.3095030292611,-56.3095209051468,-56.3095874838715,-56.3096753260825,-56.3097219837707,-56.3096561559277,-56.3096378429059,-56.3096704185043,-56.309663411639,-56.3097359878973,-56.3097323209553,-56.3095960608781,-56.3095942755589,-56.3095860320678,-56.3095929156178,-56.3096170480635,-56.3096432349021,-56.3096569619815,-56.3096966757962,-56.3097439801923,-56.3097608155414,-56.3097944462189,-56.3098342534152,-56.309859266315,-56.3098777691907,-56.3099008610998,-56.3099184435008,-56.3099219386367,-56.3099203111307,-56.3099083449594,-56.3098569584581,-56.3098041845746,-56.3097959269826,-56.3097914313308,-56.309775303013,-56.3097427528927,-56.3097231961401,-56.3097122304848,-56.309695475177,-56.3096824284485,-56.3096584027245,-56.3096227576748,-56.3095977047543,-56.3095853517169,-56.3095747195669,-56.3095603388171,-56.30954050192,-56.3095450242523,-56.3095532818443,-56.3095659817273,-56.3095803758174,-56.3095964641145,-56.3096085370075,-56.3096205965602,-56.3096397664466,-56.3096568952804,-56.3096747178053,-56.3096942345372,-56.3097154854969,-56.3097223690469,-56.3097323341862,-56.3097433265219,-56.3097580807977,-56.3097806924591,-56.3098047448635,-56.3098048515852,-56.3097994888195,-56.3098214601507,-56.3098547306425,-56.3098589061292,-56.3098664833703,-56.3098884146809,-56.3098989801298,-56.3099086117637,-56.3099158421593,-56.3099176297478,-56.3099060237623,-56.3098927502502,-56.3098948713441,-56.3099151751486,-56.3099330777147,-56.3099372532015,-56.3099414286882,-56.3099866653513,-56.310001726452,-56.310009984044,-56.3100180015121,-56.3100279666514,-56.3100348635416,-56.3100294340749,-56.3100199491832,-56.3100275397646,-56.3100321154577,-56.3100232708963,-56.3100031805352,-56.3099867987534,-56.3099714308278,-56.3099598648629,-56.3099554625925,-56.3099626929881,-56.3099903872708,-56.3100139060667,-56.3100381318939,-56.3100541668302,-56.3100702417871,-56.3100931202528,-56.3101092085499,-56.3101171326366,-56.3101042326504,-56.3100861166408,-56.3100700550241,-56.3100622643396,-56.3100537666238,-56.3100319820556,-56.310021123122,-56.3100170676972,-56.3100107044155,-56.3100081164141,-56.3100188152651,-56.3100542868921,-56.3100756445735,-56.3100866502494,-56.3101519772735,-56.3101701733244,-56.3101880492101,-56.310202870187,-56.3101988547828,-56.3101893298705,-56.3101596612363,-56.3101364626055,-56.3101187067817,-56.310098643101,-56.3100871705177,-56.3100889981269,-56.3100839555263,-56.3100716425095,-56.3100600498642,-56.3100474166823,-56.3100334094584,-56.3100183350175,-56.310003980948,-56.3099731783957,-56.3099608653789,-56.3099485923827,-56.3099209514609,-56.3099031956371,-56.3098902022695,-56.30988210476,-56.3098896953413,-56.309901688193,-56.3099160422625,-56.3099328242507,-56.309968069094,-56.3099783410582,-56.3100085299607,-56.3100449220624,-56.3100546070572,-56.3100444284745,-56.3100119717357,-56.3099921081583,-56.3099767268924,-56.3099641070507,-56.309957997233,-56.3099577304288,-56.309948232197,-56.3099369863972,-56.3099250469064,-56.3099168826959,-56.3098967656544,-56.3098951514886,-56.3099054367929,-56.3099335046016,-56.3099625329055,-56.3099730583338,-56.3099915211889,-56.3100048480619,-56.3100226572465,-56.3100414802874,-56.3100682807758,-56.3100834219178,-56.3100951479652,-56.3101085148588,-56.3101242696507,-56.3101339146248,-56.3101531378721,-56.310172654604,-56.3101969471323,-56.3102167973696,-56.3102339528838,-56.3102487738607,-56.3102492007475,-56.3102506414905,-56.3102606066298,-56.3102705717691,-56.310276508164,-56.3102721725947,-56.3102664629834,-56.3102614070426,-56.310259432691,-56.3102622608162,-56.3102694912118,-56.3102906888106,-56.3103006539499,-56.3103133805133,-56.3103315632239,-56.3103435694158,-56.3103494657901,-56.3103720507711,-56.310381682405,-56.3103902735023,-56.3104115778228,-56.3104335624942,-56.3104459422121,-56.310460016137,-56.3104744235673,-56.3104871234503,-56.3104937135156,-56.310502371314,-56.3105171255898,-56.3105476213173,-56.3105634294699,-56.3105740482797,-56.3105908035875,-56.3106021160883,-56.3106209658096,-56.3106422434497,-56.3106535959711,-56.3106503142787,-56.3106599325724,-56.3106637745538,-56.3106600793147,-56.3106601860365,-56.31068355809,-56.3107158547462,-56.3107316362185,-56.3107494587433,-56.3107628523174,-56.3107758857057,-56.3107987908518,-56.3108039801948,-56.3108132783234,-56.3108239638342,-56.3108311942297,-56.3108470157226,-56.310865558619,-56.3108830476385,-56.3108973750276,-56.3109100215497,-56.3109323263862,-56.310964222836,-56.3110095128599,-56.3110273087043,-56.3110561102247,-56.3110804561138,-56.3110945300388,-56.3111041483325,-56.3111169015763,-56.3111238118068,-56.3111276271078,-56.3111290945312,-56.3111305486145,-56.3111368051745,-56.3111450761067,-56.3111557749577,-56.3111685015211,-56.3111802142283,-56.3111960090407,-56.3112358076186,-56.3112817115881,-56.311327852411,-56.3113412857004,-56.3113734472168,-56.3113882091155,-56.3114247269964,-56.3114386634363,-56.3113866006671,-56.3111363754872,-56.3111385833028,-56.3114147711895,-56.311444765068,-56.3114529949083,-56.3114609590156,-56.3114627866248,-56.3114625198205,-56.3114622663565,-56.3114678025449,-56.3114754064665,-56.3114672956169,-56.3114568102093,-56.311466802029,-56.3114743926103,-56.3114669220909,-56.3114584510555,-56.3114633735942,-56.3114672555962,-56.3114618394696,-56.3114577840448,-56.3114616260262,-56.3114651478425,-56.3114600652213,-56.311456356642,-56.3114544356513,-56.3114551960434,-56.311418630519,-56.3113908386062,-56.3111980281642,-56.3110128328523,-56.3109669841697,-56.310820109223,-56.3105232338336,-56.3104764112591,-56.3104255183456,-56.3104054625828,-56.3104065410485,-56.3103956229278,-56.3103694360893,-56.3103421953739,-56.310342955766,-56.3103358587726,-56.3103259870148,-56.310302788384,-56.3102758678337,-56.3102389821442,-56.3102253084256,-56.310208192932,-56.3101832067127,-56.3101708670154,-56.3101509900977,-56.3101218817525,-56.3101037390625,-56.3100770186154,-56.3100639718869,-56.3100475100638,-56.310024938423,-56.3100243381134,-56.3100155202325,-56.3100035807416,-56.3099796217187,-56.3099621060187,-56.3099545154374,-56.3099472850418,-56.309926714433,-56.3098956850971,-56.3098490610519,-56.3098077330713,-56.3097615492531,-56.3097471951837,-56.3097160858065,-56.3097020919228,-56.3096843094186,-56.3096682211214,-56.3096397664466,-56.3096168613005,-56.3095765071555,-56.3095495332444,-56.3095270416449,-56.3095086054702,-56.3094901692955,-56.3094802975378,-56.3094516827804,-56.3094281639845,-56.3094265631589,-56.3094150638951,-56.3094048319516,-56.3093980951439,-56.3093903044594,-56.3093797390105,-56.3093359964513,-56.3093114104384,-56.3092942816046,-56.3092747648726,-56.3092580362453,-56.3092427350207,-56.3092376523994,-56.3090832260912,-56.3090536089644,-56.3089363909017,-56.3090219764352,-56.3089350624937,-56.3088083427271,-56.3087143200506,-56.3086581646307,-56.3087337245093,-56.3086068121304,-56.3086009423907,-56.3087067019447,-56.3085770642116,-56.3084925769397,-56.3085096584402,-56.3085847989515,-56.3086480282236,-56.3086917305614,-56.3087885837929,-56.3089049989413,-56.3087772642584,-56.3087710799617,-56.3089335206007,-56.3089739909067,-56.3089457120143,-56.3087705029951,-56.3087626077419,-56.3088228499998,-56.3086912556748,-56.3085670320672,-56.3085715027971,-56.3086367753895,-56.3087309567191,-56.3089160346699,-56.3088953187305,-56.3088670571591,-56.3089554039104,-56.3090850251749,-56.3091330762418,-56.3089902672169,-56.3090507370996,-56.3091316957221,-56.3092230297372,-56.3092022440426,-56.3091562712006,-56.3091506291578,-56.3092341031812,-56.3092738225801,-56.3093666239344,-56.3094989530831,-56.3095696590375,-56.3097182152068,-56.3098236808605,-56.3099597848216,-56.3100898940911,-56.3100700163945,-56.3101537002757,-56.3102415167847,-56.3104130475958,-56.3104707066592,-56.3105417443621,-56.3106303016936,-56.3106733053,-56.3107063873333,-56.3106788414775,-56.3106566574657,-56.3106604804625,-56.3106911343057,-56.3107718491944,-56.3107660515907,-56.3107804981242,-56.3108655639802,-56.3109099150634,-56.3109248324228,-56.3109749811418,-56.3111117300361,-56.3111596424316,-56.3112022803566,-56.3112117839807,-56.3111656201257,-56.3110506571292,-56.3110007844171,-56.3109953355563,-56.3110533963863,-56.3111532025363,-56.3111726084359,-56.3111189160064,-56.3111107950759,-56.3111257594779,-56.3111218555499,-56.3110833766827,-56.3110930196675,-56.3110674135167,-56.311077317901,-56.3111178353913,-56.3111934751815,-56.3111420014964,-56.3110762959705,-56.311042126762,-56.3110413599368,-56.3109898858659,-56.3109641052092,-56.3110094158405,-56.3110064647963,-56.3109153031517,-56.3107655395209,-56.3106815227395,-56.3107090866202,-56.310837530831,-56.3108834109697,-56.310966974538,-56.3109898913629,-56.3110890348601,-56.3110515489291,-56.3111224660426,-56.3111599346012,-56.3112491908629,-56.3113147811461,-56.3115627821516,-56.3116840061948,-56.3117645669491,-56.3118634838111,-56.3119393099201,-56.3119461597694,-56.3119937775265,-56.3121001884131,-56.3121671712573,-56.3122612487105,-56.3124511186336,-56.3124691436104,-56.3124161449627,-56.3124643431531,-56.3125914887253,-56.3125938405099,-56.3127308869408,-56.3127883021413,-56.3127890359977,-56.3130080769038,-56.3131813872124,-56.3133004093896,-56.3133032200802,-56.3131996377114,-56.3131722117669,-56.3133170997913,-56.3134261122898,-56.3135153316212,-56.3135217951748,-56.3136875740046,-56.3137134086751,-56.3138987671102,-56.3140121155342,-56.3142675751835,-56.3145133549827,-56.3146465846575,-56.3147398281355,-56.3148385532003,-56.3149327153445,-56.3148926766954,-56.3147566713197,-56.3148202671099,-56.3149419598412,-56.3151059294481,-56.3152956598086,-56.3156091138023,-56.3157563591082,-56.3158243960183,-56.3159326782504,-56.3160427598671,-56.315995745291,-56.3158042271269,-56.3157406345997,-56.3157243562137,-56.315775769903,-56.315800685605,-56.3157642039768,-56.3156862863061,-56.3157678594203,-56.315706099071,-56.3156313456277,-56.3154866725517,-56.3154195470605,-56.3155446837016,-56.3156960952807,-56.3156941901668,-56.315539636806,-56.3153599086113,-56.3151196107259,-56.3148648057216,-56.3144373002588,-56.3141623497736,-56.3139292349763,-56.3138768641433,-56.3139735669607,-56.3141920281964,-56.3144676400674,-56.3146429365368,-56.3147495811023,-56.3149120014078,-56.3150781266346,-56.3150275336498,-56.3151719331035,-56.3154049569047,-56.3154135283044,-56.3154253235398,-56.315633991155,-56.3156115795968,-56.3156266554814,-56.3156205066267,-56.3156958598021,-56.315748637074,-56.315812318572,-56.3158473918144,-56.3159130667872,-56.315947864661,-56.3159199053742,-56.3160216446658,-56.3160183148446,-56.3159778003857,-56.3160516376463,-56.3161156545657,-56.316225675005,-56.3162354325575,-56.3161856922596,-56.3162971826909,-56.3163896341928,-56.3165571433402,-56.3166216292112,-56.3164353800525,-56.3162984964829,-56.3162586389567,-56.3163240316991,-56.3164803667067,-56.3165899794702,-56.3166906793778,-56.316704830376,-56.3166286908138,-56.3164414159143,-56.3164513607628,-56.3165479789305,-56.3166134331533,-56.316752834838,-56.31688496965,-56.316829138589,-56.316650772925,-56.3167106449348,-56.3169810466333,-56.3170593693927,-56.317018510962,-56.317069594663,-56.3171246036689,-56.3172481474578,-56.317253384884,-56.3173316447757,-56.3174233679515,-56.3174190675271,-56.3173597270021,-56.3172819981717,-56.3172686910466,-56.3173877779498,-56.3174835516107,-56.3175891571042,-56.3176259518007,-56.3175120395785,-56.317622587845,-56.3176550014443,-56.3178152276123,-56.317952386811,-56.3180360111905,-56.3181734859651,-56.3181466211292,-56.3182251607489,-56.3182758061374,-56.3184138418633,-56.3185099585451,-56.31849671307,-56.3185747845278,-56.3186661015277,-56.318743985959,-56.31872170212,-56.318772129048,-56.3188828624342,-56.3190205856499,-56.3190304961733,-56.3191454054714,-56.3193890302133,-56.3196456827511,-56.3197322627928,-56.3197920701505,-56.3197285216386,-56.3195222763587,-56.3194225011712,-56.3194688444644,-56.3194965164915,-56.3195948145204,-56.3196774350721,-56.3198253151234,-56.3198168991538,-56.3198680409598,-56.3199060608003,-56.3199656184407,-56.320108220747,-56.3201034323826,-56.3200489849102,-56.3201271788908,-56.3200731980194,-56.3202434850796,-56.3203582983254,-56.3206279444898,-56.3206466738549,-56.3205231953238,-56.3204413530092,-56.3204653787389,-56.320633647539,-56.3206405567591,-56.3207230204656,-56.3209108192169,-56.3209565628081,-56.3209998873747,-56.3212071053526,-56.3215961993517,-56.3218181804997,-56.3219792368939,-56.3221117452319,-56.3222237363219,-56.3224289194891,-56.3228972169864,-56.3229382381421,-56.3229869299204,-56.3230323800268,-56.3231145957609,-56.3231442510549,-56.3232163015465,-56.3232133133387,-56.3232624853647,-56.3232655536137,-56.3233041468506,-56.3233932861553,-56.3234356813529,-56.3235010350575,-56.3234943916313,-56.3234487414217,-56.3234285309987,-56.3233892040501,-56.3233401654263,-56.3232866178104,-56.3232903263897,-56.3233001848072,-56.3233100432248,-56.3233226363861,-56.3233379776313,-56.3233563871256,-56.3233666057289,-56.3233775180233,-56.3233894841946,-56.3234021173765,-56.3234154175691,-56.3234290646072,-56.3234427383257,-56.3234563853639,-56.3234697255771,-56.3234857871938,-56.3235487530002,-56.3236864373409,-56.3236976964809,-56.323712344035,-56.323718787358,-56.3237283122702,-56.3237385175333,-56.3237524980768,-56.323764464248,-56.3237778044613,-56.3237931857271,-56.3238106213858,-56.3238294444266,-56.3238489344782,-56.3238684512101,-56.3238865672197,-56.3239030023623,-56.3239173564318,-56.323930696645,-56.3239433698476,-56.3239553360188,-56.3239669553445,-56.3239772406489,-56.3239909143675,-56.3240035342092,-56.3239945962663,-56.3239818963834,-56.3239678491388,-56.3239538152345,-56.3239414488569,-56.3239297761703,-56.3239286689326,-56.3239392477217,-56.323950840367,-56.3239645407659,-56.3239802688773,-56.3239908876871,-56.3240022001879,-56.324013846194,-56.3240261592108,-56.3240391792589,-56.3240525061319,-56.3240662065309,-56.3240795334039,-56.3240928736172,-56.3241062004902,-56.3241202210543,-56.3241359491656,-56.3241534115048,-56.3241718743599,-56.3241910442463,-56.3242095071014,-56.3242269561003,-56.3242437114081,-56.3242601198703,-56.3242769018586,-56.3242939906717,-56.3243104258144,-56.3243258204204,-56.3243391739739,-56.3243542350746,-56.3243679488138,-56.3243717507746,-56.3243677353704,-56.3243797015417,-56.3243913208674,-56.3244029401931,-56.3244145461786,-56.3244295805989,-56.3244415734506,-56.3244555940147,-56.3244662128244,-56.3244778454903,-56.3244898250018,-56.3245021380186,-56.324514424355,-56.3245263905263,-56.3245383433573,-56.3245496024973,-56.3245663578051,-56.3245772700995,-56.3245885292394,-56.3246001218847,-56.324609273271,-56.324595572872,-56.3245798447606,-56.3245743219124,-56.3245872885996,-56.3246012824833,-56.324618718142,-56.3246382081935,-56.3246484267968,-56.3246689440447,-56.3246894612927,-56.324708938004,-56.3247277477046,-56.3247451833633,-56.3247609114747,-56.3247742116673,-56.3247885390563,-56.324789833057,-56.324776132658,-56.3247620854135,-56.3247460237967,-56.3247289349836,-56.3247132068722,-56.3246988394626,-56.324685165744,-56.324671838871,-56.3246581651525,-56.3246441712688,-56.3246304975502,-56.3246171706772,-56.3246048576604,-56.3245894497142,-56.324577803708,-56.3245790843685,-56.3245851808459,-56.32459231786,-56.324597387141,-56.3245918642927,-56.3245785107393,-56.3245668914136,-56.3245538980459,-56.3245399041622,-56.3245248830822,-56.3245091816512,-56.3244920928381,-56.3244743503545,-56.3244565678502,-56.3244391055111,-56.3244223502033,-56.3244072891026,-56.3243928950125,-56.3243795414591,-56.3243668682565,-56.324354195054,-56.3243408281603,-56.32432579374,-56.3243086915867,-56.3242892148754,-56.3242687243078,-56.3242584923643,-56.3242383486423,-56.3242202593132,-56.3242035573663,-56.32418752243,-56.324171820999,-56.3241560928876,-56.3241413919726,-56.324128398605,-56.3241150450515,-56.3241088418524,-56.3241070542638,-56.3241110963484,-56.3241189137134,-56.3241322139059,-56.3241434730459,-56.324157120084,-56.3241721678445,-56.3241885496264,-56.3242052649136,-56.3242233675829,-56.3242428176138,-56.3242533964029,-56.3242649890482,-56.3242772753845,-56.3242909491031,-56.3243049429867,-56.3243199507266,-56.324335305312,-56.3243506732377,-56.3243663746686,-56.3243817292541,-56.3243967369939,-56.3244114379089,-56.324425458473,-56.3244387720058,-56.3244517520333,-56.3244640917305,-56.3244757110562,-56.3244972555006,-56.324516425387,-56.324533194035,-56.3245482951564,-56.3245619688749,-56.3245746420775,-56.3245866082487,-56.3245989212655,-56.3246115677877,-56.3246248946607,-56.3246392620703,-56.3246539629853,-56.3246693442511,-56.324685099043,-56.3247008138141,-56.3247158882551,-56.3247299354996,-56.3247425820217,-56.3247542280279,-56.3247662208796,-56.3247782137312,-56.3247912337794,-56.3248052676837,-56.3248203421246,-56.3248360969164,-56.3248525053787,-56.3248685669954,-56.3248832679104,-56.3249010504146,-56.324908520934,-56.3248951540404,-56.3248824808378,-56.324866726046,-56.3248496372328,-56.3248321748937,-56.3248164201019,-56.3248030665485,-56.3247921008932,-56.3247790541647,-56.3247663809621,-56.3247615117843,-56.32476624756,-56.324771316841,-56.3247702229435,-56.3247612716605,-56.3247499724999,-56.3247348980589,-56.3247171022145,-56.3246975854825,-56.3246774150801,-56.3246572446778,-56.3246381014718,-56.3246200121426,-56.3246036303608,-56.3245889294458,-56.3245752824077,-56.3245623157205,-56.3245496691983,-56.3245369826555,-56.3245236557825,-56.3245099553836,-56.3244945474373,-56.3244787926455,-56.3244627176885,-56.3244466293914,-56.3244308745996,-56.3244165205301,-56.3244031669767,-56.324391174125,-56.3243767533545,-56.3243702166501,-56.3243660278231,-56.3243741786934,-56.3243854111529,-56.3243986980053,-56.324407876072,-56.3244170407985,-56.3244262188652,-56.3244350634265,-56.3244438946477,-56.3244575150054,-56.3244721892399,-56.3244872370004,-56.324500910719,-56.3245128502098,-56.3245244428551,-56.3245284982799,-56.324533567561,-56.324540010884,-56.324550589673,-56.3245645968969,-56.3245813255243,-56.3245936118607,-56.3246068853728,-56.324621226102,-56.324636554007,-56.3246525622629,-56.3246689307045,-56.3246767347293,-56.3246920626343,-56.3246991996483,-56.3247124731605,-56.3247185696379,-56.3247294685921,-56.3247386199784,-56.3247464240031,-56.3247528673261,-56.3247589638036,-56.3247650736212,-56.3247715169442,-56.3247782937725,-56.3247891793865,-56.3247993846496,-56.3248095899128,-56.3248187679795,-56.3248279460461,-56.3248343893691,-56.3248452749831,-56.3248582416704,-56.324872235554,-56.3248855090662,-56.3248960878553,-56.324900823631,-56.32489700833,-56.3248908051309,-56.3248842550862,-56.3248787322379,-56.3248759174529,-56.3248778918045,-56.324883307931,-56.3248907784504,-56.3249027179413,-56.3249149909374,-56.3249207272291,-56.3249101084194,-56.3248981422481,-56.3248848287153,-56.3248728625441,-56.3248605361871,-56.3248642180859,-56.3248696342125,-56.3248760775355,-56.3248821740129,-56.324886562943,-56.324889564491,-56.3248901648006,-56.324886309479,-56.3248817871467,-56.3248755706074,-56.3248686603769,-56.3248610831358,-56.3248538260598,-56.3248469158293,-56.3248413929811,-56.3248372308346,-56.3248334021934,-56.3248302405628,-56.3248257182305,-56.3248222230947,-56.3248184077937,-56.3248142589874,-56.3248100701604,-56.3248059213541,-56.3248021060531,-56.3247986109173,-56.324796343081,-56.3248268521487,-56.3248950873393,-56.3249904965443,-56.3250252344595,-56.3250969381056,-56.3251967896015,-56.3252766974787,-56.3253452394943,-56.3254328179941,-56.3255041481142,-56.3255560815643,-56.325579026731,-56.3255816680932,-56.3255726767895,-56.3255435017432,-56.3255578558126,-56.3255928338517,-56.3256077482101,-56.3256748628228,-56.3257215802495,-56.3257266361903,-56.3257892684914,-56.3258854380885,-56.3259985646507,-56.3260410763377,-56.3260902750307,-56.3261431843482,-56.3262416084414,-56.3263253449597,-56.326385482641,-56.3264495957057,-56.3264987944121,-56.3265363678733,-56.3265752744397,-56.3265998322936,-56.3266642930973,-56.3266861843872,-56.3267265652126,-56.3267578480126,-56.3267605960966,-56.3267076087696,-56.3266579164754,-56.3265968983401,-56.3266021277037,-56.3266708031214,-56.3266685352851,-56.3266016607962,-56.3265738731321,-56.3266680016766,-56.3267512712875,-56.3268228948923,-56.3269224395634,-56.3269782950361,-56.3270553881284,-56.3271224093596,-56.3271944865316,-56.3272878680242,-56.3273766604834,-56.327458782836,-56.3275106229046,-56.3275789781571,-56.3276431579229,-56.3276538034131,-56.3277157020025,-56.3277871388443,-56.3278481569795,-56.3279087749084,-56.3279886827856,-56.3280693910756,-56.3281190700297,-56.3281967767717,-56.3282986826605,-56.328375669031,-56.3284627539429,-56.3285792273446,-56.3286736360335,-56.328770766126,-56.3288773010688,-56.3289658267238,-56.3290544857808,-56.3290977480923,-56.3291540037715,-56.3292163025672,-56.3292730384941,-56.3293507318959,-56.3294507301342,-56.3295453255862,-56.3295989532433,-56.3296528076841,-56.3296860781759,-56.3297137057574,-56.3297195621111,-56.3297545001295,-56.3297748973155,-56.3298412782165,-56.3298724943154,-56.3299239074972,-56.32998727351,-56.3300208508267,-56.3300613783945,-56.3300961029695,-56.3301511446892,-56.3301945137224,-56.3302466205953,-56.3302728474545,-56.3302672312247,-56.3302605477779,-56.33025317064,-56.3302649233678,-56.3303347460438,-56.3303810232435,-56.3304220310589,-56.3304561019635,-56.3304936546637,-56.3305249908246,-56.3305669457952,-56.3306271901981,-56.3307185039576,-56.3307365132454,-56.3307364332042,-56.3306761888012,-56.3306335801602,-56.3305747231395,-56.3305331950557,-56.3304890522902,-56.3304469772577,-56.3304722836421,-56.3305016854721,-56.3305595686573,-56.3305769776355,-56.3306290711681,-56.3306580861319,-56.3306901293241,-56.330724973961,-56.3307886734791,-56.330834897318,-56.3308840960243,-56.3309042664267,-56.330897649681,-56.330915605608,-56.3309642707058,-56.3310145499694,-56.3310571185898,-56.3311094389061,-56.3311589044167,-56.3311986849325,-56.3312308348464,-56.3312549005911,-56.3312939326061,-56.3313247099269,-56.3313680389394,-56.3314259221246,-56.3314549504285,-56.3314835251653,-56.3314654625166,-56.3314416235555,-56.3314455188978,-56.3314771618836,-56.3315178762143,-56.3315612452475,-56.3316130853161,-56.3316538263273,-56.3317060932827,-56.3317609482394,-56.3318076523259,-56.3318512481428,-56.3318890809875,-56.3319292083488,-56.3319769129513,-56.3320103168452,-56.3320333553935,-56.3319666143067,-56.3319335315935,-56.3319039805883,-56.3318673716454,-56.3318268488928,-56.3317567060516,-56.3317380164129,-56.331717312402,-56.3316725293062,-56.3316289564424,-56.3315993489366,-56.331568969231,-56.331616725652,-56.3316451271698,-56.3317047325809,-56.3317430856939,-56.3317564392474,-56.3317725809054,-56.3317893628936,-56.3318041838705,-56.3318185112595,-56.3318366406093,-56.3318463256041,-56.3318638946649,-56.3318884940181,-56.3319066767287,-56.3319232586137,-56.3319391468077,-56.3319545013931,-56.3319654537082,-56.3319806215306,-56.3319972167558,-56.3320166267661,-56.3320295534327,-56.3320398920979,-56.3320540460642,-56.3320683601129,-56.3320836880179,-56.3321008702126,-56.3321149174571,-56.3321292581863,-56.3321448128749,-56.3321576194796,-56.332170466105,-56.3321860874946,-56.3322028828231,-56.3322185042128,-56.3322365935419,-56.3322507341679,-56.3322661821348,-56.3322814966996,-56.3322947035107,-56.3323114454783,-56.332332136149,-56.332351532819,-56.3323692219418,-56.3323876047556,-56.3324044534449,-56.3324138716354,-56.3324237700736,-56.3324208619071,-56.3324068280028,-56.3323927940985,-56.3323926740366,-56.3323926073355,-56.3323685015703,-56.3323488781166,-56.3323322028501,-56.3323121525096,-56.3322955706246,-56.3322732657881,-56.3322498670541,-56.332231030673,-56.3322074051554,-56.3321837662975,-56.332162275214,-56.332129925197,-56.3321022175741,-56.3320698942375,-56.3320479362465,-56.3320207088713,-56.3319983373337,-56.3319727508048,-56.3319409477365,-56.3319151877847,-56.3318849455214,-56.3318613066635,-56.3318333322364,-56.3318181910944,-56.3318202454872,-56.3318309043176,-56.331856770991,-56.3318826243243,-56.3319081574924,-56.3319317963502,-56.3319550750223,-56.3319789940246,-56.3320104769278,-56.3320367304674,-56.3320583416128,-56.3320847685752,-56.3321116491049,-56.3321379159847,-56.3321625420183,-56.3321853404427,-56.3322133682307,-56.3322338321178,-56.332257430955,-56.3322918086844,-56.3323207169265,-56.332339393225,-56.3323572157499,-56.3323748781922,-56.3323896858288,-56.3324075216939,-56.3324260245697,-56.3324457013842,-56.3324560000288,-56.3324557332245,-56.3324878164373,-56.3324973813702,-56.3325036646106,-56.3325026640946,-56.3325017569601,-56.3325159109264,-56.3325300782328,-56.3325433917656,-56.3325548376685,-56.3325717263785,-56.3325960856078,-56.3326238199111,-56.3326477389134,-56.3326666553358,-56.3326821433233,-56.3327079299555,-56.3327302748126,-56.3327494980599,-56.3327672538837,-56.3327834489025,-56.3327715360921,-56.3327483641418,-56.3327213368698,-56.3326972444447,-56.3326731253392,-56.3326523679674,-56.3326419626011,-56.3326452976544,-56.3326617594775,-56.3326761535676,-56.332691508153,-56.3326914814726,-56.3326774475683,-56.3326583443829,-56.3326395880431,-56.3326222724464,-56.3326097860068,-56.332596285711,-56.3325763020716,-56.33255430406,-56.3325359345864,-56.3325153639776,-56.3324876430145,-56.332464711188,-56.3324438070739,-56.3324194878652,-56.3323980634827,-56.3323655267027,-56.3323360848521,-56.332301853865,-56.3322774012542,-56.3322579912439,-56.3322341522829,-56.3322098063937,-56.3321689720011,-56.332147881124,-56.332126483422,-56.332103898441,-56.3320809932949,-56.3320367304674,-56.3320216160058,-56.3320117575882,-56.3319998847985,-56.3319903598862,-56.3319851171824,-56.3319780735499,-56.3319720704539,-56.3319640796662,-56.3319610514378,-56.3319569026315,-56.3319534741967,-56.3319653736669,-56.3319911736392,-56.3319875984621,-56.3319583433745,-56.3319290616065,-56.3318947238976,-56.3318723923807,-56.3318482332546,-56.3318311044208,-56.3318205122915,-56.3318083326768,-56.3317781170939,-56.331758293537,-56.3317311195227,-56.3317151779679,-56.3317077874898,-56.3317001035269,-56.331693726905,-56.331682214301,-56.3316671131796,-56.3316526790689,-56.331632975574,-56.3316130052748,-56.3315959564823,-56.3316076825297,-56.3316251448688,-56.3316426072079,-56.3316608566196,-56.3316836283636,-56.3316967818138,-56.331702985013,-56.331708614583,-56.331709428336,-56.3317100686662,-56.331712309822,-56.3317142041323,-56.331699169712,-56.3316868700354,-56.3316741301318,-56.3316596960211,-56.3316492239537,-56.3316332290381,-56.3316143259559,-56.3315917009543,-56.3315765064514,-56.3315612452475,-56.3315466243738,-56.331534871646,-56.3315209711438,-56.3315102989732,-56.3315016011542,-56.3314875805901,-56.3314813507105,-56.3314740936345,-56.3314670633422,-56.3314594327402,-56.3314531361595,-56.3314455989391,-56.3314409698851,-56.3314357405215,-56.3314335127059,-56.3314316050554,-56.3314284167444,-56.3314257353616,-56.3314181314401,-56.3314099672296,-56.3314046178041,-56.3313947727267,-56.3313877290941,-56.3313757629229,-56.3313755895001,-56.3314062719905,-56.3314210396065,-56.3314321520041,-56.3314744271399,-56.3314839520521,-56.3314914225715,-56.3314968386981,-56.3315001737514,-56.3314987196681,-56.3314955713778,-56.3314930900981,-56.3314926765515,-56.3314884877246,-56.3314846724236,-56.3314777888736,-56.3314719191798,-56.3314674235279,-56.3314636082269,-56.3314607934419,-56.3314566179552,-56.331450414756,-56.3314411299677,-56.3314304711373,-56.3314198523276,-56.3314078594759,-56.3314026834731,-56.3314015762354,-56.3314049112888,-56.3314092735385,-56.3314149831497,-56.331418691729,-56.3314224003083,-56.3314308580035,-56.3314355937792,-56.3314403295549,-56.3314453988359,-56.3314504814571,-56.3314555507381,-56.3314602865138,-56.3314684107037,-56.3314744805007,-56.3314788427504,-56.3314835518457,-56.3314876072705,-56.3314933569024,-56.3315045893619,-56.3315127402322,-56.3315208911025,-56.3315290419728,-56.3315365124922,-56.3315439830116,-56.33155452178,-56.331560965103,-56.3315680887769,-56.3315710903249,-56.3315720241398,-56.3315760528842,-56.3315807886599,-56.3315858312605,-56.3315909138817,-56.3316019862587,-56.3316068998326,-56.3316414530756,-56.3317045858837,-56.331727464431,-56.331721175774,-56.3316996905823,-56.3316524938753,-56.3316450299804,-56.3317668810873,-56.3317918975341,-56.3318058247167,-56.3318126148853,-56.3318252080465,-56.331836747331,-56.3318469792745,-56.3318564908465,-56.3318796894773,-56.3318936967012,-56.331906009718,-56.3319190030857,-56.3319206305917,-56.331914080547,-56.3319102385656,-56.3319204438287,-56.3319320631545,-56.3319453900275,-56.3319573028379,-56.3319664809046,-56.3319766861677,-56.3319878919468,-56.3320001115821,-56.3320167601682,-56.3320310075159,-56.332036770488,-56.3320421866146,-56.3320472558956,-56.3320519916713,-56.3320563806015,-56.3320607695316,-56.3320695740724,-56.3320739630025,-56.3320790456237,-56.3320902380626,-56.3320963478803,-56.3321089410416,-56.3321153843646,-56.3321283110312,-56.3321405973676,-56.3321521633324,-56.3321637559777,-56.3321753352828,-56.3321869012476,-56.3321926642198,-56.33220456369,-56.332217143511,-56.3322297366723,-56.3322361799953,-56.332249800353,-56.332263754216,-56.3322784284506,-56.3322934228502,-56.3323087507552,-56.3323234249898,-56.3323373788528,-56.3323499986945,-56.3323615779996,-56.3323721434485,-56.332382375392,-56.332391886964,-56.3324055340021,-56.3324177936581,-56.3324283324265,-56.332434428904,-56.3324395115252,-56.3324452611571,-56.3324503437784,-56.3324567737611,-56.3324690600975,-56.3324806527428,-56.332485735364,-56.3324901242942,-56.3324969011225,-56.3325088406133,-56.3325242218792,-56.3325365615764,-56.3325495682843,-56.3325625883324,-56.3325749280297,-56.3325855468394,-56.332597846516,-56.3326098126872,-56.3326162560102,-56.332620311435,-56.3326202313938,-56.3326160692472,-56.3326119204409,-56.3326063975926,-56.3326025556112,-56.3326038362717,-56.332607544851,-56.3326163894123,-56.3326228193951,-56.3326313171109,-56.3326367332375,-56.3326349456489,-56.3326297696462,-56.3326358661237,-56.3326474587689,-56.3326618128384,-56.3326768605989,-56.3326929222156,-56.332708650327,-56.3327212701687,-56.3327263127693,-56.3327303681941,-56.3327467232955,-56.3327654662951,-56.3327852631715,-56.3328047265426,-56.3328238697486,-56.3328419857582,-56.3328590745713,-56.3328748026827,-56.3328888232468,-56.3329004158921,-56.3329092471132,-56.332917744829,-56.3329224672645,-56.3329285770822,-56.3329384354998,-56.3329517356923,-56.3329670635973,-56.3329827383479,-56.332997385902,-56.3330106327337,-56.3330225455441,-56.3330337513232,-56.3330446369372,-56.333055882737,-56.3330671418769,-56.3330794148731,-56.3330924082408,-56.3331061086398,-56.3331201292038,-56.3331338296028,-56.3331464494445,-56.3331587491211,-56.3331710354575,-56.3331833084537,-56.3331969554918,-56.3332110027363,-56.3332257303317,-56.333239764236,-56.3332524374386,-56.3332640967849,-56.3332747155947,-56.3332850008991,-56.3332952862035,-56.3333130553675,-56.3333294905102,-56.3333510216143,-56.3333643618275,-56.3333787425774,-56.3333944706888,-56.3334105323055,-56.3334262604169,-56.3334419751881,-56.333456676103,-56.3334703498216,-56.3334819824875,-56.3335096367495,-56.3334726581435,-56.3335696920365,-56.3336661162191,-56.3337583912133,-56.3339173514977,-56.3339899181164,-56.3339920670286,-56.3340093477966,-56.3340171518214,-56.3340232482988,-56.3340252226504,-56.3340128696129,-56.3340042651754,-56.3339987423271,-56.3339880701565,-56.3339787853681,-56.3339742897163,-56.3339660054439,-56.3339607894205,-56.3339590018319,-56.3339626570503,-56.3339687268474,-56.3339768777176,-56.3339870829808,-56.3339928326127,-56.334006119465,-56.334020446854,-56.334035774759,-56.334050102148,-56.3340620149584,-56.3340708461796,-56.3340755552749,-56.3340778631317,-56.3340784767815,-56.3340794239367,-56.3340807045972,-56.3340819985978,-56.3340839596092,-56.3340835460626,-56.3340790237303,-56.3340748349033,-56.3340754352129,-56.3340780899154,-56.3340817718142,-56.3340854537131,-56.3340887887664,-56.3340914434688,-56.3340930709748,-56.3340936846246,-56.3340918836958,-56.3340873613636,-56.3340828657117,-56.3340773428634,-56.334068058075,-56.3340625352267,-56.3340563320276,-56.3340531703971,-56.3340548112433,-56.3340609077207,-56.3340670041982,-56.3340737810265,-56.3340788369673,-56.3340849334447,-56.3340913500873,-56.3340981269156,-56.3341042100529,-56.3341089058079,-56.3341119073559,-56.3341077185289,-56.3340994342565,-56.3340867343735,-56.3340709662415,-56.3340545044184,-56.334039403297,-56.3340273837649,-56.3340191261729,-56.3340139501702,-56.3340196864619,-56.3340254360938,-56.3340298250239,-56.3340314525299,-56.3340299851065,-56.3340264632902,-56.3340222477828,-56.3340190461316,-56.3340165381716,-56.3340140435517,-56.3340112020863,-56.3340094144977,-56.334004491959,-56.3339985422239,-56.333991912138,-56.3339856555779,-56.3339800793688,-56.3339759038821,-56.333973769448,-56.3339750501084,-56.3339866560939,-56.3340023441847,-56.3340160445837,-56.3340303986531,-56.3340440723717,-56.3340567055536,-56.3340364284295,-56.3340203001117,-56.3340042118145,-56.3339901378896,-56.3339778115326,-56.3339674728673,-56.33395888177,-56.333955066469,-56.3339484630635,-56.3339422065035,-56.3339359099228,-56.333928973012,-56.3339251310306,-56.3339213157296,-56.3339174737482,-56.3339112171882,-56.3339066681755,-56.3339052140922,-56.3339061612474,-56.3339088159498,-56.3339124978486,-56.3339168867788,-56.3339209422036,-56.3339253044533,-56.3339290130326,-56.3339330284368,-56.3339312408482,-56.3339243572982,-56.3339123377661,-56.3338965829743,-56.3338790939547,-56.3338622986263,-56.3338543745396,-56.3338416746566,-56.3338323631878,-56.3338275340306,-56.3338277874947,-56.3338321497444,-56.333838566387,-56.3338422749662,-56.3338487182892,-56.3338527336934,-56.3338557352414,-56.3338597506456,-56.3338641395757,-56.3338702493934,-56.3338790806145,-56.3338834695447,-56.3338810016052,-56.3338747850659,-56.333865847123,-56.333853520766,-56.333839446841,-56.3338250660912,-56.3338117125377,-56.3338000531914,-56.3337863527924,-56.3337753604567,-56.3337691305771,-56.333762927378,-56.3337566974984,-56.3337497739277,-56.3337418365009,-56.333732898558,-56.3337229334187,-56.333711247392,-56.333698547509,-56.333685847626,-56.3336738280939,-56.3336645566457,-56.3336579799206,-56.3336534842687,-56.3336492954418,-56.3336430655622,-56.3336348079702,-56.3336251763362,-56.3336172655898,-56.3336131167835,-56.3336233087064,-56.3336345678464,-56.3336413446747,-56.3336286447917,-56.3336163451151,-56.3336012706742,-56.333585555903,-56.333570854988,-56.3335578349399,-56.3335420801481,-56.3335307809875,-56.33352217655,-56.3335142658035,-56.3335032734678,-56.3334888660375,-56.333477193351,-56.3334641466224,-56.3334493923466,-56.3334336108744,-56.3334253532824,-56.3334075040771,-56.3333886543558,-56.3333790227219,-56.3333594659693,-56.3333498343353,-56.3333309579336,-56.3333220199908,-56.3333130687077,-56.3332965802041,-56.3332886694577,-56.3332810922166,-56.3332742086666,-56.3332673117763,-56.3332604282263,-56.3332542250272,-56.3332480084878,-56.3332356287699,-56.3332294255708,-56.3332228755261,-56.3332159786359,-56.3332012110198,-56.3331936337787,-56.3331857230323,-56.3331692345287,-56.3331613104421,-56.3331455156296,-56.3331303878278,-56.3331163005627,-56.3331032271537,-56.3330911809412,-56.3330798150795,-56.3330674353616,-56.3330526810858,-56.3330444234938,-56.3330245465761,-56.3330135809208,-56.3330022817602,-56.3329793499337,-56.332957471984,-56.3329376484272,-56.3329202394489,-56.3329055652144,-56.3328929453727,-56.3328786179837,-56.3328649175847,-56.3328542854347,-56.3328501366284,-56.3328473218434,-56.3328489493495,-56.3328546856411,-56.3328597549222,-56.3328658247192,-56.3328712408458,-56.3328759766214,-56.3328793116748,-56.3328744825176,-56.3328641705327,-56.3328456276364,-56.3328333012793,-56.3328185470035,-56.3328027922117,-56.3327856500377,-56.3327674806673,-56.3327493112969,-56.332731488772,-56.3327139997525,-56.3326971910838,-56.3326814229518,-56.3326663218304,-56.3326522612457,-56.3326388676716,-56.3326258342833,-56.3326131210601,-56.3326014483735,-56.332589775687,-56.3325784365057,-56.3325671106647,-56.332556118329,-56.3325451259933,-56.3325341336576,-56.3325227944764,-56.3325111217898,-56.3324994757837,-56.3324871227462,-56.3324751032141,-56.3324627368364,-56.3324507306445,-56.332438684432,-56.3324270117454,-56.3324156725642,-56.332405027074,-56.3323950619348,-56.3323854303008,-56.3323764656775,-56.3323685549311,-56.33236097769,-56.3323544276453,-56.3323485579515,-56.3323437021139,-56.3323398868129,-56.3323349909546,-56.3323345507276,-56.3323395933282,-56.3323501320966,-56.3323644594856,-56.3323812147934,-56.3323983036066,-56.3324147387493,-56.3324301466955,-56.3324442206205,-56.3324572273284,-56.3324688866747,-56.3324795054845,-56.3324921520066,-56.332504064817,-56.3325073998703,-56.3325052654362,-56.3325004095986,-56.3324928323575,-56.3324828672182,-56.3324701673352,-56.3324400051131,-56.3324125776347,-56.332395702265,-56.3323961958529,-56.332488483448,-56.3326214880226,-56.332709877851,-56.3327717889883,-56.3328253107919,-56.3328546322803,-56.3328912630196,-56.3328993681725,-56.3328188521148,-56.332731027938,-56.3327047806725,-56.3327247223532,-56.3327913561655,-56.3329923068903,-56.3329463750385,-56.3329282840975,-56.3328863406719,-56.3329060507363,-56.3329758348969,-56.3329104759334,-56.3326015057919,-56.332422487356,-56.3323215826256,-56.3325123356291,-56.3328571754026,-56.3329465730298,-56.3329567649527,-56.3329741205701,-56.3329880610929,-56.3330006275738,-56.3330135542404,-56.3330292023105,-56.3330472916397,-56.3330660346392,-56.3330834702979,-56.3330971440165,-56.333110817735,-56.3331218100707,-56.3331341097473,-56.3331484638167,-56.3331617773495,-56.3331709554162,-56.333173943624,-56.3331673935793,-56.3331536664999,-56.3331416869884,-56.3331276397439,-56.3331129121485,-56.3330985313986,-56.3330848043192,-56.3330735051586,-56.3330649007211,-56.3330590443675,-56.3330569099334,-56.3330598714607,-56.3330656077524,-56.3330733850967,-56.333082536483,-56.3330923949006,-56.3330974775218,-56.3331069624134,-56.333111004498,-56.3331150599228,-56.3331187685021,-56.3331244647731,-56.333128773662,-56.3331331225715,-56.3331374581408,-56.333142847587,-56.333153733201,-56.3331683940953,-56.3331807337925,-56.3331937405004,-56.3332074408994,-56.333220114102,-56.3332317734483,-56.3332454871875,-56.3332537447795,-56.3332541716663,-56.3332470479925,-56.3332378699258,-56.3332324537992,-56.3332294655914,-56.3332339879237,-56.3332429258666,-56.3332552522236,-56.333269606293,-56.3332836001767,-56.3332958464924,-56.3333043442082,-56.3333090533035,-56.3333116813255,-56.3333112544387,-56.3333057315904,-56.333295446286,-56.3332848007959,-56.3332765432039,-56.3332696596539,-56.3332658443529,-56.333270233283,-56.3332817992479,-56.3332927115423,-56.3333063319,-56.3333216864854,-56.3333387486181,-56.3333574916177,-56.3333776353397,-56.3333882007886,-56.3334100520578,-56.3334213111978,-56.3334434959724,-56.3334544082668,-56.3334756058656,-56.3334957362473,-56.3335152262989,-56.3335347030102,-56.3335538195357,-56.3335729360613,-56.33359099871,-56.3336066734605,-56.3336199469727,-56.3336294718849,-56.3336352215168,-56.3336358218264,-56.3336214143961,-56.3336094215444,-56.333595067475,-56.3335790058583,-56.3335615435192,-56.3335434275096,-56.3335239507983,-56.3335041539219,-56.333484330365,-56.3334652138395,-56.3334478048612,-56.3334327971214,-56.3334191767637,-56.3334075707782,-56.3333921895123,-56.3333805435062,-56.3333767282052,-56.3333797297532,-56.3333834383324,-56.3333939504205,-56.3334082244486,-56.3334252599009,-56.3334436693951,-56.3334634395911,-56.3334835833131,-56.3334938152566,-56.3335142924839,-56.3335245244275,-56.3335439744584,-56.3335613567562,-56.3335756574648,-56.3335865430788,-56.3335909320089,-56.3335976821568,-56.3336030716029,-56.3336077540178,-56.3336120895871,-56.33361539796,-56.3336170121258,-56.3336162383934,-56.3336106888647,-56.3336034584691,-56.3335941736807,-56.3335828745201,-56.3335701746371,-56.3335571279086,-56.3335447748712,-56.3335392520229,-56.3335289133576,-56.3335240708602,-56.3335144258861,-56.3335095833887,-56.3335044073859,-56.3334988845377,-56.3334933616894,-56.3334874653151,-56.3334816089615,-56.3334757392677,-56.3334695360686,-56.333463679715,-56.3334574631756,-56.3334461106542,-56.3334409213112,-56.3334309294915,-56.3334261003343,-56.3334181495672,-56.3334118930072,-56.3334093983874,-56.3334123599147,-56.3334225384974,-56.3334306893677,-56.3334409213112,-56.3334525139565,-56.3334657874687,-56.3334797813523,-56.3334944422467,-56.3335094900072,-56.3335244977471,-56.3335395188271,-56.3335538728966,-56.33356785344,-56.3335815271586,-56.3335948273512,-56.333608140884,-56.3336207874061,-56.3336330604023,-56.3336453467386,-56.3336569393839,-56.3336685320292,-56.3336794443236,-56.3336903299376,-56.3337008953865,-56.3337107538041,-56.3337206122216,-56.3337396753863,-56.333748853453,-56.3337580181795,-56.3337675430918,-56.3337774015093,-56.333787580092,-56.333798465706,-56.3338096848253,-56.3338212241098,-56.3338324565693,-56.3338433155029,-56.333852773714,-56.3338608979039,-56.3338669410205,-56.3338705695585,-56.3338449563491,-56.3338264134527,-56.333805722782,-56.3338295217224,-56.3339186210065,-56.3340146171809,-56.3341122408612,-56.3341832774966,-56.3342093042526,-56.3342476840461,-56.3343331147715,-56.3344076999037,-56.3344789499825,-56.3345498532158,-56.3346225840583,-56.3346438216777,-56.3346172879936,-56.3345974510965,-56.334596850787,-56.3346171946121,-56.3346475035766,-56.3347242898439,-56.3347919380651,-56.3348804637201,-56.3349692294989,-56.3350702149129,-56.3351202407125,-56.3352742500023,-56.3352877518576,-56.3353047052597,-56.3352559108593,-56.335183833509,-56.3351258302619,-56.335056394452,-56.334931890242,-56.3348308514671,-56.3346445661524,-56.3344838551172,-56.3343331292586,-56.3342571956181,-56.3342269941045,-56.3342545214979,-56.3343347730254,-56.3344242254504,-56.3345759295302,-56.3346547216151,-56.3347178440389,-56.3348165841986,-56.3348135024796,-56.3346617109036,-56.3346266818694,-56.3346274871989,-56.3346557752414,-56.3347484821132,-56.3348277522185,-56.3348316251995,-56.3348035555813,-56.3349022946345,-56.3350515666681,-56.3351182261001,-56.3350536764969,-56.3350541985122,-56.335035425315,-56.3350525740585,-56.3350376004132,-56.3349962112393,-56.334988010226,-56.3350274061687,-56.3351047794054,-56.3351590874134,-56.3352530025145,-56.3353430089331,-56.3354524448502,-56.3355956592314,-56.3356492068472,-56.3357240054228,-56.3357232316904,-56.3357415744836,-56.3357823688556,-56.3359191460618,-56.3359616346409,-56.336010496078,-56.3361224775917,-56.3361900991326,-56.3362880296378,-56.336367243824,-56.3364616791933,-56.3365297142808,-56.3365498980234,-56.3365351971084,-56.336560654026,-56.3366715178965,-56.3368340682689,-56.3370017402572,-56.3371393539841,-56.3373836453309,-56.3375740565971,-56.3379099843948,-56.3381212074986,-56.3383817443235,-56.3385045814863,-56.3387519774982,-56.3388898812082,-56.3388470291114,-56.3386308609412,-56.3385485564711,-56.3383817894908,-56.3383210864026,-56.3390302972287,-56.3391292015696,-56.3391297751987,-56.3391303488279,-56.3391305756115,-56.339129481714,-56.3391263200835,-56.3391201168844,-56.3391104852504,-56.339096758171,-56.3390786288212,-56.3390570576965,-56.3390464388867,-56.339026561969,-56.3390118210334,-56.3390048974628,-56.339004790741,-56.3390094731559,-56.3390131683949,-56.3390175573251,-56.3390219462553,-56.3390270021961,-56.3390317246315,-56.3390364604072,-56.3390408493374,-56.339044891422,-56.3390506010333,-56.3390522285393,-56.339053149014,-56.3390520150959,-56.3390512413635,-56.3390494537749,-56.3390486667023,-56.3390489201664,-56.3390505476724,-56.3390532023748,-56.3390572044388,-56.3390611931626,-56.3390645015354,-56.339066102361,-56.3390649684429,-56.3390631274935,-56.3390629940913,-56.3390646215973,-56.3390676098051,-56.3390719453744,-56.3390776816661,-56.3390851121649,-56.3390935565198,-56.3391030414114,-56.3391132199941,-56.3391240655875,-56.3391356048719,-56.3391471708368,-56.3391594304927,-56.3391717034889,-56.3391843233306,-56.3391969431723,-56.3392102700453,-56.3392232500728,-56.3392369237913,-56.3392502506643,-56.3392642979089,-56.3392783318132,-56.339292712563,-56.3393074401584,-56.3393225279396,-56.3393382827314,-56.339354397709,-56.3393708595321,-56.3393880017061,-56.3394054907256,-56.3394229664049,-56.3394407889298,-56.3394582779493,-56.3394757669689,-56.3394929091429,-56.339509370966,-56.3395258194489,-56.3395422545916,-56.3395583695691,-56.3395744978869,-56.3395906128645,-56.3396073815125,-56.3396241901812,-56.3396416658605,-56.3396595017256,-56.33967729757,-56.3396951200949,-56.3397126091144,-56.3397297512884,-56.3397458395856,-56.3397616210578,-56.3397760018077,-56.339789035196,-56.3398010280477,-56.3398116468574,-56.3398209316458,-56.3398346587252,-56.3398388075315,-56.3398409419656,-56.339835899365,-56.3398318572804,-56.3398223323682,-56.3398118202802,-56.3398070845045,-56.3398026955743,-56.3397973194684,-56.339798106541,-56.3398012681715,-56.3398064441742,-56.3398126740538,-56.3398205848003,-56.3398288690727,-56.3398378203557,-56.3398471184844,-56.3398564032728,-56.3398650343907,-56.339873625488,-56.33988188308,-56.3398898071667,-56.3398973710676,-56.3399124721889,-56.3399272131245,-56.3399419140395,-56.3399565882741,-56.339971222488,-56.3399858700421,-56.340000504256,-56.3400148049646,-56.3400284253223,-56.340041045164,-56.3400523043039,-56.3400673120438,-56.3400799318855,-56.3400904973344,-56.3401017164537,-56.3401088401276,-56.3401169909978,-56.340127196261,-56.3401394692571,-56.340151408748,-56.3401623077022,-56.3401660162814,-56.3401655893946,-56.3401604133919,-56.3401548905436,-56.340143217857,-56.3401291839527,-56.3401154835538,-56.3401034907021,-56.3401106143759,-56.3401228873721,-56.3401396426799,-56.3401587458652,-56.3401795966185,-56.3402011010422,-56.3402222719606,-56.3402324905639,-56.3402427225075,-56.340261465507,-56.3402702967282,-56.3402855979528,-56.3402923747811,-56.3402980977326,-56.3403028335083,-56.34030919679,-56.3403111578013,-56.3403117581109,-56.3403116780696,-56.3403105441515,-56.3403084230576,-56.3403055815922,-56.3403023932812,-56.3402981777738,-56.3402936020807,-56.3402887062224,-56.3402841305293,-56.3402795548362,-56.3402756861743,-56.3402728180285,-56.3402706302335,-56.3402698164805,-56.3402700432641,-56.340271283904,-56.3402732182349,-56.3402761931024,-56.3402798349807,-56.3402838370446,-56.3402881726139,-56.3402928416885,-56.3402975241034,-56.340302566704,-56.3403075826242,-56.3403126252248,-56.3403176811656,-56.3403227237662,-56.3403273928408,-56.3403321019361,-56.3403361173402,-56.3403397992391,-56.3403428007871,-56.3403450552831,-56.3403421871373,-56.3403380249907,-56.3403321686371,-56.3403163604845,-56.3403067421907,-56.3402961100408,-56.3402844373542,-56.3402717641517,-56.3402590909491,-56.3402457107152,-56.3402319836358,-56.3402179230511,-56.3402038491261,-56.3401901220467,-56.3401764083075,-56.340162988053,-56.3401502614896,-56.3401378817718,-56.3401261557243,-56.3401154702135,-56.3401054517134,-56.3400968072552,-56.3400888298077,-56.3400825999282,-56.3400777040699,-56.3400741822536,-56.3400720478195,-56.3400709139014,-56.3400711807056,-56.3400724613661,-56.3400747825632,-56.3400780909361,-56.3400821063403,-56.3400874957864,-56.3400935655834,-56.3401006625769,-56.3401084666016,-56.3401172711423,-56.3401267560339,-56.3401372681219,-56.3401484739011,-56.3401607202168,-56.3401739670485,-56.3401882410767,-56.3402038758066,-56.3402208845784,-56.3402396008976,-56.3402596912587,-56.3402814758269,-56.3403042742513,-56.3403284600579,-56.3403529526893,-56.3403777921664,-56.3404026583238,-56.3404268174499,-56.3404503229056,-56.3404724543194,-56.3404935318563,-56.3405139690629,-56.3405336992383,-56.3405524155574,-56.3405711318766,-56.3405895146904,-56.340607884164,-56.3406262536376,-56.3406449432763,-56.340664006441,-56.3406830696057,-56.3407024662758,-56.3407225166162,-56.3407429404827,-56.3407637111947,-56.3407855357835,-56.3408076671972,-56.340829798611,-56.340852637056,-56.3408754621608,-56.3408983006059,-56.3409208055456,-56.3409433104853,-56.3409654685794,-56.3409872931683,-56.341008424066,-56.3410299018093,-56.3410506992017,-56.3410715099344,-56.3410919738214,-56.3411124243683,-56.3412208536214,-56.3413289760495,-56.341343330119,-56.3413566436518,-56.3413695969988,-56.3413818966754,-56.3413938361662,-56.3414167012917,-56.3414388994065,-56.3414504920518,-56.3414624448828,-56.3414747312192,-56.3414873777414,-56.3415010114393,-56.3415150320034,-56.3415290125468,-56.3415437134618,-56.3415583743561,-56.3415734221166,-56.341588083011,-56.3416031174313,-56.3416178183462,-56.3416328260861,-56.3416478605064,-56.3416628815865,-56.3416782361719,-56.3416935774171,-56.3417092788481,-56.3418484839731,-56.3418697215925,-56.3418909725522,-56.3419121834912,-56.3419330876053,-56.3419536181935,-56.3419734951112,-56.3419926649976,-56.3420108076876,-56.3420282700267,-56.3420450653551,-56.3420608201469,-56.342076214753,-56.3420906355235,-56.3421050162734,-56.3421187300125,-56.3421321235866,-56.3421455305009,-56.3421585638892,-56.3421716372982,-56.342185391058,-56.3421991181374,-56.3422132054026,-56.3422279863588,-56.3422437945115,-56.3422599094891,-56.3422770783435,-56.3422949008684,-56.3423130702388,-56.3423319199601,-56.342351436692,-56.3423713136097,-56.3423918441978,-56.3424126949511,-56.3424335590446,-56.3424544097979,-56.3424745535198,-56.342494710582,-56.3425138271076,-56.3425322232616,-56.3425492853943,-56.3425656404957,-56.3425806215552,-56.3425945754182,-56.342607515425,-56.3426193882148,-56.3426302738288,-56.3426404524115,-56.3426492569522,-56.3426573678018,-56.3426644647953,-56.3426712282834,-56.3426772714,-56.342683341197,-56.3426887173029,-56.3426940800686,-56.3426991226692,-56.3427045121154,-56.3427102083864,-56.3427159446781,-56.3427223213,-56.3427294182935,-56.3427371689573,-56.3427459734981,-56.3427554717299,-56.3427663173232,-56.3427775231023,-56.3427900895832,-56.3428030162498,-56.3428166099271,-56.3428309106356,-56.3428455181691,-56.3428608460741,-56.3428765074844,-56.3428918353894,-56.3429075368204,-56.3429228513852,-56.3429378724653,-56.3429521865141,-56.3429658335522,-56.3429788269199,-56.3429907797509,-56.3430023990766,-56.3430236233559,-56.343043526954,-56.3430534920933,-56.343063110387,-56.343072742021,-56.3430820268094,-56.3430909914326,-56.34309958253,-56.343107533297,-56.3431147636926,-56.3431216739231,-56.3431272234518,-56.3431324127947,-56.343136935127,-56.343140750428,-56.3431442455638,-56.3431501686185,-56.3431557448276,-56.3431623215527,-56.343171286176,-56.3431771558698,-56.3431929240019,-56.3432032359867,-56.3432148819928,-56.3432275551954,-56.3432409354293,-56.3432546358282,-56.343268696413,-56.3432827703379,-56.3432961505718,-56.3433088504548,-56.3433208966673,-56.343331889003,-56.3433425611736,-56.3433525529933,-56.343360688252,-56.3434513505087,-56.3435777003283,-56.3435468273692,-56.3436283540298,-56.3438066734127,-56.3439407051966,-56.3440891262661,-56.344132878588,-56.3441469759178,-56.3442801806179,-56.3447184949308,-56.3450527246964,-56.3452832583531,-56.3453136426292,-56.3454781559837,-56.3462655779292,-56.3465413224441,-56.3467063893192,-56.3467117254045,-56.3467143801069,-56.3467170348093,-56.3467223842348,-56.3467273734746,-56.3467323893947,-56.34673709849,-56.3467411138942,-56.3467441154422,-56.3467471036499,-56.3467477039595,-56.3467462498763,-56.3467451426386,-56.346744729092,-56.3467476906193,-56.3467531067459,-56.3467605639251,-56.3467693951462,-56.3467789067182,-56.3467891119814,-56.3467993039043,-56.346809482487,-56.3468193409045,-56.34682406334,-56.3468346021085,-56.346846835084,-56.3468624698139,-56.3468719813859,-56.3468822133294,-56.3468927520979,-56.3469036510521,-56.3469142298412,-56.3469244484445,-56.3469424844128,-56.3469554110794,-56.3469639087952,-56.3469699785922,-56.3469664701162,-56.3469575321733,-56.3469482473849,-56.3469369482243,-56.3469235813306,-56.3469095741068,-56.346894513006,-56.3468795052662,-56.3468634303092,-56.3468467150221,-56.3468282921876,-56.3468084953112,-56.3467886984348,-56.3467695819092,-56.3467518394256,-56.3467364848402,-56.3467225042967,-56.3467098577746,-56.3466927689615,-56.3466818033062,-56.3466705041456,-56.3466588848199,-56.3466465451227,-56.3466335384148,-56.3466205183667,-56.3466075116588,-56.3465951719615,-56.3465807645313,-56.3465758953534,-56.3465850734201,-56.346595638869,-56.3466086055562,-56.3466222392542,-56.3466358862923,-56.3466536554563,-56.3466649145963,-56.346669276846,-56.3466681696083,-56.3466776811803,-56.3466909546925,-56.3467093508465,-56.3467202631409,-56.3467318557862,-56.3467444756279,-56.346757428975,-56.3467707291675,-56.3467840293601,-56.3467976763983,-56.3468116702819,-56.3468256508254,-56.3468396313688,-56.3468539587578,-56.346868606312,-56.3468832672063,-56.3468979414408,-56.3469129491807,-56.3469276234153,-56.3469419107836,-56.3469562381726,-56.3469698852107,-56.3469828252176,-56.3469950982137,-56.3470063173331,-56.3470168827819,-56.3470366262975,-56.3470461378695,-56.3470556494416,-56.3470750861322,-56.3470856515811,-56.3470965638755,-56.3471078096753,-56.3471194023205,-56.3471309949658,-56.347143267962,-56.3471552341333,-56.3471675071294,-56.3471794466203,-56.3471913727709,-56.3472036591073,-56.3472155852579,-56.3472271779032,-56.347239117394,-56.3472507100393,-56.3472623026846,-56.3472735484843,-56.3472848076243,-56.347296053424,-56.3473072992238,-56.3473189185495,-56.3473305111948,-56.3473424773661,-56.3473544435373,-56.3473670900594,-56.3473800967673,-56.347393090135,-56.3474060968429,-56.347419116891,-56.3474321235989,-56.3474447968015,-56.3474574433236,-56.3474694361753,-56.3474810821814,-56.3474930750331,-56.3475050678848,-56.3475177410874,-56.3475310946408,-56.3475454753907,-56.3475608833369,-56.347577651985,-56.3475958213554,-56.3476146443962,-56.347633840963,-56.3476530108494,-56.3476718605707,-56.3476900299411,-56.3477067985892,-56.347722553381,-56.3477372809764,-56.3477506345298,-56.3477629875673,-56.3477746335734,-56.3477855992287,-56.3477958845331,-56.3478160949561,-56.3478359985542,-56.3478459770337,-56.3478562756783,-56.3478669078283,-56.3478778868237,-56.3478895728505,-56.347901552362,-56.3479139187397,-56.3479272989735,-56.347940652527,-56.3479547264519,-56.3479691072018,-56.3479838614776,-56.3479985757328,-56.3480136501737,-56.3480287112744,-56.3480437723752,-56.3480588334759,-56.3480731875453,-56.3480875816354,-56.3481009085084,-56.348113581711,-56.348125534542,-56.3481470656462,-56.3481651816557,-56.3481808830867,-56.3481941832793,-56.348209497844,-56.3482166215179,-56.3482213572936,-56.3482232916245,-56.3482228780779,-56.3482227846964,-56.3482237318515,-56.3482267200593,-56.3482314291546,-56.3482381793025,-56.3482466369976,-56.3482568155803,-56.3482673276684,-56.3482771594055,-56.3482815483356,-56.3482889788344,-56.3482937146101,-56.3482953020955,-56.3482894457419,-56.3482771060446,-56.3482664872349,-56.3482548945896,-56.3482432752639,-56.3482313090926,-56.3482196897669,-56.3482042818207,-56.3481922756288,-56.3481856989036,-56.3481849251713,-56.3481872330282,-56.3481916219583,-56.3481980386009,-56.3482058426256,-56.3482102315558,-56.3482204368189,-56.3482330166399,-56.3482480243798,-56.3482647530072,-56.3482821219648,-56.3482985037467,-56.3483128311357,-56.3483288393915,-56.3483325079502,-56.348318794211,-56.348305093812,-56.3482896325049,-56.3482759054255,-56.348271062928,-56.3482672476271,-56.3482729705785,-56.3482866176167,-56.3483050137707,-56.3483248106471,-56.3483439004923,-56.3483616429758,-56.3483783315826,-56.3483943398384,-56.3484099745683,-56.3484174450877,-56.3484249022669,-56.3484323727863,-56.3484391496147,-56.348445926443,-56.348452369766,-56.3484581327381,-56.3484641891949,-56.348469952167,-56.3484760486444,-56.3484824919674,-56.3484896023011,-56.348497419666,-56.3485154422941,-56.3485259810625,-56.3485372402025,-56.3485484860022,-56.3485600786475,-56.3485716712928,-56.3485829170926,-56.3485934825414,-56.348612225541,-56.3486272466211,-56.34863781207,-56.3486432148563,-56.3486417741133,-56.3486359044195,-56.3486276468275,-56.3486228043301,-56.3486128391908,-56.348603527722,-56.3485993789157,-56.348592828871,-56.3485893337351,-56.3485930022938,-56.3486015000096,-56.3486116919325,-56.3486205231536,-56.3486245652382,-56.3486234580005,-56.3486209900611,-56.3486212435251,-56.3486242450731,-56.3486296478595,-56.3486374518842,-56.3486476571473,-56.3486602503086,-56.3486748845225,-56.3486909194588,-56.3487079549111,-56.3487246701983,-56.3487396512577,-56.3487515907485,-56.3487600751242,-56.3487658114158,-56.3487660648799,-56.3487642772913,-56.3487604353099,-56.3487569268338,-56.3487558195961,-56.3487547123584,-56.3487539519663,-56.3487504568304,-56.3487472951999,-56.3487424260221,-56.3487389308862,-56.3487378236485,-56.3487404650107,-56.3487469083337,-56.3487451207451,-56.3487423059601,-56.3487429062697,-56.3487472951999,-56.3487513372845,-56.3487567534111,-56.3487573537207,-56.3487528180482,-56.3487476420454,-56.3487417456712,-56.3487351689461,-56.3487275783647,-56.3487234162182,-56.3487192540717,-56.348709262252,-56.3487040862493,-56.348698563401,-56.3486926937072,-56.3486813411857,-56.3486754714919,-56.3486699486436,-56.3486644257953,-56.3486592497926,-56.3486540604497,-56.3486488844469,-56.3486433615987,-56.3486381722557,-56.3486326494075,-56.3486271265592,-56.3486212702056,-56.3486150536662,-56.3486091706322,-56.3486036477839,-56.3485980982552,-56.3485935892631,-56.3485859319808,-56.3485834640413,-56.3485820099581,-56.3485805158542,-56.3485807693182,-56.3485819966178,-56.3485825969274,-56.3485838509075,-56.3485847713822,-56.3485853716918,-56.3485856251558,-56.3485858919601,-56.3485861454242,-56.3485867457338,-56.3485887200853,-56.3485920551386,-56.3485967508937,-56.3486021403398,-56.3486078632913,-56.3486136262634,-56.3486241650318,-56.3486333430985,-56.3486456160947,-56.3486599434837,-56.3486752847289,-56.3486906393143,-56.348704633198,-56.3487213484852,-56.3487353023482,-56.348747241839,-56.3487588344843,-56.3487707606349,-56.3487834338375,-56.3487971609169,-56.3488064457053,-56.3488205062901,-56.3488297910785,-56.3488435181579,-56.3488524561007,-56.3488607136927,-56.3488720528739,-56.3488786029186,-56.3488868605106,-56.3488951181026,-56.3489050832419,-56.3489143546901,-56.348928802141,-56.3489394476311,-56.3489494127704,-56.3489689428426,-56.348979228147,-56.3489898469567,-56.3490011594575,-56.3490128054637,-56.3490251318207,-56.3490384586937,-56.3490525059382,-56.3490668600076,-56.3490818944279,-56.3490976091991,-56.3491133373105,-56.3491290520817,-56.3491451136984,-56.3491608151294,-56.3491765299005,-56.349191884486,-56.3492069189063,-56.3492212462953,-56.3492349200138,-56.3492478733609,-56.3492594660061,-56.349280663605,-56.3493004604814,-56.34932164474,-56.3493339444166,-56.3493476181351,-56.3493626525554,-56.349379768049,-56.349397537213,-56.3494163602539,-56.3494355034598,-56.3494546733462,-56.349473803212,-56.349491945902,-56.3495093815607,-56.3495258167033,-56.349541184629,-56.349555578719,-56.3495689055921,-56.3495815787946,-56.3495931981203,-56.3496140355334,-56.3496321782234,-56.3496482398401,-56.3496625672291,-56.3496765877932,-56.3496902214911,-56.3497038685292,-56.3497178490727,-56.3497325499877,-56.3497476110884,-56.3497623386838,-56.3497767194336,-56.349790446513,-56.3498034532209,-56.349816473269,-56.3498308540189,-56.349846942316,-56.3498643779747,-56.3498824806441,-56.3498992092715,-56.3499138701658,-56.349926143162,-56.3499370287759,-56.349946540348,-56.3499563987655,-56.3499662305027,-56.3499760889203,-56.3499808113557,-56.3499903229278,-56.3499991541489,-56.3500083322156,-56.3500185241385,-56.3500297832785,-56.3500434169764,-56.3500584380565,-56.3500748331785,-56.3500919219917,-56.3501093843308,-56.3501264998243,-56.3501436153179,-56.3501600237802,-56.3501757385513,-56.3501904394663,-56.3502033928134,-56.3502146386131,-56.3502275786199,-56.3502347022938,-56.3502411055961,-56.3502475489191,-56.3502539522215,-56.3502610492149,-56.3502684930539,-56.3502762703982,-56.3502840744229,-56.3502929056441,-56.350307539858,-56.3503184521524,-56.3503355142851,-56.3503508555303,-56.3503631418667,-56.3503747078316,-56.3503835257125,-56.3503944380069,-56.3504066843227,-56.3504196510099,-56.3504325776765,-56.3504451975182,-56.350456443318,-56.3504714510579,-56.3504830703836,-56.3504947030495,-56.3505087102734,-56.3505216903008,-56.3505367380614,-56.3505494112639,-56.3505634184878,-56.3505781460832,-56.3505935140088,-56.3506095889658,-56.3506201544146,-56.350630373018,-56.3506395510847,-56.3506480087799,-56.3506551057733,-56.3506597748479,-56.3506617491995,-56.3506606419618,-56.3506568266608,-56.3506509302866,-56.3506430195401,-56.3506333879062,-56.3506230759213,-56.3506131107821,-56.3505990501973,-56.3505911261107,-56.3505835622098,-56.3505756381231,-56.3505673805311,-56.3505625513739,-56.3505525728945,-56.3505419274043,-56.3505306282437,-56.350518635392,-56.350505308519,-56.35049098113,-56.3504745993482,-56.3504561765137,-56.3504367531633,-56.3504169562868,-56.3503978664417,-56.3503808176492,-56.3503654630638,-56.3503511089944,-56.3503374352758,-56.3503241084028,-56.3503118087262,-56.3503001627201,-56.3502850615987,-56.3502771508523,-56.3502712811584,-56.3502677860226,-56.3502714545812,-56.3502823401952,-56.3502929056441,-56.3503948784548,-56.3504009749118,-56.3504659813123,-56.3504723848764,-56.3504812164382,-56.3504934354882,-56.3505091104852,-56.3505278800938,-56.350549037525,-56.3505599497623,-56.3505715695141,-56.3505831885702,-56.3505951416377,-56.3506071080087,-56.3506194076863,-56.3506320539923,-56.3506443536836,-56.350656999976,-56.3506696731723,-56.350682319479,-56.3506949664769,-56.350707639676,-56.3507199393641,-56.35073193193,-56.3507435516837,-56.3507551707372,-56.3507767016682,-56.3507961518976,-56.3508128669898,-56.350826860967,-56.3508415222608,-56.3508493258317,-56.3508499264664,-56.3508471113325,-56.3508480585819,-56.3508459240883,-56.3508349318729,-56.3508229124247,-56.3508146546323,-56.3508063968552,-56.3507981128873,-56.3507936174842,-56.3507887747723,-56.3507839320524,-56.350778382508,-56.350772859866,-56.3507669770235,-56.3507614141762,-56.3507558646387,-56.350750315112,-56.3507454455111,-56.3507412967382,-56.3507374812809,-56.3507315582392,-56.3507273430881,-56.3507241946679,-56.350721032959,-56.3507185518698,-56.3507177650652,-56.3507200728865,-56.3507261692546,-56.3507360272933,-56.3507475932114,-56.3507587856048,-56.3507676170961,-56.350773993686,-56.3507790366024,-56.3507833720024,-56.3507887346535,-56.3507947646117,-56.3508018351096,-56.350805543675,-56.3508092389316,-56.350815975423,-56.3508220315685,-56.3508263938471,-56.3508283414355,-56.3508272348865,-56.350823365647,-56.3508188300703,-56.3508149615161,-56.3508138542879,-56.3508165086864,-56.3508218982093,-56.3508303830451,-56.3508409216607,-56.350853194331,-56.3508661616373,-56.3508791411451,-56.3508910804992,-56.3509137845546,-56.3509045590301,-56.3510007325323,-56.3510879141198,-56.3512221989612,-56.3512927279498,-56.3513811528453,-56.3515302816033,-56.3516367826735,-56.3516874117323,-56.3516977502487,-56.3517073948334,-56.3517167068095,-56.3517249639019,-56.3517332486406,-56.3517408520633,-56.3517481095777,-56.3517553401489,-56.3517625969493,-56.3517694935117,-56.3517764177224,-56.3517833009803,-56.3517901975475,-56.3518049657442,-56.3518125429395,-56.3518276703674,-56.3518427852061,-56.3518500150927,-56.3518572456719,-56.3518641429491,-56.3518710531805,-56.3518776031448,-56.3518841793673,-56.3518904229793,-56.3518970261682,-56.3519036293508,-56.3519105665631,-56.3519175170682,-56.351924827153,-56.3519321512407,-56.3519394613332,-56.3519464381071,-56.3519534155985,-56.35196037909,-56.3519666752574,-56.3519726255111,-56.3519782014884,-56.3519834308552,-56.3519883269055,-56.3519932222578,-56.3519980920585,-56.352002654114,-56.3520075099099,-56.3520124059746,-56.3520172750773,-56.3520224907996,-56.3520276939112,-56.3520329096368,-56.3520384593789,-56.352043661809,-56.3520491845798,-56.3520547476304,-56.3520602704085,-56.3520719696303,-56.3520853767324,-56.3520926073974,-56.3521087352748,-56.3521269313042,-56.352145434393,-56.3521629497993,-56.3521712077349,-56.3521787850244,-56.3521856683869,-56.3521918718167,-56.3521977412368,-56.3522032910179,-56.3522088138174,-56.3522136559969,-56.352218872458,-56.3522237013365,-56.3522288908252,-56.3522337599804,-56.3522392828009,-56.3522448325852,-56.3522503554084,-56.3522565581543,-56.3522631351984,-56.3521979055268,-56.3520876574935,-56.3519562946009,-56.3520068327843,-56.3521132154944,-56.3522574521644,-56.3524494880576,-56.3524986832533,-56.3525076212251,-56.352520641234,-56.3525373833576,-56.3525568599275,-56.3525773637596,-56.3525988948494,-56.352619438977,-56.3526389425545,-56.3526553776553,-56.3526683843716,-56.3526790428581,-56.3526873002179,-56.3527093385416,-56.3527525112019,-56.3526739419855,-56.3525502755191,-56.3526480636473,-56.3526215260042,-56.3526764691664,-56.3527540910769,-56.3528565679061,-56.3531440660926,-56.3532393471616,-56.3531557368567,-56.3529450787514,-56.3529161279584,-56.3530422433834,-56.3530464057781,-56.3530529560226,-56.3530615600879,-56.3530715517653,-56.3530828777009,-56.3530942439738,-56.3531048892744,-56.3531141739962,-56.3531217778375,-56.3531269542025,-56.3531304622987,-56.3531267802322,-56.353125846641,-56.353132730221,-56.3531406543723,-56.3531519533115,-56.3531660007294,-56.353181742048,-56.3531985239429,-56.3532156661892,-56.3532324618099,-56.3532492700468,-56.3532664123043,-56.3532753504302,-56.3532935199611,-56.3533110088495,-56.353326070248,-56.3533374088476,-56.3533480549087,-56.3533590205475,-56.353370666134,-56.3533857005128,-56.3534017621454,-56.3534164632028,-56.3534280561134,-56.3534407026307,-56.3534529754813,-56.3534621401916,-56.3534719988501,-56.3534826304808,-56.3534942767718,-56.3535018403433,-56.3535094442602,-56.353517395514,-56.3535218905872,-56.3535380590179,-56.3535531871446,-56.3535723569455,-56.3535833093068,-56.3535949418707,-56.3536079217252,-56.3536212488919,-56.3536359499614,-56.353651304617,-56.3536669925926,-56.3533645738557,-56.3529572414941,-56.3526012028351,-56.3523944680784,-56.3522178693578,-56.3519721475943,-56.351912941125,-56.3519677190442,-56.3522601454036,-56.3523957424031,-56.3524811077128,-56.3525261109047,-56.3530885994771,-56.353392696441,-56.353555727735,-56.3537259783128,-56.3538074577768,-56.3538448121377,-56.3538617191997,-56.3538780747316,-56.3538954705888,-56.3539131859981,-56.3539316224213,-56.3539503517868,-56.353968788205,-56.3539871842423,-56.3540045800804,-56.3540212815108,-56.3540366228202,-56.3540502702193,-56.3540628896504,-56.3540741358935,-56.3540942795025,-56.3541130755956,-56.3541318987672,-56.3541514289663,-56.3541709724735,-56.3541901686643,-56.3541994402165,-56.3542165958847,-56.3542241595283,-56.3542382604857,-56.3542492796457,-56.3542537748064,-56.3542600182673,-56.3542631666184,-56.3542635931047,-56.3542620061398,-56.3542583506333,-56.3542529879136,-56.3542462646007,-56.3542422223066,-56.3542381800071,-56.3542337910809,-56.3542294021537,-56.3542250132256,-56.3542209716181,-56.3542169293139,-56.3542102059908,-56.3542065504665,-56.3542059503694,-56.3542070845691,-56.3542113262681,-56.3542148352506,-56.3542193304227,-56.354224172918,-56.354230042681,-56.3542366194831,-56.3542435032213,-56.3542586308104,-56.3542668884514,-56.3542751460852,-56.3542919683033,-56.3543091371537,-56.3543180880539,-56.3543362577921,-56.3543547872476,-56.3543733300175,-56.3543911795348,-56.3544069871196,-56.3544196872005,-56.3544344147272,-56.3544474350406,-56.3544628425256,-56.3544779304776,-56.3544841336098,-56.3544722344629,-56.3544606415363,-56.3544541980608,-56.3544405916869,-56.3544341482168,-56.3544277047363,-56.354416178597,-56.3544114430389,-56.3544043460038,-56.3544003571838,-56.3544028382399,-56.3544073341415,-56.3544145645513,-56.3544259040602,-56.3544419922181,-56.3544522773605,-56.3544642571236,-56.3544775969986,-56.3544922848653,-56.3545076923817,-56.3545241007762,-56.3545408695908,-56.3545579586386,-56.3545750476819,-56.3545918291084,-56.3546085715292,-56.3546246597069,-56.3546407214807,-56.3546564763324,-56.3546718574592,-56.3546868919489,-56.3547012458042,-56.3547155732363,-56.3547292471387,-56.3547428806168,-56.3547562071902,-56.3547688273989,-56.3547814469059,-56.3547937204839,-56.3548056329259,-56.3548172258574,-56.3548288180829,-56.3548400643795,-56.3548509766597,-56.3548615416061,-56.3548721072517,-56.3548823255726,-56.3549017893595,-56.3549192117202,-56.3549335655549,-56.3549415163945,-56.3549323384688,-56.3549200920228,-56.3549057910184,-56.3548908371873,-56.3548755493315,-56.3548680786118,-56.3548602745753,-56.3548528171607,-56.3548453464451,-56.3548382230518,-56.3548317929135,-56.3548256967938,-56.3548202806212,-56.3548125029839,-56.3548091677818,-56.3548133304209,-56.3548273640733,-56.3548410379952,-56.3548577533141,-56.3548765231947,-56.3548962932307,-56.3549163965779,-56.354936167301,-56.3549556171185,-56.3549737063281,-56.3549907682725,-56.3550068036295,-56.3550221847584,-56.3550372456997,-56.3550523066337,-56.3550680886599,-56.3550842033048,-56.3550924610732,-56.3551092696815,-56.3551182074076,-56.3551271591353,-56.3551450081551,-56.3551539458885,-56.3551628969232,-56.3551718353607,-56.3551893510806,-56.3552061728439,-56.3552233419462,-56.3552411778693,-56.3552600270708,-56.3552798778151,-56.3553000744859,-56.3553206051797,-56.3553308904033,-56.3553503938265,-56.3553688832813,-56.355385305567,-56.3553986990763,-56.3554093440847,-56.3554179485316,-56.3554258597308,-56.3554347975068,-56.3554457633993,-56.3554587831434,-56.355473164199,-56.3554885982876,-56.355504740183,-56.3555129980173,-56.3555216024919,-56.355538437649,-56.35554737545,-56.3555648912714,-56.3555823534848,-56.3555987751197,-56.3556141298532,-56.3556270967067,-56.3556372885824,-56.3556437319628,-56.3556446658585,-56.3556340201223,-56.3556220276379,-56.3556072999392,-56.3555912381028,-56.3555751762619,-56.3555601424014,-56.35554199955,-56.3555313538279,-56.3555257907367,-56.3555240034498,-56.3555208415455,-56.355518026976,-56.3555135316316,-56.3555032192424,-56.3554888388956,-56.3554778730123,-56.3554669071257,-56.3554559419495,-56.3554463235237,-56.3554356645219,-56.3554318226855,-56.3554351577946,-56.3554464033896,-56.3554579963169,-56.3554716695455,-56.3554856901031,-56.3554989902505,-56.3555112902716,-56.3555225358652,-56.3555382643532,-56.3555485362725,-56.355563610559,-56.3555776714263,-56.3555903709975,-56.3555982948072,-56.3556092871553,-56.3556192529271,-56.3556322726687,-56.3556462799264,-56.355652376674,-56.3556577927659,-56.3556553115013,-56.3556501354871,-56.3556432382515,-56.3556343004653,-56.3556243353939,-56.3556140230048,-56.3555985882422,-56.3555838341229,-56.3555745497149,-56.3555608493437,-56.355548829736,-56.3555436537477,-56.3555442536358,-56.3555506836994,-56.3555605422206,-56.3555724552932,-56.3555847281402,-56.3555973476141,-56.3556096476172,-56.3556216136046,-56.3556332601192,-56.3556449059394,-56.3556565252953,-56.3556688517614,-56.3556883413039,-56.3557019754512,-56.3557156221917,-56.3557282423588,-56.3557401414064,-56.3557514009692,-56.3557636473407,-56.3557776274014,-56.3557939828685,-56.3558130859932,-56.3558236516003,-56.3558349104535,-56.3558465298057,-56.3558588026291,-56.3558717561035,-56.3558854028326,-56.3558986764534,-56.3559123238745,-56.3559256239614,-56.3559382434128,-56.3559505169215,-56.3559716209239,-56.3559893369492,-56.3560049984204,-56.3560124690092,-56.3560277831465,-56.3560451386561,-56.3560638421501,-56.3560737005965,-56.3560838923554,-56.3560944712286,-56.3561053429345,-56.3561162558331,-56.3561271408343,-56.3561380404215,-56.3561492727505,-56.3561605182574,-56.356171390651,-56.3561819695169,-56.3561925350689,-56.3562027533058,-56.3562224973287,-56.3562402125915,-56.3562558740044,-56.3562688009264,-56.3562831017456,-56.3562898783288,-56.3562874102728,-56.3562767519377,-56.3562657993845,-56.3562524588553,-56.3562377717346,-56.3562227372913,-56.3562080626534,-56.3561954432638,-56.3561845310955,-56.3561719507918,-56.3561638002963,-56.3561577036447,-56.3561492191224,-56.3561355989414,-56.3561236992806,-56.3561097457614,-56.3560937105204,-56.3560766751794,-56.3560585860824,-56.3560404962786,-56.356022420486,-56.3560046780103,-56.3559879230145,-56.3559715544327,-56.3559561998193,-56.3559418724781,-56.355928905733,-56.3559166329325,-56.3559012511379,-56.3558902588065,-56.3558857634396,-56.3558894450857,-56.3558958750988,-56.3559053869219,-56.3559172999168,-56.3559312534471,-56.3559455543016,-56.3559602282578,-56.35597348853,-56.3559857746133,-56.3559970208278,-56.3560075863817,-56.3560178179201,-56.356027329722,-56.3560406297716,-56.3560521961144,-56.3560575988295,-56.3560606004875,-56.3560526759709,-56.3560376150514,-56.356025288618,-56.3560126420445,-56.3559955265896,-56.3559811323078,-56.3559684327746,-56.3559659647781,-56.3559765303248,-56.3559898038831,-56.3560007160533,-56.3560116149184,-56.3560225270862,-56.3560361472532,-56.3560418972849,-56.3560469666662,-56.3560462058737,-56.3560420438305,-56.356034120028,-56.3560221402391,-56.3560118550579,-56.3559995021697,-56.3559861351852,-56.3559720743832,-56.3559580002805,-56.3559459814254,-56.3559408047257,-56.3559332010902,-56.3559279853135,-56.3559241434336,-56.3559195944313,-56.3559147252852,-56.355911909978,-56.3559142177016,-56.3559203143572,-56.355926411007,-56.3559335349237,-56.3559413387813,-56.3559491426417,-56.3559593343487,-56.35596508437,-56.355970500364,-56.3559793314853,-56.355990217135,-56.3560010894785,-56.3560099205845,-56.3560139362064,-56.3560077329511,-56.3559950327751,-56.3559840676944,-56.3559717413268,-56.3559594016569,-56.3559470752965,-56.3559354288745,-56.3559200207173,-56.3559090284688,-56.3559045066572,-56.3559140177096,-56.3559259437892,-56.3559392172812,-56.3559508100366,-56.3559572532875,-56.3559462610426,-56.3559342687115,-56.3559226487776,-56.3559096954464,-56.3558953417399,-56.3558810145073,-56.3558670205939,-56.3558530128193,-56.3558396863816,-56.3558263327683,-56.3558146465891,-56.355805028247,-56.3558001856054,-56.3557963437609,-56.3557983048748,-56.3558078299317,-56.3558190753672,-56.3558334297584,-56.3558491447305,-56.3558662335917,-56.3558781994414,-56.3558904993074,-56.355903492413,-56.3559168195438,-56.3559304661177,-56.3559448205081,-56.3559595082146,-56.3559745425499,-56.3559888962446,-56.356002569999,-56.3560145365393,-56.356031305262,-56.3560426176496,-56.3560549175163,-56.3560679371067,-56.3560822914995,-56.3560973258373,-56.3561130408112,-56.3561284217733,-56.3561424421499,-56.3561584639554,-56.3561638799128,-56.3561648270139,-56.3561596377081,-56.3561513806276,-56.3561400808386,-56.356125380535,-56.356113760615,-56.3561017947755,-56.35608949492,-56.3560768484358,-56.3560642019562,-56.3560512221607,-56.3560372150963,-56.3560218069662,-56.3559981947279,-56.3559831604053,-56.3559697935045,-56.3559540255779,-56.355950863657,-56.3559634836526,-56.3559743824351,-56.3559852945246,-56.3559999690437,-56.3560135758125,-56.3560138296892,-56.3560083063902,-56.3559959800628,-56.3559812261118,-56.3559671918899,-56.3559558795267,-56.3559431794043,-56.3559417253859,-56.3559502231474,-56.3559624965036,-56.3559757964254,-56.3559880962587,-56.3559990083382,-56.3560116283132,-56.3560225270775,-56.3560248480755,-56.3560186315441,-56.3560073324973,-56.3559966736017,-56.3559846946151,-56.3559709672467,-56.3559565466349,-56.3559428325763,-56.355930466489,-56.3559205015545,-56.3559129237636,-56.3559077478106,-56.3559045865971,-56.3559058670509,-56.3559061202392,-56.3558988904783,-56.3558913126823,-56.3558851094801,-56.3558744910983,-56.3558624716572,-56.3558494779124,-56.3558347902696,-56.355819409386,-56.3558091905679,-56.3557947964658,-56.3557804421466,-56.3557762934735,-56.3557823900872,-56.3557891666365,-56.3558007328597,-56.3558075094055,-56.3558170211099,-56.3558265328077,-56.355833656671,-56.3558445687229,-56.3558561349285,-56.35586017701,-56.3558597502732,-56.355852519821,-56.3558428882402,-56.3558299078145,-56.3558152068905,-56.3558025604789,-56.3557902342293,-56.3557891268588,-56.3557931424753,-56.355796824072,-56.3557936621945,-56.3557881396494,-56.3557754667888,-56.355764501109,-56.3557521608645,-56.3557388073634,-56.3557251072419,-56.3557107264953,-56.3556960124368,-56.3556809112731,-56.3556651692523,-56.3556490813118,-56.3556322994432,-56.3556151835447,-56.3555984149789,-56.3555830069851,-56.3555696535064,-56.3555589947171,-56.3555469753513,-56.3555400915698,-56.3555335418077,-56.3555269913469,-56.3555200949664,-56.3555135445039,-56.3555076886902,-56.3555004582962,-56.3554969498433,-56.3555040730251,-56.3555146119754,-56.3555292731002,-56.3555453478456,-56.3555603820412,-56.3555733624265,-56.3555860087986,-56.3556003630557,-56.3556164244976,-56.3556277367575,-56.3556393565707,-56.3556560979656,-56.3556663300388,-56.3556789631074,-56.3556902224385,-56.3556942645273,-56.3556921299295,-56.3556876074921,-56.3556824183004,-56.3556745079529,-56.355666930242,-56.3556535767847,-56.3556391960745,-56.3556255224687,-56.3556111417563,-56.3555947330093,-56.3555824068168,-56.3555693866841,-56.3555560332357,-56.3555427062446,-56.3555300334363,-56.3555170133085,-56.355503325848,-56.3554892791785,-56.3554742178421,-56.3554584632933,-56.3554426948767,-56.3554269131734,-56.3554111321693,-56.3553956970798,-56.3553802627073,-56.3553654818155,-56.3553507142366,-56.3553438171969,-56.355330063579,-56.3553235131635,-56.355311133416,-56.355299087689,-56.3552866946459,-56.3552729674845,-56.3552568525063,-56.3552383364132,-56.3552174722511,-56.3552058127304,-56.3551941936606,-56.3551815202074,-56.3551688871859,-56.3551555197905,-56.3551418595274,-56.3551278393274,-56.3551134586965,-56.3550991044944,-56.3550847502969,-56.3550700627787,-56.3550557085631,-56.3550413814989,-56.3550270272961,-56.355013006396,-56.3549993725547,-56.3549860463118,-56.3549733992866,-56.3549607529616,-56.3549491603162,-56.3549375412465,-56.3549153296539,-56.3548927714415,-56.3548811516717,-56.3548691859867,-56.3548562056447,-56.3548428786964,-56.3548292051148,-56.3548151842267,-56.3548008307227,-56.3547861432022,-56.3547714416779,-56.3547567277489,-56.3547420269257,-56.3547273261025,-56.3547129454793,-56.3546985912766,-56.3546845572756,-56.3546708837098,-56.3546575296469,-56.3546448833241,-56.3546322370148,-56.3546202442177,-56.354608291135,-56.3545966720686,-56.3545846792831,-56.3545727128885,-56.3545603867889,-56.3545473667512,-56.3545337057926,-56.3545196585016,-56.3545056252294,-56.3544912439253,-56.3544768369386,-56.3544631362741,-56.354449435611,-56.3544364155851,-56.3544244361191,-56.3544127906615,-56.3544018244358,-56.3543065089872,-56.3542455373602,-56.3542042297022,-56.354107379551,-56.3540748690879,-56.3540357693858,-56.3539785795729,-56.3539561149068,-56.3539520060653,-56.353969348344,-56.3539711494803,-56.3539592228599,-56.3539162273974,-56.3538535822442,-56.35380292932,-56.3537648294854,-56.3537258761381,-56.353692498808,-56.3536600422329,-56.3536225294182,-56.353598903707,-56.353606708243,-56.3536761438203,-56.3537496216379,-56.353733787012,-56.3537956057352,-56.3538363061159,-56.3538962975157,-56.3539542870279,-56.3539108916245,-56.3538822231608,-56.3538805693161,-56.3538804625723,-56.3538773673748,-56.3538727787781,-56.3538636675212,-56.353863320299,-56.3538580374569,-56.3538526879815,-56.3538470984517,-56.3538426294895,-56.3538258343454,-56.3538063439774,-56.3537997809877,-56.35379307042,-56.3537874278128,-56.3537055320049,-56.3536163259571,-56.3533687853632,-56.3533282042537,-56.353221802792,-56.3530721119543,-56.3530473261009,-56.3529788510632,-56.352944606765,-56.3529239956094,-56.3528828414008,-56.3527942759662,-56.3527836966573,-56.3527188370253,-56.3526084865268,-56.3525555923274,-56.3525272846253,-56.3524998036545,-56.3525126107093,-56.3525319535487,-56.3525647307134,-56.3525705737789,-56.3525158786396,-56.3524769119572,-56.3524673735994,-56.3524630783421,-56.3524607172543,-56.3524526458717,-56.3524447753487,-56.352427126544,-56.3524379184642,-56.3524693748022,-56.3525086083931,-56.3525242561863,-56.3525418389975,-56.3525551255254,-56.3525534582811,-56.3525447739218,-56.3525509365815,-56.3525614753529,-56.3525794317906,-56.3525817796758,-56.3525712006802,-56.3525590740524,-56.3525555924556,-56.3525835403027,-56.352633019131,-56.3526504546961,-56.3526630076602,-56.3526701847404,-56.3526801767981,-56.3526832584501,-56.3526757345917,-56.3526725595723,-56.3526611801151,-56.3526677438918,-56.3526716127442,-56.3526704519582,-56.3526675038066,-56.3526204396719,-56.3525666652536,-56.3525580073442,-56.3525410118093,-56.3525185600216,-56.3524978294589,-56.3524820080154,-56.3524716691304,-56.3523967372633,-56.3523640007704,-56.3523471253101,-56.3523742992258,-56.3524124252699,-56.3524170814429,-56.352360598623,-56.3523264479696,-56.3523426160999,-56.3524417202854,-56.3525467348883,-56.3525961068071,-56.3526481071106,-56.3527009208146,-56.352807895909,-56.3528781854026,-56.3529059468348,-56.3528773453256,-56.3528847759462,-56.3528931532495,-56.3529343215085,-56.3529869350265,-56.3530198989895,-56.352986254555,-56.352985774268,-56.3530072656909,-56.3529778234104,-56.3529381096592,-56.3529509965659,-56.3529612953185,-56.3529648569191,-56.3529853338924,-56.3530179242243,-56.3530361473217,-56.3530452714731,-56.3530454452535,-56.3530424436919,-56.3530411365154,-56.3530147761538,-56.3529652035724,-56.3529259704354,-56.3529132566867,-56.352893099731,-56.3528813740283,-56.3528755311322,-56.3528161669147,-56.3527697297952,-56.3527376998551,-56.352697812855,-56.3526811375716,-56.3526698383313,-56.3526603402243,-56.3526559376001,-56.3526530158899,-56.3526342331404,-56.352637048049,-56.3526396892326,-56.3526275094678,-56.3525881290297,-56.3525740153156,-56.3525288318278,-56.3525194675244,-56.3525046728005,-56.3525069274163,-56.3525429063769,-56.3526006024579,-56.3526199724206,-56.3526376214387,-56.3526841920229,-56.352706923927,-56.3526824445284,-56.3526728932819,-56.352715902208,-56.3527602984442,-56.3528131920898,-56.3528250645281,-56.3528403128866,-56.3528455023989,-56.3528497044423,-56.3528525187989,-56.3528110711037,-56.3527522005853,-56.352699026274,-56.3526779892899,-56.3526572315726,-56.3526337531512,-56.3526199458995,-56.3526030303603,-56.3525295256328,-56.3524571554758,-56.3524415874012,-56.3524051550307,-56.3523889734422,-56.3523738322512,-56.3523597181507,-56.352326314247,-56.3522497548912,-56.3522373214855,-56.3522022767798,-56.3521294664445,-56.3521115503955,-56.3520908596977,-56.352057615496,-56.3520438884739,-56.3520283206768,-56.3520158740784,-56.3520000262706,-56.35197553362,-56.3519561764229,-56.3519076985157,-56.3518884485202,-56.3518719465108,-56.351823201636,-56.351786382355,-56.3517324748149,-56.3517141718283,-56.3516715903296,-56.351646763998,-56.3516243923233,-56.3516013005544,-56.3515564638083,-56.351538921608,-56.3514888955293,-56.351500528175,-56.3514741411661,-56.3513895114746,-56.3513910723351,-56.3513960079457,-56.3513576281875,-56.3512874851492,-56.3511927965483,-56.3511274825874,-56.3510068068091,-56.3509399329634,-56.3508494729197,-56.3508066242495,-56.350719805932,-56.3506979010706,-56.3506743026325,-56.3506039460723,-56.3505727697068,-56.3505339899416,-56.3504632734243,-56.3504443705742,-56.3503983064624,-56.3503808041374,-56.3503543510054,-56.3503347669863,-56.3503193062281,-56.3502996960594,-56.3502739227612,-56.350239931994,-56.350206994485,-56.3501647729533,-56.3501005661348,-56.3500741264533,-56.3500425500704,-56.3500081853263,-56.349987548218,-56.3499727136477,-56.3499461271468,-56.3499147369466,-56.3498937533555,-56.3498703279657,-56.3498579076969,-56.3498341089527,-56.3498089230513,-56.3497624855405,-56.3497346173745,-56.3497211310939,-56.3497083776954,-56.3496848319799,-56.3496451713478,-56.3496208787984,-56.3495860076102,-56.3495548847797,-56.3495224152083,-56.3494783123994,-56.3494498973968,-56.3493804481586,-56.3493147613554,-56.3492768083236,-56.3492210329559,-56.3491645637935,-56.3491207814828,-56.3490916727147,-56.3490588155946,-56.3489256006249,-56.3488399832679,-56.3486643992565,-56.3489192236574,-56.3503863942002,-56.3507791427567,-56.3510477711131,-56.3513985808748,-56.3534063514307,-56.3534686768488,-56.3555535119054,-56.3574679125988,-56.3610145415638,-56.3615042875287,-56.3654281646177,-56.3655630341734,-56.3589233566804,-56.3579527895947,-56.3556231747956],&#34;lat&#34;:[-34.8298377704057,-34.8319233727812,-34.8352491575989,-34.8355717210029,-34.8377205255193,-34.8381066785113,-34.8411323822666,-34.8412187263663,-34.8430777580857,-34.8433946987243,-34.8442895769026,-34.8474768086504,-34.8485319581404,-34.8495400847238,-34.8505366525149,-34.8507237748787,-34.851609111578,-34.852269172184,-34.8524871145824,-34.8532090635767,-34.8548391092329,-34.8579536154635,-34.8568491758757,-34.8525755162867,-34.852177611893,-34.8519742533473,-34.8519290332438,-34.8518897431932,-34.8518293575065,-34.8517468580521,-34.8516242461239,-34.8513405118312,-34.8515773063372,-34.85171360615,-34.8518349317304,-34.8519017503106,-34.8519047875164,-34.8520047190058,-34.8521314418941,-34.8523537900238,-34.8524318381102,-34.8548781583242,-34.8558810300455,-34.861068153377,-34.8615191743134,-34.8652806758827,-34.8671704454852,-34.8690917872036,-34.8691143363328,-34.8696375670095,-34.8709410484149,-34.8729165630717,-34.8748244211696,-34.874865052124,-34.87486065569,-34.8746348392307,-34.8745911248504,-34.874497805871,-34.8744506897784,-34.8744049749888,-34.8743707260345,-34.8743672331403,-34.8743178614137,-34.8742827687993,-34.874195228657,-34.8741844982687,-34.8741840384953,-34.8741459414408,-34.873924875466,-34.873816654772,-34.8736256804191,-34.873561137114,-34.8735373390101,-34.8732728823902,-34.8730780599995,-34.8730684421257,-34.8730356138241,-34.8729754393754,-34.8729520352277,-34.8729216300891,-34.8728710308969,-34.8728313166485,-34.8728101598926,-34.8727628731349,-34.8727183226588,-34.8726973888449,-34.8726748027539,-34.8726657136157,-34.8726567282798,-34.8726240102643,-34.8726065746929,-34.8725635764436,-34.8725258220243,-34.8725084400922,-34.8724883396863,-34.8724666693834,-34.8723173623819,-34.8723940344236,-34.8728405213551,-34.8742702211878,-34.8747392664198,-34.8751155355658,-34.8751452374561,-34.8761672741307,-34.8769018604082,-34.8770639901718,-34.8778433865619,-34.8778985554273,-34.8779502208958,-34.8786332168998,-34.8788366282611,-34.8789125897887,-34.8797472301076,-34.8798127572979,-34.8803690265873,-34.8807248538811,-34.8807301010465,-34.8807311710938,-34.8807682703722,-34.8815720238413,-34.8816253887391,-34.8820072668663,-34.8824259388105,-34.8824334385637,-34.8824695181344,-34.8829834963572,-34.8834281839752,-34.8851100327274,-34.8854295393165,-34.8857246251774,-34.8859729270105,-34.8868689115559,-34.886891446575,-34.8873384695678,-34.8880451131687,-34.8885114471761,-34.8884998397176,-34.8885070234993,-34.8885242036021,-34.8885586261228,-34.8885817169492,-34.888619164436,-34.8886428720405,-34.8886814278822,-34.8887047886404,-34.8888168476915,-34.8888716062681,-34.8889204874637,-34.8890466239082,-34.8891951996901,-34.8891992781737,-34.8893875495622,-34.889406392418,-34.8899554281895,-34.8898564672714,-34.8892636591969,-34.8894255483305,-34.8895767930428,-34.8896418918093,-34.8900161490894,-34.8902132835142,-34.8903369919345,-34.8903850656063,-34.8904143209018,-34.8906186750037,-34.8906501893255,-34.8906804230511,-34.8908295559031,-34.8910998564947,-34.891272273748,-34.891303982601,-34.8912055318275,-34.891201376351,-34.8912422265852,-34.891531716716,-34.8918480006651,-34.8921865294197,-34.8925203640867,-34.8928494663132,-34.8932098696825,-34.8934441630135,-34.8937642314143,-34.894021368193,-34.8943194377484,-34.8945151362571,-34.894569097855,-34.8947041453876,-34.8948457169086,-34.8948872389113,-34.89483788846,-34.8947930946803,-34.894700407508,-34.8945257395123,-34.8942658271101,-34.8941558150837,-34.894092016758,-34.8939028466085,-34.8937268842822,-34.8934415527219,-34.8932309791724,-34.8931719557479,-34.8931305786176,-34.8930921713761,-34.8929946705689,-34.8929302392815,-34.8929844735923,-34.8930042377105,-34.8930076203894,-34.8930031467097,-34.8929871385982,-34.892932328197,-34.8928772127059,-34.8927010904615,-34.8925700607837,-34.8925244498376,-34.8924157002269,-34.8923339081492,-34.89216238232,-34.8921329919598,-34.8920858622421,-34.8920782204309,-34.8920558511124,-34.8920381458022,-34.8920171839879,-34.8920048605386,-34.8921145450868,-34.8921558243657,-34.8924843507055,-34.8924806379949,-34.8924795849994,-34.8925019933794,-34.8925962741257,-34.8928869392571,-34.8928342729195,-34.892959165,-34.8933015811508,-34.8933655225789,-34.8936463077893,-34.8937154780336,-34.8937453624522,-34.8946113008556,-34.8954837106938,-34.8954354066154,-34.8954716700861,-34.8955686283082,-34.8967270766825,-34.8967652703309,-34.8967552147743,-34.8967773928788,-34.8968089024624,-34.8968764706424,-34.8969746312663,-34.8970011516102,-34.8970523380083,-34.8971359111091,-34.8973696266422,-34.897372928345,-34.897401804904,-34.8974325374202,-34.8975633865691,-34.8976014295222,-34.8976270877548,-34.8976307479758,-34.8976663746827,-34.897706900583,-34.8977360656242,-34.897765020557,-34.8977971854785,-34.8978238575674,-34.8977902185522,-34.8977830131695,-34.8978157583904,-34.8978866682938,-34.897918274594,-34.8979088864189,-34.8979375645423,-34.8979898648483,-34.8980149227712,-34.8980665427263,-34.8981027597377,-34.8981273807687,-34.8981113074793,-34.8981075622144,-34.8980657072955,-34.8980516783937,-34.8980376845101,-34.8980192733483,-34.8980282313015,-34.8980575497551,-34.8980961946853,-34.8981229318076,-34.8981819455758,-34.8982908867596,-34.8983003316306,-34.8983261882988,-34.8983616565908,-34.898399427737,-34.8984451596554,-34.8984756320375,-34.8985158411076,-34.8985538590478,-34.8985651265254,-34.8986018654726,-34.898637272066,-34.8985836910996,-34.8985833025659,-34.8986027375891,-34.8986606341144,-34.8987154056949,-34.898723609926,-34.8987144707323,-34.8987368317448,-34.8987474055314,-34.8987734056069,-34.8988184354967,-34.8988440553762,-34.8988361479647,-34.8988538887808,-34.8988446740285,-34.8988988169514,-34.8989351223417,-34.8989498265051,-34.8989401999604,-34.8989633819159,-34.8990034875994,-34.8990696033637,-34.8991295376066,-34.8991819012786,-34.8992298960307,-34.8992504749772,-34.8992485523189,-34.8992289989014,-34.899186493647,-34.8991579361739,-34.8991231343043,-34.8990974268947,-34.8990799842127,-34.8990685811699,-34.8990691489702,-34.8991363077648,-34.8991509936721,-34.8991825788497,-34.8992084733158,-34.8992474403403,-34.899244171269,-34.8992704269335,-34.8993058818852,-34.8993442049828,-34.8993798517,-34.8994296273706,-34.8994341080147,-34.8994156985205,-34.8993790196042,-34.8993734327525,-34.899356790071,-34.8993883143978,-34.8994151232238,-34.8994139742249,-34.899427717275,-34.8994730283221,-34.8995149555768,-34.8995183757839,-34.8994866313437,-34.8994638089742,-34.8994595761493,-34.8994337502498,-34.8993832234389,-34.8993726090079,-34.8993737446411,-34.8993873305571,-34.8993964379406,-34.8993799070092,-34.8993420972291,-34.8993057618233,-34.8992648608458,-34.8992291673216,-34.8991967727085,-34.8991730514842,-34.8991702969606,-34.899147358464,-34.8991381940231,-34.8991424526006,-34.8992012746032,-34.8992353855284,-34.8992828816901,-34.8993090327128,-34.8993279766134,-34.8993709214677,-34.8993684041296,-34.8993793327315,-34.899372686338,-34.8993549494049,-34.8993499079239,-34.8993633474364,-34.8993586524337,-34.8993453146325,-34.8993448002898,-34.8993453345396,-34.8993307813932,-34.8993529678353,-34.8993440098237,-34.8993167691667,-34.8993022491827,-34.8993074977186,-34.8993173236798,-34.8993612821232,-34.8993700761702,-34.899365429262,-34.8993918345772,-34.8994011293401,-34.8994201606072,-34.8994464443769,-34.8994656255469,-34.8994779472904,-34.8994879997763,-34.8994596745334,-34.8994627349063,-34.8994549671056,-34.8994861832046,-34.8994593366029,-34.8994272778256,-34.8994194718414,-34.8993911025023,-34.8993899340685,-34.899340921014,-34.8993782942368,-34.8997169383081,-34.8999205275871,-34.9000576702869,-34.900147281598,-34.9002431724163,-34.9003546690001,-34.9004205516301,-34.9004894356075,-34.9005929606647,-34.900665026164,-34.9007325659961,-34.9008226524559,-34.9010659862828,-34.9011331017812,-34.9011336958566,-34.9011372930575,-34.9012864905521,-34.9024529681348,-34.9025532245158,-34.902668877712,-34.9026790238525,-34.9027232103263,-34.9026880939907,-34.9027563672626,-34.9028908512141,-34.9029843413267,-34.903033764783,-34.9028950887566,-34.9029189826184,-34.9035099823148,-34.9033925457943,-34.9031463095336,-34.9031980039725,-34.9034702516913,-34.9035199316606,-34.9036005648474,-34.9041299728865,-34.9041245622522,-34.9041504771112,-34.9041607581586,-34.9041867501933,-34.9041996304409,-34.9042020752802,-34.9042200381479,-34.9041883969897,-34.9042191819034,-34.9043046731994,-34.9043751798055,-34.9047566257052,-34.9047900485652,-34.9047439417234,-34.9047722430807,-34.9048112504437,-34.9048296960831,-34.9049549758075,-34.9050306614862,-34.9052777980519,-34.9054034667154,-34.905492109729,-34.905489684162,-34.9054767653165,-34.9054846208016,-34.9053877027289,-34.9054137333288,-34.9053578041332,-34.905336894834,-34.9053136755112,-34.9048975175056,-34.904898845283,-34.9050083004637,-34.9051140404789,-34.9055297563842,-34.9055139876691,-34.905565200563,-34.9055807186578,-34.9056119476584,-34.9059258229357,-34.9058709886978,-34.9058991358392,-34.9059328482338,-34.9060188343112,-34.9060294435097,-34.9057513404644,-34.9057881342809,-34.9058453745983,-34.9059186729068,-34.905919810359,-34.9059358941033,-34.9059389877735,-34.9059143060649,-34.9059095700349,-34.9060305202447,-34.9060358245745,-34.9060363156386,-34.9060759006009,-34.9060914961003,-34.9061101330653,-34.906186241489,-34.9061994877367,-34.9062581520651,-34.9062352594848,-34.9062263630986,-34.9061981564992,-34.9061990795131,-34.9061761288859,-34.9061198691252,-34.9061308617735,-34.9060870788812,-34.9061084297853,-34.9060776428275,-34.9060753126002,-34.9060446216314,-34.9060401723472,-34.9060357421416,-34.9060153325559,-34.9060337574054,-34.9060235909902,-34.9059977909358,-34.9059308451296,-34.9058270304968,-34.9057853280417,-34.9057229279245,-34.9054163368929,-34.9053886669155,-34.9052923427854,-34.9053097886737,-34.9047224066471,-34.9046936234367,-34.9047105700018,-34.9046712746996,-34.9046660378847,-34.9046676768798,-34.9045856031835,-34.9044526594526,-34.9044032361256,-34.9042426425768,-34.9041670158627,-34.9041048078457,-34.9040650782175,-34.9039673189178,-34.9039441758012,-34.9039182413748,-34.9038976398205,-34.9038665069792,-34.9038254574898,-34.9037473852898,-34.9036982884674,-34.9036112020248,-34.9036011699774,-34.9036327443914,-34.903631008938,-34.9035563612231,-34.90350439629,-34.9034862977928,-34.9034659454674,-34.9034401836438,-34.9034484800724,-34.903418037707,-34.9033325324173,-34.903215357148,-34.9031644809934,-34.9031145840263,-34.9031004520824,-34.9031153239282,-34.9031050622949,-34.9031053088916,-34.9031119158938,-34.9031060486003,-34.903062327012,-34.9030182356052,-34.9029495808792,-34.9029187957767,-34.9028691913358,-34.9028820045202,-34.90294958662,-34.9029519069511,-34.9029522457483,-34.9029378669019,-34.902939181714,-34.9027623179648,-34.9027605058107,-34.9027674050208,-34.9027327640564,-34.9026915163842,-34.9026624352157,-34.9026484870879,-34.9026925012656,-34.9026471516945,-34.9026726696605,-34.9026540965368,-34.9025917707584,-34.9026003126063,-34.9026609797554,-34.9026113282514,-34.9025362204211,-34.9024946493343,-34.9024632480393,-34.9024361791586,-34.9023848072374,-34.9023623935463,-34.9023440508252,-34.9023782484111,-34.9024096496717,-34.9024450912566,-34.9024702552959,-34.9025187091889,-34.9025087082052,-34.9024712387433,-34.9024173312689,-34.9023516251405,-34.9023736087058,-34.9024935750945,-34.9026175971574,-34.9026223897539,-34.9025814167244,-34.9025963641965,-34.9025886820001,-34.9025432692289,-34.9024998076649,-34.9024290775436,-34.9024630127587,-34.902482506678,-34.9025060104904,-34.902498113124,-34.9024114499513,-34.9024160117214,-34.9024561378711,-34.9024084665663,-34.9023963136712,-34.9023011629388,-34.9022159202498,-34.9020325212099,-34.9019411588691,-34.9019347428103,-34.9018774337906,-34.9018131092345,-34.9017796050474,-34.9017869699691,-34.9018624667772,-34.9019307235326,-34.9020063450537,-34.9019968951001,-34.9019302599972,-34.9018018342798,-34.9018020337738,-34.9018024826022,-34.901768778127,-34.9016807973611,-34.9016612475944,-34.9015088663697,-34.9014924749341,-34.9014826998134,-34.901503296359,-34.901530534225,-34.9015609308259,-34.9015740390329,-34.9016757013578,-34.9017776128104,-34.9017946271235,-34.9018287803502,-34.901778958291,-34.9018002772242,-34.9017905019972,-34.9017637372936,-34.9016794623989,-34.9016051370301,-34.9015537454862,-34.9015534716359,-34.9015158359354,-34.9014878759846,-34.9014349961342,-34.901412181159,-34.9013648697591,-34.9013417867433,-34.9012508453565,-34.9012172895845,-34.9012689050557,-34.9012256481391,-34.9011749533678,-34.9010964733518,-34.9010458282975,-34.9009072257879,-34.9008255369046,-34.9007671558243,-34.9006913336188,-34.9005595009066,-34.9004606733004,-34.9003073698539,-34.9002573462311,-34.9002300088514,-34.9002032399887,-34.9001435692912,-34.9000685220085,-34.8999555904339,-34.8999011394732,-34.8998293507889,-34.8998354948377,-34.8998520613776,-34.8997698500235,-34.8996707486951,-34.8994528952127,-34.899337600614,-34.8992764086061,-34.8991952172692,-34.8990661915985,-34.8988757789814,-34.8988741323774,-34.8987387878031,-34.8985661305864,-34.8983378491682,-34.8983369127598,-34.8982440180198,-34.8981748350684,-34.8981897561376,-34.8981906239666,-34.8981751959333,-34.8981726554174,-34.8981975757289,-34.898220374425,-34.8982224710154,-34.8982503281911,-34.8982948036081,-34.8983189061894,-34.8985218756515,-34.898559535275,-34.8986139371618,-34.8986266279644,-34.8986674231659,-34.8987291605822,-34.898737430781,-34.8986953357547,-34.8987412192578,-34.8987684209703,-34.8989085089212,-34.899006956835,-34.8990409425722,-34.8990504969729,-34.8990533493949,-34.8991008867179,-34.8991525690919,-34.8992159029351,-34.8992183777136,-34.8992529872732,-34.8992419268173,-34.8991923907961,-34.8991651070288,-34.8991157679612,-34.8991888200218,-34.8992387663495,-34.8992847806727,-34.8993752013312,-34.8994244420995,-34.8996010396705,-34.8997026521445,-34.8997643481244,-34.8998303698346,-34.8999241810844,-34.8999489737399,-34.9000556995884,-34.9000163407608,-34.8999785048945,-34.8999991029238,-34.9000892939914,-34.9001248521128,-34.900117772841,-34.9001983114553,-34.9002326416668,-34.9002353787456,-34.9002812287847,-34.9002516361904,-34.9001911702352,-34.9001847304343,-34.9002119320372,-34.9001989540174,-34.9002084909716,-34.9002535374607,-34.9003744860377,-34.9004525180798,-34.9005422664828,-34.9005605867429,-34.9005569986131,-34.9005933767198,-34.9005941143424,-34.9005431688293,-34.9005727792229,-34.9005776951277,-34.9006187923869,-34.9006547607996,-34.9007522440255,-34.9008264421761,-34.9010857414929,-34.9011242333982,-34.9011426355917,-34.9010738946699,-34.9010794333474,-34.9009873739024,-34.9010126417739,-34.9010737142471,-34.9012662885515,-34.9013886301554,-34.9015016642021,-34.9016332313939,-34.9017215873752,-34.9017016122063,-34.901627528755,-34.9016797033151,-34.9017542127449,-34.9018511225534,-34.9018963492811,-34.9019303512439,-34.9019349885981,-34.9019238293593,-34.9019195032694,-34.9019535379849,-34.9020123327314,-34.902053200595,-34.902062504235,-34.9020199520993,-34.9019249923453,-34.9018527769751,-34.9019710542679,-34.9019535693985,-34.9019479967797,-34.9018848266594,-34.9018940684091,-34.9020119034113,-34.9020889034182,-34.9020881474245,-34.902064106976,-34.9019892702194,-34.9019144661682,-34.901894981011,-34.9019832058633,-34.9019904968318,-34.901903383814,-34.9017810917714,-34.901711006667,-34.9016053286803,-34.9014631423086,-34.9013930735399,-34.9014006093661,-34.901358101515,-34.9013317497411,-34.9012147973013,-34.9012221366728,-34.9013694992693,-34.9013516208739,-34.9011591948576,-34.9011099190139,-34.9012117608648,-34.9013432613642,-34.9013597927868,-34.9013443388939,-34.9012037604726,-34.9011565172513,-34.901029425215,-34.9010028278898,-34.9010850848321,-34.9010041336228,-34.9009294441871,-34.9009356011049,-34.9008855401641,-34.900753067502,-34.9006440285872,-34.9004459379615,-34.9004004193844,-34.9004781197007,-34.9004900613539,-34.900218447232,-34.9000553100842,-34.8998994036776,-34.8992809311267,-34.8991848586806,-34.8996224438501,-34.8989329331328,-34.8988595148944,-34.8988117519687,-34.8983182353644,-34.898277678577,-34.8981478430102,-34.8980256562486,-34.8979371151702,-34.8978665647851,-34.8978224294429,-34.8977673128998,-34.8977063423841,-34.8976886713097,-34.8975658943925,-34.8975192131599,-34.8974779433654,-34.8974738977586,-34.8972798820686,-34.8971165237163,-34.8968938415485,-34.8967592081621,-34.8966235181697,-34.8964404391031,-34.8963006370035,-34.8960881924405,-34.8960833341016,-34.8960172776867,-34.8960503518974,-34.8961106378076,-34.8961603962281,-34.8961560450089,-34.8960832913737,-34.8961598688053,-34.8962176059077,-34.8963158075605,-34.8964241838272,-34.896503643268,-34.8965230524127,-34.8965344039065,-34.8964971937789,-34.89640457961,-34.8963385693539,-34.8962290750963,-34.8961477535551,-34.8961134841,-34.896119679217,-34.8961831600948,-34.896189531289,-34.8960242223173,-34.8960055778332,-34.8960226535595,-34.8960290246892,-34.8961058172665,-34.8960872900488,-34.8960277491607,-34.8959024533065,-34.895705991473,-34.8956163961123,-34.8955422700002,-34.8954905850724,-34.8954859018238,-34.8954812185752,-34.8954383408695,-34.8953866422606,-34.8953909361809,-34.895395819649,-34.8953547081311,-34.8952927162277,-34.8952142952921,-34.8951785165527,-34.895096646049,-34.8949394516672,-34.8949438964644,-34.8948873568956,-34.8949183307361,-34.8948806487564,-34.8948281999061,-34.8947960655799,-34.8947106686391,-34.8946413092207,-34.8946076563901,-34.8946219327193,-34.8946207904923,-34.8945997515911,-34.8947306541544,-34.894809877446,-34.8948922555228,-34.8948245482468,-34.8948413667882,-34.8948396865567,-34.8947700830915,-34.8949288473112,-34.8951869370218,-34.8953149583693,-34.8954050037018,-34.8954563128352,-34.8954769828881,-34.895553675708,-34.8956116826603,-34.8958889022808,-34.8960632308299,-34.8961129260337,-34.8963165918986,-34.8962889559794,-34.8963779851508,-34.8964327989838,-34.8963604325523,-34.896235377935,-34.8962425259605,-34.8963523558771,-34.8963525620022,-34.8963502459215,-34.8964237051487,-34.8963841926058,-34.8963739616739,-34.8964471387431,-34.8964616274531,-34.8965345347937,-34.8965410159731,-34.8965712379577,-34.8965533762476,-34.8966572159004,-34.8966927392207,-34.8966745448326,-34.8967264112973,-34.8968772359611,-34.8973932934636,-34.8975144078868,-34.8976447114043,-34.897893778127,-34.8980612489083,-34.8981253328828,-34.8981417874299,-34.898218318058,-34.8982991909358,-34.8983864764442,-34.8984669435514,-34.8985303943167,-34.8985653464671,-34.8986467413671,-34.8987597039311,-34.8989356341542,-34.8989520598133,-34.8990678435082,-34.899052020393,-34.8990597510231,-34.899135230092,-34.8991586197303,-34.8991698537209,-34.8992663020588,-34.8993886150544,-34.8994999998905,-34.8995933597368,-34.8995975494407,-34.8996526004456,-34.8997576761995,-34.8998659457245,-34.8999323520476,-34.900048397006,-34.900138171843,-34.9000932586726,-34.899896287052,-34.9000030474213,-34.9001238121152,-34.9000799564963,-34.9000257287849,-34.899857468019,-34.8998616785238,-34.8998408059475,-34.8997702663802,-34.8997429873117,-34.8997563091821,-34.8997539278403,-34.8998316732727,-34.8998608137238,-34.9000009109479,-34.9001250274232,-34.9001328239803,-34.9001105919824,-34.8999421462492,-34.8998929115887,-34.8998689696311,-34.8998847220746,-34.9000047596204,-34.9001078715173,-34.9001115025964,-34.9000436394377,-34.8999320620514,-34.8998746952368,-34.8998516033277,-34.8997837566708,-34.8997297880397,-34.8997157598782,-34.899778672382,-34.8998699051758,-34.8999632600591,-34.8999844684458,-34.8997993105016,-34.8997916390693,-34.899826102797,-34.8997974858871,-34.8998994317976,-34.8999302043362,-34.8999491934815,-34.8999603313344,-34.8998810595186,-34.8998376008607,-34.899797574048,-34.8997685611131,-34.8997929938586,-34.8997049281974,-34.8996545214398,-34.899681579967,-34.8996225586556,-34.8995555167461,-34.8995425532025,-34.8995952302213,-34.8995908099367,-34.8996204137111,-34.8995397968256,-34.8994821792083,-34.899488137849,-34.8994816235595,-34.8995978007921,-34.8996238241895,-34.8996011691724,-34.899538048286,-34.8995152331864,-34.8995241694617,-34.8995376597523,-34.8995510800068,-34.8995690792895,-34.8996231788567,-34.8996502661597,-34.8996637447776,-34.8996681937387,-34.8996681287052,-34.8996770833233,-34.8996770383001,-34.8996769549238,-34.8996768265242,-34.8996722491635,-34.8996631311278,-34.899654009757,-34.8996359454408,-34.8996179044699,-34.8995954028653,-34.8995774602785,-34.8995460274011,-34.899528033121,-34.8995100755264,-34.8995010175217,-34.8994875122233,-34.8994874672001,-34.8994873021149,-34.8994917027178,-34.899496126666,-34.8994915743182,-34.8994643802936,-34.8994553089486,-34.8994372879881,-34.8994371729287,-34.8994326222485,-34.8994190569191,-34.8994054915898,-34.899391924593,-34.8993738686144,-34.8993693162666,-34.8993647272333,-34.8993489290858,-34.8992592738893,-34.8992402464959,-34.8992091784026,-34.8991310246367,-34.8990685900136,-34.8989783809299,-34.8987993138118,-34.898707869671,-34.8986527654584,-34.8986117613012,-34.8985641714461,-34.8984731016144,-34.8984238192568,-34.898322585391,-34.8982238851849,-34.8981802312423,-34.8981115491046,-34.8980835033908,-34.8980693836998,-34.8979313412611,-34.897843955893,-34.8976700971384,-34.8976489542207,-34.8975783331295,-34.8975947454651,-34.8975064717383,-34.8974147442261,-34.8973893907013,-34.8973471884035,-34.897301513181,-34.8971475671766,-34.8969662087213,-34.8968654482726,-34.8967725084093,-34.8966347721038,-34.8965534467024,-34.8964353191814,-34.8962380547283,-34.8962059848557,-34.8961752240737,-34.8961880248243,-34.8961605452288,-34.8960442494303,-34.8959473759332,-34.8959237711923,-34.8958466845553,-34.8958421080284,-34.8958375323353,-34.8958374531278,-34.8958284193021,-34.8958058234822,-34.8957967921579,-34.8957832501739,-34.89576517085,-34.8957561278529,-34.8957380768769,-34.8957064972571,-34.8956929661121,-34.8956794349671,-34.8956704036427,-34.8956523810147,-34.8956388923916,-34.8956253604128,-34.8956163666078,-34.8956073703015,-34.8955938391565,-34.8955848386814,-34.8955713233779,-34.8955622945548,-34.8955622311888,-34.8955487108827,-34.8955396437065,-34.8955215960655,-34.8955126489513,-34.8954991444867,-34.8954901473466,-34.8954811843909,-34.8954676740899,-34.8954451766541,-34.8954316838622,-34.8954137020885,-34.8953280745949,-34.8953010473229,-34.8952740075445,-34.8952604755657,-34.8952469227428,-34.8952288467539,-34.8952152989336,-34.8952017536146,-34.8951881966229,-34.8951746296261,-34.8950840795938,-34.8950930467184,-34.8950929941913,-34.8950929291577,-34.8950973414332,-34.8950927715764,-34.895097187187,-34.8950926406756,-34.8950835684969,-34.895078977796,-34.8950699373002,-34.8950473606569,-34.895038630157,-34.8949158294895,-34.8948795974704,-34.8948569374508,-34.894834274096,-34.8947980279029,-34.8947753612131,-34.8947526853519,-34.894730885776,-34.8947205904665,-34.8947160239447,-34.894711471597,-34.8947068942363,-34.8947067841795,-34.8946931087935,-34.8946885105887,-34.8946929628849,-34.8946928978513,-34.8946882796363,-34.8946881970937,-34.8946881203875,-34.8946924793022,-34.8946921883188,-34.8946966114332,-34.8947098074054,-34.8947141671538,-34.894718559419,-34.8947139803908,-34.8947093996951,-34.8947138361497,-34.8947317087004,-34.8947406424745,-34.8947496070978,-34.8947495453993,-34.8947494853683,-34.8947584183086,-34.8947673379086,-34.8947807206438,-34.8947985673478,-34.8948119267376,-34.8948163573559,-34.8948162789822,-34.8948252102549,-34.8948610854233,-34.8948745023428,-34.894895402225,-34.8949338995422,-34.8950089016897,-34.8950925566292,-34.8951414397714,-34.8952083697863,-34.895306173128,-34.8954040382343,-34.8954844741902,-34.89555081118,-34.8956226066697,-34.8955862870757,-34.8955988617468,-34.8955989809749,-34.8956034382737,-34.8956168985488,-34.8956348219591,-34.8956572476912,-34.8956707012963,-34.8956796600832,-34.8956931045168,-34.8957065839685,-34.8957200417424,-34.8957289930255,-34.8957379267995,-34.8957378450907,-34.8957377758883,-34.8957331201539,-34.8957330201023,-34.8957374640609,-34.8957464245153,-34.8957598522737,-34.8957643187438,-34.8957642637154,-34.8957765495536,-34.8957723020277,-34.8957947744506,-34.8957710363006,-34.8957731024191,-34.8958080347996,-34.8958111554935,-34.8958505961199,-34.8958748711107,-34.8959314634587,-34.8959435228307,-34.8959659252175,-34.8959658443424,-34.8959656984338,-34.8959700615173,-34.8959699823098,-34.8959743770763,-34.8959832666609,-34.8959921845934,-34.8960011150324,-34.8960010483313,-34.8960054881211,-34.8960008765761,-34.8960007381714,-34.8960005680837,-34.8960049561801,-34.8960094076425,-34.8960137899025,-34.8960047068848,-34.8959936063523,-34.8959337751716,-34.8959088549515,-34.8958907789626,-34.8958817276279,-34.8958816667632,-34.8958770743948,-34.8958724778576,-34.8958562802816,-34.8958774343721,-34.8958745842395,-34.8958435491662,-34.8958855862384,-34.8958841241438,-34.8958566290274,-34.8957623905032,-34.895735951087,-34.8957067967637,-34.895660237765,-34.8956303815085,-34.8956008823276,-34.8955520607689,-34.8955151737175,-34.8954734568333,-34.8954331036332,-34.89539953494,-34.8953559002886,-34.8953416785884,-34.8952910008162,-34.8951440602579,-34.8951317512247,-34.8951434047774,-34.8951268955278,-34.8951133405554,-34.895120049082,-34.8950696446493,-34.8950605766394,-34.895042569019,-34.8950245897467,-34.8950065554459,-34.8949794056107,-34.8949658994786,-34.8949523133052,-34.8949384786834,-34.8949125251738,-34.8949556619369,-34.8949477760145,-34.8949067222928,-34.8949066480878,-34.8949065547063,-34.8949337118724,-34.8950293005434,-34.8950444343215,-34.8950151153286,-34.894976615142,-34.8949444708346,-34.8949302264967,-34.8949657876436,-34.8949242910984,-34.8949517593049,-34.894948956419,-34.89492999038,-34.8948755200291,-34.8948194139322,-34.8948206997959,-34.8948159756808,-34.894780812369,-34.8947380447564,-34.8946999191581,-34.8946840400963,-34.8945880354378,-34.894573681597,-34.894536007698,-34.8945264507094,-34.8944827194709,-34.8944509363248,-34.8944269756716,-34.8943967837397,-34.8943775674917,-34.8943490781076,-34.894349293853,-34.8943887768417,-34.8944059099939,-34.89439978084,-34.8943726079008,-34.8943145730209,-34.8942568105953,-34.8942343821103,-34.8942210453383,-34.894215812764,-34.894245607562,-34.8942699088513,-34.8943699362269,-34.8943923348919,-34.8944070563643,-34.8943765576435,-34.8943591912919,-34.894359599697,-34.8943405421094,-34.8943164110092,-34.8942838580936,-34.8943058101814,-34.8942854468851,-34.8942656295161,-34.8942270492667,-34.8942079917044,-34.8941853022079,-34.894166312696,-34.894132408915,-34.8940729777954,-34.8940437164702,-34.8940670080292,-34.8941232609473,-34.8941395828322,-34.8941652235662,-34.8941843491526,-34.8941595031404,-34.8941592988521,-34.8941735209841,-34.894169820709,-34.8941230681805,-34.8940474401052,-34.8940185532028,-34.8939866357233,-34.893937249829,-34.8939392814668,-34.8939122559087,-34.8938716059568,-34.8938774789856,-34.8938804180014,-34.893854698904,-34.8938414729164,-34.8938144940027,-34.8937915304931,-34.8938027712903,-34.8937821456531,-34.8937461362488,-34.8937162816854,-34.8937058779866,-34.8936743959172,-34.8936471743783,-34.8936184595694,-34.8936244293148,-34.8936363396239,-34.8936105863423,-34.8936044531793,-34.8935701529898,-34.8935743259752,-34.8935516025895,-34.8935199004066,-34.8934991313621,-34.8934422228463,-34.8934193735623,-34.893387675627,-34.8933619139289,-34.8933569030113,-34.8933226836969,-34.8932932376775,-34.8932533375774,-34.8932306267427,-34.8932221356361,-34.8932242637725,-34.8932457790351,-34.8932417061013,-34.893187300543,-34.8931611562532,-34.8931421321028,-34.8931506608136,-34.8931830639091,-34.8931877307648,-34.8931666007009,-34.8931677879798,-34.8931454046992,-34.8931391568068,-34.8931458120831,-34.8931627554934,-34.8931617195324,-34.89312689634,-34.8931520835085,-34.8931884595529,-34.8933023665118,-34.8933868051054,-34.8933902170914,-34.8934568533123,-34.8935593223441,-34.8935362186822,-34.8935636926758,-34.8935671041901,-34.8935265315546,-34.8935783472119,-34.893552242086,-34.8935386921903,-34.8935506979563,-34.8935291793586,-34.8935017760539,-34.8935064701469,-34.8935185938994,-34.8934881948885,-34.8934551243749,-34.8934343355404,-34.8934248256423,-34.893433560879,-34.8933653200806,-34.8933093560899,-34.8932978347188,-34.8932864380873,-34.8933046768125,-34.8933412090842,-34.8934117146124,-34.8934486486602,-34.8934523013773,-34.8934958229892,-34.8935042783471,-34.8935396772727,-34.8935441304026,-34.8935485835325,-34.8935530358287,-34.8935574881248,-34.8935574355977,-34.8935618878939,-34.8935663435251,-34.8935707999901,-34.8935707524656,-34.8935752122656,-34.8935796737332,-34.8935841368683,-34.8935840935126,-34.8935885566477,-34.8935930197827,-34.8935929764271,-34.8935974378946,-34.8936018985284,-34.8936018510039,-34.8936063099702,-34.8936062624457,-34.8936107205782,-34.8936106722199,-34.8936151311862,-34.8936195893187,-34.8936240474512,-34.8936239982591,-34.8936284563916,-34.8936329128566,-34.8936373701554,-34.893637318462,-34.8936417740933,-34.893646228057,-34.8936461738623,-34.8936506253247,-34.8936550776209,-34.8936595274158,-34.8936594707199,-34.8936639188472,-34.8936683678083,-34.8936728151019,-34.8936817688863,-34.8936862136786,-34.8936906584709,-34.8936951015956,-34.8937040495436,-34.8937084884996,-34.8937174322788,-34.8937218670659,-34.8937263010193,-34.8937307316376,-34.8937396679129,-34.8937440976975,-34.893748527482,-34.8937529572666,-34.8937618935419,-34.893766324994,-34.8937707556123,-34.8937751878982,-34.8937841266748,-34.8937885589606,-34.8937929912465,-34.8938019300231,-34.8938063614752,-34.8938152985843,-34.8938242340258,-34.8938286638104,-34.8938375975845,-34.893846533026,-34.8938554668001,-34.8938644005741,-34.8938733351819,-34.8938822689559,-34.8938912035638,-34.8939001381715,-34.8939090719456,-34.8939180073872,-34.8939269411612,-34.8939358749353,-34.8939448087093,-34.8939537424833,-34.8939626762574,-34.893971611699,-34.8939805463068,-34.8939894825821,-34.8939984230262,-34.8940073643041,-34.8940118015926,-34.8940207512081,-34.8940297024912,-34.8940341531198,-34.8940431135743,-34.8940475733743,-34.894056543834,-34.894065491782,-34.8940789695661,-34.8940879567011,-34.8941014561631,-34.89411495229,-34.8941284367443,-34.894137428048,-34.8941464176842,-34.8941554056529,-34.894164391954,-34.8941733757538,-34.8941868385303,-34.8942002971379,-34.8942092434184,-34.8942182197144,-34.8942226853507,-34.8942271484858,-34.8942316074521,-34.8942360639171,-34.894240517047,-34.8942449685094,-34.8942494183043,-34.8942538672654,-34.8942628243848,-34.8942672741796,-34.8942717256421,-34.8942761771045,-34.8942806268993,-34.8942895798499,-34.8943030359562,-34.8943119797354,-34.8943299289924,-34.8943478699116,-34.894361329353,-34.8943657949893,-34.8943792210802,-34.8943881790334,-34.8943880881532,-34.8943924995949,-34.8944059373585,-34.8944238649375,-34.8944417349869,-34.8944595700182,-34.8944684354237,-34.8944773266758,-34.8944952609249,-34.8945176733169,-34.8945310468806,-34.8945399748184,-34.8945534634415,-34.8945669178802,-34.8945848446255,-34.8946207489757,-34.8946431788767,-34.8946566091363,-34.8946745250427,-34.8946879653075,-34.8947059062268,-34.8947148400008,-34.8947237787774,-34.894737269068,-34.8947462545354,-34.8947552083198,-34.8947685418629,-34.8947818829099,-34.8947863201983,-34.8947997829747,-34.8948266960211,-34.8948580697014,-34.8948759997817,-34.8948803778729,-34.8948892499485,-34.8949026852107,-34.8949251201143,-34.8949474683065,-34.894965345026,-34.8949787969635,-34.8949967570593,-34.8950056891658,-34.8950101289555,-34.8950191144229,-34.895028100724,-34.895041533485,-34.8950504480825,-34.8950863257522,-34.8951311505361,-34.8951714846708,-34.8951894197537,-34.8951938453695,-34.8952028016551,-34.8952477131504,-34.8952788767223,-34.895301223247,-34.8953235814444,-34.8953772241092,-34.8953906510338,-34.8954085894518,-34.8954489694435,-34.8954803614665,-34.8954937975625,-34.8954982148406,-34.8955071327731,-34.8955206030534,-34.8955385664843,-34.8955565207438,-34.8955699134841,-34.8955788347517,-34.895592354224,-34.8956058161667,-34.8956237487483,-34.8956596997892,-34.8956866553575,-34.8957135834117,-34.8957360083101,-34.8957449929437,-34.8957539767435,-34.8957583948554,-34.8957718126086,-34.8957808089149,-34.8957987456654,-34.8958256028496,-34.8958300067875,-34.895834461585,-34.8958434420497,-34.8958614188208,-34.895897312332,-34.8959242295473,-34.895951222635,-34.8959647029204,-34.8959781623618,-34.8959916284733,-34.8960050995873,-34.896023067187,-34.8960410147764,-34.8960499860698,-34.8960679961914,-34.8960814881496,-34.8960994607518,-34.8961219265046,-34.8961398765953,-34.896166873018,-34.896184857293,-34.8961938202487,-34.8962118111938,-34.8962433357852,-34.896283866688,-34.896301882646,-34.8963154029521,-34.8963469675641,-34.8963695408724,-34.8963830745187,-34.8963920658224,-34.8964100450948,-34.896423540388,-34.8964326017278,-34.8964416447248,-34.896459674023,-34.8964866646094,-34.8965136068375,-34.8965360934344,-34.8965451330965,-34.8965586917557,-34.8965721987215,-34.896590213012,-34.896608295671,-34.8966218426575,-34.8966308289587,-34.8966398069222,-34.8966758021525,-34.8966848318093,-34.8966938597986,-34.8967073717671,-34.8967254144055,-34.8967434420361,-34.8967704276199,-34.8967883718742,-34.8968018454896,-34.8968198931306,-34.8968288827667,-34.8968378523926,-34.8968693286257,-34.8968824506774,-34.8969981042295,-34.8970850047769,-34.8971644361733,-34.897207003067,-34.8972434202477,-34.8972861559409,-34.8972827716341,-34.897312192323,-34.8973552058717,-34.8973731467909,-34.8973821247545,-34.89739561171,-34.8974135392891,-34.897440404811,-34.8974673153561,-34.8974852546078,-34.8974986631896,-34.8975165557506,-34.8975434662957,-34.8975748458123,-34.8975972323576,-34.897606140285,-34.8976150815629,-34.8976240411836,-34.8976420171209,-34.8976554907363,-34.8976644370168,-34.8976778656089,-34.8976868135569,-34.8976958115307,-34.8977138191511,-34.89776333302,-34.8977723076484,-34.8977946925262,-34.897817109087,-34.8978350433361,-34.8978484319077,-34.8978572848066,-34.8978527057785,-34.8978526390774,-34.8978570513529,-34.8978660409891,-34.8978885509314,-34.8978975255598,-34.8979110108479,-34.8979289434295,-34.8979468843487,-34.8979558756525,-34.8979693742807,-34.8979738315795,-34.8979782688679,-34.8979917324781,-34.8980051960883,-34.898014124026,-34.8980185496417,-34.8980275192676,-34.8980454935374,-34.898067995142,-34.8980904950792,-34.8981039286739,-34.8981173922841,-34.8981308975824,-34.8981534041896,-34.8981624004959,-34.8981757723922,-34.8981845886056,-34.8981980722261,-34.8982070585272,-34.8982114758053,-34.8982158897484,-34.8982248393639,-34.8982337406212,-34.8982336839253,-34.8982201402738,-34.8982111423,-34.8981931847055,-34.8981841984043,-34.8981616867945,-34.8981256382034,-34.898116571861,-34.89809852422,-34.898089421192,-34.8980848188185,-34.8980757708188,-34.8980667278218,-34.8980531458172,-34.8980395738178,-34.8980260318338,-34.898030487465,-34.8980349447638,-34.8980259151069,-34.8980078891438,-34.8979853908742,-34.8979628709268,-34.8979493556232,-34.8979358403197,-34.8979268089954,-34.8979043023882,-34.8978818174588,-34.8978547284883,-34.8978321651851,-34.8978186915698,-34.8978052179544,-34.8977781706721,-34.8977466110627,-34.897733114102,-34.8977241227983,-34.8977151631776,-34.8977152282111,-34.8977287852028,-34.8977378798931,-34.8977379265839,-34.8977335059707,-34.8977155100231,-34.8976929683978,-34.8976568814535,-34.8976388271424,-34.8976252734858,-34.897616215481,-34.8976071458036,-34.8976025834506,-34.8976025250872,-34.8976024383758,-34.897593281987,-34.8975842039719,-34.8975616923621,-34.8975392207729,-34.8975211898072,-34.8975121484777,-34.8974895868421,-34.8974760748736,-34.8974670118662,-34.8974579321836,-34.8974308532183,-34.8974218835924,-34.8973993186218,-34.8973948663256,-34.8973858866946,-34.8973678674016,-34.8973317721196,-34.8973182101254,-34.8973136477724,-34.8973001257988,-34.8972866705263,-34.8972731502202,-34.8972595832233,-34.8972549991925,-34.8972504518474,-34.8972414605437,-34.8972279869283,-34.8972009796666,-34.8971874360152,-34.8971783429923,-34.8971737806394,-34.8971692266241,-34.8971556779701,-34.8971421426562,-34.8971286090099,-34.8971285623192,-34.8971330162828,-34.8971104463096,-34.8970924420243,-34.897078905043,-34.8970608457293,-34.8970562800413,-34.8970652496672,-34.8970742109554,-34.8970786349036,-34.8970830821972,-34.8970920468205,-34.8971010031062,-34.8971144800566,-34.8971189340203,-34.8971098760155,-34.8970963423692,-34.8970873443954,-34.8970738474346,-34.8970468551807,-34.8970243385683,-34.8970107348859,-34.8969970278168,-34.8969744178229,-34.896965353148,-34.8969607391018,-34.8969605523388,-34.8969648829055,-34.8969693118563,-34.8969780997217,-34.8969869826362,-34.8969913198731,-34.8969956487722,-34.8969955287103,-34.8969998859575,-34.897004269885,-34.8970086971683,-34.8970041348154,-34.8970040597767,-34.8970084453718,-34.8970128076215,-34.8970126392013,-34.8970124274254,-34.8970122673429,-34.8970165812343,-34.8970299214475,-34.897043341702,-34.8970568219875,-34.8970747995923,-34.8971017368179,-34.8971151687451,-34.897124046657,-34.8971329012235,-34.8971508338051,-34.8971597784181,-34.8971641923611,-34.8971730535978,-34.8971953601018,-34.8972087470058,-34.8972267096029,-34.8972446738675,-34.8972535984702,-34.8972580107457,-34.8972669803715,-34.8972759533325,-34.8972803639405,-34.8972712425697,-34.8972621862324,-34.8972621328716,-34.8972485075113,-34.8972483941195,-34.8972573704154,-34.8972617976987,-34.8972616993146,-34.8972795718653,-34.8972975311274,-34.8973241324667,-34.8973852935023,-34.8974799217668,-34.8975253815058,-34.8975630228075,-34.8975807324333,-34.8976359625605,-34.8977617430969,-34.8978089039126,-34.8978633999399,-34.8978646237598,-34.8979327537279,-34.8979417416966,-34.8979777052439,-34.8980136604536,-34.8980226217418,-34.8980314829784,-34.8980538361732,-34.8980672931133,-34.8980896980014,-34.8981165868687,-34.8981255048012,-34.8981344477467,-34.898165908972,-34.8981928828832,-34.8982063898491,-34.8982199168253,-34.8982199618485,-34.898202130986,-34.898179799469,-34.898170816503,-34.8981618201967,-34.8981528689136,-34.8981394720045,-34.8981260267371,-34.8981215611007,-34.8981216261342,-34.8981126615109,-34.8980947255943,-34.8980813420253,-34.8980634094437,-34.8980544431529,-34.8980499775165,-34.8980455252204,-34.8980456019266,-34.8980591038899,-34.898068086856,-34.8980770514793,-34.8980815037755,-34.8980859494015,-34.8981039303414,-34.8981219112813,-34.8981263452347,-34.8981307875257,-34.8981397321386,-34.8981441644245,-34.8981530973647,-34.8981620853334,-34.8981710599619,-34.8981800329228,-34.8981889892084,-34.8981979171461,-34.8982203587198,-34.8982383863505,-34.8982564339914,-34.8982743782457,-34.8982922774768,-34.8983057827752,-34.8983147674088,-34.898323697014,-34.8983191496688,-34.8983281276323,-34.8983371139335,-34.8983506275695,-34.8983551782497,-34.8983642429246,-34.8983777548931,-34.898400213142,-34.8984226780611,-34.8984361833594,-34.8984496869903,-34.8984675428657,-34.8984719918268,-34.8984809731253,-34.898507983722,-34.898516960018,-34.8985259479867,-34.8985349809786,-34.8985485396378,-34.8985620299284,-34.8985845482083,-34.8985935945404,-34.8986071932203,-34.8986117622433,-34.8986163279313,-34.8986253859361,-34.8986344172604,-34.8986434035615,-34.8986432968398,-34.8986296864873,-34.8986205801242,-34.8986160111012,-34.8986159494027,-34.8986113553668,-34.8986158009928,-34.8986247839589,-34.8986428616154,-34.898642929984,-34.8986429916824,-34.898656542004,-34.8986655883361,-34.8986836993431,-34.8986972613374,-34.8987062909942,-34.8987288509623,-34.8987559015796,-34.8987738875221,-34.8988188206953,-34.8988457812662,-34.8988592598842,-34.8989221056287,-34.8989355575662,-34.8989535151607,-34.8989759934199,-34.8989895304013,-34.8989985800685,-34.8990122137664,-34.8990213167944,-34.8990258924875,-34.8990439968244,-34.8990710807923,-34.8990936090774,-34.8991071493938,-34.8991071960846,-34.8991117467648,-34.8991163024476,-34.8991163558084,-34.8991119068473,-34.8991119618757,-34.8991075729456,-34.8991076196363,-34.8991121736516,-34.8991212933549,-34.899125869048,-34.8991259190738,-34.8991439767199,-34.8991574686781,-34.8991619293119,-34.8991618742835,-34.899166318242,-34.8991706888294,-34.8991751578008,-34.8991930687046,-34.8992199709121,-34.8992379618571,-34.8992515205163,-34.8992561529054,-34.8992517222871,-34.8992517806505,-34.8992563363333,-34.8992653726602,-34.8992788946339,-34.8992924516256,-34.8992970023058,-34.8993015546536,-34.8993105993181,-34.8993196906734,-34.8993377233067,-34.8993421906106,-34.8993465912134,-34.8993419721646,-34.8993284118378,-34.8993283418017,-34.8993282901084,-34.8993327290643,-34.8993371630177,-34.8993595945862,-34.899377565521,-34.8993955481284,-34.8994000037596,-34.8994044493857,-34.8994179330062,-34.8994313816086,-34.899435812227,-34.89944022617,-34.8994446567883,-34.8994536064039,-34.8994760829956,-34.8994896016342,-34.8995031169377,-34.8995120932337,-34.8995210695297,-34.8995435811395,-34.8995616254454,-34.8995796747539,-34.8995932150703,-34.8996067420465,-34.899624759672,-34.8996337459731,-34.8996336642643,-34.8996426405603,-34.8996561125081,-34.8996650554536,-34.8996740234119,-34.8996875220402,-34.8996919426533,-34.8997009189493,-34.8997099002478,-34.8997278461697,-34.8997457887564,-34.8997592623718,-34.8997682219925,-34.8997771816132,-34.8997861462365,-34.8998041488542,-34.8998221431344,-34.89983109942,-34.8998445029992,-34.8998579632744,-34.8998624305783,-34.8998623655448,-34.8998668295136,-34.8998757707915,-34.8998892093888,-34.8999026863392,-34.8999252346346,-34.8999342109306,-34.899947716229,-34.8999612515428,-34.8999792791734,-34.9000017240822,-34.9000286412974,-34.900037594248,-34.9000465405285,-34.9000555018167,-34.90006446644,-34.9000643780611,-34.9000733726999,-34.9000868579879,-34.9001003366058,-34.900109322907,-34.9001272905067,-34.9001407391091,-34.9001496870571,-34.9001451247042,-34.900145076346,-34.9001585116082,-34.9001764158418,-34.9002032830313,-34.9002077219872,-34.9002211322366,-34.9002345591612,-34.9002435187819,-34.9002524967454,-34.9002704743502,-34.9002839696434,-34.9002929676173,-34.9003109902453,-34.9003245055488,-34.9003425098341,-34.9003559984572,-34.9003739843997,-34.9003874563475,-34.9004009316304,-34.9004143919055,-34.9004553318557,-34.9004878311371,-34.9004919612808,-34.9004765625957,-34.9004723001036,-34.9004806971505,-34.9004721033355,-34.9005306313006,-34.900562388231,-34.9007410521042,-34.9007578289806,-34.900580144255,-34.9006435029333,-34.900692832171,-34.9007108297861,-34.9007333580712,-34.9007468783773,-34.9007604003509,-34.9007739006467,-34.9007873909373,-34.900805450251,-34.9008235179023,-34.9008369998553,-34.9008504918134,-34.9008595348105,-34.9008730884671,-34.900895603412,-34.9009181233594,-34.9009271580188,-34.9009361876756,-34.900949692974,-34.9009677072644,-34.9009767402563,-34.9009857682456,-34.9010083098709,-34.9010218285095,-34.9010850644552,-34.9011095231945,-34.9011480764999,-34.9011845860431,-34.9012156254775,-34.9012127061237,-34.9012777943317,-34.901259949648,-34.9012652740606,-34.9012966029201,-34.9013000851626,-34.9013281148025,-34.9013419836216,-34.9013686223599,-34.901382139331,-34.901395687985,-34.9014047393197,-34.9014138423477,-34.9014274660405,-34.9014366207618,-34.9014366741226,-34.9014322318316,-34.9014278212236,-34.9014233605898,-34.9014144243145,-34.9014055213897,-34.9014010841013,-34.9013921728388,-34.9013832082155,-34.9013742586,-34.9013743436439,-34.901387867285,-34.9014014226092,-34.901405974957,-34.9014015593464,-34.9013881057413,-34.9013746137832,-34.9013656274821,-34.9013566928743,-34.9013674000629,-34.901361963926,-34.901357148109,-34.9013528175423,-34.9013528725707,-34.9013529926326,-34.901357553318,-34.9013576200191,-34.9013531760605,-34.9013397641437,-34.9013398508551,-34.901340005935,-34.9013446149787,-34.9013582219962,-34.9013627993569,-34.9013673767175,-34.9013764297197,-34.9013945657396,-34.9014081760921,-34.9014262103929,-34.9014487887037,-34.9014533343814,-34.9014713886925,-34.9014849390141,-34.9014894863592,-34.9014941604365,-34.9014987611425,-34.9014943188515,-34.9014898865656,-34.9014944589237,-34.9015080375933,-34.9015170705851,-34.901599614822,-34.9016554738669,-34.9017403589673,-34.9018034442335,-34.9018989347196,-34.9019086472593,-34.9019456717311,-34.9019975178848,-34.9020480265903,-34.9020806906679,-34.9021766419026,-34.9022502752591,-34.902305876646,-34.9024139003393,-34.9024912025433,-34.9025917878848,-34.9026025806749,-34.9025256242367,-34.9024531433101,-34.9024642384265,-34.9025949692427,-34.9027284778876,-34.902687669174,-34.9026941591436,-34.9027440772902,-34.9027973331354,-34.9028327608082,-34.9028977886937,-34.9028845205371,-34.9028984202562,-34.902969390838,-34.903038620675,-34.9029828175817,-34.9029609172442,-34.9030150516234,-34.9030628832246,-34.9030988581477,-34.9030453428988,-34.9030539625321,-34.9031700015146,-34.9032079044946,-34.9032187978247,-34.9032005373623,-34.903263017884,-34.9033086622619,-34.9033774887163,-34.9033904828988,-34.9034866932458,-34.9035957249544,-34.9035213584391,-34.9035467995838,-34.903651974497,-34.9037610777847,-34.9037632489968,-34.9037292032725,-34.9036831847526,-34.9036711400329,-34.9036225897886,-34.9035515877125,-34.9036228599943,-34.9036086566381,-34.9036195920778,-34.9036260958529,-34.903607503879,-34.9035697884552,-34.9034966308602,-34.9033422425034,-34.9033111170269,-34.9033512205946,-34.9034388258491,-34.9035286325254,-34.9036543122114,-34.9038027138455,-34.9038361843747,-34.9038969807267,-34.9038998425263,-34.9039251535519,-34.9039754741314,-34.9040506463847,-34.9041192432804,-34.9041185797874,-34.9041433484045,-34.904189223198,-34.9042125051745,-34.9041785856737,-34.904192314657,-34.9042525223759,-34.9043150750041,-34.9043762234568,-34.9045071069098,-34.9045653142165,-34.904623794287,-34.9046570350908,-34.9046842173166,-34.9046922831235,-34.9047266081228,-34.9048243876111,-34.904836582382,-34.9049552786609,-34.905047085668,-34.9051448650823,-34.9051989710871,-34.9052326139069,-34.9052826760955,-34.9052800726423,-34.9053188692334,-34.9053705582823,-34.9054061871788,-34.9054049006386,-34.9054593412686,-34.9054619016708,-34.9054474252418,-34.9054041682104,-34.9053434436959,-34.90534384568,-34.905406656696,-34.9053341307915,-34.9053658018,-34.9053922463023,-34.9054346653426,-34.9054935469742,-34.9054774141073,-34.9054966230048,-34.9055863865145,-34.9056471681111,-34.9056435972054,-34.9055083459053,-34.9054650592433,-34.9054765666227,-34.9054411960217,-34.905410123332,-34.9053328384743,-34.9053260483057,-34.9053297799457,-34.9053383453311,-34.9053527138942,-34.9053511938717,-34.9054100749738,-34.9053805378178,-34.9053832969916,-34.905349926922,-34.9053180422957,-34.9052657217614,-34.9052039418079,-34.9051920379481,-34.9051236833987,-34.9050159934025,-34.9048846540007,-34.9047575565579,-34.9047022642823,-34.9047780225019,-34.9048211965575,-34.9048100633031,-34.904931838755,-34.9049887033243,-34.9049955197907,-34.904941798411,-34.9048831472946,-34.9047905691726,-34.9047575417599,-34.9047436213977,-34.9048238371685,-34.9048520322907,-34.904926829576,-34.9048859261947,-34.904795264567,-34.9047402754639,-34.9045578519066,-34.9044240434747,-34.9043061146107,-34.9041534044294,-34.9039780010746,-34.903837067205,-34.903683809718,-34.903449855379,-34.9032229723838,-34.9030091617456,-34.9029722907603,-34.9030765699256,-34.903058711017,-34.9029560677704,-34.9028350282811,-34.9027530947611,-34.9026264699965,-34.9025533966568,-34.902530150338,-34.9022175199103,-34.9020270944644,-34.9020506235631,-34.9021194801763,-34.902025522687,-34.9018325320267,-34.9015625637027,-34.9015036905442,-34.9012467375547,-34.9012833006174,-34.9012673004986,-34.9011211749463,-34.9008754615156,-34.900728135234,-34.9006720297631,-34.9006899439158,-34.9006918940731,-34.9005918784399,-34.9004919185547,-34.9003973597883,-34.900392283833,-34.9003852172847,-34.9003239791194,-34.9002080662756,-34.9001657353842,-34.9001018987419,-34.9001663024653,-34.9001356670943,-34.9000359011843,-34.9000224591706,-34.8998714479463,-34.8997843992678,-34.8997206429722,-34.8997361024348,-34.8997291717995,-34.899657505257,-34.8995779543678,-34.8993936157484,-34.8993622626289,-34.8995385206446,-34.8994973602891,-34.8993037975358,-34.8992350810086,-34.8990687650428,-34.8989181403701,-34.8988510729916,-34.8988932122943,-34.8989051028889,-34.8988561098731,-34.8988309336089,-34.898575292594,-34.8984809781931,-34.8984324489377,-34.8982742748065,-34.8983062396775,-34.8982981588433,-34.8982301896327,-34.898191438845,-34.8981540273006,-34.8981442226426,-34.8980918153505,-34.8980462880094,-34.8979635291398,-34.8979600633877,-34.8979796314816,-34.8979003898127,-34.8978555316151,-34.897844722297,-34.8978107248226,-34.8977839678714,-34.8977646572362,-34.8977117350975,-34.8977161787584,-34.8977695639775,-34.8977967349951,-34.8977250657306,-34.8976489298936,-34.8975778290993,-34.8975364881112,-34.8975524867334,-34.8975153301185,-34.8974480308704,-34.897445027297,-34.8973693803103,-34.8972905497673,-34.8972606353141,-34.8971896879523,-34.8972015513314,-34.8971410800347,-34.8971188688538,-34.8971571289034,-34.8971575654529,-34.8970819442625,-34.8970784520779,-34.8969847022686,-34.8969515006057,-34.8968609605727,-34.8968163065067,-34.8967195257228,-34.8967096381155,-34.8967667449281,-34.896736881111,-34.8966648039813,-34.8966212827775,-34.8965498464565,-34.8964859340722,-34.8964026529491,-34.8962110777637,-34.8961926661439,-34.8960387263049,-34.8959480836358,-34.895857774231,-34.8956918950685,-34.8956922282853,-34.8956970843452,-34.8956477014327,-34.8955832249992,-34.8955459142256,-34.8954248181717,-34.8953314001867,-34.8952980688576,-34.8953788473878,-34.8953298794565,-34.8953027655602,-34.8952268117093,-34.89509105264,-34.8950167062938,-34.8949599132648,-34.8949603741274,-34.8948781125379,-34.8948162081123,-34.8947203327715,-34.8946517883168,-34.8943618204396,-34.8943332782196,-34.894280416791,-34.8942751482405,-34.8942196421146,-34.8942111570348,-34.894275583465,-34.8942344972758,-34.8942293621274,-34.894224565487,-34.8941960849656,-34.8942363807471,-34.8942549561603,-34.8943034628431,-34.894324822192,-34.8942897866232,-34.8942851258862,-34.8943270016493,-34.8943052812809,-34.8942996350357,-34.8942808028234,-34.8942400609784,-34.8942002371069,-34.8941869210728,-34.8941871145059,-34.8941568714088,-34.8941478434195,-34.8941387904173,-34.8941297382489,-34.8941206744077,-34.8941116005615,-34.8941025142087,-34.8940979668635,-34.8940934170171,-34.8940933694926,-34.894088812976,-34.8940842539581,-34.8940796932727,-34.8940796390781,-34.8940750783927,-34.8940750258656,-34.8940749624996,-34.8940704443361,-34.8940110753847,-34.8940065247045,-34.8939974525257,-34.8939884136975,-34.8939793623628,-34.8939703085269,-34.8939657461739,-34.8939656986494,-34.8939656461223,-34.8939655860914,-34.893965516889,-34.8939699500086,-34.8939698733024,-34.893974303087,-34.8939742313833,-34.8939786736743,-34.8939786169784,-34.8939785644513,-34.8939830209163,-34.8939829742256,-34.8939829283686,-34.8939873948387,-34.8939873406441,-34.8939827841275,-34.8939738053303,-34.8939648415407,-34.8939603900784,-34.8939559386159,-34.8939469739926,-34.8939380060343,-34.893924489897,-34.8939199408843,-34.8939153885366,-34.8939198408327,-34.8939197791342,-34.8939242439368,-34.8939287062382,-34.8939331677057,-34.8939331185137,-34.8939375741449,-34.8939375216178,-34.8939419747477,-34.8939419222206,-34.8939418696936,-34.8939418171665,-34.8939417613043,-34.8939416996059,-34.893946137728,-34.8939460643568,-34.893950495809,-34.8939504232715,-34.8939548613937,-34.8939547946927,-34.8939547304929,-34.8939591711164,-34.8939591035815,-34.8939635458725,-34.8939634850078,-34.8939679389715,-34.8939723862651,-34.893976839395,-34.8939858382026,-34.8939993743502,-34.8939993276595,-34.8939992818025,-34.8939992359455,-34.893994682764,-34.8939946235668,-34.8939990833668,-34.8939990275047,-34.894003493141,-34.894003447284,-34.8940079062503,-34.894007857892,-34.8940033022092,-34.8940032555185,-34.894003207994,-34.89399865648,-34.8939985906127,-34.8939940407662,-34.8939894892522,-34.8939849360707,-34.8939713799127,-34.8939669267828,-34.8939669893151,-34.8939579971776,-34.8939534389935,-34.8939488766406,-34.8939488074382,-34.893948730732,-34.8939441833868,-34.8939441025118,-34.8939440216367,-34.8939439449305,-34.8939438707256,-34.8939438015232,-34.8939437389909,-34.8939391799731,-34.8939346159526,-34.8939210906439,-34.893916637514,-34.8939121860516,-34.8939122502514,-34.8939123169525,-34.8939123794847,-34.8939124361806,-34.8939124903752,-34.8939125429023,-34.893912597097,-34.8939171586161,-34.8939172128107,-34.8939172653378,-34.8939173145299,-34.89391286807,-34.8939084074362,-34.8938948812938,-34.8938858432993,-34.8938768019698,-34.8938677681442,-34.8938587760067,-34.893854322043,-34.8938543679,-34.8938544187595,-34.8938589811125,-34.8938635476342,-34.8938681158235,-34.8938681833583,-34.893872760719,-34.8938728307551,-34.8938683926329,-34.893868459334,-34.8938640112066,-34.8938595614118,-34.8938551074481,-34.8938506501493,-34.8938461936843,-34.8938417397207,-34.8938417989179,-34.8938418664527,-34.8938419431589,-34.8938465305247,-34.8938510778699,-34.893855664402,-34.8938602425964,-34.893869322279,-34.8938738929696,-34.8938784611588,-34.8938785236911,-34.8938785812207,-34.8938786329141,-34.8938741789504,-34.8938651893142,-34.8938516756782,-34.8938426460214,-34.8938336013568,-34.8938290415052,-34.8938244908249,-34.8938199301395,-34.8938198701086,-34.8938152985843,-34.8938107262262,-34.8938061480318,-34.893801564001,-34.8937970158221,-34.8937924626405,-34.8937879077915,-34.8937878535969,-34.8937832912439,-34.893778725556,-34.8937741573667,-34.8937695900112,-34.8937650209882,-34.8937604536327,-34.8937558879447,-34.8937558295813,-34.8937557745529,-34.8937512147012,-34.8937511638417,-34.8937556219742,-34.8937555761172,-34.8937554910734,-34.8937599216917,-34.8937643623152,-34.8937733169333,-34.8937732627386,-34.8937777200374,-34.8937776725129,-34.8937776241546,-34.8937775741288,-34.8937775216017,-34.8937774649058,-34.8937774065424,-34.8937773456776,-34.89378179047,-34.8937817279377,-34.8937861760651,-34.8937906275274,-34.8937905775016,-34.8937950381354,-34.8937994979355,-34.8938039569017,-34.8938084125329,-34.8938128639954,-34.8938173112889,-34.8938217560812,-34.8938216910477,-34.8938216276817,-34.8938215693182,-34.8938214992821,-34.8938124562851,-34.8938080023214,-34.8938035450227,-34.8937991002304,-34.8937991677652,-34.8937947304768,-34.8937902856845,-34.8937858317208,-34.8937813677519,-34.89377240563,-34.8937679483312,-34.8937544472017,-34.8937454150435,-34.8937363812179,-34.8937228642469,-34.8937138862834,-34.893709423982,-34.8937049766884,-34.8937005402338,-34.8936961104492,-34.8936961896568,-34.893696269698,-34.8936963447367,-34.8937009229312,-34.8937054952892,-34.8937055528189,-34.8937101135043,-34.8937146716884,-34.8937147217142,-34.8937102652492,-34.8937103177763,-34.8937058646464,-34.8937014190203,-34.893696974228,-34.8936970375941,-34.8936925944693,-34.893688149677,-34.8936882063729,-34.8936837515755,-34.8936792926092,-34.8936703354898,-34.8936613475211,-34.8936478430565,-34.8936387975582,-34.8936297395534,-34.893620673211,-34.8936116227101,-34.8936025730429,-34.893593522542,-34.8935844745424,-34.893575425709,-34.8935663576991,-34.8935617928449,-34.8935617336477,-34.8935616794531,-34.8935571254378,-34.89355257309,-34.8935435434332,-34.8935345096076,-34.8935254699456,-34.8935209217666,-34.8935208659045,-34.8935162935464,-34.8935117378636,-34.8935026715212,-34.8934981083345,-34.8934890336544,-34.8934799564731,-34.893470878458,-34.8934618337934,-34.8934527591134,-34.8934437177839,-34.8934346514415,-34.893425613447,-34.893416556276,-34.8934029992843,-34.8933939546198,-34.8933849157915,-34.8933758777971,-34.8933668398026,-34.8933578009744,-34.8933487604786,-34.8933397033076,-34.8933306494717,-34.893321594802,-34.8933125451348,-34.8933034946339,-34.8932944558057,-34.8932853986346,-34.8932808404505,-34.8932762789314,-34.893267212589,-34.8932626635763,-34.8932536314181,-34.8932446326106,-34.8932356429744,-34.8932266550057,-34.8932176628683,-34.8932041534011,-34.8931906247573,-34.8931815900979,-34.8931725462671,-34.8931679922519,-34.8931634374028,-34.8931498937513,-34.8931454289487,-34.8931454764732,-34.8931500354911,-34.8931500830156,-34.8931456248831,-34.8931320895692,-34.8931230540761,-34.8931140152479,-34.8931049772534,-34.893095945929,-34.8930824131165,-34.8930688903091,-34.8930508776862,-34.8930373748891,-34.8930283860867,-34.893014892461,-34.8930059086612,-34.892992416703,-34.8929789230774,-34.8929699309399,-34.8929609337998,-34.8929474285015,-34.892933919868,-34.892920417071,-34.8929069101051,-34.8928979121313,-34.8928889141575,-34.8928754105266,-34.8928664125528,-34.8928574137452,-34.8928439067793,-34.8925682212679,-34.8925019112368,-34.8924296397979,-34.8923043927048,-34.8922567347931,-34.8921952639243,-34.8921294966731,-34.8921222437659,-34.8920893468001,-34.8920311876393,-34.8920386348133,-34.8920098107814,-34.8919739464519,-34.8919310076406,-34.8918785756,-34.8918381472501,-34.891819011548,-34.8918594165525,-34.8919356742139,-34.8920284195451,-34.8920302096349,-34.8919733619838,-34.8919156046969,-34.8918953909388,-34.8918990815512,-34.8918862143834,-34.8919199722748,-34.8919287848275,-34.8919307791894,-34.8918970584655,-34.8918907768925,-34.8918607930958,-34.8918582125983,-34.8918190774444,-34.8918149253661,-34.89183689954,-34.8918322216941,-34.8918176450099,-34.8918099927301,-34.8917932107418,-34.8917605964218,-34.8917221666026,-34.891756699412,-34.8917615143952,-34.8917066185841,-34.8916933325654,-34.8916743452732,-34.8916477207089,-34.8916198463334,-34.8915828897739,-34.8915871319617,-34.8914953904816,-34.8914355479527,-34.8914180372553,-34.8913938647889,-34.8913632790151,-34.8913303803817,-34.8912877650706,-34.8912874123887,-34.8913086308316,-34.8913220277407,-34.8913396926843,-34.8913046454429,-34.8912268636622,-34.8912372323429,-34.8912491985141,-34.8912443826972,-34.8911709756726,-34.8911433597637,-34.8911154620428,-34.8910695358575,-34.8910692265313,-34.8910425394348,-34.8910223790376,-34.8909995747768,-34.89100016925,-34.8910006511653,-34.8910011472544,-34.8909501501206,-34.8909273208469,-34.8909269673313,-34.8909399065044,-34.8909698877998,-34.8910030999282,-34.8910033483896,-34.891003688565,-34.8910041262908,-34.8910045406712,-34.8909707615838,-34.8909753414457,-34.8909416432334,-34.8909403342249,-34.8909463048041,-34.8909497615869,-34.8909556738026,-34.8909705764883,-34.8909756632783,-34.8909483700359,-34.8909500308924,-34.8909223165994,-34.8909221548494,-34.8909220156109,-34.8909289508542,-34.8909216229084,-34.8909214144675,-34.8909523137364,-34.8909809551742,-34.8910150144061,-34.8910525579349,-34.8910811301703,-34.8910992753616,-34.8911112990625,-34.8911219562254,-34.8911308099581,-34.8911405658228,-34.891148710023,-34.8911596123123,-34.8911752645512,-34.8911757047782,-34.8911667810093,-34.8911535041621,-34.8911247993583,-34.891111674256,-34.8910965864749,-34.8910750495344,-34.8910521485571,-34.8910303197995,-34.891008155869,-34.8909824025873,-34.8909821716349,-34.8909892561219,-34.8909866631179,-34.891000856271,-34.8910341117551,-34.8910530573591,-34.8910575721876,-34.8910430780459,-34.8910404958809,-34.8910261059596,-34.8910017625718,-34.8909855175271,-34.8909910462117,-34.8909967599918,-34.8910015974866,-34.8910075413854,-34.8910131626177,-34.8910314812318,-34.8910630483451,-34.891086676364,-34.8911117268272,-34.8911266069572,-34.8911387248734,-34.8911361085241,-34.8911144598593,-34.8910881796393,-34.8910720087995,-34.8910506661259,-34.8910239398425,-34.8910218562679,-34.8910191765526,-34.8910163209132,-34.8910324700751,-34.8910345444782,-34.891037205017,-34.8910600109453,-34.8910797261129,-34.8910770147146,-34.8910746618345,-34.8910792517016,-34.8910847061813,-34.8910884531136,-34.8910692815597,-34.8910409302716,-34.891027891085,-34.8910114228647,-34.8909937511438,-34.8910003710208,-34.8910051985104,-34.890984556198,-34.890961675231,-34.8909458570732,-34.8909353701601,-34.8909258897594,-34.8909092740397,-34.8908747384749,-34.8908585888253,-34.8908613901781,-34.8908692233846,-34.890875992709,-34.8908841810987,-34.8908926846508,-34.890900201861,-34.8909109607429,-34.8909245677604,-34.8909309593901,-34.8909425645418,-34.8909488561199,-34.8909550042907,-34.8909579508102,-34.8909607756004,-34.8909635028403,-34.8909659165851,-34.8909716270301,-34.890972916862,-34.890976034303,-34.890978112875,-34.8909792059387,-34.8909807025439,-34.8909822174919,-34.8909835590171,-34.8909850614586,-34.8909862912595,-34.890989093538,-34.8909921342729,-34.8909946397317,-34.8909954951728,-34.8909965348757,-34.8909976537861,-34.8909986342918,-34.8909997698774,-34.8910006570016,-34.891002092742,-34.8910035143085,-34.8910047407744,-34.8909950882963,-34.8909961046538,-34.8909970576453,-34.8909927145721,-34.8909882005775,-34.8909840642776,-34.8909777918761,-34.8909712059796,-34.890957669832,-34.8909462172589,-34.8909347655197,-34.8909152896421,-34.8909028957503,-34.8908874486171,-34.8908748704636,-34.8908641857866,-34.8908545716617,-34.8908466275647,-34.8908424329014,-34.8908380339661,-34.8908344921395,-34.890834663061,-34.8908348348162,-34.8908349898962,-34.8908352241837,-34.8908360020849,-34.8908369092194,-34.8908309978374,-34.8908288267177,-34.8908235406582,-34.890818538912,-34.8908188265603,-34.8908169272475,-34.8908146994319,-34.8908129577003,-34.8908059874389,-34.8907901134189,-34.8907723992832,-34.8907581919562,-34.8907494974722,-34.8907408021545,-34.8907404286285,-34.890740081783,-34.8907338727475,-34.8907274986268,-34.8907155349569,-34.8907055639812,-34.890700622266,-34.8906854602799,-34.8906700398272,-34.8906549728901,-34.8906383159664,-34.8906228921786,-34.8906039257305,-34.890590082758,-34.890574113689,-34.8905722052047,-34.8905935128603,-34.8905805303315,-34.8905681331046,-34.8905558509371,-34.890545557295,-34.8905331600681,-34.8905202925987,-34.8905066080412,-34.8904811757585,-34.8904584090171,-34.8904547554662,-34.8904371889067,-34.8904256379496,-34.890408554139,-34.890393067819,-34.8903835662521,-34.8903740646853,-34.8903651250749,-34.8903574436134,-34.8903555584745,-34.8903558611305,-34.8903648507667,-34.890368372583,-34.8903711590201,-34.890371169859,-34.890371187368,-34.8903712032095,-34.8903712165497,-34.8903613081064,-34.8903522759482,-34.8903308457294,-34.8903190771601,-34.8903156979173,-34.8903101283783,-34.8903017265453,-34.8902805631308,-34.8902650242837,-34.8902465972804,-34.8902397320731,-34.8902337248084,-34.890213832883,-34.8901867364086,-34.8901614808837,-34.8901486325908,-34.8901360269231,-34.8901243867533,-34.8901124130782,-34.8900994830765,-34.890088771719,-34.890076991477,-34.8900671472334,-34.8900563683411,-34.8900418450177,-34.890034601282,-34.8900280012115,-34.8900182286715,-34.8900096259015,-34.8900008330335,-34.8899928772638,-34.8899887651431,-34.889991886753,-34.8899943663651,-34.8899974112688,-34.8900005195385,-34.8900057347281,-34.8900103162575,-34.8900149653218,-34.8900202730592,-34.8900297304366,-34.8900226209367,-34.8900125524108,-34.8899960614059,-34.8899762044986,-34.8899602696139,-34.889941552461,-34.8899164086603,-34.8898988220905,-34.8898753875047,-34.8898616629265,-34.8898428523921,-34.8898272710231,-34.8898045601439,-34.8898058733211,-34.8897846407042,-34.8897790920093,-34.8897787268209,-34.8897782991004,-34.8897780206234,-34.8897639525348,-34.8897412608321,-34.8897272360992,-34.8897003722448,-34.8896825347122,-34.8896708278413,-34.889654870445,-34.8896455039478,-34.889629044626,-34.8896119049533,-34.88959769846,-34.8895733333943,-34.8895574968937,-34.8895423540841,-34.889532603222,-34.8895227197916,-34.889514287943,-34.8894915420458,-34.8894849594843,-34.8894783760891,-34.8894714983754,-34.8894534532357,-34.8894430261915,-34.8894244549472,-34.889407567071,-34.8893820038874,-34.889362235359,-34.8893397337543,-34.8893207047739,-34.889300060794,-34.8892831854242,-34.8892657005735,-34.8892458870218,-34.8892415047618,-34.8892348138111,-34.8892269013971,-34.8892142315296,-34.8892155930651,-34.8892097458829,-34.8892041404921,-34.8891996356688,-34.88918828815,-34.8891788591205,-34.8891711743239,-34.8891587745957,-34.8891471248376,-34.8891335611759,-34.889120413562,-34.889106142452,-34.8890943676294,-34.8890802628552,-34.8890663777777,-34.8890506550857,-34.8890390103302,-34.8890289876613,-34.889012283213,-34.8889982418049,-34.8889859738113,-34.8889728074377,-34.8889641738185,-34.8889482881258,-34.8889369264329,-34.8889176243951,-34.888888476446,-34.8888409873714,-34.8887785668462,-34.888731576362,-34.8886935388284,-34.88868448666,-34.8886754432461,-34.8886664077529,-34.8886528736897,-34.888639358803,-34.8886258505865,-34.8886123398687,-34.8885988208132,-34.8885853167655,-34.8885763183748,-34.8885673320737,-34.8885583416037,-34.8885493461312,-34.8885403473236,-34.8885268378564,-34.8885133342256,-34.8885043450063,-34.8884953682934,-34.888486397417,-34.8884819330312,-34.8884774740649,-34.8884684810937,-34.8884549649564,-34.8884414308932,-34.8884278926612,-34.8884098421021,-34.888400813279,-34.8883917848728,-34.8883782303824,-34.8883691973906,-34.8883601648156,-34.888351130573,-34.8883420963305,-34.8883330625049,-34.888324029513,-34.8883104762733,-34.8882969313711,-34.8882833931391,-34.8882698536565,-34.8882608235827,-34.8882517868389,-34.8882427280004,-34.8882336816683,-34.8882246349193,-34.8882155885872,-34.8882065447564,-34.8881975013425,-34.8881884450053,-34.8881794053433,-34.88817036318,-34.8881568303674,-34.8881433058926,-34.8881297693281,-34.8881207363362,-34.8881071956029,-34.8880981613603,-34.8880521805635,-34.8880380347403,-34.8880242753504,-34.8880135591464,-34.8879997355497,-34.887983346546,-34.8879692790632,-34.8879584373085,-34.887943003865,-34.8878253582935,-34.8878044073639,-34.8877908307788,-34.8877817898661,-34.8877727256081,-34.8877591586113,-34.8877546108492,-34.8877455586808,-34.8877364519008,-34.8877363960387,-34.8877363464298,-34.8877362943196,-34.8877227673434,-34.8877137797916,-34.8877002744932,-34.8876912198235,-34.8876911731328,-34.8876911197719,-34.8876820580152,-34.8876730075143,-34.8876639528446,-34.8876503870984,-34.8876368176002,-34.8876187232685,-34.8876006385251,-34.8875916013644,-34.8875825658712,-34.8875735316287,-34.8875644990537,-34.8875554677294,-34.887546436405,-34.8875328802471,-34.8875238489227,-34.8875148146802,-34.887501248934,-34.8874922109395,-34.8874831462647,-34.8874741070196,-34.887465041094,-34.8874604849943,-34.8874514249051,-34.8874468713067,-34.8874378112176,-34.8874287511284,-34.8874197139677,-34.8874106526278,-34.8873970814622,-34.8873880172042,-34.8873789775422,-34.8873699091154,-34.887360839021,-34.887356273333,-34.8873471994867,-34.887338123973,-34.887333558285,-34.8873244886075,-34.8873199308403,-34.8873108707511,-34.8873063213215,-34.8873017735594,-34.887292721391,-34.8872881598719,-34.8872790968645,-34.8872700409441,-34.8872610025328,-34.8872519682903,-34.8872429315465,-34.8872338973039,-34.8872248576419,-34.8872203015422,-34.8872157479438,-34.8872067137013,-34.887197682377,-34.8871886414643,-34.8871840866153,-34.8871840249168,-34.8871884822155,-34.887192937013,-34.8871973913936,-34.8872018491092,-34.887206313078,-34.887206263886,-34.8872062159446,-34.8871971762826,-34.8871881462089,-34.8871746254859,-34.8871656287628,-34.8871566316227,-34.8871476399021,-34.8871341346037,-34.8871206084613,-34.8871115800551,-34.8871025308049,-34.8870934911429,-34.8870844431433,-34.8870754076501,-34.8870618940141,-34.8870529010428,-34.8870438626315,-34.88703930945,-34.8870392515034,-34.8870391914725,-34.8870391268558,-34.8870390634898,-34.8870345061395,-34.8870209649893,-34.8870119349156,-34.8870028556498,-34.8869937663789,-34.8869891802638,-34.8869845949823,-34.8869845182761,-34.8869844453218,-34.8869843769532,-34.8869843135872,-34.8869842573082,-34.8869797037098,-34.8869706544595,-34.8869616064599,-34.8869525738849,-34.8869435354736,-34.8869344820545,-34.886929921786,-34.8869208462722,-34.8869117695077,-34.8869026969121,-34.8868891228283,-34.8868800614884,-34.8868664957422,-34.8868574381543,-34.8868528858066,-34.8868483338757,-34.886843777776,-34.8868437252489,-34.8868481771282,-34.8868481208492,-34.8868525727284,-34.8868480153781,-34.8868479657692,-34.8868434096695,-34.8868388531529,-34.8868342916337,-34.8868387418455,-34.8868431895559,-34.8868476401846,-34.8868520962327,-34.8868565560327,-34.8868610204184,-34.8868654860548,-34.8868699512743,-34.8868698799875,-34.886874320611,-34.8868742343165,-34.8868741805388,-34.8868786294999,-34.8868785665508,-34.8868785019341,-34.8868784385681,-34.8868783756189,-34.8868783164218,-34.8868782613934,-34.8868782147026,-34.8868735964876,-34.8868042396281,-34.8867332361233,-34.8867377388822,-34.8866587607517,-34.8866834769943,-34.8866560552211,-34.8865936018925,-34.886515540579,-34.8865064950807,-34.8864974570862,-34.8864839284425,-34.8864749642361,-34.8864659850219,-34.8864569933013,-34.886443515934,-34.8864345392212,-34.8864255437487,-34.8864120563762,-34.8863985564973,-34.8863850428613,-34.8863670006398,-34.8863534557377,-34.8863444089887,-34.8863353539021,-34.8863263171583,-34.8863172499821,-34.8863126851279,-34.8863036096141,-34.8862990451768,-34.8862899834201,-34.8862809341698,-34.8862673942702,-34.8862538643759,-34.8862403411516,-34.8862268166767,-34.8862132909511,-34.8861997648087,-34.886186236165,-34.8861727171095,-34.8861592147293,-34.8861457110985,-34.8861321878742,-34.8861186563123,-34.8861051209984,-34.8860915852677,-34.8860780512045,-34.8860645196426,-34.8860509926664,-34.8860374694421,-34.8860239558061,-34.8860104534259,-34.8860014579534,-34.8859924662328,-34.8859834899368,-34.8859744982163,-34.8859655094138,-34.8859520011973,-34.8859384742211,-34.8859294358098,-34.8859203973984,-34.8859113564858,-34.8858978153356,-34.8858887769243,-34.8858752303546,-34.885866189442,-34.885852644123,-34.8858391046403,-34.8858255718278,-34.8858120677801,-34.8857985804076,-34.8857896178688,-34.8857806674194,-34.8857717198883,-34.8857627669377,-34.8857538014806,-34.8857448210158,-34.8857358280446,-34.8857222843931,-34.8857132472324,-34.8857042159081,-34.885690688515,-34.8856726667207,-34.8856546534725,-34.8856366427255,-34.885614121319,-34.8855961036935,-34.885578086068,-34.8855600699017,-34.8855465564741,-34.8855240417377,-34.8855015311701,-34.8854790233122,-34.8854610209029,-34.8854430157838,-34.8854295119446,-34.8854159997677,-34.8854024738337,-34.8853979202352,-34.88539335017,-34.8853978020493,-34.8853977441027,-34.8853976890744,-34.8853931315156,-34.8853751853853,-34.8853662366035,-34.885361794521,-34.8853528371931,-34.8853483801028,-34.8853349008595,-34.8853259216454,-34.8853169232547,-34.8852989223045,-34.8852809198952,-34.8852584105782,-34.8852404108786,-34.8852269057887,-34.8852179071896,-34.8852044020997,-34.8851863996903,-34.8851683904025,-34.8851548755159,-34.8851413508325,-34.885127819479,-34.8851142839568,-34.885105252424,-34.8850962223503,-34.8850826841183,-34.8850736555036,-34.8850601185223,-34.8850466050947,-34.885037619002,-34.885028653545,-34.8850242100033,-34.885015266641,-34.8850063203605,-34.8849973384366,-34.8849883756893,-34.8849748924857,-34.8849658982638,-34.8849523764986,-34.8849388382666,-34.8849252916969,-34.8849162628739,-34.8849072232119,-34.8848936862305,-34.8848801536264,-34.8848666166451,-34.8848575851123,-34.8848485469094,-34.8848394974507,-34.8848304659179,-34.8848169552,-34.8848079663976,-34.8847989886426,-34.8847945313438,-34.8847855742244,-34.8847811250549,-34.8847766719249,-34.8847722119165,-34.8847677602456,-34.8847587906197,-34.8847452949097,-34.8847363061073,-34.8847228106056,-34.8847093176053,-34.8846958289822,-34.8846868510187,-34.8846778774324,-34.8846689105163,-34.884659947769,-34.8846509852301,-34.884642019773,-34.8846330432686,-34.8846195490176,-34.8846105533366,-34.8845970492889,-34.8845835537873,-34.8845745731141,-34.8845655980687,-34.8845566161449,-34.8845476190048,-34.8845385641267,-34.8845340119873,-34.8845249708663,-34.8845160081189,-34.8845160577279,-34.8845116114765,-34.884511674634,-34.8845117338312,-34.8845072792422,-34.8845028357006,-34.884498374233,-34.8844893950189,-34.884480413095,-34.8844714434691,-34.8844624876004,-34.8844535206842,-34.884444559396,-34.8844356049863,-34.884426654537,-34.8844176738638,-34.8844042250529,-34.88439528711,-34.8843863118563,-34.8843728699239,-34.8843638946701,-34.8843504500281,-34.8843414720646,-34.8843324943095,-34.8843190398707,-34.8843100577384,-34.8843010743554,-34.8842920882627,-34.8842831021701,-34.8842741160774,-34.8842651272749,-34.8842561384725,-34.8842426675669,-34.884233678556,-34.8842246912127,-34.8842157049116,-34.8842022435942,-34.8841932604197,-34.8841842782874,-34.8841708238486,-34.8841618419247,-34.8841483847761,-34.8841349247095,-34.8841214606824,-34.8841079924865,-34.8840945201218,-34.8840810450474,-34.8840675741417,-34.8840586197321,-34.8840496390588,-34.8840407050763,-34.8840362421497,-34.8840317806821,-34.8840273659053,-34.8840274538673,-34.8840275334917,-34.8840321102271,-34.8840366761235,-34.8840412336823,-34.8840457981196,-34.8840413462403,-34.884036882063,-34.884027884923,-34.8840143756642,-34.8840008482712,-34.8839873046197,-34.8839782703772,-34.8839647252666,-34.8839556897734,-34.88394665699,-34.8839331227184,-34.8839241284965,-34.8839151559525,-34.8839017097471,-34.8838972524483,-34.8838882978302,-34.8838838541843,-34.8838749092587,-34.8838659683977,-34.8838570275366,-34.8838480853207,-34.88383914175,-34.8838301953652,-34.8838212449159,-34.8838122917569,-34.8838033344291,-34.8837943742872,-34.8837854128948,-34.8837764500432,-34.8837674831271,-34.883758516211,-34.8837495478358,-34.8837405795648,-34.8837316098347,-34.8837226402088,-34.8837136704787,-34.8837047021035,-34.8836957351874,-34.8836912750747,-34.8836823108683,-34.883673345307,-34.8836643811006,-34.8836554154351,-34.8836419430704,-34.8836329761543,-34.883624007779,-34.8836150366941,-34.8836060628994,-34.8835970877498,-34.8835836029829,-34.8835746209548,-34.8835656374676,-34.8835566500201,-34.8835476596544,-34.8835341585248,-34.8835251600299,-34.8835071519927,-34.883489126238,-34.883475585192,-34.8834665291675,-34.8834619647301,-34.883461897508,-34.8834618289309,-34.8834662698671,-34.883470714972,-34.8834796722999,-34.8834841269931,-34.88348858721,-34.8834930514915,-34.8834930007362,-34.8834839390837,-34.8834704050205,-34.8834568928436,-34.8834433916098,-34.8834344082269,-34.8834254344322,-34.8834164715806,-34.8834030718576,-34.8833896611914,-34.8833671945005,-34.8833356441667,-34.883276684072,-34.8832581031843,-34.8833062999412,-34.8832875551241,-34.883321700793,-34.8833428176579,-34.8833104761808,-34.8832628090935,-34.8831955710597,-34.8830774005256,-34.8829818333302,-34.8829024235112,-34.88283081741,-34.8827480341338,-34.8827000705508,-34.8825504750383,-34.88248662946,-34.8824358452742,-34.882398058919,-34.8823658925866,-34.881998704124,-34.881941377422,-34.8817365769683,-34.8813995615236,-34.8812962204531,-34.8812602585247,-34.8812512037508,-34.8812376133044,-34.881224036615,-34.8812104654493,-34.881201399628,-34.8811878160602,-34.8811832365109,-34.8811741473442,-34.8811740773081,-34.8811740223839,-34.8811739674597,-34.8811829370856,-34.8811828876851,-34.881182829947,-34.8811782695743,-34.8811692189692,-34.8811556861566,-34.881146698709,-34.8811377400263,-34.8811332812685,-34.8811288308483,-34.8811243830336,-34.8811199339683,-34.8811109752856,-34.881106513818,-34.8810975346039,-34.8810885443423,-34.8810750321654,-34.8810569926537,-34.881043448898,-34.8810298969089,-34.8810163393961,-34.881007285977,-34.8809982518387,-34.880984692971,-34.8809756628973,-34.8809666328236,-34.8809576041048,-34.8809395535457,-34.8809170017068,-34.8808989566713,-34.8808809116358,-34.880867369235,-34.8808583116471,-34.8808537458549,-34.8808582031537,-34.8808626577427,-34.880867109622,-34.8808715655658,-34.8808760256785,-34.8808849843613,-34.8808939649303,-34.8809074839857,-34.8809165263574,-34.8809255770668,-34.8809346126642,-34.8809481454767,-34.8809616479611,-34.8809706258204,-34.8809750832234,-34.8809750254853,-34.8809704622986,-34.8809613992912,-34.8809523512916,-34.8809388117047,-34.8809207735478,-34.8809072544924,-34.880898262876,-34.8808937973438,-34.8808848263631,-34.8808758456899,-34.8808668595972,-34.8808578611023,-34.8808488296737,-34.8808397692719,-34.8808352185916,-34.8808261499564,-34.8808215813502,-34.8808170058655,-34.8808079166988,-34.8808033288119,-34.8807987793823,-34.8807941847211,-34.8807896324775,-34.8807850363572,-34.8807804855727,-34.8807804004247,-34.8807758125377,-34.880775734164,-34.8807756557902,-34.8807710719679,-34.8807664882498,-34.8807574017928,-34.8807483249242,-34.880739257748,-34.8807302055795,-34.8807211686273,-34.8807076455073,-34.8806986896385,-34.8806942309849,-34.880694288723,-34.8806943533396,-34.8806899166765,-34.8806899895266,-34.8806900679004,-34.8806946544324,-34.880694734161,-34.8806993178791,-34.8807038948229,-34.8807084620742,-34.8807175306052,-34.8807220840994,-34.8807221460063,-34.8807176858937,-34.8807086873988,-34.8806951546904,-34.8806861259716,-34.8806725629351,-34.8806589848909,-34.8806499024985,-34.8806408146867,-34.8806317214555,-34.8806271335685,-34.8806225854938,-34.880617996252,-34.8806134481773,-34.8806088630001,-34.8805997793571,-34.8805907080121,-34.8805816504242,-34.8805726188914,-34.8805590710711,-34.8805455286703,-34.8805274821757,-34.8805094371403,-34.8804913961694,-34.8804733621813,-34.8804598444807,-34.8804463460609,-34.8804373613231,-34.8804283849229,-34.8804239234553,-34.880414960708,-34.8804059993156,-34.8803970353176,-34.880388043597,-34.8803745645622,-34.8803655701319,-34.8803520881789,-34.880343093957,-34.8803341009858,-34.8803251092652,-34.880316117753,-34.8803026205839,-34.8802936305308,-34.8802846402693,-34.8802756514669,-34.8802666612054,-34.8802576721945,-34.8802441973285,-34.8802352043573,-34.8802217236549,-34.880212729433,-34.8801992406015,-34.8801812381922,-34.8801632205667,-34.8801451810549,-34.8801316192691,-34.8801225727286,-34.8801180247581,-34.8801134711597,-34.8801044039835,-34.8800998407968,-34.8800952749004,-34.8800952144526,-34.8800906473055,-34.88008607995,-34.8800860222119,-34.8800814590252,-34.8800814039968,-34.8800768437283,-34.8800722832514,-34.8800722323918,-34.8800676760836,-34.8800631197755,-34.8800585661771,-34.8800540125787,-34.8800494618985,-34.8800404043106,-34.880035854881,-34.8800268014619,-34.8800177478344,-34.8800041504051,-34.8799950996958,-34.8799860489865,-34.879976996818,-34.8799679433989,-34.8799543818216,-34.8799453242337,-34.8799362651867,-34.8799226979814,-34.8799136391428,-34.8799000746473,-34.879882008872,-34.8798684554238,-34.879850403614,-34.8798278544848,-34.8797738745627,-34.8797604284615,-34.8797289634842,-34.8797063332716,-34.8796879469143,-34.8796785468581,-34.8796556192004,-34.8795877296046,-34.8795380487746,-34.879497332151,-34.8794924811075,-34.8794471116677,-34.8794152760826,-34.879383442165,-34.8793696281658,-34.8793199667208,-34.8792840183897,-34.8792255086313,-34.8791804418476,-34.8791533184844,-34.8790765789078,-34.8789996519429,-34.8789362825951,-34.8788773357363,-34.8788589502128,-34.8788269945658,-34.8787907373253,-34.8787484092452,-34.8786998623976,-34.8786297252324,-34.8785835389322,-34.878506545552,-34.8784662176706,-34.8784574839997,-34.8783858758195,-34.8783502278516,-34.8783857121237,-34.8783983382457,-34.8783921107888,-34.8782759220302,-34.8781403228472,-34.8779784046866,-34.8777816602687,-34.8776632994667,-34.8775479804717,-34.8775322047947,-34.8774272054176,-34.8773764238547,-34.8773520966556,-34.8773819247229,-34.8773510743841,-34.8772511362888,-34.8769946819611,-34.8768790398562,-34.8768038413998,-34.8766961898219,-34.8765525021576,-34.8765017205055,-34.8762810427547,-34.8761436486924,-34.8760190428109,-34.8759542180808,-34.875843368281,-34.8757489218392,-34.8755732652274,-34.8754217744778,-34.8752191433974,-34.8751315028728,-34.8750951357841,-34.8750318197971,-34.8749593299122,-34.8749229119638,-34.8748546397278,-34.8747596427617,-34.8747413991864,-34.8746734933323,-34.8746013861448,-34.8745246940927,-34.87448847458,-34.8743657137691,-34.8742833329499,-34.8743238549007,-34.8743203445377,-34.874311057248,-34.8742836197645,-34.8742697784595,-34.8742288340101,-34.8741744759762,-34.8741203113755,-34.87406178119,-34.8739651878087,-34.8739184429682,-34.8740395251363,-34.8740732201374,-34.8739974824395,-34.8738458379779,-34.8737995258,-34.87379407097,-34.8739081318905,-34.8739350459118,-34.8740486251771,-34.8740608977649,-34.8739487367813,-34.8737809585578,-34.873732433164,-34.8735243750646,-34.8733777762136,-34.8732317543835,-34.872866343839,-34.8724873608878,-34.8724693307559,-34.872451300624,-34.8724332721596,-34.8724197560223,-34.8724062482226,-34.8723972594202,-34.8723882847918,-34.8723793268386,-34.872374893719,-34.8723704747733,-34.8723660108045,-34.8723570778642,-34.8723481240798,-34.8723346312879,-34.872316604491,-34.8722985576839,-34.8722895288608,-34.8722804967027,-34.8722714653783,-34.8722579242281,-34.8722488912363,-34.8722398582444,-34.8722308260863,-34.8722217955957,-34.8722037454534,-34.8721902176434,-34.8721721866777,-34.8721541632159,-34.8721406454111,-34.8721271326089,-34.8721091083133,-34.8720955863397,-34.8720820585297,-34.8720685273847,-34.8720504830788,-34.8720324396066,-34.8720143986358,-34.871996364335,-34.8719783408732,-34.8719558142556,-34.8719332801342,-34.871919753158,-34.8719062195117,-34.871888174372,-34.8718746307205,-34.8718610795652,-34.8718430177502,-34.8718294582573,-34.871815896263,-34.8718023317674,-34.8717887639368,-34.871779702597,-34.8717706395896,-34.8717660822393,-34.8717615240552,-34.8717569658711,-34.8717569116765,-34.8717568591494,-34.8717568032872,-34.8717567490926,-34.8717611988875,-34.8717656486824,-34.8717700968097,-34.8717745441033,-34.8717834962201,-34.8717879393449,-34.8717968872929,-34.8718058344072,-34.8718147781864,-34.8718237211318,-34.8718326640773,-34.8718416053552,-34.8718505474669,-34.8718594904123,-34.8718684341915,-34.8718773813058,-34.87188632842,-34.8718907682097,-34.8718997161577,-34.8719086641057,-34.8719176128875,-34.8719220510097,-34.8719309964564,-34.8719399394019,-34.8719488806798,-34.8719533146332,-34.8719622559111,-34.8719711988565,-34.8719801426357,-34.871984584093,-34.8719935337085,-34.8719979818359,-34.8720069431241,-34.8720114012566,-34.8720158643917,-34.8720248406876,-34.8720337986408,-34.8720427957809,-34.8720563077494,-34.8720698488995,-34.8720788793901,-34.8720879315586,-34.8721014952204,-34.8721105282122,-34.8721195603703,-34.8721331023543,-34.8721511274836,-34.8721646352833,-34.8721736274208,-34.872187122714,-34.8721961048463,-34.8722095918019,-34.8722185689316,-34.8722320517184,-34.8722410280143,-34.8722545133024,-34.8722634920996,-34.8722724725644,-34.872281453863,-34.8722904368291,-34.8722993889459,-34.8723083427303,-34.8723082835331,-34.8723037161776,-34.872294643165,-34.8722855693187,-34.8722764963062,-34.8722674241275,-34.87225835445,-34.8722537962659,-34.8722492439181,-34.8722446757289,-34.8722401175448,-34.8722355668645,-34.872226508026,-34.872217465029,-34.8722084178631,-34.8721993623596,-34.872194805843,-34.8721902501602,-34.8721856986462,-34.8721766698232,-34.8721631503508,-34.8721541582133,-34.8721451669096,-34.8721362006188,-34.872131750824,-34.8721272993616,-34.872122841229,-34.8721137990658,-34.8721092417154,-34.8721091733468,-34.8721045884823,-34.8721045034384,-34.8720999094025,-34.8720953162003,-34.8720907671877,-34.8720862190087,-34.8720771284871,-34.87206807882,-34.8720544959817,-34.8720454538184,-34.8720319101669,-34.872022877175,-34.8720003163732,-34.8719867877294,-34.871973264922,-34.8719597437822,-34.8719417211541,-34.8719282091857,-34.8719101932277,-34.8718921781035,-34.8718741679819,-34.8718516522033,-34.8718336445829,-34.8718111288043,-34.8717886121919,-34.8717706004028,-34.871748077954,-34.8717255521702,-34.8717030213839,-34.8716849920857,-34.8716624529617,-34.8716444169934,-34.8716263776901,-34.8716083350517,-34.8715902907458,-34.8715722456061,-34.8715541987989,-34.8715361519917,-34.8715226108416,-34.8715045632006,-34.8714910220504,-34.8714774800664,-34.8714639389163,-34.8714458921091,-34.8714323526264,-34.871418815645,-34.8714052794974,-34.8713917466849,-34.8713692025583,-34.8713466801096,-34.8713376829695,-34.8713286933333,-34.871315237227,-34.8713062625986,-34.8713017986297,-34.8712928323389,-34.8712883775414,-34.8712839219102,-34.8712749631233,-34.8712660051701,-34.8712570480507,-34.871248091765,-34.8712391338119,-34.8712301758587,-34.8712167097472,-34.8712032411344,-34.8711897708541,-34.871171790748,-34.8711583137976,-34.8711403270213,-34.8711223344088,-34.8711043392949,-34.8710908440017,-34.8710728363814,-34.8710548229247,-34.8710413109562,-34.8710232883282,-34.8710097663545,-34.8709962402121,-34.8709827099008,-34.8709646689299,-34.8709511319486,-34.8709375891309,-34.8709240438119,-34.8709104943241,-34.8709014488257,-34.8708878918341,-34.8708743323411,-34.8708607686793,-34.8708472025162,-34.8708381386751,-34.8708245641744,-34.8708109855048,-34.8707974009989,-34.8707838106567,-34.8707702136444,-34.8707566107957,-34.8707430012769,-34.8707248810986,-34.8707112615746,-34.8706931338924,-34.8706750053764,-34.8706613833512,-34.8706432565027,-34.8706296403138,-34.8706160291275,-34.8705979156192,-34.8705843119368,-34.8705707107557,-34.8705571137433,-34.8705435158972,-34.8705299205524,-34.8705163252076,-34.8705027290291,-34.870484625526,-34.8704710268461,-34.8704574281663,-34.8704438286526,-34.8704257193132,-34.870412114797,-34.870398509447,-34.870389406419,-34.8703757952327,-34.8703621848802,-34.8703530776834,-34.8703394639958,-34.870330356799,-34.8703212512697,-34.8703121449066,-34.8703030410449,-34.8702939380169,-34.8702848383239,-34.8702757361297,-34.8702666381043,-34.8702620457359,-34.8702529485442,-34.8702438513525,-34.8702028460384,-34.8701663488826,-34.8701662905191,-34.870161729,-34.8701571691483,-34.8701571191225,-34.8701525634397,-34.8701479627337,-34.8701433653627,-34.8701388113474,-34.8701387621554,-34.8701342056388,-34.8701341539455,-34.8701295907588,-34.8701295340629,-34.8701249700424,-34.8701249091777,-34.870120342656,-34.8701202809575,-34.8701157144358,-34.8701156527372,-34.8701155927063,-34.870111024517,-34.8701109628185,-34.8701063946293,-34.8701018247725,-34.8700972557495,-34.8700926842251,-34.8701101432292,-34.8701190694994,-34.8701279966033,-34.8701324172165,-34.8701413451541,-34.8701457682686,-34.8701547003751,-34.8701591293259,-34.8701635616117,-34.8701679972326,-34.8701769426794,-34.8701813849704,-34.8701858289289,-34.870194783547,-34.8701992316744,-34.8702081896276,-34.8702171484145,-34.870230614526,-34.8702395749805,-34.8702530419257,-34.8702665063697,-34.8702754643229,-34.8702889270993,-34.8703023873744,-34.8703158434808,-34.8703247914288,-34.8703382416987,-34.8703471829766,-34.870356122587,-34.8703650588624,-34.8703694861456,-34.8703784182522,-34.8703828413666,-34.870382755489,-34.8703871769359,-34.870387091892,-34.8703825028587,-34.8703824203161,-34.8703778346178,-34.8703687457638,-34.8703641692369,-34.8703550878867,-34.8703460132067,-34.8703369418617,-34.8703278755193,-34.8703143060212,-34.8703052471826,-34.8702916851884,-34.8702781281967,-34.87026457454,-34.8702510242185,-34.8702374763982,-34.8702194237546,-34.8702058776019,-34.8701923356179,-34.8701742854757,-34.8701607443255,-34.8701472015078,-34.8701291505317,-34.8701156060465,-34.8700975525692,-34.8700840022476,-34.8700659429339,-34.870052386776,-34.8700388264493,-34.8700252619537,-34.8700116949569,-34.8699981229575,-34.8699890557813,-34.869975479613,-34.8699664074343,-34.8699528262635,-34.8699437499159,-34.8699346719008,-34.8699255955532,-34.8699210240289,-34.8699119476813,-34.8699073786583,-34.8699028138041,-34.8698982506174,-34.8698981972565,-34.8698981480645,-34.86989810054,-34.8699025203194,-34.8699159597505,-34.8699249327114,-34.8699339073398,-34.8699428811345,-34.8699518574305,-34.869965341051,-34.8699743198483,-34.8699878076376,-34.8699967922712,-34.8700102842294,-34.8700237828576,-34.8700327749951,-34.8700462769584,-34.870055275766,-34.8700687818981,-34.8700867853496,-34.8701047896349,-34.8701182840943,-34.8701317677148,-34.870140757351,-34.8701497069665,-34.8701586782599,-34.8701631372262,-34.8701675920236,-34.8701765508106,-34.870181002273,-34.8701899577249,-34.8701989140106,-34.8702078727975,-34.8702168349195,-34.8702303060336,-34.8702392748257,-34.8702527517761,-34.8702662312278,-34.8702813412669,-34.8702293270398,-34.8702422702343,-34.870383105264,-34.8704203284402,-34.8704458129462,-34.8704281446779,-34.8704718589735,-34.8705824441436,-34.8706806083255,-34.8707671538735,-34.8708369524443,-34.870900058322,-34.870907430383,-34.8708278973686,-34.8707184338891,-34.8708514107267,-34.8707854573552,-34.8706580507991,-34.8706354941661,-34.8706219621873,-34.8706084302085,-34.8705903809,-34.8705678259345,-34.8705497774598,-34.8705362371434,-34.870522700162,-34.8705091665157,-34.8704956337032,-34.870482110062,-34.8704685955922,-34.870455079455,-34.8704415608164,-34.8704235206793,-34.8704144843524,-34.8704054396878,-34.8703963891869,-34.8703873361847,-34.8703782806812,-34.870369224344,-34.8703556615159,-34.87034660768,-34.8703375738543,-34.8703285166833,-34.8703149455176,-34.870301360178,-34.8702923071758,-34.8702877581631,-34.8702787001583,-34.8702741486443,-34.8702695979641,-34.8702650489514,-34.8702514536066,-34.8702423864304,-34.870233337597,-34.8702197914443,-34.8702062853121,-34.8701973081824,-34.8701883327202,-34.8701838729201,-34.8701794214577,-34.8701794789874,-34.8701750341951,-34.8701796032181,-34.8701796699192,-34.8701842456124,-34.8701888288094,-34.8701934170089,-34.8701980060423,-34.8702025917406,-34.8702071716025,-34.8702117422931,-34.8702163071473,-34.8702163588406,-34.8702164297105,-34.8702119682429,-34.8702075076092,-34.8702075559674,-34.8702030995025,-34.8701986463725,-34.8701941932426,-34.8701897401127,-34.8701852844815,-34.8701763298633,-34.8701628295676,-34.8701537773991,-34.8701492267189,-34.8701446668672,-34.8701401036806,-34.8701355404939,-34.8701354671227,-34.8701309131074,-34.8701173744585,-34.8701038583212,-34.870094805319,-34.8700857364753,-34.8700766467876,-34.8700720952735,-34.8700675404245,-34.8700629814066,-34.8700584207212,-34.8700538592021,-34.8700492968492,-34.8700447336625,-34.8700401688083,-34.8700356047878,-34.8700310399336,-34.8700264734119,-34.8700173995656,-34.8700128322101,-34.8700082648546,-34.8700036958315,-34.8699991276423,-34.8699900554635,-34.8699854889418,-34.8699809257551,-34.8699718585789,-34.8699673012286,-34.8699582407225,-34.8699536900423,-34.8699400880274,-34.8699310350252,-34.8699219811892,-34.8699128873326,-34.8699083366524,-34.8699037851384,-34.8698992311231,-34.869894676274,-34.8698901222587,-34.8698855640747,-34.8698855148826,-34.8698809566985,-34.8698764010157,-34.8698718444991,-34.8698672871488,-34.8698627306322,-34.8698581757831,-34.8698536192666,-34.8698490652513,-34.8698445104022,-34.8698399563869,-34.8698354032054,-34.8698308500239,-34.8698262960086,-34.8698262484841,-34.869821693635,-34.8698216436092,-34.8698215944172,-34.8698215418901,-34.86982599502,-34.8698259416592,-34.8698303947891,-34.869834847919,-34.8698393010489,-34.8698437550126,-34.8698437033193,-34.8698481606181,-34.8698526195843,-34.8698570768831,-34.8698615341818,-34.8698659881455,-34.8698704396079,-34.8698748877353,-34.86987933086,-34.8698837681484,-34.8698927069251,-34.8698971358759,-34.8699060704836,-34.8699104977669,-34.8699194340422,-34.8699283719851,-34.8699328101073,-34.8699372515645,-34.8699416971906,-34.8699461494868,-34.8699551116088,-34.869959570575,-34.8699640320426,-34.8699684968452,-34.8699774264504,-34.8699908650477,-34.8699998380087,-34.8700088084683,-34.8700132716033,-34.8700222403954,-34.8700312058525,-34.8700356631512,-34.8700446252732,-34.8700535840602,-34.8700580355226,-34.8700669909745,-34.8700714382681,-34.8700803912187,-34.8700848368447,-34.870089281637,-34.8700937264293,-34.8700981703878,-34.8701026151801,-34.8701025559829,-34.8701070032765,-34.8701069482481,-34.8701114022118,-34.8701113530198,-34.8701112638071,-34.8701111887684,-34.8701066172441,-34.8701020548912,-34.8700929777098,-34.870083933879,-34.8700749008871,-34.8700568649189,-34.8700433462803,-34.8700298259742,-34.8700163014993,-34.8700027678529,-34.8699892275365,-34.8699756788825,-34.8699621235583,-34.8699485607303,-34.8699349962347,-34.8699214350742,-34.8699124029161,-34.869898850927,-34.8698898179351,-34.8698717836344,-34.8698627939982,-34.869858338367,-34.8698538752319,-34.8698584300809,-34.8698584784392,-34.8698585276313,-34.8698585759895,-34.8698541328648,-34.8698451690752,-34.8698316754496,-34.8698181576448,-34.8698046273335,-34.8697955960091,-34.8697820481889,-34.8697730018567,-34.8697639705324,-34.8697549141952,-34.8697458478527,-34.8697412788297,-34.8697367031366,-34.8697276167838,-34.8697230427582,-34.8697184762365,-34.8697093957201,-34.8696958604063,-34.8696869032869,-34.8696824526582,-34.8696689965519,-34.8696600394325,-34.8696510456275,-34.8696420476537,-34.8696285031684,-34.8696239399817,-34.8696148494602,-34.8696102604268,-34.869601167404,-34.8695965875421,-34.8695875045244,-34.869578424008,-34.8695648386683,-34.8695557940038,-34.8695467493392,-34.8695377046746,-34.8695286625114,-34.8695196203481,-34.8695105798524,-34.8695015426917,-34.8694879965389,-34.8694789585444,-34.8694699197162,-34.8694608792205,-34.8694518362234,-34.8694427898913,-34.8694291945465,-34.8694201365418,-34.8694155833602,-34.8694110301787,-34.8694064744959,-34.8694019196468,-34.8693973664653,-34.8693928157851,-34.8693837244298,-34.8693791554067,-34.8693746047265,-34.8693655683996,-34.869352053096,-34.8693430634599,-34.8693340846626,-34.8693250908576,-34.8693161178967,-34.8693026359437,-34.8692936396374,-34.8692846525025,-34.8692711463704,-34.8692576102228,-34.8692485613894,-34.8692395050521,-34.8692304545512,-34.8692214240606,-34.8692079079233,-34.8691943976224,-34.8691808756488,-34.8691673428362,-34.8691583065093,-34.8691492601772,-34.86914020384,-34.8691311383313,-34.8691220636513,-34.8691174904594,-34.8691084057742,-34.8691038300811,-34.8690947537335,-34.8690901972169,-34.8690811483836,-34.8690676038983,-34.8690540819247,-34.8690405691225,-34.8690270638241,-34.869013557692,-34.8690000415547,-34.8689865254174,-34.8689730076126,-34.8689595014805,-34.8689459936808,-34.868932493385,-34.8689189872529,-34.8689054711156,-34.8688919391369,-34.8688828986411,-34.8688693858389,-34.8688558763717,-34.8688423535643,-34.8688333214062,-34.8688242909156,-34.8688152545887,-34.8688017309475,-34.8687882289842,-34.8687792368467,-34.8687657407198,-34.8687522470941,-34.8687387576372,-34.8687297613309,-34.8687207650246,-34.8687072855729,-34.8686982934355,-34.8686893021318,-34.8686803124956,-34.8686668388802,-34.868657849244,-34.8686488587741,-34.8686398674704,-34.8686308753329,-34.8686218831954,-34.8686128910579,-34.8686038997542,-34.8685949076168,-34.8685859163131,-34.8685769258431,-34.8685679362069,-34.8685589482383,-34.8685454512775,-34.8685364608076,-34.8685229630131,-34.8685139675406,-34.8684914651021,-34.8684779548012,-34.8684644394977,-34.8684419112126,-34.8684283900727,-34.868405850115,-34.8683923264738,-34.8683742938406,-34.8683562628749,-34.8683427392337,-34.8683292172601,-34.8683156961203,-34.8683021741466,-34.8682886505055,-34.8682751218617,-34.8682615873816,-34.8682480470652,-34.8682345042475,-34.8682209597623,-34.8682119217678,-34.8682028645968,-34.8681938124284,-34.868189255078,-34.8681846885563,-34.8681801178657,-34.8681755471752,-34.8681709831547,-34.8681664057941,-34.8681573344491,-34.8681527787663,-34.8681482230835,-34.8681436674006,-34.8681481213643,-34.86815707765,-34.8681660539459,-34.8681750085641,-34.8681839840263,-34.8681929411457,-34.8682019174417,-34.8682108970727,-34.8682198641973,-34.8682288504984,-34.8682378301294,-34.8682468097604,-34.8682557827214,-34.8682647581836,-34.8682782184587,-34.8682871880846,-34.8682961610455,-34.8683050939858,-34.8683095579546,-34.8683140210897,-34.8683184808898,-34.8683229390223,-34.8683273954872,-34.8683273396251,-34.8683317885862,-34.8683317285553,-34.8683316668568,-34.8683316009895,-34.8683315359559,-34.8683314709224,-34.8683314042213,-34.8683268318632,-34.8683267668297,-34.8683221961391,-34.8683221336069,-34.8683175679189,-34.868317511223,-34.8683129505376,-34.8683083948548,-34.8683083073097,-34.8683037182763,-34.8683036298974,-34.8683035790378,-34.8683035223419,-34.8683034598097,-34.8683078954306,-34.8683078220594,-34.8683122510102,-34.8683121709689,-34.8683165990859,-34.8683165190446,-34.8683209504967,-34.8683208787931,-34.8683253169153,-34.8683252535493,-34.8683297008428,-34.8683296449807,-34.8683340997782,-34.8683340514199,-34.8683339647085,-34.8683383961606,-34.8683383294595,-34.8683337629378,-34.8683337045743,-34.8683291413877,-34.8683245773672,-34.868320012513,-34.8683199516483,-34.8683243956068,-34.8683288420666,-34.8683332885264,-34.8683422456458,-34.8683466987758,-34.8683511510719,-34.8683555983655,-34.8683600381552,-34.8683599664516,-34.8683598905791,-34.8683553140522,-34.8683507466967,-34.8683461885126,-34.8683371296741,-34.8683280766719,-34.8683190211684,-34.8683054600079,-34.8682964053382,-34.8682873715125,-34.8682783185103,-34.8682692680094,-34.868260215841,-34.8682511595037,-34.8682466063222,-34.8682420423017,-34.8682374732787,-34.8682374049101,-34.8682373340403,-34.8682417679936,-34.8682462036145,-34.8682506392354,-34.8682505717006,-34.8682505058333,-34.8682504449686,-34.8682458842832,-34.8682413302679,-34.8682322630917,-34.8682232192609,-34.8682096722744,-34.8682006317786,-34.8681870839583,-34.8681735336367,-34.8681599824814,-34.8681464288248,-34.8681373824927,-34.8681283328255,-34.8681192581455,-34.8681147057978,-34.8681101267695,-34.868105556079,-34.8681009987287,-34.8680919373888,-34.8680828860541,-34.8680783337064,-34.8680692690315,-34.8680647083461,-34.8680556403361,-34.8680510813183,-34.868046527303,-34.86804195828,-34.8680419099217,-34.8680418615634,-34.8680418032,-34.8680417498391,-34.8680416864731,-34.8680461404368,-34.8680460820734,-34.8680505276994,-34.8680504643334,-34.8680503976324,-34.8680458469521,-34.8680412962719,-34.8680322449372,-34.8680186896131,-34.8680051392915,-34.8679870916505,-34.8679735630068,-34.8679600460357,-34.8679510480619,-34.8679375527687,-34.8679285714702,-34.8679195985092,-34.8679106272158,-34.8679016542549,-34.8678926996368,-34.8678837183382,-34.8678747370397,-34.8678657557411,-34.8678567761101,-34.8678477814714,-34.867838810178,-34.8678298405521,-34.8678253799183,-34.8678209242871,-34.8678209793155,-34.8678255450034,-34.8678301206966,-34.8678347047273,-34.8678437994177,-34.8678483884511,-34.8678574814739,-34.8678620588345,-34.8678666295251,-34.8678666895561,-34.867866746252,-34.8678668012804,-34.8678668529737,-34.8678623940074,-34.8678534427243,-34.8678444630933,-34.8678354734571,-34.8678219664912,-34.8678084311774,-34.8677993715051,-34.8677948208248,-34.8677583422621,-34.8677493025695,-34.8676498791928,-34.8676363327074,-34.8676272828046,-34.8676137108247,-34.8676046311057,-34.8676000469103,-34.8675954512268,-34.8675908989303,-34.8675908507615,-34.8675908020107,-34.8675907521571,-34.8675907023734,-34.86759065206,-34.8675905989797,-34.8675905469325,-34.8675904955808,-34.8675949493383,-34.8675948962527,-34.8675948443237,-34.8675992980773,-34.8675992465996,-34.8676037036418,-34.8676036554565,-34.8676036072664,-34.8676035173501,-34.8675989298219,-34.8675943542352,-34.8675897883577,-34.8675852208471,-34.867576174663,-34.8675626508493,-34.8675491422728,-34.8675356174239,-34.8675221049785,-34.867513137356,-34.8675041723279,-34.8674951944862,-34.8674862149126,-34.8674727279231,-34.8674637332319,-34.8674547389947,-34.8674457459114,-34.867432248704,-34.8674232577612,-34.867409760505,-34.8673962638028,-34.8673827665944,-34.8673692682314,-34.8673557677275,-34.8673467714223,-34.8673377734341,-34.8673197709943,-34.8673017597831,-34.8672882528865,-34.8672747441874,-34.8672612339285,-34.8672432098587,-34.8672296795786,-34.8672206415993,-34.8672115867699,-34.8672025237452,-34.8671889566434,-34.8671799055641,-34.8671618510644,-34.8671483105702,-34.8671302647936,-34.8671122135362,-34.8670941612243,-34.8670761052336,-34.8670670752778,-34.867058045828,-34.8670399897844,-34.8670264443094,-34.8670129059502,-34.8669948699311,-34.8669813548926,-34.8669633420677,-34.8669498398865,-34.8669318293734,-34.8669183120225,-34.8669047818587,-34.8668912380184,-34.8668821885459,-34.8668731304151,-34.8668685732345,-34.8668640122584,-34.8668639574677,-34.8668594019667,-34.8668550802,-34.8668304472828,-34.8667779116534,-34.8666709851077,-34.8665630159458,-34.8665377376964,-34.8665121088339,-34.8665129042181,-34.866544525195,-34.8665856691252,-34.866599145657,-34.8666126259907,-34.8666261080131,-34.8666350875226,-34.8666485744552,-34.8666620635262,-34.8666755536382,-34.8666845363297,-34.8666980287455,-34.8667070131183,-34.8667205049144,-34.8667294897925,-34.8667384741642,-34.8667519344794,-34.8667609161297,-34.8667743743172,-34.8667878312816,-34.8667968145409,-34.8668057989578,-34.8668147839061,-34.8668282756222,-34.8668372621811,-34.8668507555789,-34.8668642506661,-34.8668822503289,-34.8669002511454,-34.8669182485479,-34.866936247752,-34.8669587515315,-34.8669812559623,-34.8670037597408,-34.8670262663593,-34.8670487712499,-34.8670712760653,-34.8670937842493,-34.8671162940521,-34.8671342986236,-34.8671523042333,-34.8671703121062,-34.8671883199751,-34.8672018198545,-34.8672198276782,-34.8672333280596,-34.8672513353543,-34.8672648358062,-34.8672783346423,-34.8672918345653,-34.8673053334009,-34.8673188305535,-34.8673323287407,-34.8673413202044,-34.8673548174272,-34.8673638083133,-34.8673772805208,-34.8673907456683,-34.867399728917,-34.8674086747358,-34.8674221203801,-34.8674310563419,-34.8674445052798,-34.8674534830317,-34.8674624658134,-34.8674714506689,-34.867480438827,-34.8674894280909,-34.867502925236,-34.8675119166926,-34.867520909717,-34.8675344097026,-34.8675434026557,-34.8675523957984,-34.8675658962416,-34.8675748859655,-34.8675883842628,-34.8675973739862,-34.8676063621373,-34.8676198555179,-34.8679856172633,-34.8684749522336,-34.8688492544772,-34.8689553712277,-34.868958962325,-34.8688145686055,-34.8681895795429,-34.8681867431362,-34.868195719292,-34.8682001718184,-34.8682001016833,-34.8682000207127,-34.8681999348205,-34.8681998445832,-34.8682042661739,-34.8682086908781,-34.8682131298304,-34.8682175822703,-34.8682265519908,-34.8682355308584,-34.8682624806066,-34.868384742495,-34.868577873824,-34.8689068545116,-34.8690706826079,-34.8691794129472,-34.8691918023068,-34.869119634432,-34.8691534462077,-34.8694573971758,-34.8694730250789,-34.8693727813315,-34.8690964572216,-34.8690448915548,-34.8687117797537,-34.8687207760527,-34.8687297619715,-34.8687387403496,-34.8687522189572,-34.868761185845,-34.8687746584902,-34.8687836281031,-34.8687926031733,-34.8688060921579,-34.8688150846144,-34.8688285898988,-34.8688421261859,-34.8688556511244,-34.8688646359266,-34.8688736164531,-34.8688780759157,-34.8688825240279,-34.8688869655671,-34.8688914022514,-34.8689003440856,-34.8689092881134,-34.8689182310518,-34.8689271728789,-34.868936150133,-34.8689450876091,-34.8689540283879,-34.8689584726407,-34.868967438995,-34.8689764074365,-34.8689808691471,-34.8689853275473,-34.8689852637968,-34.8689851974273,-34.8689851353631,-34.8689805800816,-34.8689805272886,-34.8689759692719,-34.8689669168851,-34.8689578612621,-34.8689623234941,-34.8689667818863,-34.8689757639349,-34.8689892534728,-34.8690027402399,-34.8690117359828,-34.8690296958013,-34.8690431531998,-34.8690475800203,-34.8690520410631,-34.8690519926746,-34.8690519375964,-34.8690518826318,-34.8690518205412,-34.8690472494538,-34.8690426766736,-34.8694132068676,-34.869885841205,-34.8703678198666,-34.8705270021464,-34.8705865456579,-34.8705701152599,-34.8706333081307,-34.8706668664084,-34.8708105624913,-34.870832454247,-34.8707089162306,-34.8705851632282,-34.8699802907027,-34.8695706154357,-34.8693688601024,-34.8691822639706,-34.8690859222243,-34.8690014427939,-34.868974257423,-34.8689651751161,-34.8689605952222,-34.8689515074399,-34.8689469232589,-34.8689378310476,-34.8689332468609,-34.8689241563356,-34.868919577003,-34.8689104930517,-34.8689059212672,-34.8689013572185,-34.8688967975185,-34.868892243219,-34.8688876519227,-34.8688875734373,-34.8688920017912,-34.8689009336705,-34.8689098656173,-34.868918798602,-34.8689277735199,-34.8689367152848,-34.8689456978665,-34.8689591595362,-34.8689726342706,-34.8689816288331,-34.8689951232192,-34.8690086311781,-34.8690221494981,-34.8690401840227,-34.8690582271838,-34.8690762774376,-34.8690943337389,-34.8691033637573,-34.8691123943526,-34.8691214265695,-34.8691304587863,-34.8691394910029,-34.8691485221783,-34.8691575527728,-34.8691756084947,-34.8691936516537,-34.8692071749092,-34.8692251979146,-34.8692477141122,-34.8692612205244,-34.8692702150879,-34.8692792086104,-34.8692881983545,-34.8693016910488,-34.8693106757893,-34.8693241336745,-34.8693331124363,-34.8693420923517,-34.8693555424959,-34.8693689910157,-34.8693779671071,-34.8693869050061,-34.8694003480479,-34.8694137905803,-34.8694272369316,-34.8694406914836,-34.8694496516924,-34.8694540974984,-34.8694585498209,-34.8694629917309,-34.8694719426805,-34.8694809301423,-34.8694899934818,-34.8694945488624,-34.8695035903781,-34.8695126608099,-34.8695217011704,-34.8695307426846,-34.8695443112342,-34.8695533450792,-34.8695668955913,-34.869584939871,-34.8695984500534,-34.8696074457678,-34.8696164288763,-34.8696253951342,-34.8696298348897,-34.8696342986603,-34.8696387552677,-34.8696386991229,-34.8696386374364,-34.8696430799181,-34.8696430112022,-34.8696474482096,-34.8696473761769,-34.8696473047188,-34.8696517412091,-34.869651670792,-34.8696561099464,-34.8696560422605,-34.8696604836814,-34.8696604187272,-34.8696603565483,-34.8696602953724,-34.8696557290879,-34.8696556712256,-34.8696511076034,-34.8696510513576,-34.8696464915893,-34.869641931816,-34.8696373736685,-34.869628309791,-34.8696237538006,-34.8696191983825,-34.8696146445904,-34.8696100913336,-34.8696055402727,-34.8696009892145,-34.8695964391983,-34.869591851088,-34.8695917773101,-34.8695917172608,-34.8696052045101,-34.8696142569378,-34.8696233219414,-34.8696323962426,-34.8696459795477,-34.8696595639643,-34.8696686098627,-34.8696776563006,-34.8696867016915,-34.8696957464343,-34.8697047901338,-34.8697138305859,-34.8697228699245,-34.8697319065222,-34.869745460372,-34.86975899451,-34.8697679907496,-34.8697724391747,-34.8697723813,-34.8697678051613,-34.8697632191449,-34.8697541219229,-34.8697450241575,-34.8697359275097,-34.8697313387399,-34.8697267565999,-34.8697221770875,-34.8697176030924,-34.8697175392482,-34.869721982133,-34.8697264261702,-34.8697353732258,-34.869744319735,-34.8697532990186,-34.8697622422799,-34.8697712182426,-34.8697801948561,-34.8697936410944,-34.8698026170546,-34.8698115936618,-34.8698205696244,-34.8698340163971,-34.8698474669898,-34.8698609153822,-34.8698698542619,-34.8698787887009,-34.8698832119385,-34.8698876341215,-34.8698920551865,-34.8698965188836,-34.869900943731,-34.8699053724335,-34.8699098109503,-34.8699187689622,-34.8699277372181,-34.8699367154319,-34.8699456957413,-34.8699546722582,-34.8699591326284,-34.8699635854172,-34.8699680315696,-34.8699769801891,-34.8699904329081,-34.8699994127407,-34.8700083897931,-34.8700218404109,-34.8700308163426,-34.870044263639,-34.8700486972529,-34.8700531345833,-34.8700485638268,-34.8700440023442,-34.8700349454268,-34.8700259050023,-34.8700123800464,-34.8700034106529,-34.8699989540931,-34.8699945095837,-34.8699945768195,-34.8699946446301,-34.8699947080761,-34.8699902771998,-34.8699813077974,-34.8699678107351,-34.8699542967501,-34.869940789907,-34.869927280865,-34.8699182857713,-34.8699093152477,-34.8699048691025,-34.8699004081591,-34.8698959477918,-34.8698914862731,-34.8698825130749,-34.8698735435938,-34.8698600394922,-34.8698465047592,-34.8698419509075,-34.8698373948561,-34.8698373374839,-34.8698372784886,-34.8698327159005,-34.8698326645188,-34.8698281100829,-34.8698280433978,-34.869832507583,-34.8698369516279,-34.8698459062318,-34.8698548663161,-34.8698638472584,-34.8698728144522,-34.8698817860156,-34.8698862387858,-34.8698861802786,-34.869877140325,-34.8698681036894,-34.8698545929539,-34.8698456017607,-34.8698366164509,-34.869827639949,-34.8698186689676,-34.8698096984532,-34.8698007486917,-34.8697917973414,-34.8697828230379,-34.8697783730026,-34.8697694101707,-34.8697604178188,-34.8697468939785,-34.8697378534879,-34.8697287982722,-34.8697197343227,-34.8697151760913,-34.869710616233,-34.8697105648412,-34.8697105139866,-34.8697149721757,-34.8697194297829,-34.8697193811277,-34.8697238365684,-34.8697237545898,-34.8697191897092,-34.8697146260481,-34.8697100661798,-34.8697010021394,-34.8696964483332,-34.869687382668,-34.869682816726,-34.8696737341618,-34.8696691474573,-34.869664595739,-34.8696600419212,-34.8696599926707,-34.8696554344113,-34.869650872831,-34.8696463079964,-34.8696372385252,-34.8696326742682,-34.8696281122098,-34.8696235511615,-34.8696189934735,-34.8696053837464,-34.8695962956653,-34.8695872163219,-34.8695781703521,-34.8695690926289,-34.8695554988173,-34.8695418994453,-34.8695328436098,-34.8695237872301,-34.8695192361353,-34.869510176429,-34.8695056230613,-34.8694965640006,-34.8694920111375,-34.8694829498742,-34.8694783959552,-34.8694693362466,-34.8694647845669,-34.86946023397,-34.8694556832646,-34.8694420795661,-34.8694329914438,-34.8694239120672,-34.869414843605,-34.8694057691411,-34.8693967269821,-34.8693832169049,-34.8693742480772,-34.8693697872752,-34.8693698430358,-34.8693699049393,-34.8693699678876,-34.8693745371292,-34.8693790970521,-34.8693836492767,-34.8693927166798,-34.869401764831,-34.8694108042349,-34.869419854079,-34.8694289246287,-34.8694379881283,-34.8694470615268,-34.8694516350918,-34.8694607210221,-34.8694653039048,-34.8694698873581,-34.8694744697287,-34.8694790509764,-34.8694791220964,-34.8694836979195,-34.8694882693001,-34.869492836309,-34.8694973972497,-34.8695019560936,-34.8695020206248,-34.869493053457,-34.8694840589534,-34.8694705225796,-34.8694614809155,-34.8694524272972,-34.8694433633126,-34.8694342910906,-34.869425217244,-34.8694206486077,-34.8694115790571,-34.8694070208547,-34.8694024658003,-34.8693979152195,-34.8693933651772,-34.869384311549,-34.869379748323,-34.8693706859518,-34.8693616486494,-34.8693481161713,-34.8693391358317,-34.8693346919184,-34.8693302370923,-34.8693302901536,-34.8693258543985,-34.8693214088149,-34.8693124487711,-34.8692989381107,-34.8692943869553,-34.8692853168958,-34.8692807641114,-34.8692762112556,-34.8692716584692,-34.8692625879318,-34.8692535495837,-34.869244514556,-34.8692309967791,-34.8692220000063,-34.8692130196693,-34.8692085632161,-34.8692041001546,-34.86919513791,-34.8691906873799,-34.869181732823,-34.869172778194,-34.8691638142506,-34.869154822488,-34.8691413336788,-34.86912783501,-34.8691143303447,-34.8690963221603,-34.8690828218643,-34.8690693128254,-34.8690557830228,-34.8690467430535,-34.8690377036609,-34.8690286598984,-34.8690196133887,-34.8690105663014,-34.8690015099307,-34.8689924715858,-34.8689834355111,-34.8689743840517,-34.8689653244285,-34.8689562647338,-34.8689472144263,-34.8689336763534,-34.8689246883903,-34.8689157283456,-34.868911267452,-34.8689068126209,-34.8689023577181,-34.8688979023075,-34.868893444726,-34.8688890024216,-34.8688800346784,-34.8688665333358,-34.8688574797115,-34.868852922493,-34.8688438524376,-34.8688392969138,-34.8688302564695,-34.8688212887297,-34.8688168322014,-34.868816881458,-34.8688214418916,-34.8688215026347,-34.8688260702153,-34.8688306360973,-34.868830694051,-34.8688307498415,-34.8688262993647,-34.8688173348621,-34.8688083616917,-34.86879936823,-34.8687858635603,-34.8687723348086,-34.8687632812667,-34.8687587262237,-34.8687586660702,-34.8687586004263,-34.8687585287847,-34.8687584779033,-34.8687584259044,-34.8687583718053,-34.8687583154344,-34.8687537511694,-34.8687536910028,-34.8687536297144,-34.8687535662203,-34.8687535054677,-34.8687534474605,-34.8687533977235,-34.8687578339478,-34.8687622932138,-34.8687622411984,-34.868766693921,-34.8687666337382,-34.8687665702289,-34.8687665045509,-34.8687664394106,-34.8687663803376,-34.8687618061167,-34.8687527700326,-34.8687392445622,-34.8687302533187,-34.8687212735325,-34.8687168149204,-34.868716876164,-34.8687169254389,-34.8687169757666,-34.8687170272097,-34.8687170808559,-34.8687171339236,-34.8687171881104,-34.8687172472435,-34.8687128049522,-34.8687083976954,-34.8687084606154,-34.8687040095069,-34.8686950626421,-34.868681554653,-34.8686769947576,-34.8686724424809,-34.8686678896966,-34.8686633210572,-34.8686542498728,-34.8686407276574,-34.8686317375241,-34.8686272826957,-34.8686183308167,-34.8686138825217,-34.8686094232488,-34.8686004631988,-34.8685869486735,-34.8685778989124,-34.8685733406437,-34.8685687774228,-34.8685687259908,-34.868564172628,-34.8685596127273,-34.868555060446,-34.8685415301332,-34.8685325421,-34.8685280823253,-34.8685191134697,-34.8685146570171,-34.8685057007631,-34.868496747761,-34.8684877915743,-34.8684788304066,-34.8684698582947,-34.8684608757421,-34.8684518839814,-34.8684383771486,-34.8684248505599,-34.8684113289177,-34.8684023447451,-34.8683933639224,-34.8683843759529,-34.8683799134233,-34.8683709506223,-34.868371004714,-34.8683710665669,-34.8683711310938,-34.8683756811882,-34.8683712350066,-34.8683712945792,-34.8683622984445,-34.8683532590577,-34.8683442169247,-34.8683351545746,-34.8683261124405,-34.868317058249,-34.8683080046339,-34.8682989608755,-34.868294407526,-34.8682853457475,-34.8682763150948,-34.8682627956217,-34.8682538125968,-34.8682448387817,-34.868244893519,-34.8682449552994,-34.8682450089178,-34.8682405529149,-34.8682270373381,-34.868213499848,-34.8681999640508,-34.8681864560569,-34.8681774659173,-34.8681730115392,-34.8681685517769,-34.8681640962731,-34.8681596457875,-34.8681551969265,-34.8681507496516,-34.8681463034944,-34.8681373543561,-34.8681329137133,-34.8681284746982,-34.8681240371976,-34.8681196031187,-34.868115166261,-34.8681107239152,-34.8681062728341,-34.8680973033635,-34.8680883405317,-34.8680793558628,-34.8680703695012,-34.8680613831355,-34.8680523983987,-34.8680434126095,-34.8680344229991,-34.8680254399535,-34.8680119347319,-34.8680028898346,-34.8679938318772,-34.8679892626454,-34.8679891960612,-34.8679891326168,-34.8679890779078,-34.8679890243128,-34.8679889641854,-34.8679888975212,-34.867993356825,-34.8679933081725,-34.8679932364496,-34.867988687592,-34.8679886339169,-34.8679840801125,-34.8679750488878,-34.8679615365234,-34.8679480363221,-34.8679390433269,-34.867930064191,-34.867921081046,-34.8679166305513,-34.8679121844225,-34.8679122412362,-34.8679077956811,-34.8679078639668,-34.8679034085203,-34.8678989563202,-34.8678945058148,-34.8678945621478,-34.8678901083216,-34.867885656116,-34.8678812072972,-34.8678767583043,-34.8678723160509,-34.8678678735838,-34.8678589272272,-34.8678499790669,-34.8678410314853,-34.8678320834269,-34.8678231336391,-34.8678096754201,-34.8677962166929,-34.8677872319424,-34.8677737682002,-34.8677647818236,-34.8677513132438,-34.867737842971,-34.8677243743182,-34.8677154179865,-34.8677064720768,-34.8676975359406,-34.8676931165576,-34.8676886594142,-34.8676887080294,-34.8676842535865,-34.8676843072105,-34.8676798565874,-34.8676799134177,-34.8676799735315,-34.8676755261869,-34.8676755862575,-34.8676756457492,-34.8676757075111,-34.8676757693078,-34.8676803350608,-34.8676803951228,-34.8676804552197,-34.8676850194507,-34.8676850739954,-34.8676851275248,-34.8676851810566,-34.8676897364881,-34.8676897850789,-34.8676898784692,-34.8676899734792,-34.8676900220609,-34.8676900716917,-34.8676901269032,-34.8676901820056,-34.8676902404614,-34.8676902988042,-34.8676903588432,-34.8676904205708,-34.8676904822224,-34.8676860365298,-34.8676860981815,-34.8676861598314,-34.867681714171,-34.8676817741942,-34.8676773269072,-34.8676773836139,-34.867672933007,-34.8676729865059,-34.8676730382723,-34.8676685821896,-34.8676686324388,-34.867668680997,-34.8676642237566,-34.8676642750859,-34.8676598195366,-34.8676553672279,-34.8676554239862,-34.8676509766096,-34.8676465275746,-34.8676420818843,-34.8676331276253,-34.8676286786198,-34.8676242296127,-34.8676197772922,-34.8676153201068,-34.8676108623851,-34.8676064019203,-34.8675572247332,-34.8675702708577,-34.8675791094547,-34.8675582268872,-34.8675455336608,-34.8675146932108,-34.8674967573329,-34.8674724545079,-34.8674356571104,-34.8674131759321,-34.867389158428,-34.86734599084,-34.8673013527381,-34.8672215833004,-34.8671945861499,-34.8671911714426,-34.8672067243009,-34.8672382651981,-34.8672489557367,-34.8672289537492,-34.8671762315305,-34.8671365062584,-34.8671054802356,-34.8670523513336,-34.8670059992016,-34.8669513193439,-34.8669383439122,-34.8669044783725,-34.8668601303946,-34.8667448176774,-34.8666920704466,-34.8666650301161,-34.8666490463175,-34.8666293883002,-34.8666109654555,-34.8665520846671,-34.8665509106992,-34.8665329799075,-34.8665147954074,-34.8664957907036,-34.8664806049605,-34.8664234972127,-34.8663695423528,-34.8663513681375,-34.8663328151265,-34.8663171972322,-34.8660904903129,-34.8659885077609,-34.865783353634,-34.8657053985433,-34.8655946663552,-34.8654254537032,-34.8653557527836,-34.8652277401529,-34.8651609442952,-34.8651108251865,-34.8650217458631,-34.8649272853594,-34.8648504391163,-34.8647658302918,-34.8645897694858,-34.8644908384977,-34.8644319350275,-34.8643651104144,-34.8642479149244,-34.8640916424806,-34.8639185782182,-34.8637679421401,-34.8636789181266,-34.8635897839309,-34.8634562980625,-34.863396045593,-34.8633464783443,-34.8632438038694,-34.863143733834,-34.8631077518658,-34.8629725003516,-34.8628642028661,-34.8627423516492,-34.8626746838036,-34.8625819407366,-34.8625258268812,-34.8624762581272,-34.8624537597499,-34.8623996498019,-34.8623365093489,-34.8622553105898,-34.8621922032812,-34.8621381652117,-34.8620570902262,-34.8619895017334,-34.8619217822034,-34.8617998873589,-34.8617457329526,-34.8616735690228,-34.8616194558044,-34.861520261681,-34.8614661670579,-34.8614154856049,-34.861394099808,-34.8613220375903,-34.8612769408592,-34.8612408691592,-34.8612183392735,-34.8611822970762,-34.8610878484083,-34.8610114560246,-34.860993463334,-34.8609529723753,-34.860858420396,-34.8608224514516,-34.8608044910204,-34.8607884556089,-34.8606651324773,-34.8606201992797,-34.8605059967079,-34.8604003923025,-34.8602672236767,-34.8601204346042,-34.859983075519,-34.8598593814306,-34.8597721699795,-34.8596020541399,-34.8594869527481,-34.8593720819584,-34.8593075000885,-34.8592248760829,-34.8591469292804,-34.8590957114012,-34.8589902132766,-34.858958118243,-34.8588912474363,-34.8588158703468,-34.8587573146712,-34.8586824695774,-34.858613532326,-34.8585723947678,-34.8584944260328,-34.8583704989131,-34.8582669737108,-34.8581750527638,-34.8580773023254,-34.8579991872131,-34.8579676228625,-34.8579089472573,-34.857872755354,-34.8578366249405,-34.8578185589339,-34.8577374339535,-34.8576923774709,-34.8576473126884,-34.8575843267237,-34.8575568559575,-34.8575351213253,-34.8574881052125,-34.8574135717993,-34.8573955945403,-34.8573915803854,-34.8573507962631,-34.8573014156983,-34.8572609867017,-34.8572205909013,-34.8571755908996,-34.8571193616908,-34.8570720192815,-34.8569683791073,-34.8569368425787,-34.8568828381366,-34.8568245181338,-34.8567701418004,-34.8567113016368,-34.8566666984265,-34.8566487292001,-34.8565813145364,-34.8565588194447,-34.8564867707183,-34.8564642255259,-34.8564235127555,-34.8563601754426,-34.8563420676271,-34.8563239650756,-34.8562832088006,-34.8562560731327,-34.8561660366547,-34.8561119942046,-34.856048716585,-34.8559899409204,-34.855922116248,-34.855908545614,-34.8558318644116,-34.8557867747425,-34.8557461934512,-34.8557056192031,-34.855633682603,-34.8555618188957,-34.8554719020898,-34.8554404411143,-34.8553999653204,-34.8553595010106,-34.855337024402,-34.8553100539704,-34.8551931802169,-34.8550943306339,-34.8550628479495,-34.8550269442525,-34.8550089836123,-34.8549910192764,-34.8549730517514,-34.8549326274401,-34.8548743573471,-34.8548518741609,-34.8547901754619,-34.8546495129278,-34.8546270530388,-34.8545955920733,-34.854538317293,-34.854514663726,-34.8544831792573,-34.8544606971317,-34.8544382292009,-34.8544022758763,-34.8543663002794,-34.8543169263901,-34.854298978764,-34.8542810215409,-34.8542451680514,-34.8542047605914,-34.8541058329544,-34.8540743598351,-34.8539844003482,-34.853948448063,-34.8539214974603,-34.8538900478481,-34.8538226300376,-34.8538046741481,-34.8537823494009,-34.8537282178118,-34.8536607229046,-34.853568018815,-34.8535438897868,-34.8535123200929,-34.8534944538822,-34.8534780087724,-34.8534185217012,-34.8534097802297,-34.8534012696373,-34.8533609854766,-34.8533208010401,-34.8532984427608,-34.8532942972875,-34.8532898819728,-34.8532854731943,-34.8532361908876,-34.8532228009251,-34.8531959200562,-34.8531421290372,-34.8531241795739,-34.8530793033295,-34.8530658565033,-34.8530434315498,-34.8530254853562,-34.8530120286506,-34.8529895738715,-34.8529671490696,-34.8529402480991,-34.8529178502215,-34.8528864770328,-34.8528371684286,-34.8528147434862,-34.85279233841,-34.8527609327071,-34.8527384845085,-34.8527160124937,-34.8526710526169,-34.8526216070947,-34.8525991587594,-34.8525677093427,-34.8525497332668,-34.8525137751381,-34.8524733173077,-34.8524239355792,-34.8523925022037,-34.8523655185381,-34.8522716399274,-34.8521853925408,-34.8521810500353,-34.8521766413818,-34.8521722788769,-34.8521679035133,-34.8521680368819,-34.852163714424,-34.8521548167981,-34.8521415865394,-34.8521283359728,-34.8521239874782,-34.8521106969756,-34.8520974102373,-34.8520885791933,-34.852079687582,-34.8520708099516,-34.8520217846554,-34.8519905919026,-34.8518931016941,-34.8517604098621,-34.8510196913381,-34.8508197511918,-34.8506818426511,-34.8505285268009,-34.8495288221531,-34.8494970161025,-34.848420134042,-34.8474746359723,-34.8457199576485,-34.8454654902474,-34.8434206387689,-34.8433524569391,-34.83432629204,-34.8330053504779,-34.8298377704057]}]],[[{&#34;lng&#34;:[-56.2557900853087,-56.2559504770825,-56.2560651880033,-56.2564297460446,-56.2567545337139,-56.2570296674057,-56.2571414984131,-56.2574045340673,-56.2575188071968,-56.2578686500683,-56.2581503086332,-56.2585130624811,-56.2588281946112,-56.259238682322,-56.2593409627728,-56.2598468389914,-56.2604617925674,-56.2615279581489,-56.2617481364544,-56.2620931308182,-56.2622408961686,-56.262519205574,-56.2626110795582,-56.2626868512282,-56.2629211287977,-56.263832315014,-56.2641892284863,-56.2645993581202,-56.265301893393,-56.2663385266008,-56.2665042003314,-56.2670820572822,-56.2670828787707,-56.2680638780304,-56.2682362602198,-56.2683961560614,-56.268534953971,-56.2688079651153,-56.2691327717003,-56.2693094631937,-56.2695373983192,-56.2696099357731,-56.2696997620726,-56.2698324629532,-56.2699878784084,-56.2703186323076,-56.2706453104601,-56.2707914729084,-56.2710802173262,-56.2714568515104,-56.2716481669088,-56.2718626740872,-56.2723076745701,-56.2726187203774,-56.2727474639901,-56.2742034760941,-56.2760540473589,-56.2762312436901,-56.2767037582764,-56.2777602787124,-56.2788351599156,-56.280469961421,-56.2807216636504,-56.2807321208345,-56.2808868529889,-56.2814774955979,-56.2817075530625,-56.2820934944316,-56.2821187745512,-56.2823666564034,-56.2825936703958,-56.2830934688189,-56.283855867529,-56.2842130198895,-56.285728247998,-56.2857586903646,-56.2857776134571,-56.2861714165514,-56.286579186849,-56.2868487125169,-56.286966213115,-56.2869701951686,-56.2873522522052,-56.2877276191249,-56.2884739707042,-56.2885634768648,-56.2896050736959,-56.2897876790965,-56.2903334817669,-56.2903596921627,-56.2903980872565,-56.2903298521415,-56.2902511314466,-56.2902139555942,-56.2902089053901,-56.2900978009922,-56.2899237115777,-56.2897606970584,-56.2904158236594,-56.2903312005925,-56.2902345413721,-56.2901979867119,-56.2901166287583,-56.2899642726243,-56.2897790897681,-56.2896299979563,-56.2891890061329,-56.2880816483735,-56.2861374657087,-56.2854424939607,-56.2848030241698,-56.28411107398,-56.2821665177893,-56.2799772087066,-56.2784375180326,-56.2769256026869,-56.2759452166281,-56.2749366532648,-56.2736654885798,-56.2725019535262,-56.272395018377,-56.2721959023544,-56.2718424560537,-56.271598320833,-56.2715698127974,-56.2715470010328,-56.2715339247018,-56.2707437867946,-56.2705026733721,-56.2703027726857,-56.2698350249174,-56.2682054510433,-56.2682051775689,-56.2664713867866,-56.2664037460524,-56.2657879275855,-56.2652074715144,-56.2652302699396,-56.2652691153674,-56.2652906043621,-56.2653366952145,-56.265356757886,-56.265458967945,-56.2655667301874,-56.2656075045491,-56.2656693897982,-56.2657314884908,-56.2657322021922,-56.2657343833171,-56.2657495111189,-56.2657516122024,-56.265753146327,-56.2656507468503,-56.2656348319759,-56.2657608636403,-56.2656978044524,-56.2658080479745,-56.2658585406815,-56.265912315081,-56.2658431327353,-56.2658465745103,-56.2658129038121,-56.2658017047031,-56.265844933664,-56.2659800833642,-56.2660780739004,-56.2661270658335,-56.2661297472163,-56.2660987779114,-56.2660366325281,-56.2659640484279,-56.2657066690241,-56.2656843708577,-56.2654787648214,-56.2648616265474,-56.2641567763715,-56.2634824552735,-56.2631118641502,-56.2620166526549,-56.2619671137731,-56.262189214983,-56.2619986300268,-56.2617348073,-56.2612204887195,-56.260852705711,-56.2609129100933,-56.2613262832804,-56.2608404060344,-56.2606644953128,-56.2604143729849,-56.2599574306614,-56.2595149357888,-56.2591459855117,-56.25905891394,-56.2591729260723,-56.2590319200186,-56.2589306477899,-56.2587398026995,-56.2587558909967,-56.2586558927584,-56.2586130573337,-56.2584824099555,-56.2583400765505,-56.2581489112951,-56.2582446406651,-56.2583785497255,-56.2583788899009,-56.258317705013,-56.2581540139266,-56.2580518412335,-56.2580629136105,-56.2580123742127,-56.2578692604053,-56.2579520831191,-56.2579733807695,-56.2579432919185,-56.2579237751866,-56.2578625436079,-56.257770642879,-56.2577613047298,-56.2577002865945,-56.257649707176,-56.2575578464678,-56.2575173189,-56.2574280390006,-56.2574150594956,-56.2572183513815,-56.257029247189,-56.2565592247864,-56.2562171550389,-56.2561251742688,-56.2560682248985,-56.2561023291536,-56.2561361465941,-56.2561905346434,-56.2562493316332,-56.2562747914302,-56.2562642459916,-56.2561857254966,-56.2560345675405,-56.2558845168222,-56.2558384864165,-56.2557783887559,-56.2558403140257,-56.2557230202009,-56.2555811403632,-56.2555303404829,-56.2553996467623,-56.2552356288407,-56.2551540867874,-56.255069409784,-56.2550063505961,-56.2549668702351,-56.2548920593249,-56.2547276401913,-56.254601361733,-56.2545602872164,-56.2545297181179,-56.2544865091672,-56.2544573074405,-56.2544442540418,-56.254426371486,-56.2544095161266,-56.2543930276231,-56.2543724836947,-56.2543109319509,-56.2542927759207,-56.254263887689,-56.2542067382155,-56.2541740747034,-56.254148268061,-56.2541197200047,-56.2540789256326,-56.2540255447694,-56.2540033733351,-56.2539835831287,-56.2539631192416,-56.2539419616635,-56.2539255598713,-56.2538992463007,-56.253885939438,-56.2538606797443,-56.2538323851521,-56.2538102137177,-56.2537876887677,-56.253766497839,-56.2537552453691,-56.2537210944233,-56.2536876104881,-56.2536725960781,-56.25365894904,-56.253634803254,-56.2536205158857,-56.2536099437667,-56.2535891663846,-56.2535728112832,-56.2535414217615,-56.2535045560822,-56.2534874739392,-56.2534451254323,-56.2534164439739,-56.2533826332035,-56.2533362092615,-56.2533146781573,-56.2532829017694,-56.253246336245,-56.253149613029,-56.2529594482895,-56.2527299832819,-56.2526959190474,-56.2526730472518,-56.2526475541044,-56.2526305386624,-56.2526182990168,-56.2525856088243,-56.2525727155082,-56.2525553932413,-56.2525428200904,-56.2525268251747,-56.252508075505,-56.2524855905756,-56.25246959566,-56.2524460635239,-56.252427994205,-56.2524075636685,-56.2523860792551,-56.2523503074733,-56.2523332720211,-56.2523053376146,-56.2522927644636,-56.2522774699092,-56.2522471942952,-56.2522257365623,-56.2522001967241,-56.2521692074087,-56.2521556070614,-56.2521293868723,-56.2521174940722,-56.2520987644128,-56.252083136353,-56.252066114241,-56.2520330571926,-56.2520085445508,-56.2519867399723,-56.2519652822393,-56.2519513350464,-56.2519357069866,-56.2519169773272,-56.2518955195943,-56.2518784774719,-56.2518607549986,-56.2518423455044,-56.2518198338945,-56.2517884443728,-56.251757048181,-56.2517225837402,-56.2516522341257,-56.2516286352885,-56.2516060836581,-56.2515828249963,-56.2515534098262,-56.2515157570744,-56.2514829067993,-56.2514555526921,-56.2514377368373,-56.2514161390321,-56.2514000173844,-56.2513852297581,-56.2513783128575,-56.251359449796,-56.2513378786712,-56.2513084034701,-56.2512919082965,-56.2512699503055,-56.2512541421528,-56.2512366531333,-56.2512078582831,-56.2511848997761,-56.2511617478361,-56.2511421177123,-56.2511202064121,-56.2510863289406,-56.2510214021229,-56.2509657801038,-56.2509564753051,-56.2509529201383,-56.2509267733204,-56.2508948101695,-56.2508665155772,-56.2508565971287,-56.2508653883292,-56.2508245672768,-56.2507619616561,-56.250750442382,-56.2507006100155,-56.2506758705901,-56.2506455749658,-56.2506297601431,-56.2504176440827,-56.2502226635263,-56.2500687841667,-56.2498065956161,-56.2496801103844,-56.249562089518,-56.2494162076163,-56.2493788683595,-56.2493368200074,-56.2492547510157,-56.249180632791,-56.249159421852,-56.2490986505106,-56.2490644128534,-56.2489928492796,-56.2489692571125,-56.2489401154167,-56.2488952389394,-56.2488400438072,-56.2488457534185,-56.2488325132569,-56.2488406641271,-56.248819506549,-56.2488249960467,-56.248809187894,-56.2487995896106,-56.2487647116232,-56.2487649117264,-56.2486886724078,-56.2485834047852,-56.2485438777335,-56.2484712269323,-56.2483888978064,-56.2483294004554,-56.2482633130391,-56.248240474594,-56.2482415017905,-56.2482320969401,-56.2482988046764,-56.248378739234,-56.2484418851333,-56.248498300895,-56.2485953642864,-56.2487031598793,-56.2488489017088,-56.2489543294139,-56.248992689197,-56.2490457965859,-56.2490541475593,-56.249102239028,-56.2491303601975,-56.2491568872115,-56.2491818467504,-56.2492399500491,-56.2492747213149,-56.2492930174173,-56.2493277286521,-56.2493675425185,-56.249399232195,-56.2494391194325,-56.2494951816786,-56.2495818997346,-56.2496379353003,-56.2496240214579,-56.2496140363083,-56.2495468950151,-56.249457982494,-56.2493623398353,-56.2493516943452,-56.2493273217756,-56.2493009748545,-56.2492020505033,-56.2491317475797,-56.2490932210439,-56.2490835093686,-56.2490593969332,-56.24898912069,-56.2489104267722,-56.2488381628372,-56.2487732493596,-56.2487277325521,-56.2486914271618,-56.2486117260579,-56.248602661383,-56.2485504277782,-56.2484547050782,-56.248350084456,-56.2482723243531,-56.2481934436723,-56.2481332059395,-56.2481007958915,-56.2480123369376,-56.2479347569276,-56.2478230726625,-56.2477920900173,-56.2473297915982,-56.2471857506459,-56.2469251896012,-56.2467646668155,-56.2465986345218,-56.2465048594929,-56.2464387120457,-56.2464226037382,-56.2464257053378,-56.2464358505699,-56.2465468077934,-56.246674913861,-56.2467919342114,-56.2468479230863,-56.2469926510595,-56.2471155870905,-56.2472933461357,-56.2473338937137,-56.2473678045358,-56.2474907679511,-56.2475802674416,-56.2476918049644,-56.2477758282974,-56.247824920282,-56.2479331961227,-56.2479003591878,-56.2479062155414,-56.2478346719779,-56.2476686196738,-56.2476040863924,-56.2475235181746,-56.2474410889971,-56.2473589066135,-56.2472910983097,-56.2472188610551,-56.2471353112997,-56.2469741348436,-56.2468352565538,-56.2465911706725,-56.2465225486157,-56.2464195221489,-56.2462643154382,-56.2462201126417,-56.2460559813283,-56.2459264278476,-56.2458265430011,-56.2456864307416,-56.2454878349874,-56.2454269902748,-56.2454131964944,-56.245395340619,-56.2453550865256,-56.2452901196872,-56.245176801246,-56.2449078291969,-56.2447713254651,-56.2447077460088,-56.2446505431745,-56.2445235843653,-56.2443742340082,-56.2442947796982,-56.2441138797368,-56.2438660986164,-56.2437685149567,-56.2436585515791,-56.2435659371488,-56.2434034800322,-56.2432728459942,-56.2431963298662,-56.2431720540132,-56.2431672148508,-56.2432214228073,-56.2432946372325,-56.2434089695299,-56.2435494886659,-56.2436043102721,-56.2436364801963,-56.2436216191988,-56.2434749435544,-56.2434067083638,-56.2434001849995,-56.243394835574,-56.2433724773766,-56.2433624121858,-56.2433415747727,-56.2433307158392,-56.2433859043012,-56.2435990208776,-56.2436603058171,-56.2438101831127,-56.243874329528,-56.243890851382,-56.2439353876839,-56.2440008080895,-56.2440886000328,-56.2441299546937,-56.2441626248759,-56.2441899950329,-56.2441912663137,-56.2442914179645,-56.2443192467367,-56.2443823315176,-56.2444775339493,-56.2445249050464,-56.2446372629923,-56.2446940596159,-56.2448765205337,-56.2449561158339,-56.2449812819468,-56.2450153288161,-56.2450348215905,-56.2450390902249,-56.2450895429113,-56.2450936516969,-56.2451105070564,-56.2451242608162,-56.2451441710844,-56.2451733528008,-56.245206336478,-56.245207837252,-56.2452334304511,-56.2452554151225,-56.2452617183732,-56.2452625588067,-56.245260637816,-56.2452577563299,-56.2452540277403,-56.2453175204851,-56.2453610962916,-56.2453792990126,-56.2454184125177,-56.2455137083309,-56.2455548095278,-56.2456003530158,-56.2456342504976,-56.2456606107589,-56.2456702223825,-56.2456825687499,-56.2457164528915,-56.2457540923031,-56.2457990154711,-56.24585525781,-56.2458922368811,-56.2462985731057,-56.2463499729473,-56.2463996385611,-56.246424971626,-56.2464585089221,-56.2465060801224,-56.2465403044394,-56.2466180178516,-56.246708077631,-56.2467282880541,-56.2467787007199,-56.2468171338741,-56.2468318481293,-56.2468996097424,-56.2469454267047,-56.2470111339249,-56.2470734727413,-56.2471042752937,-56.2471295883482,-56.2471491784514,-56.2471687885648,-56.247211597309,-56.2472585081688,-56.2473050988635,-56.2473294114021,-56.2473482277729,-56.2474122741365,-56.2474561967886,-56.2474799290279,-56.2474927289625,-56.2475034344836,-56.2475195828117,-56.2475535536647,-56.2475929673246,-56.2476310136127,-56.2476660716931,-56.2476973278127,-56.2477257824875,-56.2477659031787,-56.2477792767425,-56.2478132409254,-56.247964625665,-56.2480621693041,-56.2481572383336,-56.2482548686841,-56.2483523723025,-56.2484218347928,-56.2484481416933,-56.2484498492406,-56.2484510898804,-56.2484382565953,-56.2484151246655,-56.2483595893579,-56.2483449351337,-56.2483288935273,-56.2482866384019,-56.2481070391113,-56.2479665533258,-56.2478405083212,-56.2476216287727,-56.2474978155725,-56.2473223736235,-56.247700448993,-56.2476757099971,-56.2478371399174,-56.2497965370953,-56.251273045235,-56.2517083497327,-56.2522040349325,-56.2527655057167,-56.2527707677607,-56.2528673395895,-56.2530424607926,-56.2529342819773,-56.2530457661392,-56.2534787761202,-56.254386831094,-56.2549558445488,-56.2550613307946,-56.2552794514412,-56.2552938855519,-56.2556138368053,-56.2557900853087],&#34;lat&#34;:[-34.8727814956005,-34.8728038243139,-34.8728173344883,-34.8728685221583,-34.8729161715784,-34.8729512993194,-34.872964441097,-34.8729997701504,-34.8730136143138,-34.8730559970021,-34.8730982508585,-34.8731337106598,-34.873163136427,-34.8731922356351,-34.8732040926163,-34.8732627355972,-34.8733934207394,-34.8735350613146,-34.8735490286866,-34.8736034818578,-34.873603878745,-34.8736554039874,-34.8736821587002,-34.8737365933595,-34.8740656326161,-34.8736756959071,-34.8735113440245,-34.8733450030605,-34.8730384934344,-34.8726120581153,-34.8725383221699,-34.8723213823549,-34.8723173623819,-34.8724666693834,-34.8724883396863,-34.8725084400922,-34.8725258220243,-34.8725635764436,-34.8726065746929,-34.8726240102643,-34.8726567282798,-34.8726657136157,-34.8726748027539,-34.8726973888449,-34.8727183226588,-34.8727628731349,-34.8728101598926,-34.8728313166485,-34.8728710308969,-34.8729216300891,-34.8729520352277,-34.8729754393754,-34.8730356138241,-34.8730684421257,-34.8730780599995,-34.8732728823902,-34.8735373390101,-34.873561137114,-34.8736256804191,-34.873816654772,-34.873924875466,-34.8741459414408,-34.8741840384953,-34.8741844982687,-34.874195228657,-34.8742827687993,-34.8743178614137,-34.8743672331403,-34.8743707260345,-34.8744049749888,-34.8744506897784,-34.874497805871,-34.8745911248504,-34.8746348392307,-34.87486065569,-34.874865052124,-34.8748244211696,-34.8729165630717,-34.8709410484149,-34.8696375670095,-34.8691143363328,-34.8690917872036,-34.8671704454852,-34.8652806758827,-34.8615191743134,-34.861068153377,-34.8558810300455,-34.8548781583242,-34.8524318381102,-34.8523537900238,-34.8521314418941,-34.8520047190058,-34.8519166286922,-34.8519047875164,-34.8519017503106,-34.8518349317304,-34.85171360615,-34.8515773063372,-34.8513405118312,-34.851256188707,-34.8512071137938,-34.8512059372733,-34.8512033187086,-34.8511744976323,-34.851135277119,-34.8510772594691,-34.850641679511,-34.8497138109855,-34.8480834868523,-34.8474790351211,-34.8469457967831,-34.8463163454923,-34.8446738484145,-34.8428055448826,-34.8414613082354,-34.8401412598564,-34.8392852555834,-34.8384078446753,-34.8373343956721,-34.8362924625861,-34.8362252345816,-34.8363025511224,-34.8364329039567,-34.8365229414499,-34.836533456873,-34.8365418678775,-34.8365433119025,-34.8368352591869,-34.8369111913097,-34.8369652095389,-34.8370669394058,-34.8374526242445,-34.8374521806824,-34.8378450882057,-34.8378629476903,-34.8379894527353,-34.8381331211843,-34.8382057436168,-34.8382930923079,-34.8383414128551,-34.838431089051,-34.8384613601984,-34.8386155773425,-34.8387774541598,-34.8389350554389,-34.8390790663756,-34.8391960300301,-34.839263528174,-34.8393627793603,-34.8394483568282,-34.8395633961569,-34.8396469825979,-34.8400838712459,-34.8401983302753,-34.8403819383,-34.840662416283,-34.8408134741875,-34.8410045927522,-34.8410940155365,-34.8412712202588,-34.8414697960027,-34.8416120293561,-34.8418109219301,-34.8419064211815,-34.8420670473539,-34.8421246037038,-34.8421521212287,-34.8426290071709,-34.8426784493362,-34.8427365793153,-34.8427883093271,-34.8430924461783,-34.8431454168299,-34.8434086025616,-34.8434188144948,-34.8435181690678,-34.8438435602137,-34.844175984987,-34.8445755076977,-34.8447959147006,-34.844977505018,-34.845196978206,-34.8455139583474,-34.8458682677405,-34.8460397228309,-34.8462826514487,-34.8463784908756,-34.8465260336339,-34.8467333005267,-34.8468435673941,-34.846881597007,-34.8468587952475,-34.8467992678811,-34.8470791722349,-34.8472063745031,-34.8475776893329,-34.8479670501363,-34.8481378949119,-34.8484052894808,-34.8490499352745,-34.8493296895509,-34.8497434629445,-34.8501141407792,-34.8504192514659,-34.8505910100462,-34.8506752034669,-34.8507429183892,-34.8508277721505,-34.8509468368885,-34.8510487594526,-34.8512095523776,-34.8513705520759,-34.8514980078081,-34.8516331641784,-34.8517854560525,-34.8519294569842,-34.8521326751223,-34.8522090645183,-34.8523109537318,-34.8524972097888,-34.8526159243463,-34.8527684596793,-34.8528788132582,-34.8529889900792,-34.8530631958937,-34.8530739839127,-34.8530285971722,-34.8530795934723,-34.853146644719,-34.8531478053176,-34.8532073993851,-34.8532759880914,-34.8533949327675,-34.8534272060784,-34.8534396191468,-34.8534750007273,-34.8535790744007,-34.8538585918884,-34.8539119994321,-34.8538918690503,-34.8538846453248,-34.8540548397651,-34.8542250792286,-34.8544219574304,-34.8546417574536,-34.8547336131593,-34.8547483950072,-34.8547872524891,-34.8548219720615,-34.8548392326299,-34.8548792015763,-34.8548802004247,-34.8549199676004,-34.8548851069585,-34.8548084901085,-34.8547920449607,-34.8547786613918,-34.8547472168417,-34.8547158139798,-34.8546843627596,-34.8546708858091,-34.8546484125525,-34.8546259342932,-34.8546079616909,-34.8545990170779,-34.8545902108697,-34.8545812579191,-34.8545714445248,-34.8545425479554,-34.8545247571135,-34.8545203698509,-34.854510396374,-34.8544948700333,-34.8545100461934,-34.8545191358812,-34.8545237082393,-34.8545327912569,-34.8545373702851,-34.8545374253135,-34.8545375136924,-34.8545420643727,-34.854546656741,-34.8545602737637,-34.854569361784,-34.8545739441472,-34.8545740158509,-34.854578559861,-34.8545831822449,-34.8545832956367,-34.854587852987,-34.8545924053348,-34.8546150203312,-34.8546285906631,-34.8546331330057,-34.854646723348,-34.8546557913579,-34.8546649110612,-34.8546740491072,-34.8546741074707,-34.854678756535,-34.8546833589085,-34.8546879796249,-34.8546971493539,-34.8546972227251,-34.8546973294468,-34.8546974511763,-34.8546932706869,-34.854694743113,-34.8548298878106,-34.8548525361576,-34.8548571201883,-34.8548842475119,-34.8548978245139,-34.8549113865082,-34.8549340315202,-34.8549521025065,-34.8549746958251,-34.8549882578193,-34.8550018331538,-34.8550109095014,-34.8550245065138,-34.8550380801807,-34.8550471732035,-34.8550562478836,-34.8550698365583,-34.855078922911,-34.8551015779281,-34.8551106476056,-34.8551287702852,-34.8551423322795,-34.8551604116035,-34.8551875556023,-34.8552011476121,-34.8552192619541,-34.8552419002959,-34.8552554656253,-34.8552735816348,-34.8552871419616,-34.8553007256337,-34.8553188066252,-34.8553323836272,-34.8553505229821,-34.8553686323215,-34.8553822259988,-34.8553958196761,-34.8554093866729,-34.8554274659969,-34.855441049669,-34.8554546433463,-34.8554637146913,-34.8554727877038,-34.8554818623839,-34.8554909520717,-34.8555000717749,-34.8555091898106,-34.855518319519,-34.8555275692894,-34.8555231403386,-34.8555232153773,-34.8555187864265,-34.8555143791536,-34.855500983912,-34.8554920793197,-34.8554876637091,-34.8554787090909,-34.8554652604885,-34.8554517935433,-34.8554338159384,-34.8554158116531,-34.8554023530455,-34.8553934117676,-34.855375482521,-34.8553575099188,-34.8553395556593,-34.8553215813895,-34.8553081177793,-34.8552901868652,-34.8552767432653,-34.855266866505,-34.855263364699,-34.8552544250886,-34.8552455238313,-34.8552267858344,-34.8551918428133,-34.8551811422948,-34.8551303044097,-34.8551089283856,-34.8550804153473,-34.8550618107525,-34.8550343649313,-34.8549803470729,-34.8549160906009,-34.8548815444512,-34.854809238828,-34.8547870473833,-34.8547150919407,-34.8546269931726,-34.8546001543311,-34.8542402036954,-34.8541178789427,-34.8540811299903,-34.8540820037743,-34.8541158078746,-34.8541462969319,-34.8541686617994,-34.8542095895735,-34.8542170617605,-34.8542610961368,-34.8543029143702,-34.8543073616638,-34.8543644511063,-34.8544192660424,-34.854439196321,-34.8545005396239,-34.8545115769829,-34.8545620496796,-34.8546738223236,-34.8547547607323,-34.8547613674729,-34.8548007261044,-34.8548161123729,-34.8548532898796,-34.8548774106526,-34.8549361159284,-34.8550088401008,-34.8550504115403,-34.8552002704931,-34.8553647686623,-34.8554441679439,-34.8555400807419,-34.8556416047671,-34.8556882971809,-34.8557432171712,-34.8558226081152,-34.8560332017237,-34.8561453695715,-34.856216257797,-34.8562788984357,-34.8563005696121,-34.8563031175928,-34.8562507422482,-34.8561273953017,-34.8560776796621,-34.8560326097517,-34.8560399568741,-34.8560657101558,-34.8560806945503,-34.8560969129145,-34.8560927240875,-34.8560994592277,-34.8561253075583,-34.8561578676837,-34.8561577526244,-34.8561609909612,-34.8561630353488,-34.856179278726,-34.8562269399728,-34.8562581960923,-34.8563608156825,-34.856460510431,-34.856626365967,-34.8567620359354,-34.8568593978141,-34.8570276996117,-34.8571341511781,-34.8573261385242,-34.8573438660001,-34.8573857025763,-34.857432888578,-34.8575472358831,-34.8576434404983,-34.8577000213452,-34.8577249025104,-34.8577866960456,-34.8578866659359,-34.8579614928594,-34.8580163961744,-34.8580924970883,-34.8581208750569,-34.8581661600782,-34.8582078232316,-34.8582181485566,-34.8582776525777,-34.8583099609066,-34.8583280785837,-34.8583613757559,-34.8583749160723,-34.8583900638844,-34.858390819274,-34.8584130840899,-34.8584245933588,-34.8584607186562,-34.8584663298834,-34.8584465446797,-34.8584881778176,-34.8585256237962,-34.8585993218041,-34.858682182871,-34.8587922446327,-34.8588793478874,-34.85898915285,-34.8591095999676,-34.8592798160858,-34.8594323164007,-34.859537070425,-34.859641861135,-34.8597468536156,-34.8598469802535,-34.860056468805,-34.8603593761758,-34.860426612518,-34.8605545434953,-34.8607416266455,-34.8608922359853,-34.8610107637798,-34.8611751102041,-34.861304768739,-34.8615907262146,-34.8616822934381,-34.8617462947786,-34.8618654278852,-34.8619437182616,-34.8619392242773,-34.8619650075744,-34.8619307532419,-34.861917373008,-34.8618900939395,-34.8618674689379,-34.8617991520384,-34.8617402366542,-34.8617041130244,-34.8617094924653,-34.861738127233,-34.8617786531333,-34.861806604215,-34.8618433331571,-34.8618847661918,-34.8619174697245,-34.8619132275367,-34.8619623995627,-34.8619986782725,-34.8620045796494,-34.8620137493784,-34.8620141012265,-34.8620262091376,-34.8620255588022,-34.8620533014431,-34.8620570583806,-34.8620810774346,-34.8620734301573,-34.862071000571,-34.8620976059587,-34.8620928585104,-34.8620878826108,-34.8621151833572,-34.8621364293143,-34.8621739303212,-34.8622378065971,-34.8623340145474,-34.8624240576516,-34.8626802280985,-34.8628978603371,-34.8632066362473,-34.8632943581545,-34.8633543907815,-34.8634354759325,-34.8635620945663,-34.863747048285,-34.8638555592469,-34.8640920161938,-34.8642263287956,-34.8643738632162,-34.8647001581615,-34.8648953204784,-34.8650555614521,-34.8653336615421,-34.8654789464692,-34.8657511468499,-34.8659941254936,-34.8662120979075,-34.8663809649966,-34.8663946403827,-34.8665482829534,-34.8665968496672,-34.8666429667843,-34.8667359980962,-34.866807149791,-34.8668497851124,-34.8669111484257,-34.8669822150766,-34.8670618858847,-34.8670655864067,-34.8673521025037,-34.8674711693883,-34.8676735366088,-34.8679096783932,-34.8679792959634,-34.8680485950361,-34.8681239684494,-34.868223031623,-34.8682535307598,-34.8683038101889,-34.8683803896724,-34.8684200584582,-34.8684528960444,-34.8684943774374,-34.8684977858619,-34.868520264955,-34.8685382475624,-34.8685562093257,-34.8685831548889,-34.868619101761,-34.8686461382044,-34.8687091515353,-34.868731613953,-34.8687631410457,-34.8687946873149,-34.868821735431,-34.8688623071882,-34.8689389375418,-34.8689928111591,-34.8690287230131,-34.8690466906128,-34.86907811015,-34.8691363868715,-34.8691542785987,-34.8691721561519,-34.8691855655675,-34.8691944926715,-34.8692034748038,-34.8692124477647,-34.8692213498557,-34.8692302394403,-34.8692616398009,-34.8693020164575,-34.8693154150342,-34.8694492815726,-34.8694761537646,-34.8694985244684,-34.8695074540737,-34.8695163569985,-34.869529720557,-34.8695386218143,-34.8695654064612,-34.869601164069,-34.8696101111832,-34.8696459996918,-34.8696774217303,-34.8696818798628,-34.8696996832111,-34.8697040387907,-34.8697218488092,-34.8697486843156,-34.8697575964118,-34.8697620195262,-34.8697844886141,-34.8698114658603,-34.8698293517512,-34.8698472243019,-34.8698696041771,-34.8698785379511,-34.8698829827434,-34.8699098115797,-34.8699457217662,-34.8699771921629,-34.8700086975778,-34.8700311975149,-34.8700491709509,-34.8700761006726,-34.8700985047269,-34.8701209129501,-34.8701613596428,-34.8701928041929,-34.8702107376083,-34.8702376464859,-34.8702466161118,-34.8702735449997,-34.870408250304,-34.8705070796061,-34.8705878887815,-34.8706326343579,-34.8707224490109,-34.8708799610773,-34.8709474775639,-34.8710126820249,-34.8710601415009,-34.8710917327934,-34.8711143444548,-34.8711505839778,-34.8711596461514,-34.8711642068368,-34.8711894231748,-34.8712544058547,-34.8713052345684,-34.8714134462092,-34.8715184887157,-34.871570021165,-34.8715972969521,-34.871648625231,-34.8717162198573,-34.8717382195365,-34.8720066279616,-34.8722135246635,-34.8722571371556,-34.8723155805061,-34.8723479538099,-34.8723503015188,-34.8716820826369,-34.8716958963433,-34.8723837274414,-34.8723968742216,-34.8724585160118,-34.8725816528499,-34.8726636968288,-34.8726785786298,-34.8727093503735,-34.8727092936776,-34.8727536351127,-34.8727814956005]}]],[[{&#34;lng&#34;:[-56.2028584020419,-56.2025870788383,-56.2026580565747,-56.2026986758564,-56.2027036000626,-56.2026055720265,-56.202498942849,-56.2023864131479,-56.2021283917463,-56.2018108446458,-56.2014849515744,-56.2010456910213,-56.2008235184431,-56.2006708283769,-56.2005229396069,-56.2003267184106,-56.2001544028764,-56.2001127822449,-56.2000889811927,-56.1997928247818,-56.1997390685154,-56.1992011663592,-56.1990134377848,-56.1969940079799,-56.1968646541104,-56.1967163129219,-56.1964829825515,-56.1962965495387,-56.1962120609832,-56.1962419204883,-56.1963072169036,-56.1963593009637,-56.196423699938,-56.1964952807941,-56.1965255283822,-56.1965233073598,-56.1964924336706,-56.1964896195205,-56.1964269398696,-56.1963838633343,-56.1963192992352,-56.1962182229878,-56.1961133700342,-56.1960064854006,-56.1959670639528,-56.1958934406219,-56.1952552220768,-56.1952062993461,-56.1946790057407,-56.19465487663,-56.194268896737,-56.1936511191284,-56.1933965443441,-56.1933849087584,-56.1931710401275,-56.192915569208,-56.1928687308856,-56.1923490353653,-56.1922487844967,-56.1920967356646,-56.1918709073558,-56.191817866011,-56.1917320980283,-56.1915985362304,-56.1914756478537,-56.1912726306525,-56.1912376546979,-56.1907859488249,-56.190254475152,-56.1915919138165,-56.1926027697275,-56.1936375573149,-56.1936376649916,-56.1939361450934,-56.1942356948783,-56.1953635322178,-56.1964534136386,-56.1965670060771,-56.1966543354636,-56.1980809545258,-56.1980814544197,-56.1990657512827,-56.2002420047216,-56.2014919301735,-56.2018553609373,-56.2022321606094,-56.2022728128384,-56.2023174296123,-56.2025646994356,-56.2028727556338,-56.2031834508673,-56.2035261125867,-56.2036364319801,-56.205102198748,-56.2064927242109,-56.2074235109081,-56.2074749557729,-56.2077619221021,-56.2083384794474,-56.2085565052223,-56.2091512669561,-56.2098932679583,-56.2102105232417,-56.2104081918511,-56.2109365576762,-56.2105802339109,-56.2121896756079,-56.2126007842938,-56.2125454190739,-56.2122116015126,-56.2119044082195,-56.2111131092131,-56.2112665695384,-56.2120348641009,-56.2125834520218,-56.2132810384516,-56.213346132022,-56.2142435531784,-56.2149456435977,-56.2156285801868,-56.2156790885207,-56.2160205879741,-56.2159031407368,-56.2155240985884,-56.2152644046576,-56.2149566742865,-56.215946072878,-56.2161440049567,-56.2170717901059,-56.2172037081394,-56.2175445139017,-56.218096605296,-56.217954772149,-56.2184751805369,-56.2195252053949,-56.2187949454479,-56.2198772302765,-56.2209659684333,-56.2215384636837,-56.2218536729119,-56.221820899343,-56.2217906003838,-56.2214181816512,-56.2209852617167,-56.2208093643352,-56.2202360186462,-56.219229179138,-56.2190606470183,-56.2189667487213,-56.2185384164826,-56.2183346380556,-56.2180595761991,-56.2174104547639,-56.2172815033798,-56.2173551695853,-56.2177917847589,-56.2181936886977,-56.2175218822299,-56.2172055824394,-56.2167474528369,-56.2162851810982,-56.2162408615748,-56.2162109237645,-56.2160464026699,-56.2160134585459,-56.2158175513276,-56.2153220143684,-56.2147247096564,-56.2143984030384,-56.2136097846611,-56.2126917945634,-56.2117665920006,-56.2109678704917,-56.210519647665,-56.2097417814996,-56.2095432243409,-56.2085101889277,-56.2084583003915,-56.2082945203184,-56.2076265920587,-56.2059830280142,-56.2059131553124,-56.2040296089193,-56.2037684625728,-56.2032565536871,-56.2030662113669,-56.202970595973,-56.2029436203061,-56.2028584020419],&#34;lat&#34;:[-34.856840795657,-34.8568890495076,-34.856664437268,-34.8564772007053,-34.8562358962584,-34.8557980478871,-34.8556018676069,-34.8554300856813,-34.8551874688909,-34.8550081230644,-34.8548738704936,-34.8547708232915,-34.8546582576812,-34.854557010414,-34.8544575424492,-34.8542012202573,-34.8537825760184,-34.8536859328437,-34.8536326136348,-34.8537154701447,-34.853783507404,-34.853904156994,-34.853943652423,-34.8543641592891,-34.8548162420183,-34.8554031558298,-34.8564761453292,-34.857204854543,-34.857327609937,-34.8573178764023,-34.8573093410879,-34.8573105186858,-34.8573398632524,-34.8574198635033,-34.8574661530244,-34.8575818143829,-34.8577126496471,-34.8577105501085,-34.8578532639482,-34.8579181360004,-34.8579591628689,-34.8580227592562,-34.8581697728454,-34.8583400913165,-34.8584124631233,-34.8585476240235,-34.8598856985548,-34.8599534451602,-34.8606805834973,-34.8607122014702,-34.8612406256588,-34.8620898615546,-34.8624330100372,-34.8624780688399,-34.8633034545124,-34.8643137438778,-34.8644716202987,-34.8664471524645,-34.8668260228576,-34.8674033472653,-34.8682688735447,-34.8684632772316,-34.8687925295354,-34.8692976883921,-34.8694963450111,-34.8698214243295,-34.869875607273,-34.8705574430798,-34.8713642542073,-34.8714504918829,-34.871532191198,-34.8715947385303,-34.8715974042785,-34.8716148618501,-34.8716357837478,-34.8717145502487,-34.8717783126229,-34.8717845319399,-34.8717889733583,-34.8719031476928,-34.8719031717168,-34.8719504711327,-34.8720715289327,-34.8721534987066,-34.8721794729355,-34.8722225333259,-34.8721682324301,-34.8721189182229,-34.8718609306068,-34.871446354014,-34.8711344589951,-34.8707864136658,-34.8706608778,-34.8710521673885,-34.8713995790576,-34.8716582074388,-34.8716986166122,-34.8715129750388,-34.8708847868994,-34.870645266706,-34.8699629364776,-34.8691134041854,-34.8687473879214,-34.868543980519,-34.8680015574442,-34.8674933453463,-34.8655099407871,-34.8657340446966,-34.8658108309639,-34.8662738393008,-34.8666961896162,-34.8678201890197,-34.8676625409381,-34.8668174234227,-34.8662163400953,-34.8656914227153,-34.8656506616938,-34.8651071047009,-34.8646768077858,-34.8642592655882,-34.8642283848559,-34.8640200223981,-34.8638941858343,-34.8636564749073,-34.8634364264227,-34.8632813030883,-34.8624202840388,-34.8625864363944,-34.8620427643422,-34.8621955964949,-34.8619872323696,-34.8616475171698,-34.8614947150325,-34.8611776298369,-34.8605434244276,-34.8597209018983,-34.8590460321841,-34.8583666251298,-34.8580133095826,-34.8578185341319,-34.8577510309855,-34.8577015487996,-34.8578649530714,-34.8581006562962,-34.8581958453877,-34.858513104006,-34.8573932475996,-34.8572057941389,-34.8570813151744,-34.8564992220623,-34.8562474588882,-34.8558742264027,-34.8549973625149,-34.8548693506916,-34.8548623228715,-34.8546897205227,-34.8545487711648,-34.8536404293764,-34.8532132357284,-34.852628734286,-34.8528690182066,-34.8528916865639,-34.8529071598321,-34.8529958295334,-34.8530134107263,-34.8531181416941,-34.8525114004406,-34.8518236557531,-34.8514460643529,-34.8504569275631,-34.8509509690196,-34.851446188104,-34.851873451434,-34.8521158097577,-34.8525463084436,-34.8526153117714,-34.8531873195184,-34.8532168350975,-34.8533099972711,-34.8537011571622,-34.8546577757146,-34.8546985467413,-34.8557948104459,-34.8559352978988,-34.8562026916778,-34.8563872875577,-34.8565209632866,-34.8565978633361,-34.856840795657]}]],[[{&#34;lng&#34;:[-56.1936941299814,-56.1932365326368,-56.1936602361249,-56.1936772113028,-56.193718217264,-56.1946992153299,-56.1952637581458,-56.1959550122886,-56.1959629450012,-56.1959603544116,-56.1954684299627,-56.1952758421815,-56.1958340801268,-56.19583354895,-56.1957749334766,-56.195933524899,-56.1979603165028,-56.197953555343,-56.1980760432179,-56.1980834180562,-56.1984189379647,-56.1984430061911,-56.1984488295257,-56.1985586449137,-56.1988332734078,-56.198950796608,-56.1989920975404,-56.1988438854539,-56.1988252955875,-56.1987685215544,-56.198700288595,-56.1986440247841,-56.1985890211512,-56.1984148914493,-56.1985000865248,-56.198958147378,-56.1989508960379,-56.2000904930319,-56.200100563615,-56.1989728314889,-56.1989614956828,-56.1985003565149,-56.1985135608797,-56.198518577215,-56.1986432053213,-56.1988289977382,-56.199188691938,-56.1994011080191,-56.199654730949,-56.1998472608559,-56.1999784032511,-56.2000920683906,-56.2001397775812,-56.2001982220519,-56.2003054979483,-56.2004025800939,-56.2004527343713,-56.2005191785365,-56.2011485147092,-56.2015985451575,-56.2017750064185,-56.2020261552073,-56.2021395212547,-56.2022061385279,-56.2021517446836,-56.2019333979331,-56.2017163108202,-56.2017159477229,-56.2017600265075,-56.2020676047067,-56.2020160690558,-56.2020639020962,-56.202644485811,-56.2027117541834,-56.2021012356059,-56.2021860674442,-56.2022626755021,-56.202487892857,-56.2028787939993,-56.2030108298344,-56.2032746919807,-56.2034587229418,-56.203611088795,-56.203617726501,-56.2036817728647,-56.2037274197393,-56.204073744139,-56.2041794790146,-56.2042543891339,-56.2049979658997,-56.2056792029905,-56.2058455721247,-56.2059672848951,-56.2069395029595,-56.2075271576947,-56.2077508140979,-56.2084729037735,-56.2088384723066,-56.2089620777197,-56.2091396226175,-56.209275419318,-56.2104754371526,-56.2107117423932,-56.2108277664639,-56.2108964632519,-56.2109924816381,-56.2110156699423,-56.2124828310691,-56.2126871828913,-56.2127864249085,-56.2128816960813,-56.2127938187799,-56.2129001243346,-56.2130800608947,-56.2134811580226,-56.2140057858343,-56.2140049811927,-56.2146003609209,-56.2151611508141,-56.215833728902,-56.216162678566,-56.2166552231818,-56.2168058951165,-56.2176725090228,-56.217925647124,-56.2181414603693,-56.2181097268999,-56.2181195893952,-56.2181941657278,-56.2183834649671,-56.218798960969,-56.2188615345029,-56.2189216069556,-56.2194149687184,-56.2205302064012,-56.2205688231293,-56.22080329086,-56.2209544330839,-56.2213907797356,-56.2215777160969,-56.2217852619729,-56.2220758501465,-56.2225686802691,-56.2227970766142,-56.2233210014597,-56.2241300889643,-56.2247963977546,-56.2250585114469,-56.2252396570414,-56.2254017498937,-56.225448686446,-56.2254374254029,-56.2254140236897,-56.2253966590977,-56.2253680599622,-56.2253069656089,-56.2252188217386,-56.2251229856468,-56.2250518089391,-56.2249898136332,-56.2248276133157,-56.2247173831339,-56.2246697585727,-56.2246947914828,-56.2247616759768,-56.2248261659026,-56.2248673171253,-56.2249006876687,-56.2249005409263,-56.2248797602092,-56.2248434915045,-56.224767632382,-56.2247425294358,-56.2248042179168,-56.2247884697951,-56.224808486785,-56.2248163575108,-56.2247878761556,-56.2248134460093,-56.2248080799085,-56.2247736121326,-56.2247229993636,-56.2246387892677,-56.2244985135906,-56.2242659069627,-56.2241384979213,-56.2239514447865,-56.2237888842832,-56.223650849762,-56.2234325838633,-56.2233458691423,-56.2232122068759,-56.2230273515413,-56.2228235230884,-56.22258493671,-56.2223407707874,-56.2221547014934,-56.222073723064,-56.2220024696502,-56.2218230337772,-56.2215817993664,-56.2213284408073,-56.2212912155933,-56.2211668759349,-56.2210874710953,-56.2209645143501,-56.2208641533542,-56.2208022906872,-56.2207627809795,-56.2206628821239,-56.2206124394427,-56.2204461231099,-56.2203231650149,-56.2202088465668,-56.2200376250809,-56.2198623550834,-56.2197263585772,-56.219533390909,-56.2192349196101,-56.2190770744713,-56.2189232433081,-56.2188353348704,-56.218769822786,-56.2187128517374,-56.2186867153912,-56.2187134678322,-56.2186875711057,-56.218630497461,-56.2185821359117,-56.2184638037665,-56.2183674915629,-56.2183194382211,-56.2183197121772,-56.2182149620693,-56.2181099381007,-56.2180317011691,-56.2179919011646,-56.2179620050964,-56.2179317871847,-56.2178971105316,-56.2178360581331,-56.2177271242769,-56.217648682447,-56.2176195376706,-56.2175395090417,-56.2174696765438,-56.217433836993,-56.2173741198283,-56.2173506222818,-56.217241636492,-56.2172900426643,-56.2172483044722,-56.2172309531391,-56.2172232282064,-56.2171835777576,-56.2171020256992,-56.2169794891706,-56.2168918186677,-56.2167720198934,-56.2167181733997,-56.2167152829127,-56.2166692024811,-56.2166386834083,-56.2165992197226,-56.2164841637186,-56.2164539814862,-56.2164393639475,-56.2164199439321,-56.2164023315156,-56.2163796131325,-56.2163555473879,-56.2163291304306,-56.2163064720785,-56.2162872321559,-56.2162284685167,-56.2161887413617,-56.2161730365957,-56.2161579187991,-56.2161447286633,-56.216113806049,-56.2160877892982,-56.2160641871259,-56.2160649275078,-56.2159983064829,-56.2159863036261,-56.2159765519302,-56.2159853764813,-56.2160534048986,-56.2161155002561,-56.2161263958752,-56.216171989389,-56.2162223453588,-56.2162468113099,-56.2162587107801,-56.2162729848082,-56.2162916977923,-56.2163809704992,-56.2163917460564,-56.2164225419387,-56.216434074553,-56.2164569496836,-56.2164647270279,-56.2164474914724,-56.2164159251929,-56.2163643385884,-56.2163039474431,-56.2161833052248,-56.2161010828206,-56.2160205879741,-56.2156790885207,-56.2156285801868,-56.2149456435977,-56.2142435531784,-56.213346132022,-56.2132810384516,-56.2125834520218,-56.2120348641009,-56.2112665695384,-56.2111131092131,-56.2119044082195,-56.2122116015126,-56.2125454190739,-56.2126007842938,-56.2121896756079,-56.2105802339109,-56.2109365576762,-56.2104081918511,-56.2102105232417,-56.2098932679583,-56.2091512669561,-56.2085565052223,-56.2083384794474,-56.2077619221021,-56.2074749557729,-56.2074235109081,-56.2064927242109,-56.205102198748,-56.2036364319801,-56.2035261125867,-56.2031834508673,-56.2028727556338,-56.2025646994356,-56.2023174296123,-56.2022728128384,-56.2022321606094,-56.2018553609373,-56.2014919301735,-56.2002420047216,-56.1990657512827,-56.1980814544197,-56.1980809545258,-56.1966543354636,-56.1965670060771,-56.1964534136386,-56.1953635322178,-56.1942356948783,-56.1939361450934,-56.1939148887854,-56.1939140999907,-56.1939139677215,-56.1937329895193,-56.1936469942257,-56.1936629388651,-56.1936654379823,-56.1936373417667,-56.1935952383198,-56.1935187589298,-56.1935026675515,-56.1935196344899,-56.1934205633964,-56.1933431351313,-56.1932926107413,-56.1931871534376,-56.1931980911618,-56.1934059091722,-56.1935810657549,-56.1939972358011,-56.1940649515572,-56.1937839307943,-56.1937548591346,-56.1933758382472,-56.192813234348,-56.1937737584648,-56.1938627276819,-56.1938505555711,-56.1933721621847,-56.1932851877464,-56.1927872255179,-56.1931359208202,-56.1937833275777,-56.1936941299814],&#34;lat&#34;:[-34.8842116360473,-34.8849020953751,-34.8849623727462,-34.8849644169784,-34.8849661376847,-34.8850405619781,-34.8850794972664,-34.8851093359172,-34.8851096783175,-34.8851131520396,-34.8857727671915,-34.8860393180216,-34.886102977774,-34.8861097251633,-34.8868542932705,-34.8869421503336,-34.8870348593441,-34.8869764299381,-34.8870073286826,-34.8870274668216,-34.8871158289613,-34.8866450899255,-34.8866122401065,-34.8865380517316,-34.8863432168912,-34.8861773112366,-34.8859316822215,-34.8857584830064,-34.8856356239718,-34.885610318933,-34.8856865795164,-34.8857228171945,-34.8857606386058,-34.8858371597367,-34.8849728125496,-34.8850161046669,-34.8850438643808,-34.8851252020334,-34.8850466401991,-34.8849532100701,-34.8849827263867,-34.8849450068345,-34.8847430458818,-34.8845109033217,-34.8841930524687,-34.8841191613959,-34.8837732678681,-34.8835174527032,-34.883280135368,-34.883085629671,-34.8829499188108,-34.8829074183452,-34.8829880012605,-34.8830474428958,-34.8830707292782,-34.8830583405522,-34.8829944023838,-34.8829896284401,-34.883476020005,-34.8837180950523,-34.8837596213492,-34.8837114081526,-34.8836088666592,-34.8834241021254,-34.8832385434186,-34.8830234159134,-34.8828524338076,-34.8827156930312,-34.8826269431639,-34.8823572135401,-34.8822573699617,-34.8821971154766,-34.8827370231738,-34.8826968551813,-34.8821367920608,-34.8820508224443,-34.8820461446985,-34.8817845710843,-34.8815362083104,-34.8814548739173,-34.8813138349139,-34.8812847565961,-34.8812727758484,-34.8810890096865,-34.8810392442295,-34.8810030538986,-34.8806868095077,-34.8805921571136,-34.8804376822458,-34.879859448381,-34.8794333656202,-34.8793337188131,-34.8792612460204,-34.8787536959305,-34.8783973742496,-34.8782540932869,-34.8778099200344,-34.8775886263243,-34.8775227035762,-34.8774063264742,-34.8773235166838,-34.8766105091277,-34.8766033907943,-34.8765479017382,-34.8765007580542,-34.8763413071849,-34.8761121624221,-34.8752996726197,-34.8753399330343,-34.8753924915664,-34.8753109081848,-34.875167570453,-34.8750298162469,-34.8749769488155,-34.8748701438704,-34.8746311095277,-34.8746292804309,-34.874352902016,-34.8740895512972,-34.8741506935981,-34.8741073727088,-34.8740139827494,-34.8741153046142,-34.8740659747859,-34.8741136572571,-34.8740619856996,-34.8739193965141,-34.8738842459958,-34.873736656529,-34.8737378736107,-34.8743085697226,-34.8742998833458,-34.8740260875759,-34.873922469629,-34.8738271095484,-34.8735796126013,-34.8734487002863,-34.873359968211,-34.8732559768549,-34.8732187307037,-34.8731944305523,-34.8731578470218,-34.8731097417538,-34.8730727588148,-34.8730248492514,-34.8729659430903,-34.8729121432106,-34.8729018174723,-34.8728373520331,-34.8727780399193,-34.8726883641105,-34.8726528098832,-34.8726254919977,-34.8726161120157,-34.8726053819236,-34.8725858146932,-34.8725412486791,-34.8724378895409,-34.8723730719461,-34.872316618665,-34.8721999451602,-34.872087616396,-34.8720743995798,-34.8720249724223,-34.8720493808436,-34.8720979083705,-34.8721020171562,-34.872091319139,-34.8720595402498,-34.8720129945783,-34.8719717266287,-34.8718951688126,-34.8718486406501,-34.8717971282505,-34.8717272613851,-34.8716885472525,-34.8716424276342,-34.8715980247344,-34.8715682835628,-34.8715195717742,-34.8714331405328,-34.8713033919514,-34.8711999952938,-34.8710201558793,-34.8706062440811,-34.8705480515697,-34.8703773718792,-34.8702561910498,-34.8701169067173,-34.8698471701072,-34.8697933573546,-34.8697126482308,-34.8695735089732,-34.8694704833402,-34.8693901002179,-34.869359310172,-34.8693283391995,-34.8693330974868,-34.8692972631728,-34.8692212022796,-34.8691588534581,-34.8691025750623,-34.8690943061955,-34.8690434313059,-34.8690567249544,-34.8690751336149,-34.8690447733215,-34.8690260591393,-34.8690070217086,-34.8689588861632,-34.8689139730003,-34.8689123476947,-34.8689111459559,-34.8689285060147,-34.8689274078134,-34.8688900970883,-34.8688783685578,-34.868855418312,-34.8688462648665,-34.8688235394222,-34.8688406444937,-34.8688509356484,-34.8688143284434,-34.8688031064972,-34.8687812267724,-34.8687379751078,-34.8686907665094,-34.8686903997572,-34.8686973262284,-34.8686748539174,-34.8686452857844,-34.8686196464587,-34.8685906991765,-34.8685248903736,-34.8684880287635,-34.8684042971399,-34.8683773753024,-34.8683459508114,-34.8682914769994,-34.8682442117614,-34.8682003954802,-34.8681128475629,-34.868050826158,-34.8680342162246,-34.8679886069459,-34.8679447339804,-34.8678979863124,-34.8678355600547,-34.8677855675925,-34.8679097382597,-34.8676216948727,-34.8675361907761,-34.8674645170364,-34.8674326073555,-34.8672794933907,-34.8670814379151,-34.8669646326756,-34.8669160288146,-34.8668829801721,-34.8668197608432,-34.8668076984072,-34.8667447409385,-34.8667223010323,-34.8666863658329,-34.866560522599,-34.8664614631782,-34.8664029163174,-34.8663398788074,-34.8662993695824,-34.8662633843572,-34.8662319097917,-34.8662094548778,-34.8661869899587,-34.8661645133669,-34.8660925829373,-34.8659980575214,-34.8659259953571,-34.8659080127497,-34.8658629845275,-34.8657504048006,-34.8656648523456,-34.8655837988776,-34.8655206996691,-34.8655254104319,-34.8655164324684,-34.8654995971193,-34.8654623529115,-34.8653900339481,-34.8653673088949,-34.8653582625628,-34.8653130525801,-34.8652633236003,-34.8652316989573,-34.8652181419657,-34.8652000709793,-34.8651819866528,-34.8650465051148,-34.865010416503,-34.8649427182559,-34.8648480360926,-34.8647668425523,-34.8646721720617,-34.864487440124,-34.8643838767137,-34.8643119229387,-34.8642580251422,-34.8641817758185,-34.8641369577046,-34.8640200223981,-34.8642283848559,-34.8642592655882,-34.8646768077858,-34.8651071047009,-34.8656506616938,-34.8656914227153,-34.8662163400953,-34.8668174234227,-34.8676625409381,-34.8678201890197,-34.8666961896162,-34.8662738393008,-34.8658108309639,-34.8657340446966,-34.8655099407871,-34.8674933453463,-34.8680015574442,-34.868543980519,-34.8687473879214,-34.8691134041854,-34.8699629364776,-34.870645266706,-34.8708847868994,-34.8715129750388,-34.8716986166122,-34.8716582074388,-34.8713995790576,-34.8710521673885,-34.8706608778,-34.8707864136658,-34.8711344589951,-34.871446354014,-34.8718609306068,-34.8721189182229,-34.8721682324301,-34.8722225333259,-34.8721794729355,-34.8721534987066,-34.8720715289327,-34.8719504711327,-34.8719031717168,-34.8719031476928,-34.8717889733583,-34.8717845319399,-34.8717783126229,-34.8717145502487,-34.8716357837478,-34.8716148618501,-34.8717047640413,-34.8717087532029,-34.8717128712771,-34.8726969849222,-34.8732706367394,-34.8735369714652,-34.873537200081,-34.8735774583285,-34.8736380684589,-34.8742882438955,-34.8744966483811,-34.8745517972371,-34.8755345949244,-34.876300997261,-34.8768014128381,-34.8777301455593,-34.8777301138764,-34.8777295181524,-34.8777650710713,-34.8778900701199,-34.8778988892515,-34.8791796679068,-34.8792563693387,-34.8802399701484,-34.8817063381628,-34.8819469578554,-34.8819692369756,-34.8820008205166,-34.8826872484704,-34.8828136922224,-34.8835632711431,-34.8837401589323,-34.8840235696998,-34.8842116360473]}]],[[{&#34;lng&#34;:[-56.1815726181079,-56.1813875968543,-56.1811741634851,-56.1811742105556,-56.1810418527119,-56.1810178078113,-56.1809011822479,-56.1808815396177,-56.1812289089496,-56.1805937041217,-56.1806581890134,-56.1795941664749,-56.1803138631024,-56.1803882718935,-56.1806403031225,-56.1819138019818,-56.1819648170416,-56.1823511812995,-56.1826923468306,-56.1834950816548,-56.1842940639188,-56.1850872231796,-56.1851767212937,-56.1852137826437,-56.1863193590403,-56.1869651481319,-56.1867935263266,-56.1867640476995,-56.1869074730783,-56.1873947253399,-56.1876167926139,-56.1880714331813,-56.1886868898282,-56.1896347538464,-56.1897621957314,-56.1898429571001,-56.1908862376733,-56.1911028298076,-56.1912075752748,-56.1913702137959,-56.19198180717,-56.1921798847217,-56.1930933510572,-56.1932185855745,-56.1943038582987,-56.1946226121794,-56.1954239749404,-56.1956729350184,-56.1957127442462,-56.1957878464699,-56.1958754454511,-56.1958452963437,-56.1955358593658,-56.1954889095707,-56.1950553083132,-56.1947208731661,-56.1946397283454,-56.194683173347,-56.1947090747786,-56.1953001084021,-56.1953679718666,-56.1954723304519,-56.1954852830087,-56.1954930627981,-56.1956888584978,-56.1958372874744,-56.195933524899,-56.1957749334766,-56.19583354895,-56.1958340801268,-56.1952758421815,-56.1954684299627,-56.1959629450012,-56.1959550122886,-56.1952637581458,-56.1946992153299,-56.193718217264,-56.1936772113028,-56.1936602361249,-56.1932365326368,-56.1923296657926,-56.1920217695026,-56.1908424992844,-56.1908093550628,-56.1893815320313,-56.1891068403657,-56.1882663438794,-56.1872693235446,-56.1875187484555,-56.1865852068556,-56.1864414671396,-56.1864047513854,-56.1856931145075,-56.1848640653831,-56.1844033044236,-56.1840172905547,-56.1831623237931,-56.1836452276987,-56.1841244574901,-56.1845687949953,-56.1838043430238,-56.1836911864685,-56.1836770436119,-56.1836598929032,-56.1825446362133,-56.1815505289716,-56.1813269779704,-56.1806332391294,-56.1806478711257,-56.1812153384329,-56.1812346175423,-56.1816960443243,-56.1815916249935,-56.1815625560142,-56.181566922991,-56.1815726181079],&#34;lat&#34;:[-34.8894944552148,-34.8906487430106,-34.89193839066,-34.8919743725049,-34.8927995080484,-34.8929392893039,-34.8936433007139,-34.8937283795913,-34.8943973225623,-34.8951619815627,-34.8952974096135,-34.8960772824572,-34.8967135366131,-34.8967674143993,-34.8968658701755,-34.8973581057006,-34.8973759915914,-34.8967980318561,-34.8962878003834,-34.8967002014025,-34.8971126090917,-34.8975205194615,-34.8975894916074,-34.8976083390094,-34.898170566374,-34.8986024107538,-34.8989214105647,-34.8989765128746,-34.8989860026886,-34.8990193474454,-34.8990407283473,-34.8990801632281,-34.899132875995,-34.8992150471802,-34.8992264056485,-34.8992286954696,-34.8992829348516,-34.8992950297938,-34.8992835089143,-34.8992656202332,-34.8993078072242,-34.8993251615881,-34.899398484023,-34.8994089962199,-34.8995097767629,-34.8995565838248,-34.8996093784061,-34.8996160744185,-34.8996171450772,-34.899576609227,-34.8994802984816,-34.8994704862788,-34.8993697776452,-34.8993442108843,-34.899108089413,-34.8987628168127,-34.8983134033652,-34.897944395965,-34.8978419855548,-34.8924593940266,-34.8915275709786,-34.8906202041608,-34.8900451866899,-34.889995961977,-34.8887570917345,-34.8878500157315,-34.8869421503336,-34.8868542932705,-34.8861097251633,-34.886102977774,-34.8860393180216,-34.8857727671915,-34.8851096783175,-34.8851093359172,-34.8850794972664,-34.8850405619781,-34.8849661376847,-34.8849644169784,-34.8849623727462,-34.8849020953751,-34.8844930097998,-34.8843541750742,-34.8838226023483,-34.8838032806513,-34.8831538323809,-34.8830239099078,-34.882629678207,-34.8821592639357,-34.8817213874866,-34.8820434710047,-34.8820947630978,-34.8821111156931,-34.882398057374,-34.8827023455793,-34.8828748980065,-34.8830201984104,-34.883342575137,-34.884206661015,-34.8850570354739,-34.8858855033468,-34.8861846636873,-34.8862272168104,-34.886232477106,-34.8862394706956,-34.8866618110543,-34.8870296242198,-34.8871170844575,-34.8873836675667,-34.8874091082685,-34.8883957523356,-34.8884310071841,-34.8892678291036,-34.889377221421,-34.8894108573351,-34.8894471390681,-34.8894944552148]}]],[[{&#34;lng&#34;:[-56.1813273074282,-56.1805095039994,-56.1800990706617,-56.179574638532,-56.1796893256607,-56.1797640809297,-56.1800621983124,-56.1800885708212,-56.1804935178382,-56.1808953346365,-56.1809117656227,-56.1813010671295,-56.1813206105511,-56.1817312086471,-56.1817477630179,-56.1821867890182,-56.182673705967,-56.1827394744689,-56.1831623237931,-56.1840172905547,-56.1844033044236,-56.1848640653831,-56.1856931145075,-56.1864047513854,-56.1864414671396,-56.1865852068556,-56.1875187484555,-56.1872693235446,-56.1882663438794,-56.1891068403657,-56.1893815320313,-56.1908093550628,-56.1908424992844,-56.1920217695026,-56.1923296657926,-56.1932365326368,-56.1936941299814,-56.1937833275777,-56.1931359208202,-56.1927872255179,-56.1932851877464,-56.1933721621847,-56.1938505555711,-56.1938627276819,-56.1937737584648,-56.192813234348,-56.1933758382472,-56.1937548591346,-56.1937839307943,-56.1940649515572,-56.1939972358011,-56.1935810657549,-56.1934059091722,-56.1931980911618,-56.1931871534376,-56.1932926107413,-56.1933431351313,-56.1934205633964,-56.1935196344899,-56.1935026675515,-56.1935187589298,-56.1935952383198,-56.1936373417667,-56.1936654379823,-56.1936629388651,-56.1936469942257,-56.1937329895193,-56.1939139677215,-56.1939140999907,-56.1939148887854,-56.1939361450934,-56.1936376909409,-56.1936376649916,-56.1936375573149,-56.1926027697275,-56.1915919138165,-56.190254475152,-56.1902297127095,-56.1902061092551,-56.1900988907415,-56.18987772689,-56.1897730389414,-56.1896613269537,-56.1891759453494,-56.1887714914802,-56.1884801947927,-56.1873246356382,-56.1860692207667,-56.1857236261085,-56.184609773003,-56.1840495152698,-56.1838043365622,-56.1834757641577,-56.1830503946467,-56.182023171303,-56.1819624480281,-56.1821332481029,-56.1824904097698,-56.1828089294553,-56.1828236184091,-56.1830683315689,-56.1831106121241,-56.1827192940613,-56.1820993764373,-56.1813273074282],&#34;lat&#34;:[-34.8756182647417,-34.8759855895972,-34.8761715075632,-34.8763983007762,-34.8765688766344,-34.876686328513,-34.8772758108307,-34.8773513950253,-34.8781895295587,-34.8790477431685,-34.8790807483498,-34.8798816582065,-34.8799225955994,-34.8807821029693,-34.8808181125821,-34.881601102119,-34.8824740955211,-34.8825910930733,-34.883342575137,-34.8830201984104,-34.8828748980065,-34.8827023455793,-34.882398057374,-34.8821111156931,-34.8820947630978,-34.8820434710047,-34.8817213874866,-34.8821592639357,-34.882629678207,-34.8830239099078,-34.8831538323809,-34.8838032806513,-34.8838226023483,-34.8843541750742,-34.8844930097998,-34.8849020953751,-34.8842116360473,-34.8840235696998,-34.8837401589323,-34.8835632711431,-34.8828136922224,-34.8826872484704,-34.8820008205166,-34.8819692369756,-34.8819469578554,-34.8817063381628,-34.8802399701484,-34.8792563693387,-34.8791796679068,-34.8778988892515,-34.8778900701199,-34.8777650710713,-34.8777295181524,-34.8777301138764,-34.8777301455593,-34.8768014128381,-34.876300997261,-34.8755345949244,-34.8745517972371,-34.8744966483811,-34.8742882438955,-34.8736380684589,-34.8735774583285,-34.873537200081,-34.8735369714652,-34.8732706367394,-34.8726969849222,-34.8717128712771,-34.8717087532029,-34.8717047640413,-34.8716148618501,-34.8715947466067,-34.8715974042785,-34.8715947385303,-34.871532191198,-34.8714504918829,-34.8713642542073,-34.8714018549222,-34.8714376957256,-34.8716005018453,-34.8720022490366,-34.872204440812,-34.8723994738956,-34.8732751359078,-34.8732628233137,-34.8732411121166,-34.8731677567854,-34.8730811504536,-34.873049986536,-34.8729478569728,-34.872892125587,-34.872871156321,-34.8728344448361,-34.8728037448728,-34.872763438268,-34.8733620625252,-34.8735925490403,-34.8740195794255,-34.8744288254841,-34.8744474151051,-34.8747571106225,-34.8748155832783,-34.8749924436564,-34.8752690892463,-34.8756182647417]}]],[[{&#34;lng&#34;:[-56.1861785696608,-56.1851240192396,-56.1847978191349,-56.1835497567614,-56.1838096136122,-56.1837822943294,-56.1837632470297,-56.1837314589773,-56.1835863391098,-56.1834757641577,-56.1838043365622,-56.1840495152698,-56.184609773003,-56.1857236261085,-56.1860692207667,-56.1873246356382,-56.1884801947927,-56.1887714914802,-56.1891759453494,-56.1896613269537,-56.1897730389414,-56.18987772689,-56.1900988907415,-56.1902061092551,-56.1902297127095,-56.190254475152,-56.1907859488249,-56.1912376546979,-56.1912726306525,-56.1914756478537,-56.1915985362304,-56.1917320980283,-56.191817866011,-56.1918709073558,-56.1920967356646,-56.1922487844967,-56.1923490353653,-56.1928687308856,-56.192915569208,-56.1931710401275,-56.1933849087584,-56.1933965443441,-56.1936511191284,-56.194268896737,-56.19465487663,-56.1946790057407,-56.1952062993461,-56.1952552220768,-56.1958934406219,-56.1959670639528,-56.1960064854006,-56.1961133700342,-56.1962182229878,-56.1963192992352,-56.1963838633343,-56.1964269398696,-56.1964896195205,-56.1964924336706,-56.1965233073598,-56.1965255283822,-56.1964952807941,-56.196423699938,-56.1963593009637,-56.1963072169036,-56.1962419204883,-56.1962120609832,-56.1961075675166,-56.1960115276817,-56.1957174022057,-56.1951549889955,-56.1950562329385,-56.1950553658965,-56.1948182437204,-56.1946746167829,-56.1940528944127,-56.1933159989213,-56.1927113359054,-56.1924776187715,-56.1924303258158,-56.191839848631,-56.1910403237626,-56.1900478804759,-56.1899812763347,-56.1896926087115,-56.1884180754788,-56.1884130945245,-56.1871911476669,-56.186290909168,-56.1863211565979,-56.1863389634665,-56.1867350028776,-56.1869220996026,-56.1868845299665,-56.1868806344158,-56.1868387580014,-56.1867908876363,-56.1866423053014,-56.1865982404968,-56.1865886357951,-56.1863564830819,-56.1863359087212,-56.1863000604417,-56.1861785696608],&#34;lat&#34;:[-34.8699349937335,-34.8698117568437,-34.8697766145533,-34.8700780355211,-34.8707767712825,-34.8709002686585,-34.8709768424301,-34.8711046361146,-34.8719793677419,-34.8728344448361,-34.872871156321,-34.872892125587,-34.8729478569728,-34.873049986536,-34.8730811504536,-34.8731677567854,-34.8732411121166,-34.8732628233137,-34.8732751359078,-34.8723994738956,-34.872204440812,-34.8720022490366,-34.8716005018453,-34.8714376957256,-34.8714018549222,-34.8713642542073,-34.8705574430798,-34.869875607273,-34.8698214243295,-34.8694963450111,-34.8692976883921,-34.8687925295354,-34.8684632772316,-34.8682688735447,-34.8674033472653,-34.8668260228576,-34.8664471524645,-34.8644716202987,-34.8643137438778,-34.8633034545124,-34.8624780688399,-34.8624330100372,-34.8620898615546,-34.8612406256588,-34.8607122014702,-34.8606805834973,-34.8599534451602,-34.8598856985548,-34.8585476240235,-34.8584124631233,-34.8583400913165,-34.8581697728454,-34.8580227592562,-34.8579591628689,-34.8579181360004,-34.8578532639482,-34.8577105501085,-34.8577126496471,-34.8575818143829,-34.8574661530244,-34.8574198635033,-34.8573398632524,-34.8573105186858,-34.8573093410879,-34.8573178764023,-34.857327609937,-34.8573638052711,-34.8573976864921,-34.8575017554115,-34.8576385555664,-34.8576625764559,-34.8576627873501,-34.8577217059627,-34.8577542014302,-34.8579050930735,-34.8580844398548,-34.8582090250074,-34.8582736694935,-34.8582889269148,-34.8584856947252,-34.8587620257147,-34.8590758292178,-34.8591123513866,-34.8592706363515,-34.8600286846592,-34.860031894243,-34.8606064914695,-34.8610580752891,-34.8612386630479,-34.8613275083287,-34.8621003473726,-34.8624693910311,-34.8629697690889,-34.863019356329,-34.8634701688245,-34.8643716954315,-34.8661841727138,-34.8666611585721,-34.8667448378195,-34.8686590273516,-34.8688078140848,-34.8690648107912,-34.8699349937335]}]],[[{&#34;lng&#34;:[-56.1682641387512,-56.1683083560016,-56.1689252265851,-56.1684501680246,-56.1677539695296,-56.167402692189,-56.1673587597289,-56.1670276727048,-56.1666893029887,-56.1671061376862,-56.167428633557,-56.1674724471355,-56.1675607594089,-56.1675909102888,-56.1676228296749,-56.1675865142829,-56.1675609477643,-56.1674740229349,-56.1673626518179,-56.1672570745578,-56.1671833697043,-56.1670970852051,-56.1670741100229,-56.1669970219333,-56.1669205641687,-56.16683289729,-56.1667251183723,-56.166464517307,-56.1664122486841,-56.1649950761453,-56.164940688096,-56.1647496045493,-56.1657590701565,-56.1659619931425,-56.16621272245,-56.1662912630183,-56.1663240149776,-56.1663497462158,-56.1669376535317,-56.1669937771527,-56.1670173023924,-56.1671565475381,-56.1676176603457,-56.167755913313,-56.1681591195901,-56.168813635474,-56.16895461985,-56.1693905946933,-56.1696720898676,-56.17018699375,-56.1703688429662,-56.1704081500131,-56.1704689341539,-56.1705411830812,-56.1705438644641,-56.1706372876448,-56.1707234570846,-56.1720332643317,-56.1727912751779,-56.1732351656295,-56.1732607456292,-56.1733049150752,-56.1733080114792,-56.1733101240613,-56.1731758705703,-56.1723976925259,-56.172364477867,-56.1721663274463,-56.1722339851193,-56.1731171349112,-56.1733663819817,-56.1735449288564,-56.1739396570411,-56.1739674268252,-56.1741698678201,-56.1743438066915,-56.1748056807251,-56.1751327569067,-56.1751342880103,-56.1753824965371,-56.1756532697415,-56.1763282142679,-56.1773547603507,-56.1778651293944,-56.1773685937945,-56.1770384071993,-56.1767972045161,-56.1766952935801,-56.1771482880343,-56.1774757035575,-56.1777843919227,-56.1779719494843,-56.1782912649968,-56.1786798023555,-56.1786726718592,-56.1786726945097,-56.1786817508584,-56.1775456740361,-56.1771107125017,-56.1769822243492,-56.1768492417032,-56.176651195864,-56.1764620640489,-56.176449598089,-56.1764494601261,-56.1753302378483,-56.1751194409587,-56.1748562827822,-56.174759887585,-56.1745505488748,-56.1742894551923,-56.1738446457931,-56.1734195378294,-56.173097756126,-56.1734642643561,-56.1735062946987,-56.1737843107862,-56.1738432578672,-56.1742197538036,-56.1742631027844,-56.1743775212621,-56.1743865191893,-56.1741003258169,-56.1738392660065,-56.1737975649807,-56.173770902897,-56.173732909136,-56.1725205689011,-56.171215931066,-56.1712328698017,-56.1712741210761,-56.1699363311436,-56.1700054118491,-56.1700121505595,-56.1693203587637,-56.1691143993718,-56.1690323168887,-56.1689043587124,-56.1687894636535,-56.1687514471461,-56.1682641387512],&#34;lat&#34;:[-34.8691997879023,-34.8690675993026,-34.8686431529051,-34.868831853149,-34.8691265580119,-34.8692880847305,-34.8693082859339,-34.8694380338731,-34.8695890864622,-34.8698326769544,-34.8698542997193,-34.8699477872443,-34.8700668177022,-34.8701136178827,-34.870218672362,-34.8705401549973,-34.8708196541421,-34.8717528237349,-34.8729516295552,-34.8739106829711,-34.8748678977583,-34.8757920510344,-34.8760354869972,-34.8766891991333,-34.877329388462,-34.8781634056693,-34.8791867682353,-34.8812561462998,-34.8817024721065,-34.8816250902195,-34.8821435321457,-34.8823198063148,-34.8830337477419,-34.8831774337194,-34.8833074720335,-34.8834486650705,-34.8834608603681,-34.8834726559098,-34.8838988462313,-34.8839263420194,-34.8838957503195,-34.8837511587707,-34.8833082541035,-34.8831726783502,-34.8827840088409,-34.8821512930451,-34.8820157086766,-34.8816179337162,-34.8814292053946,-34.8810839840739,-34.8810123072752,-34.8808663302904,-34.8804612704245,-34.8800599587703,-34.8800464307519,-34.8792078885025,-34.87843696967,-34.8785222604244,-34.8785711205217,-34.8786021663909,-34.8783535191324,-34.8779432675552,-34.8778671658792,-34.8777950085433,-34.8777826397537,-34.877713859554,-34.8777122664598,-34.8776935291225,-34.8769097507113,-34.87695644158,-34.8766902431999,-34.8765003959294,-34.8760805115132,-34.876053372879,-34.8758451963595,-34.8756644468924,-34.8751764427161,-34.8748285191164,-34.8748267741956,-34.8745439023322,-34.8742658425465,-34.8742799228579,-34.8743131733394,-34.8743298035827,-34.8737312884728,-34.8733315237442,-34.8730391468535,-34.8729178228881,-34.8724388475349,-34.8720954237558,-34.8717700776332,-34.8715802722457,-34.8712639099229,-34.8708540151586,-34.8706294127166,-34.870629202887,-34.8705453068398,-34.8704574985526,-34.8704359665674,-34.8704296056939,-34.8704142201192,-34.8703913067065,-34.8703694243119,-34.8703672388601,-34.8703685502512,-34.8702909287977,-34.8702731189669,-34.8702508847071,-34.8702448712385,-34.8702318116937,-34.8702172905248,-34.8701845228398,-34.8701635442182,-34.8701495267482,-34.8702018717024,-34.8701996686564,-34.8702144613007,-34.8702190341042,-34.8702526746972,-34.8702565479306,-34.8703274662361,-34.870333043278,-34.8703115869209,-34.8702909328306,-34.8712806660644,-34.8718801627402,-34.8722092724705,-34.8721179020151,-34.8720222610239,-34.87172475676,-34.8710936729606,-34.8709935996836,-34.8699958924883,-34.8699117217861,-34.8698696139263,-34.869857076859,-34.8698521466006,-34.8698153117967,-34.8697449192523,-34.8697216276986,-34.8691997879023]}]],[[{&#34;lng&#34;:[-56.172364477867,-56.1723976925259,-56.1731758705703,-56.1733101240613,-56.1733080114792,-56.1733049150752,-56.1732607456292,-56.1732351656295,-56.1727912751779,-56.1720332643317,-56.1707234570846,-56.1706372876448,-56.1705438644641,-56.1705411830812,-56.1704689341539,-56.1704081500131,-56.1703688429662,-56.1702553990284,-56.1715780795019,-56.172806262109,-56.1731120272647,-56.1743632683951,-56.1754684436074,-56.1756439958106,-56.1761972350519,-56.176707501807,-56.1778273715884,-56.1778520551517,-56.1778073195804,-56.1786713729871,-56.17967312613,-56.1808368551914,-56.1811141187313,-56.1817312086471,-56.1813206105511,-56.1813010671295,-56.1809117656227,-56.1808953346365,-56.1804935178382,-56.1800885708212,-56.1800621983124,-56.1797640809297,-56.1796893256607,-56.179574638532,-56.1800990706617,-56.1805095039994,-56.1813273074282,-56.1820993764373,-56.1827192940613,-56.1831106121241,-56.1830683315689,-56.1828236184091,-56.1828089294553,-56.1824904097698,-56.1821332481029,-56.1819624480281,-56.182023171303,-56.1830503946467,-56.1834757641577,-56.1835863391098,-56.1837314589773,-56.1837632470297,-56.1832215895602,-56.182726990116,-56.1822833065683,-56.1822827021401,-56.1811154241931,-56.1803449132592,-56.1799960102032,-56.1787797145191,-56.1786877433385,-56.1786726945097,-56.1786726718592,-56.1786798023555,-56.1782912649968,-56.1779719494843,-56.1777843919227,-56.1774757035575,-56.1771482880343,-56.1766952935801,-56.1767972045161,-56.1770384071993,-56.1773685937945,-56.1778651293944,-56.1773547603507,-56.1763282142679,-56.1756532697415,-56.1753824965371,-56.1751342880103,-56.1751327569067,-56.1748056807251,-56.1743438066915,-56.1741698678201,-56.1739674268252,-56.1739396570411,-56.1735449288564,-56.1733663819817,-56.1731171349112,-56.1722339851193,-56.1721663274463,-56.172364477867],&#34;lat&#34;:[-34.8777122664598,-34.877713859554,-34.8777826397537,-34.8777950085433,-34.8778671658792,-34.8779432675552,-34.8783535191324,-34.8786021663909,-34.8785711205217,-34.8785222604244,-34.87843696967,-34.8792078885025,-34.8800464307519,-34.8800599587703,-34.8804612704245,-34.8808663302904,-34.8810123072752,-34.8821339187014,-34.882170930917,-34.8821937314135,-34.8822118649761,-34.8822490399034,-34.8822932092346,-34.8822974143166,-34.8823477110967,-34.8824010867303,-34.8825055037244,-34.8823653765744,-34.882280211611,-34.8819311170965,-34.881553094418,-34.8811099725973,-34.8810091597559,-34.8807821029693,-34.8799225955994,-34.8798816582065,-34.8790807483498,-34.8790477431685,-34.8781895295587,-34.8773513950253,-34.8772758108307,-34.876686328513,-34.8765688766344,-34.8763983007762,-34.8761715075632,-34.8759855895972,-34.8756182647417,-34.8752690892463,-34.8749924436564,-34.8748155832783,-34.8747571106225,-34.8744474151051,-34.8744288254841,-34.8740195794255,-34.8735925490403,-34.8733620625252,-34.872763438268,-34.8728037448728,-34.8728344448361,-34.8719793677419,-34.8711046361146,-34.8709768424301,-34.8709397346367,-34.8709064182495,-34.8708764415745,-34.8708764375095,-34.8708027777979,-34.8707464176894,-34.8707233001686,-34.8706366589279,-34.8706304329803,-34.870629202887,-34.8706294127166,-34.8708540151586,-34.8712639099229,-34.8715802722457,-34.8717700776332,-34.8720954237558,-34.8724388475349,-34.8729178228881,-34.8730391468535,-34.8733315237442,-34.8737312884728,-34.8743298035827,-34.8743131733394,-34.8742799228579,-34.8742658425465,-34.8745439023322,-34.8748267741956,-34.8748285191164,-34.8751764427161,-34.8756644468924,-34.8758451963595,-34.876053372879,-34.8760805115132,-34.8765003959294,-34.8766902431999,-34.87695644158,-34.8769097507113,-34.8776935291225,-34.8777122664598]}]],[[{&#34;lng&#34;:[-56.1647141648486,-56.1657402776866,-56.1659614912169,-56.1660992589339,-56.1661968229387,-56.166196803379,-56.1668733064634,-56.1669937771527,-56.1669376535317,-56.1663497462158,-56.1663240149776,-56.1662912630183,-56.16621272245,-56.1661471003102,-56.1659619931425,-56.1657590701565,-56.1647496045493,-56.164940688096,-56.1649950761453,-56.1664122486841,-56.166464517307,-56.1667251183723,-56.16683289729,-56.1669205641687,-56.1669970219333,-56.1670741100229,-56.1670970852051,-56.1671833697043,-56.1672570745578,-56.1673626518179,-56.1674740229349,-56.1675609477643,-56.1675865142829,-56.1676228296749,-56.1675909102888,-56.1675607594089,-56.1674724471355,-56.167428633557,-56.1671061376862,-56.1666893029887,-56.1663367896346,-56.1662499464727,-56.1655570058091,-56.164517341074,-56.1644721261384,-56.1637576113627,-56.1631951720123,-56.1630502154265,-56.1627940693631,-56.1622291630264,-56.162065123427,-56.1612954998458,-56.1610876993444,-56.1600954859679,-56.1592498231713,-56.1585602885748,-56.1577924395273,-56.1571610592757,-56.1570135347651,-56.1569899710411,-56.1563684006017,-56.156130659982,-56.1553817095978,-56.1553454686586,-56.1552214881461,-56.1548913484326,-56.1546574070797,-56.1545822226369,-56.1544333391873,-56.1541279083354,-56.1538395887221,-56.1534670486114,-56.1533704543637,-56.152865582492,-56.1528220796073,-56.1524908347617,-56.1525483441534,-56.1526129989692,-56.1526974439417,-56.1529027113462,-56.1533328245537,-56.1541312332914,-56.155382082913,-56.1555613175813,-56.1565169315938,-56.157150255414,-56.1583054831273,-56.1583661827754,-56.1586793178631,-56.1590781199193,-56.1591053085973,-56.1602285097039,-56.1602525734055,-56.1603460955479,-56.1610072423958,-56.1618273508016,-56.1621182675014,-56.1626081784944,-56.1633702615201,-56.1637535291811,-56.1637802681861,-56.1640663718464,-56.1641156059133,-56.1642444890483,-56.1645353290419,-56.1647141648486],&#34;lat&#34;:[-34.8856202386946,-34.8849479717633,-34.8848044412463,-34.8847184450209,-34.8846528808518,-34.8846548172317,-34.8840493680857,-34.8839263420194,-34.8838988462313,-34.8834726559098,-34.8834608603681,-34.8834486650705,-34.8833074720335,-34.8832734378387,-34.8831774337194,-34.8830337477419,-34.8823198063148,-34.8821435321457,-34.8816250902195,-34.8817024721065,-34.8812561462998,-34.8791867682353,-34.8781634056693,-34.877329388462,-34.8766891991333,-34.8760354869972,-34.8757920510344,-34.8748678977583,-34.8739106829711,-34.8729516295552,-34.8717528237349,-34.8708196541421,-34.8705401549973,-34.870218672362,-34.8701136178827,-34.8700668177022,-34.8699477872443,-34.8698542997193,-34.8698326769544,-34.8695890864622,-34.8697762630192,-34.8698219012021,-34.8702161608822,-34.8708953778591,-34.8709528723945,-34.8714104021033,-34.8717516121469,-34.8718326863377,-34.8719567322291,-34.8722876862439,-34.8723750829833,-34.8727717925765,-34.8728785351264,-34.8733989568545,-34.8740417475248,-34.8749111760303,-34.8758649599417,-34.8767141282399,-34.8769227929462,-34.8769659035035,-34.8777881263967,-34.8780793216337,-34.8790837602943,-34.8791301318735,-34.8792986150613,-34.8797628667774,-34.8800951470463,-34.8802233843031,-34.880404604638,-34.8806094354828,-34.8808205981486,-34.8810425280542,-34.8811509507978,-34.8816473539287,-34.8816908406366,-34.8820419064168,-34.882072086078,-34.8821102565198,-34.8821526417973,-34.8822849923599,-34.8825499299793,-34.8830390766885,-34.8836925587333,-34.8838850310413,-34.8850507671674,-34.8858746314136,-34.8871993931998,-34.8872636820414,-34.8876327288533,-34.88811876629,-34.8881502375739,-34.8894555857304,-34.8894917438932,-34.8893722945213,-34.8887474497768,-34.8880242419883,-34.8877575727935,-34.8873236260794,-34.8866410819906,-34.8863020558962,-34.8862754748139,-34.8860774824374,-34.8860532229833,-34.8859672519792,-34.8857726887213,-34.8856202386946]},{&#34;lng&#34;:[-56.166196803379,-56.166197052992,-56.1662272273767,-56.166196803379],&#34;lat&#34;:[-34.8846548172317,-34.884652675616,-34.884625756347,-34.8846548172317]}]],[[{&#34;lng&#34;:[-56.1455993332644,-56.1451708823013,-56.144690304455,-56.1446242298494,-56.1447669507077,-56.1456077402379,-56.1459662582786,-56.1460313612916,-56.1471066339512,-56.1471670050862,-56.1476609547477,-56.1486642734815,-56.1494681517048,-56.1496403958322,-56.1499513269907,-56.1501859745037,-56.1506465377142,-56.1506968783914,-56.1519394989671,-56.1552167154332,-56.1553938552487,-56.1557032411238,-56.1568847059539,-56.1574512389287,-56.1574508473465,-56.1580039172924,-56.1588257878188,-56.1590032693505,-56.1593785362186,-56.1595688960587,-56.1599795783408,-56.1600307764999,-56.1600669132348,-56.1602525734055,-56.1602285097039,-56.1591053085973,-56.1590781199193,-56.1586793178631,-56.1583661827754,-56.1583054831273,-56.157150255414,-56.1565169315938,-56.1555613175813,-56.155382082913,-56.1541312332914,-56.1533328245537,-56.1529027113462,-56.1526974439417,-56.1526129989692,-56.1525483441534,-56.1524908347617,-56.1523736351886,-56.1522882206343,-56.1518939761871,-56.1518307464378,-56.1511441428646,-56.1510732902759,-56.1505072866416,-56.1501436182991,-56.1495702711787,-56.1492245395427,-56.1482709577562,-56.1481252059215,-56.1479765647942,-56.1471783509375,-56.146785474988,-56.1464277071446,-56.1463816567286,-56.1460980037749,-56.1457489737711,-56.1455993332644],&#34;lat&#34;:[-34.8867359596714,-34.887079547285,-34.8874728388656,-34.8875020596085,-34.8875513073248,-34.8878963987117,-34.8880342378664,-34.8880574228051,-34.8884403495022,-34.8884643552159,-34.888686588259,-34.8891481596437,-34.8895142590147,-34.8895969653303,-34.8897318717964,-34.8898331691882,-34.8900027736823,-34.8900160449383,-34.8903436276693,-34.8911286069328,-34.8911648583085,-34.8912267483497,-34.8915278500633,-34.89162768621,-34.8916314943264,-34.8917659058267,-34.8919701011354,-34.8913351653495,-34.8907708268056,-34.8904863967845,-34.88989842074,-34.8898251193583,-34.8897661959009,-34.8894917438932,-34.8894555857304,-34.8881502375739,-34.88811876629,-34.8876327288533,-34.8872636820414,-34.8871993931998,-34.8858746314136,-34.8850507671674,-34.8838850310413,-34.8836925587333,-34.8830390766885,-34.8825499299793,-34.8822849923599,-34.8821526417973,-34.8821102565198,-34.882072086078,-34.8820419064168,-34.8821939535827,-34.8823005615193,-34.8828293201962,-34.8828025574547,-34.8837885495124,-34.8838899822248,-34.8841679631601,-34.8843459501058,-34.884616812398,-34.8847664082984,-34.8851789262528,-34.885237880407,-34.8852950592591,-34.8856233312772,-34.8858766973612,-34.8861029332035,-34.8861300892919,-34.886338112825,-34.8866184082138,-34.8867359596714]}]],[[{&#34;lng&#34;:[-56.1738094897716,-56.1737028322008,-56.1736518309218,-56.173642861729,-56.1735766924064,-56.1735616743646,-56.1734790672457,-56.1733998273572,-56.1732897853175,-56.1733003631771,-56.1731949083419,-56.1730781931489,-56.1730165596963,-56.1729765924175,-56.1739105407452,-56.17506133007,-56.1761871473495,-56.1773550354926,-56.1784532102298,-56.1784271675852,-56.1785248194423,-56.1791039334564,-56.1792111650523,-56.179626994658,-56.1798244323571,-56.1805937041217,-56.1812289089496,-56.1808815396177,-56.1809011822479,-56.1810178078113,-56.1810418527119,-56.1811742105556,-56.1811741634851,-56.1813875968543,-56.1815726181079,-56.181566922991,-56.1815625560142,-56.1815916249935,-56.1816960443243,-56.1812346175423,-56.1812153384329,-56.1806478711257,-56.1806332391294,-56.1813269779704,-56.1815505289716,-56.1825446362133,-56.1836598929032,-56.1836770436119,-56.1836911864685,-56.1838043430238,-56.1845687949953,-56.1841244574901,-56.1836452276987,-56.1831623237931,-56.1827394744689,-56.182673705967,-56.1821867890182,-56.1817477630179,-56.1817312086471,-56.1811141187313,-56.1808368551914,-56.17967312613,-56.1786713729871,-56.1778073195804,-56.1778520551517,-56.1778273715884,-56.176707501807,-56.1761972350519,-56.1756439958106,-56.1754684436074,-56.1743632683951,-56.1742138563395,-56.1741472536574,-56.174010546035,-56.1740003220264,-56.1739447777831,-56.1738742958046,-56.1738094897716],&#34;lat&#34;:[-34.8866764941756,-34.8876005849473,-34.8880133839182,-34.8880847421843,-34.8886651903417,-34.888768768425,-34.8894982195393,-34.8904452647383,-34.8912705596202,-34.8913256543806,-34.8922981694953,-34.8933801491666,-34.8939572034349,-34.8943088522892,-34.8943784365089,-34.8944699587092,-34.8945570311148,-34.8946484849465,-34.8947497158028,-34.8949431177295,-34.8948796441061,-34.894913131568,-34.894933657832,-34.8946079173143,-34.8947318387675,-34.8951619815627,-34.8943973225623,-34.8937283795913,-34.8936433007139,-34.8929392893039,-34.8927995080484,-34.8919743725049,-34.89193839066,-34.8906487430106,-34.8894944552148,-34.8894471390681,-34.8894108573351,-34.889377221421,-34.8892678291036,-34.8884310071841,-34.8883957523356,-34.8874091082685,-34.8873836675667,-34.8871170844575,-34.8870296242198,-34.8866618110543,-34.8862394706956,-34.886232477106,-34.8862272168104,-34.8861846636873,-34.8858855033468,-34.8850570354739,-34.884206661015,-34.883342575137,-34.8825910930733,-34.8824740955211,-34.881601102119,-34.8808181125821,-34.8807821029693,-34.8810091597559,-34.8811099725973,-34.881553094418,-34.8819311170965,-34.882280211611,-34.8823653765744,-34.8825055037244,-34.8824010867303,-34.8823477110967,-34.8822974143166,-34.8822932092346,-34.8822490399034,-34.8834392777174,-34.8839667702796,-34.8849141370837,-34.8849812368604,-34.8855532089239,-34.8861443623959,-34.8866764941756]}]],[[{&#34;lng&#34;:[-56.1662272273767,-56.166197052992,-56.166196803379,-56.1662272273767],&#34;lat&#34;:[-34.884625756347,-34.884652675616,-34.8846548172317,-34.884625756347]}],[{&#34;lng&#34;:[-56.1702419237455,-56.171296202464,-56.1715810777148,-56.1729485879749,-56.1730781931489,-56.1731949083419,-56.1733003631771,-56.1732897853175,-56.1733998273572,-56.1734790672457,-56.1735616743646,-56.1735766924064,-56.173642861729,-56.1736518309218,-56.1737028322008,-56.1738094897716,-56.1738742958046,-56.1739447777831,-56.1740003220264,-56.174010546035,-56.1741472536574,-56.1742138563395,-56.1743632683951,-56.1731120272647,-56.172806262109,-56.1715780795019,-56.1702553990284,-56.1703688429662,-56.17018699375,-56.1696720898676,-56.1693905946933,-56.16895461985,-56.168813635474,-56.1681591195901,-56.167755913313,-56.1676176603457,-56.1671565475381,-56.1670173023924,-56.1669937771527,-56.1668733064634,-56.166196803379,-56.1661968229387,-56.1660992589339,-56.1659614912169,-56.1657402776866,-56.1647141648486,-56.1645353290419,-56.1642444890483,-56.1641156059133,-56.1640663718464,-56.1637802681861,-56.1638003241211,-56.1638298964777,-56.1638411643887,-56.1647314251737,-56.1651652188922,-56.1654466306902,-56.1654307908545,-56.1656722103607,-56.1668443065074,-56.1666892700885,-56.1669624349218,-56.1678249555865,-56.1677128356702,-56.1676744254106,-56.1683792311125,-56.1690501484457,-56.1690456793026,-56.1689368664245,-56.1698517141711,-56.1702419237455],&#34;lat&#34;:[-34.8931811582085,-34.8932587582289,-34.893278555939,-34.8933714855319,-34.8933801491666,-34.8922981694953,-34.8913256543806,-34.8912705596202,-34.8904452647383,-34.8894982195393,-34.888768768425,-34.8886651903417,-34.8880847421843,-34.8880133839182,-34.8876005849473,-34.8866764941756,-34.8861443623959,-34.8855532089239,-34.8849812368604,-34.8849141370837,-34.8839667702796,-34.8834392777174,-34.8822490399034,-34.8822118649761,-34.8821937314135,-34.882170930917,-34.8821339187014,-34.8810123072752,-34.8810839840739,-34.8814292053946,-34.8816179337162,-34.8820157086766,-34.8821512930451,-34.8827840088409,-34.8831726783502,-34.8833082541035,-34.8837511587707,-34.8838957503195,-34.8839263420194,-34.8840493680857,-34.8846548172317,-34.8846528808518,-34.8847184450209,-34.8848044412463,-34.8849479717633,-34.8856202386946,-34.8857726887213,-34.8859672519792,-34.8860532229833,-34.8860774824374,-34.8862754748139,-34.8863001668401,-34.8863255805306,-34.8863458262552,-34.887944517539,-34.8887449803581,-34.8892766862391,-34.8896868594426,-34.8897042534131,-34.8898349341419,-34.8907437136998,-34.890768114114,-34.8908523205007,-34.8915310171146,-34.8918891553783,-34.8919356396988,-34.8919957003617,-34.8920966580296,-34.8930928752012,-34.8931544652757,-34.8931811582085]}]],[[{&#34;lng&#34;:[-56.1602525734055,-56.1600669132348,-56.1600307764999,-56.1599795783408,-56.1595688960587,-56.1593785362186,-56.1590032693505,-56.1588257878188,-56.1593828453302,-56.1594603558386,-56.1604710391828,-56.1606275807152,-56.1626099810907,-56.1626613492493,-56.1625358695362,-56.1628887682017,-56.1636811559386,-56.1641278799412,-56.1644314271237,-56.1646856165491,-56.1648513753684,-56.1647979161315,-56.1647012956471,-56.1648296167523,-56.1649241572343,-56.1649245380863,-56.1649238118544,-56.1648992066553,-56.1648979643956,-56.1648724652036,-56.1648649043879,-56.1648556542418,-56.164752218534,-56.1647450372139,-56.1646776059909,-56.1646515180262,-56.1645435094378,-56.1644040013129,-56.1643433450309,-56.1642708159591,-56.1652240659078,-56.1654528722424,-56.16660296871,-56.1679596517194,-56.1691178740443,-56.1692175189852,-56.1692728143467,-56.1693236718462,-56.1696070096374,-56.1698361127918,-56.1699415921902,-56.170377438634,-56.1709955257307,-56.1710610111699,-56.1711149439844,-56.1712493308539,-56.1713676109579,-56.1714540371968,-56.1714790384239,-56.1715810777148,-56.171296202464,-56.1702419237455,-56.1698517141711,-56.1689368664245,-56.1690456793026,-56.1690501484457,-56.1683792311125,-56.1676744254106,-56.1677128356702,-56.1678249555865,-56.1669624349218,-56.1666892700885,-56.1668443065074,-56.1656722103607,-56.1654307908545,-56.1654466306902,-56.1651652188922,-56.1647314251737,-56.1638411643887,-56.1638298964777,-56.1638003241211,-56.1637802681861,-56.1637535291811,-56.1633702615201,-56.1626081784944,-56.1621182675014,-56.1618273508016,-56.1610072423958,-56.1603460955479,-56.1602525734055],&#34;lat&#34;:[-34.8894917438932,-34.8897661959009,-34.8898251193583,-34.88989842074,-34.8904863967845,-34.8907708268056,-34.8913351653495,-34.8919701011354,-34.8921703436198,-34.8922047058051,-34.8927211526529,-34.8928005108552,-34.8939127646834,-34.8939351654027,-34.8940211255679,-34.8941504155794,-34.8944797506137,-34.8947040435088,-34.8948634558125,-34.8950080378771,-34.8951033461967,-34.8953898022628,-34.8962766495253,-34.8962914461133,-34.8963068467811,-34.8963069088218,-34.8963105109136,-34.8964325518703,-34.896502751239,-34.8967282647211,-34.8967951319065,-34.8968769392174,-34.8975803971984,-34.8976497402279,-34.8983134304901,-34.8988912593473,-34.8998734894961,-34.900929859412,-34.9015114126672,-34.9022056707139,-34.9019417579406,-34.9019591819266,-34.902023743556,-34.9021057741947,-34.9021834992795,-34.9012426186969,-34.9006259541185,-34.900425902842,-34.8999079390482,-34.8994913258568,-34.8993016813856,-34.8985262531441,-34.8974510136156,-34.8973246434432,-34.8972163325845,-34.8961352470189,-34.8951469711953,-34.8944391503206,-34.8941912016138,-34.893278555939,-34.8932587582289,-34.8931811582085,-34.8931544652757,-34.8930928752012,-34.8920966580296,-34.8919957003617,-34.8919356396988,-34.8918891553783,-34.8915310171146,-34.8908523205007,-34.890768114114,-34.8907437136998,-34.8898349341419,-34.8897042534131,-34.8896868594426,-34.8892766862391,-34.8887449803581,-34.887944517539,-34.8863458262552,-34.8863255805306,-34.8863001668401,-34.8862754748139,-34.8863020558962,-34.8866410819906,-34.8873236260794,-34.8877575727935,-34.8880242419883,-34.8887474497768,-34.8893722945213,-34.8894917438932]}]],[[{&#34;lng&#34;:[-56.1822827021401,-56.1822833065683,-56.182726990116,-56.1832215895602,-56.1837632470297,-56.1837822943294,-56.1838096136122,-56.1835497567614,-56.1847978191349,-56.1851240192396,-56.1861785696608,-56.1863000604417,-56.1863359087212,-56.1863564830819,-56.1865886357951,-56.1865982404968,-56.1866423053014,-56.1867908876363,-56.1868387580014,-56.1868806344158,-56.1868845299665,-56.1869220996026,-56.1867350028776,-56.1863389634665,-56.1863211565979,-56.186290909168,-56.1862659354433,-56.185798687651,-56.1854328126132,-56.1852173405078,-56.1851371173721,-56.1849738107316,-56.1847681926489,-56.1845628904762,-56.1843525307383,-56.1843304754054,-56.1841095064461,-56.1836403403184,-56.1834698886622,-56.1833488295622,-56.182930123208,-56.1820796662722,-56.1810200093634,-56.1807190399791,-56.1796659556266,-56.1795963372226,-56.1793932299619,-56.1784264356097,-56.1783647440519,-56.1773241663225,-56.1765264929171,-56.1764580230552,-56.1764251304897,-56.1761916794222,-56.1760688356797,-56.1759896136121,-56.1759241672981,-56.1754659691445,-56.1746744713904,-56.1738953345696,-56.1741063884155,-56.174193023929,-56.174461816719,-56.1746032136635,-56.1746186962728,-56.1745267452042,-56.1737629604676,-56.1736818764537,-56.1735911854432,-56.172977788183,-56.172895953203,-56.1728452665145,-56.1727952271031,-56.172695034079,-56.1718509486548,-56.1717811685021,-56.1714094694705,-56.1710666378508,-56.170959044416,-56.1708795000687,-56.1698767470812,-56.1698025770337,-56.1694968194762,-56.1694195446236,-56.1694466135837,-56.1694863807593,-56.1695059491846,-56.1699185549977,-56.1700576887308,-56.1709588835,-56.1714042548561,-56.1714310169913,-56.1722654389908,-56.1724782737551,-56.1725091868572,-56.1734933485155,-56.173985134785,-56.1747312973637,-56.1754692513141,-56.1749453219083,-56.1745218401746,-56.1743798636203,-56.1735949541814,-56.1740131603354,-56.1742217437102,-56.1745505488748,-56.174759887585,-56.1748562827822,-56.1751194409587,-56.1753302378483,-56.1764494601261,-56.1764620640489,-56.176651195864,-56.1768492417032,-56.1769822243492,-56.1771107125017,-56.1775456740361,-56.1786817508584,-56.1786726945097,-56.1786877433385,-56.1787797145191,-56.1799960102032,-56.1803449132592,-56.1811154241931,-56.1822827021401],&#34;lat&#34;:[-34.8708764375095,-34.8708764415745,-34.8709064182495,-34.8709397346367,-34.8709768424301,-34.8709002686585,-34.8707767712825,-34.8700780355211,-34.8697766145533,-34.8698117568437,-34.8699349937335,-34.8690648107912,-34.8688078140848,-34.8686590273516,-34.8667448378195,-34.8666611585721,-34.8661841727138,-34.8643716954315,-34.8634701688245,-34.863019356329,-34.8629697690889,-34.8624693910311,-34.8621003473726,-34.8613275083287,-34.8612386630479,-34.8610580752891,-34.8609743149566,-34.8602189654054,-34.8596991355887,-34.8594576706142,-34.8592811173404,-34.8587385936301,-34.8582611528329,-34.8577031429551,-34.8572395138497,-34.8571945056378,-34.8567263992233,-34.8557316695491,-34.8553310245929,-34.8551420704778,-34.8546159207956,-34.8548841941511,-34.8552206460012,-34.8553251382239,-34.8556840933462,-34.855706820067,-34.8551658412556,-34.8559286619041,-34.8559775059909,-34.8568013663423,-34.8574617535209,-34.8575149907369,-34.857546988509,-34.8577187843895,-34.8578115451029,-34.8577296898521,-34.8576663396312,-34.8572181684201,-34.8564549108765,-34.8566237813007,-34.8572767180368,-34.8574928178183,-34.8583979879711,-34.8587200970878,-34.8587570685136,-34.8588259736943,-34.8594229615762,-34.8594817618525,-34.8595490481164,-34.8600168541591,-34.860079679514,-34.8601178377975,-34.8601559412269,-34.8602291854726,-34.860855932632,-34.8609207674415,-34.861228619551,-34.8614887900333,-34.861572947169,-34.861633749154,-34.8623719541138,-34.8624275837726,-34.8626569094058,-34.8627337340263,-34.8627516882857,-34.8627831311683,-34.8628056144301,-34.862511284236,-34.8624120331169,-34.8632794604714,-34.8637289606234,-34.8637559311995,-34.8645829643883,-34.8648212606171,-34.8648509574479,-34.8658710820772,-34.8655683083887,-34.8664016123116,-34.8672189647961,-34.8677891729121,-34.8682094688361,-34.8683450629321,-34.8691179144565,-34.8696350448755,-34.8698632279831,-34.8702318116937,-34.8702448712385,-34.8702508847071,-34.8702731189669,-34.8702909287977,-34.8703685502512,-34.8703694243119,-34.8703913067065,-34.8704142201192,-34.8704296056939,-34.8704359665674,-34.8704574985526,-34.8705453068398,-34.870629202887,-34.8706304329803,-34.8706366589279,-34.8707233001686,-34.8707464176894,-34.8708027777979,-34.8708764375095]}]],[[{&#34;lng&#34;:[-56.2205938665659,-56.2206681322173,-56.2217896298229,-56.2222824908102,-56.2234305400484,-56.2235514118126,-56.2234351660758,-56.2230044178812,-56.2230055622794,-56.2227489032972,-56.2227571495434,-56.2226013072991,-56.2224549229919,-56.2220693007834,-56.2211411554484,-56.2216756744468,-56.2220472860965,-56.2235894514306,-56.2231819012466,-56.2229834455645,-56.2225446559362,-56.2224472590394,-56.2224019856908,-56.2218362072377,-56.2212557111944,-56.2207256144766,-56.2201454441548,-56.2200334826945,-56.2193472440348,-56.2192968761959,-56.219307763564,-56.2191171682931,-56.2190984019481,-56.2189823621034,-56.2189575245888,-56.218865088289,-56.216512281553,-56.2148276334851,-56.2147989061534,-56.2147355285694,-56.2147898615903,-56.2148544632403,-56.2149190849007,-56.2149830045324,-56.2150469425068,-56.2151108821488,-56.2151245458622,-56.2151747801026,-56.2152370505504,-56.215299966331,-56.2153625586115,-56.215424467206,-56.2154863758005,-56.2155476040441,-56.2155667739305,-56.2156085087876,-56.2156690500103,-56.2157289308924,-56.2157888117745,-56.2158476654602,-56.2159062023158,-56.2159643723155,-56.2160218819747,-56.2160790514585,-56.2160848677915,-56.2161355339213,-56.2161913360332,-56.2162464744695,-56.2163009092096,-56.2163550237845,-56.2164259170126,-56.2164964667302,-56.2165673599584,-56.2166372693457,-56.2167061348615,-56.2167739731807,-56.216840807649,-56.2169066182559,-56.2169714016663,-56.2170351812257,-56.217097576738,-56.2171593085747,-56.2172196730396,-56.217279013643,-56.217337006885,-56.2173939562552,-56.2174495582639,-56.2175041364113,-56.2175573505218,-56.2176091939255,-56.2176600168028,-56.2177094923186,-56.2177576004625,-56.2178043212243,-56.21785004147,-56.217869311408,-56.2178930436474,-56.2179525276581,-56.2179471795718,-56.2176033208966,-56.2173454764758,-56.2169476994425,-56.2168578797869,-56.2166166320359,-56.2163965218528,-56.2159443653307,-56.2156560933282,-56.215114650759,-56.2148243243636,-56.2144699582746,-56.2141907428371,-56.2140510910004,-56.2136216504233,-56.2126461810394,-56.2123689780787,-56.2120671174014,-56.2116673995901,-56.2111311013407,-56.2107371948597,-56.2102005597699,-56.2101374188131,-56.2092882275902,-56.2084271468422,-56.2075381216825,-56.2067894094922,-56.2066670885218,-56.2054238796471,-56.2036349670591,-56.202457306376,-56.201064247123,-56.2008696463817,-56.2009367233813,-56.2009396712669,-56.200977337906,-56.2009981970521,-56.2010112098063,-56.2010420266923,-56.2009909268572,-56.2010338130991,-56.2010238929024,-56.2010423180061,-56.2010825912929,-56.201165599357,-56.201203405441,-56.2012471900888,-56.2013809696149,-56.2033329529694,-56.2038690261027,-56.2048671975519,-56.2052849996898,-56.2058782573146,-56.20590675201,-56.2070257257601,-56.2072071992613,-56.2083752136867,-56.208654570501,-56.2087051670365,-56.2087658000257,-56.2087921517512,-56.2093762277085,-56.2101162524611,-56.2103845211583,-56.2105911278625,-56.2111917342773,-56.2124734402859,-56.2128615521118,-56.2141093991546,-56.2141958028036,-56.2166535344007,-56.2170712345706,-56.2179146614629,-56.2196155253086,-56.2217072793803,-56.2214888203298,-56.2214849073622,-56.221481875282,-56.2214771214409,-56.2213857145869,-56.221371410052,-56.2211805589774,-56.2211693347585,-56.2211411289698,-56.2211329918258,-56.2208687209421,-56.2208213098312,-56.2208499019082,-56.2209123913346,-56.2208803915695,-56.2206638638106,-56.2204972867221,-56.2204274480029,-56.2203954493866,-56.2201146311462,-56.2201048824792,-56.2200858737417,-56.2201358203047,-56.2203656282923,-56.2205367060604,-56.2205938665659],&#34;lat&#34;:[-34.8271595494539,-34.8270947310078,-34.8264473875844,-34.8261591202473,-34.8254892946988,-34.8254713018367,-34.8253797983061,-34.8247810585958,-34.8247143825554,-34.8243507413518,-34.8243090522797,-34.8241011363751,-34.8239062813822,-34.8241373338752,-34.8229999472959,-34.8226873060588,-34.8224563002566,-34.8215456039205,-34.821087160823,-34.820862431591,-34.8203680232787,-34.8202826992749,-34.8202422717587,-34.8196130539217,-34.8189748581211,-34.8192784680338,-34.8196361866287,-34.8197005166431,-34.8201164085214,-34.8206479835708,-34.8206936107889,-34.8225239418077,-34.8227251322334,-34.8239846217844,-34.8242819153427,-34.8243346089484,-34.8257183625855,-34.8267063705704,-34.8267232180888,-34.8267603866507,-34.8267647288901,-34.826773546771,-34.826786870309,-34.826795691525,-34.8268090150629,-34.8268223419359,-34.8268223019153,-34.8268266541599,-34.826848999017,-34.8268623292251,-34.8268801684252,-34.8268980076253,-34.8269158468255,-34.8269336860256,-34.8269426406437,-34.8269560342178,-34.826973880088,-34.8269962316153,-34.8270185831426,-34.8270409380049,-34.8270678018592,-34.8270901600566,-34.827117027246,-34.8271438944355,-34.8271466591946,-34.8271707616249,-34.8271976321494,-34.827229015001,-34.8272558888605,-34.8272872717121,-34.827327619187,-34.8273679666619,-34.8274083141368,-34.8274576762608,-34.8275025360628,-34.8275473958648,-34.8275967679939,-34.8276461434581,-34.8276955222574,-34.8277494100487,-34.8277987988531,-34.8278526933145,-34.827906591111,-34.8279604922425,-34.8280189057011,-34.8280728135028,-34.8281312336316,-34.8281896570953,-34.8282480872293,-34.8283065173632,-34.8283649541672,-34.8284278999633,-34.8284908490944,-34.8285492959036,-34.8286122550399,-34.8286437446132,-34.8286797265034,-34.8287651772392,-34.8287657571274,-34.828973568045,-34.8291271344617,-34.829364039421,-34.8294175336761,-34.8295534804539,-34.8296803492168,-34.8299386257499,-34.8301017565473,-34.8304098821222,-34.8305730162546,-34.8307769080735,-34.8309318021367,-34.8310095198944,-34.8308278539514,-34.8304173726519,-34.8303055383094,-34.830180253697,-34.8300192106429,-34.8297954785919,-34.8296344121925,-34.8294106768064,-34.829368327365,-34.8299001692502,-34.8303940072685,-34.8309059512911,-34.8313672241383,-34.8314434367922,-34.8322417968875,-34.8333017201837,-34.8339947542658,-34.8348485357512,-34.8349650028437,-34.8361277039349,-34.8362032613148,-34.8371686874177,-34.8377405547796,-34.8380100024964,-34.8386481046635,-34.8387202518293,-34.8387901824504,-34.838872301193,-34.8391135645409,-34.8400377680957,-34.8414289720048,-34.8420048500811,-34.8426717875661,-34.8425791848096,-34.8414106488324,-34.8410980843015,-34.8405137362716,-34.8402691201168,-34.8399113089178,-34.8399427751457,-34.8408137976876,-34.8409708510138,-34.8418700163823,-34.8420801833707,-34.8421470983588,-34.8421786095064,-34.8422237081479,-34.8426850876278,-34.8432819958951,-34.8436356707288,-34.8438723650691,-34.844708853134,-34.8439613342861,-34.8437257961464,-34.8429598486536,-34.8429059693997,-34.8414788039817,-34.8412429729341,-34.840735800796,-34.839702981478,-34.8384464976629,-34.8347267578522,-34.8346731349227,-34.8345929788704,-34.834494598923,-34.8335320547035,-34.8334796433505,-34.8326144559539,-34.8325684796827,-34.8324665055955,-34.8324298485916,-34.831197167395,-34.8310802394093,-34.8310638193744,-34.8310268868723,-34.83088165129,-34.8299646928831,-34.8292440942289,-34.8289498726371,-34.8288130179486,-34.8276212523103,-34.8275798792979,-34.8274963898046,-34.8274681483282,-34.827314225073,-34.8272166633581,-34.8271595494539]}]],[[{&#34;lng&#34;:[-56.2572348392905,-56.2571291587159,-56.2570921596345,-56.2570580420392,-56.2570247181866,-56.2570006457718,-56.2569692896006,-56.2568851595459,-56.2568359341591,-56.2568072660409,-56.2567222221816,-56.2566166944249,-56.256482245086,-56.2564127692555,-56.2564013033422,-56.2562158210176,-56.2561793221942,-56.2560815584416,-56.2559445211013,-56.2558224581503,-56.2556998615908,-56.2555695877385,-56.2554595376496,-56.2553335726862,-56.2552596745751,-56.2550995986865,-56.2549815111191,-56.2548650377174,-56.2547418141679,-56.2546221191047,-56.2544928057479,-56.2543114788996,-56.2542197582636,-56.2541055126776,-56.2539862111507,-56.2538561507419,-56.2537308127686,-56.2536189017199,-56.2535362124082,-56.2534313516622,-56.2532506251235,-56.2531287089149,-56.2529814596413,-56.2528806076294,-56.2527559900276,-56.2521644890477,-56.2521576124073,-56.2521145325449,-56.2520710234394,-56.2520522137388,-56.2519687506948,-56.2519402026385,-56.2518762696666,-56.2517729630554,-56.251666201329,-56.2515429711093,-56.2514437265931,-56.251333796566,-56.2512276751698,-56.251114009883,-56.2510017586589,-56.2508986921715,-56.2508021290381,-56.2506830276145,-56.250577266404,-56.2504847120047,-56.2504091997277,-56.250318432917,-56.250218581421,-56.2500936169736,-56.2499751225297,-56.2498505316083,-56.2497488124825,-56.2496070593768,-56.2495897771305,-56.2495606821255,-56.2495441202508,-56.2495118369348,-56.2494678008909,-56.2494355375853,-56.2492669973314,-56.2492567787281,-56.2492443523195,-56.2492119622818,-56.2492009566058,-56.2491804860487,-56.2491534921272,-56.249104113328,-56.2490553481785,-56.2490191495099,-56.2489789754578,-56.2489443375942,-56.2489270286675,-56.2489112805458,-56.2489056576459,-56.2488924041441,-56.2488818653757,-56.2488727406698,-56.2488626421284,-56.2488348811447,-56.2488137635872,-56.2487909718329,-56.2487318746883,-56.2487106770895,-56.2487005318573,-56.2486825425798,-56.2486705563982,-56.2486627056827,-56.2485798429483,-56.2485589321641,-56.2485445914349,-56.2485276360239,-56.2485076523845,-56.2484950525531,-56.2484856276924,-56.2484528974793,-56.2483887577341,-56.2483714488074,-56.2483667530524,-56.2483443748447,-56.2483219499463,-56.2482991115012,-56.2482802284294,-56.2482715906414,-56.2482156751377,-56.2482030953166,-56.2481849859771,-56.2481582521898,-56.2481488473395,-56.2480735951967,-56.2480591744262,-56.2480402713441,-56.247996408723,-56.2479443685512,-56.247927213037,-56.2479176614444,-56.2478995721152,-56.2478797752388,-56.2478184702889,-56.2478059038081,-56.2477736071519,-56.2477599334333,-56.2477311052325,-56.247687836251,-56.2476657848785,-56.2476387442663,-56.2475130994681,-56.2474642809578,-56.2474345522926,-56.2473937779309,-56.2473134698473,-56.2473016570885,-56.2472584214574,-56.2472482161943,-56.247221482407,-56.2471845433566,-56.2471704761018,-56.2471237186544,-56.2471146406393,-56.2471068099342,-56.2470813167867,-56.2470588985584,-56.2470495070483,-56.2470314443996,-56.2470181108564,-56.2469946054007,-56.2469750086275,-56.246921921249,-56.2469122829449,-56.2469102485624,-56.2468915455835,-56.2468641781361,-56.2468536993986,-56.2468057480022,-56.2468073888484,-56.2467873118275,-56.2466723191895,-56.2465938653955,-56.2465592808928,-56.2465102822896,-56.2464131855476,-56.2463515470925,-56.2462921031023,-56.2462108078429,-56.2461752828551,-56.2461311867803,-56.2461025987034,-56.2460261526115,-56.2459373134616,-56.2458620079579,-56.2458264362794,-56.2458064392997,-56.245778678316,-56.2457659184021,-56.2457456812986,-56.2457093358877,-56.2456851234007,-56.2456713362903,-56.2456497718357,-56.2456359180242,-56.2456132463319,-56.2455829773881,-56.245564767997,-56.2455569372918,-56.2455318176703,-56.2455197914681,-56.2455017755102,-56.2454862741824,-56.2454447994595,-56.2453323014414,-56.2452899129139,-56.2452724905954,-56.245244809653,-56.2452136269046,-56.2451841917241,-56.2451357333996,-56.245096159657,-56.2450795310812,-56.2450632893717,-56.2450485551061,-56.2450325735307,-56.2450128633657,-56.2449918658701,-56.2449511648795,-56.2449068020004,-56.2448661210202,-56.2448389870265,-56.2447797231293,-56.2446944258059,-56.244653764836,-56.2445723495147,-56.2445347701341,-56.2444599848988,-56.2444014613834,-56.2443538835129,-56.2442348954811,-56.2442124505723,-56.2441420876177,-56.244039127852,-56.2439739675805,-56.2439147770545,-56.2438359230541,-56.2438026258819,-56.2437737109697,-56.243673312525,-56.2435532706163,-56.2434699009538,-56.2434271389003,-56.2433785871943,-56.2433156680786,-56.2432384082337,-56.2431441329469,-56.2430608099751,-56.2429292154418,-56.2428865400997,-56.2428272928777,-56.24278520784,-56.2427157320096,-56.2426777224071,-56.2426579888966,-56.2426016098205,-56.2425432630629,-56.2425001541639,-56.2424579824149,-56.2423657781961,-56.2422494115162,-56.2421779813445,-56.2420891288543,-56.2420299916891,-56.2419500871469,-56.2418821120905,-56.2418536707559,-56.2417815568982,-56.2417305739384,-56.2417561004364,-56.2417502040621,-56.2417326516766,-56.2417256647399,-56.2417009153093,-56.241700268309,-56.2416697659114,-56.2416416647523,-56.2415178442282,-56.2415052077112,-56.2414927279418,-56.2414895763164,-56.2414929013645,-56.2414606413939,-56.2414468642887,-56.2414149911843,-56.2413646485546,-56.2412997083966,-56.2412142543258,-56.2411336460874,-56.2410745322675,-56.2410075443868,-56.2409490275415,-56.240901443001,-56.2408525311092,-56.2408667017507,-56.2408784144579,-56.2408095222618,-56.2407968323839,-56.2408645139557,-56.2408640603885,-56.2408068909047,-56.2408629831663,-56.2408965971685,-56.240873475244,-56.2408728916096,-56.2408607820311,-56.2408888831902,-56.2408518343402,-56.2400332309943,-56.2383726821877,-56.2379769340888,-56.2374299093089,-56.2367516295026,-56.2361779269629,-56.235638251972,-56.2335459996106,-56.2328040136161,-56.2322308880406,-56.2320370807093,-56.2320012479441,-56.231637361944,-56.2313332962704,-56.231210418425,-56.2310520178977,-56.2306501594581,-56.2305654349785,-56.2304207939783,-56.229926872185,-56.2296468453837,-56.2288724226607,-56.2283032191079,-56.228063665564,-56.2277758487957,-56.2272847004984,-56.2269914559314,-56.226477460851,-56.2256994165198,-56.2256994162601,-56.2249073077495,-56.2241357398322,-56.223622761943,-56.2228395747305,-56.2220702679488,-56.2212557111944,-56.2218362072377,-56.2224019856908,-56.2224472590394,-56.2225446559362,-56.2229834455645,-56.2231819012466,-56.2235894514306,-56.2220472860965,-56.2216756744468,-56.2211411554484,-56.2220693007834,-56.2224549229919,-56.2226013072991,-56.2227571495434,-56.2227489032972,-56.2230055622794,-56.2230044178812,-56.2234351660758,-56.2235514118126,-56.2234305400484,-56.2222824908102,-56.2217896298229,-56.2206681322173,-56.2205938665659,-56.2205930729142,-56.2205367060604,-56.2203656282923,-56.2201358203047,-56.2200858737417,-56.2201048824792,-56.2201146311462,-56.2203954493866,-56.2204274480029,-56.2204972867221,-56.2206638638106,-56.2208803915695,-56.2209123913346,-56.2208499019082,-56.2208213098312,-56.2208687209421,-56.2211329918258,-56.2211411289698,-56.2211693347585,-56.2211805589774,-56.221371410052,-56.2213857145869,-56.2214771214409,-56.221481875282,-56.2214849073622,-56.2214888203298,-56.2217072793803,-56.2217911236585,-56.2221860451609,-56.2235408096781,-56.2245585912408,-56.2252012702671,-56.2260181212107,-56.2261731510007,-56.2262954563245,-56.2263614787671,-56.2264176849991,-56.2265772224342,-56.2268938739704,-56.2269310822874,-56.2276595523832,-56.2286232446787,-56.2291692473536,-56.2295598402353,-56.2308111072886,-56.2308893981976,-56.2310365144169,-56.2312513648969,-56.2317035952553,-56.2317304503699,-56.2324084921384,-56.2325541860672,-56.2327488707084,-56.2333078806575,-56.2336185019818,-56.2342111230164,-56.2345696762216,-56.2354230439783,-56.2364450027147,-56.2380273730327,-56.2381547719108,-56.2400567106842,-56.2403928545017,-56.2406263536708,-56.2405675366405,-56.2409960499128,-56.2410924014832,-56.2416440083584,-56.2422441187866,-56.2426981862941,-56.2431954381287,-56.244857385843,-56.2449489827926,-56.2450314713483,-56.2459741341358,-56.246009398826,-56.2447475422246,-56.2444025849782,-56.2447116671764,-56.2448023609599,-56.245077234448,-56.2452891888692,-56.2455370087234,-56.2462632282108,-56.2465806402419,-56.2466945907678,-56.2470741916835,-56.2472017332707,-56.2479407976656,-56.248219638858,-56.248598011722,-56.2494520674265,-56.2497455365222,-56.2499763188417,-56.2500076259592,-56.2501930749649,-56.2506132911558,-56.2506987626128,-56.2507847734207,-56.2510796993057,-56.2510712968665,-56.2510892132093,-56.2512219434351,-56.2514664581489,-56.2528802407735,-56.2553509149634,-56.2595130348084,-56.262364391993,-56.2622396876798,-56.2621171044605,-56.2619969358198,-56.261890841104,-56.2618059840077,-56.2617657432545,-56.2617359478883,-56.2616843412734,-56.261650590534,-56.2616185139913,-56.2615644461071,-56.2615070431696,-56.2614262815187,-56.2613985605557,-56.2613192930087,-56.2612782518427,-56.2612118109108,-56.2611543346021,-56.2611161882624,-56.2610853590296,-56.2609840401102,-56.2609562791265,-56.2609130635057,-56.2607694627805,-56.260643737941,-56.2605612487325,-56.2605351219249,-56.260484635888,-56.2603930486541,-56.2602124688578,-56.2600979497974,-56.2599891670287,-56.2599092391412,-56.2597885969229,-56.259680427804,-56.2595691637556,-56.2594452665253,-56.259327692556,-56.259227587596,-56.2591657223572,-56.2591065651817,-56.2590555588764,-56.2590413982401,-56.2590829196537,-56.2591409429111,-56.2591907019065,-56.2592540145584,-56.2592942619817,-56.259296156292,-56.2593294734745,-56.2593802596662,-56.2594166717782,-56.2594602609249,-56.2594987674504,-56.2595218660296,-56.2595357331812,-56.2595276556821,-56.2594653568864,-56.2593731159821,-56.2592747652601,-56.2591712718859,-56.2590640499221,-56.2589653590247,-56.2588701099023,-56.2587742004393,-56.2586431795352,-56.2584883396803,-56.2583283771835,-56.2582425929424,-56.258165239716,-56.2580938028742,-56.2580183439581,-56.2579454063423,-56.2578520582003,-56.2577111655384,-56.2576909284349,-56.2576609729861,-56.2575986608501,-56.2575436724912,-56.2575424318514,-56.2574877970082,-56.2575348012494,-56.2575693990924,-56.2576110739185,-56.2575295918962,-56.2574801063752,-56.2574296803692,-56.2573854975831,-56.2573386134037,-56.2573190633212,-56.257356776104,-56.2573372460318,-56.2573232321378,-56.2572988045463,-56.2572348392905],&#34;lat&#34;:[-34.8174636968343,-34.8172912498412,-34.8172306986134,-34.8172101413449,-34.8172010032988,-34.8171904044994,-34.8171853418885,-34.817189317272,-34.8171909647883,-34.817186629219,-34.8171869160336,-34.8172079468798,-34.8172430116302,-34.8172564852456,-34.8172610942893,-34.8172605406704,-34.8172665704468,-34.8172664970756,-34.8172625750529,-34.8172742343993,-34.8172859404364,-34.8172983868553,-34.8173088989433,-34.8173209251456,-34.8173279821183,-34.8173620063322,-34.8173870992732,-34.8174118520389,-34.8174380388774,-34.8174634719939,-34.8174909528332,-34.8175294860391,-34.8175393911474,-34.8175517308446,-34.8175646174906,-34.8175786647351,-34.8175922050516,-34.8176042912847,-34.8176132225575,-34.8176168377553,-34.8176148433934,-34.8176074529153,-34.8176015632111,-34.8175877560904,-34.8175706872876,-34.8174187577864,-34.8173953323836,-34.8173836241477,-34.8173657349218,-34.8173298897688,-34.8172579193185,-34.8172254559096,-34.817204144919,-34.8171729421603,-34.8171327347576,-34.8170790670798,-34.8170388329967,-34.8169806096361,-34.8169313909195,-34.816877683221,-34.8168329935067,-34.8167792524578,-34.8167299937204,-34.8166808150244,-34.8166360986297,-34.8165688039241,-34.8164924378735,-34.8164062134053,-34.816416452019,-34.8164258835497,-34.8164307860781,-34.8164474746848,-34.8164218281249,-34.8164223017025,-34.8164321000891,-34.8164318266147,-34.8164361488438,-34.8164369092359,-34.8164500426759,-34.8164553454106,-34.8164546116989,-34.8164585403917,-34.8164648970033,-34.8164729811725,-34.8164769098653,-34.8164782772371,-34.816482526095,-34.8164830797139,-34.8164955794937,-34.8164984076189,-34.8165015492391,-34.8165017960331,-34.8165051044059,-34.8165064517675,-34.8165106606047,-34.8165110608111,-34.8165168571338,-34.8165156765249,-34.8165218597137,-34.8165290834392,-34.8165340593387,-34.816538768434,-34.8165510014095,-34.8165506345536,-34.8165573847016,-34.8165610465901,-34.8165605129815,-34.8165650820046,-34.8165661292113,-34.816570491461,-34.8165693708831,-34.8165770281655,-34.8165844319838,-34.8165838250042,-34.8165890543677,-34.8165890877183,-34.8165887275325,-34.8165933299061,-34.8165991929298,-34.8166074705321,-34.8166168753824,-34.8166163017532,-34.8166209107969,-34.8166248394897,-34.8166250195826,-34.8166296086159,-34.8166303223173,-34.816639500384,-34.8166486250899,-34.8166715235659,-34.8166703562972,-34.8166813419628,-34.8166942619593,-34.8167064615843,-34.8167158797748,-34.8167214893345,-34.8167254447077,-34.8167307007517,-34.8167289598539,-34.8167354965584,-34.8167343026093,-34.8167401122722,-34.8167402923651,-34.8167495237926,-34.8167489501634,-34.8167540327847,-34.8167634643154,-34.8167717018971,-34.8167933930838,-34.8168089277621,-34.8168527370223,-34.8168534240433,-34.8168691588248,-34.8168763358595,-34.8168855139262,-34.8169087725879,-34.8169227064406,-34.8169396618517,-34.8169397752435,-34.8169482462789,-34.8169632006579,-34.8169756870975,-34.8169867594744,-34.8169972115315,-34.817008944249,-34.8170343506851,-34.8170526000968,-34.8171064278572,-34.8171979684003,-34.817319577784,-34.8173930023176,-34.8174280270474,-34.8174353574946,-34.8174688947906,-34.8175103161527,-34.8175410653442,-34.8176546972804,-34.8177264876378,-34.8177556826945,-34.8177837971938,-34.817850251466,-34.8178961151191,-34.8179286385589,-34.8179811389681,-34.8179905571586,-34.8180122216649,-34.8180294305399,-34.818079109494,-34.8181342846158,-34.8181525740482,-34.8181519737386,-34.8181434560124,-34.8181435493939,-34.818148371881,-34.8181578234221,-34.8181566561534,-34.8181724776463,-34.8181925546672,-34.8182176676186,-34.8182241509622,-34.8182302007489,-34.8182200355064,-34.8182215229402,-34.8182165403706,-34.8182259252106,-34.81825029111,-34.8182918525443,-34.8183155114125,-34.8183499891935,-34.8184097466787,-34.8184356467027,-34.8184397154677,-34.8184379412193,-34.8184473460696,-34.818460319427,-34.8184862394613,-34.8185111322992,-34.8185250594818,-34.8185600508611,-34.8185733243732,-34.8185855840292,-34.8185917538778,-34.8185867379576,-34.8185878852159,-34.818598210541,-34.8186054609469,-34.8186065681846,-34.8185965897051,-34.8185602442941,-34.8185666742769,-34.8185718369394,-34.8185400205309,-34.8184726657943,-34.8184401356844,-34.8184279427295,-34.8183852873977,-34.8183858210063,-34.818352016906,-34.8183208074771,-34.8183062266241,-34.8183167120317,-34.8183331338341,-34.8183352749384,-34.818317172269,-34.8182498975737,-34.8182187415058,-34.8181423954655,-34.8180569047091,-34.8179759362849,-34.8178905122295,-34.8178051348649,-34.8177333311672,-34.817665996441,-34.8175720346491,-34.8175088220488,-34.8174136529677,-34.8173842844883,-34.8173606523005,-34.8173510606872,-34.8173521479146,-34.8173520145125,-34.8173535352968,-34.8173679227167,-34.8173164294937,-34.8172491214479,-34.8171999294116,-34.8171190343586,-34.8170381993366,-34.816957264263,-34.8168899228667,-34.8168180324576,-34.8167279860183,-34.8166470976355,-34.8165571245674,-34.8164668980353,-34.8163767782248,-34.816277687121,-34.8161740470045,-34.8160704669189,-34.8159352571878,-34.8158737921554,-34.81582277918,-34.8157250287676,-34.8157150569583,-34.8156143383484,-34.815588911902,-34.8154987587411,-34.8153952053359,-34.8153006032138,-34.8152060611228,-34.8151070700705,-34.8150261550072,-34.814940804323,-34.8148689539346,-34.8147925278531,-34.8147116194599,-34.8146171640801,-34.8145226753499,-34.8144371979337,-34.8143289887941,-34.8142072593484,-34.814085796707,-34.8138604871758,-34.8137295663233,-34.8136349175104,-34.8135359531386,-34.8134095746287,-34.813296789796,-34.8131751804123,-34.8130534909873,-34.812949870881,-34.8128882991269,-34.8128079989916,-34.813255228224,-34.8141733418563,-34.8143817484241,-34.8146813638563,-34.8150464788221,-34.8153613211943,-34.8156478689744,-34.8168043987597,-34.8160495961553,-34.8153934044071,-34.8151783521494,-34.8151368773693,-34.8147553019881,-34.8144195381421,-34.814285186204,-34.8141208385855,-34.8136811233526,-34.8135862412841,-34.813449453669,-34.8137877680841,-34.8139662217058,-34.8144300075587,-34.8147525405639,-34.8148883039139,-34.8150678730211,-34.8153549712528,-34.8155310820777,-34.8158397546013,-34.8162883858223,-34.816288385972,-34.8167689404729,-34.817248754592,-34.8175568268061,-34.8180098775053,-34.818508117411,-34.8189748581211,-34.8196130539217,-34.8202422717587,-34.8202826992749,-34.8203680232787,-34.820862431591,-34.821087160823,-34.8215456039205,-34.8224563002566,-34.8226873060588,-34.8229999472959,-34.8241373338752,-34.8239062813822,-34.8241011363751,-34.8243090522797,-34.8243507413518,-34.8247143825554,-34.8247810585958,-34.8253797983061,-34.8254713018367,-34.8254892946988,-34.8261591202473,-34.8264473875844,-34.8270947310078,-34.8271595494539,-34.8271600221217,-34.8272166633581,-34.827314225073,-34.8274681483282,-34.8274963898046,-34.8275798792979,-34.8276212523103,-34.8288130179486,-34.8289498726371,-34.8292440942289,-34.8299646928831,-34.83088165129,-34.8310268868723,-34.8310638193744,-34.8310802394093,-34.831197167395,-34.8324298485916,-34.8324665055955,-34.8325684796827,-34.8326144559539,-34.8334796433505,-34.8335320547035,-34.834494598923,-34.8345929788704,-34.8346731349227,-34.8347267578522,-34.8384464976629,-34.8383914185356,-34.8381682106988,-34.8374012777638,-34.8368122006283,-34.8364243873668,-34.8359314628757,-34.8358379096497,-34.8357623643688,-34.8357194993575,-34.8356875103209,-34.8355967114118,-34.8354164915817,-34.8354030390916,-34.8349709214647,-34.8343733004396,-34.8340389130384,-34.8338127748193,-34.8330780658117,-34.833041009601,-34.8329487837172,-34.8328244894587,-34.8325655777334,-34.8325498033129,-34.8321515244877,-34.8320461470605,-34.8319493078716,-34.8316131598141,-34.8314294870815,-34.8310790612765,-34.8308661807695,-34.8303595097937,-34.8297527248726,-34.8288131623481,-34.8287385936475,-34.8275866294319,-34.8274153118089,-34.8273870809047,-34.8273144284194,-34.8270590745343,-34.8270063668423,-34.8266860650463,-34.82633428023,-34.8260681829969,-34.8257278189397,-34.8247766877336,-34.8247209207836,-34.8246650972414,-34.8257561000288,-34.8258109517551,-34.8263293266335,-34.8264736141463,-34.8263985341404,-34.82636779043,-34.8263139239463,-34.8262973764208,-34.826306852452,-34.8263809676412,-34.8264105718802,-34.8265839491144,-34.8270658606555,-34.8271755091986,-34.8280394954292,-34.8283363367105,-34.8286891025952,-34.82803450494,-34.8278529731979,-34.8276882425859,-34.8276592535527,-34.8275377486685,-34.8272379410099,-34.8271739201903,-34.8271043773888,-34.8269070622566,-34.8266759459911,-34.8264699512095,-34.8264968679409,-34.8266326765159,-34.8256783886366,-34.8240115156543,-34.8274313293397,-34.8237457786069,-34.8237401823874,-34.8237496139182,-34.8237635477709,-34.8237909552389,-34.8237752471379,-34.8237120745581,-34.8236923310426,-34.8237085527418,-34.8237149960649,-34.8237062582252,-34.8236836398937,-34.823684100131,-34.8236904434024,-34.8236439127387,-34.8235720690204,-34.8235681203173,-34.8235949741665,-34.8236584535711,-34.8236674115243,-34.8236827460994,-34.8236768764056,-34.8236641965329,-34.8236200204168,-34.8235964882807,-34.8235924128456,-34.8235845020991,-34.8235795261996,-34.8235388718998,-34.8234625658801,-34.8234181162897,-34.8234004738577,-34.8233692977794,-34.8233019697233,-34.8232888562937,-34.8233117614398,-34.823330170934,-34.8233486204489,-34.8233355003492,-34.8232637300021,-34.8231873239308,-34.8231063955273,-34.8230164291294,-34.8229173246853,-34.8228180334783,-34.8227412138604,-34.822650907287,-34.8224704142021,-34.8223215440927,-34.8222223862878,-34.8221231217612,-34.8220328085177,-34.821938039643,-34.8218432440878,-34.821757479857,-34.8216627510029,-34.8215680621694,-34.8214554107389,-34.8213609753695,-34.8212891783419,-34.8212264193088,-34.8211591646239,-34.8210964322712,-34.8210336732381,-34.8209754098568,-34.8209216487975,-34.8208139265758,-34.8207919218941,-34.8207023223519,-34.8206100881177,-34.8205269118883,-34.8204500989405,-34.8203689570936,-34.8202905299801,-34.8201901515457,-34.8199517552653,-34.8198428057439,-34.8196815092258,-34.8195572251294,-34.8194475485663,-34.8191996673944,-34.8189970362256,-34.8188748665529,-34.8187849335055,-34.8186495837021,-34.8184921558459,-34.8183965465377,-34.8182991229605,-34.8182137722763,-34.8181231922286,-34.8180376281009,-34.8178617240494,-34.8177332177754,-34.8176409968814,-34.8175632866033,-34.8174636968343]}]],[[{&#34;lng&#34;:[-56.2565989786218,-56.2554597110723,-56.2540375311512,-56.2537897083175,-56.2537859104379,-56.2537580942408,-56.2537372457599,-56.2536576346084,-56.253650764779,-56.2536043699238,-56.2534524492094,-56.2533764566847,-56.2533569933137,-56.2530279998618,-56.252986495324,-56.2528729329389,-56.252789987561,-56.252605459216,-56.2526055991338,-56.2525211841283,-56.2512738184075,-56.2504675149989,-56.2497779591815,-56.2493535193632,-56.2490888065171,-56.2488135053534,-56.2486951870034,-56.248598011722,-56.248219638858,-56.2479407976656,-56.2472017332707,-56.2470741916835,-56.2466945907678,-56.2465806402419,-56.2462632282108,-56.2455370087234,-56.2452891888692,-56.245077234448,-56.2448023609599,-56.2447116671764,-56.2444025849782,-56.2447475422246,-56.246009398826,-56.2459741341358,-56.2450314713483,-56.2449489827926,-56.244857385843,-56.2431954381287,-56.2426981862941,-56.2422441187866,-56.2416440083584,-56.2410924014832,-56.2409960499128,-56.2405675366405,-56.2406263536708,-56.2403928545017,-56.2400567106842,-56.2381547719108,-56.2380273730327,-56.2364450027147,-56.2354230439783,-56.2345696762216,-56.2342111230164,-56.2336185019818,-56.2333078806575,-56.2327488707084,-56.2325541860672,-56.2324084921384,-56.2317304503699,-56.2317035952553,-56.2317031889421,-56.2312513648969,-56.2310365144169,-56.2308893981976,-56.2308111072886,-56.2295598402353,-56.2291692473536,-56.2286232446787,-56.2276595523832,-56.2269310822874,-56.2268938739704,-56.2265772224342,-56.2264176849991,-56.2263614787671,-56.2262954563245,-56.2261731510007,-56.2260181212107,-56.2252012702671,-56.2245585912408,-56.2235408096781,-56.2221860451609,-56.2217911236585,-56.2217938598282,-56.2217860048534,-56.2217874786601,-56.2217943439517,-56.2217989611667,-56.2219855876103,-56.2239629707307,-56.2246967224786,-56.2259285611027,-56.2266100492302,-56.2267355506211,-56.2271894613812,-56.2279690759626,-56.228127616465,-56.2278789865725,-56.2285412591748,-56.2286413373071,-56.2302353166443,-56.2302950235665,-56.2308925336698,-56.2319041662084,-56.2315327105625,-56.2313854482996,-56.2313845966193,-56.2314263593581,-56.2314805095563,-56.231557404041,-56.2322617306136,-56.2325204373686,-56.2334888801526,-56.2325042308876,-56.2320821175655,-56.230721649014,-56.2312824489063,-56.2318472968795,-56.2322004890297,-56.2325139707002,-56.232707424142,-56.2327737709287,-56.2327740022103,-56.232953847556,-56.2326464490227,-56.2330371505174,-56.2338958700478,-56.2345150560445,-56.2345222730998,-56.2353678625253,-56.236103168408,-56.236742814325,-56.2368444008352,-56.2376360777212,-56.2380967441114,-56.2381904869122,-56.2386203482447,-56.2390495561756,-56.2391679899399,-56.239676802766,-56.240189582019,-56.2403597917851,-56.2404319660055,-56.2411094130984,-56.2414471916994,-56.2416372758221,-56.2417486363778,-56.2418786302948,-56.2419442847871,-56.2421001578756,-56.242940427891,-56.2436836645305,-56.2444455241076,-56.244787840649,-56.2450818656186,-56.2452494392396,-56.2453547930409,-56.2455408623349,-56.247499392399,-56.2476961472038,-56.2479033407255,-56.2497100124723,-56.2498139594137,-56.2498488507414,-56.2498677138029,-56.2498852028225,-56.2499010109751,-56.2499154450858,-56.2499285184948,-56.2499409315632,-56.249953684807,-56.2499667782263,-56.2499802318314,-56.2499936921065,-56.2500074925571,-56.2500202658112,-56.2500268492065,-56.2500385952642,-56.2500496876515,-56.250059726162,-56.2500687441461,-56.2500763947584,-56.2500836785148,-56.2500906421061,-56.2500972455116,-56.2501031885766,-56.2501084246103,-56.2501133137985,-56.25011716245,-56.2501203507609,-56.250123172216,-56.2501249931551,-56.2501264672487,-56.2501276011668,-56.2501283949095,-56.2501285083013,-56.2501289818789,-56.2501290952707,-56.2501288818273,-56.2501286550437,-56.2501281014248,-56.2501275277957,-56.2501269808469,-56.2501260870526,-56.2501248264025,-56.2501232522573,-56.2501216581018,-56.2501193769254,-56.2501170957489,-56.2501141275515,-56.2501111393437,-56.2501078109605,-56.2501044825773,-56.2501008140187,-56.25009714546,-56.2500934969117,-56.2500898283531,-56.2500861998151,-56.2500825512668,-56.2500792695743,-56.250075621026,-56.2500716523126,-56.2500670032483,-56.250061667163,-56.2500556507268,-56.2500492674348,-56.2500429108232,-56.2500372145521,-56.2500315382914,-56.250029137053,-56.250019498749,-56.2500019763789,-56.249990470445,-56.2499772569638,-56.2499620091001,-56.2499457206997,-56.249928405103,-56.2499107693411,-56.2498941607756,-56.2498785794066,-56.2498640185639,-56.249850138072,-56.2498376316221,-56.2498257855128,-56.2498146197543,-56.2498048213677,-56.249795703332,-56.2497808690149,-56.2497744857228,-56.2497691296272,-56.249764800728,-56.2497614923551,-56.2497586885602,-56.2497594779829,-56.2497613189324,-56.2497638402327,-56.2497663682031,-56.2497688895034,-56.2497717576492,-56.2497739187638,-56.2497760998886,-56.2497779408381,-56.249779441612,-56.2497805755302,-56.2497813892832,-56.249781502675,-56.2497816160668,-56.2497813626027,-56.249781129149,-56.249780875685,-56.2497806222209,-56.2497803687569,-56.2497794349419,-56.2497784944569,-56.2497772137964,-56.2497742522691,-56.2497706037208,-56.249767615513,-56.2497622394071,-56.2497561962905,-56.2497494528127,-56.2497423891698,-56.2497346184956,-56.249726507646,-56.2497177097754,-56.2497092587503,-56.2497011412305,-56.2496947379282,-56.2496897019977,-56.2496850062426,-56.2496806573331,-56.2496742540308,-56.249665135995,-56.2496580523418,-56.2496502816676,-56.249640483281,-56.249635100505,-56.2496283770375,-56.2496219937455,-56.2496156171236,-56.2496112615439,-56.2496052184273,-56.2495991819809,-56.2495955134222,-56.2495911578426,-56.2495881896452,-56.2495865954897,-56.2495870490569,-56.2495888633259,-56.2495927119775,-56.2495982681763,-56.2496103143888,-56.2496237079629,-56.2496405166315,-56.2496525428338,-56.2496700318533,-56.2496851329747,-56.2496927368962,-56.2497006876633,-56.249701481406,-56.2497009077768,-56.2497006543127,-56.249702108396,-56.2497052700265,-56.2497115332566,-56.2497201843849,-56.2497312100711,-56.2497436231395,-56.2497566698681,-56.2497693764212,-56.2497861917599,-56.2497999455198,-56.2498034473257,-56.2498042210581,-56.2498022800571,-56.2497935088669,-56.2497819762525,-56.2497690629261,-56.2497544553927,-56.2497394876734,-56.249726574347,-56.2497126271541,-56.2497034891081,-56.2496998405597,-56.2497016614988,-56.2497048498098,-56.2497052766966,-56.2497033156853,-56.2497006943334,-56.2496977061256,-56.2496954249492,-56.2496934839481,-56.2496918631122,-56.2496919498236,-56.2496930904118,-56.2496945444951,-56.2496966789292,-56.2496988200334,-56.2497020083444,-56.2497062171817,-56.2497141879591,-56.2497276215538,-56.2497444569029,-56.2497609454064,-56.2497760665381,-56.2497918480103,-56.2498107110718,-56.2498319620315,-56.249845695781,-56.249864211997,-56.2498810406759,-56.2498999037374,-56.249922522069,-56.2499478484638,-56.2499731548482,-56.2499967536854,-56.2500182847896,-56.2500439313495,-56.2500692177237,-56.2500911290239,-56.2501140475102,-56.2501335642421,-56.2501544950367,-56.2501528808709,-56.2501451101967,-56.2501318900454,-56.2501186298734,-56.2501060567225,-56.250093136726,-56.2500750940876,-56.2500611735751,-56.250048280259,-56.2500360406134,-56.2500193653469,-56.2500023499049,-56.2499853277928,-56.2499690594028,-56.2499561660867,-56.2499429259251,-56.2499183265719,-56.2498985296955,-56.2498811473976,-56.249865839503,-56.2498550139199,-56.2498547604559,-56.2498527994445,-56.2498474166685,-56.2498396459943,-56.2498277798746,-56.2498152000536,-56.2498138193415,-56.2498112980412,-56.2498134391454,-56.2498220902737,-56.2498252585744,-56.2498284202049,-56.2498363643019,-56.2498515588047,-56.2498653325749,-56.2498736235174,-56.2498890648142,-56.2499048529565,-56.2499128170638,-56.2499201074904,-56.2499266842155,-56.2499322404143,-56.2499412117077,-56.2499614154606,-56.2499833334309,-56.2500083196503,-56.2500322586629,-56.2500551971596,-56.2500713254774,-56.2500816841529,-56.2500886744246,-56.2500911557043,-56.2500950043558,-56.2501087581157,-56.2501207843179,-56.2501321701899,-56.2501530609638,-56.25017597278,-56.2501903935505,-56.2502167871623,-56.2502414398764,-56.2502712285725,-56.2502959012968,-56.2503253298072,-56.2503445063637,-56.2503636895903,-56.2503845736941,-56.2504054844784,-56.2504158231436,-56.2504128616163,-56.2504109006049,-56.2504106671512,-56.2504083659644,-56.2504019826724,-56.2504007020119,-56.250402522951,-56.2504043172097,-56.2504081658612,-56.2504195517332,-56.2504322649564,-56.2504388416815,-56.2504351731229,-56.2504168103194,-56.2504008154037,-56.2503855275194,-56.2503702863258,-56.2503604679288,-56.2503530374301,-56.250347654654,-56.2503333739558,-56.2503204539593,-56.2503120029342,-56.2503066201582,-56.2503029515995,-56.2503013307636,-56.2502939002649,-56.2502823743206,-56.2502736031304,-56.2502654856107,-56.2502546666978,-56.2502646585175,-56.2502750038528,-56.2502867098899,-56.2502867966013,-56.2502944005229,-56.2503197335878,-56.2503419450428,-56.2503634894871,-56.2503843335703,-56.2504072053659,-56.2504328585959,-56.2504469525312,-56.2504545631228,-56.2504601193216,-56.2504704579869,-56.2504855791186,-56.2504911353174,-56.2504925894006,-56.2505046356131,-56.2505234786643,-56.2505392601366,-56.2505410810757,-56.2505394602398,-56.2505313694004,-56.250535218052,-56.2505526870612,-56.2505606378283,-56.2505614048905,-56.250548171399,-56.2505283745226,-56.2505281677493,-56.2505296618532,-56.250534217536,-56.2505716234938,-56.2506074352962,-56.2506375374874,-56.2506705211646,-56.2506835078621,-56.2507036849346,-56.2506900779171,-56.2507053791417,-56.2507212139748,-56.2507370021172,-56.2507570657978,-56.2507757420964,-56.2508029628014,-56.2508287160831,-56.2508538823953,-56.2508832908954,-56.2509062027116,-56.2509257261136,-56.2509575825428,-56.2509848699489,-56.2510063610324,-56.2510321610048,-56.2510622298454,-56.251086602415,-56.2511024172378,-56.2511210535156,-56.2511439853422,-56.2511655097762,-56.2511898556653,-56.2512196577017,-56.251244330426,-56.2512655613754,-56.2512970842992,-56.2513169478767,-56.2513392060225,-56.2513754247014,-56.2513918931946,-56.2514206813747,-56.2514442802119,-56.2514692931117,-56.2515076328845,-56.2515281768129,-56.2515490675868,-56.2515702985361,-56.2515932370328,-56.2516161755294,-56.2516373797983,-56.2516569032004,-56.2516784543148,-56.2517085698462,-56.2517359506338,-56.2517574950782,-56.2517790662029,-56.2518256302172,-56.2518485887242,-56.2518763363677,-56.2518972204714,-56.2519301841383,-56.2519538696869,-56.2519706783556,-56.2519871468488,-56.2519998800823,-56.2520071438284,-56.2520225917953,-56.252037712927,-56.2520504461605,-56.2520570295558,-56.2520595108354,-56.2520609649187,-56.2520617586613,-56.2520612317229,-56.252059610887,-56.2520501526758,-56.2520454569208,-56.2520458904777,-56.2520411947227,-56.2520337642239,-56.252001801073,-56.2519840785997,-56.2519673966631,-56.2519465992707,-56.2519216997627,-56.2519084395908,-56.2518886627247,-56.2518644235572,-56.2518525774479,-56.2518445799901,-56.2518412516069,-56.251862469216,-56.2519124016341,-56.2519339527486,-56.2519770749878,-56.2520030483829,-56.252028014592,-56.2520522737697,-56.2520785873403,-56.2521056012721,-56.2521271323762,-56.2521483166348,-56.2521732628336,-56.2521982290426,-56.2522423317875,-56.2522642230774,-56.2522877952342,-56.2523117209066,-56.2523339056812,-56.2523581648589,-56.2523773480856,-56.2524002665719,-56.2524217910059,-56.2524436422752,-56.2524692688248,-56.2524901329182,-56.2525130714149,-56.2525377174588,-56.2525585882224,-56.2525832542766,-56.252600729956,-56.2526154909019,-56.2526343472933,-56.2526614079158,-56.2526843730929,-56.252710406519,-56.252738127482,-56.2527552629859,-56.2527499936017,-56.2527456647025,-56.2527430166702,-56.2527427898866,-56.2527299832819,-56.2529594482895,-56.253149613029,-56.253246336245,-56.2532829017694,-56.2533146781573,-56.2533362092615,-56.2533826332035,-56.2534164439739,-56.2534451254323,-56.2534874739392,-56.2535045560822,-56.2535414217615,-56.2535728112832,-56.2535891663846,-56.2536099437667,-56.2536205158857,-56.253634803254,-56.25365894904,-56.2536725960781,-56.2536876104881,-56.2537210944233,-56.2537552453691,-56.253766497839,-56.2537876887677,-56.2538102137177,-56.2538323851521,-56.2538606797443,-56.253885939438,-56.2538992463007,-56.2539255598713,-56.2539419616635,-56.2539631192416,-56.2539835831287,-56.2540033733351,-56.2540255447694,-56.2540789256326,-56.2541197200047,-56.254148268061,-56.2541740747034,-56.2542067382155,-56.254263887689,-56.2542927759207,-56.2543109319509,-56.2543724836947,-56.2543930276231,-56.2544095161266,-56.254426371486,-56.2544442540418,-56.2544573074405,-56.2544865091672,-56.2545297181179,-56.2545602872164,-56.254601361733,-56.2547276401913,-56.2548920593249,-56.2549668702351,-56.2550063505961,-56.255069409784,-56.2551540867874,-56.2552356288407,-56.2553996467623,-56.2555303404829,-56.2555811403632,-56.2557230202009,-56.2558403140257,-56.2557783887559,-56.2558384864165,-56.2558845168222,-56.2560345675405,-56.2561857254966,-56.2562642459916,-56.2562747914302,-56.2562493316332,-56.2561905346434,-56.2561361465941,-56.2561023291536,-56.2560682248985,-56.2561251742688,-56.2562171550389,-56.2565592247864,-56.257029247189,-56.2572183513815,-56.2574150594956,-56.2574280390006,-56.2575173189,-56.2575578464678,-56.257649707176,-56.2577002865945,-56.2577613047298,-56.257770642879,-56.2578625436079,-56.2579237751866,-56.2579432919185,-56.2579733807695,-56.2579520831191,-56.2578692604053,-56.2580123742127,-56.2580629136105,-56.2580518412335,-56.2581540139266,-56.258317705013,-56.2583788899009,-56.2583785497255,-56.2582446406651,-56.2581489112951,-56.2583400765505,-56.2584824099555,-56.2586130573337,-56.2586558927584,-56.2587558909967,-56.2587398026995,-56.2589306477899,-56.2590319200186,-56.2591729260723,-56.25905891394,-56.2591459855117,-56.2595149357888,-56.2599574306614,-56.2604143729849,-56.2606644953128,-56.2608404060344,-56.2613262832804,-56.2609129100933,-56.260852705711,-56.2612204887195,-56.2617348073,-56.2619986300268,-56.262189214983,-56.2619671137731,-56.2620166526549,-56.2631118641502,-56.2634824552735,-56.2641567763715,-56.2648616265474,-56.2654787648214,-56.2656843708577,-56.2657066690241,-56.2659640484279,-56.2660366325281,-56.2660987779114,-56.2661297472163,-56.2661270658335,-56.2660780739004,-56.2659800833642,-56.265844933664,-56.2658017047031,-56.2658129038121,-56.2658465745103,-56.2658431327353,-56.265912315081,-56.2658585406815,-56.2658080479745,-56.2656978044524,-56.2657608636403,-56.2656348319759,-56.2656507468503,-56.265753146327,-56.2657516122024,-56.2657495111189,-56.2657343833171,-56.2657322021922,-56.2657314884908,-56.2656693897982,-56.2656075045491,-56.2655667301874,-56.265458967945,-56.265356757886,-56.2653366952145,-56.2652906043621,-56.2652691153674,-56.2652302699396,-56.2652074715144,-56.264791757472,-56.2638273316586,-56.2637724841248,-56.2636905184141,-56.2636188986955,-56.2632699684827,-56.2630908304205,-56.2624224816832,-56.2612248100546,-56.2589038206211,-56.25805997106,-56.257766515094,-56.2565989786218],&#34;lat&#34;:[-34.8362031331833,-34.8358779788262,-34.8359680407015,-34.8359820318563,-34.8357079782093,-34.8350641907627,-34.8345816612927,-34.83414343784,-34.8341056223199,-34.8339293613941,-34.8334697001486,-34.8332305268008,-34.8331615679036,-34.8323170327736,-34.8324849640465,-34.8326338004049,-34.832470564869,-34.8321005208318,-34.8321004373181,-34.8320289282263,-34.8309678865039,-34.8303184887335,-34.8297208219573,-34.8293445537537,-34.8291082029488,-34.8288694782247,-34.828747892328,-34.8286891025952,-34.8283363367105,-34.8280394954292,-34.8271755091986,-34.8270658606555,-34.8265839491144,-34.8264105718802,-34.8263809676412,-34.826306852452,-34.8262973764208,-34.8263139239463,-34.82636779043,-34.8263985341404,-34.8264736141463,-34.8263293266335,-34.8258109517551,-34.8257561000288,-34.8246650972414,-34.8247209207836,-34.8247766877336,-34.8257278189397,-34.8260681829969,-34.82633428023,-34.8266860650463,-34.8270063668423,-34.8270590745343,-34.8273144284194,-34.8273870809047,-34.8274153118089,-34.8275866294319,-34.8287385936475,-34.8288131623481,-34.8297527248726,-34.8303595097937,-34.8308661807695,-34.8310790612765,-34.8314294870815,-34.8316131598141,-34.8319493078716,-34.8320461470605,-34.8321515244877,-34.8325498033129,-34.8325655777334,-34.8325651227961,-34.8328244894587,-34.8329487837172,-34.833041009601,-34.8330780658117,-34.8338127748193,-34.8340389130384,-34.8343733004396,-34.8349709214647,-34.8354030390916,-34.8354164915817,-34.8355967114118,-34.8356875103209,-34.8357194993575,-34.8357623643688,-34.8358379096497,-34.8359314628757,-34.8364243873668,-34.8368122006283,-34.8374012777638,-34.8381682106988,-34.8383914185356,-34.8385222961986,-34.8397785033182,-34.8400435045045,-34.8414382496194,-34.8416631264572,-34.8415795626122,-34.8405052619012,-34.8414449265102,-34.8407379852559,-34.840362855125,-34.8402937694958,-34.840039955264,-34.840985653775,-34.8411779654657,-34.8413246472554,-34.8421368654129,-34.8422466194034,-34.8413323202951,-34.841298071875,-34.8409553315666,-34.8403750314046,-34.841887063989,-34.84248648755,-34.8425780984922,-34.8426394399394,-34.8426732667302,-34.8427213014361,-34.8437015769893,-34.8440793351422,-34.8454914267273,-34.8460189622886,-34.8462498648148,-34.8470271513291,-34.8477068692877,-34.8483721023654,-34.8487856189598,-34.8485998331453,-34.8488362128039,-34.8489165924415,-34.8489168726405,-34.8491347556852,-34.8493070011833,-34.8497744789402,-34.8492759685123,-34.8508784616257,-34.8508874495943,-34.8504295334352,-34.8513496979876,-34.8521720058387,-34.8522532382466,-34.8529728602189,-34.8527438735982,-34.852695021611,-34.8524792777947,-34.8522569606199,-34.8521957619178,-34.8519380146255,-34.8516690184273,-34.851579728098,-34.8515386322252,-34.8511468446822,-34.8509680672394,-34.8508598987189,-34.8508042103751,-34.8507237985286,-34.8506884953811,-34.8506046804297,-34.8501220815411,-34.8497137476195,-34.8492842527847,-34.849097263016,-34.8489331783933,-34.8488391594867,-34.8487800494208,-34.8486756555822,-34.8475728568407,-34.8474642908504,-34.8473509323886,-34.8463443832854,-34.8464296706037,-34.8464385685258,-34.8464520254659,-34.8464654890761,-34.8464834650135,-34.8465014442858,-34.8465194268933,-34.8465419218278,-34.8465644134273,-34.8465869050268,-34.8466139022833,-34.8466408995398,-34.8466678934613,-34.8466948940528,-34.8467129000056,-34.8467399005972,-34.8467714135159,-34.8467984207775,-34.8468254347093,-34.8468524486411,-34.8468749602509,-34.8469019775177,-34.8469244924626,-34.8469515130645,-34.8469740313444,-34.8469965496243,-34.8470145622472,-34.8470370871973,-34.8470551064902,-34.8470776347753,-34.8471001663955,-34.8471226946806,-34.8471452296357,-34.8471677612559,-34.8471948018681,-34.8472173368232,-34.8472443807705,-34.8472669157257,-34.847293959673,-34.8473164946281,-34.8473435385754,-34.8473705825226,-34.8473931208129,-34.8474201680952,-34.8474427097205,-34.8474652513458,-34.8474877929711,-34.8475103379314,-34.8475283772348,-34.8475464165381,-34.8475644558414,-34.8475824951447,-34.8476005344481,-34.8476230827435,-34.8476411220468,-34.8476681759992,-34.8476907209596,-34.847717774912,-34.8477403198723,-34.8477673771598,-34.8477944344473,-34.8478214917347,-34.8478485556923,-34.8478711106578,-34.8478981746154,-34.8479207262458,-34.8479477868684,-34.8479592261012,-34.8480019114485,-34.8480515470468,-34.8480741186876,-34.8480966969985,-34.8481237909715,-34.8481463792875,-34.8481689709386,-34.8481960715818,-34.8482231688899,-34.848250262863,-34.848277353501,-34.8483044408039,-34.8483315247718,-34.8483540997477,-34.8483766713884,-34.8483992396941,-34.8484218046648,-34.8484624156089,-34.8484849705744,-34.8485075255399,-34.8485300738353,-34.8485526187957,-34.8486030128518,-34.8486292449804,-34.8486562789225,-34.8486833128646,-34.8487103468067,-34.8487373807488,-34.8487644113558,-34.8487869396409,-34.848813973583,-34.8488410108601,-34.8488680448023,-34.8488905764224,-34.8489176170346,-34.8489401519898,-34.8489626836099,-34.8489807129081,-34.8490032478633,-34.8490212771614,-34.8490393064596,-34.8490573357578,-34.849075365056,-34.8490933976892,-34.8491114303224,-34.8491339719477,-34.8491565202431,-34.8491745595464,-34.8491926055198,-34.8492151571503,-34.8492332097939,-34.8492557680944,-34.8492738207379,-34.8492918767165,-34.8493099326951,-34.8493279886738,-34.8493460446523,-34.8493640939608,-34.8493821365992,-34.8494001792376,-34.849418221876,-34.8494362711845,-34.8494588361551,-34.8494768887987,-34.8494949414422,-34.8495175097479,-34.8495355557214,-34.8495581140219,-34.8495806689874,-34.8496032239529,-34.8496212665913,-34.8496438215568,-34.8496663765223,-34.8496844158257,-34.849702458464,-34.8497250034244,-34.8497475450497,-34.8497700766698,-34.8497926049549,-34.8498106209129,-34.8498286302007,-34.8498466161432,-34.8498600930936,-34.8498735600389,-34.8498870403243,-34.8499005005995,-34.8499139742148,-34.8499319734975,-34.8499499761152,-34.8499725077354,-34.8499950460256,-34.8500130753238,-34.8500310979518,-34.8500491139098,-34.8500716288547,-34.8500941337944,-34.850112126407,-34.8501346180065,-34.8501480949569,-34.8501615752423,-34.8501750388525,-34.8501930214599,-34.8502110374179,-34.850229063381,-34.8502516050063,-34.8502741666419,-34.8502922326257,-34.8503057962875,-34.8503238756115,-34.8503374459433,-34.8503510096051,-34.850364576602,-34.8503826359156,-34.850405180876,-34.8504277091611,-34.8504502341111,-34.8504682600742,-34.8504862960425,-34.8505088376678,-34.8505268769711,-34.8505494185964,-34.8505719602217,-34.8505899928549,-34.8506080188181,-34.8506305504382,-34.8506485730662,-34.8506665956943,-34.8506846149873,-34.8507071399373,-34.8507296615523,-34.8507521698271,-34.8507746580915,-34.8507926306938,-34.8508106032961,-34.8508285792334,-34.8508420495137,-34.8508555064537,-34.8508689567237,-34.8508824303391,-34.8508958906142,-34.8509138632165,-34.8509273201566,-34.8509407670915,-34.8509496950292,-34.8509541173099,-34.8509585462607,-34.8509584762246,-34.8509628951702,-34.8509628117938,-34.8509717530718,-34.8509761820226,-34.8509851333056,-34.8510030892326,-34.8510211218659,-34.8510391778444,-34.8510617561553,-34.8510753198171,-34.8510888834789,-34.8511024471407,-34.8511160274778,-34.8511341034667,-34.8511521727855,-34.8511657364473,-34.8511793101142,-34.8511928904513,-34.8512064674533,-34.8512335614264,-34.8512516340802,-34.8512697067341,-34.8512697867754,-34.8512743591335,-34.8512834338135,-34.8512970041454,-34.8513195757862,-34.8513376050843,-34.8513556377176,-34.851373683691,-34.8513917363345,-34.8514098056533,-34.8514233659801,-34.8514377700753,-34.8514639435737,-34.8514819628667,-34.8515044678064,-34.8515224870994,-34.8515405030573,-34.8515585056751,-34.8515900019185,-34.851612493518,-34.8516304928007,-34.851643963081,-34.8516574300263,-34.851679938301,-34.8517024499108,-34.8517204558636,-34.8517384651515,-34.8517564610991,-34.8517654090471,-34.851774350325,-34.8517832782627,-34.8517877072135,-34.8517966451564,-34.8518101121016,-34.8518326103712,-34.8518641366301,-34.8518821559231,-34.8519001718811,-34.8519181544885,-34.851931634774,-34.8519541297085,-34.8519630743215,-34.8519675066073,-34.8519809768876,-34.8519989194744,-34.8520078507472,-34.8520212710017,-34.8520347112665,-34.852043625864,-34.8520525771471,-34.8520615250951,-34.8520704697081,-34.852083919978,-34.8521019125906,-34.852124457551,-34.8521424935192,-34.8521650284744,-34.8521830644427,-34.8522056194082,-34.8522236520414,-34.8522461803265,-34.8522642029546,-34.8522822189125,-34.8523047138471,-34.8523181941325,-34.8523362000853,-34.8523542393887,-34.8523723287178,-34.8523859023848,-34.8524039817087,-34.8524310723467,-34.8524491349954,-34.852467187639,-34.8524852336124,-34.8524988006092,-34.852512364271,-34.8525304202496,-34.8525484662231,-34.8525665055264,-34.8525845381596,-34.8526025908032,-34.8526206567869,-34.8526432217576,-34.8526612777362,-34.852683849377,-34.8527018419895,-34.8527198346021,-34.8527378238797,-34.8527558531778,-34.8527738557956,-34.8527827837333,-34.8527827103621,-34.852787145983,-34.8527870759469,-34.8527824902486,-34.8527869125293,-34.8528048951367,-34.8528228977544,-34.8528409070423,-34.8528588996549,-34.8528768755922,-34.85289488488,-34.8529129075081,-34.8529308967856,-34.8529398480687,-34.852953315014,-34.852975843299,-34.8529938759323,-34.8530164375679,-34.8530344535258,-34.853043408144,-34.8530614107617,-34.8530794367248,-34.8530975093787,-34.8531020817368,-34.853129122349,-34.8531561596261,-34.853178677906,-34.8531859383171,-34.8531987849424,-34.8532140061257,-34.8532327557954,-34.8532574652053,-34.8533133206781,-34.8533268876749,-34.8533434395445,-34.8533646037928,-34.8533775171192,-34.85338570134,-34.8534033204266,-34.8534138391847,-34.8534172909649,-34.853420986204,-34.8534253951444,-34.8534298274303,-34.8534387753783,-34.853453399587,-34.8534768816974,-34.8534862398569,-34.853497942559,-34.8535060934293,-34.8535189767402,-34.853536605832,-34.8535471512705,-34.8535576833688,-34.8535729345676,-34.8535799281744,-34.8535910272318,-34.8536044674966,-34.8536134087745,-34.853631331351,-34.853640279299,-34.8536492205769,-34.85364909718,-34.8536625641252,-34.8536804967068,-34.8536849223226,-34.8536983592523,-34.8537117528264,-34.8537206974394,-34.8537296420523,-34.8537385866653,-34.8537475212731,-34.853756459216,-34.8537608948369,-34.8537698427849,-34.8537742784058,-34.8537831930033,-34.8537921142709,-34.8537965498918,-34.8538054911697,-34.8538233637204,-34.8538368073202,-34.8538502342448,-34.8538591788578,-34.8538906184053,-34.8539130733192,-34.8539265369294,-34.8539400038746,-34.8539579864821,-34.8539759924349,-34.8539894593801,-34.8540074386525,-34.8540254212599,-34.8540434272127,-34.8540614465057,-34.8540794691338,-34.854102004089,-34.8541335536932,-34.8541515863265,-34.8541741512971,-34.854192195603,-34.8542102215662,-34.8542282658721,-34.8542463185156,-34.8542779748416,-34.8542870478541,-34.8543006248561,-34.8543097078738,-34.8543188042317,-34.854332369561,-34.8543414509112,-34.854346038277,-34.8543686132528,-34.8544092025191,-34.8544272418224,-34.8545037879659,-34.8545126341948,-34.8545170698157,-34.8545304467145,-34.8545303583355,-34.8545347822837,-34.8545347005749,-34.854534612196,-34.8545390294741,-34.8545389577705,-34.8545388860668,-34.8545388026905,-34.8545432266387,-34.8545475855534,-34.8545520178392,-34.8545519394655,-34.8545518594242,-34.8545472787285,-34.8545471970197,-34.8545561466352,-34.8545605772535,-34.8545605038824,-34.8545559248542,-34.8545558381428,-34.8545602754312,-34.8545692117065,-34.8545781429793,-34.8545825802677,-34.854596018865,-34.8546049734832,-34.854618445431,-34.8546319023711,-34.8546453326307,-34.8546587762306,-34.8546722098253,-34.8546811310929,-34.8546900873786,-34.8547306666397,-34.8547532166026,-34.8547712525709,-34.8547937891936,-34.8548298878106,-34.854694743113,-34.8546932706869,-34.8546974511763,-34.8546973294468,-34.8546972227251,-34.8546971493539,-34.8546879796249,-34.8546833589085,-34.854678756535,-34.8546741074707,-34.8546740491072,-34.8546649110612,-34.8546557913579,-34.854646723348,-34.8546331330057,-34.8546285906631,-34.8546150203312,-34.8545924053348,-34.854587852987,-34.8545832956367,-34.8545831822449,-34.854578559861,-34.8545740158509,-34.8545739441472,-34.854569361784,-34.8545602737637,-34.854546656741,-34.8545420643727,-34.8545375136924,-34.8545374253135,-34.8545373702851,-34.8545327912569,-34.8545237082393,-34.8545191358812,-34.8545100461934,-34.8544948700333,-34.854510396374,-34.8545203698509,-34.8545247571135,-34.8545425479554,-34.8545714445248,-34.8545812579191,-34.8545902108697,-34.8545990170779,-34.8546079616909,-34.8546259342932,-34.8546484125525,-34.8546708858091,-34.8546843627596,-34.8547158139798,-34.8547472168417,-34.8547786613918,-34.8547920449607,-34.8548084901085,-34.8548851069585,-34.8549199676004,-34.8548802004247,-34.8548792015763,-34.8548392326299,-34.8548219720615,-34.8547872524891,-34.8547483950072,-34.8547336131593,-34.8546417574536,-34.8544219574304,-34.8542250792286,-34.8540548397651,-34.8538846453248,-34.8538918690503,-34.8539119994321,-34.8538585918884,-34.8535790744007,-34.8534750007273,-34.8534396191468,-34.8534272060784,-34.8533949327675,-34.8532759880914,-34.8532073993851,-34.8531478053176,-34.853146644719,-34.8530795934723,-34.8530285971722,-34.8530739839127,-34.8530631958937,-34.8529889900792,-34.8528788132582,-34.8527684596793,-34.8526159243463,-34.8524972097888,-34.8523109537318,-34.8522090645183,-34.8521326751223,-34.8519294569842,-34.8517854560525,-34.8516331641784,-34.8514980078081,-34.8513705520759,-34.8512095523776,-34.8510487594526,-34.8509468368885,-34.8508277721505,-34.8507429183892,-34.8506752034669,-34.8505910100462,-34.8504192514659,-34.8501141407792,-34.8497434629445,-34.8493296895509,-34.8490499352745,-34.8484052894808,-34.8481378949119,-34.8479670501363,-34.8475776893329,-34.8472063745031,-34.8470791722349,-34.8467992678811,-34.8468587952475,-34.846881597007,-34.8468435673941,-34.8467333005267,-34.8465260336339,-34.8463784908756,-34.8462826514487,-34.8460397228309,-34.8458682677405,-34.8455139583474,-34.845196978206,-34.844977505018,-34.8447959147006,-34.8445755076977,-34.844175984987,-34.8438435602137,-34.8435181690678,-34.8434188144948,-34.8434086025616,-34.8431454168299,-34.8430924461783,-34.8427883093271,-34.8427365793153,-34.8426784493362,-34.8426290071709,-34.8421521212287,-34.8421246037038,-34.8420670473539,-34.8419064211815,-34.8418109219301,-34.8416120293561,-34.8414697960027,-34.8412712202588,-34.8410940155365,-34.8410045927522,-34.8408134741875,-34.840662416283,-34.8403819383,-34.8401983302753,-34.8400838712459,-34.8396469825979,-34.8395633961569,-34.8394483568282,-34.8393627793603,-34.839263528174,-34.8391960300301,-34.8390790663756,-34.8389350554389,-34.8387774541598,-34.8386155773425,-34.8384613601984,-34.838431089051,-34.8383414128551,-34.8382930923079,-34.8382057436168,-34.8381331211843,-34.8382297673654,-34.8383400465422,-34.8382236024648,-34.8381401691062,-34.8381045431299,-34.8380041743137,-34.837957761798,-34.8377891072769,-34.837457865668,-34.8368488161786,-34.8365925644207,-34.8365233199871,-34.8362031331833]}]],[[{&#34;lng&#34;:[-56.2411393325173,-56.2413974080961,-56.2415658536485,-56.2416189689985,-56.2417647903079,-56.2418798562392,-56.2421771847962,-56.2423166042883,-56.2425209684929,-56.2426486112419,-56.2426848036265,-56.2427183342359,-56.2430484720125,-56.2433824334321,-56.2435850880583,-56.2438222781249,-56.244069501715,-56.2441059222996,-56.2441474650792,-56.2441649327328,-56.2441803471721,-56.24425604151,-56.2443250953328,-56.2444025886314,-56.2444384871452,-56.244531448421,-56.2446194204571,-56.2446811789742,-56.2448103255784,-56.2449601561832,-56.2449951475625,-56.2451280160862,-56.245302119209,-56.2454073268006,-56.2455657551728,-56.2457416681649,-56.2458410971737,-56.2458829320824,-56.2459464719065,-56.2459691561381,-56.2459825966087,-56.2460002872684,-56.2460115114838,-56.2460456840385,-56.2460705745218,-56.2460822066491,-56.2461744357516,-56.2462731599996,-56.2464003819521,-56.246484969235,-56.2465621957294,-56.2466968251612,-56.2467844436816,-56.2468419199903,-56.2469293183972,-56.2470582582281,-56.2471590921426,-56.2472441196895,-56.2473223736235,-56.2474978155725,-56.2476216287727,-56.2478405083212,-56.2479665533258,-56.2481070391113,-56.2482866384019,-56.2483288935273,-56.2483449351337,-56.2483595893579,-56.2484151246655,-56.2484382565953,-56.2484510898804,-56.2484498492406,-56.2484481416933,-56.2484218347928,-56.2483523723025,-56.2482548686841,-56.2481572383336,-56.2480621693041,-56.247964625665,-56.2478132409254,-56.2477792767425,-56.2477659031787,-56.2477257824875,-56.2476973278127,-56.2476660716931,-56.2476310136127,-56.2475929673246,-56.2475535536647,-56.2475195828117,-56.2475034344836,-56.2474927289625,-56.2474799290279,-56.2474561967886,-56.2474122741365,-56.2473482277729,-56.2473294114021,-56.2473050988635,-56.2472585081688,-56.247211597309,-56.2471687885648,-56.2471491784514,-56.2471295883482,-56.2471042752937,-56.2470734727413,-56.2470111339249,-56.2469454267047,-56.2468996097424,-56.2468318481293,-56.2468171338741,-56.2467787007199,-56.2467282880541,-56.246708077631,-56.2466180178516,-56.2465403044394,-56.2465060801224,-56.2464585089221,-56.246424971626,-56.2463996385611,-56.2463499729473,-56.2462985731057,-56.2458922368811,-56.24585525781,-56.2457990154711,-56.2457540923031,-56.2457164528915,-56.2456825687499,-56.2456702223825,-56.2456606107589,-56.2456342504976,-56.2456003530158,-56.2455548095278,-56.2455137083309,-56.2454184125177,-56.2453792990126,-56.2453610962916,-56.2453175204851,-56.2452540277403,-56.2452577563299,-56.245260637816,-56.2452625588067,-56.2452617183732,-56.2452554151225,-56.2452334304511,-56.245207837252,-56.245206336478,-56.2451733528008,-56.2451441710844,-56.2451242608162,-56.2451105070564,-56.2450936516969,-56.2450895429113,-56.2450390902249,-56.2450348215905,-56.2450153288161,-56.2449812819468,-56.2449561158339,-56.2448765205337,-56.2446940596159,-56.2446372629923,-56.2445249050464,-56.2444775339493,-56.2443823315176,-56.2443192467367,-56.2442914179645,-56.2441912663137,-56.2441899950329,-56.2441626248759,-56.2441299546937,-56.2440886000328,-56.2440008080895,-56.2439353876839,-56.243890851382,-56.243874329528,-56.2438101831127,-56.2436603058171,-56.2435990208776,-56.2433859043012,-56.2433307158392,-56.2433415747727,-56.2433624121858,-56.2433724773766,-56.243394835574,-56.2434001849995,-56.2434067083638,-56.2434749435544,-56.2436216191988,-56.2436364801963,-56.2436043102721,-56.2435494886659,-56.2434089695299,-56.2432946372325,-56.2432214228073,-56.2431672148508,-56.2431720540132,-56.2431963298662,-56.2432728459942,-56.2434034800322,-56.2435659371488,-56.2436585515791,-56.2437685149567,-56.2438660986164,-56.2441138797368,-56.2442947796982,-56.2443742340082,-56.2445235843653,-56.2446505431745,-56.2447077460088,-56.2447713254651,-56.2449078291969,-56.245176801246,-56.2452901196872,-56.2453550865256,-56.245395340619,-56.2454131964944,-56.2454269902748,-56.2454878349874,-56.2456864307416,-56.2458265430011,-56.2459264278476,-56.2460559813283,-56.2462201126417,-56.2462643154382,-56.2464195221489,-56.2465225486157,-56.2465911706725,-56.2468352565538,-56.2469741348436,-56.2471353112997,-56.2472188610551,-56.2472910983097,-56.2473589066135,-56.2474410889971,-56.2475235181746,-56.2476040863924,-56.2476686196738,-56.2478346719779,-56.2479062155414,-56.2479003591878,-56.2479331961227,-56.247824920282,-56.2477758282974,-56.2476918049644,-56.2475802674416,-56.2474907679511,-56.2473678045358,-56.2473338937137,-56.2472933461357,-56.2471155870905,-56.2469926510595,-56.2468479230863,-56.2467919342114,-56.246674913861,-56.2465468077934,-56.2464358505699,-56.2464257053378,-56.2464226037382,-56.2464387120457,-56.2465048594929,-56.2465986345218,-56.2467646668155,-56.2469251896012,-56.2471857506459,-56.2473297915982,-56.2477920900173,-56.2478230726625,-56.2479347569276,-56.2480123369376,-56.2481007958915,-56.2481332059395,-56.2481934436723,-56.2482723243531,-56.248350084456,-56.2484547050782,-56.2485504277782,-56.248602661383,-56.2486117260579,-56.2486914271618,-56.2487277325521,-56.2487732493596,-56.2488381628372,-56.2489104267722,-56.24898912069,-56.2490593969332,-56.2490835093686,-56.2490932210439,-56.2491317475797,-56.2492020505033,-56.2493009748545,-56.2493273217756,-56.2493516943452,-56.2493623398353,-56.249457982494,-56.2495468950151,-56.2496140363083,-56.2496240214579,-56.2496379353003,-56.2495818997346,-56.2494951816786,-56.2494391194325,-56.249399232195,-56.2493675425185,-56.2493277286521,-56.2492930174173,-56.2492747213149,-56.2492399500491,-56.2491818467504,-56.2491568872115,-56.2491303601975,-56.249102239028,-56.2490541475593,-56.2490457965859,-56.248992689197,-56.2489543294139,-56.2488489017088,-56.2487031598793,-56.2485953642864,-56.248498300895,-56.2484418851333,-56.248378739234,-56.2482988046764,-56.2482320969401,-56.2482415017905,-56.248240474594,-56.2482633130391,-56.2483294004554,-56.2483888978064,-56.2484712269323,-56.2485438777335,-56.2485834047852,-56.2486886724078,-56.2487649117264,-56.2487647116232,-56.2487995896106,-56.248809187894,-56.2488249960467,-56.248819506549,-56.2488406641271,-56.2488325132569,-56.2488457534185,-56.2488400438072,-56.2488952389394,-56.2489401154167,-56.2489692571125,-56.2489928492796,-56.2490644128534,-56.2490986505106,-56.249159421852,-56.249180632791,-56.2492547510157,-56.2493368200074,-56.2493788683595,-56.2494162076163,-56.249562089518,-56.2496801103844,-56.2498065956161,-56.2500687841667,-56.2502226635263,-56.2504176440827,-56.2506297601431,-56.2506455749658,-56.2506758705901,-56.2507006100155,-56.250750442382,-56.2507619616561,-56.2508245672768,-56.2508653883292,-56.2508565971287,-56.2508665155772,-56.2508948101695,-56.2509267733204,-56.2509529201383,-56.2509564753051,-56.2509657801038,-56.2510214021229,-56.2510863289406,-56.2511202064121,-56.2511421177123,-56.2511617478361,-56.2511848997761,-56.2512078582831,-56.2512366531333,-56.2512541421528,-56.2512699503055,-56.2512919082965,-56.2513084034701,-56.2513378786712,-56.251359449796,-56.2513783128575,-56.2513852297581,-56.2514000173844,-56.2514161390321,-56.2514377368373,-56.2514555526921,-56.2514829067993,-56.2515157570744,-56.2515534098262,-56.2515828249963,-56.2516060836581,-56.2516286352885,-56.2516522341257,-56.2517225837402,-56.251757048181,-56.2517884443728,-56.2518198338945,-56.2518423455044,-56.2518607549986,-56.2518784774719,-56.2518955195943,-56.2519169773272,-56.2519357069866,-56.2519513350464,-56.2519652822393,-56.2519867399723,-56.2520085445508,-56.2520330571926,-56.252066114241,-56.252083136353,-56.2520987644128,-56.2521174940722,-56.2521293868723,-56.2521556070614,-56.2521692074087,-56.2522001967241,-56.2522257365623,-56.2522471942952,-56.2522774699092,-56.2522927644636,-56.2523053376146,-56.2523332720211,-56.2523503074733,-56.2523860792551,-56.2524075636685,-56.252427994205,-56.2524460635239,-56.25246959566,-56.2524855905756,-56.252508075505,-56.2525268251747,-56.2525428200904,-56.2525553932413,-56.2525727155082,-56.2525856088243,-56.2526182990168,-56.2526305386624,-56.2526475541044,-56.2526730472518,-56.2526959190474,-56.2527299832819,-56.2527427898866,-56.2527430166702,-56.2527456647025,-56.2527499936017,-56.2527552629859,-56.252738127482,-56.252710406519,-56.2526843730929,-56.2526614079158,-56.2526343472933,-56.2526154909019,-56.252600729956,-56.2525832542766,-56.2525585882224,-56.2525377174588,-56.2525130714149,-56.2524901329182,-56.2524692688248,-56.2524436422752,-56.2524217910059,-56.2524002665719,-56.2523773480856,-56.2523581648589,-56.2523339056812,-56.2523117209066,-56.2522877952342,-56.2522642230774,-56.2522423317875,-56.2521982290426,-56.2521732628336,-56.2521483166348,-56.2521271323762,-56.2521056012721,-56.2520785873403,-56.2520522737697,-56.252028014592,-56.2520030483829,-56.2519770749878,-56.2519339527486,-56.2519124016341,-56.251862469216,-56.2518412516069,-56.2518445799901,-56.2518525774479,-56.2518644235572,-56.2518886627247,-56.2519084395908,-56.2519216997627,-56.2519465992707,-56.2519673966631,-56.2519840785997,-56.252001801073,-56.2520337642239,-56.2520411947227,-56.2520458904777,-56.2520454569208,-56.2520501526758,-56.252059610887,-56.2520612317229,-56.2520617586613,-56.2520609649187,-56.2520595108354,-56.2520570295558,-56.2520504461605,-56.252037712927,-56.2520225917953,-56.2520071438284,-56.2519998800823,-56.2519871468488,-56.2519706783556,-56.2519538696869,-56.2519301841383,-56.2518972204714,-56.2518763363677,-56.2518485887242,-56.2518256302172,-56.2517790662029,-56.2517574950782,-56.2517359506338,-56.2517085698462,-56.2516784543148,-56.2516569032004,-56.2516373797983,-56.2516161755294,-56.2515932370328,-56.2515702985361,-56.2515490675868,-56.2515281768129,-56.2515076328845,-56.2514692931117,-56.2514442802119,-56.2514206813747,-56.2513918931946,-56.2513754247014,-56.2513392060225,-56.2513169478767,-56.2512970842992,-56.2512655613754,-56.251244330426,-56.2512196577017,-56.2511898556653,-56.2511655097762,-56.2511439853422,-56.2511210535156,-56.2511024172378,-56.251086602415,-56.2510622298454,-56.2510321610048,-56.2510063610324,-56.2509848699489,-56.2509575825428,-56.2509257261136,-56.2509062027116,-56.2508832908954,-56.2508538823953,-56.2508287160831,-56.2508029628014,-56.2507757420964,-56.2507570657978,-56.2507370021172,-56.2507212139748,-56.2507053791417,-56.2506900779171,-56.2507036849346,-56.2506835078621,-56.2506705211646,-56.2506375374874,-56.2506074352962,-56.2505716234938,-56.250534217536,-56.2505296618532,-56.2505281677493,-56.2505283745226,-56.250548171399,-56.2505614048905,-56.2505606378283,-56.2505526870612,-56.250535218052,-56.2505313694004,-56.2505394602398,-56.2505410810757,-56.2505392601366,-56.2505234786643,-56.2505046356131,-56.2504925894006,-56.2504911353174,-56.2504855791186,-56.2504704579869,-56.2504601193216,-56.2504545631228,-56.2504469525312,-56.2504328585959,-56.2504072053659,-56.2503843335703,-56.2503634894871,-56.2503419450428,-56.2503197335878,-56.2502944005229,-56.2502867966013,-56.2502867098899,-56.2502750038528,-56.2502646585175,-56.2502546666978,-56.2502654856107,-56.2502736031304,-56.2502823743206,-56.2502939002649,-56.2503013307636,-56.2503029515995,-56.2503066201582,-56.2503120029342,-56.2503204539593,-56.2503333739558,-56.250347654654,-56.2503530374301,-56.2503604679288,-56.2503702863258,-56.2503855275194,-56.2504008154037,-56.2504168103194,-56.2504351731229,-56.2504388416815,-56.2504322649564,-56.2504195517332,-56.2504081658612,-56.2504043172097,-56.250402522951,-56.2504007020119,-56.2504019826724,-56.2504083659644,-56.2504106671512,-56.2504109006049,-56.2504128616163,-56.2504158231436,-56.2504054844784,-56.2503845736941,-56.2503636895903,-56.2503445063637,-56.2503253298072,-56.2502959012968,-56.2502712285725,-56.2502414398764,-56.2502167871623,-56.2501903935505,-56.25017597278,-56.2501530609638,-56.2501321701899,-56.2501207843179,-56.2501087581157,-56.2500950043558,-56.2500911557043,-56.2500886744246,-56.2500816841529,-56.2500713254774,-56.2500551971596,-56.2500322586629,-56.2500083196503,-56.2499833334309,-56.2499614154606,-56.2499412117077,-56.2499322404143,-56.2499266842155,-56.2499201074904,-56.2499128170638,-56.2499048529565,-56.2498890648142,-56.2498736235174,-56.2498653325749,-56.2498515588047,-56.2498363643019,-56.2498284202049,-56.2498252585744,-56.2498220902737,-56.2498134391454,-56.2498112980412,-56.2498138193415,-56.2498152000536,-56.2498277798746,-56.2498396459943,-56.2498474166685,-56.2498527994445,-56.2498547604559,-56.2498550139199,-56.249865839503,-56.2498811473976,-56.2498985296955,-56.2499183265719,-56.2499429259251,-56.2499561660867,-56.2499690594028,-56.2499853277928,-56.2500023499049,-56.2500193653469,-56.2500360406134,-56.250048280259,-56.2500611735751,-56.2500750940876,-56.250093136726,-56.2501060567225,-56.2501186298734,-56.2501318900454,-56.2501451101967,-56.2501528808709,-56.2501544950367,-56.2501335642421,-56.2501140475102,-56.2500911290239,-56.2500692177237,-56.2500439313495,-56.2500182847896,-56.2499967536854,-56.2499731548482,-56.2499478484638,-56.249922522069,-56.2498999037374,-56.2498810406759,-56.249864211997,-56.249845695781,-56.2498319620315,-56.2498107110718,-56.2497918480103,-56.2497760665381,-56.2497609454064,-56.2497444569029,-56.2497276215538,-56.2497141879591,-56.2497062171817,-56.2497020083444,-56.2496988200334,-56.2496966789292,-56.2496945444951,-56.2496930904118,-56.2496919498236,-56.2496918631122,-56.2496934839481,-56.2496954249492,-56.2496977061256,-56.2497006943334,-56.2497033156853,-56.2497052766966,-56.2497048498098,-56.2497016614988,-56.2496998405597,-56.2497034891081,-56.2497126271541,-56.249726574347,-56.2497394876734,-56.2497544553927,-56.2497690629261,-56.2497819762525,-56.2497935088669,-56.2498022800571,-56.2498042210581,-56.2498034473257,-56.2497999455198,-56.2497861917599,-56.2497693764212,-56.2497566698681,-56.2497436231395,-56.2497312100711,-56.2497201843849,-56.2497115332566,-56.2497052700265,-56.249702108396,-56.2497006543127,-56.2497009077768,-56.249701481406,-56.2497006876633,-56.2496927368962,-56.2496851329747,-56.2496700318533,-56.2496525428338,-56.2496405166315,-56.2496237079629,-56.2496103143888,-56.2495982681763,-56.2495927119775,-56.2495888633259,-56.2495870490569,-56.2495865954897,-56.2495881896452,-56.2495911578426,-56.2495955134222,-56.2495991819809,-56.2496052184273,-56.2496112615439,-56.2496156171236,-56.2496219937455,-56.2496283770375,-56.249635100505,-56.249640483281,-56.2496502816676,-56.2496580523418,-56.249665135995,-56.2496742540308,-56.2496806573331,-56.2496850062426,-56.2496897019977,-56.2496947379282,-56.2497011412305,-56.2497092587503,-56.2497177097754,-56.249726507646,-56.2497346184956,-56.2497423891698,-56.2497494528127,-56.2497561962905,-56.2497622394071,-56.249767615513,-56.2497706037208,-56.2497742522691,-56.2497772137964,-56.2497784944569,-56.2497794349419,-56.2497803687569,-56.2497806222209,-56.249780875685,-56.249781129149,-56.2497813626027,-56.2497816160668,-56.249781502675,-56.2497813892832,-56.2497805755302,-56.249779441612,-56.2497779408381,-56.2497760998886,-56.2497739187638,-56.2497717576492,-56.2497688895034,-56.2497663682031,-56.2497638402327,-56.2497613189324,-56.2497594779829,-56.2497614923551,-56.249764800728,-56.2497691296272,-56.2497744857228,-56.2497808690149,-56.249795703332,-56.2498048213677,-56.2498146197543,-56.2498257855128,-56.2498376316221,-56.249850138072,-56.2498640185639,-56.2498785794066,-56.2498941607756,-56.2499107693411,-56.249928405103,-56.2499457206997,-56.2499620091001,-56.2499772569638,-56.249990470445,-56.2500019763789,-56.250019498749,-56.250029137053,-56.2500315382914,-56.2500372145521,-56.2500429108232,-56.2500492674348,-56.2500556507268,-56.250061667163,-56.2500670032483,-56.2500716523126,-56.250075621026,-56.2500792695743,-56.2500825512668,-56.2500861998151,-56.2500898283531,-56.2500934969117,-56.25009714546,-56.2501008140187,-56.2501044825773,-56.2501078109605,-56.2501111393437,-56.2501141275515,-56.2501170957489,-56.2501193769254,-56.2501216581018,-56.2501232522573,-56.2501248264025,-56.2501260870526,-56.2501269808469,-56.2501275277957,-56.2501281014248,-56.2501286550437,-56.2501288818273,-56.2501290952707,-56.2501289818789,-56.2501285083013,-56.2501283949095,-56.2501276011668,-56.2501264672487,-56.2501249931551,-56.250123172216,-56.2501203507609,-56.25011716245,-56.2501133137985,-56.2501084246103,-56.2501031885766,-56.2500972455116,-56.2500906421061,-56.2500836785148,-56.2500763947584,-56.2500687441461,-56.250059726162,-56.2500496876515,-56.2500385952642,-56.2500268492065,-56.2500202658112,-56.2500074925571,-56.2499936921065,-56.2499802318314,-56.2499667782263,-56.249953684807,-56.2499409315632,-56.2499285184948,-56.2499154450858,-56.2499010109751,-56.2498852028225,-56.2498677138029,-56.2498488507414,-56.2498139594137,-56.2497100124723,-56.2479033407255,-56.2476961472038,-56.247499392399,-56.2455408623349,-56.2453547930409,-56.2452494392396,-56.2450818656186,-56.244787840649,-56.2444455241076,-56.2443766926197,-56.2436836645305,-56.242940427891,-56.2421001578756,-56.2419442847871,-56.2418786302948,-56.2417486363778,-56.2416372758221,-56.2414471916994,-56.2411094130984,-56.2404319660055,-56.2403597917851,-56.240189582019,-56.239676802766,-56.2391679899399,-56.2390495561756,-56.2386203482447,-56.2381904869122,-56.2381229445163,-56.2378532657645,-56.2370723309504,-56.2362807966821,-56.2354731234777,-56.2347042402783,-56.2339125386442,-56.2331081638075,-56.2339012328135,-56.2341669832011,-56.2331838861928,-56.2331586631846,-56.2322317451493,-56.2321676921155,-56.2311904181103,-56.2309123780513,-56.2301526262278,-56.2298373465536,-56.2289848506427,-56.2279090191422,-56.2270365469979,-56.2274771397443,-56.228071489599,-56.2283077981361,-56.2291210375445,-56.2299316856164,-56.2307006288468,-56.2315234325506,-56.2323135063198,-56.2331333096738,-56.2339256815881,-56.2347254115305,-56.2355177509853,-56.2363249088697,-56.237116989126,-56.2379413321541,-56.2387287724992,-56.2395243065416,-56.2403074660579,-56.240500391038,-56.2405789964598,-56.2406573293594,-56.2411393325173],&#34;lat&#34;:[-34.8702124764038,-34.8704474558975,-34.870605197385,-34.8706944311925,-34.8708198041321,-34.8709172031062,-34.8711493150397,-34.8712908458741,-34.8714983037737,-34.8716279276118,-34.8716678362142,-34.8717048096879,-34.8720438020376,-34.8724050087897,-34.872552227803,-34.8727055017796,-34.872908068472,-34.8728669066293,-34.8728347626814,-34.872769363824,-34.8727251005003,-34.8726873565515,-34.8727091169198,-34.8726790022222,-34.8726106327956,-34.8725676698052,-34.8725631141224,-34.8724903941188,-34.8724387800001,-34.8723828319796,-34.872322360793,-34.8723069361715,-34.8722986852497,-34.872301019787,-34.8722720340049,-34.8722601527174,-34.8722351082947,-34.8722221057556,-34.8721948028851,-34.8721657588006,-34.8721446359559,-34.8721323578848,-34.8721307477907,-34.8721269704136,-34.8721353132871,-34.8721448337199,-34.8721089407269,-34.8720372437509,-34.8719881418705,-34.8719554949243,-34.8718699249603,-34.871882277164,-34.8718052040821,-34.8718205695065,-34.8717961936018,-34.8717019208163,-34.87166332285,-34.8716019691787,-34.8715972969521,-34.871570021165,-34.8715184887157,-34.8714134462092,-34.8713052345684,-34.8712544058547,-34.8711894231748,-34.8711642068368,-34.8711596461514,-34.8711505839778,-34.8711143444548,-34.8710917327934,-34.8710601415009,-34.8710126820249,-34.8709474775639,-34.8708799610773,-34.8707224490109,-34.8706326343579,-34.8705878887815,-34.8705070796061,-34.870408250304,-34.8702735449997,-34.8702466161118,-34.8702376464859,-34.8702107376083,-34.8701928041929,-34.8701613596428,-34.8701209129501,-34.8700985047269,-34.8700761006726,-34.8700491709509,-34.8700311975149,-34.8700086975778,-34.8699771921629,-34.8699457217662,-34.8699098115797,-34.8698829827434,-34.8698785379511,-34.8698696041771,-34.8698472243019,-34.8698293517512,-34.8698114658603,-34.8697844886141,-34.8697620195262,-34.8697575964118,-34.8697486843156,-34.8697218488092,-34.8697040387907,-34.8696996832111,-34.8696818798628,-34.8696774217303,-34.8696459996918,-34.8696101111832,-34.869601164069,-34.8695654064612,-34.8695386218143,-34.869529720557,-34.8695163569985,-34.8695074540737,-34.8694985244684,-34.8694761537646,-34.8694492815726,-34.8693154150342,-34.8693020164575,-34.8692616398009,-34.8692302394403,-34.8692213498557,-34.8692124477647,-34.8692034748038,-34.8691944926715,-34.8691855655675,-34.8691721561519,-34.8691542785987,-34.8691363868715,-34.86907811015,-34.8690466906128,-34.8690287230131,-34.8689928111591,-34.8689389375418,-34.8688623071882,-34.868821735431,-34.8687946873149,-34.8687631410457,-34.868731613953,-34.8687091515353,-34.8686461382044,-34.868619101761,-34.8685831548889,-34.8685562093257,-34.8685382475624,-34.868520264955,-34.8684977858619,-34.8684943774374,-34.8684528960444,-34.8684200584582,-34.8683803896724,-34.8683038101889,-34.8682535307598,-34.868223031623,-34.8681239684494,-34.8680485950361,-34.8679792959634,-34.8679096783932,-34.8676735366088,-34.8674711693883,-34.8673521025037,-34.8670655864067,-34.8670618858847,-34.8669822150766,-34.8669111484257,-34.8668497851124,-34.866807149791,-34.8667359980962,-34.8666429667843,-34.8665968496672,-34.8665482829534,-34.8663946403827,-34.8663809649966,-34.8662120979075,-34.8659941254936,-34.8657511468499,-34.8654789464692,-34.8653336615421,-34.8650555614521,-34.8648953204784,-34.8647001581615,-34.8643738632162,-34.8642263287956,-34.8640920161938,-34.8638555592469,-34.863747048285,-34.8635620945663,-34.8634354759325,-34.8633543907815,-34.8632943581545,-34.8632066362473,-34.8628978603371,-34.8626802280985,-34.8624240576516,-34.8623340145474,-34.8622378065971,-34.8621739303212,-34.8621364293143,-34.8621151833572,-34.8620878826108,-34.8620928585104,-34.8620976059587,-34.862071000571,-34.8620734301573,-34.8620810774346,-34.8620570583806,-34.8620533014431,-34.8620255588022,-34.8620262091376,-34.8620141012265,-34.8620137493784,-34.8620045796494,-34.8619986782725,-34.8619623995627,-34.8619132275367,-34.8619174697245,-34.8618847661918,-34.8618433331571,-34.861806604215,-34.8617786531333,-34.861738127233,-34.8617094924653,-34.8617041130244,-34.8617402366542,-34.8617991520384,-34.8618674689379,-34.8618900939395,-34.861917373008,-34.8619307532419,-34.8619650075744,-34.8619392242773,-34.8619437182616,-34.8618654278852,-34.8617462947786,-34.8616822934381,-34.8615907262146,-34.861304768739,-34.8611751102041,-34.8610107637798,-34.8608922359853,-34.8607416266455,-34.8605545434953,-34.860426612518,-34.8603593761758,-34.860056468805,-34.8598469802535,-34.8597468536156,-34.859641861135,-34.859537070425,-34.8594323164007,-34.8592798160858,-34.8591095999676,-34.85898915285,-34.8588793478874,-34.8587922446327,-34.858682182871,-34.8585993218041,-34.8585256237962,-34.8584881778176,-34.8584465446797,-34.8584663298834,-34.8584607186562,-34.8584245933588,-34.8584130840899,-34.858390819274,-34.8583900638844,-34.8583749160723,-34.8583613757559,-34.8583280785837,-34.8583099609066,-34.8582776525777,-34.8582181485566,-34.8582078232316,-34.8581661600782,-34.8581208750569,-34.8580924970883,-34.8580163961744,-34.8579614928594,-34.8578866659359,-34.8577866960456,-34.8577249025104,-34.8577000213452,-34.8576434404983,-34.8575472358831,-34.857432888578,-34.8573857025763,-34.8573438660001,-34.8573261385242,-34.8571341511781,-34.8570276996117,-34.8568593978141,-34.8567620359354,-34.856626365967,-34.856460510431,-34.8563608156825,-34.8562581960923,-34.8562269399728,-34.856179278726,-34.8561630353488,-34.8561609909612,-34.8561577526244,-34.8561578676837,-34.8561253075583,-34.8560994592277,-34.8560927240875,-34.8560969129145,-34.8560806945503,-34.8560657101558,-34.8560399568741,-34.8560326097517,-34.8560776796621,-34.8561273953017,-34.8562507422482,-34.8563031175928,-34.8563005696121,-34.8562788984357,-34.856216257797,-34.8561453695715,-34.8560332017237,-34.8558226081152,-34.8557432171712,-34.8556882971809,-34.8556416047671,-34.8555400807419,-34.8554441679439,-34.8553647686623,-34.8552002704931,-34.8550504115403,-34.8550088401008,-34.8549361159284,-34.8548774106526,-34.8548532898796,-34.8548161123729,-34.8548007261044,-34.8547613674729,-34.8547547607323,-34.8546738223236,-34.8545620496796,-34.8545115769829,-34.8545005396239,-34.854439196321,-34.8544192660424,-34.8543644511063,-34.8543073616638,-34.8543029143702,-34.8542610961368,-34.8542170617605,-34.8542095895735,-34.8541686617994,-34.8541462969319,-34.8541158078746,-34.8540820037743,-34.8540811299903,-34.8541178789427,-34.8542402036954,-34.8546001543311,-34.8546269931726,-34.8547150919407,-34.8547870473833,-34.854809238828,-34.8548815444512,-34.8549160906009,-34.8549803470729,-34.8550343649313,-34.8550618107525,-34.8550804153473,-34.8551089283856,-34.8551303044097,-34.8551811422948,-34.8551918428133,-34.8552267858344,-34.8552455238313,-34.8552544250886,-34.855263364699,-34.855266866505,-34.8552767432653,-34.8552901868652,-34.8553081177793,-34.8553215813895,-34.8553395556593,-34.8553575099188,-34.855375482521,-34.8553934117676,-34.8554023530455,-34.8554158116531,-34.8554338159384,-34.8554517935433,-34.8554652604885,-34.8554787090909,-34.8554876637091,-34.8554920793197,-34.855500983912,-34.8555143791536,-34.8555187864265,-34.8555232153773,-34.8555231403386,-34.8555275692894,-34.855518319519,-34.8555091898106,-34.8555000717749,-34.8554909520717,-34.8554818623839,-34.8554727877038,-34.8554637146913,-34.8554546433463,-34.855441049669,-34.8554274659969,-34.8554093866729,-34.8553958196761,-34.8553822259988,-34.8553686323215,-34.8553505229821,-34.8553323836272,-34.8553188066252,-34.8553007256337,-34.8552871419616,-34.8552735816348,-34.8552554656253,-34.8552419002959,-34.8552192619541,-34.8552011476121,-34.8551875556023,-34.8551604116035,-34.8551423322795,-34.8551287702852,-34.8551106476056,-34.8551015779281,-34.855078922911,-34.8550698365583,-34.8550562478836,-34.8550471732035,-34.8550380801807,-34.8550245065138,-34.8550109095014,-34.8550018331538,-34.8549882578193,-34.8549746958251,-34.8549521025065,-34.8549340315202,-34.8549113865082,-34.8548978245139,-34.8548842475119,-34.8548571201883,-34.8548525361576,-34.8548298878106,-34.8547937891936,-34.8547712525709,-34.8547532166026,-34.8547306666397,-34.8546900873786,-34.8546811310929,-34.8546722098253,-34.8546587762306,-34.8546453326307,-34.8546319023711,-34.854618445431,-34.8546049734832,-34.854596018865,-34.8545825802677,-34.8545781429793,-34.8545692117065,-34.8545602754312,-34.8545558381428,-34.8545559248542,-34.8545605038824,-34.8545605772535,-34.8545561466352,-34.8545471970197,-34.8545472787285,-34.8545518594242,-34.8545519394655,-34.8545520178392,-34.8545475855534,-34.8545432266387,-34.8545388026905,-34.8545388860668,-34.8545389577705,-34.8545390294741,-34.854534612196,-34.8545347005749,-34.8545347822837,-34.8545303583355,-34.8545304467145,-34.8545170698157,-34.8545126341948,-34.8545037879659,-34.8544272418224,-34.8544092025191,-34.8543686132528,-34.854346038277,-34.8543414509112,-34.854332369561,-34.8543188042317,-34.8543097078738,-34.8543006248561,-34.8542870478541,-34.8542779748416,-34.8542463185156,-34.8542282658721,-34.8542102215662,-34.854192195603,-34.8541741512971,-34.8541515863265,-34.8541335536932,-34.854102004089,-34.8540794691338,-34.8540614465057,-34.8540434272127,-34.8540254212599,-34.8540074386525,-34.8539894593801,-34.8539759924349,-34.8539579864821,-34.8539400038746,-34.8539265369294,-34.8539130733192,-34.8538906184053,-34.8538591788578,-34.8538502342448,-34.8538368073202,-34.8538233637204,-34.8538054911697,-34.8537965498918,-34.8537921142709,-34.8537831930033,-34.8537742784058,-34.8537698427849,-34.8537608948369,-34.853756459216,-34.8537475212731,-34.8537385866653,-34.8537296420523,-34.8537206974394,-34.8537117528264,-34.8536983592523,-34.8536849223226,-34.8536804967068,-34.8536625641252,-34.85364909718,-34.8536492205769,-34.853640279299,-34.853631331351,-34.8536134087745,-34.8536044674966,-34.8535910272318,-34.8535799281744,-34.8535729345676,-34.8535576833688,-34.8535471512705,-34.853536605832,-34.8535189767402,-34.8535060934293,-34.853497942559,-34.8534862398569,-34.8534768816974,-34.853453399587,-34.8534387753783,-34.8534298274303,-34.8534253951444,-34.853420986204,-34.8534172909649,-34.8534138391847,-34.8534033204266,-34.85338570134,-34.8533775171192,-34.8533646037928,-34.8533434395445,-34.8533268876749,-34.8533133206781,-34.8532574652053,-34.8532327557954,-34.8532140061257,-34.8531987849424,-34.8531859383171,-34.853178677906,-34.8531561596261,-34.853129122349,-34.8531020817368,-34.8530975093787,-34.8530794367248,-34.8530614107617,-34.853043408144,-34.8530344535258,-34.8530164375679,-34.8529938759323,-34.852975843299,-34.852953315014,-34.8529398480687,-34.8529308967856,-34.8529129075081,-34.85289488488,-34.8528768755922,-34.8528588996549,-34.8528409070423,-34.8528228977544,-34.8528048951367,-34.8527869125293,-34.8527824902486,-34.8527870759469,-34.852787145983,-34.8527827103621,-34.8527827837333,-34.8527738557956,-34.8527558531778,-34.8527378238797,-34.8527198346021,-34.8527018419895,-34.852683849377,-34.8526612777362,-34.8526432217576,-34.8526206567869,-34.8526025908032,-34.8525845381596,-34.8525665055264,-34.8525484662231,-34.8525304202496,-34.852512364271,-34.8524988006092,-34.8524852336124,-34.852467187639,-34.8524491349954,-34.8524310723467,-34.8524039817087,-34.8523859023848,-34.8523723287178,-34.8523542393887,-34.8523362000853,-34.8523181941325,-34.8523047138471,-34.8522822189125,-34.8522642029546,-34.8522461803265,-34.8522236520414,-34.8522056194082,-34.8521830644427,-34.8521650284744,-34.8521424935192,-34.852124457551,-34.8521019125906,-34.852083919978,-34.8520704697081,-34.8520615250951,-34.8520525771471,-34.852043625864,-34.8520347112665,-34.8520212710017,-34.8520078507472,-34.8519989194744,-34.8519809768876,-34.8519675066073,-34.8519630743215,-34.8519541297085,-34.851931634774,-34.8519181544885,-34.8519001718811,-34.8518821559231,-34.8518641366301,-34.8518326103712,-34.8518101121016,-34.8517966451564,-34.8517877072135,-34.8517832782627,-34.851774350325,-34.8517654090471,-34.8517564610991,-34.8517384651515,-34.8517204558636,-34.8517024499108,-34.851679938301,-34.8516574300263,-34.851643963081,-34.8516304928007,-34.851612493518,-34.8515900019185,-34.8515585056751,-34.8515405030573,-34.8515224870994,-34.8515044678064,-34.8514819628667,-34.8514639435737,-34.8514377700753,-34.8514233659801,-34.8514098056533,-34.8513917363345,-34.851373683691,-34.8513556377176,-34.8513376050843,-34.8513195757862,-34.8512970041454,-34.8512834338135,-34.8512743591335,-34.8512697867754,-34.8512697067341,-34.8512516340802,-34.8512335614264,-34.8512064674533,-34.8511928904513,-34.8511793101142,-34.8511657364473,-34.8511521727855,-34.8511341034667,-34.8511160274778,-34.8511024471407,-34.8510888834789,-34.8510753198171,-34.8510617561553,-34.8510391778444,-34.8510211218659,-34.8510030892326,-34.8509851333056,-34.8509761820226,-34.8509717530718,-34.8509628117938,-34.8509628951702,-34.8509584762246,-34.8509585462607,-34.8509541173099,-34.8509496950292,-34.8509407670915,-34.8509273201566,-34.8509138632165,-34.8508958906142,-34.8508824303391,-34.8508689567237,-34.8508555064537,-34.8508420495137,-34.8508285792334,-34.8508106032961,-34.8507926306938,-34.8507746580915,-34.8507521698271,-34.8507296615523,-34.8507071399373,-34.8506846149873,-34.8506665956943,-34.8506485730662,-34.8506305504382,-34.8506080188181,-34.8505899928549,-34.8505719602217,-34.8505494185964,-34.8505268769711,-34.8505088376678,-34.8504862960425,-34.8504682600742,-34.8504502341111,-34.8504277091611,-34.850405180876,-34.8503826359156,-34.850364576602,-34.8503510096051,-34.8503374459433,-34.8503238756115,-34.8503057962875,-34.8502922326257,-34.8502741666419,-34.8502516050063,-34.850229063381,-34.8502110374179,-34.8501930214599,-34.8501750388525,-34.8501615752423,-34.8501480949569,-34.8501346180065,-34.850112126407,-34.8500941337944,-34.8500716288547,-34.8500491139098,-34.8500310979518,-34.8500130753238,-34.8499950460256,-34.8499725077354,-34.8499499761152,-34.8499319734975,-34.8499139742148,-34.8499005005995,-34.8498870403243,-34.8498735600389,-34.8498600930936,-34.8498466161432,-34.8498286302007,-34.8498106209129,-34.8497926049549,-34.8497700766698,-34.8497475450497,-34.8497250034244,-34.849702458464,-34.8496844158257,-34.8496663765223,-34.8496438215568,-34.8496212665913,-34.8496032239529,-34.8495806689874,-34.8495581140219,-34.8495355557214,-34.8495175097479,-34.8494949414422,-34.8494768887987,-34.8494588361551,-34.8494362711845,-34.849418221876,-34.8494001792376,-34.8493821365992,-34.8493640939608,-34.8493460446523,-34.8493279886738,-34.8493099326951,-34.8492918767165,-34.8492738207379,-34.8492557680944,-34.8492332097939,-34.8492151571503,-34.8491926055198,-34.8491745595464,-34.8491565202431,-34.8491339719477,-34.8491114303224,-34.8490933976892,-34.849075365056,-34.8490573357578,-34.8490393064596,-34.8490212771614,-34.8490032478633,-34.8489807129081,-34.8489626836099,-34.8489401519898,-34.8489176170346,-34.8488905764224,-34.8488680448023,-34.8488410108601,-34.848813973583,-34.8487869396409,-34.8487644113558,-34.8487373807488,-34.8487103468067,-34.8486833128646,-34.8486562789225,-34.8486292449804,-34.8485526187957,-34.8485300738353,-34.8485075255399,-34.8484849705744,-34.8484624156089,-34.8484218046648,-34.8483992396941,-34.8483766713884,-34.8483540997477,-34.8483315247718,-34.8483044408039,-34.848277353501,-34.848250262863,-34.8482231688899,-34.8481960715818,-34.8481689709386,-34.8481463792875,-34.8481237909715,-34.8480966969985,-34.8480741186876,-34.8480515470468,-34.8480019114485,-34.8479592261012,-34.8479477868684,-34.8479207262458,-34.8478981746154,-34.8478711106578,-34.8478485556923,-34.8478214917347,-34.8477944344473,-34.8477673771598,-34.8477403198723,-34.847717774912,-34.8476907209596,-34.8476681759992,-34.8476411220468,-34.8476230827435,-34.8476005344481,-34.8475824951447,-34.8475644558414,-34.8475464165381,-34.8475283772348,-34.8475103379314,-34.8474877929711,-34.8474652513458,-34.8474427097205,-34.8474201680952,-34.8473931208129,-34.8473705825226,-34.8473435385754,-34.8473164946281,-34.847293959673,-34.8472669157257,-34.8472443807705,-34.8472173368232,-34.8471948018681,-34.8471677612559,-34.8471452296357,-34.8471226946806,-34.8471001663955,-34.8470776347753,-34.8470551064902,-34.8470370871973,-34.8470145622472,-34.8469965496243,-34.8469740313444,-34.8469515130645,-34.8469244924626,-34.8469019775177,-34.8468749602509,-34.8468524486411,-34.8468254347093,-34.8467984207775,-34.8467714135159,-34.8467399005972,-34.8467129000056,-34.8466948940528,-34.8466678934613,-34.8466408995398,-34.8466139022833,-34.8465869050268,-34.8465644134273,-34.8465419218278,-34.8465194268933,-34.8465014442858,-34.8464834650135,-34.8464654890761,-34.8464520254659,-34.8464385685258,-34.8464296706037,-34.8463443832854,-34.8473509323886,-34.8474642908504,-34.8475728568407,-34.8486756555822,-34.8487800494208,-34.8488391594867,-34.8489331783933,-34.849097263016,-34.8492842527847,-34.8493230566035,-34.8497137476195,-34.8501220815411,-34.8506046804297,-34.8506884953811,-34.8507237985286,-34.8508042103751,-34.8508598987189,-34.8509680672394,-34.8511468446822,-34.8515386322252,-34.851579728098,-34.8516690184273,-34.8519380146255,-34.8521957619178,-34.8522569606199,-34.8524792777947,-34.852695021611,-34.8529044200721,-34.8531349179131,-34.8537678763218,-34.8544513058995,-34.8551299458915,-34.8557769078797,-34.8564419675346,-34.855795539155,-34.8551304811676,-34.8548907625386,-34.8554031918114,-34.8554167938263,-34.855960584273,-34.8560013519646,-34.8565948730586,-34.8567670201726,-34.857184070256,-34.8573566391606,-34.8578232465622,-34.858322405658,-34.8587194132767,-34.8591485383825,-34.8596063745003,-34.8597904127469,-34.8604323388045,-34.861101307142,-34.8617658965544,-34.8624060347454,-34.8630462712218,-34.8637023358326,-34.8643345201377,-34.8649790434417,-34.8656173661189,-34.866268074553,-34.8669371298042,-34.8675858860327,-34.868266193924,-34.8689103553624,-34.8695714265384,-34.8697399874414,-34.8697957629344,-34.8698578816909,-34.8702124764038]}]],[[{&#34;lng&#34;:[-56.3574679125988,-56.3555535119054,-56.3534686768488,-56.3534063514307,-56.3513985808748,-56.3510477711131,-56.3507791427567,-56.3503863942002,-56.3489192236574,-56.3486643992565,-56.3488399832679,-56.3489256006249,-56.3490588155946,-56.3490916727147,-56.3491207814828,-56.3491645637935,-56.3492210329559,-56.3492768083236,-56.3493147613554,-56.3493804481586,-56.3494498973968,-56.3494783123994,-56.3495224152083,-56.3495548847797,-56.3495860076102,-56.3496208787984,-56.3496451713478,-56.3496848319799,-56.3497083776954,-56.3497211310939,-56.3497346173745,-56.3497624855405,-56.3498089230513,-56.3498341089527,-56.3498579076969,-56.3498703279657,-56.3498937533555,-56.3499147369466,-56.3499461271468,-56.3499727136477,-56.349987548218,-56.3500081853263,-56.3500425500704,-56.3500741264533,-56.3501005661348,-56.3501647729533,-56.350206994485,-56.350239931994,-56.3502739227612,-56.3502996960594,-56.3503193062281,-56.3503347669863,-56.3503543510054,-56.3503808041374,-56.3503983064624,-56.3504443705742,-56.3504632734243,-56.3505339899416,-56.3505727697068,-56.3506039460723,-56.3506743026325,-56.3506979010706,-56.350719805932,-56.3508066242495,-56.3508494729197,-56.3509399329634,-56.3510068068091,-56.3511274825874,-56.3511927965483,-56.3512874851492,-56.3513576281875,-56.3513960079457,-56.3513910723351,-56.3513895114746,-56.3514741411661,-56.351500528175,-56.3514888955293,-56.351538921608,-56.3515564638083,-56.3516013005544,-56.3516243923233,-56.351646763998,-56.3516715903296,-56.3517141718283,-56.3517324748149,-56.351786382355,-56.351823201636,-56.3518719465108,-56.3518884485202,-56.3519076985157,-56.3519561764229,-56.35197553362,-56.3520000262706,-56.3520158740784,-56.3520283206768,-56.3520438884739,-56.352057615496,-56.3520908596977,-56.3521115503955,-56.3521294664445,-56.3522022767798,-56.3522373214855,-56.3522497548912,-56.352326314247,-56.3523597181507,-56.3523738322512,-56.3523889734422,-56.3524051550307,-56.3524415874012,-56.3524571554758,-56.3525295256328,-56.3526030303603,-56.3526199458995,-56.3526337531512,-56.3526572315726,-56.3526779892899,-56.352699026274,-56.3527522005853,-56.3528110711037,-56.3528525187989,-56.3528497044423,-56.3528455023989,-56.3528403128866,-56.3528250645281,-56.3528131920898,-56.3527602984442,-56.352715902208,-56.3526728932819,-56.3526824445284,-56.352706923927,-56.3526841920229,-56.3526376214387,-56.3526199724206,-56.3526006024579,-56.3525429063769,-56.3525069274163,-56.3525046728005,-56.3525194675244,-56.3525288318278,-56.3525740153156,-56.3525881290297,-56.3526275094678,-56.3526396892326,-56.352637048049,-56.3526342331404,-56.3526530158899,-56.3526559376001,-56.3526603402243,-56.3526698383313,-56.3526811375716,-56.352697812855,-56.3527376998551,-56.3527697297952,-56.3528161669147,-56.3528755311322,-56.3528813740283,-56.352893099731,-56.3529132566867,-56.3529259704354,-56.3529652035724,-56.3530147761538,-56.3530411365154,-56.3530424436919,-56.3530454452535,-56.3530452714731,-56.3530361473217,-56.3530179242243,-56.3529853338924,-56.3529648569191,-56.3529612953185,-56.3529509965659,-56.3529381096592,-56.3529778234104,-56.3530072656909,-56.352985774268,-56.352986254555,-56.3530198989895,-56.3529869350265,-56.3529343215085,-56.3528931532495,-56.3528847759462,-56.3528773453256,-56.3529059468348,-56.3528781854026,-56.352807895909,-56.3527009208146,-56.3526481071106,-56.3525961068071,-56.3525467348883,-56.3524417202854,-56.3523426160999,-56.3523264479696,-56.352360598623,-56.3524170814429,-56.3524124252699,-56.3523742992258,-56.3523471253101,-56.3523640007704,-56.3523967372633,-56.3524716691304,-56.3524820080154,-56.3524978294589,-56.3525185600216,-56.3525410118093,-56.3525580073442,-56.3525666652536,-56.3526204396719,-56.3526675038066,-56.3526704519582,-56.3526716127442,-56.3526677438918,-56.3526611801151,-56.3526725595723,-56.3526757345917,-56.3526832584501,-56.3526801767981,-56.3526701847404,-56.3526630076602,-56.3526504546961,-56.352633019131,-56.3525835403027,-56.3525555924556,-56.3525590740524,-56.3525712006802,-56.3525817796758,-56.3525794317906,-56.3525614753529,-56.3525509365815,-56.3525447739218,-56.3525534582811,-56.3525551255254,-56.3525418389975,-56.3525242561863,-56.3525086083931,-56.3524693748022,-56.3524379184642,-56.352427126544,-56.3524447753487,-56.3524526458717,-56.3524607172543,-56.3524630783421,-56.3524673735994,-56.3524769119572,-56.3525158786396,-56.3525705737789,-56.3525647307134,-56.3525319535487,-56.3525126107093,-56.3524998036545,-56.3525272846253,-56.3525555923274,-56.3526084865268,-56.3527188370253,-56.3527836966573,-56.3527942759662,-56.3528828414008,-56.3529239956094,-56.352944606765,-56.3529788510632,-56.3530473261009,-56.3530721119543,-56.353221802792,-56.3533282042537,-56.3533687853632,-56.3536163259571,-56.3537055320049,-56.3537874278128,-56.35379307042,-56.3537997809877,-56.3538063439774,-56.3538258343454,-56.3538426294895,-56.3538470984517,-56.3538526879815,-56.3538580374569,-56.353863320299,-56.3538636675212,-56.3538727787781,-56.3538773673748,-56.3538804625723,-56.3538805693161,-56.3538822231608,-56.3539108916245,-56.3539542870279,-56.3538962975157,-56.3538363061159,-56.3537956057352,-56.353733787012,-56.3537496216379,-56.3536761438203,-56.353606708243,-56.353598903707,-56.3536225294182,-56.3536600422329,-56.353692498808,-56.3537258761381,-56.3537648294854,-56.35380292932,-56.3538535822442,-56.3539162273974,-56.3539592228599,-56.3539711494803,-56.353969348344,-56.3539520060653,-56.3539561149068,-56.3539785795729,-56.3540357693858,-56.3540748690879,-56.354107379551,-56.3542042297022,-56.3542455373602,-56.3543065089872,-56.3542598045713,-56.3542401678275,-56.3542240264635,-56.3541951714736,-56.3541273099881,-56.354083633733,-56.3540579409608,-56.3540568070235,-56.3540597149517,-56.3540674654011,-56.3540782578911,-56.3540918251788,-56.3541077398701,-56.354118710259,-56.3541467731822,-56.3541695315859,-56.3541933171861,-56.3542051899759,-56.3542286287305,-56.3542503599379,-56.354269703247,-56.3542863384929,-56.3543002389951,-56.3543107244027,-56.3543188085719,-56.3543255320394,-56.3543329491979,-56.354341713718,-56.354353226322,-56.3543674469893,-56.3543840555548,-56.3544030520184,-56.3544251300713,-56.3544370028611,-56.3544495693419,-56.354463149679,-56.3544770768616,-56.3544916577146,-56.3545073057847,-56.35452327402,-56.3545395757605,-56.3545562376868,-56.3545725260872,-56.354588841168,-56.3546044625576,-56.354619750442,-56.3546479783332,-56.3546608783194,-56.354685691116,-56.3547087963653,-56.3547319149548,-56.354754700039,-56.3547778319687,-56.3548012974037,-56.3548131835337,-56.3548376761652,-56.3548625156422,-56.3548750687829,-56.3549005886108,-56.3549134885969,-56.3549390084248,-56.3549519217512,-56.35497812193,-56.3550039485828,-56.3550171954145,-56.3550434089335,-56.3550695824319,-56.3550960894355,-56.3551226364598,-56.3551491568037,-56.3551750234772,-56.355199849614,-56.3552233283893,-56.355245086277,-56.3552655101435,-56.3552859340099,-56.3553070382272,-56.3553295031463,-56.3553529952618,-56.355375847047,-56.3553980051412,-56.3554273402701,-56.3554553280374,-56.3554847165271,-56.3555059141259,-56.355528125581,-56.3555510173869,-56.3555739492134,-56.3555968410193,-56.3556190524743,-56.3556413039499,-56.355663515405,-56.3556846996636,-56.3557144349988,-56.3557403817135,-56.3557622196426,-56.3557833772208,-56.3558072828829,-56.3558328560716,-56.3558560146818,-56.3558740373098,-56.3558889916888,-56.355903265717,-56.3559189004469,-56.3559372966009,-56.3559598015406,-56.3559771704982,-56.3560058252762,-56.3560262624829,-56.3560474067209,-56.3560681907731,-56.3560879609691,-56.3561056767722,-56.3561288620628,-56.3561506999919,-56.3561746189942,-56.3561999387189,-56.3562259387944,-56.3562512851995,-56.3562759512538,-56.3563012976589,-56.3563187733382,-56.3563451469398,-56.3563626359593,-56.3563797781333,-56.3564037771769,-56.3564233472697,-56.3564418901661,-56.3564556439259,-56.3564738399767,-56.3564968118239,-56.3565197970113,-56.3565465974997,-56.3565634195085,-56.3565782271452,-56.3565920075855,-56.3565924611527,-56.3565758259068,-56.3565519602654,-56.35653911364,-56.356546744242,-56.3565618987242,-56.3565753056385,-56.3565904334403,-56.3566069486243,-56.3566224366118,-56.3566351631752,-56.3566445013245,-56.3566535059684,-56.3566597625284,-56.3566677399759,-56.3566815204162,-56.3566949273305,-56.3567130967009,-56.3567339474542,-56.3567585201269,-56.3567855473989,-56.3568108671236,-56.3568304238762,-56.3568434972851,-56.3568576245709,-56.3568717785372,-56.3568828242337,-56.3568952039516,-56.3569140936935,-56.3569325965693,-56.3569527936521,-56.3569792472949,-56.3569598239444,-56.3569441892145,-56.3569357581998,-56.3569508726614,-56.3569728039719,-56.3569936814056,-56.3570186276043,-56.3570463352272,-56.3570743896956,-56.3571014169676,-56.3571264165272,-56.3571503622099,-56.3571739743873,-56.3571979334103,-56.3572221859179,-56.3572461182604,-56.3572686365403,-56.3572986920407,-56.3573232913939,-56.3573485577578,-56.3573759185351,-56.3573944614315,-56.3574092423877,-56.3574267580877,-56.357440165002,-56.3574580275475,-56.3574819999106,-56.3574994889302,-56.357522127272,-56.3575365613827,-56.3575465798828,-56.3575576389196,-56.3575809576123,-56.3576045697897,-56.3576319038866,-56.3576606120255,-56.3576879594626,-56.3577142930435,-56.3577385855717,-56.3577611705527,-56.3577820746669,-56.3578080747424,-56.3578347551689,-56.3578552724168,-56.3578764566754,-56.3578965870572,-56.3579215599363,-56.3579431310611,-56.3579620074628,-56.3579768150995,-56.3579919562415,-56.3580067638782,-56.3580195304622,-56.3580339645729,-56.358059310978,-56.3580893798186,-56.3581115912737,-56.3581327888725,-56.3581533194606,-56.3581701814901,-56.3581809070216,-56.3581940337914,-56.3582132570386,-56.3582389236089,-56.3582517969146,-56.3582469010564,-56.3582488087069,-56.3582695927591,-56.3582895096974,-56.3583144825766,-56.3583356401547,-56.3583602261677,-56.3583817172512,-56.3584052760678,-56.3584315963084,-56.358457222858,-56.3584828227272,-56.3585043271509,-56.3585282461532,-56.3585514581242,-56.3585736695793,-56.3585952006834,-56.3586167051071,-56.3586402639237,-56.3586603943054,-56.3586750018389,-56.3586885955162,-56.3586918772086,-56.3587078454439,-56.3587272421139,-56.3587473458152,-56.3587664089799,-56.3587861658357,-56.3588096979718,-56.3588319094268,-56.3588564820996,-56.3588811214734,-56.3589047336508,-56.3589262914354,-56.3589523181914,-56.3589715147582,-56.3589822136092,-56.3589806261238,-56.3589749565332,-56.3589610293506,-56.3589399251333,-56.3589222093301,-56.3588949285941,-56.3588751583981,-56.3588533738299,-56.3588521198499,-56.3588757186871,-56.3589040933206,-56.3589249307336,-56.3589454079609,-56.3589730622229,-56.3589993291028,-56.3590115487381,-56.359017551834,-56.3590269833648,-56.3590384959688,-56.3590530768218,-56.3590771959274,-56.3591014084144,-56.3591165228759,-56.3591098394291,-56.3590979532991,-56.3590847064674,-56.3590787033714,-56.359098260124,-56.359122846137,-56.3591443772411,-56.3591665620157,-56.3591884266252,-56.3592092773785,-56.3592359311245,-56.3592571554037,-56.3592810477256,-56.3593060206048,-56.3593302864526,-56.3593515374123,-56.3593710941649,-56.359378044416,-56.3593802055305,-56.3593929587743,-56.3594067125342,-56.3594337798268,-56.3594549640854,-56.359475774818,-56.3594938374667,-56.3595135809823,-56.3595292157122,-56.3595438232457,-56.3595577504283,-56.3595767735723,-56.3595913544254,-56.3595984247384,-56.3596175012433,-56.3596386988421,-56.3596598831007,-56.3596816676689,-56.3596949145006,-56.359711202901,-56.3597196072353,-56.3597259838572,-56.3597457273728,-56.3597696730555,-56.3597936587589,-56.3598108542937,-56.3598348133167,-56.3598614403823,-56.3598822777953,-56.3599031285486,-56.3599280747473,-56.3599478716238,-56.3599734714929,-56.3599956562675,-56.3600192150841,-56.3600438544579,-56.3600657457478,-56.360084968995,-56.3600843953659,-56.360068760636,-56.3600603296212,-56.3600717221633,-56.3600892111829,-56.3601165452797,-56.3601387300543,-56.3601595541272,-56.3601847804704,-56.3601928779798,-56.3601855542027,-56.3601796311481,-56.3601723473917,-56.3601759625894,-56.3601946522282,-56.3602188913956,-56.3602410761702,-56.3602635677697,-56.360280603222,-56.3602979721796,-56.36031739553,-56.3603402339751,-56.3603634192656,-56.3603862310302,-56.3603840699157,-56.3603659005453,-56.3603497588873,-56.3603475710923,-56.3603666475972,-56.3603939550137,-56.3604243706999,-56.3604493168986,-56.3604760106652,-56.3604968480783,-56.3605211139261,-56.3605453530936,-56.3605665106717,-56.3605968996775,-56.360615642677,-56.3606270826639,-56.3606804627731,-56.3607043284145,-56.3607288744069,-56.3607510058206,-56.360767294221,-56.3607729638116,-56.360756475308,-56.3607389996287,-56.360718749185,-56.3606998327627,-56.3606847183011,-56.3606726720886,-56.3606582112974,-56.3606481794571,-56.3606655217343,-56.3606897609017,-56.3607109451603,-56.3607376122465,-56.3607724702237,-56.3607943081527,-56.3608192543515,-56.3608479358099,-56.3608967209696,-56.3609814713442,-56.3610452375635,-56.3610629533666,-56.3610928888051,-56.3611297211338,-56.3612820263481,-56.3613371481092,-56.3615063420335,-56.3615966152564,-56.3616400243102,-56.3616907304607,-56.3618056964182,-56.3619105504941,-56.3619417132322,-56.3619587486845,-56.3620926310644,-56.3621715250854,-56.3623313408398,-56.3624103415825,-56.3625244537664,-56.3625637006737,-56.3626527732774,-56.3627154322589,-56.3628204864381,-56.3628751946525,-56.3628765686944,-56.3629340650134,-56.3630809941219,-56.3631439465881,-56.3631412385248,-56.3631710005405,-56.3631096222194,-56.3630972024809,-56.363173975408,-56.3632755878121,-56.3633153416475,-56.3634951010207,-56.363689134422,-56.3638423200905,-56.3640310841076,-56.3641603107531,-56.3642560668036,-56.3643471938001,-56.364517615024,-56.3645951083226,-56.3646782712119,-56.3647884213525,-56.3647524294572,-56.364679658594,-56.3646012314805,-56.3645972427568,-56.3646474819998,-56.364783952381,-56.3649060686929,-56.36493404312,-56.3650081480044,-56.3650860948703,-56.3650735950905,-56.3650209279287,-56.3650142444819,-56.3648543429887,-56.3648218018986,-56.3648500461928,-56.3649537933151,-56.3650160114002,-56.3650789492212,-56.3651589106511,-56.3651705076315,-56.3651580386099,-56.3650461689669,-56.3650568379092,-56.3652197288608,-56.3652578887461,-56.3653017065446,-56.3653459167695,-56.3654170182431,-56.3654326408567,-56.3655138103382,-56.3655796054115,-56.3656017477596,-56.3656140736041,-56.3655560436076,-56.3654714793566,-56.3655128346037,-56.3655772547094,-56.365630108733,-56.3657521983501,-56.3658306658704,-56.365915669457,-56.3659665355114,-56.3660683478086,-56.366137410328,-56.366212049034,-56.3663115003899,-56.3663073377231,-56.3662542303318,-56.3663485991246,-56.3663994122293,-56.3665792518792,-56.3666389489972,-56.3667289955347,-56.3668033540889,-56.3668542202069,-56.3669613286887,-56.3670319520055,-56.3671424617416,-56.3672018128259,-56.3672721555652,-56.367430891069,-56.3675739377092,-56.3676666392716,-56.3677260696755,-56.3677932911231,-56.3678275754953,-56.3678722516699,-56.367861979634,-56.3678602056778,-56.3678631669736,-56.3679153675468,-56.3678281090306,-56.3678503735944,-56.3679207165391,-56.3681540234958,-56.3681732869604,-56.3681196327962,-56.3682002876132,-56.3682260344615,-56.3680997023952,-56.3677872344473,-56.3672665262312,-56.3670472926617,-56.3669683591859,-56.3670371481472,-56.3671331765954,-56.3672728494534,-56.367299996341,-56.3674188714049,-56.3674378617582,-56.3675053256209,-56.3675808321941,-56.3676567002988,-56.3677082563964,-56.3678164011256,-56.3679938648715,-56.3681067147807,-56.3681963519774,-56.368195687125,-56.3682956931608,-56.3683384017679,-56.3683990828087,-56.3683774809963,-56.3683880686813,-56.3684675400535,-56.3685283983863,-56.3685614391859,-56.3686140579516,-56.3686054747765,-56.3686656971582,-56.3687241784827,-56.3687511850511,-56.3687658761403,-56.3688073740292,-56.3688380698598,-56.3688562139745,-56.3689025317895,-56.3689399470201,-56.3689821174822,-56.3690217108436,-56.3691290332504,-56.3691674695675,-56.3691739096346,-56.3692382895967,-56.369333550153,-56.3693939327697,-56.3695463951613,-56.3696152306615,-56.3696044917899,-56.3697366190618,-56.369761973007,-56.3697994456659,-56.3699077894225,-56.3699662140589,-56.3701008983363,-56.3701627927351,-56.3702605101153,-56.3702973856493,-56.3703513537075,-56.370364131023,-56.3703773229511,-56.3704028811093,-56.3704196455188,-56.3704531296205,-56.3704801168199,-56.3705353456307,-56.3705776813827,-56.3706039207543,-56.3706325376271,-56.3706344338348,-56.3705911250041,-56.3705689491852,-56.370590997894,-56.3706363326381,-56.3707582998653,-56.3710783852478,-56.3710937574138,-56.37114140449,-56.3712134572566,-56.3712134959995,-56.3711911503447,-56.3711232377713,-56.3709420173278,-56.370807992466,-56.3707406377294,-56.3707414127269,-56.3707571381779,-56.3708291365141,-56.3708745473361,-56.3709798014873,-56.3710160369271,-56.3710931928845,-56.3711201911784,-56.3712268147203,-56.3712768074598,-56.3712861857491,-56.3713192483947,-56.3713317442341,-56.3713416627844,-56.3713550746102,-56.3713597673113,-56.3713333723219,-56.3713466586151,-56.3713765310116,-56.3715879413722,-56.3716537319167,-56.3716845337632,-56.3717802582659,-56.3718035809525,-56.3719007561303,-56.3719793045788,-56.3720042057764,-56.3719978327637,-56.3720144882698,-56.3720305380138,-56.3720854688871,-56.3721296207301,-56.3721299500856,-56.3720895887783,-56.3720351186597,-56.3720493552795,-56.3720994819288,-56.3721168446998,-56.3721187493678,-56.3721344334609,-56.3721431610466,-56.3722884893294,-56.372299353252,-56.3722894626911,-56.372290147909,-56.3723130886826,-56.3724814784942,-56.3726884068155,-56.3727529454352,-56.3728519932762,-56.3731760667407,-56.3732660986183,-56.3736601486941,-56.3738859533825,-56.3739727034582,-56.3741992880835,-56.3743315797155,-56.3744933461563,-56.3745481033633,-56.3745832096105,-56.3746212963959,-56.3747927084868,-56.3748266425425,-56.3749145766927,-56.3750038020204,-56.3750335228399,-56.3750538553833,-56.3750675823008,-56.3750630623505,-56.3750665418138,-56.3751107360589,-56.3751555681767,-56.375200605021,-56.3752852206348,-56.3754040617034,-56.3754947465273,-56.375526079181,-56.3756645740665,-56.3759029915278,-56.3759593157471,-56.3759771231079,-56.3759804262885,-56.3759593027441,-56.3759055541727,-56.3757397727455,-56.375718105671,-56.3757168399391,-56.3757358192158,-56.3757613871561,-56.375812982469,-56.3758867740905,-56.3759088497039,-56.3759668693119,-56.3761166165977,-56.3761956507156,-56.3762303058114,-56.3762635262322,-56.3762978131364,-56.3764200059169,-56.3765138473011,-56.3766014242143,-56.3766453736526,-56.3766799603931,-56.3766927626162,-56.3767359964553,-56.3768215029367,-56.3769764312822,-56.3770987608331,-56.3770329906488,-56.3769618895895,-56.3769208254119,-56.3768820307041,-56.3767510812728,-56.3765939740264,-56.3765098185247,-56.3764144784057,-56.3762606313243,-56.3760752680457,-56.3760773345012,-56.3758610259851,-56.3758404435387,-56.3759005361298,-56.3760750468838,-56.3761138804648,-56.3761759988514,-56.3762691470474,-56.3763242796532,-56.3764452121902,-56.376583291136,-56.3768238604612,-56.376827104767,-56.3768569652054,-56.3768948924968,-56.3769326345195,-56.3770126322193,-56.3771588330285,-56.3772513855208,-56.3774048613931,-56.3774549328582,-56.3774990433747,-56.3775581923568,-56.3775490831457,-56.3775539640222,-56.3775766563484,-56.3776121454012,-56.377665426437,-56.3776826022733,-56.3777360156744,-56.377778330774,-56.3778408379975,-56.3778687142056,-56.3778990485311,-56.3779133404358,-56.3779621105926,-56.378076754812,-56.3781267566447,-56.3781391004779,-56.3781830385441,-56.3782068488487,-56.3782517421837,-56.3782897371082,-56.3785764521197,-56.3788256472467,-56.3789706919606,-56.3790701802236,-56.3792210304298,-56.3793239177434,-56.3793543749014,-56.3793918876735,-56.3794422512767,-56.3795364868495,-56.3795323720248,-56.3795605769014,-56.3795582303636,-56.3795897172629,-56.3795986407625,-56.379626394257,-56.3796585566433,-56.3796778028699,-56.3796889486795,-56.3796859809217,-56.3797246628422,-56.3797351828094,-56.3797448719094,-56.3797315111283,-56.3797289164464,-56.3797518369932,-56.3797408386897,-56.3797528723476,-56.3798368256695,-56.3798420001818,-56.3798232167944,-56.3798084462736,-56.3798323731102,-56.3798679982427,-56.3799514561339,-56.3799620599961,-56.3799598905636,-56.3799216717761,-56.3799200133428,-56.3799410657898,-56.3799773157588,-56.3800103057453,-56.380021816385,-56.3800107325874,-56.3800365428447,-56.3800258931655,-56.3800547543275,-56.3800805480626,-56.3800882074712,-56.3801231032443,-56.3801469741923,-56.3801734571737,-56.380210028089,-56.3802125813722,-56.3801838758486,-56.3801481162966,-56.3801955486681,-56.3801693415437,-56.380170980465,-56.3802060795203,-56.3802439640218,-56.3802737252987,-56.3803245139125,-56.3803451993977,-56.3803575915011,-56.3803771415704,-56.3803952600501,-56.3804210837781,-56.3804370938543,-56.3804594189909,-56.3805250821466,-56.3805318170402,-56.3805608616054,-56.3805901996971,-56.3806540702899,-56.3807004028208,-56.3807283438688,-56.3807450641301,-56.3806942115979,-56.3806808713565,-56.3806619007503,-56.3806454924782,-56.3806584678009,-56.3806586749508,-56.3806700153066,-56.3807105296204,-56.3807319635293,-56.3807434718641,-56.3807206099242,-56.3807474248275,-56.3807648839634,-56.380781726215,-56.3808139101079,-56.3808714479467,-56.3808715946279,-56.3808425241182,-56.3808582367743,-56.3808208357989,-56.380818153885,-56.3808810122929,-56.3809022009236,-56.3809101223557,-56.3809136619945,-56.3809334535513,-56.380950243956,-56.3809544385136,-56.3809184139196,-56.3808850056836,-56.3808795383067,-56.3809007441473,-56.3809230450503,-56.3809271153919,-56.380928365768,-56.3809520637275,-56.3809681386327,-56.3809905602665,-56.3810411815184,-56.3810288151805,-56.3810638705543,-56.3810922432561,-56.3810785999706,-56.3810464729185,-56.3810297036523,-56.3810264696527,-56.3809785390064,-56.3809568528413,-56.3809324366997,-56.3809050135689,-56.3809163365438,-56.3809165090938,-56.380939163648,-56.3810008058035,-56.3810286861553,-56.3810842256424,-56.3810718460837,-56.3810952783822,-56.3811372670433,-56.3811893195146,-56.3811992712204,-56.381228876236,-56.3812361114652,-56.3812293940623,-56.3812576791548,-56.3812953644995,-56.3813091882367,-56.3812989520493,-56.3813666307311,-56.3813269275009,-56.3813167516469,-56.3813053684276,-56.3813295522958,-56.3813908031912,-56.3814289455665,-56.3814752977031,-56.3815076708409,-56.3815135347892,-56.3815405941905,-56.38152793607,-56.3815282291114,-56.3815064282251,-56.3815238217729,-56.3814534557671,-56.3814717345296,-56.3815179022036,-56.3815139939457,-56.3814500889237,-56.3814436640902,-56.3814457076031,-56.3815202152232,-56.381495404978,-56.3815264827073,-56.3815449829525,-56.3815966799017,-56.3816373313386,-56.3816708167145,-56.3816931604059,-56.3817368729411,-56.3817342081403,-56.3817105536098,-56.3816713337113,-56.3816249563636,-56.3815398203597,-56.3815301573224,-56.3815348137758,-56.3815125821648,-56.3815171007267,-56.3815242237051,-56.381546601813,-56.3815898231249,-56.3816150038818,-56.3816206867353,-56.3816254112101,-56.3815610804376,-56.3814944977811,-56.3814937040962,-56.3814548549604,-56.3814538285874,-56.3814194463776,-56.3814225741187,-56.3813994998002,-56.3813998149684,-56.3814112533983,-56.3814280174689,-56.3814586395472,-56.3814682203485,-56.3815058102466,-56.3815365357804,-56.3815215565353,-56.3814877578759,-56.3814816122143,-56.3814987727338,-56.3814823620647,-56.3814428064791,-56.3814093208174,-56.3813786038365,-56.3812828314585,-56.3812402229751,-56.3811971317132,-56.381186507626,-56.3811101300914,-56.381084406554,-56.3810207315283,-56.3809597384605,-56.3808643212075,-56.3808226100909,-56.3808034404462,-56.3807861889396,-56.3807659069786,-56.3807615802135,-56.3807689812649,-56.380760504454,-56.3807464782502,-56.380645628145,-56.380623480837,-56.3806156496549,-56.3805612552241,-56.3805129811698,-56.3804511137974,-56.3803993187211,-56.3803132120342,-56.3802417198537,-56.3801549179955,-56.3800583808954,-56.3798970469836,-56.3798250756164,-56.3798608714122,-56.3799847096871,-56.3800569023608,-56.3801684340213,-56.3802096605774,-56.3802373987476,-56.3802982947453,-56.3803438972522,-56.3803577894019,-56.3803803565443,-56.3803915992039,-56.3804078636543,-56.3804375390579,-56.3804342777341,-56.3804531525211,-56.380477717642,-56.3806042514016,-56.3806355541429,-56.3806973838766,-56.3807931259458,-56.380852665765,-56.3810460429757,-56.3810846282823,-56.381282697893,-56.3813419372804,-56.3813720274799,-56.3814922260494,-56.3816712798353,-56.3819972698914,-56.3820831187644,-56.3821687417025,-56.3823028088283,-56.3823487262583,-56.3823757315331,-56.382624667088,-56.3826732009256,-56.3828209877483,-56.3829684562394,-56.383035316013,-56.3831086304902,-56.3831491387699,-56.3831727692722,-56.3831605263917,-56.3831075972512,-56.3830966231539,-56.3830979455568,-56.3831323753671,-56.3834171011026,-56.3834602093779,-56.3835519238118,-56.3835963440857,-56.3836678553332,-56.3837473512557,-56.3838780532544,-56.3838895946542,-56.3839719727743,-56.3839966255719,-56.3840319028884,-56.3840382610875,-56.3841004080401,-56.3841595786093,-56.3842026074162,-56.3842214010937,-56.3842220701827,-56.3842126848586,-56.3841748319508,-56.3840982494776,-56.3840866838093,-56.3840382790881,-56.384012842275,-56.3839796045887,-56.3839954929381,-56.384028396164,-56.3840690581653,-56.3840936442623,-56.3841820217813,-56.3842070713285,-56.3842372117785,-56.3842987932581,-56.3843787882025,-56.3844353867733,-56.3844863348484,-56.3845047019727,-56.3845390136875,-56.3845483583169,-56.3846026930638,-56.3846044575368,-56.3845886176524,-56.3845938090322,-56.384648910416,-56.384681604186,-56.3847155857515,-56.3847114406003,-56.3847692459635,-56.3848124518302,-56.3848428704716,-56.3848468327799,-56.3848410696059,-56.3848349598967,-56.3848327717728,-56.3848315980921,-56.3848713651031,-56.3848951642483,-56.3849193365991,-56.3849615582346,-56.3849902667749,-56.3850319145532,-56.3850674266342,-56.385102591445,-56.3851282181161,-56.3852092196616,-56.3852781322529,-56.3853261465158,-56.3853510526895,-56.3853756522956,-56.3854042934295,-56.3854326012919,-56.385460215363,-56.3854823334885,-56.385495580595,-56.385500249922,-56.3854977284614,-56.3855301986012,-56.3855537704396,-56.3855797443045,-56.3856053969378,-56.385642643212,-56.385710491212,-56.3857240315102,-56.3857345172278,-56.3857429348552,-56.3857489644261,-56.3857525798996,-56.3857445490734,-56.3857316888033,-56.3857223244062,-56.3857116116952,-56.3857066761317,-56.3857031408918,-56.3857009532418,-56.3856998060517,-56.3857068359379,-56.3857203761871,-56.3857418143608,-56.3857649994146,-56.3857987369727,-56.3858331543174,-56.3858635034963,-56.3859211332503,-56.3859784164407,-56.3860128737679,-56.3860469852237,-56.386073918557,-56.3861023402009,-56.3861398996279,-56.3861644188491,-56.3861828151326,-56.3862015446277,-56.3862233559772,-56.3862671116656,-56.3863064117952,-56.3863405766632,-56.3863894415621,-56.3864147214572,-56.3864414017348,-56.3864841704377,-56.3865067818886,-56.3865457622041,-56.3865956809254,-56.3866235435012,-56.3866316317469,-56.386602257666,-56.3865796061716,-56.3865634648944,-56.3865486839443,-56.3865266988073,-56.3865067551712,-56.3864929752149,-56.3864829161348,-56.3864855311053,-56.3864936152411,-56.3865064887609,-56.3865221103045,-56.3865460024033,-56.3865708814901,-56.386619746971,-56.386668599121,-56.3867003751696,-56.3867485601516,-56.3867704249177,-56.3867919825,-56.3868131935475,-56.3868340706611,-56.3868542814327,-56.3868738250403,-56.3868933546256,-56.386917953992,-56.386939858856,-56.3869659913794,-56.3869815469399,-56.3869978488829,-56.3870049058633,-56.386996247742,-56.3869814399636,-56.3869656319222,-56.3869617631674,-56.3869585348503,-56.3869573880917,-56.3869586151736,-56.3869687399773,-56.3869857357063,-56.3870266400053,-56.3870238620997,-56.3870111219011,-56.3869905646265,-56.3869689802714,-56.3869873495816,-56.3870101751644,-56.3870340003054,-56.3870479013909,-56.3870658840461,-56.3870978600227,-56.3871134814075,-56.3872430052234,-56.3875181171558,-56.3876168632271,-56.3876377416529,-56.3876498651021,-56.3876486645682,-56.3876348972883,-56.3876172744417,-56.3876014262723,-56.3875738922338,-56.3875468381053,-56.3875326627787,-56.3875911811678,-56.3876294813511,-56.3876675541624,-56.3876935544153,-56.3877212353853,-56.3877536387676,-56.3877733018676,-56.3878018229996,-56.3878243151266,-56.387857091816,-56.3878834253171,-56.3879528744647,-56.3879841172502,-56.3880088102188,-56.388032169054,-56.3880534999727,-56.3880746042853,-56.3881019648916,-56.3881371564846,-56.3881589405626,-56.3881662245071,-56.3881711741158,-56.3881812724342,-56.3882149830246,-56.3882415967926,-56.388263128138,-56.3883071769946,-56.3883338577803,-56.3883669013773,-56.3883688354164,-56.3883452103039,-56.3883051094346,-56.3882814971956,-56.3882585787228,-56.3882025496718,-56.3881728146677,-56.3881481618561,-56.3881647570199,-56.3881964933342,-56.3882307247982,-56.3882539629335,-56.3882830316987,-56.3883143810499,-56.3883296689073,-56.3883507597974,-56.3883745852454,-56.388389499682,-56.3884085229386,-56.388417167,-56.3884382317077,-56.3884696340184,-56.3884534657779,-56.3884226501082,-56.3884271993426,-56.3884274125502,-56.3884091895921,-56.388391927354,-56.388385978126,-56.3883943956849,-56.3884133787115,-56.3884474362986,-56.3884336421281,-56.3884754643082,-56.388537562739,-56.3885761691054,-56.3886147492894,-56.3886511948171,-56.3886770748366,-56.3887023274544,-56.3887368389731,-56.3887675211718,-56.3887807017336,-56.3887808618095,-56.388788612076,-56.3887962557907,-56.3888183473208,-56.3888524853644,-56.3888947337599,-56.3889493483417,-56.3889574325137,-56.3889419314466,-56.3889285246396,-56.3889161046852,-56.3889248693443,-56.3889564589828,-56.3889966658546,-56.3890458381514,-56.3890765872935,-56.3891176216918,-56.3891753584205,-56.3892073878481,-56.3892035060735,-56.3891833223138,-56.3891477577065,-56.3891230379204,-56.3890843377482,-56.3890518549316,-56.3890370738663,-56.3890037764215,-56.3889995607405,-56.3890123939632,-56.3890327516551,-56.3890346191448,-56.3890402750575,-56.3890244670062,-56.3890147822856,-56.3890152357362,-56.3889976000327,-56.389008072128,-56.3890281087155,-56.3890262817412,-56.3890412360196,-56.3890636874685,-56.3890874862979,-56.3891453159824,-56.3891716229374,-56.3891924601607,-56.3892153259169,-56.3892185675997,-56.3892355625716,-56.3892573603881,-56.3892558530032,-56.3892536787329,-56.3892247703022,-56.3891870711864,-56.389171209387,-56.3892087889705,-56.3891984237989,-56.3891846296348,-56.3891496919595,-56.3891154609865,-56.3890691968494,-56.3890502540607,-56.3890309371278,-56.3890570707396,-56.3890654349155,-56.3890701039769,-56.3890881535095,-56.389122997804,-56.38915818933,-56.3891810811967,-56.3892125506883,-56.3892378305176,-56.3892623767609,-56.3892762636931,-56.38924995687,-56.3892253575282,-56.3891997311588,-56.3891682347651,-56.3891602568918,-56.3891539602985,-56.3891176485043,-56.3891164743895,-56.3891413276311,-56.3891642194641,-56.3891885117346,-56.3892202211452,-56.3892499300107,-56.3892806794924,-56.3893092009112,-56.3893353874401,-56.3893591867276,-56.3893623881224,-56.3893323324284,-56.389301890017,-56.3892836672177,-56.3892651509987,-56.3892398981664,-56.3892246100982,-56.3891955688379,-56.3891637392798,-56.3891601639001,-56.3891590299887,-56.3891766389128,-56.3892254772829,-56.3892606291602,-56.3892889899152,-56.3893518630132,-56.3893857203703,-56.3894079585694,-56.389447338768,-56.3894695500711,-56.3894827833573,-56.389477847644,-56.389447405243,-56.3894203911464,-56.3893923769206,-56.3893574656525,-56.3893314390492,-56.3893071461166,-56.3892740094714,-56.3892466086282,-56.3892591083385,-56.3892956606693,-56.3893208865371,-56.3893368281119,-56.3893904423087,-56.3894160423299,-56.3894467917207,-56.3894753129539,-56.3894819963886,-56.3894681760477,-56.3894446702984,-56.3894194706689,-56.389396859043,-56.3893991005325,-56.3894285956532,-56.3894390674858,-56.3894477122932,-56.3894498334883,-56.3894207512109,-56.3894413752648,-56.3894503665766,-56.3894378936095,-56.3894241397745,-56.3894375866374,-56.3894083715017,-56.3894147216968,-56.3894227922568,-56.3894377067153,-56.3894317573541,-56.3894040227428,-56.3893675507215,-56.3893407101676,-56.3893106945655,-56.3892779577733,-56.3892515041045,-56.3892315337882,-56.3892525445628,-56.3892650711135,-56.3892683396129,-56.3892504502103,-56.3892306001457,-56.3892134045272,-56.3892066674561,-56.3892152507547,-56.389246594764,-56.38928993749,-56.3893260890981,-56.3893492345258,-56.3894539820636,-56.3895226983579,-56.3895302610195,-56.3895231370217,-56.3895377801249,-56.389568867677,-56.389571351651,-56.3895540470128,-56.3895248851487,-56.3895000063426,-56.3894736587139,-56.3894271945544,-56.3893816647435,-56.3893517962341,-56.3893312650622,-56.3892949799793,-56.3892480623667,-56.3892219689835,-56.3892037464439,-56.3891965715551,-56.3891639657602,-56.3891427679361,-56.3891183158769,-56.3891188761381,-56.3891043218012,-56.3890925288146,-56.3890844315969,-56.389111952481,-56.3891336698074,-56.3891340836716,-56.3891175417762,-56.3890979720016,-56.3890505872134,-56.3890489866292,-56.3890563505358,-56.3890675160605,-56.3890675558309,-56.3890721314841,-56.3890709843082,-56.3890585116269,-56.3890481460467,-56.3890380211027,-56.3890580979884,-56.3890958909892,-56.3891069760709,-56.3891235185315,-56.3891575754758,-56.3891971026436,-56.3892269049351,-56.3892549326505,-56.3892746097568,-56.3893214871083,-56.3893632420589,-56.3894213384885,-56.3894777407186,-56.3895208033004,-56.3895628381603,-56.3895973889841,-56.3896302592754,-56.3896962267441,-56.3897724926215,-56.3898814023571,-56.3899587226713,-56.3900220085879,-56.3900617352311,-56.3900851345087,-56.3901395089515,-56.3902362386054,-56.3903506843417,-56.390456646026,-56.3905493333009,-56.3906014536918,-56.3906682751227,-56.3907582681026,-56.3908234083092,-56.3908732342857,-56.3909124004952,-56.3909531951976,-56.3910163477518,-56.3910621177328,-56.3911016047415,-56.3911710942736,-56.3911959738531,-56.3912430382536,-56.3912569518671,-56.3912793769176,-56.3913338717259,-56.3913700900852,-56.3913987580058,-56.3914398863185,-56.3915490357771,-56.3915708740145,-56.391597807448,-56.3916294909683,-56.3916649358204,-56.3916853457732,-56.391715975254,-56.3917445500767,-56.391767695067,-56.3918445881137,-56.3919083278182,-56.3919540177088,-56.3920293503456,-56.3920845785625,-56.3921169687325,-56.392153134211,-56.3921964632693,-56.3922651383385,-56.3923081248596,-56.392649464815,-56.3929647191237,-56.3931415902193,-56.3931675639982,-56.3931914163002,-56.3932230723474,-56.3932572102335,-56.3932889198327,-56.3933260988629,-56.3933724829234,-56.3933965619812,-56.3934087684701,-56.3935305377803,-56.3935557370562,-56.3936110724727,-56.3936508666493,-56.3937062820278,-56.3937511049923,-56.3937932333077,-56.3938088677719,-56.3938670716383,-56.3939229002459,-56.3939862660008,-56.3940270868863,-56.3940760460061,-56.3941315278961,-56.394182220803,-56.3942319529526,-56.3942646626651,-56.3942785770139,-56.3943218790167,-56.3944039212749,-56.3944686217705,-56.3945595752389,-56.3945837478821,-56.3946161109574,-56.3946516093113,-56.3946774627985,-56.3947099193628,-56.3947406950582,-56.3947601052012,-56.394786265373,-56.3948178684181,-56.3948783397705,-56.3949203440091,-56.3949250835467,-56.3949513902617,-56.3949899973261,-56.3950730797298,-56.3951434629229,-56.3952187287084,-56.3952529590338,-56.3953030916678,-56.3954426841887,-56.3955053561298,-56.3955144540172,-56.3955304695452,-56.3955145608383,-56.3954963383846,-56.3955307823809,-56.3956066620649,-56.3956775251031,-56.3957457601418,-56.3957738679032,-56.3958590587433,-56.3958943698705,-56.396003599976,-56.3960412724199,-56.3960711059728,-56.3960860541753,-56.3960828008447,-56.3960653118564,-56.3960484893461,-56.3959980238604,-56.3959671145747,-56.3959395130908,-56.3959598975565,-56.3959929407386,-56.3960342889748,-56.39608329429,-56.3961398663319,-56.3962199917452,-56.3962652414636,-56.3962768278711,-56.3963372122136,-56.3963949217608,-56.3964356468357,-56.396489624012,-56.396547613601,-56.3965933574226,-56.396658310956,-56.3966821366489,-56.3967121653615,-56.3967378181718,-56.396767954062,-56.3967916062231,-56.396798596157,-56.3967987166405,-56.3967956515518,-56.3967630755351,-56.3966996187927,-56.3966792104249,-56.3966586623736,-56.396661392507,-56.3966854764466,-56.3967376048327,-56.3967850172325,-56.3968148179281,-56.3968914445069,-56.3969221936304,-56.3969990597871,-56.3970451901244,-56.3971219763425,-56.3971681872892,-56.3972450534462,-56.3973062852671,-56.3973828174544,-56.397460124045,-56.3975520248498,-56.3975827739635,-56.3976906298401,-56.3977522214065,-56.3978293682632,-56.3979063944665,-56.3981079013442,-56.3982841429137,-56.3984922637858,-56.3987409662882,-56.3989858345695,-56.399120407144,-56.3992941475806,-56.399414073001,-56.3995409434962,-56.3995524033781,-56.3995575098416,-56.3995521687766,-56.3994651020567,-56.3994911363009,-56.3996115138185,-56.3996111801002,-56.3996513475074,-56.3996833510523,-56.3997013871037,-56.399722170793,-56.3997618181351,-56.399894729044,-56.3999297714837,-56.4000028860341,-56.4000544488223,-56.4000791415728,-56.4001132790826,-56.4001339963615,-56.4001299010944,-56.4001168274339,-56.4001289541472,-56.4001627844696,-56.4001848358865,-56.400202098452,-56.4002326473725,-56.4002699868875,-56.4003040044785,-56.4003219204804,-56.4003343536336,-56.4003559779215,-56.4003827779445,-56.4004128201698,-56.400454909133,-56.4005004389578,-56.4005674601668,-56.4006004506981,-56.4006316930101,-56.4006582266785,-56.4006622026233,-56.4006497825212,-56.40060083728,-56.40057453023,-56.4005708505115,-56.4005736897578,-56.4005960410663,-56.4006203137628,-56.4006378963756,-56.400644459867,-56.400649342129,-56.4006689123403,-56.4007167663943,-56.4007518488802,-56.4008099985806,-56.4008883992832,-56.4009494038444,-56.4009980419619,-56.4010676922203,-56.4011629408562,-56.4012699959871,-56.4015501007427,-56.4016051817127,-56.4016636257058,-56.4017598888036,-56.4017929990097,-56.4018383153647,-56.4019050966622,-56.4019313633807,-56.4019655675986,-56.4020078299769,-56.4020589627615,-56.4020803605838,-56.4021287590233,-56.4021751559916,-56.4022229271194,-56.402281317187,-56.4023369729756,-56.4024671735679,-56.4025475611112,-56.4025786705303,-56.4025992945865,-56.402624361002,-56.4026622869256,-56.4026871522376,-56.4026855523411,-56.4027486647814,-56.4027706896522,-56.4028530519914,-56.4029231551847,-56.4029549583136,-56.4029816386974,-56.4029961925841,-56.4030157897797,-56.403109717989,-56.4031524597541,-56.4031893191639,-56.4032419059986,-56.4032862892773,-56.4033462668607,-56.4034654033414,-56.4034803492841,-56.4034999728734,-56.4035005327483,-56.4034898208519,-56.4034403756432,-56.4034411479038,-56.4034481193581,-56.4035069008113,-56.4035157874973,-56.4035401266013,-56.4036079793584,-56.40367700022,-56.4036784910401,-56.4037210331038,-56.4037633348961,-56.4039612688483,-56.4039998889974,-56.404040389203,-56.4040966135051,-56.4041285103125,-56.4041672635545,-56.4041961448403,-56.4042165156668,-56.4042361657704,-56.4042639931465,-56.4043016128362,-56.4043252784415,-56.4043516783273,-56.4043878572255,-56.4044314265297,-56.4044868923883,-56.4044702495043,-56.4044861696222,-56.4045673754027,-56.4046020206886,-56.4046223112975,-56.4046773934183,-56.4046946018578,-56.4047319015055,-56.4047592354157,-56.4048517264574,-56.4048605207489,-56.4048808830609,-56.4048813252224,-56.404861634649,-56.4048691629469,-56.4048816849549,-56.404922345975,-56.4049328075304,-56.404920256513,-56.4049258008966,-56.4049708643594,-56.4049835376339,-56.4049861733123,-56.4049235001625,-56.404920652252,-56.4049379543457,-56.4049429569632,-56.4049537780972,-56.4050007601358,-56.4050262587995,-56.4051041024317,-56.405118593731,-56.4051411387616,-56.4051684462643,-56.4052001828189,-56.4052295308943,-56.4052595330009,-56.4052758220553,-56.4052780492305,-56.4052738074765,-56.40529977758,-56.4053156422297,-56.4053631332813,-56.4053837843174,-56.4054190955211,-56.4054527264384,-56.4054753646121,-56.4055175998767,-56.4055415190322,-56.405570533889,-56.4056079932165,-56.4056502283462,-56.4056824317067,-56.4057176894934,-56.4057358589798,-56.405745010066,-56.4057805085553,-56.4057861386063,-56.4057903674092,-56.4057762395663,-56.4057560162308,-56.4057388737026,-56.4057124735316,-56.4056922495109,-56.4056706653439,-56.4056462295007,-56.4056500149,-56.4056673836049,-56.4057001741423,-56.4057252134453,-56.4057491589971,-56.4057706770355,-56.4058072024103,-56.4058510470407,-56.4058758325741,-56.4058810936434,-56.4059039587308,-56.4059237958693,-56.4059518769926,-56.4059764494343,-56.4060006356392,-56.4060217662369,-56.4060470462273,-56.4062269338966,-56.4062589553455,-56.4063112889016,-56.4063324068821,-56.4063586469399,-56.406373631206,-56.4063813250202,-56.4064101130889,-56.4064283097757,-56.4064479063533,-56.4064643949994,-56.4065165016458,-56.4065784002507,-56.4065992776938,-56.40662219644,-56.4066671394079,-56.4067854794855,-56.4068698558322,-56.4067446057593,-56.406711868901,-56.4066895505537,-56.4066696736087,-56.406594776454,-56.4066768350708,-56.4067406840493,-56.4067605874264,-56.4068092351433,-56.4069352990693,-56.407068805667,-56.4071507171292,-56.4071500724878,-56.4071258394453,-56.407167652515,-56.407256602968,-56.4074370146164,-56.4074891973485,-56.4075156119617,-56.4075517019881,-56.4075729133155,-56.4075974723527,-56.4076172558196,-56.4076359696751,-56.407641308562,-56.4076263407602,-56.4077177857643,-56.4076984971536,-56.4077398255418,-56.4077818207252,-56.4078380180881,-56.4078446799974,-56.4078582799208,-56.4078613281728,-56.4078451732847,-56.4078331275166,-56.4078263024477,-56.4077914063131,-56.4077699610863,-56.4077578483093,-56.407819933538,-56.4078394639902,-56.4078607151124,-56.4078854612074,-56.4078965198648,-56.4079120312547,-56.4079262154976,-56.4079725661284,-56.4080317230917,-56.4080452238768,-56.4080448249071,-56.4080260666108,-56.4080114544204,-56.4079705049204,-56.4079471141407,-56.407920251912,-56.4079997195797,-56.4080201840642,-56.4080644068919,-56.4080890056147,-56.4081115910162,-56.4081474628799,-56.408178091825,-56.4081908850594,-56.4084213774204,-56.4084576761467,-56.4084919601685,-56.4085155990696,-56.4085419729645,-56.4085727751923,-56.4086005497922,-56.4086255761367,-56.408661847659,-56.4086898093458,-56.4087842332387,-56.4087609390491,-56.408731430509,-56.4086928240705,-56.4087087391729,-56.4088971975569,-56.4091498885322,-56.4092157447362,-56.4092161757303,-56.4091319167409,-56.4091862331299,-56.409440189559,-56.4095176771655,-56.4097442716371,-56.4098561196022,-56.4099869711722,-56.4102710115167,-56.4103829465228,-56.410410443891,-56.410303397594,-56.4103347908201,-56.4104537735855,-56.4106270492235,-56.4107221374634,-56.4108845850162,-56.411141849901,-56.4112344446241,-56.4112967093676,-56.4110703170253,-56.4110304697054,-56.4110138927756,-56.411062459304,-56.4111569286657,-56.4112300439977,-56.4113836594083,-56.4114799911513,-56.4113613737329,-56.4113002129214,-56.4112813896489,-56.4113703590384,-56.4114628398942,-56.4115898852551,-56.4117629564803,-56.4118742510424,-56.4119540259145,-56.4120648828477,-56.4121186174457,-56.4121432969071,-56.4121808625579,-56.412258262766,-56.4123633839348,-56.4123773373682,-56.4123628768361,-56.4123731216977,-56.4123323809362,-56.412335716385,-56.4124986003728,-56.4125743991676,-56.4127663355484,-56.4129366368939,-56.4130673736575,-56.4131516340843,-56.4134086945735,-56.4137317158082,-56.4138375035557,-56.4139849662772,-56.4141341101207,-56.4142802390621,-56.4143534767804,-56.4144613959146,-56.414607102922,-56.4147383347464,-56.4148769978583,-56.4150653581877,-56.4153225789333,-56.4155420357013,-56.4157101795627,-56.4159488894623,-56.4163150219037,-56.4164840422793,-56.4165799270523,-56.41652687098,-56.416631282967,-56.4168812307285,-56.4170269237358,-56.4170849277733,-56.4171126647093,-56.4176371175759,-56.4181688009961,-56.418462109616,-56.4186398132387,-56.4189403309142,-56.4191251911234,-56.4191059811101,-56.4191468286895,-56.4192516024317,-56.4193473756704,-56.4194133019954,-56.4194642943611,-56.4196274501878,-56.4196941507292,-56.4197323303387,-56.4197363590954,-56.4198657330359,-56.4200184512385,-56.420002672357,-56.4199436399745,-56.4199842662725,-56.42032889235,-56.4205329654549,-56.4206872053066,-56.4208341444096,-56.4211506353145,-56.4212127309785,-56.4217142406111,-56.422014684083,-56.4223533211499,-56.4231768677873,-56.4235079819352,-56.4237849468807,-56.4240510462734,-56.4241169677256,-56.4244304984264,-56.4246049771241,-56.4247829085539,-56.4248512642806,-56.4249145431383,-56.4249138849493,-56.4250527275389,-56.4250365598514,-56.4250792218619,-56.4251638781822,-56.425244560169,-56.4252626758957,-56.4252258836143,-56.4253924233079,-56.4254915676731,-56.4255135254685,-56.4254615251646,-56.4255872968465,-56.4256641366782,-56.4256547184509,-56.4257456719845,-56.4259124778054,-56.4259142664749,-56.4259311706288,-56.4262784254296,-56.4266563906111,-56.4270494303501,-56.4272986671515,-56.4279315699908,-56.4283507960891,-56.4286865513101,-56.4289145928577,-56.4288592777794,-56.4288467112421,-56.4288039956124,-56.4288984670859,-56.4289153398552,-56.4286034760501,-56.4285965794858,-56.4285927917857,-56.4286819050517,-56.4288168350908,-56.4290643697804,-56.4290237360026,-56.4290608217627,-56.4290006302376,-56.4290020374045,-56.4290926709365,-56.4290677208159,-56.4292160218769,-56.4290800045856,-56.4293754023608,-56.4293038403979,-56.4289283078121,-56.4287031705991,-56.4287074810611,-56.4287092485472,-56.4288544016542,-56.4291287484613,-56.429527028311,-56.4297959083366,-56.4301681202938,-56.4303337274354,-56.4306847788663,-56.4308445414322,-56.4309096684603,-56.4308486501486,-56.431424695441,-56.4315137698824,-56.4307286419448,-56.430631124758,-56.4305841674894,-56.4305930519112,-56.4306896305008,-56.4309815956047,-56.4314244189306,-56.4314305587403,-56.4308502246355,-56.4308131654074,-56.4307237856062,-56.4306195186194,-56.4306837936231,-56.4308358173638,-56.4308046064131,-56.4311054813158,-56.4312355434919,-56.4312028596336,-56.4310571310352,-56.4308463826714,-56.4307039354893,-56.4305075945175,-56.4301908018714,-56.4298032937042,-56.4293898365982,-56.42906445547,-56.4282755630891,-56.4281505388495,-56.4280203386552,-56.4278480893712,-56.4275590334748,-56.4270890695217,-56.4267429331698,-56.4265690300674,-56.4262928071459,-56.4259280151003,-56.4256664254048,-56.4253789177934,-56.4251623105415,-56.4251166801476,-56.424783575529,-56.4247770995791,-56.4246332595446,-56.4243756934911,-56.4242630948616,-56.4240059758854,-56.4236247291444,-56.4235533308599,-56.4231049696249,-56.4230341971671,-56.4229052539873,-56.4225028796757,-56.4222968337797,-56.4221825278318,-56.4221803930366,-56.4219990193959,-56.4218836532011,-56.4216083196515,-56.4210505852933,-56.4208493275843,-56.4206736610702,-56.4205239439263,-56.420307410241,-56.4200543747287,-56.4198008610495,-56.4195470480999,-56.4192609160471,-56.4189548133918,-56.4185525222178,-56.4183027132571,-56.4182495394211,-56.4180666450051,-56.4179118511422,-56.4177395314551,-56.4172975142954,-56.4174416753964,-56.417470427437,-56.4173300935482,-56.4171358958495,-56.4169181267615,-56.4169831394424,-56.4172018585729,-56.4172038123649,-56.4173044497329,-56.4172243181986,-56.4167892606976,-56.4166523113294,-56.4162605960903,-56.4160522387807,-56.4159627025367,-56.4160727490687,-56.4160642398698,-56.4159650308236,-56.4156572023994,-56.4149924370016,-56.4147475063626,-56.4146524996105,-56.4142948069173,-56.4141457374176,-56.4141111113153,-56.4140051903602,-56.4139328596019,-56.4139839257465,-56.4137949138326,-56.4137129221557,-56.4137554740473,-56.4138551255699,-56.413757377578,-56.4136806185673,-56.4137724834529,-56.4137645131552,-56.4136771693675,-56.4135323937258,-56.4133413454885,-56.4133110716063,-56.4134204920448,-56.4133848651248,-56.4128932590504,-56.4125057207752,-56.4122152004777,-56.4120464773603,-56.411896803912,-56.4115601342283,-56.4113534520068,-56.41130790878,-56.4110438235271,-56.410381555136,-56.4100672428841,-56.4099750969287,-56.4097419803215,-56.4095505708457,-56.4093750109243,-56.4092469087552,-56.4091028223518,-56.4090129755319,-56.4090021031883,-56.4089866820834,-56.4091444517504,-56.4091245267893,-56.4089800887281,-56.4089085399418,-56.4089351087308,-56.4089963802306,-56.4089722878728,-56.408899851075,-56.4088417922858,-56.4089582970511,-56.4090186135487,-56.4089493424601,-56.4088237860081,-56.4088607587831,-56.4100599202054,-56.4100470898763,-56.4099878649807,-56.4088154361037,-56.4085416262038,-56.408499123958,-56.4084601569961,-56.4084149562165,-56.4082069103522,-56.4080622771134,-56.408033309438,-56.4080882187161,-56.4083891430025,-56.4083848085216,-56.408173035628,-56.4080733754403,-56.4079839225957,-56.4079260154954,-56.4078890763171,-56.4079156446334,-56.4078346249959,-56.4078047524055,-56.4077943872923,-56.4077574747101,-56.4076898517705,-56.407603378601,-56.407491646923,-56.4073150199477,-56.4072439692545,-56.4071813001195,-56.4070573060063,-56.4066251711633,-56.4066060097601,-56.4064888833709,-56.4064913905768,-56.4064722290021,-56.4064381869857,-56.4064238879522,-56.4064267853269,-56.40644917566,-56.4064867369692,-56.4067046745964,-56.4067222876963,-56.4067214876417,-56.4067333466453,-56.4067393367124,-56.4067344407712,-56.406741057389,-56.4067739679663,-56.4067954188589,-56.4068216591413,-56.4068554095103,-56.4068802489248,-56.4069095312477,-56.4069456163473,-56.4069956950954,-56.4070381709672,-56.4070755501035,-56.4071180649395,-56.4071513753853,-56.407180284037,-56.4072037357165,-56.4072117802337,-56.4072102858167,-56.4072012548439,-56.4071799236382,-56.4071426377565,-56.4071142900434,-56.4070841406763,-56.4070683062862,-56.4070616630049,-56.4070543793265,-56.4070419856763,-56.4070148784332,-56.40697721902,-56.4069354379879,-56.4069001662885,-56.4068577175391,-56.4068369865506,-56.4068593049229,-56.4068919755297,-56.4069236446432,-56.4069453762086,-56.4069831022351,-56.4069927740708,-56.4070004443464,-56.4070059407821,-56.4070135447086,-56.4070194545055,-56.4070280857591,-56.4070435203721,-56.407058047634,-56.4070752831606,-56.4070761234973,-56.4070620364621,-56.4070321674719,-56.4069964693829,-56.4069703219589,-56.4069442820016,-56.4068758466473,-56.4068330115012,-56.4067963127442,-56.4067804513553,-56.4067749280584,-56.4067701791051,-56.4067524499469,-56.4067210067343,-56.4066885105593,-56.406653985611,-56.4066075085223,-56.4065706894604,-56.4065376324061,-56.4065031083332,-56.4064795894619,-56.4064501871482,-56.4064296434609,-56.4064401955178,-56.4064682765527,-56.4064981457959,-56.4065180490675,-56.4065266532133,-56.406558883587,-56.4065979436386,-56.4066384045643,-56.406686068744,-56.4067217138831,-56.4067501556209,-56.4067447795012,-56.4067431786182,-56.406741590951,-56.4067369082873,-56.4067186860163,-56.4066704741627,-56.4066410058062,-56.4066176340709,-56.4065869914059,-56.4065648602072,-56.4065446496887,-56.4065275202799,-56.4065302954223,-56.4065441827891,-56.406568928678,-56.406582989502,-56.4066148459598,-56.4066156592155,-56.406600104877,-56.4065876315635,-56.4065509594335,-56.4065099783926,-56.4064350996801,-56.4063844601655,-56.4063321132537,-56.4062899579899,-56.4062576744907,-56.4062233100426,-56.4061885992485,-56.4061594776049,-56.4061242726153,-56.4060985658682,-56.4060768614873,-56.4060586124152,-56.4060128151558,-56.4059766762392,-56.4059438331733,-56.4059164190133,-56.4058247312561,-56.405758977639,-56.4057154616228,-56.4056510153925,-56.4056265494439,-56.4055951598864,-56.4055685992511,-56.4055528845947,-56.4055329010852,-56.4055048201403,-56.4054767523345,-56.405338333814,-56.4052576787398,-56.4051503569774,-56.4050289344971,-56.404978081772,-56.4049421693514,-56.4049075782566,-56.4048692656734,-56.4048245623054,-56.4048082872184,-56.4047631176098,-56.4047368769928,-56.40464833824,-56.4046386267787,-56.4046072637075,-56.4045648018233,-56.404539975444,-56.4045334385492,-56.4045219931567,-56.4045043302529,-56.4045030768384,-56.4045351067237,-56.4045676561989,-56.4045917624647,-56.4046244725349,-56.404669055628,-56.4047030064442,-56.4047317675924,-56.4047335954706,-56.4047416794359,-56.4047636644652,-56.4047764043324,-56.4047893841881,-56.404804765508,-56.4048219339991,-56.4048468674793,-56.4048623015107,-56.4048785101763,-56.404909632599,-56.4049358599755,-56.404969677068,-56.4050123257516,-56.4050648064022,-56.40510665466,-56.4051528913858,-56.4052002094698,-56.405261121059,-56.4053069841851,-56.4054063958875,-56.4054088236918,-56.4054238846213,-56.40549532176,-56.4055050734846,-56.4055420922595,-56.4055419321864,-56.4055312199503,-56.4055161054382,-56.405505740274,-56.4054912795461,-56.4054663464971,-56.4054352371369,-56.4054146799424,-56.405394109654,-56.4053769003875,-56.4053539286048,-56.4053264613881,-56.4053022085349,-56.4052800505117,-56.4052421645687,-56.4052151904352,-56.4051789583265,-56.4051263710512,-56.4051045064103,-56.4050519859678,-56.4050106581479,-56.4049683164425,-56.4049335120545,-56.4048989609427,-56.404872880503,-56.4047342088538,-56.4044896164096,-56.4044459671579,-56.4043665529235,-56.4043144195706,-56.4042506129221,-56.4041909158697,-56.4041172377852,-56.4040206277597,-56.4039352237707,-56.4037644822684,-56.4037295842014,-56.4036237295547,-56.4036037058234,-56.4035592967161,-56.403575571547,-56.4035884579853,-56.4036226760675,-56.4036529177983,-56.403679424775,-56.4037284237881,-56.4037600264421,-56.403767697169,-56.4037593195032,-56.403721327012,-56.4036744223059,-56.4036545186188,-56.4036277848487,-56.4036062140761,-56.403602331694,-56.4035953554017,-56.4037156303689,-56.403749514442,-56.4037308652997,-56.4034076051938,-56.4029709399757,-56.4028957810852,-56.4028379377493,-56.4023332374584,-56.4022356272874,-56.4019921681166,-56.4018570453444,-56.4017137982524,-56.4015656418051,-56.4015505268947,-56.4014544641783,-56.4015831971485,-56.4015024092824,-56.4010740547263,-56.4009040868111,-56.4005133258135,-56.4001620374663,-56.3997856037988,-56.3993262333864,-56.3988799768489,-56.398266060612,-56.3979376908331,-56.3978388794333,-56.3977018490957,-56.3974660739197,-56.3971613571302,-56.3970424820241,-56.3969032102624,-56.3965574718405,-56.3965270564156,-56.3964477485403,-56.3964111165818,-56.3963707895241,-56.3963304617712,-56.3962774342761,-56.396216255922,-56.3961795974334,-56.3961464998481,-56.3961028506625,-56.3960639510818,-56.396009029559,-56.3959697822232,-56.3959301352893,-56.3958943165074,-56.3958481861434,-56.3958171302641,-56.3957625284808,-56.3957226016815,-56.3956638912334,-56.3956062079183,-56.3955615049064,-56.3955106787085,-56.3954567577293,-56.3954147891667,-56.3953874284671,-56.3953412715183,-56.3952855495404,-56.3952376447985,-56.3952062285934,-56.3951693560461,-56.3951242395651,-56.3950719056579,-56.3950366475204,-56.3950140092636,-56.3949961333244,-56.3949653176181,-56.3949176664191,-56.3948723761105,-56.3948418942475,-56.3948069692068,-56.3947545426226,-56.3947196574151,-56.3946796371397,-56.394644712146,-56.3946022772222,-56.3945639370022,-56.3945071344537,-56.3944632988477,-56.3943652751853,-56.3940307690036,-56.3939922289007,-56.3939492471189,-56.3939145355342,-56.3938771433261,-56.3938388436931,-56.393815297837,-56.3937628439031,-56.3937341491309,-56.3937132987259,-56.3937002788176,-56.3936935151976,-56.3937039602296,-56.3937367773115,-56.3937395925402,-56.3937064686626,-56.3936605111993,-56.3936476913221,-56.3936296291443,-56.3936369125937,-56.393633537734,-56.3935998266203,-56.3935556037195,-56.3935075259274,-56.393471853943,-56.3934364225513,-56.3934289517795,-56.3934040322121,-56.3933816212396,-56.3933454958376,-56.3933009261406,-56.3932321441189,-56.393158199231,-56.3930897239127,-56.3930530383614,-56.3929979694221,-56.392941380239,-56.3928772805562,-56.3928092457361,-56.3927520029657,-56.3926876496356,-56.3926297930094,-56.3925627721712,-56.3925200033491,-56.392505849504,-56.3924962979209,-56.3925049954692,-56.3925317960974,-56.3925614110362,-56.3926027660496,-56.3926598485903,-56.3927033114407,-56.3927494683063,-56.392757405687,-56.3927530967771,-56.3927167445314,-56.3926714945454,-56.3926425728651,-56.3926113166947,-56.3925892789352,-56.3925662801621,-56.3924959376753,-56.3924536224218,-56.3923831859866,-56.3923526504306,-56.3923030382173,-56.3922521318668,-56.3921760125716,-56.392123919183,-56.3920723057192,-56.3920264286614,-56.3919818855055,-56.3919418117519,-56.3918647984291,-56.3918331955645,-56.3918252318828,-56.3918109845172,-56.3918111446481,-56.3918188014504,-56.3918289268055,-56.391847496576,-56.3918462554574,-56.3918434142117,-56.3918538198264,-56.3918348235035,-56.3918115176861,-56.3918109977482,-56.391790333876,-56.3917720573592,-56.3917619720284,-56.3917325173989,-56.3917076909332,-56.391672739841,-56.3916434581057,-56.3916230338961,-56.3915661249185,-56.3914917126206,-56.3914612039095,-56.3914263055323,-56.3913644740994,-56.3913241466698,-56.3912567784225,-56.39121403665,-56.391175336106,-56.3911311938547,-56.3910903190994,-56.3910553681836,-56.3909927623243,-56.3909452043179,-56.3909202718832,-56.3908749151427,-56.3908545178864,-56.3908177519603,-56.3907837877206,-56.3907187677832,-56.3906413407272,-56.3905776551729,-56.3905555636035,-56.3905225331865,-56.3904748949669,-56.3904466006655,-56.3903862624935,-56.3903104907124,-56.3902436957034,-56.3901874806083,-56.3900916976449,-56.3900148310923,-56.389952999273,-56.3898723442848,-56.3897748672103,-56.3897115548509,-56.3896433597837,-56.3895898786748,-56.3895199225962,-56.3894504200246,-56.3893898019608,-56.3892919383473,-56.389210109336,-56.3891358047148,-56.3890788819308,-56.3890355927236,-56.388980230751,-56.3888965476858,-56.3888442277147,-56.3887947886516,-56.3887382394232,-56.3887027676858,-56.388679502253,-56.3887108921204,-56.3887444162111,-56.388797470261,-56.3888674925463,-56.3889517097096,-56.3889882749776,-56.3890508010446,-56.3891105780389,-56.3891323764276,-56.3891486778302,-56.389119756208,-56.389074879587,-56.3890132611694,-56.3889151177065,-56.3888649846404,-56.3888310342263,-56.3887857837904,-56.388738146086,-56.3887065165744,-56.3886851324387,-56.3886695377628,-56.3886649215669,-56.3886572247208,-56.3886573314094,-56.3886670825674,-56.3887113854784,-56.3887686955133,-56.3888127446847,-56.3888755771775,-56.3889489348906,-56.3889877547436,-56.3889318991216,-56.3889245492829,-56.3889429449973,-56.3888958942124,-56.3888325818785,-56.3887717898872,-56.3886791289879,-56.3886444714192,-56.3885866412616,-56.3885605078109,-56.3885652434842,-56.3884249445389,-56.3884444482059,-56.3884382982769,-56.3884084426659,-56.3883797213944,-56.388355775622,-56.3883578835935,-56.3883802682426,-56.388406561951,-56.3884969816565,-56.3885713534142,-56.3886850521571,-56.3887445094774,-56.3887736175919,-56.388851351215,-56.3888692274415,-56.3888948804863,-56.3889229213587,-56.3889378759152,-56.3888836615461,-56.3888347827255,-56.3888344624299,-56.3889440256443,-56.3891226512832,-56.3891349643053,-56.3892413789941,-56.3893311186754,-56.3893932037594,-56.3895014466987,-56.3895102243075,-56.3894994455784,-56.3893480070924,-56.3892643372126,-56.3892061206462,-56.3891999841675,-56.389162351497,-56.3890958376386,-56.3890603524652,-56.3890034165103,-56.3890199712085,-56.3889841933678,-56.3889645160845,-56.3889237882347,-56.3888045802628,-56.3887731109055,-56.3887448565678,-56.3886747537346,-56.38861321512,-56.3885851340266,-56.388547434823,-56.3885269307847,-56.3885076137318,-56.3884511715865,-56.3883675952935,-56.388257084787,-56.3880498313071,-56.387932757806,-56.3878192186158,-56.3875852179706,-56.3874121956718,-56.3871893341271,-56.3870526104878,-56.386754189388,-56.3865318880156,-56.3863905887638,-56.3862644840008,-56.3861407798174,-56.3859024440244,-56.3855875610268,-56.3853701422082,-56.3851471740941,-56.3847668582712,-56.3845342714317,-56.3844029770453,-56.3841890137213,-56.3830358986465,-56.382574860773,-56.3822120207743,-56.3819923606092,-56.3816003714551,-56.3811353053807,-56.380838792151,-56.3796327703608,-56.3793857228329,-56.378947683435,-56.3785596968873,-56.3784277352295,-56.3783838196089,-56.3782569405241,-56.3781903732074,-56.3780978452237,-56.3780406027815,-56.3779651768273,-56.3779017977286,-56.3778450476291,-56.3771195139275,-56.37702980118,-56.3769259211596,-56.376804578714,-56.3766776198175,-56.3764570391237,-56.3763169005377,-56.3762129401105,-56.3760625557095,-56.3758941085915,-56.3757929902835,-56.3757064517457,-56.3755545201623,-56.375439594467,-56.3753383687096,-56.3753001182551,-56.3751864545605,-56.3745528203799,-56.3742952433814,-56.3734294609401,-56.3733440459722,-56.3732336968835,-56.3726517968563,-56.3726205269462,-56.3725829343973,-56.3725052544269,-56.3724619813671,-56.3723381279771,-56.3722570195904,-56.3718966874001,-56.3716816961107,-56.3716325778226,-56.3715669171952,-56.3714593150515,-56.3714306739348,-56.3713874379124,-56.3713409871412,-56.3712943633612,-56.3712737529222,-56.3712646282927,-56.3711973401181,-56.3711420444119,-56.3710782917047,-56.370843530648,-56.3707194804375,-56.370650484461,-56.370566494911,-56.370502101707,-56.3704863463146,-56.3704201389892,-56.3703763695741,-56.3701134211753,-56.3700672238465,-56.3699277120925,-56.3698875445439,-56.3697936825251,-56.3696592267633,-56.3695043336715,-56.369434510793,-56.369411966172,-56.369365021556,-56.3692161448719,-56.3691517116379,-56.3688628290561,-56.368755520595,-56.3684958670219,-56.3683595029329,-56.3682498199251,-56.3681434716576,-56.3680566266159,-56.3678456780524,-56.3675915336199,-56.3675192427762,-56.3672928865379,-56.3672183144113,-56.3671344582229,-56.3669669713068,-56.3665304664871,-56.3664348839322,-56.3663363532631,-56.3662855133631,-56.3662410237991,-56.3661836210318,-56.3661396113962,-56.3660412808634,-56.3659121205792,-56.365824648861,-56.3656302291268,-56.3655992128741,-56.3655324981811,-56.3654716001971,-56.3654165587746,-56.3653181344399,-56.3652608248578,-56.3652056634179,-56.3651565842105,-56.3650610952072,-56.365017846542,-56.3648472649341,-56.3644912550107,-56.364397526501,-56.3644094792909,-56.3643833459028,-56.364235723229,-56.364114393716,-56.3640592853598,-56.3640417562983,-56.3640127410328,-56.3639765892388,-56.3639375422973,-56.3639145036406,-56.3638822474167,-56.3638388515981,-56.3637328633575,-56.3629141079392,-56.3627264916277,-56.362671809855,-56.3626847898075,-56.3627451946183,-56.3628893485336,-56.3629521813259,-56.362904543256,-56.3627187940194,-56.3627175534064,-56.3625038694736,-56.3615109844502,-56.3613568915353,-56.3612372836077,-56.3610889532951,-56.361006177548,-56.360997932999,-56.3610010950077,-56.3608481627679,-56.3607209233478,-56.3606915486085,-56.3606086658178,-56.3605641897749,-56.360570472896,-56.3605301855615,-56.3605226478796,-56.3604441810101,-56.360405320763,-56.3603802142802,-56.3603561220815,-56.3603406477463,-56.3603096583708,-56.360289007876,-56.3602748936557,-56.3602566577712,-56.3602387281194,-56.3602253347128,-56.3602115542257,-56.3601957462459,-56.3601819925068,-56.360169599403,-56.3601558189391,-56.3601441058582,-56.3601327272407,-56.3601189467981,-56.3601038188727,-56.3600880236819,-56.3600667728504,-56.3600462287655,-56.3600247111719,-56.3599994716828,-56.359972551134,-56.3599493390517,-56.3599264873474,-56.359901620919,-56.3598805305184,-56.35986114714,-56.3598438178891,-56.3598261156184,-56.3598060247958,-56.3597814792766,-56.3597514234082,-56.3597267844642,-56.3597062136933,-56.3596951814763,-56.3596837889216,-56.3596765185744,-56.3596681805187,-56.359661577597,-56.3596542932637,-56.3596377386872,-56.3596249854364,-56.3596129254978,-56.3595991584852,-56.3595833367042,-56.3595580170894,-56.3595402079331,-56.3595128342542,-56.3594844328626,-56.3594396497949,-56.3594119283824,-56.3593859815192,-56.3593579538468,-56.3593234961526,-56.3592869576983,-56.3592664804585,-56.3592432818247,-56.3592204034562,-56.3591869461373,-56.3591640937944,-56.3591412421531,-56.3591088392179,-56.3590689118807,-56.3590385224007,-56.3590166710912,-56.35899105793,-56.3589613498589,-56.3589285458794,-56.3588841632532,-56.3588547875425,-56.3588161815879,-56.3587834042753,-56.358761886677,-56.3587335786802,-56.3587048969752,-56.3586840867885,-56.3586605277061,-56.3586274440279,-56.3585970552462,-56.3585748835792,-56.3585526852626,-56.35852881981,-56.3585069552545,-56.3584841435014,-56.3584602913871,-56.3584463774982,-56.3584265403201,-56.3584077042731,-56.358387533396,-56.3583636013144,-56.358339988959,-56.3582965934091,-56.3582607216122,-56.3582248365274,-56.3581892711245,-56.3581660457536,-56.3581448485848,-56.3581144324336,-56.3580877655976,-56.3580649005229,-56.3580451433347,-56.3580326174724,-56.3580153152847,-56.3579953182092,-56.3579679705963,-56.3579361271517,-56.3578967740091,-56.3577426342021,-56.3577527903902,-56.3572034949322,-56.3567628028661,-56.3567103505217,-56.3566193451854,-56.35636115991,-56.3560937279447,-56.356134593855,-56.3562948032794,-56.3563637407378,-56.3568484988335,-56.3574047588612,-56.357664962822,-56.3577446781596,-56.3574902203139,-56.3571816370643,-56.356886839438,-56.3565074707517,-56.3564139687576,-56.3560709210076,-56.355587973472,-56.3552834128872,-56.355218592498,-56.3552031182483,-56.3550814817705,-56.3549625337417,-56.3549642868762,-56.3550149942751,-56.3549877932393,-56.3550464104815,-56.3551116174437,-56.3551382968041,-56.3553143548185,-56.3553602389975,-56.3554101980961,-56.355588316284,-56.3560841884576,-56.3563158413633,-56.3563417020586,-56.356340090999,-56.3562135323961,-56.3561967596207,-56.3561225254615,-56.3559931654139,-56.3559500834847,-56.3557710420697,-56.3558183801202,-56.3559213550461,-56.3558829797935,-56.3557323108845,-56.3554840542959,-56.3554342661468,-56.355352839846,-56.3551374841079,-56.3550675058917,-56.3548857781183,-56.3548010367973,-56.3546538442467,-56.3543287981889,-56.354173081943,-56.3540916249897,-56.3542557286168,-56.3538723377702,-56.3535565628451,-56.3526080356308,-56.35124822988,-56.35088050655,-56.3506099169446,-56.3503109446644,-56.3501086246757,-56.34981577363,-56.3494037380163,-56.3490334424885,-56.3487511518379,-56.3485697402328,-56.3484727599331,-56.3483270387666,-56.3481769926632,-56.3481282618859,-56.3474580103145,-56.3472870180115,-56.3470845660622,-56.346895672091,-56.3464492877949,-56.3456985441206,-56.3454795620339,-56.3453828437558,-56.3451865787961,-56.3446989874379,-56.3441129848307,-56.3436638601934,-56.3434858883436,-56.3433279673144,-56.3431864276134,-56.3430686332264,-56.3429665672827,-56.3424721125499,-56.3424082658832,-56.34217422527,-56.3421088445781,-56.3420313380022,-56.3418678404577,-56.3415686995773,-56.3414481308276,-56.340998952362,-56.3408067203323,-56.3406395936227,-56.3404017110948,-56.340042645834,-56.3398918748859,-56.3398309370507,-56.3397986938308,-56.3396478291997,-56.3394960037672,-56.3397043116611,-56.3398836973408,-56.3402004608905,-56.3399288142464,-56.3398000406903,-56.3396972815402,-56.3396808729412,-56.3396720682354,-56.3396355157858,-56.3395928672338,-56.3395367852287,-56.3394523283839,-56.339381197878,-56.339289670955,-56.3390927695283,-56.3389645433766,-56.3388231772538,-56.338578224165,-56.3384332694912,-56.3382449323473,-56.3380757783721,-56.3377256913047,-56.3375452645808,-56.3374224015186,-56.3371406427333,-56.336701509225,-56.3362972478896,-56.3361965828197,-56.3360699835127,-56.3359152909601,-56.3357691623718,-56.3356462856119,-56.3354820941658,-56.3353911938422,-56.3352751204702,-56.3351884761956,-56.3351163056887,-56.3350551672519,-56.3350356507384,-56.3349980176137,-56.3349597313483,-56.334934091402,-56.3348944310902,-56.3348855866416,-56.3348582523997,-56.3347806658748,-56.3346709687153,-56.3346422874168,-56.3345787350063,-56.3344902893998,-56.3344390495821,-56.3343667052268,-56.3343092624923,-56.3342440286163,-56.3341791422423,-56.3341308637019,-56.3340530901892,-56.3339325483331,-56.3338543614781,-56.333765595754,-56.3336768293261,-56.3335926130779,-56.3335384112875,-56.3334463773553,-56.3333543299211,-56.3333256885781,-56.3333018362968,-56.3332265172897,-56.3331515719115,-56.3330827634086,-56.3330544816997,-56.3330340451578,-56.3330132742438,-56.3329631680075,-56.3329359005572,-56.3328499230686,-56.3328301531035,-56.3328110764156,-56.3327797272112,-56.3327524597231,-56.3327265927574,-56.332701046101,-56.3326693499109,-56.3326086786432,-56.332530998409,-56.3325033712711,-56.3324737154977,-56.3324440737632,-56.3323902059776,-56.3323366851335,-56.3322835111706,-56.3322306702622,-56.3322071381081,-56.3321583935497,-56.3320488569789,-56.3320283663466,-56.332007889009,-56.3319860111249,-56.331963479276,-56.3318434042952,-56.3318177910032,-56.3317956327001,-56.3317669512026,-56.3317382697609,-56.3316186478531,-56.3315902335727,-56.331562178901,-56.3315419820238,-56.3315108325857,-56.3314296842498,-56.3314108207205,-56.3313923314295,-56.3313742418582,-56.3313591010815,-56.3313439462719,-56.3313288055609,-56.3313035523604,-56.3312455093371,-56.3312201362995,-56.3311859052658,-56.3311466050801,-56.3311009279199,-56.3310844794735,-56.3310642288539,-56.3310351073433,-56.3310136164882,-56.3309868958878,-56.330969126258,-56.3309539589248,-56.3309438332451,-56.330917286799,-56.3308983299245,-56.3308907261991,-56.330839019288,-56.3307884998592,-56.3307443975082,-56.330712901057,-56.3306877146689,-56.3306670907629,-56.3306361947403,-56.3305959876597,-56.3305633441233,-56.3305269519485,-56.3304980839274,-56.3304680151007,-56.3304367053916,-56.3303892009645,-56.3303380007622,-56.3303043437102,-56.330229585082,-56.3302096951487,-56.33019482081,-56.3301749434809,-56.3301588550225,-56.330139005074,-56.3301267053514,-56.3301131520746,-56.3301033066115,-56.3300935152994,-56.3300849642322,-56.3300777467989,-56.3300717836855,-56.3300707433709,-56.3300722775997,-56.3300712765975,-56.3300778137703,-56.3300817756635,-56.3300844572394,-56.3300871114495,-56.3301001985689,-56.3300991581575,-56.3300994248262,-56.3301007987032,-56.3301009323876,-56.3301010786998,-56.3301037870481,-56.3301077489346,-56.3301093099985,-56.3301107774114,-56.3301160731557,-56.3301176207393,-56.3301231570618,-56.3301124583249,-56.3301076423763,-56.3301104302476,-56.330108349471,-56.3301099632664,-56.3301103635884,-56.3301092965092,-56.3301106970491,-56.3301034669374,-56.3300800944781,-56.3299847925352,-56.3299352332139,-56.3299153299986,-56.3298929449674,-56.3298469078382,-56.3297946139991,-56.3297510185859,-56.3297298475907,-56.3297024066007,-56.3296799820377,-56.3296475513061,-56.3296089186816,-56.3295802900943,-56.3295429376953,-56.3295030641047,-56.3294781708812,-56.3294557462231,-56.3294307995628,-56.3294058670133,-56.3293746777092,-56.3293472631937,-56.3293010659425,-56.3292586174608,-56.3292186368267,-56.3291736404591,-56.3291148903749,-56.3290823665865,-56.3290311134175,-56.3289723232556,-56.3289010329622,-56.3288447239807,-56.3287670842419,-56.3287307722319,-56.3287057061315,-56.3286768777707,-56.3286505440254,-56.3286129510801,-56.3285477707897,-56.3284825905588,-56.3284023496791,-56.3283529775639,-56.3283070736015,-56.3282699345136,-56.3282283661148,-56.3281802351948,-56.3281211779737,-56.3280795827831,-56.3280511282565,-56.328009573307,-56.3279679789491,-56.3279198206091,-56.3278694480119,-56.3278278663858,-56.3277797081201,-56.3277205046345,-56.3276882345004,-56.3276617939922,-56.3276347801086,-56.327580779303,-56.3274639057207,-56.327425632567,-56.3274053420305,-56.3273063177357,-56.327254650709,-56.3271984221773,-56.3271548794102,-56.3271036933105,-56.3270519997899,-56.3269845784927,-56.3269418093707,-56.3269170500789,-56.3268900360851,-56.3268517097698,-56.3267909719953,-56.3267122781268,-56.3266313563175,-56.3265774351009,-56.3265324784662,-56.3264696326436,-56.3264247562367,-56.3263731432351,-56.3263148193037,-56.326238553264,-56.3261847122901,-56.3261241215245,-56.3260815389643,-56.3260008973365,-56.3259740301644,-56.3258890533945,-56.3257660698504,-56.3256877892829,-56.3256319742749,-56.3255896189988,-56.3255360976088,-56.3254915152675,-56.3254514542559,-56.3254337915411,-56.3254026692348,-56.3253837927901,-56.3253721734302,-56.3253639021354,-56.3253453597359,-56.3253299783596,-56.3252966676606,-56.325283341116,-56.3252814468153,-56.3252685199832,-56.3252645581399,-56.3252380373057,-56.3252337951291,-56.3252318344293,-56.3252544196431,-56.3252435469867,-56.3252349694138,-56.3252284861897,-56.3252310874373,-56.325231300417,-56.3252271115826,-56.3252340485852,-56.3252320345019,-56.3252322344948,-56.3252324746298,-56.3252327811767,-56.3252309670226,-56.3252313143408,-56.3252296730319,-56.3252278987085,-56.3252282328006,-56.3252151189286,-56.3251932280626,-56.3251690552308,-56.3251539006466,-56.3251430821408,-56.3251344240307,-56.3251235654308,-56.32511941665,-56.3250972582145,-56.3250751667308,-56.3250373739585,-56.3250085324186,-56.3249841066323,-56.3249663638555,-56.3249397367739,-56.3249041988109,-56.3248619505587,-56.3248064146409,-56.3247729975832,-56.3247417946982,-56.3247062164353,-56.3246683705097,-56.3246171040317,-56.3245524175707,-56.32449890989,-56.3244140390892,-56.3243514202395,-56.3242776358022,-56.3241926581347,-56.3240875644407,-56.3240294143724,-56.3239756930981,-56.3239130207672,-56.3238100874837,-56.3236847963021,-56.323624365249,-56.3235593452989,-56.3235055571146,-56.323447220408,-56.3233911383132,-56.3233506908397,-56.3232967567135,-56.323247317202,-56.3231888742061,-56.3231371808734,-56.3230922242397,-56.3230607680695,-56.3230315660147,-56.3230023379699,-56.3229619306484,-56.3229215098119,-56.3228608783788,-56.3227621606986,-56.3226881892127,-56.3226209547866,-56.3225402864287,-56.3224663551174,-56.3223969056605,-56.3223050580133,-56.3222422792734,-56.3221683476954,-56.3221123719936,-56.3220474322464,-56.3219780094158,-56.3218952333432,-56.3218257976065,-56.3218258243882,-56.321821929191,-56.3217341903402,-56.3216500538541,-56.3215694922774,-56.3214714016372,-56.3213908399719,-56.3213208171593,-56.3212508476652,-56.3212019161075,-56.3211180462854,-56.3209922080048,-56.3209119534104,-56.3208649954281,-56.3208267090446,-56.3208130084716,-56.3207993352143,-56.3207996421418,-56.3208070989156,-56.3208214000687,-56.3208499211179,-56.3208607265274,-56.3209757990599,-56.3209823630792,-56.3209953427046,-56.3210128318769,-56.3210299873628,-56.3210536392779,-56.3210799466544,-56.3210861229744,-56.3212138420541,-56.321315454774,-56.3216225730271,-56.3219291845888,-56.3220492600129,-56.3221274467349,-56.3222084749231,-56.3223069527024,-56.3224170890267,-56.3225475032107,-56.3227071059446,-56.3227226071735,-56.3227305445014,-56.3227541968526,-56.3228734577963,-56.322936236883,-56.3230161981362,-56.3230281912537,-56.3230401575006,-56.3230351284524,-56.3230017372882,-56.323002084637,-56.3229742297574,-56.3229295539766,-56.3228680285879,-56.3228009403623,-56.3227113078188,-56.3226214750167,-56.3225033869846,-56.3224414888626,-56.3223375819499,-56.322230766315,-56.3221633581959,-56.3220565303677,-56.3219778629702,-56.3219047982863,-56.3218319345273,-56.3217817083638,-56.3217594170835,-56.3217104314833,-56.3217050290954,-56.3216790422133,-56.3216484395461,-56.3216077520791,-56.3215874612601,-56.3215418781786,-56.3213576231729,-56.3211777036695,-56.320931883183,-56.320707648078,-56.320643547933,-56.3205272479363,-56.3204081735788,-56.3203613489677,-56.320347781925,-56.3203439269293,-56.3203486223584,-56.3202649125524,-56.3202644195074,-56.3202910993965,-56.3203042529839,-56.3203241833605,-56.3203512242968,-56.3203783715982,-56.3203847079888,-56.3203842140607,-56.3203837208837,-56.3203280652704,-56.3203070548048,-56.320224105317,-56.320204121726,-56.320188420207,-56.3201690364189,-56.3201481190321,-56.3201065245292,-56.3200693184455,-56.3200155174294,-56.3199687465752,-56.3198968427394,-56.3198440421022,-56.3197718855005,-56.3197205121215,-56.319669258971,-56.319621861281,-56.3195565611337,-56.3194581902283,-56.3193509878714,-56.3192761226551,-56.3192241494474,-56.3191815539201,-56.3191132918432,-56.3190500865286,-56.3189834920102,-56.3188878295643,-56.3188117233642,-56.318764872837,-56.318717127995,-56.3186881795747,-56.31866309998,-56.3186223855176,-56.3186036293009,-56.3185995468976,-56.3185749479694,-56.3185449993291,-56.3185258294546,-56.3184996556939,-56.3184835943906,-56.3184752564277,-56.3184490962703,-56.3184295398852,-56.3184208019125,-56.3184107034595,-56.3184026854034,-56.3184238168064,-56.3184351155929,-56.3184589812527,-56.3185018836028,-56.3185216539365,-56.3185579923018,-56.318575174569,-56.3185977996379,-56.3185978933476,-56.3186019887172,-56.3186221854598,-56.3186444635467,-56.318674212667,-56.3186971441827,-56.3187204226971,-56.3187460763939,-56.3188371365537,-56.3189131357722,-56.318932652589,-56.3189593857997,-56.3190512333526,-56.3191029803007,-56.3191608901812,-56.3192321933755,-56.3192966131605,-56.3193394753438,-56.3193826579406,-56.3194618452876,-56.3194773067275,-56.3194931411384,-56.3195062281578,-56.3195182741427,-56.3195272790314,-56.3195328551211,-56.3195418333427,-56.3195542263947,-56.3195696744975,-56.3195820409396,-56.3195940736332,-56.3196050926151,-56.3196161249454,-56.3196261568664,-56.3196389502549,-56.3196795975443,-56.3197025827318,-56.3197154426759,-56.3197281561688,-56.3197429503356,-56.319751247942,-56.3197612799208,-56.3197730456419,-56.3197937896853,-56.319803101063,-56.3198175222883,-56.3198289010108,-56.3198453099235,-56.3198546612561,-56.3198946548379,-56.3199019520925,-56.3199099561002,-56.319918280412,-56.3199286595354,-56.3199362765149,-56.3199459615973,-56.3199525781793,-56.3199537125519,-56.3199520981302,-56.3199518710496,-56.3199546991854,-56.3199617161105,-56.3199690668012,-56.3199823540404,-56.3199917721547,-56.3200026176685,-56.3200078468775,-56.3200193197687,-56.3200304716182,-56.3200395167073,-56.3200482275166,-56.3200531104477,-56.320054577852,-56.3200530033839,-56.3200527897283,-56.3200535770787,-56.3200557518939,-56.3200592733666,-56.3200621148378,-56.3200615281835,-56.3200578729957,-56.3200505219215,-56.3200424781847,-56.320034433743,-56.3200264032871,-56.3200189862517,-56.3200037784141,-56.3199882235637,-56.3199780849709,-56.3199679463783,-56.3199547925761,-56.3199334883466,-56.3199165600885,-56.3198986440339,-56.3198851171969,-56.3198783934623,-56.3198747382204,-56.3198697488373,-56.319862678738,-56.3198417481117,-56.3198295546746,-56.319817682299,-56.3197996595226,-56.3197173904577,-56.3197010754779,-56.319683773349,-56.3196650698189,-56.319592672839,-56.3195722621974,-56.3195508245302,-56.3195283464078,-56.3195055346605,-56.3194680881841,-56.3194411548726,-56.3193666362396,-56.3193482803141,-56.3192801651964,-56.319257340001,-56.3192014443557,-56.3191711352958,-56.3191278727105,-56.3190873456121,-56.3190563425082,-56.3190141076459,-56.3189895753109,-56.3189534495189,-56.3189313182596,-56.3189047311141,-56.3188788247358,-56.3188532513045,-56.3188205410435,-56.3187874711288,-56.3187523597103,-56.3187243851703,-56.3186953836042,-56.3186660748469,-56.3185841926834,-56.3185521225319,-56.3185289508919,-56.3185054189716,-56.3184706677666,-56.3184131178059,-56.3183923339942,-56.3183664673554,-56.3183422679022,-56.3183198161324,-56.3182959909707,-56.3182741926514,-56.3182568236362,-56.318223806734,-56.3181385364089,-56.3181273701927,-56.3181168848043,-56.3181064126461,-56.3180959271915,-56.3180799860334,-56.3180681132358,-56.3180497967998,-56.3180318007656,-56.3180134983021,-56.3180005984065,-56.3179876985637,-56.3179380107713,-56.3179085243396,-56.3178891144499,-56.3178659418992,-56.3178383280645,-56.3178062848939,-56.3177803914946,-56.317715584533,-56.3176896380282,-56.3176568875374,-56.3175660006682,-56.3175434160423,-56.3175122930727,-56.3174938033181,-56.3174715789281,-56.3174452316647,-56.3174079324947,-56.3173165920021,-56.3172960747347,-56.317278265797,-56.3172474501055,-56.3171488388329,-56.3171303359154,-56.3171101126571,-56.3170895550468,-56.3170487343748,-56.3170339529487,-56.3170307512033,-56.3170289108916,-56.3170281102517,-56.3170286835844,-56.3170275631216,-56.3170243885607,-56.3170190790083,-56.3169630367091,-56.3169452007088,-56.3169219089813,-56.3168800203863,-56.3168591430164,-56.3168252053488,-56.3167628533641,-56.3167340648679,-56.316710426265,-56.3166785699267,-56.3166045318998,-56.3165849881673,-56.3165264784432,-56.3165073082417,-56.3164717165693,-56.3164457167049,-56.3164255194515,-56.3163994790984,-56.3162940916488,-56.3162701326167,-56.3162438121749,-56.3162171587317,-56.3161757902863,-56.3161552732688,-56.3161350760702,-56.316109783417,-56.316087558632,-56.3160633194834,-56.316036345483,-56.3160145206109,-56.3159937101587,-56.315952861928,-56.3159313980788,-56.3159157897615,-56.3158297852893,-56.3157261585421,-56.3157008922564,-56.3156807222232,-56.3156540945132,-56.3156281349262,-56.3156066305175,-56.3155810172322,-56.3154644901796,-56.3154375696401,-56.3154154247562,-56.3153816744605,-56.3153585024906,-56.3152469248998,-56.3152124403329,-56.3151653364296,-56.3150871490474,-56.3150485562444,-56.3150222622131,-56.3149993837549,-56.3149563352855,-56.3149256125989,-56.3148976114822,-56.3148703174441,-56.3147371950158,-56.3147143172025,-56.3146914380473,-56.3146535385971,-56.3146248574644,-56.314603659686,-56.3145770326436,-56.3145554885718,-56.3145298615005,-56.3145049018562,-56.3144823704073,-56.3144336523392,-56.3144190580854,-56.3144030630585,-56.3143894029329,-56.3143722868432,-56.3142870031284,-56.3142610698997,-56.3142358570087,-56.3142051743835,-56.3141291886436,-56.314104655794,-56.3140674897417,-56.3140398756567,-56.3140064451567,-56.3139720006561,-56.3139416380217,-56.313910596014,-56.3138099171524,-56.3137836237362,-56.3137512069945,-56.3136433242803,-56.3136214465209,-56.3135999421166,-56.3135763702722,-56.3135384707848,-56.3134299213396,-56.3133998923767,-56.313367448567,-56.3133445707816,-56.3133162621983,-56.3131922388063,-56.3131716948851,-56.3131080618564,-56.3130501249735,-56.3130022869032,-56.312952634761,-56.3129317571967,-56.3129033565327,-56.3128801173752,-56.3128527700483,-56.3128278238113,-56.3128015305139,-56.312780413072,-56.3126851906606,-56.312650359124,-56.3125807233906,-56.3125339254025,-56.3125219061296,-56.312506431757,-56.3124885958299,-56.3124646766963,-56.3124239219691,-56.3124294853566,-56.3124312995796,-56.31241056901,-56.3123983623313,-56.3123612898977,-56.3123349965632,-56.3123101035334,-56.3122886127824,-56.3122715901995,-56.312249445651,-56.3122231522505,-56.3122023016585,-56.3121824109635,-56.3121679238244,-56.312164068158,-56.3121622540503,-56.312169297507,-56.3121722723436,-56.3121627476729,-56.3121175508624,-56.312093938559,-56.3120757826176,-56.3120133909157,-56.3119834282456,-56.311980560205,-56.3119801201561,-56.311971795766,-56.3119587488513,-56.3119439949144,-56.3119233442156,-56.311897050308,-56.3118741852534,-56.3118379535763,-56.311816809206,-56.31179530493,-56.3117659560674,-56.3117448386407,-56.3117250682785,-56.3116940662159,-56.3116701869836,-56.3116480155806,-56.3116248565869,-56.3116009511561,-56.3115801935919,-56.311559423135,-56.3115351975785,-56.3115027941594,-56.3114775408838,-56.3114563964712,-56.3114195779895,-56.311395725649,-56.3113165645746,-56.3112724614789,-56.311215325826,-56.3111383257737,-56.3111141403296,-56.3110892608252,-56.311051774402,-56.3110238270096,-56.3109798839747,-56.3109628619642,-56.3109451465796,-56.3109179322862,-56.310889384041,-56.3108693069838,-56.3108540457785,-56.310818414628,-56.3107935214043,-56.3107630523039,-56.3107339841047,-56.3106799294613,-56.3106494336923,-56.3106147493331,-56.3105911640473,-56.3105759024489,-56.3105523567555,-56.3105385500815,-56.3105262371353,-56.3105088679548,-56.3104874039216,-56.3104628712501,-56.3104410197926,-56.3104081495563,-56.3103817491031,-56.3103609247485,-56.3103415150807,-56.3102819239572,-56.3102694779134,-56.3102305778921,-56.310188596382,-56.3101599144373,-56.3101353287432,-56.3100776721576,-56.3099548626016,-56.3099105193094,-56.3098976463362,-56.3098844524496,-56.3098732865652,-56.3098600665134,-56.3098441249851,-56.3098288240328,-56.3098083868799,-56.3097831471916,-56.3097661249253,-56.3097471282653,-56.3097335751583,-56.3097199945645,-56.3097020249621,-56.3096843897039,-56.3096725168919,-56.3096575622462,-56.3096398866455,-56.3096239181928,-56.3096011595469,-56.3095818029565,-56.3095678760027,-56.3095539490492,-56.3095407154007,-56.3095278154605,-56.3094999608175,-56.3094710662944,-56.3094530436744,-56.3094339939673,-56.309417678387,-56.3094020568693,-56.309384394707,-56.3092543012769,-56.3102548304581,-56.3108384179671,-56.3066787634524,-56.297398506649,-56.2972817797833,-56.2971890091999,-56.2958529762461,-56.2942762697649,-56.2930463621367,-56.2929298020237,-56.2896957941631,-56.2888181081846,-56.2856870734299,-56.2808541943238,-56.2780265026776,-56.2756014780485,-56.2727789497325,-56.2715574474539,-56.2713844607785,-56.2713946581736,-56.2702770473668,-56.2691063275253,-56.2690409552675,-56.2689921901181,-56.2688819265857,-56.2688318074046,-56.2687498051139,-56.2687075833391,-56.2685675377807,-56.2684782117129,-56.268363099013,-56.2683047088997,-56.2682462854359,-56.268124789444,-56.2680925928394,-56.2678195120046,-56.2676512185447,-56.2673509303451,-56.2671367799022,-56.2670456462356,-56.2669087889881,-56.2668265999345,-56.2667582580221,-56.2667462451601,-56.2667240203649,-56.2667017955697,-56.2666837662715,-56.2666537441216,-56.2666183058452,-56.2665918788828,-56.2665624036817,-56.2665419598049,-56.2665162332037,-56.2664902264581,-56.2664673613326,-56.2664306290555,-56.2663811902253,-56.2663221664519,-56.2662962797681,-56.266286014474,-56.2662721273121,-56.2662594741198,-56.2662497824549,-56.2662346679933,-56.2662291985059,-56.2662099619185,-56.2661865031535,-56.2661606831708,-56.2661414665937,-56.2661259786061,-56.2661242777289,-56.2659631879842,-56.2658275246858,-56.2656760932554,-56.2656415087526,-56.2655940509441,-56.265520906555,-56.2655157972533,-56.2653270732568,-56.2652519745265,-56.2651950184862,-56.2651278238322,-56.2650575075683,-56.2649683749336,-56.2648637409712,-56.2647510828705,-56.2646167069027,-56.26450892465,-56.2644067652972,-56.2642950009908,-56.2641670216552,-56.2640392891136,-56.2639466946936,-56.2638725030978,-56.2637660415262,-56.2636386091394,-56.2635335349499,-56.2634317891437,-56.2633208385903,-56.2632183857527,-56.2631260447968,-56.2630597572773,-56.2630012537722,-56.2629618601226,-56.2629629940407,-56.2629945169645,-56.2629130549525,-56.2628856341442,-56.2629000282343,-56.2627943670755,-56.2627220497796,-56.262502596602,-56.262364391993,-56.2595130348084,-56.2553509149634,-56.2528802407735,-56.2514664581489,-56.2512219434351,-56.2510892132093,-56.2510712968665,-56.2510796993057,-56.2507847734207,-56.2506966533732,-56.2506132911558,-56.2501930749649,-56.2500076259592,-56.2499763188417,-56.2497455365222,-56.2494520674265,-56.248598011722,-56.2486951870034,-56.2488135053534,-56.2490888065171,-56.2493535193632,-56.2497779591815,-56.2504675149989,-56.2512738184075,-56.2525211841283,-56.2526055991338,-56.252605459216,-56.252789987561,-56.2528729329389,-56.252986495324,-56.2530279998618,-56.2533569933137,-56.2533764566847,-56.2534524492094,-56.2536043699238,-56.253650764779,-56.2536576346084,-56.2537372457599,-56.2537580942408,-56.2537859104379,-56.2537897083175,-56.2540375311512,-56.2554597110723,-56.2565989786218,-56.257766515094,-56.25805997106,-56.2589038206211,-56.2612248100546,-56.2624224816832,-56.2630908304205,-56.2632699684827,-56.2636188986955,-56.2636905184141,-56.2637724841248,-56.2638273316586,-56.264791757472,-56.2652074715144,-56.2657879275855,-56.2664037460524,-56.2664713867866,-56.2682051775689,-56.2682054510433,-56.2698350249174,-56.2703027726857,-56.2705026733721,-56.2707437867946,-56.2715339247018,-56.2715470010328,-56.2715698127974,-56.271598320833,-56.2718424560537,-56.2721959023544,-56.272395018377,-56.2725019535262,-56.2736654885798,-56.2749366532648,-56.2759452166281,-56.2769256026869,-56.2784375180326,-56.2799772087066,-56.2821665177893,-56.28411107398,-56.2848030241698,-56.2854424939607,-56.2861374657087,-56.2880816483735,-56.2891890061329,-56.2896299979563,-56.2897790897681,-56.2898202255262,-56.2899642726243,-56.2901166287583,-56.2901979867119,-56.2902345413721,-56.2903312005925,-56.2904158236594,-56.2905885190044,-56.2906381346846,-56.2906889186399,-56.2907285347879,-56.2907610348562,-56.2907788897276,-56.2910945723533,-56.2917625039077,-56.2989870725798,-56.3008085586334,-56.3068342262244,-56.3099961369026,-56.3113910162776,-56.3118104192411,-56.3131270555737,-56.314870272716,-56.3152571370977,-56.3170963319883,-56.3190460441714,-56.3211747130629,-56.3274086503147,-56.3291718796572,-56.3297962329481,-56.3334581832313,-56.3336360216468,-56.3395910799038,-56.3403431075348,-56.344503613043,-56.3451289094162,-56.3515790088226,-56.3556231747956,-56.3579527895947,-56.358923356479,-56.3589233566804,-56.3655630341734,-56.3654281646177,-56.3615042875287,-56.3610145415638,-56.3574679125988],&#34;lat&#34;:[-34.8474746359723,-34.848420134042,-34.8494970161025,-34.8495288221531,-34.8505285268009,-34.8506818426511,-34.8508197511918,-34.8510196913381,-34.8517604098621,-34.8518931016941,-34.8519905919026,-34.8520217846554,-34.8520708099516,-34.852079687582,-34.8520885791933,-34.8520974102373,-34.8521106969756,-34.8521239874782,-34.8521283359728,-34.8521415865394,-34.8521548167981,-34.852163714424,-34.8521680368819,-34.8521679035133,-34.8521722788769,-34.8521766413818,-34.8521810500353,-34.8521853925408,-34.8522716399274,-34.8523655185381,-34.8523925022037,-34.8524239355792,-34.8524733173077,-34.8525137751381,-34.8525497332668,-34.8525677093427,-34.8525991587594,-34.8526216070947,-34.8526710526169,-34.8527160124937,-34.8527384845085,-34.8527609327071,-34.85279233841,-34.8528147434862,-34.8528371684286,-34.8528864770328,-34.8529178502215,-34.8529402480991,-34.8529671490696,-34.8529895738715,-34.8530120286506,-34.8530254853562,-34.8530434315498,-34.8530658565033,-34.8530793033295,-34.8531241795739,-34.8531421290372,-34.8531959200562,-34.8532228009251,-34.8532361908876,-34.8532854731943,-34.8532898819728,-34.8532942972875,-34.8532984427608,-34.8533208010401,-34.8533609854766,-34.8534012696373,-34.8534097802297,-34.8534185217012,-34.8534780087724,-34.8534944538822,-34.8535123200929,-34.8535438897868,-34.853568018815,-34.8536607229046,-34.8537282178118,-34.8537823494009,-34.8538046741481,-34.8538226300376,-34.8538900478481,-34.8539214974603,-34.853948448063,-34.8539844003482,-34.8540743598351,-34.8541058329544,-34.8542047605914,-34.8542451680514,-34.8542810215409,-34.854298978764,-34.8543169263901,-34.8543663002794,-34.8544022758763,-34.8544382292009,-34.8544606971317,-34.8544831792573,-34.854514663726,-34.854538317293,-34.8545955920733,-34.8546270530388,-34.8546495129278,-34.8547901754619,-34.8548518741609,-34.8548743573471,-34.8549326274401,-34.8549730517514,-34.8549910192764,-34.8550089836123,-34.8550269442525,-34.8550628479495,-34.8550943306339,-34.8551931802169,-34.8553100539704,-34.855337024402,-34.8553595010106,-34.8553999653204,-34.8554404411143,-34.8554719020898,-34.8555618188957,-34.855633682603,-34.8557056192031,-34.8557461934512,-34.8557867747425,-34.8558318644116,-34.855908545614,-34.855922116248,-34.8559899409204,-34.856048716585,-34.8561119942046,-34.8561660366547,-34.8562560731327,-34.8562832088006,-34.8563239650756,-34.8563420676271,-34.8563601754426,-34.8564235127555,-34.8564642255259,-34.8564867707183,-34.8565588194447,-34.8565813145364,-34.8566487292001,-34.8566666984265,-34.8567113016368,-34.8567701418004,-34.8568245181338,-34.8568828381366,-34.8569368425787,-34.8569683791073,-34.8570720192815,-34.8571193616908,-34.8571755908996,-34.8572205909013,-34.8572609867017,-34.8573014156983,-34.8573507962631,-34.8573915803854,-34.8573955945403,-34.8574135717993,-34.8574881052125,-34.8575351213253,-34.8575568559575,-34.8575843267237,-34.8576473126884,-34.8576923774709,-34.8577374339535,-34.8578185589339,-34.8578366249405,-34.857872755354,-34.8579089472573,-34.8579676228625,-34.8579991872131,-34.8580773023254,-34.8581750527638,-34.8582669737108,-34.8583704989131,-34.8584944260328,-34.8585723947678,-34.858613532326,-34.8586824695774,-34.8587573146712,-34.8588158703468,-34.8588912474363,-34.858958118243,-34.8589902132766,-34.8590957114012,-34.8591469292804,-34.8592248760829,-34.8593075000885,-34.8593720819584,-34.8594869527481,-34.8596020541399,-34.8597721699795,-34.8598593814306,-34.859983075519,-34.8601204346042,-34.8602672236767,-34.8604003923025,-34.8605059967079,-34.8606201992797,-34.8606651324773,-34.8607884556089,-34.8608044910204,-34.8608224514516,-34.860858420396,-34.8609529723753,-34.860993463334,-34.8610114560246,-34.8610878484083,-34.8611822970762,-34.8612183392735,-34.8612408691592,-34.8612769408592,-34.8613220375903,-34.861394099808,-34.8614154856049,-34.8614661670579,-34.861520261681,-34.8616194558044,-34.8616735690228,-34.8617457329526,-34.8617998873589,-34.8619217822034,-34.8619895017334,-34.8620570902262,-34.8621381652117,-34.8621922032812,-34.8622553105898,-34.8623365093489,-34.8623996498019,-34.8624537597499,-34.8624762581272,-34.8625258268812,-34.8625819407366,-34.8626746838036,-34.8627423516492,-34.8628642028661,-34.8629725003516,-34.8631077518658,-34.863143733834,-34.8632438038694,-34.8633464783443,-34.863396045593,-34.8634562980625,-34.8635897839309,-34.8636789181266,-34.8637679421401,-34.8639185782182,-34.8640916424806,-34.8642479149244,-34.8643651104144,-34.8644319350275,-34.8644908384977,-34.8645897694858,-34.8647658302918,-34.8648504391163,-34.8649272853594,-34.8650217458631,-34.8651108251865,-34.8651609442952,-34.8652277401529,-34.8653557527836,-34.8654254537032,-34.8655946663552,-34.8657053985433,-34.865783353634,-34.8659885077609,-34.8660904903129,-34.8663171972322,-34.8663328151265,-34.8663513681375,-34.8663695423528,-34.8664234972127,-34.8664806049605,-34.8664957907036,-34.8665147954074,-34.8665329799075,-34.8665509106992,-34.8665520846671,-34.8666109654555,-34.8666293883002,-34.8666490463175,-34.8666650301161,-34.8666920704466,-34.8667448176774,-34.8668601303946,-34.8669044783725,-34.8669383439122,-34.8669513193439,-34.8670059992016,-34.8670523513336,-34.8671054802356,-34.8671365062584,-34.8671762315305,-34.8672289537492,-34.8672489557367,-34.8672382651981,-34.8672067243009,-34.8671911714426,-34.8671945861499,-34.8672215833004,-34.8673013527381,-34.86734599084,-34.867389158428,-34.8674131759321,-34.8674356571104,-34.8674724545079,-34.8674967573329,-34.8675146932108,-34.8675455336608,-34.8675582268872,-34.8675791094547,-34.8675702708577,-34.8675572247332,-34.8675186285075,-34.8675024065265,-34.867489063293,-34.8674652205849,-34.8674245012674,-34.8673742286869,-34.8673305112839,-34.8672887330211,-34.8672743240291,-34.8672562628003,-34.8672336833293,-34.8672155987489,-34.8671929985829,-34.8671794553825,-34.8671477654552,-34.867125135451,-34.8671025021117,-34.8670889301123,-34.8670662984406,-34.8670436717714,-34.8670210567749,-34.8670029591082,-34.8669848731141,-34.8669668021278,-34.8669487411466,-34.866930685168,-34.8669126258544,-34.8668945615381,-34.8668764855492,-34.8668538922306,-34.8668312872393,-34.8668086739103,-34.8667860455736,-34.8667724752418,-34.8667589015748,-34.8667453245728,-34.8667317459033,-34.8667136565741,-34.866700069567,-34.8666864825598,-34.8666683865606,-34.8666547962183,-34.8666367002191,-34.8666231115444,-34.8666050172127,-34.8665914335406,-34.866568780191,-34.8665552048565,-34.8665325665147,-34.866509934843,-34.8664918104958,-34.8664736878161,-34.8664555618014,-34.8664374357867,-34.8664238654548,-34.8664057344375,-34.8663876034202,-34.8663740297532,-34.8663558954009,-34.8663423200664,-34.866324185714,-34.8663106103796,-34.8662924726922,-34.8662698293477,-34.8662562540133,-34.8662381163259,-34.8662154713139,-34.866192826302,-34.866174686947,-34.8661520402676,-34.8661339042477,-34.8661157732304,-34.8660976472157,-34.8660795278711,-34.8660659208536,-34.8660523138361,-34.8660387051511,-34.866025089796,-34.8660114711058,-34.8660023614077,-34.8659932533771,-34.8659841169986,-34.8659794929472,-34.8659793695502,-34.8659792795038,-34.8659791861222,-34.8659790910733,-34.8659835016812,-34.8659834049647,-34.8659833115832,-34.8659877255262,-34.8659876321448,-34.8659875420983,-34.8659874170338,-34.86598280132,-34.8659782022815,-34.8659736065781,-34.865968999202,-34.8659598778311,-34.8659462608085,-34.8659326637962,-34.865919080124,-34.865905499787,-34.8658919127798,-34.8658828214245,-34.8658737133939,-34.8658646270412,-34.8658554923302,-34.8658463926373,-34.8658372896093,-34.8658281882488,-34.8658190918909,-34.8658100022031,-34.8658008908375,-34.8657962934665,-34.8657961917474,-34.8658005923502,-34.865804989618,-34.8658138975454,-34.8658228071403,-34.8658317150677,-34.865840654678,-34.8658495576029,-34.8658584972132,-34.8658674401587,-34.8658808587457,-34.8658942973429,-34.8659077409428,-34.8659212028855,-34.8659346464854,-34.8659480717425,-34.865961495332,-34.8659839168954,-34.8659973671654,-34.86601533143,-34.8660333023647,-34.8660513266603,-34.8660694243271,-34.8660785390278,-34.8661011273438,-34.8661191232914,-34.8661370875561,-34.8661505511663,-34.8661640081064,-34.8661819673684,-34.8661999299655,-34.8662133969108,-34.8662313845208,-34.8662493737983,-34.866267376416,-34.8662853690286,-34.8663033399633,-34.8663168035736,-34.8663257415164,-34.8663256531375,-34.8663210424263,-34.866325436359,-34.8663298352943,-34.8663432738916,-34.8663567408369,-34.8663747084366,-34.8663971833608,-34.8664151643007,-34.8664286329135,-34.8664420731783,-34.8664510094536,-34.8664554317343,-34.8664778549652,-34.8664869496556,-34.8665005366627,-34.866518600979,-34.8665320579191,-34.8665409791866,-34.8665453981323,-34.8665452930781,-34.8665496820082,-34.8665540709384,-34.8665584648711,-34.8665673727985,-34.8665717784039,-34.8665761856769,-34.8665805912823,-34.8665804895632,-34.8665803895116,-34.866575787138,-34.8665711530814,-34.8665710496948,-34.8665664356485,-34.8665708279137,-34.8665842698461,-34.8665977284537,-34.8666111753886,-34.8666246389988,-34.8666380859338,-34.8666469971962,-34.8666559384741,-34.8666693637312,-34.8666828223388,-34.8667008082813,-34.8667187892212,-34.8667322111432,-34.8667366184161,-34.8667365033568,-34.8667363832949,-34.866736266568,-34.8667406621683,-34.8667450677737,-34.8667494783817,-34.8667584046519,-34.8667628019196,-34.8667671958524,-34.866767109141,-34.8667670207621,-34.8667624283937,-34.8667668289965,-34.8667712462746,-34.8667846865394,-34.8668026508041,-34.8668206150687,-34.8668385810009,-34.8668565536031,-34.8668700138783,-34.8668789201381,-34.8668787934061,-34.8668787000246,-34.8668786099781,-34.8668830305913,-34.8669009865183,-34.8669234764503,-34.8669459547096,-34.8669593949744,-34.8669637939097,-34.8669457112507,-34.8669277052979,-34.866905162005,-34.8668960606446,-34.8669094975743,-34.8669138981772,-34.8669093024737,-34.8669046917625,-34.866900092724,-34.8668954870154,-34.8668953752911,-34.8668952669019,-34.8668906528556,-34.8668860554846,-34.8668859537655,-34.8668813480569,-34.8668812546754,-34.8668811629615,-34.8668765655905,-34.8668719598819,-34.8668673675134,-34.8668537855089,-34.8668402068393,-34.8668176585439,-34.8668040698692,-34.8667904678543,-34.8667813681614,-34.866767767814,-34.8667586697886,-34.8667495567554,-34.8667494617064,-34.8667448509952,-34.8667492549331,-34.8667536622061,-34.8667580778166,-34.8667669807414,-34.8667759136817,-34.8667938962891,-34.8668119305899,-34.8668344888904,-34.8668480692275,-34.8668616779125,-34.8668707676003,-34.8668798956412,-34.8668889936666,-34.8669026073542,-34.8669206399874,-34.8669250472604,-34.8669249271985,-34.8669248388195,-34.8669202447836,-34.8669156207322,-34.8669064960264,-34.8668929240269,-34.8668703640589,-34.866847789083,-34.8668297130941,-34.866811623765,-34.8667889870907,-34.8667798707225,-34.8667933276626,-34.8668158909657,-34.8668294612976,-34.8668430382996,-34.8668655982677,-34.866879036865,-34.8668744244862,-34.8668743344398,-34.8668697337338,-34.8668696403523,-34.8668695519734,-34.8668694402491,-34.8668738575272,-34.8668692484835,-34.8668736507539,-34.8668735473672,-34.8668824719699,-34.8668959088996,-34.8669139081823,-34.8669319258078,-34.8669499000776,-34.8669633620203,-34.86697226161,-34.8669721715636,-34.8669675758601,-34.8669584861724,-34.8669448824899,-34.8669312954827,-34.8669177118106,-34.8669041331411,-34.8668860238017,-34.8668679344725,-34.8668498768264,-34.866840782136,-34.8668406937571,-34.8668406037107,-34.8668269900231,-34.8668134130211,-34.8667953170218,-34.8667727470486,-34.8667546927375,-34.8667410873875,-34.866745492993,-34.866754405923,-34.8667723601824,-34.8667767657878,-34.8667721450715,-34.8667720583601,-34.8667719699812,-34.8667718632595,-34.8667672725586,-34.8667626568448,-34.8667580561388,-34.8667534504302,-34.8667578527005,-34.8667622666436,-34.8667757052409,-34.8667937362066,-34.8668073232137,-34.8668253858625,-34.8668433651348,-34.8668523047452,-34.8668521896859,-34.8668475873123,-34.8668429932764,-34.8668338719056,-34.8668158109244,-34.8667933059847,-34.8667753033669,-34.8667573074193,-34.8667347574564,-34.8667166497845,-34.8667120407408,-34.8667074400348,-34.8666983303367,-34.8666892439839,-34.8666801576312,-34.8666710612733,-34.8666619499077,-34.8666528385421,-34.8666392215194,-34.8666212022264,-34.8666122659511,-34.8665988140135,-34.866576287396,-34.8665671927056,-34.8665625703217,-34.8665624419222,-34.8665623352005,-34.8665667291332,-34.8665666407543,-34.8665665373677,-34.866561928324,-34.866557330953,-34.8665526952289,-34.8665436022061,-34.8665409923885,-34.8665252994335,-34.8665161847328,-34.8665070666971,-34.866493451342,-34.8664753553428,-34.8664527970422,-34.8664393451047,-34.8664304054943,-34.8664169718996,-34.8663990243102,-34.8663855673701,-34.8663720970898,-34.8663541311577,-34.8663361468827,-34.8663225515379,-34.8663179424943,-34.8663178524478,-34.866317739056,-34.8663175906461,-34.8663129916076,-34.8663128865535,-34.8663082574994,-34.8663486116445,-34.8663482531262,-34.8663254463642,-34.866262275452,-34.8661855308729,-34.8661177709273,-34.8660990962963,-34.8660042156973,-34.8660080043179,-34.8659084679844,-34.8658542016646,-34.8657638467329,-34.8657318102108,-34.8657223503321,-34.8656771486872,-34.8656139794425,-34.8655458059503,-34.8654823732365,-34.865463665255,-34.8655264259556,-34.8656295991646,-34.8656204177629,-34.8656560928281,-34.8657279365464,-34.8658041074964,-34.8657542984753,-34.8657002089132,-34.865659401201,-34.865654268554,-34.8657216032802,-34.8658342880613,-34.8658927515458,-34.865969629527,-34.8660598210411,-34.8661496323591,-34.8662213093247,-34.8662932497596,-34.8663465655893,-34.8663322165224,-34.8663450831581,-34.8664704711572,-34.8665330150794,-34.8665416211844,-34.8664691204606,-34.8665044470127,-34.8665446777608,-34.8665623502082,-34.8665799059288,-34.8665079504862,-34.8664586850788,-34.8664319796394,-34.8663959410534,-34.8663957259425,-34.8664131699388,-34.8664306756336,-34.8664215409226,-34.866412211111,-34.8663623003707,-34.8663308057949,-34.866272442362,-34.8661327569893,-34.8661391084544,-34.8660951627085,-34.8660400693895,-34.8660333152907,-34.8660002872404,-34.8660381379732,-34.865999991093,-34.8659719100709,-34.8659489148073,-34.8658607791633,-34.8657889175335,-34.8658199941092,-34.8657910094605,-34.865848563597,-34.8658550480313,-34.8658178970163,-34.8657596108468,-34.8657287659957,-34.8657238978861,-34.8657020849764,-34.8656524560718,-34.8656076345317,-34.8655841339828,-34.8655312031294,-34.8655038861236,-34.8654315484674,-34.865444545443,-34.8654757583003,-34.865515955693,-34.8655067238931,-34.8654476968439,-34.8654519073898,-34.8654741224153,-34.8655277781719,-34.865572866808,-34.8656046413677,-34.8656673336455,-34.865703170165,-34.8657159201034,-34.8656976357791,-34.8657242914348,-34.8657555209342,-34.8657462876096,-34.8657142797164,-34.8656959481985,-34.8657135010138,-34.8656952180742,-34.8656859012513,-34.8657663444087,-34.8657972774453,-34.8657563162124,-34.8656974707771,-34.8656791546,-34.8656429508249,-34.8655751560168,-34.8655166106768,-34.8654535214348,-34.8653813978062,-34.8653135693772,-34.8652418343395,-34.8651966695008,-34.8651332701052,-34.8650601557401,-34.86481219254,-34.864758341717,-34.864703909883,-34.8645054958205,-34.8643618188655,-34.8642369710289,-34.8641490704511,-34.8639066403919,-34.8636365647001,-34.8635489395452,-34.8635187583209,-34.8634189240453,-34.8633160011712,-34.8631659104029,-34.8631158844583,-34.8630182092799,-34.863006647587,-34.8630522150875,-34.8630336098988,-34.862926582541,-34.8629341396064,-34.8628946191322,-34.8629507408355,-34.8629960100265,-34.8629988998306,-34.8630274624301,-34.863047207025,-34.863087833899,-34.8630954099524,-34.8630444287948,-34.863040984311,-34.8629960295231,-34.8629762465805,-34.8629053786975,-34.8628856352115,-34.8628947133886,-34.8628717335295,-34.862802407352,-34.86273177635,-34.8627226299662,-34.8627478859979,-34.8627600807907,-34.8627985290549,-34.8628031331505,-34.8627272269164,-34.8626357451576,-34.8626323479103,-34.8625487004876,-34.8625135871575,-34.862535183241,-34.8626048319317,-34.8626519718594,-34.8626201254354,-34.862543554279,-34.8625516182709,-34.8625879438385,-34.8625697544578,-34.8625920814107,-34.8625468137895,-34.8625341626328,-34.8624732624702,-34.8624686106287,-34.8624725785891,-34.8624990955074,-34.8625079074883,-34.8625355941785,-34.8625527578453,-34.8625580600934,-34.8625543989132,-34.862530602689,-34.8625382534886,-34.8625522818194,-34.8625533382447,-34.8625355344051,-34.862506544913,-34.862473639001,-34.8624447416522,-34.8624170206499,-34.8624039064019,-34.8624478063911,-34.8625371826597,-34.8625279945511,-34.8625190024264,-34.8625191864751,-34.8625140960542,-34.8625047419729,-34.8625015626578,-34.8624496775143,-34.8624166655059,-34.8623583687741,-34.862342934575,-34.8623378440441,-34.8623589041939,-34.862369482945,-34.8623493398231,-34.8623288396377,-34.8623388136891,-34.862372807285,-34.8624592272721,-34.8624868525228,-34.8624867066279,-34.8624870719459,-34.8624817503727,-34.8624770610818,-34.8624638731854,-34.8624463141422,-34.8623923218311,-34.8623770964262,-34.8623682000214,-34.8623772335031,-34.8624278165935,-34.8625029683524,-34.8624982910101,-34.8625255639905,-34.862536409759,-34.8625212997348,-34.8625472878532,-34.8625602395507,-34.8626391422468,-34.8625913850198,-34.8625877897461,-34.8625416399584,-34.8625143197914,-34.8624585134224,-34.8624068437739,-34.862385899012,-34.8623952086824,-34.8623810755975,-34.862351428866,-34.8623372052287,-34.8623072223966,-34.8623201123776,-34.8623096111567,-34.8622979868621,-34.8622824111432,-34.862265922764,-34.8622885705277,-34.8623064468599,-34.8622770413242,-34.8622635832241,-34.8623322351111,-34.8623417793186,-34.8624161869052,-34.8624528843683,-34.862364784341,-34.8622728563187,-34.8622037163306,-34.8620446184339,-34.8619901961154,-34.8619115051183,-34.8618535170591,-34.8617043675535,-34.8616657983713,-34.8615965976333,-34.8614714695806,-34.8613930318246,-34.8613582343608,-34.8613347418598,-34.8613101520786,-34.8612649157826,-34.8612289395471,-34.8611809114988,-34.861168631422,-34.8611807029278,-34.8612304464888,-34.861269701529,-34.8612750343395,-34.8612149755659,-34.8611897098579,-34.8611774011414,-34.8611635677779,-34.8611416041261,-34.8611233182381,-34.8610856219043,-34.8610201221554,-34.8609812216284,-34.8609411328556,-34.860920542661,-34.8609033452094,-34.8608808564769,-34.8608721843789,-34.8608756588471,-34.8608596656536,-34.8607634607503,-34.8606837016408,-34.8606644847548,-34.8606577785501,-34.8606570731476,-34.8606783874214,-34.8607150719373,-34.8607504312905,-34.8607467776526,-34.860736611125,-34.8607030593494,-34.860687260303,-34.860688203431,-34.860736837409,-34.8607400500279,-34.8601009825596,-34.8599609767984,-34.8597900934493,-34.8597342966627,-34.8596263085218,-34.8594509513451,-34.859378113195,-34.8593323701521,-34.8591975521882,-34.8589685967108,-34.8589026654823,-34.858673991544,-34.8584915761325,-34.8584272356828,-34.8581669497451,-34.8581639488711,-34.858092474958,-34.8580127881515,-34.8579820394539,-34.8579619719532,-34.8579562149816,-34.8578798693374,-34.8578656632113,-34.8578580583575,-34.8578207563496,-34.8578080199505,-34.8577971211666,-34.8577652174216,-34.8577643984232,-34.8577863893818,-34.857813280745,-34.8578716080025,-34.8578487196916,-34.8578085907673,-34.8577853421555,-34.8577721153887,-34.857766245271,-34.8577729828306,-34.8577834145447,-34.8577763224192,-34.8577774394879,-34.8578087907478,-34.8578068916423,-34.8577858149425,-34.8577626144573,-34.8577434692625,-34.8577428816607,-34.8577507761972,-34.8577779918455,-34.8577756305604,-34.8577982503341,-34.8578173571128,-34.8578168641917,-34.8579164580691,-34.8579288845629,-34.8578917565528,-34.857844682993,-34.8578092497472,-34.8578108092859,-34.8577928775399,-34.8577832278538,-34.8577607284536,-34.8577446591683,-34.8577229662317,-34.8577116818466,-34.8576899478508,-34.8576745927561,-34.8576560194017,-34.8576365077228,-34.8576322729661,-34.8576419418718,-34.8576616519846,-34.8577226653914,-34.8577518253925,-34.8577491164107,-34.8577343439707,-34.8577125333408,-34.8576866810148,-34.8576423194861,-34.8576029568708,-34.8575777766203,-34.8575206958264,-34.8575000345708,-34.8574947668729,-34.8574564194078,-34.8574451632228,-34.8574150208701,-34.8574623205508,-34.8574822107056,-34.8575089107516,-34.8575852601657,-34.857639039581,-34.8576763846795,-34.8576951883797,-34.8576467406105,-34.8576178365924,-34.8575898517685,-34.8574948201903,-34.8574188332784,-34.8574090593083,-34.8574140857743,-34.857466120859,-34.8574950224591,-34.8574943487248,-34.8574768992081,-34.8574630909097,-34.8574471015251,-34.857426267582,-34.8574002665555,-34.8573564818167,-34.8573114344075,-34.8572791969268,-34.8572563430748,-34.8572346550446,-34.8571783764987,-34.8571471025741,-34.8571487981428,-34.8571730456603,-34.8571742969077,-34.8571801474061,-34.8571782257254,-34.8571907252714,-34.8571842719904,-34.8571946284135,-34.857228060192,-34.8572673637925,-34.8572675132243,-34.8573259266163,-34.8572899555767,-34.8572900978609,-34.8572353882884,-34.8571839734463,-34.8571800088632,-34.8571636428063,-34.8569518919532,-34.8569200665421,-34.8568924283082,-34.8568706049572,-34.8568708112753,-34.8569019348915,-34.8569492903417,-34.8570171205102,-34.8570731279806,-34.8570749278068,-34.857064648831,-34.8570579028765,-34.8570236467041,-34.8570040696213,-34.856968220872,-34.8569222353859,-34.8568794343974,-34.856864449461,-34.8568659211204,-34.856834934787,-34.8568155170742,-34.8567969891083,-34.856765995657,-34.8567626262155,-34.8567477183294,-34.856722156888,-34.8567058638966,-34.8566897131436,-34.8566564236228,-34.8566634469712,-34.8566795906108,-34.8566991748065,-34.8567062052613,-34.8566980814595,-34.8566027538746,-34.8565592493147,-34.8565315470836,-34.8565144509416,-34.8564451475984,-34.8564131818349,-34.8563957736245,-34.8564129329796,-34.8564716500143,-34.85652898791,-34.8565403899658,-34.8565287532369,-34.8564595154095,-34.8564399952192,-34.8564169633547,-34.8563767713771,-34.856354052401,-34.8563622557657,-34.8563685647686,-34.8562514408487,-34.8562382178633,-34.8562280668057,-34.8561799629141,-34.8561569808069,-34.8561214306867,-34.8560880700196,-34.8560434267669,-34.8560064135084,-34.8560112117852,-34.8560308599451,-34.8560918446438,-34.8561958362856,-34.8562739456446,-34.8563268691887,-34.8563544505711,-34.8563629770728,-34.8563260942503,-34.856269858039,-34.8562366963143,-34.8562046151166,-34.8561677925472,-34.8561321926888,-34.856110283924,-34.8560711297476,-34.8559973140916,-34.8559133330273,-34.8558170937073,-34.8557794781972,-34.8557942732608,-34.8557717567391,-34.8556849338462,-34.8556100447418,-34.8555236823344,-34.8554618728524,-34.8554168328184,-34.8553751172183,-34.8553344494632,-34.8553252168441,-34.855306997348,-34.8553129257896,-34.8553141910272,-34.8552602863004,-34.8552429981918,-34.8552302099233,-34.8552438301731,-34.8552804467653,-34.85527588264,-34.8552534770449,-34.8551913123044,-34.8551750763214,-34.8551313370785,-34.8551129471037,-34.8551096059932,-34.855121342154,-34.8551168636447,-34.8551042245286,-34.8550907224006,-34.8550417330112,-34.8549780543473,-34.854897435688,-34.8548615373435,-34.8548120117115,-34.8547392836745,-34.8546863365994,-34.854604440629,-34.8545553943953,-34.8545273406983,-34.8545274259658,-34.8545425530016,-34.8545690893926,-34.8545865551293,-34.8545878630212,-34.854535963156,-34.8544749332876,-34.8544597519349,-34.8544068638808,-34.8543595632801,-34.8543231639018,-34.8542256018256,-34.8540777551071,-34.8539531719095,-34.8538596724861,-34.8538306622995,-34.8537569034323,-34.8536954779886,-34.8535859415039,-34.8535073060807,-34.8534436555654,-34.8533130347893,-34.8532863347711,-34.8532239812853,-34.8532136652613,-34.8531759725392,-34.8531567872569,-34.8531236577729,-34.8530617025663,-34.8530304350669,-34.8529999426046,-34.8529725590331,-34.8529437742716,-34.8529243339853,-34.8529233510544,-34.852946621448,-34.8529382500535,-34.8529746637512,-34.8529698771658,-34.8529797534748,-34.8529763132309,-34.8529098934534,-34.8528498255692,-34.8528455858094,-34.8529044440056,-34.8529350309979,-34.8529658184452,-34.8529527616829,-34.8529499548455,-34.8529369982858,-34.8529150286801,-34.8528724411838,-34.8528438112812,-34.8527753230784,-34.8527525574453,-34.8527298601298,-34.8526878317685,-34.8526746610534,-34.8526180334774,-34.8524671495236,-34.8523933752949,-34.8523493299669,-34.8522251864516,-34.852173652889,-34.8519856614045,-34.8519289161799,-34.8517590400605,-34.8517323028179,-34.8516981345453,-34.8516357282673,-34.8515522783003,-34.8514249599881,-34.851393221376,-34.8513471499786,-34.8513143030976,-34.8513145362967,-34.8512970942831,-34.8512575339675,-34.8512656669001,-34.8512500530707,-34.8512506262722,-34.8512574547224,-34.8512783759478,-34.8513002122881,-34.8513296211908,-34.8513565103322,-34.8514168083377,-34.851442632454,-34.851479488932,-34.8515281067451,-34.8517850212264,-34.8518101152761,-34.8518268033346,-34.8518519039862,-34.8519387899166,-34.8520105746485,-34.8520772110268,-34.8521129604435,-34.8521501502243,-34.8521870475855,-34.8522066940495,-34.8522337648492,-34.8523125247049,-34.8523273919937,-34.8523165764879,-34.8523060741473,-34.8522624085643,-34.852243300469,-34.8522171517522,-34.852106446472,-34.8520739415835,-34.8520553101943,-34.8520379931465,-34.8520063435387,-34.851986956223,-34.8519730628013,-34.8519743502794,-34.8519565074958,-34.8519565360692,-34.8519473515181,-34.8519449185243,-34.8519595791879,-34.8519607768568,-34.8519361878241,-34.8519656473672,-34.8519657403207,-34.8519388753605,-34.8519172917688,-34.8519452352205,-34.8519597558575,-34.851972654235,-34.8519802513117,-34.8519805301152,-34.8519947556001,-34.8520122322233,-34.8520403313963,-34.8520706899097,-34.8520419239234,-34.8519396622058,-34.8519171105569,-34.8518720673006,-34.8518270240224,-34.8518044989759,-34.8517819709808,-34.8517502447566,-34.8517321120131,-34.8517184849869,-34.8516957632336,-34.851695633124,-34.8516909439822,-34.8516862780525,-34.8516816155507,-34.8516814992601,-34.8516856479003,-34.8516992660125,-34.8516941425478,-34.851689523351,-34.85168941336,-34.8516802716797,-34.8516711335025,-34.8516619958529,-34.8516483785334,-34.8516347983391,-34.8516167488798,-34.8515987329197,-34.8515985899467,-34.8515984828066,-34.851598369329,-34.8516027620978,-34.8516025953216,-34.8515797597858,-34.8515616708638,-34.8515435982541,-34.8515255319348,-34.8515074760617,-34.8514849278225,-34.8514579202326,-34.8514264311618,-34.851403935675,-34.8513859568345,-34.8513634450486,-34.8513454326282,-34.8513229075968,-34.8513048847303,-34.8512823196876,-34.8512642307646,-34.8512506168874,-34.8512414989275,-34.8512278282695,-34.8512141546866,-34.8512050036308,-34.8511867206299,-34.8511684375832,-34.8511592697175,-34.8511501052902,-34.851140970411,-34.8511312922277,-34.8510956100698,-34.8510819799264,-34.8510728821549,-34.8510637872164,-34.8510546760864,-34.8510589880913,-34.8510588112755,-34.8510586610542,-34.8510584412866,-34.8510583310539,-34.8510627167111,-34.8510715413453,-34.8510804524284,-34.8510847881458,-34.8510890705211,-34.8510841708974,-34.8510550099928,-34.8510484791396,-34.8510350588425,-34.8510216119344,-34.851008155149,-34.8509902257107,-34.8509722869442,-34.8509543209775,-34.8509318324306,-34.8509137933432,-34.8508957304807,-34.8508776444528,-34.8508640541901,-34.8508594417506,-34.8508503171749,-34.85085009674,-34.850849880258,-34.8508497403961,-34.8508495234033,-34.8508494264635,-34.8508538387324,-34.8508582509816,-34.850862663275,-34.8508715881608,-34.8508805125655,-34.8508894403592,-34.8508893306308,-34.85089373943,-34.8509041980383,-34.850893552502,-34.8508799621445,-34.8508619033041,-34.8508439135761,-34.8508259511403,-34.8508125007705,-34.8507944918966,-34.8507719702953,-34.8507539474398,-34.8507314090518,-34.8507133362434,-34.850699739573,-34.850687113304,-34.8506770345425,-34.8506635707843,-34.8506546459093,-34.8506457314361,-34.8506321278379,-34.8506230130202,-34.8506093861261,-34.8505912971383,-34.8505731877432,-34.8505505094045,-34.8505369190634,-34.8505248903785,-34.8504018985173,-34.8503548077961,-34.8503700545419,-34.8503677715571,-34.8503407344142,-34.8503272742059,-34.8502958046303,-34.850277848572,-34.8502464225779,-34.8502375308734,-34.8502094568481,-34.8501742352922,-34.8501785706988,-34.8502009353002,-34.8502053276466,-34.8502052044128,-34.8501960430228,-34.8501734214068,-34.8501462539706,-34.8501371390511,-34.8501324868116,-34.8501368756006,-34.8501500862075,-34.8501724809765,-34.8501858910871,-34.8502038138987,-34.8502262516924,-34.8502667227339,-34.8502711051011,-34.8502709485735,-34.8502573313877,-34.8502212426891,-34.8501941787764,-34.8501716001623,-34.8501534208148,-34.8501487951829,-34.8501486986051,-34.8501439961731,-34.8501483819944,-34.8501347146292,-34.8501166789977,-34.8501077706646,-34.8500899218417,-34.8500855191292,-34.8500811170159,-34.850081367292,-34.8500815005019,-34.8500725961946,-34.8500499879361,-34.8500453384508,-34.8500541997447,-34.8500540967486,-34.8500584720844,-34.850044811794,-34.850031221348,-34.8500176075659,-34.8500039804073,-34.8499858848158,-34.8499677717941,-34.8499316801064,-34.849913557146,-34.849908908218,-34.8498909558538,-34.8498820777487,-34.8498460024047,-34.8498279731234,-34.8498100271577,-34.8497830633411,-34.8497605552141,-34.8497424892787,-34.8497198710615,-34.8497016916605,-34.8496837252603,-34.8496519891228,-34.8496381919299,-34.8496380183915,-34.8496333397176,-34.8496151468694,-34.8496015132406,-34.8495968904758,-34.8495967372804,-34.849587586012,-34.8495649939787,-34.8495379504054,-34.8495198874364,-34.8494883049165,-34.8494701783912,-34.8494655194485,-34.8494473037439,-34.8494380452906,-34.8494199793708,-34.8494020234965,-34.8493885635121,-34.849370590796,-34.8493525213718,-34.8493253407958,-34.8493071315347,-34.849302405515,-34.8493022685274,-34.8493065912278,-34.8493063340986,-34.8492926671784,-34.8492746577267,-34.8492702423972,-34.8492658935186,-34.8492479773569,-34.8492346304288,-34.849230268146,-34.8492168145437,-34.8491944264568,-34.8491764205152,-34.8491538255554,-34.8491312002926,-34.8491041497113,-34.8490815914109,-34.8490681413048,-34.8490501586764,-34.8490141002413,-34.8489826307931,-34.8489645543568,-34.8489464388211,-34.8489284194859,-34.8489148324646,-34.848901212115,-34.848883075646,-34.8488422550212,-34.8488421378276,-34.8488420445229,-34.848837435633,-34.8488103786745,-34.8487967811004,-34.848787669927,-34.8487651420129,-34.8487471255533,-34.8487157062967,-34.8486978467395,-34.8486753823574,-34.8486752155785,-34.8486572330091,-34.8486392666911,-34.8486259034753,-34.8486170418659,-34.8485947173656,-34.8485722657705,-34.8485453119175,-34.848518151226,-34.8484910738317,-34.8484730242196,-34.8484639294522,-34.8484637731992,-34.8484636163717,-34.8484635126111,-34.8484678818891,-34.8484677681793,-34.8484586436809,-34.8484405543565,-34.8484406709969,-34.8484407812011,-34.8484408977851,-34.8484320233761,-34.848414030862,-34.8483915256393,-34.848378165324,-34.8483556373495,-34.8483420071162,-34.8483419033584,-34.8483463023881,-34.8483371446172,-34.8483325054467,-34.8483323684072,-34.8483051977191,-34.8482870552967,-34.8482689193509,-34.8482373560364,-34.8482374931175,-34.8482331209482,-34.8482151745334,-34.8482062435535,-34.8482108623977,-34.8482244529638,-34.8482245829858,-34.8482157115197,-34.8481931934157,-34.8481751706355,-34.8481525557773,-34.8481478303119,-34.848143167685,-34.8481430411557,-34.848142757211,-34.8481471130392,-34.8481515219119,-34.8481648652251,-34.8481647654959,-34.8481511853608,-34.8481286737109,-34.8481243044637,-34.8481199154839,-34.8481200426293,-34.8481111845984,-34.8481022863299,-34.8480978907884,-34.8480980377789,-34.8480891464427,-34.8480665578565,-34.848066391085,-34.8480572665234,-34.8480391673074,-34.8480344213154,-34.8480297989883,-34.8480296590201,-34.8480024917526,-34.847979927042,-34.8479574550529,-34.8479665732752,-34.8479802070274,-34.8479712959062,-34.8479487504527,-34.8479125619395,-34.8478944895003,-34.8478583942646,-34.8478178230393,-34.8477593631834,-34.8477277199615,-34.8476916247327,-34.8476646406589,-34.8476511807157,-34.8476195741806,-34.8475926636113,-34.8475700989611,-34.8475520358207,-34.84753394009,-34.8475114320045,-34.8475025436453,-34.8475162275652,-34.847538882673,-34.8475480305151,-34.8475571918105,-34.8475347740925,-34.8475123289055,-34.8474851949581,-34.8474671091882,-34.8474445608127,-34.8474266149115,-34.8474221960724,-34.8474042467243,-34.8473682214233,-34.8473357489467,-34.8473094507187,-34.8473002428435,-34.8472910681019,-34.8472774442522,-34.8472544392212,-34.8472549815737,-34.8472676191455,-34.8472857131823,-34.8472857866784,-34.8472674458645,-34.8472464459351,-34.847195402391,-34.8471775026801,-34.8471731055029,-34.8471822422529,-34.8471824487765,-34.8471691317188,-34.8471467303508,-34.8471423150342,-34.8471334633623,-34.8471156475667,-34.8470977349128,-34.8470797890626,-34.8470711627511,-34.8470574342498,-34.8470560765791,-34.8470260884368,-34.8470080591569,-34.8469765757591,-34.8469495887149,-34.8469135704242,-34.8468909118615,-34.8468682801253,-34.8468277159071,-34.8468052544457,-34.8467918206574,-34.8467559790016,-34.8467199304344,-34.8466973622351,-34.8466792858057,-34.846634215868,-34.8466026467591,-34.8465846239071,-34.8465576397925,-34.8465396572037,-34.8465081544926,-34.8464945441379,-34.8464222633523,-34.8463951730634,-34.8463635497853,-34.8462957950295,-34.8462280134846,-34.8461873186702,-34.8461376164911,-34.8461149952574,-34.8460742205211,-34.8460334731446,-34.8459836373601,-34.8459338080482,-34.8458840392997,-34.8458342734571,-34.8457890500609,-34.8457483393751,-34.8456984702365,-34.8456575657629,-34.8455939797167,-34.8455575773291,-34.8455167328296,-34.84548049792,-34.8454533503998,-34.8454080404154,-34.8453625370349,-34.8453079386727,-34.8452623953973,-34.84522592305,-34.8452031548167,-34.8451803193918,-34.8451483666606,-34.845130046769,-34.8451208090379,-34.8451026060255,-34.8450708765461,-34.8450120027915,-34.8449577114546,-34.8449349997965,-34.8449031397559,-34.8448940153695,-34.8448802817519,-34.8448666978916,-34.8448485719882,-34.844821284354,-34.8448211210511,-34.8448164853708,-34.8447847522,-34.8447572213877,-34.8447526155619,-34.8447434811671,-34.8447298170512,-34.8447161371118,-34.8447025233636,-34.8446843570369,-34.8446662012038,-34.8446525774569,-34.8446026549992,-34.8445798334879,-34.8445661094576,-34.8445387288782,-34.8445204528309,-34.8445112913435,-34.8445021163955,-34.8444929050938,-34.8444925984111,-34.8445050124644,-34.8444603590352,-34.8445097865608,-34.8445562509852,-34.844556134143,-34.8445470128778,-34.8445288437878,-34.8445241812834,-34.8445150230137,-34.8445058418066,-34.8444921149329,-34.8444649638059,-34.8444513867647,-34.8443697151693,-34.8443560776604,-34.8443017464712,-34.844274525895,-34.844233711205,-34.8441929469987,-34.8441567014673,-34.8441431114591,-34.8441113015405,-34.844079498803,-34.8440521710664,-34.8440249468233,-34.8439886682766,-34.8439568717944,-34.8439250924096,-34.8439023337954,-34.8438886665952,-34.8438750829643,-34.8438613663463,-34.8438159261432,-34.8437840830637,-34.8437431118946,-34.8437294811788,-34.8437158144661,-34.8437111450648,-34.8436930026926,-34.8436928560299,-34.8436972215743,-34.843688120023,-34.8436654683845,-34.8436382845742,-34.8436380106201,-34.8436382497855,-34.8436287858958,-34.8436286662875,-34.8436284924326,-34.8436371301945,-34.8436368101785,-34.8436004149725,-34.8435596973758,-34.8435459503066,-34.8435227849134,-34.8435450327238,-34.8435269638755,-34.8435157150742,-34.8434909082628,-34.8434729656508,-34.8434637944106,-34.8434679562295,-34.8434901713581,-34.8435259166633,-34.8435393098531,-34.8435569525431,-34.843574821844,-34.8436103798938,-34.8436237299093,-34.8436248274206,-34.8436126510718,-34.8436010082868,-34.8435920736263,-34.8435786268863,-34.8435428020487,-34.8435204069324,-34.8434799695758,-34.8434618499774,-34.8434481799251,-34.8434523710006,-34.8434703046149,-34.8434927095394,-34.8434741931871,-34.8434469457308,-34.8434321365761,-34.8434285898248,-34.8434238235353,-34.8434306277797,-34.8434324083394,-34.8434186212506,-34.8434139086172,-34.8434181206125,-34.8434044906411,-34.8433998483331,-34.8434042404814,-34.8434131148408,-34.8434265284061,-34.8434490332363,-34.8434670595987,-34.843476056291,-34.8434858483234,-34.8435276449259,-34.8435244810571,-34.8435404580053,-34.8435481281529,-34.8435566698797,-34.8435400838983,-34.8435334280937,-34.8435751520637,-34.8435387498695,-34.8435386097322,-34.8435382596104,-34.843538049105,-34.8435241823595,-34.8435374923966,-34.8435371421193,-34.8434963009229,-34.8434959540976,-34.8435091243247,-34.8435087075125,-34.843508567208,-34.8435441325225,-34.843557372488,-34.8435975832243,-34.8436197681259,-34.8437797561606,-34.8438862604829,-34.8440137706928,-34.8441248023691,-34.8440676367982,-34.8441086087505,-34.8440955679309,-34.8440641924635,-34.8440050531786,-34.8438556433187,-34.8438529159913,-34.8438522196782,-34.8437697857831,-34.8436670617719,-34.8434993262795,-34.8434497540583,-34.8433774596896,-34.8433592836944,-34.8433501889969,-34.8433410813091,-34.843291322029,-34.8431103141006,-34.8428128218804,-34.8427220482979,-34.8427581707162,-34.8427715806983,-34.842766915106,-34.8427487958643,-34.8426992368277,-34.8426857762382,-34.8426091033017,-34.8426089469514,-34.8426358906282,-34.8426628510851,-34.8426852462413,-34.8426985961943,-34.8426759082255,-34.8426487841849,-34.8426171777433,-34.8425810256204,-34.8425538616844,-34.8425492162175,-34.8425580372015,-34.8425713506969,-34.84258005848,-34.8425573734454,-34.8425301897921,-34.8425120402538,-34.8424939942511,-34.8424760215501,-34.842462724753,-34.8424628450065,-34.8424490224185,-34.8424403164404,-34.8424271538656,-34.842413059116,-34.8423859385781,-34.8423453474281,-34.8423092691531,-34.8422731235868,-34.8422388136253,-34.8422096473079,-34.8421688197274,-34.8421414193031,-34.8421186072509,-34.8420868344981,-34.8420787319534,-34.8420680543592,-34.8420855902525,-34.8421343931181,-34.8421381405302,-34.8421423795769,-34.8421284192859,-34.8421237597096,-34.8421055239524,-34.8420781765369,-34.8420735507956,-34.8420778996277,-34.8420641861114,-34.8420459228855,-34.8420277968413,-34.8420095478464,-34.8420003226592,-34.8419910880482,-34.8419863159534,-34.8419815534805,-34.8419854619642,-34.8419986152366,-34.8420029775513,-34.8420209101318,-34.8420388229733,-34.8420386491048,-34.8420255112072,-34.8419934726845,-34.841979662189,-34.841952521596,-34.8419566506984,-34.8419653417257,-34.8419697038867,-34.8419740859114,-34.8420055688496,-34.8420235084395,-34.8420185692829,-34.8420228777253,-34.8420182021147,-34.8420134564884,-34.8420087438895,-34.8419859354036,-34.8420121329291,-34.8420078535709,-34.8419807195365,-34.8419626901567,-34.8419447111131,-34.8419038699318,-34.8418948377413,-34.841890819979,-34.8418957431711,-34.8418890826374,-34.8418543441367,-34.8418516418837,-34.8418406124344,-34.841853707288,-34.8418805545646,-34.8419209220015,-34.8419361547939,-34.8418264548761,-34.8417992538953,-34.8417931959825,-34.8418110756094,-34.8418334337955,-34.8418603409554,-34.8418917968396,-34.8419187476513,-34.8419411527111,-34.8419454881814,-34.8419588980463,-34.8419722982116,-34.8419676258302,-34.8419944663469,-34.842048482318,-34.8420716868818,-34.8420747934939,-34.8420938313302,-34.8420612842594,-34.8420792171753,-34.8421420627843,-34.8421600088819,-34.8421688534262,-34.8421687263326,-34.8421497998512,-34.8421559640268,-34.8421758845097,-34.8421861923843,-34.8422043082321,-34.8422323749031,-34.8422402732095,-34.8422400866252,-34.8422315203489,-34.8422069743595,-34.8421949998385,-34.8421999348583,-34.8421947334461,-34.8421851441049,-34.8421492765592,-34.842140942331,-34.8421228326793,-34.8421047834735,-34.842068683842,-34.8420639556448,-34.8420681639476,-34.8421084778849,-34.8421084820129,-34.8421083752737,-34.8421037429571,-34.8420990907398,-34.8420944481886,-34.8420852969009,-34.8420671943667,-34.8420446490822,-34.8420221339204,-34.8420051389754,-34.8419949004234,-34.8419946801372,-34.8420171214224,-34.8420349839303,-34.8420573657246,-34.8420707824642,-34.842102135503,-34.8421020255943,-34.8420973830636,-34.8420924971414,-34.8421105366724,-34.8421239100807,-34.842132761083,-34.8421416890293,-34.8421822100778,-34.8421775408837,-34.8421504737383,-34.8421189039792,-34.8421009413431,-34.8420920201054,-34.8420830856369,-34.8420696886559,-34.8420607674042,-34.8420518527771,-34.8420409778817,-34.8420294144288,-34.8420203201957,-34.8420201699199,-34.8420335735286,-34.8420379692872,-34.842037872419,-34.8420331966909,-34.8420263691243,-34.8420352704715,-34.8420463766259,-34.842041764575,-34.8420461765915,-34.842055061152,-34.8420504418436,-34.8420413173733,-34.8420322062559,-34.8420320890421,-34.8420828374771,-34.8420942077741,-34.8421029792072,-34.8420938679742,-34.8420847332576,-34.8420874558462,-34.8421026556034,-34.8421160427394,-34.8421294797575,-34.8421474187951,-34.8421608624781,-34.8422372383356,-34.8422955420922,-34.84229995388,-34.8423043531147,-34.8423311868383,-34.8424094575952,-34.8423591385524,-34.8422181587921,-34.8421777478545,-34.8421598221307,-34.8421509004255,-34.8421060954733,-34.8420489361457,-34.8420424047547,-34.8420558350423,-34.8420671424648,-34.8421438529595,-34.8421727958476,-34.8421361228068,-34.8420609994742,-34.8419750297134,-34.8419196250552,-34.8418957989546,-34.8418585439842,-34.8419055976905,-34.8419210346066,-34.8419304903188,-34.8419348989488,-34.8419302769384,-34.8419256778352,-34.8419303683737,-34.8418940181399,-34.8418535271893,-34.8418397920473,-34.8418663782162,-34.8418620152176,-34.8418573124332,-34.841866620146,-34.8418570222976,-34.8418522852922,-34.8418434255873,-34.8418299785229,-34.8418165151023,-34.8417987694331,-34.8417824165335,-34.8417717381262,-34.8417492603264,-34.8417354496945,-34.8417443741425,-34.8417532890732,-34.8417757106286,-34.8417936863614,-34.8418284911274,-34.8418386160404,-34.8418204755838,-34.8418291147869,-34.8418234534719,-34.8418050816304,-34.8418021005252,-34.8417979211684,-34.8417708081483,-34.8417446852093,-34.8417169565516,-34.8415949037563,-34.8415903015529,-34.8415630539087,-34.841562940457,-34.8415673429828,-34.8415671764525,-34.841549007097,-34.8415219060079,-34.8415028129942,-34.8415161634579,-34.8415340322016,-34.8415429372763,-34.8415518285205,-34.841560699738,-34.8415740929723,-34.8415874965008,-34.8415963411912,-34.8415871999105,-34.8415829603074,-34.8414967299752,-34.8414788406591,-34.8414294419175,-34.84140683325,-34.8414073192008,-34.8415023555405,-34.8414770269827,-34.841416708492,-34.8413528038708,-34.8412959218895,-34.8413225532753,-34.8412562593372,-34.8413399030777,-34.8413150476357,-34.8413252067164,-34.8413905651857,-34.8414160202849,-34.8413399591423,-34.8412314981223,-34.8411491063456,-34.8412036541377,-34.8412044938366,-34.8412622720411,-34.8412692367671,-34.8413720750585,-34.8413471251389,-34.8412553582309,-34.8411431454403,-34.8410354922092,-34.840955560919,-34.8409181649416,-34.8408768842259,-34.8408835876875,-34.8409414769706,-34.8409324187846,-34.8408131140124,-34.8407632861125,-34.8407028744121,-34.8406461591517,-34.8406370823419,-34.8406408717417,-34.840670281744,-34.8406710076543,-34.8406481024786,-34.840670120519,-34.8406338115496,-34.8405480673684,-34.8404938091048,-34.8404709107199,-34.8404073247214,-34.8402990954063,-34.8402315572373,-34.8401819350931,-34.8401190260123,-34.8400604222305,-34.8399469875933,-34.8398925525768,-34.8398179422857,-34.8396949483219,-34.839720977372,-34.8397848792979,-34.8399162847468,-34.8400629138457,-34.8400443907968,-34.8400752466419,-34.8400520145538,-34.8399386595654,-34.8399067667197,-34.8399062628197,-34.8397950672301,-34.8397512519399,-34.8397455694889,-34.8397909221847,-34.8399001009877,-34.8399043304073,-34.840086100062,-34.8400904212301,-34.8402220627377,-34.8402077450137,-34.8401569449112,-34.8400360491763,-34.8399730545725,-34.8400218745822,-34.8401114664775,-34.8400768219874,-34.8399658379578,-34.8398572330108,-34.8398153305537,-34.839721490053,-34.8396397954608,-34.839615833203,-34.8394516620231,-34.8393886560014,-34.8393208575319,-34.8392527594435,-34.8392272801335,-34.8391609246288,-34.8390278276273,-34.8390121185025,-34.8389261709532,-34.8388178248635,-34.8387592149123,-34.8386909993183,-34.8386947845783,-34.8385795783649,-34.8384968359659,-34.8384588492952,-34.838184286947,-34.8381852592592,-34.8381542461967,-34.8380660522885,-34.8379596165166,-34.8378900670099,-34.8377559370074,-34.83774149107,-34.837771672575,-34.8378390760065,-34.8378438204489,-34.8378832299965,-34.837824169526,-34.8377578114086,-34.8377550411259,-34.8376138806419,-34.83750937324,-34.8374639768864,-34.8373495568807,-34.8373468927526,-34.8371565483972,-34.837093525906,-34.8370392409181,-34.8370298230024,-34.8369888748329,-34.8369392125437,-34.8369078400874,-34.8367853600481,-34.8366947469947,-34.8365639427695,-34.8364560235919,-34.8363157109898,-34.836071968642,-34.8358466695292,-34.8357155347933,-34.8356786828132,-34.8356787446814,-34.8354249573344,-34.8353284961876,-34.8352790958953,-34.835293743298,-34.8351584308055,-34.8348969669006,-34.8348648161219,-34.8349346365183,-34.8348717294106,-34.8347902244777,-34.834560432851,-34.8344614849892,-34.8342105488858,-34.8340144292331,-34.8337318834713,-34.8337314296642,-34.8335309478046,-34.8333607586264,-34.8332974143394,-34.8329233785027,-34.8327793539529,-34.832612418255,-34.8325090478791,-34.8325088585872,-34.8323049190364,-34.8321725809288,-34.8320483107193,-34.8318957283003,-34.8318114830245,-34.8316874566957,-34.8313871308074,-34.8312124857775,-34.8311557734799,-34.8308998700933,-34.830853634506,-34.8308250658444,-34.8308269341515,-34.8308409903,-34.83087259069,-34.8308605707012,-34.830864936675,-34.8307514947904,-34.8305889343726,-34.8303683872632,-34.8301747127311,-34.8300087863523,-34.8297740544792,-34.8297024141042,-34.8296801055419,-34.8295358411102,-34.8293881259178,-34.8293574750378,-34.8294624236522,-34.8293217008585,-34.8291424987537,-34.8290705682645,-34.8290394488691,-34.8289813617833,-34.8288490368799,-34.8287504664459,-34.8285808947778,-34.8284543461846,-34.828369959829,-34.8282439250356,-34.8281635037324,-34.8280698718974,-34.8279263381171,-34.827841650992,-34.8275799652939,-34.8275184369586,-34.8274695812797,-34.8273998115745,-34.8273070418005,-34.827258066508,-34.8272992542817,-34.8273361333256,-34.8273240004352,-34.8273308124915,-34.8272738245942,-34.8271214197592,-34.8267531731455,-34.8261907969819,-34.8258739377491,-34.8255654859332,-34.8254748935347,-34.8253424567986,-34.8252325323175,-34.8250849398617,-34.8249435081699,-34.8247930078944,-34.8246218671856,-34.8244073902716,-34.8241923248313,-34.8240469698266,-34.8238145239599,-34.823579602448,-34.823527808519,-34.823376617329,-34.8232562135816,-34.8230996185525,-34.8230410350662,-34.8228931653627,-34.8228576603314,-34.8226046321964,-34.8224825539427,-34.8224176181161,-34.8223911906026,-34.8223520908342,-34.8222529597669,-34.8221963063161,-34.8222078932377,-34.8222621301876,-34.8224996158721,-34.8226346407411,-34.8226525812952,-34.8225365749819,-34.8223565487458,-34.8223348774828,-34.8223780087096,-34.8220773643165,-34.8216932233208,-34.821475886797,-34.8212660921638,-34.8211426586534,-34.8210020746482,-34.8209410505589,-34.8207464249613,-34.8206724969963,-34.8203950957865,-34.8203056067961,-34.8200653003414,-34.8198757761492,-34.8199575930447,-34.8200681780931,-34.8199622121167,-34.8197668452007,-34.8196324168869,-34.8195499026301,-34.8194369627032,-34.819255542702,-34.8194097975287,-34.8193336438036,-34.8191478438618,-34.8190690500242,-34.8190291942008,-34.8189957956288,-34.8189917870225,-34.8189019874803,-34.8187800576775,-34.8187200285071,-34.8186130034678,-34.8184468657172,-34.8182511466312,-34.8181781673091,-34.8180626370536,-34.8179833198928,-34.8179009636978,-34.8178195040376,-34.8178145411074,-34.8177709681087,-34.8176641921386,-34.8175495592901,-34.817468348729,-34.8175086296171,-34.8174598418441,-34.8175173664058,-34.817312606771,-34.8172692314331,-34.8173401121067,-34.8173135211835,-34.817172549251,-34.8172181884568,-34.817257633005,-34.8170940319099,-34.8169613639265,-34.8170156808751,-34.8170232825791,-34.8169840437248,-34.8168170790578,-34.816900875051,-34.8168472077597,-34.8168066997893,-34.8167481831101,-34.8166800951862,-34.8165733684393,-34.8165214845472,-34.8164017114003,-34.8162977241791,-34.8162163156162,-34.816090236886,-34.8160860615733,-34.8159428781453,-34.8158506333652,-34.8157471966673,-34.8157141034637,-34.8156834664965,-34.815604484009,-34.8150015744632,-34.8149441879551,-34.8148947656759,-34.8154623179466,-34.8154928089783,-34.8154704708596,-34.8154661486489,-34.8154603715132,-34.8153938463625,-34.8152539267024,-34.8151391371933,-34.8150667494485,-34.8150097862552,-34.8149049436114,-34.8148815736675,-34.8148517170168,-34.8148009674726,-34.8147204707677,-34.814711626095,-34.8146329207417,-34.8145878026067,-34.814567791989,-34.8145498161,-34.8144959016665,-34.8144529263532,-34.8144594934936,-34.8144435756454,-34.8144834352925,-34.8144801051111,-34.8144756069419,-34.8145155337887,-34.8147524203928,-34.8148250032311,-34.814852384397,-34.8149753872536,-34.8150479700665,-34.8150687683212,-34.8149359245979,-34.8147682242393,-34.8147180191129,-34.8146790689488,-34.8145361768396,-34.8145006906256,-34.8144826614404,-34.8144690876149,-34.8144465293781,-34.8144285200443,-34.8143969438514,-34.8143652407639,-34.8143561292636,-34.814346991475,-34.8143378268063,-34.8143241863874,-34.8143105324146,-34.8142923367362,-34.8142740805472,-34.8142423305088,-34.8142151166237,-34.8141878827348,-34.81416519096,-34.8141470283462,-34.8141288922358,-34.8141063208975,-34.8140883044905,-34.814065806365,-34.8140433747031,-34.8140345304242,-34.8140346635511,-34.8140212832117,-34.8140033273569,-34.8139808223879,-34.8139628268236,-34.8139493662072,-34.8139314639103,-34.8139181167774,-34.81390028088,-34.8138869205445,-34.813873600817,-34.8138376419465,-34.8138059858847,-34.8137878099341,-34.8137741427733,-34.8137560133326,-34.813728799432,-34.8136927007687,-34.8136656202873,-34.8136205235463,-34.8135844378879,-34.8135483526296,-34.8135122540853,-34.8134716201865,-34.8134490215799,-34.8134219011343,-34.8133948537348,-34.8133813998734,-34.8133590016063,-34.8133321281903,-34.8133052072396,-34.8132918070717,-34.8132740911359,-34.8132517531213,-34.8132293884491,-34.813206930286,-34.8131483663319,-34.8131033166059,-34.8130583271006,-34.8130043922649,-34.8129459489944,-34.8128920279707,-34.8128381600366,-34.8127977659575,-34.8127573584734,-34.8127034374104,-34.8126584738741,-34.8126045258365,-34.8125460294121,-34.8124919011333,-34.8124512072161,-34.8124240261206,-34.8123878810111,-34.8123472802254,-34.8123155773268,-34.812283854053,-34.8122566201137,-34.8122338680181,-34.8122021517149,-34.8121659668208,-34.8121299344661,-34.8120938893523,-34.8120623464415,-34.8120263145811,-34.8120083718516,-34.8119995809265,-34.8119861939866,-34.8119637690086,-34.8119278569785,-34.8118873960116,-34.8118288994938,-34.8117208102114,-34.8116757273309,-34.8116080586746,-34.8115809050876,-34.8115402772307,-34.8115040720802,-34.8114725224049,-34.811445548567,-34.8114185678214,-34.8114007116904,-34.8114008984931,-34.8113877251659,-34.8113744386155,-34.8113611581422,-34.8113388197897,-34.8113119258781,-34.8112805364011,-34.8112491469556,-34.811235760437,-34.8112314177552,-34.8112180109523,-34.8111910705146,-34.8111686190671,-34.8111643233399,-34.8111735078676,-34.81116464336,-34.811151250114,-34.8111291383891,-34.811102398327,-34.8110800664047,-34.810994729257,-34.8109632927336,-34.8109183696398,-34.8108779289821,-34.8108284233311,-34.8107518972612,-34.8106889315394,-34.8106304749399,-34.8105139277931,-34.810455711047,-34.8103931058763,-34.8103170464452,-34.810272216745,-34.8102633652386,-34.8102500053471,-34.8102411674749,-34.8102458763148,-34.8102639789831,-34.8103002443575,-34.8103093822893,-34.8102962691652,-34.8102737773232,-34.8102333568199,-34.810165948229,-34.8100804309529,-34.8100218740363,-34.8099453082024,-34.8098597572934,-34.8096749752869,-34.8095621572296,-34.8094268004162,-34.8093049975761,-34.8092417519502,-34.8091694343081,-34.8090881526948,-34.8089978858418,-34.8089663295907,-34.8088986881306,-34.8088174599244,-34.8087813475615,-34.8087317085955,-34.8086820634827,-34.8086459312221,-34.8085962387512,-34.8085556045174,-34.8085284908803,-34.8084832742449,-34.8084741425536,-34.8084739824187,-34.8084692802094,-34.8084510105549,-34.8084282854472,-34.8083965226684,-34.8083737705935,-34.8083419409912,-34.8083056759172,-34.8082601453287,-34.8082150688335,-34.8081699259429,-34.8081290377526,-34.8081064598397,-34.8080747367135,-34.8080522050256,-34.8080342226189,-34.8080207756731,-34.8080027926511,-34.8079848300182,-34.8079849505982,-34.8079805815621,-34.8079716632478,-34.8079582363764,-34.8079402874247,-34.8079268736281,-34.8079044687808,-34.807904582263,-34.8079091913831,-34.8079138667565,-34.8079139934687,-34.8079096512697,-34.8079098980396,-34.8079099983407,-34.8079192496877,-34.807919442956,-34.8079196364467,-34.8079243060154,-34.8079154478813,-34.8078975455068,-34.8078440979526,-34.807885786141,-34.8078949975328,-34.8079179027124,-34.8079361651114,-34.8079454768659,-34.8079547613838,-34.8079686221021,-34.8079735710645,-34.8079694626367,-34.8078710917239,-34.8078622402153,-34.8077635695068,-34.8077321133637,-34.807628659843,-34.8076105573315,-34.8075969767108,-34.8075562557821,-34.8075335839427,-34.8075154346026,-34.8074881672613,-34.8074654893664,-34.8074384084889,-34.8074114076893,-34.8073980608064,-34.8073802517807,-34.8073668180716,-34.8073534178334,-34.807344506944,-34.8073264972424,-34.8073039927439,-34.8072628780447,-34.8072221635201,-34.807141121897,-34.8070119020267,-34.8070319387662,-34.8070277765716,-34.8068567749524,-34.8065616297748,-34.8065710947579,-34.8063739062725,-34.8064421282429,-34.8063165899165,-34.8063262813975,-34.8063128281872,-34.8061465088729,-34.8060918408377,-34.8059119280716,-34.8058462873887,-34.8058110091662,-34.8058488486335,-34.8058684786748,-34.8057530192847,-34.8055928632303,-34.805455178781,-34.8056137552487,-34.8054955200669,-34.8054779442719,-34.8054650438199,-34.805394007202,-34.8052782080053,-34.8051705857337,-34.8050269917259,-34.8048527882673,-34.8047988472166,-34.8047856804326,-34.8047723270565,-34.8047680046388,-34.8047636822044,-34.8047504021255,-34.8047416645218,-34.8047238018781,-34.8047284577869,-34.8047376690805,-34.8047423515787,-34.8047516159727,-34.8047562984461,-34.8047519763727,-34.8047566452529,-34.8047523434864,-34.8047569921278,-34.8047617477772,-34.8047664371853,-34.8047712064388,-34.8047759755712,-34.8047806844895,-34.8047899291774,-34.80479467826,-34.8047993741606,-34.8047949917527,-34.8047861875212,-34.8047774292368,-34.8047641227971,-34.804764262734,-34.8047644292169,-34.804760127021,-34.8047468469796,-34.8047334803979,-34.8047200663138,-34.8047021172027,-34.8046887369042,-34.804661910172,-34.8046305670496,-34.8046171803001,-34.8046038199254,-34.8045770126655,-34.8045681615301,-34.8045593235099,-34.8045459636661,-34.8045326362846,-34.8045192894383,-34.8045015136384,-34.8044836846014,-34.8044300437315,-34.8043008567523,-34.8042559602727,-34.8042110837909,-34.8041796943071,-34.8041528207278,-34.8040944039693,-34.8040449316565,-34.8039640433168,-34.8039100887896,-34.8038561011958,-34.8037975708265,-34.803757036328,-34.803734451848,-34.8036892349584,-34.8036486604583,-34.8035992350544,-34.8035678921971,-34.8035409118552,-34.8034959216429,-34.803459829996,-34.8034147802253,-34.8033788750258,-34.8033520342563,-34.8033116868804,-34.803289315233,-34.8032489079299,-34.8032038781363,-34.8031544121663,-34.8031229626442,-34.803082562243,-34.8030557213835,-34.8030334968208,-34.8030067899263,-34.8029800560145,-34.8029576843838,-34.8029444175158,-34.802908612133,-34.8028728471675,-34.8028596338399,-34.8028283445635,-34.8028060996623,-34.8027838213592,-34.8027706014123,-34.8027572745265,-34.8027348028199,-34.8026852702508,-34.8026581900112,-34.8026310293073,-34.8026173752183,-34.8026216976754,-34.8026304489669,-34.8026437758042,-34.802652580454,-34.802611985938,-34.8025804563716,-34.8025580851484,-34.8025312441267,-34.8024953192781,-34.8024684187965,-34.802441478326,-34.8024235558062,-34.8024238689532,-34.8024285649947,-34.8024153648342,-34.8023929665632,-34.8023796660298,-34.8023753904216,-34.8023802395829,-34.8023534328563,-34.8023446480365,-34.8023268321657,-34.8023044942527,-34.8022866450145,-34.8022599508615,-34.8022330507568,-34.8022150612595,-34.8021790693055,-34.8021520289767,-34.8021204460589,-34.8021023697822,-34.8020707404011,-34.802039197276,-34.8020211814361,-34.8019940941942,-34.801962630862,-34.8019492111156,-34.8019221702729,-34.8018952232497,-34.801868262761,-34.8018412687596,-34.8018278817504,-34.8017919361717,-34.8017740674341,-34.8017877206667,-34.8017968254213,-34.8018151081413,-34.8018199509836,-34.8018020547653,-34.8017932037783,-34.8017889683929,-34.8017846460393,-34.8017714259474,-34.8017626078069,-34.8017447519126,-34.8017314320977,-34.8016955532688,-34.8016776843554,-34.801659941944,-34.8016466349792,-34.8016467416265,-34.8016559598227,-34.8016695730732,-34.8016877692762,-34.8017149635771,-34.801746800022,-34.801760666739,-34.8017339132708,-34.8016979546068,-34.801662049656,-34.8016352224073,-34.8015902791607,-34.8015544942138,-34.8015097644136,-34.8014785149823,-34.8014472186865,-34.801420604808,-34.8014164428626,-34.8014122136852,-34.8014035628367,-34.8013814648656,-34.8013592132271,-34.8013234612303,-34.8012921518234,-34.8012473958756,-34.8012206616949,-34.801193894717,-34.8011627855207,-34.8011316026297,-34.8011003864661,-34.8010645810803,-34.8010242138496,-34.8009658703404,-34.8009121626051,-34.8008493038881,-34.8008089558978,-34.800777660142,-34.8007327502721,-34.8006742665825,-34.8006696173913,-34.8006784824513,-34.8006962715392,-34.8007004668274,-34.8007316365453,-34.8007359852326,-34.8007402074175,-34.8007444498215,-34.8007353379566,-34.8007217442563,-34.8006858191489,-34.8006634813866,-34.8006412228843,-34.8006191318477,-34.8005787907885,-34.8005564056524,-34.8005295654959,-34.8005027381486,-34.8004713355346,-34.8004398793397,-34.8004038940998,-34.8003768730646,-34.8003498659873,-34.8003138072566,-34.8002912289498,-34.8002775087534,-34.8002682440485,-34.8002680439723,-34.800267763911,-34.8002584186861,-34.800240222966,-34.8001593477726,-34.8001323337965,-34.8000821881171,-34.8000333095707,-34.8000160605627,-34.7999947092876,-34.7999736584502,-34.7999785815135,-34.7999490591015,-34.7998858066292,-34.7998024504672,-34.7995576775715,-34.799459560077,-34.7994023506341,-34.7993497567884,-34.7992881383797,-34.7991642278669,-34.7990449729388,-34.7989945138056,-34.7989732029059,-34.7989681670779,-34.7989724692209,-34.7989257248839,-34.7989239972412,-34.7989057349138,-34.7989020525246,-34.7988841568031,-34.7988412748838,-34.7987944106738,-34.79873061777,-34.7986787177826,-34.7986319267177,-34.798532461848,-34.7984866585595,-34.798477400206,-34.7984277681778,-34.7984209381534,-34.798437159534,-34.7984401344663,-34.7984396473219,-34.7984149679406,-34.7983945910302,-34.7983679905569,-34.7983685974174,-34.7983352406778,-34.7982922718609,-34.7982734286108,-34.7982713408782,-34.7982320672238,-34.7982075144931,-34.7981643589003,-34.7981474103706,-34.7980858986678,-34.7980479254594,-34.7980187771172,-34.7979961320186,-34.7980041696937,-34.7979870273197,-34.7980154624292,-34.7979874278062,-34.7979709058018,-34.7979304514356,-34.7978987551141,-34.79784016526,-34.7978014582945,-34.7977837894148,-34.7977115055829,-34.7977041547044,-34.7977361115109,-34.797731608868,-34.7977999843171,-34.7977728167653,-34.7978129776627,-34.797802912716,-34.7977870445609,-34.7977098910337,-34.7977430348146,-34.7977225313272,-34.7977345970483,-34.7976774013516,-34.7976918887774,-34.7977469634458,-34.7979694918712,-34.7980155956043,-34.7979716530609,-34.797958532974,-34.7980718112298,-34.7980701501574,-34.798015955679,-34.7980218721337,-34.7979744879251,-34.7978844011729,-34.7978020790059,-34.7974898646284,-34.7974704476431,-34.7974646246009,-34.7975236483942,-34.7975573058636,-34.7976280821984,-34.7976690037239,-34.7976573710631,-34.797655389688,-34.7976746530028,-34.7977060560667,-34.7977421076396,-34.7977987028454,-34.7979315524919,-34.7979176382551,-34.7979467602393,-34.7979639357163,-34.798002648834,-34.7980781943769,-34.7981091638481,-34.7981124856586,-34.7981198158634,-34.7981572754798,-34.7982026053144,-34.7982413989044,-34.79830950722,-34.798361027125,-34.798354310462,-34.7983379271755,-34.7984635297468,-34.7985001233186,-34.7984921579633,-34.7987068689334,-34.7987325398597,-34.7988261472039,-34.7988126800389,-34.7987882675511,-34.7987884275326,-34.7988483918263,-34.7988834149456,-34.7989373575156,-34.7989114707391,-34.7988957693176,-34.7989055146797,-34.7989213362756,-34.798910716949,-34.7989554735307,-34.7989961414916,-34.7990177923019,-34.7989869896565,-34.7989299535428,-34.7988728042146,-34.7988012942203,-34.7986775703403,-34.7986205672732,-34.7985969953555,-34.7985762913616,-34.798548463469,-34.7985496176077,-34.7985872837735,-34.7986746890291,-34.7987140360128,-34.7987596325396,-34.7987806569384,-34.7987228138437,-34.7987301506322,-34.7986819594881,-34.7986641498507,-34.7986524705462,-34.7986770568423,-34.7987438575524,-34.7988044290446,-34.7988951560298,-34.7989067086028,-34.7989073487132,-34.7988891193074,-34.7989000314191,-34.7988741316775,-34.7988924276018,-34.7989155932198,-34.7989144721846,-34.7989522855027,-34.7989963879126,-34.7990139905872,-34.7990580130589,-34.7990583201266,-34.799010268474,-34.7990190662566,-34.7990170454463,-34.7990487685603,-34.799060180899,-34.7990319727895,-34.7989966217866,-34.7990071602358,-34.7990089542694,-34.7989879902929,-34.7989736094548,-34.7989692605708,-34.7989994031784,-34.7990035782426,-34.7990669776877,-34.7990164718471,-34.7989809801632,-34.7989526254618,-34.7989337822432,-34.7989151196372,-34.7989409124822,-34.7989609164189,-34.7989563273762,-34.7989534993908,-34.7989784120702,-34.7989791459691,-34.7989366372466,-34.7989099966085,-34.7987854460749,-34.7987664826874,-34.7987408762819,-34.7987557041097,-34.7987273223961,-34.7986987746,-34.7986822061394,-34.7986852606458,-34.7986777571291,-34.7986536780386,-34.7986207542582,-34.7986161655349,-34.7985612903562,-34.7985242179055,-34.7984753529081,-34.7983918096653,-34.7983023901149,-34.7982183535549,-34.7981141861727,-34.7979516694559,-34.7977150074444,-34.7973261933062,-34.7962535470763,-34.7960471337706,-34.7956276972252,-34.7956036047144,-34.7956100952693,-34.7956645629564,-34.7957636272979,-34.7958191696203,-34.7961616862443,-34.7960095678975,-34.795956266584,-34.7958965693485,-34.7958208234342,-34.7957184972803,-34.7956697524267,-34.7956041186649,-34.795559282191,-34.7954423752852,-34.7953529559265,-34.7953260218127,-34.7952945787675,-34.7952766164359,-34.795236181913,-34.7952092284933,-34.7951912588741,-34.7951688006556,-34.7951418401753,-34.7951283730138,-34.7951104039872,-34.7950924416145,-34.7950789812108,-34.7950610050447,-34.7950430360118,-34.7950250599553,-34.7950070775763,-34.7949891079622,-34.7949711456901,-34.7949576918563,-34.7949442583908,-34.7949353336608,-34.7949354202028,-34.794940036054,-34.794949167705,-34.7949492609051,-34.794953869676,-34.7949629878747,-34.7949765951694,-34.7949902022046,-34.7950037958016,-34.7950128801028,-34.7950219783851,-34.7950265938012,-34.7950267207953,-34.795017809675,-34.7950043756848,-34.7949863933563,-34.7949684172109,-34.7949504211989,-34.7949279162775,-34.7949099203133,-34.7948919248033,-34.794864950693,-34.7948469748853,-34.7948289986843,-34.7948110296594,-34.7947930671347,-34.79478416221,-34.7947752246614,-34.794766326232,-34.7947574287364,-34.794748604304,-34.7947397126787,-34.794739819657,-34.7947354302761,-34.7947400863422,-34.7947402396957,-34.7947403263865,-34.7947449285859,-34.7947450285983,-34.7947451687101,-34.7947497715634,-34.7947543738389,-34.7947590227725,-34.7947636984428,-34.7947638252358,-34.7947639184992,-34.7947640254193,-34.7947641523191,-34.7947597832755,-34.7947599696396,-34.7947600901844,-34.7947557476818,-34.7947558878022,-34.7947559810466,-34.7947606035535,-34.7947607236789,-34.7947653193113,-34.7947654190943,-34.7947700683523,-34.7947701950388,-34.7947747973284,-34.7947748909882,-34.7947794999249,-34.7947795866786,-34.7947886981032,-34.7947978161593,-34.7948113963946,-34.7948069743698,-34.7947980364371,-34.7947936138011,-34.7947892117318,-34.7947802936242,-34.7947759712984,-34.7947716159104,-34.7947672604419,-34.7947583958548,-34.7947584955706,-34.7947540732535,-34.7947496981153,-34.7947453023455,-34.7947454022108,-34.794754493882,-34.7947725766024,-34.7947906791432,-34.794813297305,-34.794808908306,-34.7947955213204,-34.794782161077,-34.7947528385583,-34.7947044791129,-34.7946990529972,-34.794514362106,-34.7941704648169,-34.7939238841595,-34.7937934176375,-34.7935943165081,-34.7932999869404,-34.7932057430969,-34.7931742936559,-34.7933844829554,-34.7933655527746,-34.793417035543,-34.7932278384374,-34.7927111561531,-34.7923365121871,-34.7922039319375,-34.7920928476494,-34.7919895808989,-34.7918111993595,-34.7917571027931,-34.7916563092986,-34.791444753253,-34.7912600316571,-34.7911929366652,-34.7909996698771,-34.7907745282342,-34.7905982968421,-34.7904496802202,-34.790264651533,-34.7900976187233,-34.7895411889768,-34.7893115452901,-34.7891095491505,-34.78896061234,-34.7887541874996,-34.7884123035577,-34.7882209297302,-34.7878548569308,-34.787658700911,-34.7875105044823,-34.7874661795053,-34.7872044132899,-34.7871012934417,-34.7870525496684,-34.7868210257784,-34.7866530911539,-34.7865292117378,-34.7863794539541,-34.7862145161079,-34.7860952252571,-34.7860353244435,-34.7859366717362,-34.7856884326858,-34.7856325332231,-34.785606554068,-34.7855860919921,-34.7854759308763,-34.785260271858,-34.7850554941415,-34.7850821604027,-34.7853197861268,-34.7855799469484,-34.7857157313715,-34.7858023309508,-34.7859264427682,-34.7859655065386,-34.7859688351723,-34.7859899956658,-34.7859965009179,-34.7861163016468,-34.7861875390995,-34.786220492759,-34.7862994814964,-34.7864260936655,-34.7866494716258,-34.7868112390587,-34.7870762765569,-34.7871998611169,-34.7873545411049,-34.787356336962,-34.7873572214324,-34.7873650884366,-34.7872089638976,-34.7869843119294,-34.7868994179388,-34.7866535673141,-34.7861546718265,-34.7863856876174,-34.7866857322839,-34.7869000696355,-34.7871712159418,-34.7871980100086,-34.7872220158836,-34.7872300064611,-34.7872369235393,-34.7872704541602,-34.7872747827912,-34.7872757366336,-34.7872760036814,-34.787205294031,-34.7870561437368,-34.7871069431565,-34.7869857471964,-34.7870101131461,-34.7870253678943,-34.7870386212491,-34.78728296695,-34.7873610474303,-34.7872129307642,-34.7870148756161,-34.7866454314344,-34.7864252047298,-34.7861013178484,-34.785879630004,-34.7857794650155,-34.7857771639328,-34.7856007195462,-34.7854863469554,-34.7853914183881,-34.7853470022761,-34.7853235498587,-34.7852158346661,-34.7850901165019,-34.7849248311598,-34.7847927097156,-34.7846814254305,-34.7845382384067,-34.7844096719976,-34.7843259623179,-34.7842336547128,-34.7840534347897,-34.7839467934223,-34.7836816434478,-34.7837028875823,-34.7837468502463,-34.7837545276257,-34.7837597565452,-34.7837717497487,-34.7838185937726,-34.7837571289221,-34.7837665538556,-34.7837690883771,-34.783772196681,-34.7837727833219,-34.783777785872,-34.7837726431703,-34.7837698020496,-34.7837702688234,-34.7837841360003,-34.7837766922583,-34.7837576358453,-34.7837486975168,-34.783735330636,-34.7837264727011,-34.7837220642142,-34.7837195095932,-34.7837177552913,-34.7837133594615,-34.7837001458596,-34.7836825639035,-34.7836826772283,-34.7836739194181,-34.7836697705863,-34.7836654678861,-34.7836610526463,-34.7836569768317,-34.7836526483055,-34.783648339536,-34.7836451378952,-34.7836399817548,-34.7836359529844,-34.7836362730851,-34.7836366264211,-34.7836369802657,-34.7836553496145,-34.7836690902327,-34.7836964977091,-34.7837194029043,-34.7837240252002,-34.783733136612,-34.7837559746219,-34.7837833156146,-34.7838106365113,-34.7838197611191,-34.783828858874,-34.7838379571019,-34.7838516777734,-34.78386080214,-34.7838701605093,-34.7838747430096,-34.7838838343291,-34.7838929720698,-34.783902096972,-34.7839157241797,-34.7839248417669,-34.7839339798852,-34.7839522496626,-34.7839796035545,-34.7839842190975,-34.783993357388,-34.7840024888228,-34.7840162226784,-34.7840299561045,-34.7840436966039,-34.7840574239017,-34.78406202606,-34.7840757463657,-34.7840851976784,-34.7840852779966,-34.7840853578072,-34.7840809422199,-34.7840810292161,-34.7840995387427,-34.7840996388081,-34.784104234577,-34.7841043547248,-34.7841044679406,-34.7840824097184,-34.7840690029521,-34.7840600985589,-34.7840511669017,-34.7840377733758,-34.7839975327637,-34.7839840860724,-34.78397514761,-34.7839518692573,-34.7839343535132,-34.78391476351,-34.7838982813897,-34.7838652980188,-34.7837993573792,-34.7837456961699,-34.7836775876442,-34.7836012347549,-34.7835052586783,-34.7834794788148,-34.783446468634,-34.7833938550398,-34.7833618918611,-34.7832947900796,-34.7832555698232,-34.7832339187955,-34.7832163832391,-34.7831782303129,-34.7831503890033,-34.7831369821922,-34.7830803199637,-34.7830143454357,-34.7829731647464,-34.7829443431874,-34.7829227253383,-34.7829144006304,-34.7829001870289,-34.7828817374974,-34.7828704916454,-34.7828623676031,-34.7828562777388,-34.7828574316599,-34.7828606598537,-34.7828794626516,-34.7829117191907,-34.7829408010911,-34.7830165804038,-34.7830435409187,-34.7830715153318,-34.7830995095372,-34.7831357618654,-34.7831689318543,-34.7832082655102,-34.7832496802969,-34.7832797023027,-34.7833200701122,-34.7833583567152,-34.7834080153627,-34.7834597354703,-34.7834979953063,-34.7835455529113,-34.7835879480492,-34.7836334180317,-34.7836685566135,-34.7836985321324,-34.7837243654891,-34.7838194411833,-34.7838545989811,-34.7839000892784,-34.7839218001242,-34.7839445452746,-34.7839683241216,-34.7840034690761,-34.7840375734508,-34.7840902941406,-34.784126479166,-34.7841760848992,-34.7842246767763,-34.7843146097176,-34.7844149413667,-34.7844470179007,-34.7844956027505,-34.7845679867469,-34.7846300190227,-34.7846972202576,-34.7847303106496,-34.7847540894705,-34.784804782242,-34.7848803478901,-34.7850844197417,-34.7851807763421,-34.7852056688916,-34.7852367783927,-34.7852927938385,-34.7853509038229,-34.7853976017536,-34.7854193991064,-34.7854422578847,-34.7854640558281,-34.7854910695242,-34.7855284488068,-34.7855606123146,-34.7856021204373,-34.7856426012329,-34.7856706155794,-34.7856955218626,-34.7857142315319,-34.7857381105621,-34.785762016291,-34.7857890102168,-34.7858181450743,-34.7858451986902,-34.7858660364281,-34.7858879274614,-34.785912973984,-34.7859234460988,-34.785946397971,-34.7859652407112,-34.7859903403478,-34.7860050344968,-34.7860146529331,-34.7860189351989,-34.7860190283894,-34.7860191487264,-34.7860161473079,-34.7860173342903,-34.7860155267564,-34.7860137122624,-34.7860078296063,-34.7859992518162,-34.7859904270908,-34.7859869723657,-34.7859727246528,-34.7859567029893,-34.785938927142,-34.7859192773625,-34.7859085849136,-34.7858961384003,-34.7858782892101,-34.7858568648475,-34.7858300442618,-34.7858139962941,-34.7857925718766,-34.7857495695735,-34.7857248036066,-34.7857111829053,-34.7856927937293,-34.7856578692262,-34.7856028539693,-34.7855734187391,-34.7855550095264,-34.7854869741701,-34.7854383626822,-34.785398021521,-34.7853666456488,-34.7853342891069,-34.7853086024307,-34.7852792806239,-34.7852480111039,-34.7852314625601,-34.7852112321973,-34.7851725452165,-34.7851357997986,-34.7850935779799,-34.7850550650727,-34.7850330865821,-34.7850110757153,-34.7849965278864,-34.7849874565143,-34.7849784188314,-34.7849712484899,-34.7849623034226,-34.7849532723728,-34.7849405657508,-34.784942580204,-34.7849521450571,-34.7849559536181,-34.7849914250899,-34.7850418446904,-34.7850717400157,-34.7851089460855,-34.7851498002468,-34.785198091654,-34.7852408004316,-34.7852890457689,-34.7853353427736,-34.7853798522825,-34.7854313920596,-34.7854610742919,-34.7854870410961,-34.7855465181529,-34.7856020536658,-34.7856539670402,-34.7856762116553,-34.7857353954621,-34.7858260624781,-34.7859148481344,-34.7859796747305,-34.7860222238121,-34.7860703149515,-34.7860998168413,-34.7861571866096,-34.7862256417716,-34.7862663564522,-34.7863273744525,-34.7863643536032,-34.7864161536739,-34.7864531123867,-34.7864919525304,-34.7865270905874,-34.7865677784765,-34.7866195515248,-34.7866935366486,-34.786754561195,-34.7868562803177,-34.7869376557123,-34.7869949785197,-34.7870542091913,-34.7871430616435,-34.7872282257461,-34.7873188988428,-34.7873873675305,-34.787441035194,-34.7875002523842,-34.7875575953464,-34.7876020650013,-34.7876576336633,-34.787711414475,-34.7877633080906,-34.7878040894569,-34.7878374462659,-34.7878837834911,-34.7879394056642,-34.7879987494044,-34.7880858811556,-34.788121153023,-34.7881527158797,-34.7882027812341,-34.7882473178608,-34.7882956028673,-34.7883513379019,-34.7884014774106,-34.7884554382391,-34.7884815788448,-34.7885133080367,-34.7885487800037,-34.7885935761553,-34.7886159947314,-34.7886291548659,-34.7886460436774,-34.788676039168,-34.7887172132823,-34.7887340953525,-34.788730653925,-34.7887327148419,-34.7887218494631,-34.7887146722806,-34.7886981904789,-34.7886743579048,-34.7886542075203,-34.7886248527402,-34.7886010135104,-34.7885808499018,-34.7885661753438,-34.7885570444537,-34.7885423632278,-34.7885314311278,-34.7885186446456,-34.7885003882917,-34.788484133267,-34.788484419988,-34.7884865343898,-34.7884923974193,-34.7885000881296,-34.7885059113616,-34.7885155163892,-34.7885139150607,-34.7885197518717,-34.7885310639566,-34.7885442640639,-34.7885556298859,-34.7885836982178,-34.7885932159356,-34.7885924225418,-34.7885989327075,-34.7886108652218,-34.7886401735431,-34.7886781597178,-34.7887220092168,-34.7887628901158,-34.7888008367686,-34.7888503688269,-34.7888911299131,-34.7889668024523,-34.7890716094041,-34.7891646508307,-34.7892445187671,-34.7893055233589,-34.78936642851,-34.7894302280781,-34.789485283192,-34.7895605953639,-34.7896040043314,-34.7896763348908,-34.789722658436,-34.7898830281957,-34.789892406111,-34.7899023848186,-34.7899158381391,-34.7899292919043,-34.7899472280528,-34.7899682452576,-34.7899813988453,-34.7900715252614,-34.7901450631961,-34.7902654921681,-34.7902952938108,-34.7903127096099,-34.7903362553541,-34.7903502487658,-34.7903808645927,-34.7904305169747,-34.7904872399058,-34.7905915535857,-34.7905999844493,-34.7906075883368,-34.7906057738896,-34.7907264164666,-34.7908426160173,-34.7910006779981,-34.7911217469811,-34.7912381468948,-34.7913453020115,-34.7914292785569,-34.7914898367387,-34.7915551568601,-34.7916391802645,-34.791741899847,-34.7918586136609,-34.7919800763571,-34.792068935101,-34.7921532457579,-34.7921907517314,-34.7922866478222,-34.7923662550972,-34.7924270800142,-34.7925066812933,-34.7925722081068,-34.7926330463807,-34.7927264942629,-34.7928291677239,-34.7928804939112,-34.7929305799942,-34.7929376969626,-34.79291721956,-34.792899043381,-34.7928915864244,-34.7928985234457,-34.7929147184839,-34.7929661845114,-34.7930067587586,-34.7930475999071,-34.793023101004,-34.7930078947558,-34.7929803052233,-34.7929046532636,-34.7928496847079,-34.792843468374,-34.7928413738262,-34.7928335494597,-34.792640803506,-34.792555619897,-34.7924078699122,-34.7922999211853,-34.7921749165293,-34.7920896258083,-34.7920213775023,-34.7919248142413,-34.7918396369655,-34.7917544533444,-34.7916524537053,-34.791590075323,-34.7915279298741,-34.7915116080662,-34.7914987815595,-34.7914829397986,-34.7914658376912,-34.7914318535369,-34.7914094617131,-34.791377072026,-34.7913489241947,-34.7913056486361,-34.7912738721724,-34.7912480184353,-34.7912296091106,-34.7912283351829,-34.7912109464598,-34.7912094652636,-34.7912072312404,-34.7912076509894,-34.7912079444747,-34.7912081449185,-34.7912163488022,-34.7912295021912,-34.7912416819493,-34.7912545156352,-34.7912865121237,-34.7913119718527,-34.7913358437169,-34.7913601699459,-34.7913749172699,-34.7913937203252,-34.7914331273953,-34.7915032967764,-34.791522907026,-34.7915639752241,-34.7916139807822,-34.7916441965814,-34.7916854377389,-34.7917107573221,-34.7917379380829,-34.791823262169,-34.7918870082893,-34.7919258146532,-34.7919707181908,-34.7920063699974,-34.7920914671912,-34.7921333885204,-34.7922219412402,-34.7923072919083,-34.7923466255249,-34.7923817165622,-34.7923983051664,-34.7924201564244,-34.792438359366,-34.7924401402062,-34.7924490780417,-34.7924625117607,-34.7924714095684,-34.7924803344214,-34.7924892589038,-34.7924981701287,-34.792538377671,-34.7925741360961,-34.7925830741153,-34.7926010030907,-34.7926592331944,-34.7926905828048,-34.7927264078192,-34.7927757067525,-34.7928160206074,-34.7928474035326,-34.7928742774517,-34.7929280520563,-34.7929460211976,-34.7929684928167,-34.7929864683007,-34.7930044512367,-34.7930269493053,-34.7930449520481,-34.7930629478406,-34.7930809240565,-34.7930943909854,-34.7931078579984,-34.793121331224,-34.7931393205294,-34.7931573035602,-34.7931798015913,-34.7932067889048,-34.7932697278817,-34.793304866287,-34.7933281846251,-34.7933416518314,-34.7933596212488,-34.7933776166841,-34.7934001152811,-34.793427108956,-34.7934720989807,-34.7934900885355,-34.7935035554652,-34.7935215381035,-34.793584570107,-34.7936070683549,-34.7936745166958,-34.7936970282781,-34.7937240355464,-34.793746540747,-34.7937690320351,-34.793787028271,-34.7938095266449,-34.7938320378833,-34.793850060803,-34.7938680966428,-34.7938861258063,-34.7939041420301,-34.7939356649494,-34.7939671810763,-34.7940212156046,-34.7940572338636,-34.7941022574218,-34.7941202668595,-34.7941562787052,-34.7941967995382,-34.7942238068414,-34.7942553161329,-34.7942733253652,-34.7942913484119,-34.7943138929485,-34.7943364248882,-34.7943544539466,-34.7943769790304,-34.7943949950842,-34.7944130108017,-34.7944310402635,-34.7944490831701,-34.7944761500774,-34.7945032240797,-34.7945302980774,-34.7945573721525,-34.7945754280906,-34.7946025284332,-34.7946296291433,-34.7946476987288,-34.7946657677362,-34.7946928616579,-34.7947290008543,-34.7947561077312,-34.7947877244843,-34.7948103159199,-34.7948283653344,-34.7948464076565,-34.7948689660013,-34.7948870221359,-34.7949276632185,-34.7949457391978,-34.7949593061886,-34.7949728999801,-34.7950363188582,-34.7950498996727,-34.7950679955593,-34.7950815889878,-34.7951404661904,-34.7951540662202,-34.7951676668529,-34.7951767716597,-34.7951903784527,-34.7952085544336,-34.7952176724029,-34.7952630358487,-34.7952766294401,-34.7953084391655,-34.795317544289,-34.7953357866682,-34.7953494270625,-34.7953676234972,-34.7953858127129,-34.7953994532351,-34.7954176426823,-34.7954267537854,-34.7954404140954,-34.7954495190004,-34.7954586370555,-34.7954677479493,-34.7954723574228,-34.7954860044894,-34.7954951491417,-34.7955043002486,-34.7955089158769,-34.795513532098,-34.7955226631443,-34.7955365034892,-34.7955411325059,-34.7955502372832,-34.7955548332979,-34.7955684936578,-34.795595760666,-34.7956048522417,-34.7956184728743,-34.7956275839788,-34.7956411908314,-34.7956548049923,-34.7956639029847,-34.7956729876939,-34.7956911436613,-34.7957680896781,-34.7957861660422,-34.7958042283289,-34.7958222976142,-34.795840366824,-34.7958584562515,-34.7958720236419,-34.7958946284273,-34.7959127311505,-34.7959353360085,-34.7959489097562,-34.7959624765773,-34.7960050984815,-34.7960303917432,-34.7960394765033,-34.7960485811471,-34.7960577059088,-34.7960668439269,-34.7960759552339,-34.7960897291078,-34.7960898289262,-34.7960944648561,-34.7960858068938,-34.7960768756931,-34.7960679843309,-34.7960590466503,-34.7960546241964,-34.7960457128524,-34.7960323326042,-34.7960011434063,-34.7959967143367,-34.7959877694772,-34.7959743695686,-34.7959251777122,-34.7959162329773,-34.7959027926233,-34.7958893457729,-34.7958579562086,-34.7958399871204,-34.7958174620012,-34.7957949370192,-34.7957724051745,-34.7957543762376,-34.795736353378,-34.7957183374595,-34.7956868078075,-34.7956194196913,-34.7956059661599,-34.7955925391409,-34.7955521387026,-34.7955432071469,-34.7955208020984,-34.7954849902905,-34.7954670746932,-34.7954536410696,-34.7954357382461,-34.7953864461389,-34.7953730060506,-34.7953506943649,-34.7953417567537,-34.795328376575,-34.7953194583098,-34.795310527037,-34.7952971069884,-34.7952569527683,-34.7952480280394,-34.7952436262128,-34.7952392236639,-34.7952303655849,-34.7952259369024,-34.795217005582,-34.7952125968048,-34.7952081740972,-34.7952082675823,-34.7952083745496,-34.7952129635163,-34.7952175524091,-34.7952402443585,-34.7953079325854,-34.7953846117961,-34.7953939567344,-34.7954259064859,-34.7954260068202,-34.7954215777002,-34.7954216778726,-34.7954217777562,-34.795421864597,-34.7954219646865,-34.7954674813524,-34.7954765996581,-34.7954856974962,-34.7954948420106,-34.7955039467574,-34.7955179005937,-34.7955180343759,-34.7955227233452,-34.7955230232377,-34.7955231765612,-34.7955232767417,-34.7955233638214,-34.79551902108,-34.7955191413278,-34.7955192480318,-34.7955238637178,-34.7955333887459,-34.795533482124,-34.7955335685647,-34.795533715856,-34.7955338221306,-34.7955294003186,-34.7955295002589,-34.7955250776424,-34.7955206689622,-34.7955162599958,-34.7955163466243,-34.7954859776485,-34.7954941551981,-34.7955031132028,-34.7955107639052,-34.7955203486924,-34.7955080891815,-34.7955126916212,-34.795521802545,-34.7955309409322,-34.7955582751596,-34.7955673795001,-34.7955765378719,-34.7955856623465,-34.7955902980787,-34.7955994429049,-34.7956040653244,-34.7956086942947,-34.7956180924336,-34.7956181992752,-34.7956228279562,-34.795627750739,-34.7956233283841,-34.7956234085217,-34.7956235018113,-34.7956236487548,-34.7956285710505,-34.7956331934855,-34.7956333203666,-34.7956334071388,-34.7956380225227,-34.7956249827043,-34.7956160448975,-34.795593753448,-34.7955534192595,-34.795509376333,-34.7954636529586,-34.7954547149593,-34.7954458100882,-34.7954413949198,-34.7954369923344,-34.7954325836775,-34.7954326833824,-34.7954417813465,-34.7954511597329,-34.7954512931383,-34.7954733844858,-34.7954517401272,-34.7954382662893,-34.7954202973592,-34.7954068437563,-34.7954024281304,-34.7954246859984,-34.7954611580093,-34.7954791738599,-34.7954972833826,-34.7955108506375,-34.7955380377022,-34.795538137883,-34.7955427400123,-34.7955473290425,-34.7955564073487,-34.7955655051873,-34.795565612269,-34.7955611833445,-34.795547735976,-34.7955207487172,-34.7955027397937,-34.7954847170147,-34.7954621584903,-34.7954441160292,-34.7953900679044,-34.7953677098799,-34.795358785137,-34.7953498410209,-34.7953063583591,-34.7952600544992,-34.7952375294086,-34.7952195068915,-34.7951970017421,-34.7951835347361,-34.7951700678894,-34.795143107508,-34.7951432075917,-34.7951432941603,-34.7951389253756,-34.7951435145504,-34.7951435943705,-34.7951482167861,-34.7951573082224,-34.7951618970714,-34.7951755311005,-34.7951801330618,-34.7951847221698,-34.7951938268547,-34.7951939201842,-34.7952075209429,-34.7952166120008,-34.7952212142851,-34.7952258435972,-34.7952304458274,-34.7952350349389,-34.7952441927366,-34.7952532974947,-34.7953257151636,-34.7953754604422,-34.7954162413992,-34.7954480845632,-34.7954571896883,-34.795466300691,-34.7954799613336,-34.795489086121,-34.7955072821437,-34.7955163596922,-34.7955254448551,-34.7955435739709,-34.7955662190024,-34.7955798194509,-34.7955979019623,-34.7956319061652,-34.7956514831187,-34.7956687921465,-34.7956872414118,-34.7957092259933,-34.7957230934687,-34.7957312508377,-34.7957370737072,-34.79574056887,-34.7957544093212,-34.795769363956,-34.7957794353736,-34.7957885201248,-34.795797611685,-34.7958067227917,-34.79580680329,-34.7958031012306,-34.795803200959,-34.7958067165157,-34.7958136664524,-34.7958414010807,-34.7958494719935,-34.7958496185842,-34.7958528399115,-34.7958529468598,-34.7958530470098,-34.7958622784619,-34.7958852834307,-34.7959530584097,-34.7959711347177,-34.7959937194048,-34.7960117886532,-34.7960298716457,-34.7960479542093,-34.796061534243,-34.7960706257341,-34.7960752346124,-34.7960843131439,-34.7961069180011,-34.7961250008218,-34.7961385744391,-34.7961611724174,-34.7961837774833,-34.7961973446223,-34.7962109179412,-34.7962245116056,-34.7962380924433,-34.7962607105641,-34.7962788129637,-34.7962923869071,-34.7963059602717,-34.7963195341052,-34.796333108099,-34.7963602553899,-34.7963829004254,-34.796396487476,-34.7964100808156,-34.7964236677356,-34.7964372482034,-34.7964553440259,-34.7964924233233,-34.7972313113609,-34.7977067837536,-34.7997437986989,-34.804287530157,-34.8043563789974,-34.8044058734667,-34.8051186521212,-34.8059511081067,-34.8070584391857,-34.8071337580295,-34.8092042525031,-34.8096789706608,-34.8113221314142,-34.8137347289858,-34.8152163864478,-34.8165563953801,-34.8179802272655,-34.8185963814752,-34.8186603811379,-34.8187166592937,-34.8219875875761,-34.8258279649737,-34.8258342089972,-34.8258391315359,-34.8258358765238,-34.8258311407481,-34.8258100698814,-34.8257954289973,-34.8257656669816,-34.8257290614365,-34.8256442243506,-34.8255964797274,-34.8255420783379,-34.8254719088164,-34.8254483233194,-34.8254455152045,-34.8254648651838,-34.8254809201304,-34.8254328753525,-34.8254106772377,-34.8253473512455,-34.8252950976303,-34.8252380482085,-34.8252301908229,-34.8252144760517,-34.8252002353741,-34.8251874621199,-34.8251688058317,-34.8251467144386,-34.8251300191618,-34.8251024782916,-34.8250842822408,-34.8250594894545,-34.8250360840504,-34.8250124652029,-34.8249711238821,-34.8249016880723,-34.824832285613,-34.8248037442268,-34.824786988919,-34.8247643305668,-34.8247475885992,-34.8247259040826,-34.8246963355,-34.8246805540278,-34.8246653195043,-34.8246431880905,-34.8246279735774,-34.824616187499,-34.8246062090195,-34.82460498839,-34.8245639272137,-34.824559191438,-34.8245571170348,-34.8245540687961,-34.8245521944961,-34.8246032274818,-34.8246056220501,-34.8247075546193,-34.8247844342681,-34.8248702652,-34.8249561294824,-34.8250329891209,-34.8251054064684,-34.8251508432346,-34.8251647504069,-34.8252057782327,-34.8252376946928,-34.825301147417,-34.8253556155076,-34.8253785940249,-34.825383543244,-34.8253117462164,-34.8252308778439,-34.8251861747894,-34.8251821060243,-34.8251419052918,-34.8250836685909,-34.8250299675626,-34.8249672218697,-34.824877395544,-34.824805511805,-34.8247200810796,-34.8246300813311,-34.8245174032201,-34.8244014767672,-34.8243053005,-34.8242213105175,-34.8241025492693,-34.8239644113614,-34.823897883718,-34.8237947705399,-34.8237457786069,-34.8274313293397,-34.8240115156543,-34.8256783886366,-34.8266326765159,-34.8264968679409,-34.8264699512095,-34.8266759459911,-34.8269070622566,-34.8271043773888,-34.8271720526737,-34.8272379410099,-34.8275377486685,-34.8276592535527,-34.8276882425859,-34.8278529731979,-34.82803450494,-34.8286891025952,-34.828747892328,-34.8288694782247,-34.8291082029488,-34.8293445537537,-34.8297208219573,-34.8303184887335,-34.8309678865039,-34.8320289282263,-34.8321004373181,-34.8321005208318,-34.832470564869,-34.8326338004049,-34.8324849640465,-34.8323170327736,-34.8331615679036,-34.8332305268008,-34.8334697001486,-34.8339293613941,-34.8341056223199,-34.83414343784,-34.8345816612927,-34.8350641907627,-34.8357079782093,-34.8359820318563,-34.8359680407015,-34.8358779788262,-34.8362031331833,-34.8365233199871,-34.8365925644207,-34.8368488161786,-34.837457865668,-34.8377891072769,-34.837957761798,-34.8380041743137,-34.8381045431299,-34.8381401691062,-34.8382236024648,-34.8383400465422,-34.8382297673654,-34.8381331211843,-34.8379894527353,-34.8378629476903,-34.8378450882057,-34.8374521806824,-34.8374526242445,-34.8370669394058,-34.8369652095389,-34.8369111913097,-34.8368352591869,-34.8365433119025,-34.8365418678775,-34.836533456873,-34.8365229414499,-34.8364329039567,-34.8363025511224,-34.8362252345816,-34.8362924625861,-34.8373343956721,-34.8384078446753,-34.8392852555834,-34.8401412598564,-34.8414613082354,-34.8428055448826,-34.8446738484145,-34.8463163454923,-34.8469457967831,-34.8474790351211,-34.8480834868523,-34.8497138109855,-34.850641679511,-34.8510772594691,-34.851135277119,-34.85114398943,-34.8511744976323,-34.8512033187086,-34.8512059372733,-34.8512071137938,-34.851256188707,-34.8513405118312,-34.8516242461239,-34.8517468580521,-34.8518293575065,-34.8518897431932,-34.8519290332438,-34.8519742533473,-34.852177611893,-34.8525755162867,-34.8568491758757,-34.8579536154635,-34.8548391092329,-34.8532090635767,-34.8524871145824,-34.852269172184,-34.851609111578,-34.8507237748787,-34.8505366525149,-34.8495400847238,-34.8485319581404,-34.8474768086504,-34.8442895769026,-34.8433946987243,-34.8430777580857,-34.8412187263663,-34.8411323822666,-34.8381066785113,-34.8377205255193,-34.8355717210029,-34.8352491575989,-34.8319233727812,-34.8298377704057,-34.8330053504779,-34.8343262921752,-34.83432629204,-34.8433524569391,-34.8434206387689,-34.8454654902474,-34.8457199576485,-34.8474746359723]}]],[[{&#34;lng&#34;:[-56.2201331811061,-56.2202477720963,-56.2202579717947,-56.2202737552513,-56.2205446702436,-56.2208252960344,-56.2208972369134,-56.2209149160113,-56.221005555492,-56.2210313187282,-56.2208183330363,-56.2209795787858,-56.220942580933,-56.221065522215,-56.2213494552288,-56.221414947157,-56.2216130918989,-56.2217101795189,-56.221795119381,-56.2218447549793,-56.2218561066656,-56.2219154083552,-56.2219302990966,-56.2219535129808,-56.2220317247378,-56.2221492086606,-56.222206668294,-56.2222629639938,-56.222434095584,-56.2224965678026,-56.2237730327749,-56.2240040792211,-56.2239893069755,-56.2239488448802,-56.2238621520693,-56.2243273863028,-56.2243566484604,-56.2250231655735,-56.2255668989138,-56.2256243011385,-56.2256920118803,-56.2257978391691,-56.2262737472689,-56.226339941169,-56.2268030324153,-56.2271559606691,-56.2275866079232,-56.2276612578638,-56.2276735431462,-56.2277255016926,-56.2275337519724,-56.22708569017,-56.226738472527,-56.2266868223829,-56.2263379738797,-56.2260969497344,-56.2259519909786,-56.2258852786796,-56.2258966624989,-56.2258247461202,-56.2256001439137,-56.2254964216672,-56.2252449188495,-56.2250316764355,-56.2247690478747,-56.2246909942381,-56.2234972756246,-56.2233038049803,-56.2231404682947,-56.2228839118524,-56.2227498116761,-56.2224712849065,-56.2223310365515,-56.22220346648,-56.2219514221815,-56.2218158288658,-56.2215047278205,-56.2213397831935,-56.2212239598331,-56.2211466186681,-56.2210707868033,-56.2210630905875,-56.2210966862755,-56.2211135695397,-56.221134772106,-56.2212047177304,-56.2212450852635,-56.2213342710391,-56.2213860840224,-56.2212947208236,-56.2211486187064,-56.2210543976163,-56.2211666391925,-56.2211155251603,-56.2210356941987,-56.2209486305205,-56.2206075235025,-56.2204325423402,-56.2200453048289,-56.2199726905614,-56.2198971652914,-56.219783682837,-56.2196383698736,-56.2189648120463,-56.2185648823952,-56.2184238584359,-56.2182402835935,-56.2180843998092,-56.2180679548325,-56.2183538515809,-56.2183804038958,-56.2183985000159,-56.2184169249208,-56.2184687794781,-56.2185119805339,-56.2185809441986,-56.2188857598977,-56.2190508902893,-56.2190849381108,-56.2190515797523,-56.2193595963281,-56.2194717780739,-56.219389778582,-56.2192431961628,-56.2189134334064,-56.2187481159016,-56.2186667652539,-56.2185765278746,-56.2183751883958,-56.217841694166,-56.2176037259359,-56.2175237895075,-56.2174281730082,-56.2167703736867,-56.2166801673107,-56.2166530602246,-56.216643647877,-56.2166683157532,-56.2164878934343,-56.2163010351608,-56.2159661696963,-56.2159326090166,-56.2157290977187,-56.2156111950384,-56.2155376658906,-56.2154506092744,-56.2151412807589,-56.2148746237643,-56.2147793872274,-56.2147730402767,-56.214764710114,-56.2147282482032,-56.2144634233323,-56.2144083439072,-56.2144196427534,-56.2145245820148,-56.214625134381,-56.2146744017312,-56.2146050700693,-56.2145291432962,-56.2144892861533,-56.2143827470625,-56.2141704566737,-56.2140627176802,-56.2139068838419,-56.2138060923691,-56.213702740047,-56.213460063652,-56.2133787076485,-56.2132810544473,-56.2132601345703,-56.2131642019813,-56.21305171704,-56.2129384546413,-56.2128995522362,-56.2128306381432,-56.2127754454501,-56.2127245238244,-56.2126599099349,-56.2125576200457,-56.2124860436236,-56.212388284482,-56.2123234186602,-56.2122449833207,-56.2122166855746,-56.2121564874578,-56.2121414809116,-56.2121217924881,-56.212086542056,-56.2120377654976,-56.2120062693817,-56.2120134200602,-56.2120745732005,-56.2121128260545,-56.2122136873786,-56.2122908752229,-56.2123478696238,-56.2123839376511,-56.2123652707269,-56.2123187247981,-56.2122254934991,-56.212198872451,-56.2122001005201,-56.2121860752805,-56.2121509026925,-56.2121305445169,-56.2121228070968,-56.2121364311855,-56.2121268296809,-56.2121256577792,-56.212135509391,-56.2121632448938,-56.2121585472827,-56.2121387656842,-56.2120468282012,-56.2120067072105,-56.2119279292276,-56.2116712804873,-56.2114639442617,-56.2113235899845,-56.2112030504979,-56.211157550295,-56.2110973461427,-56.2109655076195,-56.210879455901,-56.2107420720756,-56.2106502069111,-56.2105606167436,-56.2104553640828,-56.2102023477276,-56.2101613890813,-56.210063269895,-56.2099313344282,-56.2097397409668,-56.2096334170681,-56.2095158872591,-56.2092346255616,-56.2091044577357,-56.2089177806867,-56.2087906245754,-56.2084161440873,-56.2082924452139,-56.2082360210466,-56.208135035848,-56.2080894601487,-56.2080343285815,-56.208005811123,-56.2079628447144,-56.207924195692,-56.2079086812557,-56.2078975309011,-56.2078432689543,-56.2076040248146,-56.2075672282874,-56.2075719332625,-56.2076217242226,-56.2075344776763,-56.2074257600651,-56.2073122394471,-56.2072831224635,-56.2071147881689,-56.2070613440333,-56.2070411972686,-56.2069145838594,-56.2067510350574,-56.2067044473961,-56.2065195920501,-56.206345999766,-56.2061343694074,-56.2059798337885,-56.2058758576689,-56.205643440856,-56.2055214690586,-56.205482128,-56.2053120245206,-56.2051874282189,-56.2050849499497,-56.2049673963511,-56.2048319028809,-56.2047230234666,-56.2046686572735,-56.204763447952,-56.2048512357853,-56.2048528055506,-56.2048604953471,-56.2049100196097,-56.2050220395572,-56.2050128742124,-56.2049891429741,-56.2048960455331,-56.2047839703359,-56.2047627693073,-56.2045137780079,-56.2043616629194,-56.2042847993618,-56.2042072680986,-56.2041647287241,-56.2042396338882,-56.2042822323159,-56.2043197757294,-56.2041894298128,-56.204075338683,-56.2040155192743,-56.2039283268821,-56.2038569864251,-56.2037777569477,-56.2037131632032,-56.2036897640141,-56.2036248402436,-56.2036024540274,-56.2035783177039,-56.2035183115152,-56.203191497758,-56.2030863407916,-56.2029164291927,-56.202865335127,-56.2025115732098,-56.2023713938363,-56.2020535235646,-56.2018670429586,-56.2018217152504,-56.2017355776421,-56.2015873311106,-56.2014122183814,-56.2011776434113,-56.2010029551045,-56.2009844605658,-56.2008905370291,-56.2006829463195,-56.2005368530587,-56.2004543184449,-56.2002831736619,-56.2001803373851,-56.200060097261,-56.1999074976564,-56.1997065860691,-56.1996276854322,-56.1995283570617,-56.1994127216323,-56.1993482162325,-56.1992054491823,-56.1990460360867,-56.1989801776397,-56.198886693654,-56.1988237371398,-56.1987049048107,-56.1984744287485,-56.1982526103759,-56.1974898360535,-56.197347497314,-56.1972505643105,-56.1970243518267,-56.1968823174342,-56.1967483196232,-56.196589521508,-56.1965151378831,-56.1964674194199,-56.1964294342055,-56.1963323109613,-56.1962559404981,-56.1961997045885,-56.1961501857508,-56.1960511072524,-56.1959193514333,-56.1958604971061,-56.1957052184157,-56.1956775739001,-56.1955834472622,-56.1954980715957,-56.1954012445281,-56.195352427714,-56.195263591807,-56.1951362684889,-56.1950163283972,-56.1948172861155,-56.1947831774326,-56.1947400536749,-56.1946958097341,-56.1945762205836,-56.1944866456377,-56.194396402244,-56.1943142993483,-56.1942314811948,-56.1940750037923,-56.1938721702528,-56.1936560179118,-56.1934110605617,-56.1932748444314,-56.193230795934,-56.1933174207075,-56.1930425702137,-56.1930049652376,-56.193025968263,-56.1930914149127,-56.1931544490457,-56.1931013239781,-56.1929692216871,-56.1929226895065,-56.1929058321816,-56.1928498864536,-56.1927396489963,-56.1925217754802,-56.1923542118789,-56.1920564847422,-56.1918402825309,-56.1917507790611,-56.1916501490228,-56.1914428899453,-56.1913118500361,-56.1911413661728,-56.1910627256871,-56.1909264907222,-56.1907793813356,-56.1905430024216,-56.1903547166574,-56.1901852573898,-56.1899961753167,-56.1898812901556,-56.1897208838866,-56.1895206216486,-56.1891643320869,-56.1889822434673,-56.1884074290877,-56.1880971827756,-56.187979236447,-56.1878914955273,-56.1878282887162,-56.1875557721411,-56.1874096864854,-56.1871099452085,-56.1869150005545,-56.1866897303689,-56.1863785518551,-56.1861698002219,-56.186051403644,-56.1855732118371,-56.1853154514739,-56.1851595048084,-56.1849560169013,-56.1844281122738,-56.1839520504313,-56.1838335442801,-56.183766983001,-56.1834972281157,-56.1832824344588,-56.1830786043876,-56.1829709889608,-56.1828009084863,-56.1826713600856,-56.1812565456965,-56.1809568626825,-56.1803642937863,-56.1800290790001,-56.1796734188725,-56.179480829921,-56.1792836586947,-56.1791854113406,-56.1791132239818,-56.1788783623271,-56.1782770786939,-56.1779148817839,-56.1770628087132,-56.1751968126035,-56.1748911288582,-56.1743336216974,-56.1741316337941,-56.1740005472675,-56.1739024882971,-56.1739226238882,-56.1738078312841,-56.1737143859761,-56.173641235315,-56.1737471452835,-56.1738459027657,-56.1739131253632,-56.1740041073332,-56.1740553504272,-56.1741039888446,-56.1741279028444,-56.1741214114082,-56.1741127975542,-56.1740609191325,-56.1739799515421,-56.1738868093396,-56.1738292029638,-56.173784508247,-56.173690413053,-56.1736491651137,-56.1736095872024,-56.1735463229087,-56.173464475698,-56.1733416690301,-56.1731480058197,-56.1730551445561,-56.1729312473652,-56.1728148690125,-56.172705222465,-56.1726211974645,-56.1725814553018,-56.1725457980296,-56.1725151861251,-56.1724953941208,-56.1724754406273,-56.1724869098756,-56.1725055492469,-56.172538704921,-56.172573679625,-56.1725832795759,-56.1726005134639,-56.1726304605751,-56.1726444451964,-56.1726792223894,-56.1727374340774,-56.1727754803655,-56.1727107753288,-56.1726349011985,-56.1725962714706,-56.1725200402952,-56.1724179293006,-56.1723124615748,-56.1722001853378,-56.1721377448023,-56.1720219150659,-56.1719223720624,-56.1718399078668,-56.171701716598,-56.171563508654,-56.1715054853966,-56.1713263860389,-56.1717086935738,-56.1717742104149,-56.1706965886046,-56.169881671339,-56.1690377394926,-56.1684380546924,-56.1682134523324,-56.1679172123644,-56.1674498947876,-56.1674138027031,-56.1673121049873,-56.1671856594106,-56.1670504906147,-56.1669172991515,-56.1665811577819,-56.1663946762351,-56.1662421860708,-56.1660352634235,-56.1659196687754,-56.1657850106595,-56.1658200489076,-56.1658397621723,-56.1658856187542,-56.1667492291402,-56.1671742983593,-56.1679725867237,-56.1679358010857,-56.1678705924559,-56.1678767439618,-56.1679073697563,-56.1679310719801,-56.1677657167022,-56.1677762387953,-56.1678040814879,-56.1677992106425,-56.1678408254377,-56.1678307235612,-56.1679342002601,-56.1680093173332,-56.1680949581671,-56.1681661215345,-56.1681741173248,-56.1682680891218,-56.1683809956839,-56.1684922497272,-56.1685595877885,-56.1685773602875,-56.1686013276481,-56.1686300207792,-56.1686334608867,-56.1686557223675,-56.1686475948426,-56.1687098119296,-56.1687623506918,-56.1687963548953,-56.1688189982397,-56.1688089663994,-56.1688045774692,-56.1688575848065,-56.1688630909795,-56.1689036035395,-56.1689279744416,-56.1689476662638,-56.1689358301596,-56.1688552669444,-56.1688053545367,-56.1687983659325,-56.1687616519981,-56.1687961814726,-56.1688859744477,-56.1689049142155,-56.1689411462346,-56.1690040319997,-56.1690730275825,-56.1691396869604,-56.1691997395978,-56.1692809681561,-56.1693796357082,-56.1694825504506,-56.1696014334282,-56.1696634654197,-56.1697069745252,-56.1697877845343,-56.1698689297163,-56.1699579989849,-56.1700441133963,-56.1702056483707,-56.1703081662418,-56.1703473481155,-56.1703595477405,-56.1703386736419,-56.1703119098391,-56.1702419187429,-56.1701993434524,-56.170161872461,-56.1701725446316,-56.1701916494844,-56.1704121098482,-56.1705359503826,-56.1707937618407,-56.1707796960885,-56.1708317912886,-56.1708475010572,-56.1708185061038,-56.1709268970037,-56.1710131314771,-56.1710872096811,-56.1711251892681,-56.1711597270802,-56.1712060759835,-56.1713748546936,-56.1713921302698,-56.1714541439185,-56.1714885449933,-56.1715512223176,-56.1716166477258,-56.171678969867,-56.171479080112,-56.1714336083277,-56.1713712828516,-56.171386172197,-56.1713848681912,-56.171381099581,-56.1713690933891,-56.1713384692621,-56.1713016252607,-56.1712650664063,-56.1712680296012,-56.1712709977987,-56.1712746413444,-56.1712782832226,-56.171281248085,-56.1712846181564,-56.1712877247585,-56.1712905528837,-56.1712963041831,-56.1713013032464,-56.1713023823178,-56.1713110651291,-56.1713034995606,-56.1713069596784,-56.1713092058368,-56.1713121706992,-56.1713148670898,-56.171318192138,-56.1713215171861,-56.1713704590934,-56.1714221941078,-56.1714621196984,-56.1714945731022,-56.1715664268256,-56.1716392310393,-56.1717859352752,-56.1717873607669,-56.1717810458435,-56.1717764317972,-56.1718341882504,-56.1719844757575,-56.1720584739202,-56.1720945608645,-56.17215903078,-56.172168007076,-56.1722831214434,-56.1722860262748,-56.1723744335354,-56.172505262674,-56.1726144940074,-56.1727401538133,-56.1728579528987,-56.172978690166,-56.173037380434,-56.1731331548273,-56.1732343036591,-56.1733826826819,-56.1734782644759,-56.1736528945371,-56.173734864311,-56.1737979560157,-56.1739936669488,-56.173994758345,-56.1740193627008,-56.1740554162945,-56.1742288373989,-56.174424939367,-56.1745397844289,-56.1745723945801,-56.1746084881945,-56.1746326022974,-56.1746344199015,-56.1745986197718,-56.1745970214475,-56.1745953680948,-56.1747280498555,-56.1748114270219,-56.1748904611152,-56.1750055037789,-56.175247822082,-56.1753448612943,-56.1754016030575,-56.1754309623655,-56.1754362692691,-56.1754329667325,-56.175390313902,-56.1753726481247,-56.1753699325575,-56.1753661531084,-56.1753752244534,-56.1753968872921,-56.1754486123014,-56.1755277322722,-56.1757030085,-56.1757786908646,-56.1758690699755,-56.175927726893,-56.1759571095464,-56.1759685162625,-56.1759485451295,-56.1759223557897,-56.1759140356654,-56.1759193417352,-56.1759573788519,-56.176025563183,-56.1761427261069,-56.176182241486,-56.1762457200569,-56.1762715292007,-56.1762982388088,-56.176336270923,-56.1763728748005,-56.1764202567366,-56.1765389904706,-56.1766292953765,-56.1766845855577,-56.1767711051781,-56.176861004875,-56.1769544105467,-56.17704783873,-56.1771066573976,-56.1771137252094,-56.1770799127714,-56.177021653559,-56.1770010987917,-56.1769909360505,-56.1769117793941,-56.17681869222,-56.1767255716953,-56.1767085337417,-56.176695001763,-56.1766606648879,-56.1766469728265,-56.1766333266222,-56.1766025749294,-56.1765642093099,-56.1765615862905,-56.1765643894028,-56.176571610627,-56.1765842930009,-56.1765935619478,-56.1766018070334,-56.1766073223778,-56.1766128727403,-56.1766170407231,-56.1766205441966,-56.1766223226138,-56.1766237600218,-56.1766245329204,-56.1766242994666,-56.1766223242813,-56.1766176176873,-56.1766115287138,-56.1766068221198,-56.1766193077256,-56.1766378639622,-56.1766457680385,-56.176654354967,-56.1766991914237,-56.1767917566619,-56.1768847529558,-56.1769362486802,-56.1769870190304,-56.177003419155,-56.1770177898997,-56.1770465138801,-56.1770677106451,-56.1770841107698,-56.1771063138871,-56.1772050581454,-56.1773007675052,-56.1773349701444,-56.1773718850156,-56.1774095002481,-56.1774228471314,-56.1774769717115,-56.1775167255469,-56.1775828688254,-56.1776490479557,-56.1777155497523,-56.1777864729959,-56.177823564625,-56.1779247509761,-56.1779962253372,-56.1780619158822,-56.1781225229722,-56.1781726038001,-56.1781940882135,-56.1782159136361,-56.1782787143574,-56.1783320018391,-56.1784222058596,-56.1784978640452,-56.1785823817998,-56.1786699919826,-56.1787455426127,-56.1788101359251,-56.1789643004317,-56.1790735817909,-56.1791805677996,-56.1792911056402,-56.1793258210438,-56.1793226944313,-56.1793360679951,-56.1793518211194,-56.1793675967552,-56.1793847189189,-56.1794026965238,-56.1794354492485,-56.1794817206118,-56.1794972961445,-56.1795313878932,-56.1795539320198,-56.1795616418293,-56.1795788773847,-56.1795766495691,-56.1795846895489,-56.1796054060663,-56.1796000207889,-56.1795701387113,-56.1794969901534,-56.1794462531537,-56.1794201997173,-56.179387255227,-56.1793416241939,-56.1792792203439,-56.1791704934374,-56.179097945189,-56.1790483421075,-56.1789969105829,-56.1788889790865,-56.1788556952545,-56.1788393484908,-56.178815448665,-56.1787215710833,-56.1786852123321,-56.1786569744358,-56.1786028323467,-56.178524099242,-56.1784686731573,-56.1784123691199,-56.1783579102007,-56.1782915701541,-56.1782641143278,-56.1782644778486,-56.1782647313127,-56.1782545777429,-56.1782680138389,-56.1782832450273,-56.1783023515477,-56.1783152040094,-56.1783401960651,-56.1783767390779,-56.1784341019948,-56.1784951843298,-56.1785747161798,-56.1786269422808,-56.1786812344473,-56.1787344844097,-56.1787686386906,-56.1787646007748,-56.1786826318346,-56.1785777210628,-56.1784494549127,-56.1784049844781,-56.1783643952119,-56.1783204033575,-56.178272621215,-56.1782064245757,-56.178160348313,-56.1781750467267,-56.1782571499027,-56.1783151606537,-56.1784031360248,-56.1784869976077,-56.1785545299359,-56.1786122913916,-56.1786724048937,-56.1787502500404,-56.1788184835635,-56.1788866995776,-56.1790069757738,-56.179122076801,-56.1792259878906,-56.179350018523,-56.1794586170301,-56.1795896887938,-56.1797143097307,-56.1798522642107,-56.1799776430384,-56.1801074766636,-56.1802336825845,-56.1803427830171,-56.1804660224081,-56.180612527131,-56.1806769699492,-56.1807891186204,-56.180825993888,-56.1808809910014,-56.1809264940518,-56.1809758090682,-56.1810809441223,-56.1811345780327,-56.1811826753377,-56.1812482053832,-56.1813130709194,-56.1813854636708,-56.1814643418503,-56.1815439391507,-56.1816546704243,-56.1817116239634,-56.1817679196632,-56.1818897383215,-56.1820068703962,-56.1821274154811,-56.1822725365737,-56.1823944106773,-56.1825146326789,-56.1826303811233,-56.1827412774821,-56.1828757805988,-56.182984434551,-56.1830893340671,-56.1832031448455,-56.1833207288199,-56.1834294382175,-56.1835371237537,-56.1836502337541,-56.1837571634838,-56.1838784656258,-56.183982756703,-56.1840557558088,-56.1841298527725,-56.1841991528874,-56.1842687944283,-56.1843492665548,-56.1844557172875,-56.1845723711989,-56.1846708605341,-56.1847884563896,-56.1847898248037,-56.1848323323509,-56.1849949247456,-56.185103618927,-56.1852207622575,-56.1853294564388,-56.1854751055121,-56.1855931425327,-56.1857588071368,-56.1858825858685,-56.1859971298376,-56.1861108183655,-56.1862305203072,-56.1863059904791,-56.1863955029451,-56.1865489120621,-56.1866593124359,-56.1868156750031,-56.186958239595,-56.1870645541898,-56.187142265726,-56.1872905218974,-56.1874456640843,-56.1875780064642,-56.1876965308976,-56.1877175040578,-56.1877861642071,-56.1879242381237,-56.1880304587899,-56.188191378968,-56.1883185794644,-56.1883776412783,-56.1884462767795,-56.1886389536479,-56.1887076006134,-56.1887554483105,-56.1888347600469,-56.1890724009378,-56.1891889879397,-56.1893067226168,-56.189444819045,-56.1896175108149,-56.1897520401951,-56.1898679049495,-56.1899816152595,-56.190187047873,-56.1902624380037,-56.1903940750589,-56.1905497190785,-56.1906323775409,-56.1907554222483,-56.1907887902903,-56.1908374074468,-56.190896537525,-56.1910330508451,-56.1911114629509,-56.1911555144194,-56.1912372061332,-56.1913544803645,-56.1914069624309,-56.191461587269,-56.191544652191,-56.1915768066906,-56.1915734766398,-56.1916081566085,-56.1917104451947,-56.1918157124003,-56.1918894741912,-56.191964243585,-56.192013077103,-56.192069033878,-56.1920970966841,-56.1920844434919,-56.1920440109731,-56.1919988243359,-56.1919758158031,-56.1919789053131,-56.1920070098073,-56.1921162140434,-56.1921848390184,-56.1922671477171,-56.1923851748367,-56.1925506931154,-56.1926638681493,-56.1928300280089,-56.1929445441511,-56.1930610379799,-56.1931900149133,-56.1933189118054,-56.1934920773613,-56.1936205673769,-56.1937113550318,-56.1938108413394,-56.1938979400084,-56.1939358045361,-56.193912920651,-56.1939042036554,-56.1938462200017,-56.1937477158673,-56.1936409216241,-56.193506042897,-56.1934119814705,-56.1932534034377,-56.1931119300596,-56.192960140111,-56.1928293626657,-56.1926562183708,-56.1925534883069,-56.1924613578762,-56.1924212592797,-56.192365889891,-56.1922873010273,-56.1921299336189,-56.191972547034,-56.1918160909289,-56.1916916650926,-56.1916023569508,-56.1914778231422,-56.1913945251833,-56.1913126713025,-56.1912095714646,-56.1911347282827,-56.1910639109271,-56.1909790013037,-56.1909005520954,-56.190877116259,-56.1907959381433,-56.1907417030896,-56.1906630777488,-56.1905283309648,-56.1904229528686,-56.1903115051839,-56.1901709447766,-56.1900625897285,-56.1899538884601,-56.1898575325169,-56.1897537710878,-56.1896475352576,-56.1895560678772,-56.1895610842142,-56.1895340552747,-56.1894773872996,-56.1894429951877,-56.1894266475902,-56.1894140337932,-56.189409333244,-56.1893876260074,-56.1893680434082,-56.1893120976805,-56.1892673087484,-56.189182131487,-56.1890309568557,-56.1889446569319,-56.1887891472524,-56.1886803335302,-56.188566554539,-56.188475102479,-56.1884331427143,-56.1883737451022,-56.1883260557159,-56.1883026535427,-56.1882857487828,-56.1882423502552,-56.188217151322,-56.1882150451316,-56.1882317937693,-56.1882053992195,-56.1882460046399,-56.1883674065208,-56.1884160749537,-56.1884007993673,-56.1883846671934,-56.1883619535002,-56.1883699646109,-56.1883343761528,-56.1883539063292,-56.1883672877095,-56.1883372178267,-56.1882708231686,-56.1882788368848,-56.1882738282601,-56.1882475970236,-56.1883063050092,-56.1883357106953,-56.1884546692327,-56.1885725947374,-56.1887555508634,-56.1888602190101,-56.1890323907201,-56.1890739536135,-56.1892747813522,-56.1893659177286,-56.1894219311995,-56.1894932154626,-56.1894949601123,-56.1894588792128,-56.1894255090863,-56.1893931747023,-56.1893752260708,-56.1893862788543,-56.1894423104596,-56.189535549587,-56.1896425662366,-56.1897540383089,-56.1898827440608,-56.1899723014978,-56.1900744518877,-56.1902220015245,-56.1903471179253,-56.1905484953224,-56.1906146823734,-56.1906972995646,-56.1907782431843,-56.1908462515913,-56.1908341853684,-56.1908188578803,-56.1908135409716,-56.1907506445759,-56.1907127637899,-56.1906823556076,-56.1907065324512,-56.1907319432645,-56.1907329438275,-56.1907350696686,-56.190745421674,-56.1907754588316,-56.1908000340057,-56.1907618893335,-56.1907162526725,-56.1907070698117,-56.1907239647748,-56.1907462470997,-56.1908007335331,-56.1908579888945,-56.1909353496247,-56.1910119712238,-56.1910888400337,-56.1911601714044,-56.1912543011996,-56.1913589768501,-56.1913263579444,-56.1913349944818,-56.1913043336693,-56.1912847047961,-56.191250840248,-56.1912198188328,-56.1911367897626,-56.1910992537376,-56.1910585748418,-56.191032980809,-56.1909957386856,-56.1910423473062,-56.191082307498,-56.1911025212561,-56.1911271877272,-56.1911580778247,-56.1912139403845,-56.1912565202607,-56.1913190800243,-56.1913409312936,-56.1912975134852,-56.1912222284088,-56.1911718857791,-56.1911211833806,-56.1910498240788,-56.1909879296583,-56.1909308902416,-56.1908767539888,-56.1908254429431,-56.1908092195762,-56.1907971708624,-56.1907715568193,-56.190721554365,-56.1906927055286,-56.1906683796498,-56.1906378374401,-56.1905539402138,-56.1904802955667,-56.1904818359445,-56.1905306719638,-56.1905428257318,-56.1905450971115,-56.1905645929994,-56.1906199563433,-56.1906481577625,-56.190659973648,-56.190669737225,-56.1907005001735,-56.1907382688185,-56.190776842045,-56.19084796831,-56.1909112046726,-56.1909902391827,-56.1910345858034,-56.1911137566338,-56.1911496230477,-56.1911424885349,-56.1911226061977,-56.1911078281597,-56.1910612174547,-56.1910350193603,-56.1910012536131,-56.1909636554728,-56.1909348985588,-56.190896491668,-56.190846710578,-56.1908119764147,-56.1908058040648,-56.1907918889717,-56.1907428142877,-56.1906962365163,-56.1906841231858,-56.1906732513289,-56.1906584637026,-56.1906419310096,-56.1906016769162,-56.1905464186264,-56.1904887136581,-56.1904730947698,-56.1904543200872,-56.1904629972705,-56.1904711791985,-56.190494322384,-56.1905125838853,-56.1905504990641,-56.1905748710084,-56.190598353744,-56.1906774887226,-56.1907117816167,-56.1907447863464,-56.190751405385,-56.1909088426211,-56.191019333354,-56.1911363120162,-56.1912437115716,-56.1913030759373,-56.1913543152794,-56.1913983471544,-56.1914040638527,-56.1914151199712,-56.1914360591034,-56.1915305315753,-56.1915313736763,-56.1915341409367,-56.1915280311191,-56.1914960279476,-56.1914383415305,-56.1913731433228,-56.1912744457553,-56.1911949064015,-56.1912553584115,-56.1913229432667,-56.1913605188954,-56.1913629497324,-56.1913653705642,-56.1913097510465,-56.1912678077486,-56.1912176510481,-56.1911548228127,-56.1910587616048,-56.190942820561,-56.1908203544855,-56.1907074677252,-56.1905754598537,-56.1904672778115,-56.1903509386457,-56.1902590677239,-56.1901911918852,-56.1901650769587,-56.190143442468,-56.1901472517242,-56.1901447525186,-56.1901429601359,-56.1901144068686,-56.1900707168365,-56.1900037520927,-56.1899037227967,-56.1898258499274,-56.1897490013362,-56.1896650009317,-56.1895967634483,-56.1894886508168,-56.1894237898664,-56.189367825379,-56.1892873324084,-56.1891882508929,-56.1890936827467,-56.1890113695665,-56.1889119459995,-56.188825478802,-56.188736279779,-56.1886388482811,-56.1885442512658,-56.1884880464462,-56.1884465998628,-56.1883650479085,-56.188286965035,-56.1882120873562,-56.1881244372049,-56.1880441172922,-56.1879480668191,-56.1879187791626,-56.1879318343851,-56.1877591818021,-56.1877479828494,-56.1877493432385,-56.1876966763372,-56.1876176966991,-56.187573142289,-56.187498099525,-56.1874323655202,-56.1872870360355,-56.1871727593104,-56.1870470192091,-56.1869915332237,-56.1869271412391,-56.186813933011,-56.1867042154893,-56.1865805680233,-56.1864725328276,-56.1863571357102,-56.1862389822754,-56.186086458094,-56.1860250513208,-56.1859392847971,-56.1858405719092,-56.1857557007431,-56.1856834834988,-56.1855839357011,-56.1855432453411,-56.1855122129827,-56.1854562883076,-56.1853830384475,-56.1853058061168,-56.185241989038,-56.1851789604909,-56.185098593627,-56.1850450947863,-56.1849829919249,-56.1849311416427,-56.184878347332,-56.1848324163526,-56.1847535608931,-56.1847857772996,-56.1848137779903,-56.1848400592525,-56.1848548989891,-56.184943268105,-56.1849292085624,-56.1849042679916,-56.1848320146871,-56.1848537890417,-56.1848348052929,-56.1848830526753,-56.1849179802717,-56.1849550093686,-56.1849987911146,-56.1850386531308,-56.1850835271068,-56.1851273555436,-56.1851893621053,-56.1852571009983,-56.1853216344882,-56.1854068826195,-56.1854960877916,-56.1856031082973,-56.1857084631523,-56.1857899147423,-56.1858445278035,-56.1858689651982,-56.1858940470919,-56.1859308226204,-56.1859543509004,-56.1859117412172,-56.1858809213643,-56.1858659596898,-56.1858912320984,-56.1859083117402,-56.1859188049643,-56.1860603043975,-56.1861652984415,-56.1862514808046,-56.1863184134485,-56.1863813305839,-56.1864323449142,-56.1864724031774,-56.1864793564509,-56.1865270141542,-56.1865727569637,-56.1866270522047,-56.1866502225917,-56.186647889722,-56.186643988387,-56.1866027667634,-56.1865678014913,-56.1865281884056,-56.1864882660458,-56.1864496917249,-56.1864017288643,-56.1863634895078,-56.186329294581,-56.1862833574525,-56.1862184362627,-56.1861443088666,-56.1860621094951,-56.1859800518634,-56.1858437077973,-56.1857715650706,-56.1856787406361,-56.1855884908629,-56.1855383363511,-56.1854778350448,-56.1854033101521,-56.1853420817,-56.1852725914871,-56.1852076388227,-56.1851511292626,-56.185086314586,-56.1850533146505,-56.1850061953498,-56.1848864250396,-56.1847925570461,-56.1846890642972,-56.1845844855716,-56.1845159568963,-56.1844515609774,-56.1843361981485,-56.1842082527888,-56.1841245152282,-56.1840301140431,-56.1839652753958,-56.1839883014376,-56.1840410521841,-56.1841016594825,-56.1841853643179,-56.1842708131778,-56.1843607937497,-56.1844365744985,-56.1845370540266,-56.1845498716787,-56.1845615326926,-56.1845149603407,-56.184381170717,-56.1865939164699,-56.1895263014842,-56.1902226806248,-56.1908523701634,-56.1921247351046,-56.1946290308006,-56.1980926220633,-56.1997170865078,-56.1999961162439,-56.20090782727,-56.1939339073077,-56.1924235229471,-56.1928418170054,-56.1940661434219,-56.1958662399487,-56.1962468368113,-56.2031545251758,-56.2037749409139,-56.2043222477078,-56.2047329978223,-56.2072636084423,-56.2086262661998,-56.2092162754827,-56.2095600961331,-56.2096663992897,-56.2101051522325,-56.2101270999462,-56.2105413095197,-56.2105507489668,-56.2106253478518,-56.2106901388868,-56.2116148209194,-56.2117732515364,-56.2119707993945,-56.2124763601251,-56.2129963549664,-56.2138050203491,-56.2146255168335,-56.2159720629485,-56.2167700178075,-56.2186995862687,-56.2198474648602,-56.2199508955365,-56.2199551086966,-56.2201331811061],&#34;lat&#34;:[-34.8096611551165,-34.8082598853951,-34.8080245572935,-34.8078320637739,-34.8076741269038,-34.804504937664,-34.8036426713614,-34.8034307707917,-34.8026678222079,-34.8023488070095,-34.8024473881041,-34.800686366278,-34.8001262869785,-34.7990671699931,-34.7989451858093,-34.7982899556507,-34.7961874110883,-34.7950903906398,-34.7945498215048,-34.7939772795636,-34.7938476886062,-34.7931706925647,-34.7930006959145,-34.7927955358265,-34.7918448865007,-34.7905014403178,-34.7898477431894,-34.7892391226416,-34.7873817113937,-34.786705469305,-34.7860750241684,-34.7865033847436,-34.7859457543893,-34.7844906674103,-34.7827936452106,-34.7807319824919,-34.7806023050084,-34.778523812232,-34.7769569405351,-34.7767915213093,-34.7765118099493,-34.7760768996162,-34.7739554740763,-34.7736545370401,-34.7716659914916,-34.770280180816,-34.7687460685914,-34.7684185302715,-34.7681598658838,-34.7676964172967,-34.7676498891611,-34.7676791775621,-34.7676611454368,-34.7676525457054,-34.7674816361972,-34.7672310810097,-34.7671176973334,-34.7669646459575,-34.7667879920736,-34.7666710561259,-34.7665183722923,-34.7663878125511,-34.7662175191379,-34.7661197658579,-34.7661180939081,-34.7661175968927,-34.765732437972,-34.7656026757297,-34.7655476841283,-34.7655231379446,-34.7655107772593,-34.7655250271095,-34.7655322021839,-34.7655313872923,-34.7655297768919,-34.7654566132227,-34.765414459369,-34.765357173517,-34.7652520035834,-34.7651952777816,-34.7649779013643,-34.7647609608202,-34.7646733426637,-34.7645684914753,-34.7643838678362,-34.7641915229655,-34.7640391539295,-34.7638710310679,-34.7637177756369,-34.7636123972605,-34.7635060561828,-34.7633885695211,-34.7629097751806,-34.7628216109366,-34.76259927524,-34.7621877827701,-34.7619135245302,-34.7618360850394,-34.7617114942532,-34.7615660224372,-34.7612724359319,-34.760939160804,-34.7607319999345,-34.7603220755061,-34.7601975312241,-34.7600754960899,-34.7599293109363,-34.7597376092951,-34.7595242558123,-34.7592467831218,-34.7591213278892,-34.7589958183673,-34.758835414926,-34.7587171012781,-34.7586196696818,-34.7584805281701,-34.7581628453912,-34.7579670818993,-34.7576959950026,-34.7572480770416,-34.7569447747642,-34.7568157510226,-34.7566854824899,-34.7565395359502,-34.7563463301697,-34.7560860764036,-34.7558871241295,-34.7556499550927,-34.7554273367488,-34.7551262656438,-34.7550248335653,-34.7548988465472,-34.754669567838,-34.7536576620227,-34.7535726690793,-34.7534901923153,-34.7533670003745,-34.7533085599589,-34.75258375947,-34.7522180591246,-34.7515933420057,-34.751530731431,-34.751223450682,-34.7510945458518,-34.750975355293,-34.7508853599684,-34.7505729537003,-34.7502617875836,-34.7500873267869,-34.7499880509688,-34.7498577544361,-34.7497354337155,-34.7493765748642,-34.7492508181423,-34.7491978747274,-34.7489695873316,-34.7488677700774,-34.7487177221529,-34.7485491783151,-34.7484534954822,-34.7483881796531,-34.7482626276839,-34.7481704472838,-34.7481716439015,-34.7481687462007,-34.748162419879,-34.7481844552835,-34.7481545098096,-34.7481061715295,-34.7480166380667,-34.7479899081102,-34.7478160421305,-34.7476866814721,-34.7475288790101,-34.7474746782018,-34.7473640542727,-34.7472626372241,-34.7471962009416,-34.7471175184874,-34.7470317537254,-34.7470077354861,-34.7469295983986,-34.7468775089488,-34.7468002565816,-34.7467749984243,-34.7467161004141,-34.7466483765233,-34.7465889807101,-34.7465203659893,-34.7464220295211,-34.7463458405492,-34.7462714213391,-34.7461327641241,-34.7460790621288,-34.7460242454315,-34.7459419208613,-34.7458533868227,-34.7457388824544,-34.7456688553517,-34.745529501406,-34.7453624907906,-34.7452765272915,-34.7451282921272,-34.7449572347036,-34.7447928901615,-34.7446977659343,-34.7444462048536,-34.7442458002241,-34.7441194944853,-34.7440328933851,-34.7438839964829,-34.743677496125,-34.7434935815132,-34.7433906405594,-34.7433095634685,-34.7431977765206,-34.7431569946186,-34.7430413557831,-34.74287056649,-34.7426257451061,-34.7424224326907,-34.7423716389651,-34.7422995482797,-34.7421416794047,-34.7420942992192,-34.7420186552734,-34.7419757440883,-34.7419338954693,-34.7419049984644,-34.7418571071301,-34.7418593069532,-34.7418342853241,-34.7418006399694,-34.7417173328851,-34.7416695320962,-34.7415923359791,-34.7413052537958,-34.7412481795042,-34.741228730649,-34.7412357525601,-34.7411282101963,-34.7410408665708,-34.7408855330051,-34.7405829025554,-34.7404292183166,-34.7402910048737,-34.7401911003499,-34.7401410353485,-34.7400009874203,-34.739890597859,-34.7398112597908,-34.7396082539998,-34.7390455697012,-34.7389579574212,-34.7388646999719,-34.7385894319569,-34.7383934310111,-34.7381661882543,-34.7379575578636,-34.7379212253683,-34.7378152821729,-34.7377469775521,-34.7376400572996,-34.7374303236754,-34.737238114609,-34.7372142870638,-34.7370910650986,-34.7370433351869,-34.7370380727425,-34.7369652254611,-34.7367703855932,-34.7364795686476,-34.7361991798255,-34.7358863223758,-34.7357201749352,-34.735617632841,-34.7355588808372,-34.735389258973,-34.7352723248423,-34.7351945222406,-34.7349360775148,-34.7347892165833,-34.7346915344426,-34.7345101995867,-34.7342754283511,-34.7341867740145,-34.7341071383071,-34.7339750471623,-34.7339117468528,-34.7338307722709,-34.7337397267456,-34.7335888015096,-34.7334494037974,-34.7333594326157,-34.7330523646446,-34.7329328878643,-34.7328673339175,-34.7326697762914,-34.7325782066911,-34.7322885570253,-34.7321040096854,-34.7320372485437,-34.7319317459868,-34.7317779656008,-34.7316591855119,-34.7315272699585,-34.7313747246112,-34.7312769832395,-34.7311588786504,-34.7309403281816,-34.7309072710667,-34.7308253644421,-34.73041814743,-34.7303592712697,-34.7302686391738,-34.7302257826482,-34.730084710509,-34.7300032243475,-34.7298710220622,-34.7297358356718,-34.7296572083528,-34.7295939796416,-34.7295082998288,-34.7293926773259,-34.7292613347059,-34.7291057590435,-34.7290541708551,-34.7289550823347,-34.7287645737883,-34.7285253018525,-34.7284722216445,-34.7283221733872,-34.7282699326796,-34.7282088506455,-34.7281288920861,-34.7280431539556,-34.7280119223327,-34.7279726045951,-34.7278741548573,-34.7278192360763,-34.7277340715164,-34.7276717789326,-34.727612213033,-34.7275276609133,-34.7273928039257,-34.7273472621121,-34.7273163568593,-34.7273062398844,-34.7269918939298,-34.7269981480484,-34.7269780464988,-34.7269647135216,-34.7269378275971,-34.726907220019,-34.72684106295,-34.7267843267238,-34.7267961266605,-34.7267946694357,-34.7267879863994,-34.7267725546701,-34.7267473009578,-34.72672947773,-34.726698054229,-34.7266452985326,-34.7266105204289,-34.7264966732623,-34.7264648734302,-34.7263184912624,-34.7262304451308,-34.7261175869237,-34.7261027846422,-34.7260702215094,-34.726012667643,-34.7259473191928,-34.7258253384488,-34.7257935590243,-34.7257246247922,-34.7256924069843,-34.7256190909449,-34.7254845992709,-34.7254090145877,-34.7253242054149,-34.7253131243583,-34.725333155758,-34.7252001477621,-34.7251249842628,-34.7250601629282,-34.7249644614734,-34.7247564302324,-34.7241931812415,-34.7239227624,-34.7238540470132,-34.7236619539107,-34.7234912217415,-34.7233134513689,-34.7231278894207,-34.7229374153978,-34.72280280787,-34.7225683308177,-34.7224178609754,-34.7222749313025,-34.7220496552345,-34.7218984452614,-34.7216858055215,-34.7215743916405,-34.7214516676484,-34.7213441525205,-34.7214488014516,-34.7215149655973,-34.7216639329283,-34.7217087068813,-34.7217862720082,-34.7218274279936,-34.7218653573507,-34.7218772727077,-34.7219209127466,-34.7220144551242,-34.7220215911379,-34.722117957094,-34.722195039268,-34.7222827863288,-34.722313174029,-34.7223883453895,-34.7224784441888,-34.7224723914115,-34.7224577621612,-34.7224155952184,-34.7221888791511,-34.7220355843575,-34.7220017425323,-34.721946220881,-34.7219279710748,-34.7220079980209,-34.7219918284295,-34.7219657593971,-34.7221685274318,-34.7222250191479,-34.7222311267125,-34.722227977797,-34.7221790066968,-34.7221247115674,-34.7219560146804,-34.7219115423261,-34.7219156731191,-34.7218162476705,-34.7216990798012,-34.7216716347475,-34.7216896055109,-34.7217040003149,-34.7217631873342,-34.7216268018521,-34.7213221660908,-34.7212330688951,-34.7211237143776,-34.7210500136176,-34.7209465452131,-34.7208949883029,-34.720850785988,-34.7207069730879,-34.7202091040684,-34.7203821953383,-34.7196208791908,-34.7195090445299,-34.7195756620975,-34.7198695309232,-34.7200578090399,-34.7202132465342,-34.7204976948381,-34.7206339761891,-34.7207407653788,-34.7208619878284,-34.7210730722266,-34.7212449266515,-34.7213344555327,-34.7215287627079,-34.72179174497,-34.7219808958533,-34.7222016096811,-34.7223818359617,-34.722482568965,-34.7226162368482,-34.7227831362559,-34.7229275840847,-34.7230991125463,-34.7231984170935,-34.7232841679841,-34.7234737190738,-34.7235684879485,-34.7236542254989,-34.7237896019826,-34.7238844775791,-34.7239749509052,-34.7240926516064,-34.7241546887676,-34.724237459621,-34.7243143926306,-34.7244544115086,-34.7246033683295,-34.7247341824603,-34.724862811177,-34.7249732390813,-34.7250810219962,-34.7251896840408,-34.7253293694135,-34.7254169057878,-34.7255726148613,-34.7257032155488,-34.7258879908421,-34.7260186448905,-34.7261718038785,-34.7262441518004,-34.7264240673105,-34.7265636326212,-34.7266942333087,-34.7268972179931,-34.7270371434896,-34.7271054602624,-34.7272402749163,-34.727389285098,-34.7275518222559,-34.7277188817461,-34.7278046859975,-34.7279357002316,-34.7280441294847,-34.7281570277092,-34.7283286762327,-34.728495802424,-34.7285770843431,-34.7288461651073,-34.7293619434927,-34.7294503327569,-34.7300412100997,-34.7304808219238,-34.7309493733893,-34.7325331287492,-34.7330984819007,-34.7338605231554,-34.7350668425783,-34.7344404011602,-34.7326733201089,-34.7321318390609,-34.7323167699979,-34.732762843046,-34.7331208550185,-34.7333175947422,-34.7338039745907,-34.7341985896048,-34.7346852215699,-34.7352326507393,-34.7354672166681,-34.7355260177865,-34.7356230381218,-34.7359678025923,-34.7361374901045,-34.7364557208909,-34.7365736750562,-34.7366834249904,-34.7368431740437,-34.7376384775354,-34.7380659646681,-34.7382091184962,-34.738267161764,-34.7383676535902,-34.7384384901224,-34.738550267769,-34.738599880022,-34.7387455151297,-34.7388444728314,-34.7389298768764,-34.7390648931745,-34.7391003648014,-34.7391367435629,-34.7392130629227,-34.7393029092588,-34.7394199029287,-34.7395468750782,-34.7396226074687,-34.7397171895804,-34.739811825053,-34.739919934141,-34.7400236142781,-34.7400720125717,-34.7401359922343,-34.7402644051268,-34.7403507429868,-34.7404513548749,-34.74055052602,-34.7406675730508,-34.7407667041753,-34.7409255727745,-34.7410147520999,-34.7411019170531,-34.741217216516,-34.7412897205749,-34.7413387725389,-34.7414068876676,-34.7414840207805,-34.7415465997207,-34.7416455174017,-34.7417003456781,-34.7417512385915,-34.7418164722342,-34.7419199522681,-34.7420369592783,-34.7421224300244,-34.7422123564018,-34.7423112474024,-34.7424211707593,-34.7425454882064,-34.7426118957878,-34.7426799575557,-34.742809864552,-34.7429371168459,-34.7430804174164,-34.7431973710657,-34.7432284804429,-34.7432642588948,-34.7432941943333,-34.7433423124824,-34.7433858682785,-34.743445832537,-34.7435380934516,-34.7436203625466,-34.7436912791201,-34.7437875687791,-34.7439226117575,-34.7440560405702,-34.7441307724447,-34.744269703919,-34.7442785019659,-34.7443098648072,-34.7443778065131,-34.744434729203,-34.7445418244347,-34.7446068179535,-34.7446816965703,-34.7447396597968,-34.7447718497313,-34.7448003577669,-34.7449571186125,-34.7449868139271,-34.745047551918,-34.7450687094961,-34.7451358641295,-34.7452395576069,-34.7453383418858,-34.7453614071145,-34.7454755993396,-34.7456321200614,-34.7456525439278,-34.7457573579831,-34.7457853324103,-34.7458301421865,-34.7459444144529,-34.7460819120306,-34.746218329051,-34.7463172467321,-34.7464163778565,-34.7465380672816,-34.7466596233044,-34.746758634367,-34.7468711990861,-34.7469748925635,-34.7470693679536,-34.7472614003229,-34.7473948596338,-34.7474621705319,-34.7474968817667,-34.747518172747,-34.7476917556015,-34.747804467063,-34.7479532371208,-34.7480884668623,-34.748255246208,-34.7484221189352,-34.7485711157767,-34.7487005158449,-34.7488165623597,-34.7489489773162,-34.7490955062182,-34.749243956111,-34.749557456377,-34.7495476327248,-34.7496466037667,-34.7497189210626,-34.7497589150218,-34.7498629553447,-34.7499140750418,-34.7499267349041,-34.7499838176765,-34.7500964624369,-34.7502088270529,-34.7503395211219,-34.750429434159,-34.7504954281938,-34.7505505366146,-34.7506139426481,-34.750673373298,-34.7507342847115,-34.7507931150518,-34.7508927397642,-34.7509904968467,-34.7510691240634,-34.7510881205271,-34.7511200703377,-34.751167321373,-34.7512098099521,-34.7510858793712,-34.751085425804,-34.7510744868292,-34.7510786356355,-34.7511036618755,-34.7510061048962,-34.7509732212706,-34.7509745419517,-34.7509886158767,-34.7510112141979,-34.7510367073453,-34.7510962847376,-34.751126033413,-34.7511416147821,-34.7512786454523,-34.7513159580287,-34.7513398236702,-34.7513565122769,-34.7514450779525,-34.7514653550766,-34.7514935296069,-34.7515401936728,-34.7515798407864,-34.7516124175871,-34.7516748631252,-34.7517634288008,-34.7519433215761,-34.7520715210252,-34.7521947178943,-34.7522477719223,-34.7523085365935,-34.7523536531947,-34.7524126569577,-34.7524563594962,-34.7525276495957,-34.7526053830181,-34.7526577166747,-34.7527207091615,-34.7528765628725,-34.752979322535,-34.7530445028168,-34.7530841499305,-34.7531548664008,-34.7532545311338,-34.7533717782678,-34.7533829973871,-34.7533785817765,-34.7533955105071,-34.7534230580474,-34.7534923471149,-34.7536338867772,-34.7536812178537,-34.7537616193188,-34.7538071361263,-34.7538354440588,-34.7539120569033,-34.7539715809347,-34.7540453256334,-34.7541247666031,-34.7541729914739,-34.7542156668161,-34.7543836868016,-34.7544749205198,-34.7545091381667,-34.7545546949949,-34.7545947689954,-34.7546007053903,-34.7545981173889,-34.7546493971686,-34.7547148976155,-34.7547519967484,-34.7547776499785,-34.7548146824104,-34.754885919149,-34.7549070900674,-34.7549341440198,-34.7549521666479,-34.7549656669436,-34.7549791538992,-34.754992654195,-34.7550061411505,-34.7550196547866,-34.7550421730665,-34.7550601956945,-34.7550827139745,-34.7551007366025,-34.7551187592306,-34.7551412908507,-34.7551683448031,-34.7551863674312,-34.7552044167397,-34.7552179570561,-34.7552359930244,-34.7552777212113,-34.7553170348197,-34.7553305351155,-34.7553440354113,-34.7553754649536,-34.7553932341176,-34.755433548242,-34.755460642215,-34.7554873493219,-34.7554918182933,-34.7555007829166,-34.7555142298516,-34.7555231811346,-34.755527650106,-34.7555320923971,-34.755558866205,-34.7555946579971,-34.7556126005839,-34.7556260208384,-34.7556439367447,-34.7556529147082,-34.7557023535384,-34.7557428010649,-34.7558102225025,-34.7558866619243,-34.755958592354,-34.7560040958213,-34.7559988664577,-34.755953523073,-34.7559037507374,-34.7558585007342,-34.7558222687151,-34.7557996036928,-34.7557950413399,-34.7557904656467,-34.7557778991659,-34.7557878109443,-34.7558259639541,-34.7558855280062,-34.7559520689897,-34.7560210378921,-34.7560925547752,-34.7561313747957,-34.7561774518921,-34.7561969686241,-34.7562165920777,-34.7562618287408,-34.7563186580491,-34.7563983658231,-34.756485450735,-34.7565846352203,-34.756683966448,-34.756791768711,-34.7569049604202,-34.756992912446,-34.7570855869073,-34.7571272217127,-34.7571996057097,-34.7572515791804,-34.7573510838308,-34.7574581390419,-34.7575447703866,-34.7576485172248,-34.7577049063061,-34.7578463792673,-34.7578947909011,-34.7579550619844,-34.7580364773058,-34.7581058997754,-34.7581534442953,-34.7581877286433,-34.7582235871364,-34.7583163016183,-34.758408255708,-34.758491085092,-34.758565229997,-34.7586731256416,-34.7587493783004,-34.7588332082003,-34.7588930390566,-34.7590566834522,-34.7590954767922,-34.759108350098,-34.7591516524301,-34.7592818395709,-34.7593734868358,-34.7594451504612,-34.759508516474,-34.759666304516,-34.7597676634561,-34.7598579633594,-34.7599508779445,-34.760058520125,-34.7601436040049,-34.7602400537465,-34.7603484563192,-34.7604504689297,-34.7605540556853,-34.7606441021246,-34.7607340818628,-34.7608150436168,-34.7609004610021,-34.7609859450884,-34.7610759381668,-34.7611614355934,-34.7612514820326,-34.7613506398375,-34.7614229838138,-34.7614773585229,-34.7614957279965,-34.7615311996235,-34.761563576321,-34.7616583451957,-34.7617441094265,-34.76183442267,-34.7619201869008,-34.7620102867009,-34.7621407673264,-34.7622217290805,-34.7622845881652,-34.7623429515981,-34.7624148820277,-34.7625183754019,-34.7626128641322,-34.7627027905095,-34.7627792299313,-34.7628511470208,-34.7628823631197,-34.7629000789229,-34.7629358573747,-34.7629670601335,-34.7629802802848,-34.762979920099,-34.7629876440825,-34.7630017313476,-34.7630284251143,-34.763059627873,-34.763091284199,-34.7630905238068,-34.7630946859534,-34.7631123217152,-34.7631214597613,-34.763180250081,-34.7632289151788,-34.7633234039091,-34.7633885975311,-34.7634069269841,-34.7633918658833,-34.7633714019962,-34.7633090498396,-34.763223232248,-34.7631419236484,-34.7630651107007,-34.7629882710725,-34.7629204494285,-34.762870557031,-34.7628613389437,-34.762852227578,-34.7628428760886,-34.7628560695595,-34.7628692496901,-34.7628823764599,-34.7628865386064,-34.7629042410694,-34.7629129255482,-34.7629036140794,-34.7629077362053,-34.7629344833328,-34.7629612304603,-34.7629969688915,-34.7630372029746,-34.7630774637381,-34.7631177378418,-34.763148967281,-34.7631712054164,-34.7632024215154,-34.7632471912709,-34.7633191083604,-34.7634090347378,-34.7634944788034,-34.7635799228691,-34.763642795294,-34.7637146056618,-34.7637773847053,-34.7638221811412,-34.763948046053,-34.7639473123413,-34.7639929892313,-34.764022871309,-34.7640428416082,-34.7640643727123,-34.7640843430115,-34.7641111168194,-34.7641568470704,-34.7641848348377,-34.7641859954363,-34.7642070462927,-34.7642379288863,-34.7642499350782,-34.7642637955597,-34.7642667304067,-34.7642566318653,-34.7642648494366,-34.7642805375274,-34.7642852199422,-34.7642887150781,-34.7642891152845,-34.7642773091957,-34.7642626483014,-34.7642241617863,-34.7641607290724,-34.764111023438,-34.7640339837066,-34.7639212188842,-34.7638938314265,-34.7638077870512,-34.7636874983486,-34.7636139270726,-34.7635311910702,-34.7634196402073,-34.7633397590105,-34.7632743652853,-34.7632312363759,-34.7631508749314,-34.7631198989564,-34.7631018229674,-34.7631355870471,-34.7631948709547,-34.7632001803595,-34.7631990464414,-34.7632123066133,-34.7633071021685,-34.7633073156119,-34.7633292869431,-34.7634044990652,-34.763491197111,-34.7636202503337,-34.7636981705191,-34.7637777315508,-34.7638970997787,-34.7640554614499,-34.7641583411743,-34.7642474404584,-34.7643754931651,-34.7645390441792,-34.7646416037384,-34.7647272212269,-34.7648574350482,-34.764919800545,-34.7649482819002,-34.7649937186665,-34.7649966801938,-34.7651411280226,-34.7651989845273,-34.7651947823601,-34.7652076423257,-34.7654463654413,-34.7656265650415,-34.7658654749201,-34.7659917800589,-34.7660400182699,-34.766091137967,-34.7662250737078,-34.7663473767826,-34.7664048464211,-34.7664392374908,-34.7664553658086,-34.7664243631531,-34.7664275114434,-34.7664722678588,-34.766453764983,-34.7664799384814,-34.7665306446318,-34.7665834318556,-34.7666667014665,-34.7668184597321,-34.7669337458548,-34.7670330637422,-34.7671573144882,-34.7672775231495,-34.7673790421721,-34.7674735175622,-34.7675898842421,-34.7677488729033,-34.7678871575536,-34.76803708821,-34.7682178080785,-34.7683089884359,-34.7684266224361,-34.7685532343998,-34.7686618370756,-34.7687343144541,-34.7687979072505,-34.7688838315639,-34.7690553733657,-34.7691294382295,-34.7691638026188,-34.7692271286109,-34.7693087040148,-34.7693857704266,-34.7694875028926,-34.7695619679628,-34.769615408857,-34.7696899406283,-34.7697285205249,-34.769788778268,-34.7698740088903,-34.7699702852091,-34.7700425224637,-34.7701291404682,-34.7702091550671,-34.7702465210043,-34.7703590457029,-34.7704061566658,-34.7704486519151,-34.7705146793004,-34.7705663125957,-34.7706209207585,-34.7706692923717,-34.7707143356016,-34.7707534290965,-34.770786372753,-34.770823411855,-34.7708604642973,-34.7708791005751,-34.7708954156559,-34.7709404121951,-34.7709977350913,-34.7710570390092,-34.7711056774266,-34.7711998126412,-34.7712919268135,-34.7714267363382,-34.7715430229769,-34.7717086950849,-34.7717821796494,-34.7718377149571,-34.771929989212,-34.7720016861879,-34.7720899183582,-34.7721024714988,-34.7721109625445,-34.7721336809277,-34.7721582936211,-34.7721543782685,-34.7721724475873,-34.772313827167,-34.7724139187868,-34.7724879236197,-34.7725828925976,-34.7726729123564,-34.7728501504293,-34.7729836392729,-34.7730279954819,-34.7730610125096,-34.7732178200459,-34.7733206730899,-34.773429295776,-34.7735822279804,-34.773678050732,-34.7737679104083,-34.7738855310683,-34.7739661259665,-34.7740474145557,-34.7741397288312,-34.7742052426183,-34.7742323032409,-34.7743164332956,-34.7744079871789,-34.7744488749324,-34.7744571458647,-34.7744928642855,-34.774568970202,-34.7746182489496,-34.7746417210548,-34.7746757852892,-34.7747297531218,-34.7747825336755,-34.7748149704039,-34.7748933374865,-34.7749725049818,-34.7750844493811,-34.7751879761058,-34.7752882878391,-34.7754063487262,-34.7755181663934,-34.775600975767,-34.7757025281401,-34.7757663277099,-34.77585642751,-34.7759278376714,-34.7759762226247,-34.7760279359613,-34.7760926960264,-34.776132903429,-34.7762044403224,-34.7762363301021,-34.7762761306283,-34.7763660436654,-34.776530061587,-34.7766002511188,-34.7766904309602,-34.7768887532401,-34.7770331610482,-34.7772000271053,-34.7773578618381,-34.7775065185041,-34.777623632236,-34.777653919045,-34.7777182677086,-34.7778264101471,-34.777988573779,-34.7781507574213,-34.7782545309399,-34.7783628267909,-34.778452993292,-34.7785746360263,-34.7786782294521,-34.7788087834488,-34.7789483354193,-34.7790788160448,-34.7791957830344,-34.7792902117337,-34.7793666311451,-34.7794249545573,-34.779474233305,-34.7795628723517,-34.7796024527644,-34.7796980620725,-34.7797307322547,-34.7797354880407,-34.7797448995612,-34.7798985254567,-34.7800257644103,-34.7801636621944,-34.780306909404,-34.780376665379,-34.7805212199294,-34.7806236194061,-34.7807307279781,-34.7808726144859,-34.7809891612587,-34.7810402742857,-34.7810937351902,-34.7811984025032,-34.7812815920728,-34.7814430886941,-34.7815523517105,-34.7816786901998,-34.7818005263672,-34.7819629834838,-34.7821028756298,-34.7822607837337,-34.7823781175791,-34.7825179830446,-34.7827208476671,-34.7828605997408,-34.7831040452919,-34.7832303837812,-34.7833459100277,-34.7834964543339,-34.7836227327923,-34.783726633043,-34.7838730485532,-34.7839566983602,-34.7841233176234,-34.7842539850119,-34.7843891880729,-34.7844792745328,-34.7846284181166,-34.7847043906309,-34.7848030681881,-34.7848846102415,-34.7849746633508,-34.7850392166426,-34.7851051439764,-34.7852131129921,-34.785312084034,-34.7854360079447,-34.785505537136,-34.785577420875,-34.7856629583221,-34.7857531181532,-34.7858695115136,-34.7859560294664,-34.7861589808003,-34.7862627142983,-34.7863529475005,-34.7864296670668,-34.7864883506647,-34.7865493087691,-34.7866283161819,-34.7867320763603,-34.7867610513035,-34.7868100165561,-34.7868494568965,-34.7868964878182,-34.7869397634699,-34.7870344389631,-34.7870834242261,-34.7871381924715,-34.787228445684,-34.7873232479093,-34.7874045431687,-34.7874516608018,-34.787508296677,-34.7875662665735,-34.7876209280973,-34.7876788046123,-34.7877244681622,-34.7878099922692,-34.7878581304286,-34.7879045076798,-34.7879673801047,-34.7880132170774,-34.7880573264924,-34.7881136488726,-34.78817854901,-34.7882278144174,-34.7882770598145,-34.7883218229,-34.7883661057378,-34.7884914770616,-34.7886258330191,-34.7886999579139,-34.7888125960042,-34.7889207050922,-34.7890498316861,-34.7890962089373,-34.789186342088,-34.789276501919,-34.7893802487573,-34.7894660463386,-34.7895518706004,-34.7896287702595,-34.7897146278718,-34.7898000852777,-34.7898765180294,-34.7899620421363,-34.7900523553798,-34.7901423084376,-34.7902326083409,-34.7903273705455,-34.7904176571086,-34.7904989590381,-34.790553320407,-34.7905897058385,-34.7906170932963,-34.7906489630657,-34.7906808861959,-34.790694719997,-34.7907175851225,-34.7907944647713,-34.7908938093392,-34.7909456494078,-34.7909885915541,-34.7910832270267,-34.7911514755576,-34.7912004207999,-34.7913131789521,-34.7913989365128,-34.7914712404685,-34.7915571514417,-34.7916339977399,-34.791710830698,-34.7917921926584,-34.7918870349043,-34.7920000198402,-34.7920858374319,-34.7921761306651,-34.7922800242456,-34.7923479059206,-34.7924338102237,-34.7925106631921,-34.7925785448671,-34.7926418908695,-34.792705236872,-34.7927595982409,-34.7928022602428,-34.7928392259736,-34.7928734302803,-34.7929361426227,-34.7930106343733,-34.7931131472418,-34.7931656876716,-34.7932423071863,-34.7933339411109,-34.793393445132,-34.7935367990632,-34.793649964092,-34.7937491485773,-34.7938302704139,-34.7939115590032,-34.7940334552015,-34.7940780048436,-34.7941530368728,-34.7942187641034,-34.7942459181074,-34.7942672691187,-34.7942907679043,-34.7943011332499,-34.7943330897307,-34.7943892787088,-34.7944437334592,-34.7945051051101,-34.794540883562,-34.7945790966028,-34.7946182301182,-34.7946687428356,-34.7947176747377,-34.7947860233202,-34.7948646838874,-34.7949323187685,-34.7949898684483,-34.79506692819,-34.7950984311035,-34.7951477298615,-34.7952365756815,-34.7953529423615,-34.7954756323025,-34.795577017923,-34.7956406707504,-34.7957218392777,-34.7957758738114,-34.7958864575089,-34.7959787851246,-34.7960727936072,-34.7961545824545,-34.7962949948687,-34.7964209931826,-34.796530502993,-34.7966332893359,-34.7966913259335,-34.7968398091767,-34.7968979925167,-34.7970011990763,-34.7971696192682,-34.7972088061446,-34.7972863061133,-34.7974050740316,-34.7974910517058,-34.7975822053828,-34.7976899809654,-34.7977881049038,-34.7978985618693,-34.7979639822749,-34.7980565300041,-34.7981576354802,-34.7982539518196,-34.7983218201544,-34.7983928301094,-34.7984780340512,-34.7985619039717,-34.7986267440781,-34.7987182245903,-34.7988151012187,-34.7989145258278,-34.799060307678,-34.7991535824488,-34.7992797141648,-34.799370941213,-34.7994152307208,-34.7995638873869,-34.7996643458626,-34.7997260710291,-34.7998198327178,-34.7998894019297,-34.7999465113825,-34.7999908609214,-34.800090125448,-34.8001706069544,-34.8002338062145,-34.8003464643152,-34.8004468961104,-34.8005432924911,-34.8006577115,-34.8007065433505,-34.8007605178532,-34.8008507844059,-34.8009544512029,-34.8010423832184,-34.8011420012606,-34.8012423997053,-34.8013394030658,-34.8014600252737,-34.8015561882007,-34.8016421792152,-34.8017577054617,-34.8018214716809,-34.8018942758945,-34.8019750175351,-34.8020556124333,-34.8021895348338,-34.8022603913763,-34.8023515650636,-34.8024402107805,-34.8025091996931,-34.8025924159432,-34.8026949288117,-34.8027791455778,-34.8028747348757,-34.8029640742836,-34.8030418010359,-34.8031309536809,-34.8031763437564,-34.8032070195767,-34.8032849797828,-34.8033106196726,-34.8033388809143,-34.8033674423108,-34.80338615863,-34.803403741031,-34.8034352506146,-34.8034928136347,-34.8035304863968,-34.8036614539401,-34.8037562828458,-34.8038041475309,-34.8039138174238,-34.8039687190713,-34.8040445448433,-34.8041219514305,-34.8042034601333,-34.8042721088705,-34.8043631291453,-34.8044362535241,-34.8045027811674,-34.8046381176306,-34.8047587331684,-34.8037975708057,-34.8025192515438,-34.8022311362887,-34.802535033016,-34.8022709701654,-34.8023694809699,-34.8050366231501,-34.8062744481948,-34.8065820268209,-34.807587005114,-34.810791757887,-34.8114988825692,-34.8120781613181,-34.8138005362576,-34.8161006900109,-34.8165528223486,-34.8126521994908,-34.8122672321601,-34.8119576188064,-34.8117184406115,-34.8102828220824,-34.809494542213,-34.8091502446499,-34.8106004658995,-34.8108525358984,-34.8120873794054,-34.8121450896529,-34.8133188531283,-34.8133455046397,-34.8134588183662,-34.8135572339431,-34.8149344971255,-34.8151835891409,-34.8154877930858,-34.8162704834059,-34.8170711563334,-34.8165698311205,-34.8160611554501,-34.815254812932,-34.8147430823527,-34.8135278889798,-34.8128341886521,-34.8115538541948,-34.8111067878725,-34.8096611551165]}]],[[{&#34;lng&#34;:[-56.2359231388955,-56.2358134156417,-56.2357702667221,-56.2357638667548,-56.2358120749503,-56.2358536030341,-56.235883565153,-56.2358366209426,-56.2358370911852,-56.2358342330445,-56.2358276596544,-56.235808116242,-56.2357781141025,-56.2357435696204,-56.2357280349421,-56.2357161955028,-56.2356937706044,-56.235635560584,-56.235572931618,-56.2355266911039,-56.2355050766234,-56.2354989866205,-56.2355026487046,-56.2354739108265,-56.2354202828931,-56.2353389842987,-56.2352648560689,-56.2351211652972,-56.2350006664862,-56.2348918837175,-56.2347950504447,-56.2346780334294,-56.2345664125303,-56.2344339675584,-56.2343259084962,-56.2342429690556,-56.2341034170851,-56.2339997969788,-56.2338961601974,-56.2337949846852,-56.2330289027284,-56.23292606324,-56.2326105784218,-56.2329891318624,-56.2329697957809,-56.2328906883165,-56.2328392751347,-56.2326852123473,-56.232542925633,-56.2324954578193,-56.2324281731189,-56.2323993449181,-56.2323995850419,-56.232353728059,-56.2322595861743,-56.2321500596887,-56.2320579655267,-56.2320041189009,-56.2319192805471,-56.23186703706,-56.2317771873889,-56.2316871242744,-56.2315949900917,-56.2314991206494,-56.2314127294286,-56.2313055107999,-56.231214740654,-56.2311274089482,-56.2310280643803,-56.2309246843979,-56.230830525838,-56.2307499576202,-56.2306649537815,-56.2305576084208,-56.2304875856416,-56.2304236626749,-56.2303532330192,-56.230272891585,-56.2302203740138,-56.2310010404434,-56.2322567659598,-56.2329657395806,-56.2333981622307,-56.2335734987971,-56.2339647001043,-56.2343400766757,-56.2348182546421,-56.2353272243452,-56.234628224747,-56.2342065721136,-56.2341299613011,-56.2337524610562,-56.2333754151793,-56.2325509865086,-56.2323741493234,-56.2313201180474,-56.2311465748404,-56.2304986563064,-56.2294532667879,-56.2292858809395,-56.2256243011385,-56.2255668989138,-56.2250231655735,-56.2243566484604,-56.2243273863028,-56.2238621520693,-56.2239488448802,-56.2239893069755,-56.2240040792211,-56.2237730327749,-56.2224965678026,-56.222434095584,-56.2222629639938,-56.222206668294,-56.2221492086606,-56.2220317247378,-56.2219535129808,-56.2219302990966,-56.2219154083552,-56.2218561066656,-56.2218447549793,-56.221795119381,-56.2217101795189,-56.2216130918989,-56.221414947157,-56.2213494552288,-56.221065522215,-56.220942580933,-56.2209795787858,-56.2208183330363,-56.2210313187282,-56.221005555492,-56.2209149160113,-56.2208972369134,-56.2208252960344,-56.2205446702436,-56.2202737552513,-56.2202579717947,-56.2202477720963,-56.2201331811061,-56.2199551086966,-56.2199508955365,-56.2198474648602,-56.2200165221129,-56.2200550152981,-56.2206528457481,-56.2206701558697,-56.220788957144,-56.2206444993101,-56.2205468731556,-56.2205284626774,-56.220524010001,-56.2205046438497,-56.220469809218,-56.2203900900667,-56.2202788107151,-56.2201678601618,-56.2201454441548,-56.2207256144766,-56.2212557111944,-56.2220702679488,-56.2228395747305,-56.223622761943,-56.2241357398322,-56.2249073077495,-56.2256994165198,-56.226477460851,-56.2269914559314,-56.2272847004984,-56.2277758487957,-56.228063665564,-56.2283032191079,-56.2288724226607,-56.2296468453837,-56.229926872185,-56.2304207939783,-56.2305654349785,-56.2306501594581,-56.2310520178977,-56.231210418425,-56.2313332962704,-56.231637361944,-56.2320012479441,-56.2320370807093,-56.2322308880406,-56.2328040136161,-56.2335459996106,-56.235638251972,-56.2361779269629,-56.2367516295026,-56.2374299093089,-56.2379769340888,-56.2383726821877,-56.2400332309943,-56.2408518343402,-56.2408310366906,-56.240783322083,-56.2407102043743,-56.2406679992747,-56.2406497665383,-56.2406310602243,-56.2406138280039,-56.2405821049769,-56.2405909728836,-56.240574294282,-56.2405211168571,-56.2404133379394,-56.2403661202547,-56.2403267099298,-56.2403129394947,-56.2402830507469,-56.240277047651,-56.2402680129916,-56.2402559267584,-56.2402383576976,-56.2402204651366,-56.2401562119996,-56.2401035281625,-56.2400171202665,-56.2399467639819,-56.2398677832495,-56.2397635294832,-56.2396798730061,-56.2395961998537,-56.2395554054817,-56.2396120313517,-56.2395934784502,-56.2396083727983,-56.239591464078,-56.2395691759168,-56.2395601879481,-56.2396202289128,-56.2396505145318,-56.2396100603352,-56.2395464275182,-56.2394726361287,-56.2394247147478,-56.2393414017811,-56.2392230874301,-56.2391274614466,-56.2390553976148,-56.2389636136128,-56.2387915515426,-56.2387480257619,-56.2386722300055,-56.2385800391269,-56.238482065266,-56.2384007833468,-56.2382881252461,-56.2382356364615,-56.2381487403246,-56.2380751439242,-56.2380611339066,-56.2380089612741,-56.2379288846053,-56.2378600133774,-56.2378027533344,-56.2376411478029,-56.2375222106407,-56.2375243967887,-56.2375477600875,-56.2375281218922,-56.2375919462088,-56.2376025416732,-56.2376018813326,-56.2376015644479,-56.2385029488239,-56.2385295132157,-56.2394709022571,-56.2395002532687,-56.2398794826165,-56.2398933531032,-56.2402907180345,-56.2408659446936,-56.2418442273428,-56.2419075154554,-56.2419431869216,-56.2422946681895,-56.2421380240708,-56.2407878811009,-56.2398950689146,-56.2392448884273,-56.2396462890193,-56.2397286248153,-56.239810877235,-56.2398791057555,-56.2399309224787,-56.2399587901841,-56.2399586367717,-56.2399209873549,-56.2398424235042,-56.2397535943594,-56.239682497693,-56.2396397489797,-56.2396229069606,-56.2395872819212,-56.239537659663,-56.2394571114556,-56.2393176395263,-56.2392195689488,-56.2391601082834,-56.2391122369283,-56.2390513221797,-56.239006482388,-56.2389587777855,-56.2389004910589,-56.2388399631764,-56.2387931156826,-56.2388094534869,-56.2388083967122,-56.23880615917,-56.2388042857935,-56.238748862929,-56.2386942486969,-56.2386674511878,-56.2386729404303,-56.2386785471536,-56.2387135302087,-56.2387761599187,-56.2387416624802,-56.2386775060598,-56.2386353309757,-56.238611075133,-56.2385983452345,-56.2385462917225,-56.2384884752384,-56.2384241087096,-56.2383635374715,-56.2383005149692,-56.2382464771005,-56.2381866562493,-56.2381414529368,-56.2381123212462,-56.2380869014699,-56.2380751854276,-56.2380344644268,-56.2379842051734,-56.2379458954161,-56.2378893829379,-56.237844906667,-56.237805489672,-56.2378090314986,-56.2378266572553,-56.237845223497,-56.2379134286722,-56.2379436442551,-56.2379870733193,-56.2380129366577,-56.2380522869516,-56.2380726007613,-56.2380772531607,-56.2380801746674,-56.2380933848135,-56.238028974929,-56.2380268204846,-56.2379393853921,-56.237836585709,-56.2377225835818,-56.2374333718061,-56.2373553942129,-56.2373037709228,-56.2372470483361,-56.2371768588043,-56.2371016967079,-56.2370781812471,-56.2370745093534,-56.2370674223651,-56.2370454843845,-56.237053465167,-56.2370471919317,-56.2370172731685,-56.2369602104065,-56.2369013733961,-56.2368449309539,-56.236787374604,-56.2367383359802,-56.2367013969297,-56.236645294663,-56.2366003314744,-56.2365752151879,-56.2365722903462,-56.2365738511511,-56.2365720568924,-56.2365814250572,-56.2366019556453,-56.2366035131152,-56.2366432702857,-56.236537745864,-56.2364604960243,-56.2364102434411,-56.2363830127309,-56.23636325254,-56.2363422350341,-56.2363311393118,-56.2363115291983,-56.2362841951014,-56.2362577114431,-56.2362548533024,-56.2362400890215,-56.2361847137964,-56.2361200971386,-56.2360569145537,-56.236056744466,-56.2360047409798,-56.2359231388955],&#34;lat&#34;:[-34.7870055840819,-34.7869067864628,-34.7868077687302,-34.7866815903234,-34.7865507361719,-34.7864514449649,-34.7863612117626,-34.7862531960562,-34.7861360089531,-34.7860368644884,-34.785946744678,-34.7858566715583,-34.7857215552087,-34.7855639205792,-34.7854558048211,-34.7853341554167,-34.7852125393629,-34.785104557007,-34.7850010969833,-34.7848975835988,-34.7848030081572,-34.7845843590885,-34.7845776652754,-34.7845463057938,-34.7844877855888,-34.7844069238864,-34.7843260355035,-34.7841912860097,-34.7841240646753,-34.7840793416105,-34.7840345851951,-34.7839808774967,-34.7839136294818,-34.783846448168,-34.7838107364173,-34.7837433950209,-34.7836897606936,-34.7836540356026,-34.7836138015196,-34.7835778629851,-34.7839563390403,-34.7838253438985,-34.7834393171826,-34.7832596493861,-34.7832318045139,-34.7831816186318,-34.7831508761104,-34.7830960478341,-34.7830298003352,-34.7829990444736,-34.7829471977349,-34.7829377862145,-34.7829376061216,-34.7829066168063,-34.7828528357367,-34.7827945923657,-34.7827408046261,-34.782713547866,-34.7826809001077,-34.782651271785,-34.7825659211008,-34.7825076176989,-34.7824448119751,-34.7823865285835,-34.7823101825432,-34.782233903204,-34.7821710908101,-34.7821127807381,-34.7820409837105,-34.7819827203293,-34.7819244235975,-34.781852573209,-34.7817807294907,-34.7816774095393,-34.7815965011461,-34.7815065680987,-34.7814121393994,-34.7812411312061,-34.7811055025204,-34.7807115047308,-34.7800320834218,-34.7797876088926,-34.7796897133658,-34.7796650175551,-34.779628780153,-34.7796130818546,-34.7796393084287,-34.7797173262982,-34.7794975361899,-34.7793649512467,-34.7793408614524,-34.7792481862867,-34.7791965571377,-34.7789903588662,-34.7788396046395,-34.7786275220301,-34.7784890452058,-34.7783338323397,-34.7779494223652,-34.7780445293316,-34.7767915213093,-34.7769569405351,-34.778523812232,-34.7806023050084,-34.7807319824919,-34.7827936452106,-34.7844906674103,-34.7859457543893,-34.7865033847436,-34.7860750241684,-34.786705469305,-34.7873817113937,-34.7892391226416,-34.7898477431894,-34.7905014403178,-34.7918448865007,-34.7927955358265,-34.7930006959145,-34.7931706925647,-34.7938476886062,-34.7939772795636,-34.7945498215048,-34.7950903906398,-34.7961874110883,-34.7982899556507,-34.7989451858093,-34.7990671699931,-34.8001262869785,-34.800686366278,-34.8024473881041,-34.8023488070095,-34.8026678222079,-34.8034307707917,-34.8036426713614,-34.804504937664,-34.8076741269038,-34.8078320637739,-34.8080245572935,-34.8082598853951,-34.8096611551165,-34.8111067878725,-34.8115538541948,-34.8128341886521,-34.8127275028668,-34.8127048511848,-34.812332221495,-34.8123214319443,-34.8122473819229,-34.813829778005,-34.8150764873838,-34.8152954636506,-34.8153240185013,-34.8154482126732,-34.8159756380132,-34.8168251636535,-34.8180674701579,-34.8192846979134,-34.8196361866287,-34.8192784680338,-34.8189748581211,-34.818508117411,-34.8180098775053,-34.8175568268061,-34.817248754592,-34.8167689404729,-34.8162883858223,-34.8158397546013,-34.8155310820777,-34.8153549712528,-34.8150678730211,-34.8148883039139,-34.8147525405639,-34.8144300075587,-34.8139662217058,-34.8137877680841,-34.813449453669,-34.8135862412841,-34.8136811233526,-34.8141208385855,-34.814285186204,-34.8144195381421,-34.8147553019881,-34.8151368773693,-34.8151783521494,-34.8153934044071,-34.8160495961553,-34.8168043987597,-34.8156478689744,-34.8153613211943,-34.8150464788221,-34.8146813638563,-34.8143817484241,-34.8141733418563,-34.813255228224,-34.8128079989916,-34.8127291237027,-34.8126075943603,-34.8124590977768,-34.8123465597381,-34.8122474686342,-34.8121213302481,-34.8120177301522,-34.8118826204727,-34.8116662555545,-34.8115356081763,-34.811414092174,-34.8113017742488,-34.8112117878405,-34.8111127567676,-34.8110181546456,-34.8109100855783,-34.8107974341477,-34.8106938007013,-34.8105946895871,-34.8104910828211,-34.8103919850472,-34.8103110699839,-34.8102211035859,-34.8101492732078,-34.8100773894689,-34.8099875031122,-34.8098977034669,-34.8098303687406,-34.8097585316924,-34.8096550049677,-34.8095691873761,-34.8094745985942,-34.8093754007687,-34.8092672850106,-34.8091772185611,-34.8090826030988,-34.8089967721669,-34.8089020299726,-34.8087984965778,-34.8087040612084,-34.8086276818176,-34.8085331864172,-34.808465851691,-34.8084346889529,-34.8083628852552,-34.8082910081864,-34.8082372204466,-34.8081070799966,-34.8080035599419,-34.8079361985353,-34.8078688904895,-34.807806111446,-34.8077342610576,-34.8076715287049,-34.8076694719196,-34.8076339506625,-34.8076038659772,-34.8075788187199,-34.8075640065864,-34.8075390830651,-34.8074791893155,-34.8074515585053,-34.807373575579,-34.8072414257817,-34.8071479064279,-34.8071008077029,-34.807051869367,-34.8069242699912,-34.8067849781548,-34.806645719669,-34.8065789358331,-34.8066877894934,-34.8066898258922,-34.8067617880305,-34.8066588822303,-34.8049649995453,-34.804899038861,-34.8030093176167,-34.802538721585,-34.801719183231,-34.8015968515563,-34.801575224685,-34.8013081602864,-34.8011869844596,-34.8001412584853,-34.7994713363674,-34.7996058234882,-34.7990677982077,-34.7990044321949,-34.798923043554,-34.7988371859417,-34.7987468793683,-34.798647634852,-34.7985439747252,-34.7984539549663,-34.7983775955858,-34.7982967538937,-34.7982113565188,-34.7981258590922,-34.7980312703104,-34.7979367348894,-34.7978422528292,-34.7977794137549,-34.7976762071953,-34.7975908898616,-34.797509954788,-34.7974244773717,-34.7973255196701,-34.7972310242697,-34.7971094882571,-34.7969879855951,-34.7968980458776,-34.7968125617912,-34.7967326286089,-34.7966601287488,-34.7965974469379,-34.7965449666964,-34.7963882620474,-34.7963310629747,-34.7962470305986,-34.7962062797464,-34.7961646566993,-34.7961080180732,-34.7960430237409,-34.795974429545,-34.7957673160646,-34.7956592803478,-34.795597288377,-34.795564758267,-34.7954612648929,-34.795366802843,-34.7952588471675,-34.7951598894658,-34.7950474181282,-34.7949574517302,-34.7948720076645,-34.794773003272,-34.7946784478407,-34.7945748744253,-34.7944802656331,-34.7943902525444,-34.7943047817982,-34.7942192777016,-34.7941112886756,-34.7940212955972,-34.7939177622024,-34.7938005684292,-34.7937013572635,-34.7935841167996,-34.7934937568653,-34.7933854876948,-34.7932546468835,-34.7931644203514,-34.7930381018724,-34.7929298660524,-34.7928306949073,-34.7927270281103,-34.7926323392769,-34.7925153656172,-34.7924207234745,-34.7923443841043,-34.792268098095,-34.7922053724125,-34.7919616682811,-34.7918910636487,-34.7918055995727,-34.791724657829,-34.7916122065016,-34.7914592142663,-34.7913240779063,-34.7911978928295,-34.7910717210928,-34.7909095374506,-34.7907923303372,-34.7906931992127,-34.7905761121613,-34.7904951704176,-34.7904007150378,-34.7903062463179,-34.79019376164,-34.7900767346195,-34.7899912238527,-34.7898967551328,-34.7897752124501,-34.7896626143804,-34.7895499496096,-34.7894462828127,-34.7893561496621,-34.7892434448706,-34.7891081684385,-34.7890045016415,-34.7888917034686,-34.7887433069367,-34.78865342058,-34.7885679498339,-34.7884418381282,-34.7883066950982,-34.7881940836882,-34.78808595459,-34.7879823544941,-34.7878337111682,-34.7877211197687,-34.787621975304,-34.787531882174,-34.7874464314382,-34.7873564983907,-34.7872800789793,-34.7871719165305,-34.7870774344703,-34.7870055840819]}]],[[{&#34;lng&#34;:[-56.2374333718061,-56.2377225835818,-56.237836585709,-56.2379393853921,-56.2380268204846,-56.238028974929,-56.2380933848135,-56.2380801746674,-56.2380772531607,-56.2380726007613,-56.2380522869516,-56.2380129366577,-56.2379870733193,-56.2379436442551,-56.2379134286722,-56.237845223497,-56.2378266572553,-56.2378090314986,-56.237805489672,-56.237844906667,-56.2378893829379,-56.2379458954161,-56.2379842051734,-56.2380344644268,-56.2380751854276,-56.2380869014699,-56.2381123212462,-56.2381414529368,-56.2381866562493,-56.2382464771005,-56.2383005149692,-56.2383635374715,-56.2384241087096,-56.2384884752384,-56.2385462917225,-56.2385983452345,-56.238611075133,-56.2386353309757,-56.2386775060598,-56.2387416624802,-56.2387761599187,-56.2387135302087,-56.2386785471536,-56.2386674511878,-56.2386942486969,-56.238748862929,-56.2388042857935,-56.2388083967122,-56.2388094534869,-56.2387931156826,-56.2388399631764,-56.2389004910589,-56.2389587777855,-56.239006482388,-56.2390513221797,-56.2391122369283,-56.2391601082834,-56.2392195689488,-56.2393176395263,-56.2394571114556,-56.239537659663,-56.2395872819212,-56.2396229069606,-56.2396397489797,-56.239682497693,-56.2397535943594,-56.2398424235042,-56.2399209873549,-56.2399586367717,-56.2399587901841,-56.2399309224787,-56.2398791057555,-56.239810877235,-56.2397286248153,-56.2396462890193,-56.2392448884273,-56.2398950689146,-56.2407878811009,-56.2421380240708,-56.2422946681895,-56.2419431869216,-56.2419075154554,-56.2418442273428,-56.2408659446936,-56.2402907180345,-56.2398933531032,-56.2398794826165,-56.2395002532687,-56.2394709022571,-56.2385295132157,-56.2385029488239,-56.2376015644479,-56.2376018813326,-56.2376025416732,-56.2375919462088,-56.2375281218922,-56.2375477600875,-56.2375243967887,-56.2375222106407,-56.2376411478029,-56.2378027533344,-56.2378600133774,-56.2379288846053,-56.2380089612741,-56.2380611339066,-56.2380751439242,-56.2381487403246,-56.2382356364615,-56.2382881252461,-56.2384007833468,-56.238482065266,-56.2385800391269,-56.2386722300055,-56.2387480257619,-56.2387915515426,-56.2389636136128,-56.2390553976148,-56.2391274614466,-56.2392230874301,-56.2393414017811,-56.2394247147478,-56.2394726361287,-56.2395464275182,-56.2396100603352,-56.2396505145318,-56.2396202289128,-56.2395601879481,-56.2395691759168,-56.239591464078,-56.2396083727983,-56.2395934784502,-56.2396120313517,-56.2395554054817,-56.2395961998537,-56.2396798730061,-56.2397635294832,-56.2398677832495,-56.2399467639819,-56.2400171202665,-56.2401035281625,-56.2401562119996,-56.2402204651366,-56.2402383576976,-56.2402559267584,-56.2402680129916,-56.240277047651,-56.2402830507469,-56.2403129394947,-56.2403267099298,-56.2403661202547,-56.2404133379394,-56.2405211168571,-56.240574294282,-56.2405909728836,-56.2405821049769,-56.2406138280039,-56.2406310602243,-56.2406497665383,-56.2406679992747,-56.2407102043743,-56.240783322083,-56.2408310366906,-56.2408518343402,-56.2408888831902,-56.2408607820311,-56.2408728916096,-56.240873475244,-56.2408965971685,-56.2408629831663,-56.2408068909047,-56.2408640603885,-56.2408645139557,-56.2407968323839,-56.2408095222618,-56.2408784144579,-56.2408667017507,-56.2408525311092,-56.240901443001,-56.2409490275415,-56.2410075443868,-56.2410745322675,-56.2411336460874,-56.2412142543258,-56.2412997083966,-56.2413646485546,-56.2414149911843,-56.2414468642887,-56.2414606413939,-56.2414929013645,-56.2414895763164,-56.2414927279418,-56.2415052077112,-56.2415178442282,-56.2416416647523,-56.2416697659114,-56.241700268309,-56.2417009153093,-56.2417256647399,-56.2417326516766,-56.2417502040621,-56.2417561004364,-56.2417305739384,-56.2417815568982,-56.2418536707559,-56.2418821120905,-56.2419500871469,-56.2420299916891,-56.2420891288543,-56.2421779813445,-56.2422494115162,-56.2423657781961,-56.2424579824149,-56.2425001541639,-56.2425432630629,-56.2426016098205,-56.2426579888966,-56.2426777224071,-56.2427157320096,-56.24278520784,-56.2428272928777,-56.2428865400997,-56.2429292154418,-56.2430608099751,-56.2431441329469,-56.2432384082337,-56.2433156680786,-56.2433785871943,-56.2434271389003,-56.2434699009538,-56.2435532706163,-56.243673312525,-56.2437737109697,-56.2438026258819,-56.2438359230541,-56.2439147770545,-56.2439739675805,-56.244039127852,-56.2441420876177,-56.2442124505723,-56.2442348954811,-56.2443538835129,-56.2444014613834,-56.2444599848988,-56.2445347701341,-56.2445723495147,-56.244653764836,-56.2446944258059,-56.2447797231293,-56.2448389870265,-56.2448661210202,-56.2449068020004,-56.2449511648795,-56.2449918658701,-56.2450128633657,-56.2450325735307,-56.2450485551061,-56.2450632893717,-56.2450795310812,-56.245096159657,-56.2451357333996,-56.2451841917241,-56.2452136269046,-56.245244809653,-56.2452724905954,-56.2452899129139,-56.2453323014414,-56.2454447994595,-56.2454862741824,-56.2455017755102,-56.2455197914681,-56.2455318176703,-56.2455569372918,-56.245564767997,-56.2455829773881,-56.2456132463319,-56.2456359180242,-56.2456497718357,-56.2456713362903,-56.2456851234007,-56.2457093358877,-56.2457456812986,-56.2457659184021,-56.245778678316,-56.2458064392997,-56.2458264362794,-56.2458620079579,-56.2459373134616,-56.2460261526115,-56.2461025987034,-56.2461311867803,-56.2461752828551,-56.2462108078429,-56.2462921031023,-56.2463515470925,-56.2464131855476,-56.2465102822896,-56.2465592808928,-56.2465938653955,-56.2466723191895,-56.2467873118275,-56.2468073888484,-56.2468057480022,-56.2468536993986,-56.2468641781361,-56.2468915455835,-56.2469102485624,-56.2469122829449,-56.246921921249,-56.2469750086275,-56.2469946054007,-56.2470181108564,-56.2470314443996,-56.2470495070483,-56.2470588985584,-56.2470813167867,-56.2471068099342,-56.2471146406393,-56.2471237186544,-56.2471704761018,-56.2471845433566,-56.247221482407,-56.2472482161943,-56.2472584214574,-56.2473016570885,-56.2473134698473,-56.2473937779309,-56.2474345522926,-56.2474642809578,-56.2475130994681,-56.2476387442663,-56.2476657848785,-56.247687836251,-56.2477311052325,-56.2477599334333,-56.2477736071519,-56.2478059038081,-56.2478184702889,-56.2478797752388,-56.2478995721152,-56.2479176614444,-56.247927213037,-56.2479443685512,-56.247996408723,-56.2480402713441,-56.2480591744262,-56.2480735951967,-56.2481488473395,-56.2481582521898,-56.2481849859771,-56.2482030953166,-56.2482156751377,-56.2482715906414,-56.2482802284294,-56.2482991115012,-56.2483219499463,-56.2483443748447,-56.2483667530524,-56.2483714488074,-56.2483887577341,-56.2484528974793,-56.2484856276924,-56.2484950525531,-56.2485076523845,-56.2485276360239,-56.2485445914349,-56.2485589321641,-56.2485798429483,-56.2486627056827,-56.2486705563982,-56.2486825425798,-56.2487005318573,-56.2487106770895,-56.2487318746883,-56.2487909718329,-56.2488137635872,-56.2488348811447,-56.2488626421284,-56.2488727406698,-56.2488818653757,-56.2488924041441,-56.2489056576459,-56.2489112805458,-56.2489270286675,-56.2489443375942,-56.2489789754578,-56.2490191495099,-56.2490553481785,-56.249104113328,-56.2491534921272,-56.2491804860487,-56.2492009566058,-56.2492119622818,-56.2492443523195,-56.2492567787281,-56.2492669973314,-56.2494355375853,-56.2494678008909,-56.2495118369348,-56.2495441202508,-56.2495606821255,-56.2495897771305,-56.2496070593768,-56.2497488124825,-56.2498505316083,-56.2499751225297,-56.2500936169736,-56.250218581421,-56.250318432917,-56.2504091997277,-56.2504847120047,-56.250577266404,-56.2506830276145,-56.2508021290381,-56.2508986921715,-56.2510017586589,-56.251114009883,-56.2512276751698,-56.251333796566,-56.2514437265931,-56.2515429711093,-56.251666201329,-56.2517729630554,-56.2518762696666,-56.2519402026385,-56.2519687506948,-56.2520522137388,-56.2520710234394,-56.2521145325449,-56.2521576124073,-56.2521644890477,-56.2527559900276,-56.2528806076294,-56.2529814596413,-56.2531287089149,-56.2532506251235,-56.2534313516622,-56.2535362124082,-56.2536189017199,-56.2537308127686,-56.2538561507419,-56.2539862111507,-56.2541055126776,-56.2542197582636,-56.2543114788996,-56.2544928057479,-56.2546221191047,-56.2547418141679,-56.2548650377174,-56.2549815111191,-56.2550995986865,-56.2552596745751,-56.2553335726862,-56.2554595376496,-56.2555695877385,-56.2556998615908,-56.2558224581503,-56.2559445211013,-56.2560815584416,-56.2561793221942,-56.2562158210176,-56.2564013033422,-56.2564127692555,-56.256482245086,-56.2566166944249,-56.2567222221816,-56.2568072660409,-56.2568359341591,-56.2568851595459,-56.2569692896006,-56.2570006457718,-56.2570247181866,-56.2570580420392,-56.2570921596345,-56.2571291587159,-56.2572348392905,-56.2572988045463,-56.2573232321378,-56.2573372460318,-56.257356776104,-56.2573190633212,-56.2573386134037,-56.2573854975831,-56.2574296803692,-56.2574801063752,-56.2575295918962,-56.2576110739185,-56.2575693990924,-56.2575348012494,-56.2574877970082,-56.2575424318514,-56.2575436724912,-56.2575986608501,-56.2576609729861,-56.2576909284349,-56.2577111655384,-56.2578520582003,-56.2579454063423,-56.2580183439581,-56.2580938028742,-56.258165239716,-56.2582425929424,-56.2583283771835,-56.2584883396803,-56.2586431795352,-56.2587742004393,-56.2588701099023,-56.2589653590247,-56.2590640499221,-56.2591712718859,-56.2592747652601,-56.2593731159821,-56.2594653568864,-56.2595276556821,-56.2595357331812,-56.2595218660296,-56.2594987674504,-56.2594602609249,-56.2594166717782,-56.2593802596662,-56.2593294734745,-56.259296156292,-56.2592942619817,-56.2592540145584,-56.2591907019065,-56.2591409429111,-56.2590829196537,-56.2590413982401,-56.2590555588764,-56.2591065651817,-56.2591657223572,-56.259227587596,-56.259327692556,-56.2594452665253,-56.2595691637556,-56.259680427804,-56.2597885969229,-56.2599092391412,-56.2599891670287,-56.2600979497974,-56.2602124688578,-56.2603930486541,-56.260484635888,-56.2605351219249,-56.2605612487325,-56.260643737941,-56.2607694627805,-56.2609130635057,-56.2609562791265,-56.2609840401102,-56.2610853590296,-56.2611161882624,-56.2611543346021,-56.2612118109108,-56.2612782518427,-56.2613192930087,-56.2613985605557,-56.2614262815187,-56.2615070431696,-56.2615644461071,-56.2616185139913,-56.261650590534,-56.2616843412734,-56.2617359478883,-56.2617657432545,-56.2618059840077,-56.261890841104,-56.2619969358198,-56.2621171044605,-56.2622396876798,-56.262364391993,-56.262502596602,-56.2627220497796,-56.2627943670755,-56.2629000282343,-56.2628856341442,-56.2629130549525,-56.2629945169645,-56.2629629940407,-56.2629618601226,-56.2630012537722,-56.2630597572773,-56.2631260447968,-56.2632183857527,-56.2633208385903,-56.2634317891437,-56.2635335349499,-56.2636386091394,-56.2637660415262,-56.2638725030978,-56.2639466946936,-56.2640392891136,-56.2641670216552,-56.2642950009908,-56.2644067652972,-56.26450892465,-56.2646167069027,-56.2647510828705,-56.2648637409712,-56.2649683749336,-56.2650575075683,-56.2651278238322,-56.2651950184862,-56.2652519745265,-56.2653270732568,-56.2655157972533,-56.265520906555,-56.2655940509441,-56.2656415087526,-56.2656760932554,-56.2658275246858,-56.2659631879842,-56.2661242777289,-56.2661259786061,-56.2661414665937,-56.2661606831708,-56.2661865031535,-56.2662099619185,-56.2662291985059,-56.2662346679933,-56.2662497824549,-56.2662594741198,-56.2662721273121,-56.266286014474,-56.2662962797681,-56.2663221664519,-56.2663811902253,-56.2664306290555,-56.2664673613326,-56.2664902264581,-56.2665162332037,-56.2665419598049,-56.2665624036817,-56.2665918788828,-56.2666183058452,-56.2666537441216,-56.2666837662715,-56.2667017955697,-56.2667240203649,-56.2667462451601,-56.2667582580221,-56.2668265999345,-56.2669087889881,-56.2670456462356,-56.2671367799022,-56.2673509303451,-56.2676512185447,-56.2678195120046,-56.2680925928394,-56.268124789444,-56.2682462854359,-56.2683047088997,-56.268363099013,-56.2684782117129,-56.2685675377807,-56.2687075833391,-56.2687498051139,-56.2688318074046,-56.2688819265857,-56.2689921901181,-56.2690409552675,-56.2691063275253,-56.2702770473668,-56.2713946581736,-56.2713844607785,-56.2715574474539,-56.2727789497325,-56.2756014780485,-56.2780265026776,-56.2808541943238,-56.2856870734299,-56.2888181081846,-56.2896957941631,-56.2929298020237,-56.2930463621367,-56.2942762697649,-56.2958529762461,-56.2971890091999,-56.2972817797833,-56.297398506649,-56.3066787634524,-56.3108384179671,-56.3102548304581,-56.3092543012769,-56.309384394707,-56.3094020568693,-56.309417678387,-56.3094339939673,-56.3094530436744,-56.3094710662944,-56.3094999608175,-56.3095278154605,-56.3095407154007,-56.3095539490492,-56.3095678760027,-56.3095818029565,-56.3096011595469,-56.3096239181928,-56.3096398866455,-56.3096575622462,-56.3096725168919,-56.3096843897039,-56.3097020249621,-56.3097199945645,-56.3097335751583,-56.3097471282653,-56.3097661249253,-56.3097831471916,-56.3098083868799,-56.3098288240328,-56.3098441249851,-56.3098600665134,-56.3098732865652,-56.3098844524496,-56.3098976463362,-56.3099105193094,-56.3099548626016,-56.3100776721576,-56.3101353287432,-56.3101599144373,-56.310188596382,-56.3102305778921,-56.3102694779134,-56.3102819239572,-56.3103415150807,-56.3103609247485,-56.3103817491031,-56.3104081495563,-56.3104410197926,-56.3104628712501,-56.3104874039216,-56.3105088679548,-56.3105262371353,-56.3105385500815,-56.3105523567555,-56.3105759024489,-56.3105911640473,-56.3106147493331,-56.3106494336923,-56.3106799294613,-56.3107339841047,-56.3107630523039,-56.3107935214043,-56.310818414628,-56.3108540457785,-56.3108693069838,-56.310889384041,-56.3109179322862,-56.3109451465796,-56.3109628619642,-56.3109798839747,-56.3110238270096,-56.311051774402,-56.3110892608252,-56.3111141403296,-56.3111383257737,-56.311215325826,-56.3112724614789,-56.3113165645746,-56.311395725649,-56.3114195779895,-56.3114563964712,-56.3114775408838,-56.3115027941594,-56.3115351975785,-56.311559423135,-56.3115801935919,-56.3116009511561,-56.3116248565869,-56.3116480155806,-56.3116701869836,-56.3116940662159,-56.3117250682785,-56.3117448386407,-56.3117659560674,-56.31179530493,-56.311816809206,-56.3118379535763,-56.3118741852534,-56.311897050308,-56.3119233442156,-56.3119439949144,-56.3119587488513,-56.311971795766,-56.3119801201561,-56.311980560205,-56.3119834282456,-56.3120133909157,-56.3120757826176,-56.312093938559,-56.3121175508624,-56.3121627476729,-56.3121722723436,-56.312169297507,-56.3121622540503,-56.312164068158,-56.3121679238244,-56.3121824109635,-56.3122023016585,-56.3122231522505,-56.312249445651,-56.3122715901995,-56.3122886127824,-56.3123101035334,-56.3123349965632,-56.3123612898977,-56.3123983623313,-56.31241056901,-56.3124312995796,-56.3124294853566,-56.3124239219691,-56.3124646766963,-56.3124885958299,-56.312506431757,-56.3125219061296,-56.3125339254025,-56.3125807233906,-56.312650359124,-56.3126851906606,-56.312780413072,-56.3128015305139,-56.3128278238113,-56.3128527700483,-56.3128801173752,-56.3129033565327,-56.3129317571967,-56.312952634761,-56.3130022869032,-56.3130501249735,-56.3131080618564,-56.3131716948851,-56.3131922388063,-56.3133162621983,-56.3133445707816,-56.313367448567,-56.3133998923767,-56.3134299213396,-56.3135384707848,-56.3135763702722,-56.3135999421166,-56.3136214465209,-56.3136433242803,-56.3137512069945,-56.3137836237362,-56.3138099171524,-56.313910596014,-56.3139416380217,-56.3139720006561,-56.3140064451567,-56.3140398756567,-56.3140674897417,-56.314104655794,-56.3141291886436,-56.3142051743835,-56.3142358570087,-56.3142610698997,-56.3142870031284,-56.3143722868432,-56.3143894029329,-56.3144030630585,-56.3144190580854,-56.3144336523392,-56.3144823704073,-56.3145049018562,-56.3145298615005,-56.3145554885718,-56.3145770326436,-56.314603659686,-56.3146248574644,-56.3146535385971,-56.3146914380473,-56.3147143172025,-56.3147371950158,-56.3148703174441,-56.3148976114822,-56.3149256125989,-56.3149563352855,-56.3149993837549,-56.3150222622131,-56.3150485562444,-56.3150871490474,-56.3151653364296,-56.3152124403329,-56.3152469248998,-56.3153585024906,-56.3153816744605,-56.3154154247562,-56.3154375696401,-56.3154644901796,-56.3155810172322,-56.3156066305175,-56.3156281349262,-56.3156540945132,-56.3156807222232,-56.3157008922564,-56.3157261585421,-56.3158297852893,-56.3159157897615,-56.3159313980788,-56.315952861928,-56.3159937101587,-56.3160145206109,-56.316036345483,-56.3160633194834,-56.316087558632,-56.316109783417,-56.3161350760702,-56.3161552732688,-56.3161757902863,-56.3162171587317,-56.3162438121749,-56.3162701326167,-56.3162940916488,-56.3163994790984,-56.3164255194515,-56.3164457167049,-56.3164717165693,-56.3165073082417,-56.3165264784432,-56.3165849881673,-56.3166045318998,-56.3166785699267,-56.316710426265,-56.3167340648679,-56.3167628533641,-56.3168252053488,-56.3168591430164,-56.3168800203863,-56.3169219089813,-56.3169452007088,-56.3169630367091,-56.3170190790083,-56.3170243885607,-56.3170275631216,-56.3170286835844,-56.3170281102517,-56.3170289108916,-56.3170307512033,-56.3170339529487,-56.3170487343748,-56.3170895550468,-56.3171101126571,-56.3171303359154,-56.3171488388329,-56.3172474501055,-56.317278265797,-56.3172960747347,-56.3173165920021,-56.3174079324947,-56.3174452316647,-56.3174715789281,-56.3174938033181,-56.3175122930727,-56.3175434160423,-56.3175660006682,-56.3176568875374,-56.3176896380282,-56.317715584533,-56.3177803914946,-56.3178062848939,-56.3178383280645,-56.3178659418992,-56.3178891144499,-56.3179085243396,-56.3179380107713,-56.3179876985637,-56.3180005984065,-56.3180134983021,-56.3180318007656,-56.3180497967998,-56.3180681132358,-56.3180799860334,-56.3180959271915,-56.3181064126461,-56.3181168848043,-56.3181273701927,-56.3181385364089,-56.318223806734,-56.3182568236362,-56.3182741926514,-56.3182959909707,-56.3183198161324,-56.3183422679022,-56.3183664673554,-56.3183923339942,-56.3184131178059,-56.3184706677666,-56.3185054189716,-56.3185289508919,-56.3185521225319,-56.3185841926834,-56.3186660748469,-56.3186953836042,-56.3187243851703,-56.3187523597103,-56.3187874711288,-56.3188205410435,-56.3188532513045,-56.3188788247358,-56.3189047311141,-56.3189313182596,-56.3189534495189,-56.3189895753109,-56.3190141076459,-56.3190563425082,-56.3190873456121,-56.3191278727105,-56.3191711352958,-56.3192014443557,-56.319257340001,-56.3192801651964,-56.3193482803141,-56.3193666362396,-56.3194411548726,-56.3194680881841,-56.3195055346605,-56.3195283464078,-56.3195508245302,-56.3195722621974,-56.319592672839,-56.3196650698189,-56.319683773349,-56.3197010754779,-56.3197173904577,-56.3197996595226,-56.319817682299,-56.3198295546746,-56.3198417481117,-56.319862678738,-56.3198697488373,-56.3198747382204,-56.3198783934623,-56.3198851171969,-56.3198986440339,-56.3199165600885,-56.3199334883466,-56.3199547925761,-56.3199679463783,-56.3199780849709,-56.3199882235637,-56.3200037784141,-56.3200189862517,-56.3200264032871,-56.320034433743,-56.3200424781847,-56.3200505219215,-56.3200578729957,-56.3200615281835,-56.3200621148378,-56.3200592733666,-56.3200557518939,-56.3200535770787,-56.3200527897283,-56.3200530033839,-56.320054577852,-56.3200531104477,-56.3200482275166,-56.3200395167073,-56.3200304716182,-56.3200193197687,-56.3200078468775,-56.3200026176685,-56.3199917721547,-56.3199823540404,-56.3199690668012,-56.3199617161105,-56.3199546991854,-56.3199518710496,-56.3199520981302,-56.3199537125519,-56.3199525781793,-56.3199459615973,-56.3199362765149,-56.3199286595354,-56.319918280412,-56.3199099561002,-56.3199019520925,-56.3198946548379,-56.3198546612561,-56.3198453099235,-56.3198289010108,-56.3198175222883,-56.319803101063,-56.3197937896853,-56.3197730456419,-56.3197612799208,-56.319751247942,-56.3197429503356,-56.3197281561688,-56.3197154426759,-56.3197025827318,-56.3196795975443,-56.3196389502549,-56.3196261568664,-56.3196161249454,-56.3196050926151,-56.3195940736332,-56.3195820409396,-56.3195696744975,-56.3195542263947,-56.3195418333427,-56.3195328551211,-56.3195272790314,-56.3195182741427,-56.3195062281578,-56.3194931411384,-56.3194773067275,-56.3194618452876,-56.3193826579406,-56.3193394753438,-56.3192966131605,-56.3192321933755,-56.3191608901812,-56.3191029803007,-56.3190512333526,-56.3189593857997,-56.318932652589,-56.3189131357722,-56.3188371365537,-56.3187460763939,-56.3187204226971,-56.3186971441827,-56.318674212667,-56.3186444635467,-56.3186221854598,-56.3186019887172,-56.3185978933476,-56.3185977996379,-56.318575174569,-56.3185579923018,-56.3185216539365,-56.3185018836028,-56.3184589812527,-56.3184351155929,-56.3184238168064,-56.3184026854034,-56.3184107034595,-56.3184208019125,-56.3184295398852,-56.3184490962703,-56.3184752564277,-56.3184835943906,-56.3184996556939,-56.3185258294546,-56.3185449993291,-56.3185749479694,-56.3185995468976,-56.3186036293009,-56.3186223855176,-56.31866309998,-56.3186881795747,-56.318717127995,-56.318764872837,-56.3188117233642,-56.3188878295643,-56.3189834920102,-56.3190500865286,-56.3191132918432,-56.3191815539201,-56.3192241494474,-56.3192761226551,-56.3193509878714,-56.3194581902283,-56.3195565611337,-56.319621861281,-56.319669258971,-56.3197205121215,-56.3197718855005,-56.3198440421022,-56.3198968427394,-56.3199687465752,-56.3200155174294,-56.3200693184455,-56.3201065245292,-56.3201481190321,-56.3201690364189,-56.320188420207,-56.320204121726,-56.320224105317,-56.3203070548048,-56.3203280652704,-56.3203837208837,-56.3203842140607,-56.3203847079888,-56.3203783715982,-56.3203512242968,-56.3203241833605,-56.3203042529839,-56.3202910993965,-56.3202644195074,-56.3202649125524,-56.3203486223584,-56.3203439269293,-56.320347781925,-56.3203613489677,-56.3204081735788,-56.3205272479363,-56.320643547933,-56.320707648078,-56.320931883183,-56.3211777036695,-56.3213576231729,-56.3215418781786,-56.3215874612601,-56.3216077520791,-56.3216484395461,-56.3216790422133,-56.3217050290954,-56.3217104314833,-56.3217594170835,-56.3217817083638,-56.3218319345273,-56.3219047982863,-56.3219778629702,-56.3220565303677,-56.3221633581959,-56.322230766315,-56.3223375819499,-56.3224414888626,-56.3225033869846,-56.3226214750167,-56.3227113078188,-56.3228009403623,-56.3228680285879,-56.3229295539766,-56.3229742297574,-56.323002084637,-56.3230017372882,-56.3230351284524,-56.3230401575006,-56.3230281912537,-56.3230161981362,-56.322936236883,-56.3228734577963,-56.3227541968526,-56.3227305445014,-56.3227226071735,-56.3227071059446,-56.3225475032107,-56.3224170890267,-56.3223069527024,-56.3222084749231,-56.3221274467349,-56.3220492600129,-56.3219291845888,-56.3216225730271,-56.321315454774,-56.3212138420541,-56.3210861229744,-56.3210799466544,-56.3210536392779,-56.3210299873628,-56.3210128318769,-56.3209953427046,-56.3209823630792,-56.3209757990599,-56.3208607265274,-56.3208499211179,-56.3208214000687,-56.3208070989156,-56.3207996421418,-56.3207993352143,-56.3208130084716,-56.3208267090446,-56.3208649954281,-56.3209119534104,-56.3209922080048,-56.3211180462854,-56.3212019161075,-56.3212508476652,-56.3213208171593,-56.3213908399719,-56.3214714016372,-56.3215694922774,-56.3216500538541,-56.3217341903402,-56.321821929191,-56.3218258243882,-56.3218257976065,-56.3218952333432,-56.3219780094158,-56.3220474322464,-56.3221123719936,-56.3221683476954,-56.3222422792734,-56.3223050580133,-56.3223969056605,-56.3224663551174,-56.3225402864287,-56.3226209547866,-56.3226881892127,-56.3227621606986,-56.3228608783788,-56.3229215098119,-56.3229619306484,-56.3230023379699,-56.3230315660147,-56.3230607680695,-56.3230922242397,-56.3231371808734,-56.3231888742061,-56.323247317202,-56.3232967567135,-56.3233506908397,-56.3233911383132,-56.323447220408,-56.3235055571146,-56.3235593452989,-56.323624365249,-56.3236847963021,-56.3238100874837,-56.3239130207672,-56.3239756930981,-56.3240294143724,-56.3240875644407,-56.3241926581347,-56.3242776358022,-56.3243514202395,-56.3244140390892,-56.32449890989,-56.3245524175707,-56.3246171040317,-56.3246683705097,-56.3247062164353,-56.3247417946982,-56.3247729975832,-56.3248064146409,-56.3248619505587,-56.3249041988109,-56.3249397367739,-56.3249663638555,-56.3249841066323,-56.3250085324186,-56.3250373739585,-56.3250751667308,-56.3250972582145,-56.32511941665,-56.3251235654308,-56.3251344240307,-56.3251430821408,-56.3251539006466,-56.3251690552308,-56.3251932280626,-56.3252151189286,-56.3252282328006,-56.3252278987085,-56.3252296730319,-56.3252313143408,-56.3252309670226,-56.3252327811767,-56.3252324746298,-56.3252322344948,-56.3252320345019,-56.3252340485852,-56.3252271115826,-56.325231300417,-56.3252310874373,-56.3252284861897,-56.3252349694138,-56.3252435469867,-56.3252544196431,-56.3252318344293,-56.3252337951291,-56.3252380373057,-56.3252645581399,-56.3252685199832,-56.3252814468153,-56.325283341116,-56.3252966676606,-56.3253299783596,-56.3253453597359,-56.3253639021354,-56.3253721734302,-56.3253837927901,-56.3254026692348,-56.3254337915411,-56.3254514542559,-56.3254915152675,-56.3255360976088,-56.3255896189988,-56.3256319742749,-56.3256877892829,-56.3257660698504,-56.3258890533945,-56.3259740301644,-56.3260008973365,-56.3260815389643,-56.3261241215245,-56.3261847122901,-56.326238553264,-56.3263148193037,-56.3263731432351,-56.3264247562367,-56.3264696326436,-56.3265324784662,-56.3265774351009,-56.3266313563175,-56.3267122781268,-56.3267909719953,-56.3268517097698,-56.3268900360851,-56.3269170500789,-56.3269418093707,-56.3269845784927,-56.3270519997899,-56.3271036933105,-56.3271548794102,-56.3271984221773,-56.327254650709,-56.3273063177357,-56.3274053420305,-56.327425632567,-56.3274639057207,-56.327580779303,-56.3276347801086,-56.3276617939922,-56.3276882345004,-56.3277205046345,-56.3277797081201,-56.3278278663858,-56.3278694480119,-56.3279198206091,-56.3279679789491,-56.328009573307,-56.3280511282565,-56.3280795827831,-56.3281211779737,-56.3281802351948,-56.3282283661148,-56.3282699345136,-56.3283070736015,-56.3283529775639,-56.3284023496791,-56.3284825905588,-56.3285477707897,-56.3286129510801,-56.3286505440254,-56.3286768777707,-56.3287057061315,-56.3287307722319,-56.3287670842419,-56.3288447239807,-56.3289010329622,-56.3289723232556,-56.3290311134175,-56.3290823665865,-56.3291148903749,-56.3291736404591,-56.3292186368267,-56.3292586174608,-56.3293010659425,-56.3293472631937,-56.3293746777092,-56.3294058670133,-56.3294307995628,-56.3294557462231,-56.3294781708812,-56.3295030641047,-56.3295429376953,-56.3295802900943,-56.3296089186816,-56.3296475513061,-56.3296799820377,-56.3297024066007,-56.3297298475907,-56.3297510185859,-56.3297946139991,-56.3298469078382,-56.3298929449674,-56.3299153299986,-56.3299352332139,-56.3299847925352,-56.3300800944781,-56.3301034669374,-56.3301106970491,-56.3301092965092,-56.3301103635884,-56.3301099632664,-56.330108349471,-56.3301104302476,-56.3301076423763,-56.3301124583249,-56.3301231570618,-56.3301176207393,-56.3301160731557,-56.3301107774114,-56.3301093099985,-56.3301077489346,-56.3301037870481,-56.3301010786998,-56.3301009323876,-56.3301007987032,-56.3300994248262,-56.3300991581575,-56.3301001985689,-56.3300871114495,-56.3300844572394,-56.3300817756635,-56.3300778137703,-56.3300712765975,-56.3300722775997,-56.3300707433709,-56.3300717836855,-56.3300777467989,-56.3300849642322,-56.3300935152994,-56.3301033066115,-56.3301131520746,-56.3301267053514,-56.330139005074,-56.3301588550225,-56.3301749434809,-56.33019482081,-56.3302096951487,-56.330229585082,-56.3303043437102,-56.3303380007622,-56.3303892009645,-56.3304367053916,-56.3304680151007,-56.3304980839274,-56.3305269519485,-56.3305633441233,-56.3305959876597,-56.3306361947403,-56.3306670907629,-56.3306877146689,-56.330712901057,-56.3307443975082,-56.3307884998592,-56.330839019288,-56.3308907261991,-56.3308983299245,-56.330917286799,-56.3309438332451,-56.3309539589248,-56.330969126258,-56.3309868958878,-56.3310136164882,-56.3310351073433,-56.3310642288539,-56.3310844794735,-56.3311009279199,-56.3311466050801,-56.3311859052658,-56.3312201362995,-56.3312455093371,-56.3313035523604,-56.3313288055609,-56.3313439462719,-56.3313591010815,-56.3313742418582,-56.3313923314295,-56.3314108207205,-56.3314296842498,-56.3315108325857,-56.3315419820238,-56.331562178901,-56.3315902335727,-56.3316186478531,-56.3317382697609,-56.3317669512026,-56.3317956327001,-56.3318177910032,-56.3318434042952,-56.331963479276,-56.3319860111249,-56.332007889009,-56.3320283663466,-56.3320488569789,-56.3321583935497,-56.3322071381081,-56.3322306702622,-56.3322835111706,-56.3323366851335,-56.3323902059776,-56.3324440737632,-56.3324737154977,-56.3325033712711,-56.332530998409,-56.3326086786432,-56.3326693499109,-56.332701046101,-56.3327265927574,-56.3327524597231,-56.3327797272112,-56.3328110764156,-56.3328301531035,-56.3328499230686,-56.3329359005572,-56.3329631680075,-56.3330132742438,-56.3330340451578,-56.3330544816997,-56.3330827634086,-56.3331515719115,-56.3332265172897,-56.3333018362968,-56.3333256885781,-56.3333543299211,-56.3334463773553,-56.3335384112875,-56.3335926130779,-56.3336768293261,-56.333765595754,-56.3338543614781,-56.3339325483331,-56.3340530901892,-56.3341308637019,-56.3341791422423,-56.3342440286163,-56.3343092624923,-56.3343667052268,-56.3344390495821,-56.3344902893998,-56.3345787350063,-56.3346422874168,-56.3346709687153,-56.3347806658748,-56.3348582523997,-56.3348855866416,-56.3348944310902,-56.334934091402,-56.3349597313483,-56.3349980176137,-56.3350356507384,-56.3350551672519,-56.3351163056887,-56.3351884761956,-56.3352751204702,-56.3353911938422,-56.3354820941658,-56.3356462856119,-56.3357691623718,-56.3359152909601,-56.3360699835127,-56.3361965828197,-56.3362972478896,-56.336701509225,-56.3371406427333,-56.3374224015186,-56.3375452645808,-56.3377256913047,-56.3380757783721,-56.3382449323473,-56.3384332694912,-56.338578224165,-56.3388231772538,-56.3389645433766,-56.3390927695283,-56.339289670955,-56.339381197878,-56.3394523283839,-56.3395367852287,-56.3395928672338,-56.3396355157858,-56.3396720682354,-56.3396808729412,-56.3396972815402,-56.3398000406903,-56.3399288142464,-56.3402004608905,-56.3398836973408,-56.3397043116611,-56.3394960037672,-56.3396478291997,-56.3397986938308,-56.3398309370507,-56.3398918748859,-56.340042645834,-56.3404017110948,-56.3406395936227,-56.3408067203323,-56.340998952362,-56.3414481308276,-56.3415686995773,-56.3418678404577,-56.3420313380022,-56.3421088445781,-56.34217422527,-56.3424082658832,-56.3424721125499,-56.3429665672827,-56.3430686332264,-56.3431864276134,-56.3433279673144,-56.3434858883436,-56.3436638601934,-56.3441129848307,-56.3446989874379,-56.3451865787961,-56.3455149882096,-56.3456648654847,-56.3459044025746,-56.346563742542,-56.347282939867,-56.3478790743388,-56.3484755415971,-56.3488655294933,-56.3491341749869,-56.3494034199259,-56.3495223213452,-56.3491936059076,-56.3488346351288,-56.3481774416558,-56.3467245536084,-56.3463359849588,-56.3465781631897,-56.3468470085067,-56.3470676689737,-56.3463993643118,-56.3461350946879,-56.3458339660548,-56.3456328223199,-56.3452428345265,-56.3449344888381,-56.3448057557805,-56.3443572311315,-56.3441299672591,-56.3439237409028,-56.3436892866554,-56.343485795043,-56.3433403200178,-56.3431756084051,-56.3430105499469,-56.3431611209335,-56.3429085506766,-56.342794398472,-56.342424691362,-56.3422962312025,-56.3421079246614,-56.3421378959514,-56.3431987355569,-56.3430997667012,-56.3434981670985,-56.3454808915472,-56.3463074281554,-56.346777728515,-56.3469009603526,-56.3456830091266,-56.3429796621666,-56.3426168495207,-56.3421424030666,-56.3418211571905,-56.3417255503034,-56.3421742506873,-56.3422318709902,-56.342433963636,-56.3425508227233,-56.3430558207402,-56.3435935637003,-56.3442851736606,-56.3453788406797,-56.3460859791644,-56.3464407211014,-56.3469169629639,-56.3471428247286,-56.3476847093792,-56.3483164224853,-56.3494250938822,-56.3502025802958,-56.3507176400155,-56.3512150076607,-56.3515788247026,-56.3522692867717,-56.3530507279382,-56.3535920167597,-56.353013657824,-56.3526023848479,-56.3519472803435,-56.3513069462731,-56.3506111599014,-56.3502621984319,-56.3492699513117,-56.3483678034659,-56.3477247654123,-56.347174449338,-56.3469112166656,-56.3468410514111,-56.3467427666847,-56.3466326460487,-56.3463445630844,-56.3458327252823,-56.3457232438157,-56.3455768691295,-56.344752530274,-56.3441258584734,-56.3439118047028,-56.3437843643432,-56.3434554018843,-56.3432920922782,-56.3431653775505,-56.3425491785639,-56.3422770736055,-56.3418361869256,-56.3413573247265,-56.3408588095672,-56.3402670978674,-56.3395263648563,-56.3388770060699,-56.338392804393,-56.3379095671489,-56.3376303255908,-56.3370931995363,-56.3365949087981,-56.3363177289249,-56.3361154291613,-56.3357847372305,-56.3355840223044,-56.3351330155316,-56.3345299922324,-56.33338164645,-56.3329499216171,-56.3314074888286,-56.3303611416315,-56.3298328294739,-56.3290141610651,-56.3287951632432,-56.3284123823637,-56.3281595788832,-56.3273111563713,-56.3272647908181,-56.3266697361122,-56.3258457733802,-56.3248141679145,-56.3242921199089,-56.323149019823,-56.3215812334152,-56.3203074152927,-56.3194388430897,-56.3182557327715,-56.3176832426685,-56.3171316976362,-56.3167657138249,-56.3163066408903,-56.315533412587,-56.3148862750115,-56.3142570748593,-56.3130147141169,-56.3129010322096,-56.3129350227252,-56.3127839485903,-56.312706647375,-56.3123731497658,-56.311930249621,-56.3116354032615,-56.3112863622517,-56.3110866390475,-56.3107949530334,-56.3104643612008,-56.3099293760352,-56.3096902443613,-56.309451772232,-56.3092321981195,-56.3089967509611,-56.3088993320491,-56.3088242920023,-56.3085439665433,-56.3084502283156,-56.3085027705795,-56.3086101372975,-56.3087541391111,-56.3087509716743,-56.3084908567432,-56.3082120428533,-56.3078415147098,-56.3073414957531,-56.3068417280292,-56.3064349412131,-56.3060486325802,-56.3056253097448,-56.3053118882032,-56.3047945629155,-56.3044998402842,-56.304222541777,-56.304017360693,-56.3039596042025,-56.3040488910939,-56.3039347804743,-56.3035459168612,-56.3031570515728,-56.3026580290468,-56.3022888839465,-56.3020134963643,-56.3019023178813,-56.3018277721986,-56.3017896033723,-56.3017490024393,-56.3016518811019,-56.3017623271408,-56.3016312936381,-56.3013902307452,-56.3007064905924,-56.3002807198209,-56.2993916406682,-56.2990399010223,-56.2988524944968,-56.2986661149852,-56.2984788341667,-56.2981094152267,-56.2975730872194,-56.2973492965417,-56.2973282747064,-56.2974540435182,-56.2973583378925,-56.2970063254393,-56.2968557954605,-56.2966314811501,-56.2962786892234,-56.296331317275,-56.2962367651356,-56.2961606583701,-56.296270173131,-56.2962485011012,-56.2960790010061,-56.2958911820071,-56.2957225824417,-56.2953888681251,-56.295202594649,-56.2950528254241,-56.2947006602951,-56.2941837684062,-56.2937936710199,-56.2935345112914,-56.2932944455664,-56.2930177456352,-56.2926837601482,-56.2923311963121,-56.2919247183199,-56.2916665933417,-56.2912262103869,-56.2909597324692,-56.2905126434916,-56.290203545803,-56.2897932279833,-56.2895136634611,-56.2891601795469,-56.2888259219326,-56.2886405412444,-56.288122334434,-56.287880566939,-56.2877488265369,-56.287764399936,-56.287815953343,-56.2877586527226,-56.287991173708,-56.2882915319683,-56.2883998661743,-56.2881582238873,-56.2876016685742,-56.2873231276894,-56.2868215150824,-56.286746547609,-56.2864861878908,-56.2863550912382,-56.2861498102017,-56.2858348889792,-56.285521146029,-56.2852444296143,-56.2848198688086,-56.2843955702456,-56.2839898508202,-56.283602053757,-56.2832316523634,-56.2827304044031,-56.2823406296124,-56.2819328824109,-56.2818738990242,-56.2818710011464,-56.281811045978,-56.2814030750812,-56.280720355308,-56.2803670651551,-56.2799220583454,-56.2798277024433,-56.2799727809342,-56.2800057158135,-56.2799287509608,-56.2798148877476,-56.2794420778745,-56.2791422666552,-56.2791187921715,-56.279109534401,-56.278845288915,-56.2789536050419,-56.2787685790646,-56.2789285405972,-56.2788491842335,-56.2785683318668,-56.2782902571702,-56.2779190035455,-56.2777862747521,-56.2777651344049,-56.2778553053697,-56.2777245626487,-56.2779249993244,-56.2779212893507,-56.2779348374247,-56.2777140750469,-56.2777633476351,-56.2778510959386,-56.277958356344,-56.277697788951,-56.2773469536474,-56.2768219848899,-56.2760406484761,-56.2756713634459,-56.2751165042899,-56.2740803179202,-56.2732474860653,-56.2725435398762,-56.2722457832266,-56.2721496532259,-56.2721832166106,-56.2724570506417,-56.2729329202871,-56.273390343307,-56.2737512466873,-56.2738774781146,-56.2739674726973,-56.2742220714966,-56.2744371048181,-56.2743028768006,-56.2741154210327,-56.2738358340776,-56.2734753659753,-56.2731559303829,-56.2727458261619,-56.2720950240924,-56.2718143492557,-56.2715493163765,-56.2711765004692,-56.2707144919909,-56.2705652563496,-56.2704344737062,-56.270175184579,-56.2700815760827,-56.2697671926495,-56.2694526745398,-56.2692107632724,-56.2689512021618,-56.26839691586,-56.2679553678094,-56.2675318717568,-56.267210191002,-56.2668232246701,-56.2663963591634,-56.2660623002819,-56.2657485812301,-56.2654335134796,-56.2649320138175,-56.2644489640308,-56.2640930435794,-56.2638292395141,-56.2636120326608,-56.2627225561528,-56.2623439940353,-56.2619103508021,-56.2616772454202,-56.2610605710603,-56.2603367946031,-56.2593904547585,-56.2584715681156,-56.257918580103,-56.257574538472,-56.2573416118134,-56.256716910334,-56.2561748548003,-56.2557675952361,-56.2555021214956,-56.2549438644339,-56.2548276621743,-56.2544689731789,-56.2540750638805,-56.2538529111465,-56.2532862388488,-56.2530398529249,-56.2526606242545,-56.2521866453242,-56.2515525680805,-56.2508859866202,-56.2503477611527,-56.2503089234201,-56.250212103566,-56.2501889663986,-56.2498177916662,-56.2493740335975,-56.2488914323981,-56.2484069807536,-56.2480960490817,-56.2475887787991,-56.2471339039072,-56.2467013751649,-56.2465050234518,-56.2462495896096,-56.2459894825684,-56.2456587690434,-56.2454803473511,-56.2453928043689,-56.2451344234882,-56.2448586963859,-56.244587327167,-56.2443631640203,-56.2442418542364,-56.2439378531652,-56.2434199526452,-56.2432658040854,-56.2428034336696,-56.2422666817622,-56.2416917623271,-56.2413717682436,-56.2412773392895,-56.2412254303671,-56.2411024898517,-56.2409014433275,-56.240709934977,-56.2405271579076,-56.2403101907173,-56.2401468978537,-56.2400391882343,-56.2399060260789,-56.2396994121726,-56.2393723747143,-56.2391014295347,-56.2388516219183,-56.2387953020629,-56.2387344228043,-56.2385816010812,-56.2384804199869,-56.2384116047432,-56.2383561697174,-56.2382181502044,-56.2380576276276,-56.2379060515687,-56.2377843758863,-56.2376334380402,-56.2374197043172,-56.2372130854087,-56.2370411292232,-56.2368988073119,-56.2367030444102,-56.2364337726422,-56.236327183461,-56.2361200169325,-56.2360220612823,-56.2358178518158,-56.2355978008456,-56.2353628263827,-56.2351166384817,-56.2349792031969,-56.234786409152,-56.2347505139748,-56.2347081125564,-56.2347148924904,-56.2347125939472,-56.2347104250678,-56.2346709804688,-56.2343878555887,-56.2343540481638,-56.2343321469361,-56.2339631333709,-56.2338703938963,-56.2338359473267,-56.2337857389735,-56.2336971566277,-56.2335982460667,-56.233494441465,-56.2334134568808,-56.2333269451616,-56.2332124564811,-56.233086620035,-56.2328963944849,-56.232787119287,-56.2326644621013,-56.2324306650309,-56.2323483936763,-56.23224489217,-56.2319751377677,-56.2317471819566,-56.2315541363503,-56.2311929493784,-56.2310367828218,-56.2308388798233,-56.2306727290557,-56.2302707284555,-56.2299188670392,-56.2297352474363,-56.2294515277388,-56.2292217427785,-56.2288424181194,-56.2285610340156,-56.2284003798486,-56.2281758554713,-56.2280631121473,-56.228051442142,-56.2279957400726,-56.228006447192,-56.2281235228053,-56.2281439132257,-56.2281696135965,-56.2281060162783,-56.2278736926154,-56.2277960877893,-56.2277255016926,-56.2276735431462,-56.2276612578638,-56.2275866079232,-56.2271559606691,-56.2268030324153,-56.226339941169,-56.2262737472689,-56.2257978391691,-56.2256920118803,-56.2256243011385,-56.2292858809395,-56.2294532667879,-56.2304986563064,-56.2311465748404,-56.2313201180474,-56.2323741493234,-56.2325509865086,-56.2333754151793,-56.2337524610562,-56.2341299613011,-56.2353272243452,-56.2348182546421,-56.2343400766757,-56.2339647001043,-56.2335734987971,-56.2333981622307,-56.2329657395806,-56.2322567659598,-56.2310010404434,-56.2302203740138,-56.230272891585,-56.2303532330192,-56.2304236626749,-56.2304875856416,-56.2305576084208,-56.2306649537815,-56.2307499576202,-56.230830525838,-56.2309246843979,-56.2310280643803,-56.2311274089482,-56.231214740654,-56.2313055107999,-56.2314127294286,-56.2314991206494,-56.2315949900917,-56.2316871242744,-56.2317771873889,-56.23186703706,-56.2319192805471,-56.2320041189009,-56.2320579655267,-56.2321500596887,-56.2322595861743,-56.232353728059,-56.2323995850419,-56.2323993449181,-56.2324281731189,-56.2324954578193,-56.232542925633,-56.2326852123473,-56.2328392751347,-56.2328906883165,-56.2329697957809,-56.2329891318624,-56.2326105784218,-56.23292606324,-56.2330289027284,-56.2337949846852,-56.2338961601974,-56.2339997969788,-56.2341034170851,-56.2342429690556,-56.2343259084962,-56.2344339675584,-56.2345664125303,-56.2346780334294,-56.2347950504447,-56.2348918837175,-56.2350006664862,-56.2351211652972,-56.2352648560689,-56.2353389842987,-56.2354202828931,-56.2354739108265,-56.2355026487046,-56.2354989866205,-56.2355050766234,-56.2355266911039,-56.235572931618,-56.235635560584,-56.2356937706044,-56.2357161955028,-56.2357280349421,-56.2357435696204,-56.2357781141025,-56.235808116242,-56.2358276596544,-56.2358342330445,-56.2358370911852,-56.2358366209426,-56.235883565153,-56.2358536030341,-56.2358120749503,-56.2357638667548,-56.2357702667221,-56.2358134156417,-56.2359231388955,-56.2360047409798,-56.236056744466,-56.2360569145537,-56.2361200971386,-56.2361847137964,-56.2362400890215,-56.2362548533024,-56.2362577114431,-56.2362841951014,-56.2363115291983,-56.2363311393118,-56.2363422350341,-56.23636325254,-56.2363830127309,-56.2364102434411,-56.2364604960243,-56.236537745864,-56.2366432702857,-56.2366035131152,-56.2366019556453,-56.2365814250572,-56.2365720568924,-56.2365738511511,-56.2365722903462,-56.2365752151879,-56.2366003314744,-56.236645294663,-56.2367013969297,-56.2367383359802,-56.236787374604,-56.2368449309539,-56.2369013733961,-56.2369602104065,-56.2370172731685,-56.2370471919317,-56.237053465167,-56.2370454843845,-56.2370674223651,-56.2370745093534,-56.2370781812471,-56.2371016967079,-56.2371768588043,-56.2372470483361,-56.2373037709228,-56.2373553942129,-56.2374333718061],&#34;lat&#34;:[-34.7919616682811,-34.7922053724125,-34.792268098095,-34.7923443841043,-34.7924207234745,-34.7925153656172,-34.7926323392769,-34.7927270281103,-34.7928306949073,-34.7929298660524,-34.7930381018724,-34.7931644203514,-34.7932546468835,-34.7933854876948,-34.7934937568653,-34.7935841167996,-34.7937013572635,-34.7938005684292,-34.7939177622024,-34.7940212955972,-34.7941112886756,-34.7942192777016,-34.7943047817982,-34.7943902525444,-34.7944802656331,-34.7945748744253,-34.7946784478407,-34.794773003272,-34.7948720076645,-34.7949574517302,-34.7950474181282,-34.7951598894658,-34.7952588471675,-34.795366802843,-34.7954612648929,-34.795564758267,-34.795597288377,-34.7956592803478,-34.7957673160646,-34.795974429545,-34.7960430237409,-34.7961080180732,-34.7961646566993,-34.7962470305986,-34.7963310629747,-34.7963882620474,-34.7965449666964,-34.7966601287488,-34.7967326286089,-34.7968125617912,-34.7968980458776,-34.7969879855951,-34.7971094882571,-34.7972310242697,-34.7973255196701,-34.7974244773717,-34.797509954788,-34.7975908898616,-34.7976762071953,-34.7977794137549,-34.7978422528292,-34.7979367348894,-34.7980312703104,-34.7981258590922,-34.7982113565188,-34.7982967538937,-34.7983775955858,-34.7984539549663,-34.7985439747252,-34.798647634852,-34.7987468793683,-34.7988371859417,-34.798923043554,-34.7990044321949,-34.7990677982077,-34.7996058234882,-34.7994713363674,-34.8001412584853,-34.8011869844596,-34.8013081602864,-34.801575224685,-34.8015968515563,-34.801719183231,-34.802538721585,-34.8030093176167,-34.804899038861,-34.8049649995453,-34.8066588822303,-34.8067617880305,-34.8066898258922,-34.8066877894934,-34.8065789358331,-34.806645719669,-34.8067849781548,-34.8069242699912,-34.807051869367,-34.8071008077029,-34.8071479064279,-34.8072414257817,-34.807373575579,-34.8074515585053,-34.8074791893155,-34.8075390830651,-34.8075640065864,-34.8075788187199,-34.8076038659772,-34.8076339506625,-34.8076694719196,-34.8076715287049,-34.8077342610576,-34.807806111446,-34.8078688904895,-34.8079361985353,-34.8080035599419,-34.8081070799966,-34.8082372204466,-34.8082910081864,-34.8083628852552,-34.8084346889529,-34.808465851691,-34.8085331864172,-34.8086276818176,-34.8087040612084,-34.8087984965778,-34.8089020299726,-34.8089967721669,-34.8090826030988,-34.8091772185611,-34.8092672850106,-34.8093754007687,-34.8094745985942,-34.8095691873761,-34.8096550049677,-34.8097585316924,-34.8098303687406,-34.8098977034669,-34.8099875031122,-34.8100773894689,-34.8101492732078,-34.8102211035859,-34.8103110699839,-34.8103919850472,-34.8104910828211,-34.8105946895871,-34.8106938007013,-34.8107974341477,-34.8109100855783,-34.8110181546456,-34.8111127567676,-34.8112117878405,-34.8113017742488,-34.811414092174,-34.8115356081763,-34.8116662555545,-34.8118826204727,-34.8120177301522,-34.8121213302481,-34.8122474686342,-34.8123465597381,-34.8124590977768,-34.8126075943603,-34.8127291237027,-34.8128079989916,-34.8128882991269,-34.812949870881,-34.8130534909873,-34.8131751804123,-34.813296789796,-34.8134095746287,-34.8135359531386,-34.8136349175104,-34.8137295663233,-34.8138604871758,-34.814085796707,-34.8142072593484,-34.8143289887941,-34.8144371979337,-34.8145226753499,-34.8146171640801,-34.8147116194599,-34.8147925278531,-34.8148689539346,-34.814940804323,-34.8150261550072,-34.8151070700705,-34.8152060611228,-34.8153006032138,-34.8153952053359,-34.8154987587411,-34.815588911902,-34.8156143383484,-34.8157150569583,-34.8157250287676,-34.81582277918,-34.8158737921554,-34.8159352571878,-34.8160704669189,-34.8161740470045,-34.816277687121,-34.8163767782248,-34.8164668980353,-34.8165571245674,-34.8166470976355,-34.8167279860183,-34.8168180324576,-34.8168899228667,-34.816957264263,-34.8170381993366,-34.8171190343586,-34.8171999294116,-34.8172491214479,-34.8173164294937,-34.8173679227167,-34.8173535352968,-34.8173520145125,-34.8173521479146,-34.8173510606872,-34.8173606523005,-34.8173842844883,-34.8174136529677,-34.8175088220488,-34.8175720346491,-34.817665996441,-34.8177333311672,-34.8178051348649,-34.8178905122295,-34.8179759362849,-34.8180569047091,-34.8181423954655,-34.8182187415058,-34.8182498975737,-34.818317172269,-34.8183352749384,-34.8183331338341,-34.8183167120317,-34.8183062266241,-34.8183208074771,-34.818352016906,-34.8183858210063,-34.8183852873977,-34.8184279427295,-34.8184401356844,-34.8184726657943,-34.8185400205309,-34.8185718369394,-34.8185666742769,-34.8185602442941,-34.8185965897051,-34.8186065681846,-34.8186054609469,-34.818598210541,-34.8185878852159,-34.8185867379576,-34.8185917538778,-34.8185855840292,-34.8185733243732,-34.8185600508611,-34.8185250594818,-34.8185111322992,-34.8184862394613,-34.818460319427,-34.8184473460696,-34.8184379412193,-34.8184397154677,-34.8184356467027,-34.8184097466787,-34.8183499891935,-34.8183155114125,-34.8182918525443,-34.81825029111,-34.8182259252106,-34.8182165403706,-34.8182215229402,-34.8182200355064,-34.8182302007489,-34.8182241509622,-34.8182176676186,-34.8181925546672,-34.8181724776463,-34.8181566561534,-34.8181578234221,-34.818148371881,-34.8181435493939,-34.8181434560124,-34.8181519737386,-34.8181525740482,-34.8181342846158,-34.818079109494,-34.8180294305399,-34.8180122216649,-34.8179905571586,-34.8179811389681,-34.8179286385589,-34.8178961151191,-34.817850251466,-34.8177837971938,-34.8177556826945,-34.8177264876378,-34.8176546972804,-34.8175410653442,-34.8175103161527,-34.8174688947906,-34.8174353574946,-34.8174280270474,-34.8173930023176,-34.817319577784,-34.8171979684003,-34.8171064278572,-34.8170526000968,-34.8170343506851,-34.817008944249,-34.8169972115315,-34.8169867594744,-34.8169756870975,-34.8169632006579,-34.8169482462789,-34.8169397752435,-34.8169396618517,-34.8169227064406,-34.8169087725879,-34.8168855139262,-34.8168763358595,-34.8168691588248,-34.8168534240433,-34.8168527370223,-34.8168089277621,-34.8167933930838,-34.8167717018971,-34.8167634643154,-34.8167540327847,-34.8167489501634,-34.8167495237926,-34.8167402923651,-34.8167401122722,-34.8167343026093,-34.8167354965584,-34.8167289598539,-34.8167307007517,-34.8167254447077,-34.8167214893345,-34.8167158797748,-34.8167064615843,-34.8166942619593,-34.8166813419628,-34.8166703562972,-34.8166715235659,-34.8166486250899,-34.816639500384,-34.8166303223173,-34.8166296086159,-34.8166250195826,-34.8166248394897,-34.8166209107969,-34.8166163017532,-34.8166168753824,-34.8166074705321,-34.8165991929298,-34.8165933299061,-34.8165887275325,-34.8165890877183,-34.8165890543677,-34.8165838250042,-34.8165844319838,-34.8165770281655,-34.8165693708831,-34.816570491461,-34.8165661292113,-34.8165650820046,-34.8165605129815,-34.8165610465901,-34.8165573847016,-34.8165506345536,-34.8165510014095,-34.816538768434,-34.8165340593387,-34.8165290834392,-34.8165218597137,-34.8165156765249,-34.8165168571338,-34.8165110608111,-34.8165106606047,-34.8165064517675,-34.8165051044059,-34.8165017960331,-34.8165015492391,-34.8164984076189,-34.8164955794937,-34.8164830797139,-34.816482526095,-34.8164782772371,-34.8164769098653,-34.8164729811725,-34.8164648970033,-34.8164585403917,-34.8164546116989,-34.8164553454106,-34.8164500426759,-34.8164369092359,-34.8164361488438,-34.8164318266147,-34.8164321000891,-34.8164223017025,-34.8164218281249,-34.8164474746848,-34.8164307860781,-34.8164258835497,-34.816416452019,-34.8164062134053,-34.8164924378735,-34.8165688039241,-34.8166360986297,-34.8166808150244,-34.8167299937204,-34.8167792524578,-34.8168329935067,-34.816877683221,-34.8169313909195,-34.8169806096361,-34.8170388329967,-34.8170790670798,-34.8171327347576,-34.8171729421603,-34.817204144919,-34.8172254559096,-34.8172579193185,-34.8173298897688,-34.8173657349218,-34.8173836241477,-34.8173953323836,-34.8174187577864,-34.8175706872876,-34.8175877560904,-34.8176015632111,-34.8176074529153,-34.8176148433934,-34.8176168377553,-34.8176132225575,-34.8176042912847,-34.8175922050516,-34.8175786647351,-34.8175646174906,-34.8175517308446,-34.8175393911474,-34.8175294860391,-34.8174909528332,-34.8174634719939,-34.8174380388774,-34.8174118520389,-34.8173870992732,-34.8173620063322,-34.8173279821183,-34.8173209251456,-34.8173088989433,-34.8172983868553,-34.8172859404364,-34.8172742343993,-34.8172625750529,-34.8172664970756,-34.8172665704468,-34.8172605406704,-34.8172610942893,-34.8172564852456,-34.8172430116302,-34.8172079468798,-34.8171869160336,-34.817186629219,-34.8171909647883,-34.817189317272,-34.8171853418885,-34.8171904044994,-34.8172010032988,-34.8172101413449,-34.8172306986134,-34.8172912498412,-34.8174636968343,-34.8175632866033,-34.8176409968814,-34.8177332177754,-34.8178617240494,-34.8180376281009,-34.8181231922286,-34.8182137722763,-34.8182991229605,-34.8183965465377,-34.8184921558459,-34.8186495837021,-34.8187849335055,-34.8188748665529,-34.8189970362256,-34.8191996673944,-34.8194475485663,-34.8195572251294,-34.8196815092258,-34.8198428057439,-34.8199517552653,-34.8201901515457,-34.8202905299801,-34.8203689570936,-34.8204500989405,-34.8205269118883,-34.8206100881177,-34.8207023223519,-34.8207919218941,-34.8208139265758,-34.8209216487975,-34.8209754098568,-34.8210336732381,-34.8210964322712,-34.8211591646239,-34.8212264193088,-34.8212891783419,-34.8213609753695,-34.8214554107389,-34.8215680621694,-34.8216627510029,-34.821757479857,-34.8218432440878,-34.821938039643,-34.8220328085177,-34.8221231217612,-34.8222223862878,-34.8223215440927,-34.8224704142021,-34.822650907287,-34.8227412138604,-34.8228180334783,-34.8229173246853,-34.8230164291294,-34.8231063955273,-34.8231873239308,-34.8232637300021,-34.8233355003492,-34.8233486204489,-34.823330170934,-34.8233117614398,-34.8232888562937,-34.8233019697233,-34.8233692977794,-34.8234004738577,-34.8234181162897,-34.8234625658801,-34.8235388718998,-34.8235795261996,-34.8235845020991,-34.8235924128456,-34.8235964882807,-34.8236200204168,-34.8236641965329,-34.8236768764056,-34.8236827460994,-34.8236674115243,-34.8236584535711,-34.8235949741665,-34.8235681203173,-34.8235720690204,-34.8236439127387,-34.8236904434024,-34.823684100131,-34.8236836398937,-34.8237062582252,-34.8237149960649,-34.8237085527418,-34.8236923310426,-34.8237120745581,-34.8237752471379,-34.8237909552389,-34.8237635477709,-34.8237496139182,-34.8237401823874,-34.8237457786069,-34.8237947705399,-34.823897883718,-34.8239644113614,-34.8241025492693,-34.8242213105175,-34.8243053005,-34.8244014767672,-34.8245174032201,-34.8246300813311,-34.8247200810796,-34.824805511805,-34.824877395544,-34.8249672218697,-34.8250299675626,-34.8250836685909,-34.8251419052918,-34.8251821060243,-34.8251861747894,-34.8252308778439,-34.8253117462164,-34.825383543244,-34.8253785940249,-34.8253556155076,-34.825301147417,-34.8252376946928,-34.8252057782327,-34.8251647504069,-34.8251508432346,-34.8251054064684,-34.8250329891209,-34.8249561294824,-34.8248702652,-34.8247844342681,-34.8247075546193,-34.8246056220501,-34.8246032274818,-34.8245521944961,-34.8245540687961,-34.8245571170348,-34.824559191438,-34.8245639272137,-34.82460498839,-34.8246062090195,-34.824616187499,-34.8246279735774,-34.8246431880905,-34.8246653195043,-34.8246805540278,-34.8246963355,-34.8247259040826,-34.8247475885992,-34.8247643305668,-34.824786988919,-34.8248037442268,-34.824832285613,-34.8249016880723,-34.8249711238821,-34.8250124652029,-34.8250360840504,-34.8250594894545,-34.8250842822408,-34.8251024782916,-34.8251300191618,-34.8251467144386,-34.8251688058317,-34.8251874621199,-34.8252002353741,-34.8252144760517,-34.8252301908229,-34.8252380482085,-34.8252950976303,-34.8253473512455,-34.8254106772377,-34.8254328753525,-34.8254809201304,-34.8254648651838,-34.8254455152045,-34.8254483233194,-34.8254719088164,-34.8255420783379,-34.8255964797274,-34.8256442243506,-34.8257290614365,-34.8257656669816,-34.8257954289973,-34.8258100698814,-34.8258311407481,-34.8258358765238,-34.8258391315359,-34.8258342089972,-34.8258279649737,-34.8219875875761,-34.8187166592937,-34.8186603811379,-34.8185963814752,-34.8179802272655,-34.8165563953801,-34.8152163864478,-34.8137347289858,-34.8113221314142,-34.8096789706608,-34.8092042525031,-34.8071337580295,-34.8070584391857,-34.8059511081067,-34.8051186521212,-34.8044058734667,-34.8043563789974,-34.804287530157,-34.7997437986989,-34.7977067837536,-34.7972313113609,-34.7964924233233,-34.7964553440259,-34.7964372482034,-34.7964236677356,-34.7964100808156,-34.796396487476,-34.7963829004254,-34.7963602553899,-34.796333108099,-34.7963195341052,-34.7963059602717,-34.7962923869071,-34.7962788129637,-34.7962607105641,-34.7962380924433,-34.7962245116056,-34.7962109179412,-34.7961973446223,-34.7961837774833,-34.7961611724174,-34.7961385744391,-34.7961250008218,-34.7961069180011,-34.7960843131439,-34.7960752346124,-34.7960706257341,-34.796061534243,-34.7960479542093,-34.7960298716457,-34.7960117886532,-34.7959937194048,-34.7959711347177,-34.7959530584097,-34.7958852834307,-34.7958622784619,-34.7958530470098,-34.7958529468598,-34.7958528399115,-34.7958496185842,-34.7958494719935,-34.7958414010807,-34.7958136664524,-34.7958067165157,-34.795803200959,-34.7958031012306,-34.79580680329,-34.7958067227917,-34.795797611685,-34.7957885201248,-34.7957794353736,-34.795769363956,-34.7957544093212,-34.79574056887,-34.7957370737072,-34.7957312508377,-34.7957230934687,-34.7957092259933,-34.7956872414118,-34.7956687921465,-34.7956514831187,-34.7956319061652,-34.7955979019623,-34.7955798194509,-34.7955662190024,-34.7955435739709,-34.7955254448551,-34.7955163596922,-34.7955072821437,-34.795489086121,-34.7954799613336,-34.795466300691,-34.7954571896883,-34.7954480845632,-34.7954162413992,-34.7953754604422,-34.7953257151636,-34.7952532974947,-34.7952441927366,-34.7952350349389,-34.7952304458274,-34.7952258435972,-34.7952212142851,-34.7952166120008,-34.7952075209429,-34.7951939201842,-34.7951938268547,-34.7951847221698,-34.7951801330618,-34.7951755311005,-34.7951618970714,-34.7951573082224,-34.7951482167861,-34.7951435943705,-34.7951435145504,-34.7951389253756,-34.7951432941603,-34.7951432075917,-34.795143107508,-34.7951700678894,-34.7951835347361,-34.7951970017421,-34.7952195068915,-34.7952375294086,-34.7952600544992,-34.7953063583591,-34.7953498410209,-34.795358785137,-34.7953677098799,-34.7953900679044,-34.7954441160292,-34.7954621584903,-34.7954847170147,-34.7955027397937,-34.7955207487172,-34.795547735976,-34.7955611833445,-34.795565612269,-34.7955655051873,-34.7955564073487,-34.7955473290425,-34.7955427400123,-34.795538137883,-34.7955380377022,-34.7955108506375,-34.7954972833826,-34.7954791738599,-34.7954611580093,-34.7954246859984,-34.7954024281304,-34.7954068437563,-34.7954202973592,-34.7954382662893,-34.7954517401272,-34.7954733844858,-34.7954512931383,-34.7954511597329,-34.7954417813465,-34.7954326833824,-34.7954325836775,-34.7954369923344,-34.7954413949198,-34.7954458100882,-34.7954547149593,-34.7954636529586,-34.795509376333,-34.7955534192595,-34.795593753448,-34.7956160448975,-34.7956249827043,-34.7956380225227,-34.7956334071388,-34.7956333203666,-34.7956331934855,-34.7956285710505,-34.7956236487548,-34.7956235018113,-34.7956234085217,-34.7956233283841,-34.795627750739,-34.7956228279562,-34.7956181992752,-34.7956180924336,-34.7956086942947,-34.7956040653244,-34.7955994429049,-34.7955902980787,-34.7955856623465,-34.7955765378719,-34.7955673795001,-34.7955582751596,-34.7955309409322,-34.795521802545,-34.7955126916212,-34.7955080891815,-34.7955203486924,-34.7955107639052,-34.7955031132028,-34.7954941551981,-34.7954859776485,-34.7955163466243,-34.7955162599958,-34.7955206689622,-34.7955250776424,-34.7955295002589,-34.7955294003186,-34.7955338221306,-34.795533715856,-34.7955335685647,-34.795533482124,-34.7955333887459,-34.7955238637178,-34.7955192480318,-34.7955191413278,-34.79551902108,-34.7955233638214,-34.7955232767417,-34.7955231765612,-34.7955230232377,-34.7955227233452,-34.7955180343759,-34.7955179005937,-34.7955039467574,-34.7954948420106,-34.7954856974962,-34.7954765996581,-34.7954674813524,-34.7954219646865,-34.795421864597,-34.7954217777562,-34.7954216778726,-34.7954215777002,-34.7954260068202,-34.7954259064859,-34.7953939567344,-34.7953846117961,-34.7953079325854,-34.7952402443585,-34.7952175524091,-34.7952129635163,-34.7952083745496,-34.7952082675823,-34.7952081740972,-34.7952125968048,-34.795217005582,-34.7952259369024,-34.7952303655849,-34.7952392236639,-34.7952436262128,-34.7952480280394,-34.7952569527683,-34.7952971069884,-34.795310527037,-34.7953194583098,-34.795328376575,-34.7953417567537,-34.7953506943649,-34.7953730060506,-34.7953864461389,-34.7954357382461,-34.7954536410696,-34.7954670746932,-34.7954849902905,-34.7955208020984,-34.7955432071469,-34.7955521387026,-34.7955925391409,-34.7956059661599,-34.7956194196913,-34.7956868078075,-34.7957183374595,-34.795736353378,-34.7957543762376,-34.7957724051745,-34.7957949370192,-34.7958174620012,-34.7958399871204,-34.7958579562086,-34.7958893457729,-34.7959027926233,-34.7959162329773,-34.7959251777122,-34.7959743695686,-34.7959877694772,-34.7959967143367,-34.7960011434063,-34.7960323326042,-34.7960457128524,-34.7960546241964,-34.7960590466503,-34.7960679843309,-34.7960768756931,-34.7960858068938,-34.7960944648561,-34.7960898289262,-34.7960897291078,-34.7960759552339,-34.7960668439269,-34.7960577059088,-34.7960485811471,-34.7960394765033,-34.7960303917432,-34.7960050984815,-34.7959624765773,-34.7959489097562,-34.7959353360085,-34.7959127311505,-34.7958946284273,-34.7958720236419,-34.7958584562515,-34.795840366824,-34.7958222976142,-34.7958042283289,-34.7957861660422,-34.7957680896781,-34.7956911436613,-34.7956729876939,-34.7956639029847,-34.7956548049923,-34.7956411908314,-34.7956275839788,-34.7956184728743,-34.7956048522417,-34.795595760666,-34.7955684936578,-34.7955548332979,-34.7955502372832,-34.7955411325059,-34.7955365034892,-34.7955226631443,-34.795513532098,-34.7955089158769,-34.7955043002486,-34.7954951491417,-34.7954860044894,-34.7954723574228,-34.7954677479493,-34.7954586370555,-34.7954495190004,-34.7954404140954,-34.7954267537854,-34.7954176426823,-34.7953994532351,-34.7953858127129,-34.7953676234972,-34.7953494270625,-34.7953357866682,-34.795317544289,-34.7953084391655,-34.7952766294401,-34.7952630358487,-34.7952176724029,-34.7952085544336,-34.7951903784527,-34.7951767716597,-34.7951676668529,-34.7951540662202,-34.7951404661904,-34.7950815889878,-34.7950679955593,-34.7950498996727,-34.7950363188582,-34.7949728999801,-34.7949593061886,-34.7949457391978,-34.7949276632185,-34.7948870221359,-34.7948689660013,-34.7948464076565,-34.7948283653344,-34.7948103159199,-34.7947877244843,-34.7947561077312,-34.7947290008543,-34.7946928616579,-34.7946657677362,-34.7946476987288,-34.7946296291433,-34.7946025284332,-34.7945754280906,-34.7945573721525,-34.7945302980774,-34.7945032240797,-34.7944761500774,-34.7944490831701,-34.7944310402635,-34.7944130108017,-34.7943949950842,-34.7943769790304,-34.7943544539466,-34.7943364248882,-34.7943138929485,-34.7942913484119,-34.7942733253652,-34.7942553161329,-34.7942238068414,-34.7941967995382,-34.7941562787052,-34.7941202668595,-34.7941022574218,-34.7940572338636,-34.7940212156046,-34.7939671810763,-34.7939356649494,-34.7939041420301,-34.7938861258063,-34.7938680966428,-34.793850060803,-34.7938320378833,-34.7938095266449,-34.793787028271,-34.7937690320351,-34.793746540747,-34.7937240355464,-34.7936970282781,-34.7936745166958,-34.7936070683549,-34.793584570107,-34.7935215381035,-34.7935035554652,-34.7934900885355,-34.7934720989807,-34.793427108956,-34.7934001152811,-34.7933776166841,-34.7933596212488,-34.7933416518314,-34.7933281846251,-34.793304866287,-34.7932697278817,-34.7932067889048,-34.7931798015913,-34.7931573035602,-34.7931393205294,-34.793121331224,-34.7931078579984,-34.7930943909854,-34.7930809240565,-34.7930629478406,-34.7930449520481,-34.7930269493053,-34.7930044512367,-34.7929864683007,-34.7929684928167,-34.7929460211976,-34.7929280520563,-34.7928742774517,-34.7928474035326,-34.7928160206074,-34.7927757067525,-34.7927264078192,-34.7926905828048,-34.7926592331944,-34.7926010030907,-34.7925830741153,-34.7925741360961,-34.792538377671,-34.7924981701287,-34.7924892589038,-34.7924803344214,-34.7924714095684,-34.7924625117607,-34.7924490780417,-34.7924401402062,-34.792438359366,-34.7924201564244,-34.7923983051664,-34.7923817165622,-34.7923466255249,-34.7923072919083,-34.7922219412402,-34.7921333885204,-34.7920914671912,-34.7920063699974,-34.7919707181908,-34.7919258146532,-34.7918870082893,-34.791823262169,-34.7917379380829,-34.7917107573221,-34.7916854377389,-34.7916441965814,-34.7916139807822,-34.7915639752241,-34.791522907026,-34.7915032967764,-34.7914331273953,-34.7913937203252,-34.7913749172699,-34.7913601699459,-34.7913358437169,-34.7913119718527,-34.7912865121237,-34.7912545156352,-34.7912416819493,-34.7912295021912,-34.7912163488022,-34.7912081449185,-34.7912079444747,-34.7912076509894,-34.7912072312404,-34.7912094652636,-34.7912109464598,-34.7912283351829,-34.7912296091106,-34.7912480184353,-34.7912738721724,-34.7913056486361,-34.7913489241947,-34.791377072026,-34.7914094617131,-34.7914318535369,-34.7914658376912,-34.7914829397986,-34.7914987815595,-34.7915116080662,-34.7915279298741,-34.791590075323,-34.7916524537053,-34.7917544533444,-34.7918396369655,-34.7919248142413,-34.7920213775023,-34.7920896258083,-34.7921749165293,-34.7922999211853,-34.7924078699122,-34.792555619897,-34.792640803506,-34.7928335494597,-34.7928413738262,-34.792843468374,-34.7928496847079,-34.7929046532636,-34.7929803052233,-34.7930078947558,-34.793023101004,-34.7930475999071,-34.7930067587586,-34.7929661845114,-34.7929147184839,-34.7928985234457,-34.7928915864244,-34.792899043381,-34.79291721956,-34.7929376969626,-34.7929305799942,-34.7928804939112,-34.7928291677239,-34.7927264942629,-34.7926330463807,-34.7925722081068,-34.7925066812933,-34.7924270800142,-34.7923662550972,-34.7922866478222,-34.7921907517314,-34.7921532457579,-34.792068935101,-34.7919800763571,-34.7918586136609,-34.791741899847,-34.7916391802645,-34.7915551568601,-34.7914898367387,-34.7914292785569,-34.7913453020115,-34.7912381468948,-34.7911217469811,-34.7910006779981,-34.7908426160173,-34.7907264164666,-34.7906057738896,-34.7906075883368,-34.7905999844493,-34.7905915535857,-34.7904872399058,-34.7904305169747,-34.7903808645927,-34.7903502487658,-34.7903362553541,-34.7903127096099,-34.7902952938108,-34.7902654921681,-34.7901450631961,-34.7900715252614,-34.7899813988453,-34.7899682452576,-34.7899472280528,-34.7899292919043,-34.7899158381391,-34.7899023848186,-34.789892406111,-34.7898830281957,-34.789722658436,-34.7896763348908,-34.7896040043314,-34.7895605953639,-34.789485283192,-34.7894302280781,-34.78936642851,-34.7893055233589,-34.7892445187671,-34.7891646508307,-34.7890716094041,-34.7889668024523,-34.7888911299131,-34.7888503688269,-34.7888008367686,-34.7887628901158,-34.7887220092168,-34.7886781597178,-34.7886401735431,-34.7886108652218,-34.7885989327075,-34.7885924225418,-34.7885932159356,-34.7885836982178,-34.7885556298859,-34.7885442640639,-34.7885310639566,-34.7885197518717,-34.7885139150607,-34.7885155163892,-34.7885059113616,-34.7885000881296,-34.7884923974193,-34.7884865343898,-34.788484419988,-34.788484133267,-34.7885003882917,-34.7885186446456,-34.7885314311278,-34.7885423632278,-34.7885570444537,-34.7885661753438,-34.7885808499018,-34.7886010135104,-34.7886248527402,-34.7886542075203,-34.7886743579048,-34.7886981904789,-34.7887146722806,-34.7887218494631,-34.7887327148419,-34.788730653925,-34.7887340953525,-34.7887172132823,-34.788676039168,-34.7886460436774,-34.7886291548659,-34.7886159947314,-34.7885935761553,-34.7885487800037,-34.7885133080367,-34.7884815788448,-34.7884554382391,-34.7884014774106,-34.7883513379019,-34.7882956028673,-34.7882473178608,-34.7882027812341,-34.7881527158797,-34.788121153023,-34.7880858811556,-34.7879987494044,-34.7879394056642,-34.7878837834911,-34.7878374462659,-34.7878040894569,-34.7877633080906,-34.787711414475,-34.7876576336633,-34.7876020650013,-34.7875575953464,-34.7875002523842,-34.787441035194,-34.7873873675305,-34.7873188988428,-34.7872282257461,-34.7871430616435,-34.7870542091913,-34.7869949785197,-34.7869376557123,-34.7868562803177,-34.786754561195,-34.7866935366486,-34.7866195515248,-34.7865677784765,-34.7865270905874,-34.7864919525304,-34.7864531123867,-34.7864161536739,-34.7863643536032,-34.7863273744525,-34.7862663564522,-34.7862256417716,-34.7861571866096,-34.7860998168413,-34.7860703149515,-34.7860222238121,-34.7859796747305,-34.7859148481344,-34.7858260624781,-34.7857353954621,-34.7856762116553,-34.7856539670402,-34.7856020536658,-34.7855465181529,-34.7854870410961,-34.7854610742919,-34.7854313920596,-34.7853798522825,-34.7853353427736,-34.7852890457689,-34.7852408004316,-34.785198091654,-34.7851498002468,-34.7851089460855,-34.7850717400157,-34.7850418446904,-34.7849914250899,-34.7849559536181,-34.7849521450571,-34.784942580204,-34.7849405657508,-34.7849532723728,-34.7849623034226,-34.7849712484899,-34.7849784188314,-34.7849874565143,-34.7849965278864,-34.7850110757153,-34.7850330865821,-34.7850550650727,-34.7850935779799,-34.7851357997986,-34.7851725452165,-34.7852112321973,-34.7852314625601,-34.7852480111039,-34.7852792806239,-34.7853086024307,-34.7853342891069,-34.7853666456488,-34.785398021521,-34.7854383626822,-34.7854869741701,-34.7855550095264,-34.7855734187391,-34.7856028539693,-34.7856578692262,-34.7856927937293,-34.7857111829053,-34.7857248036066,-34.7857495695735,-34.7857925718766,-34.7858139962941,-34.7858300442618,-34.7858568648475,-34.7858782892101,-34.7858961384003,-34.7859085849136,-34.7859192773625,-34.785938927142,-34.7859567029893,-34.7859727246528,-34.7859869723657,-34.7859904270908,-34.7859992518162,-34.7860078296063,-34.7860137122624,-34.7860155267564,-34.7860173342903,-34.7860161473079,-34.7860191487264,-34.7860190283894,-34.7860189351989,-34.7860146529331,-34.7860050344968,-34.7859903403478,-34.7859652407112,-34.785946397971,-34.7859234460988,-34.785912973984,-34.7858879274614,-34.7858660364281,-34.7858451986902,-34.7858181450743,-34.7857890102168,-34.785762016291,-34.7857381105621,-34.7857142315319,-34.7856955218626,-34.7856706155794,-34.7856426012329,-34.7856021204373,-34.7855606123146,-34.7855284488068,-34.7854910695242,-34.7854640558281,-34.7854422578847,-34.7854193991064,-34.7853976017536,-34.7853509038229,-34.7852927938385,-34.7852367783927,-34.7852056688916,-34.7851807763421,-34.7850844197417,-34.7848803478901,-34.784804782242,-34.7847540894705,-34.7847303106496,-34.7846972202576,-34.7846300190227,-34.7845679867469,-34.7844956027505,-34.7844470179007,-34.7844149413667,-34.7843146097176,-34.7842246767763,-34.7841760848992,-34.784126479166,-34.7840902941406,-34.7840375734508,-34.7840034690761,-34.7839683241216,-34.7839445452746,-34.7839218001242,-34.7839000892784,-34.7838545989811,-34.7838194411833,-34.7837243654891,-34.7836985321324,-34.7836685566135,-34.7836334180317,-34.7835879480492,-34.7835455529113,-34.7834979953063,-34.7834597354703,-34.7834080153627,-34.7833583567152,-34.7833200701122,-34.7832797023027,-34.7832496802969,-34.7832082655102,-34.7831689318543,-34.7831357618654,-34.7830995095372,-34.7830715153318,-34.7830435409187,-34.7830165804038,-34.7829408010911,-34.7829117191907,-34.7828794626516,-34.7828606598537,-34.7828574316599,-34.7828562777388,-34.7828623676031,-34.7828704916454,-34.7828817374974,-34.7829001870289,-34.7829144006304,-34.7829227253383,-34.7829443431874,-34.7829731647464,-34.7830143454357,-34.7830803199637,-34.7831369821922,-34.7831503890033,-34.7831782303129,-34.7832163832391,-34.7832339187955,-34.7832555698232,-34.7832947900796,-34.7833618918611,-34.7833938550398,-34.783446468634,-34.7834794788148,-34.7835052586783,-34.7836012347549,-34.7836775876442,-34.7837456961699,-34.7837993573792,-34.7838652980188,-34.7838982813897,-34.78391476351,-34.7839343535132,-34.7839518692573,-34.78397514761,-34.7839840860724,-34.7839975327637,-34.7840377733758,-34.7840511669017,-34.7840600985589,-34.7840690029521,-34.7840824097184,-34.7841044679406,-34.7841043547248,-34.784104234577,-34.7840996388081,-34.7840995387427,-34.7840810292161,-34.7840809422199,-34.7840853578072,-34.7840852779966,-34.7840851976784,-34.7840757463657,-34.78406202606,-34.7840574239017,-34.7840436966039,-34.7840299561045,-34.7840162226784,-34.7840024888228,-34.783993357388,-34.7839842190975,-34.7839796035545,-34.7839522496626,-34.7839339798852,-34.7839248417669,-34.7839157241797,-34.783902096972,-34.7838929720698,-34.7838838343291,-34.7838747430096,-34.7838701605093,-34.78386080214,-34.7838516777734,-34.7838379571019,-34.783828858874,-34.7838197611191,-34.7838106365113,-34.7837833156146,-34.7837559746219,-34.783733136612,-34.7837240252002,-34.7837194029043,-34.7836964977091,-34.7836690902327,-34.7836553496145,-34.7836369802657,-34.7836366264211,-34.7836362730851,-34.7836359529844,-34.7836399817548,-34.7836451378952,-34.783648339536,-34.7836526483055,-34.7836569768317,-34.7836610526463,-34.7836654678861,-34.7836697705863,-34.7836739194181,-34.7836826772283,-34.7836825639035,-34.7837001458596,-34.7837133594615,-34.7837177552913,-34.7837195095932,-34.7837220642142,-34.7837264727011,-34.783735330636,-34.7837486975168,-34.7837576358453,-34.7837766922583,-34.7837841360003,-34.7837702688234,-34.7837698020496,-34.7837726431703,-34.783777785872,-34.7837727833219,-34.783772196681,-34.7837690883771,-34.7837665538556,-34.7837571289221,-34.7838185937726,-34.7837717497487,-34.7837597565452,-34.7837545276257,-34.7837468502463,-34.7837028875823,-34.7836816434478,-34.7839467934223,-34.7840534347897,-34.7842336547128,-34.7843259623179,-34.7844096719976,-34.7845382384067,-34.7846814254305,-34.7847927097156,-34.7849248311598,-34.7850901165019,-34.7852158346661,-34.7853235498587,-34.7853470022761,-34.7853914183881,-34.7854863469554,-34.7856007195462,-34.7857771639328,-34.7857794650155,-34.785879630004,-34.7861013178484,-34.7864252047298,-34.7866454314344,-34.7870148756161,-34.7872129307642,-34.7873610474303,-34.78728296695,-34.7870386212491,-34.7870253678943,-34.7870101131461,-34.7869857471964,-34.7871069431565,-34.7870561437368,-34.787205294031,-34.7872760036814,-34.7872757366336,-34.7872747827912,-34.7872704541602,-34.7872369235393,-34.7872300064611,-34.7872220158836,-34.7871980100086,-34.7871712159418,-34.7869000696355,-34.7866857322839,-34.7863856876174,-34.7861546718265,-34.78597754715,-34.7859769337774,-34.7859534147047,-34.7860723829638,-34.7860964617519,-34.7856478039034,-34.7852532334432,-34.7853237301347,-34.7852009266151,-34.7851231932821,-34.7850235483097,-34.7848662336421,-34.7847837816677,-34.7847336403483,-34.7846298945322,-34.7835313923524,-34.7834357430236,-34.7833490049572,-34.7829154280171,-34.7826072023906,-34.7824370212905,-34.7819830605047,-34.781636848621,-34.7816204268185,-34.7812160649455,-34.7810994114509,-34.7805468998399,-34.7801692450737,-34.7798816434168,-34.779499513009,-34.7791578167875,-34.779036721002,-34.7790103540706,-34.7789839871392,-34.7786453524966,-34.7781461083569,-34.7780113655333,-34.777739661397,-34.7776853138593,-34.7775635758108,-34.777444933438,-34.7755947531916,-34.7729238268198,-34.771620810299,-34.7651354207317,-34.7628197904334,-34.7611112616927,-34.7588498522575,-34.7573352662742,-34.7544770480555,-34.7540416483424,-34.7523327014895,-34.7511572705588,-34.7498957297405,-34.7489511233283,-34.7488298190428,-34.7479893430209,-34.7475033336038,-34.7462391159916,-34.7449747499501,-34.743862932711,-34.7424518479428,-34.741614303828,-34.7411941347658,-34.7405519992149,-34.7400281695329,-34.7388645399649,-34.7375079696655,-34.7350872053727,-34.7334787759791,-34.7324132053221,-34.731419408338,-34.7307062256795,-34.7297199882423,-34.7286077123564,-34.7276587762453,-34.7264664202793,-34.7256185097182,-34.724743231805,-34.724054373137,-34.7233804477395,-34.7231805679783,-34.7226726079994,-34.7224393021963,-34.7221007516972,-34.7217017657783,-34.7213330792737,-34.7212153063121,-34.7210521849051,-34.7202213341038,-34.7193210865525,-34.7187242818315,-34.7185713714885,-34.7184182628744,-34.7176826843683,-34.7168998487607,-34.7166880638674,-34.7164741260711,-34.7159780850934,-34.7157403257691,-34.715434997735,-34.7140455394581,-34.7134652452854,-34.7132343806423,-34.7131403993897,-34.7131986324501,-34.7133782168553,-34.713739777599,-34.7142084553649,-34.7147846522733,-34.7152389944642,-34.7155573537294,-34.7158286127033,-34.7158563649177,-34.7159157842641,-34.7158385208796,-34.715669163821,-34.7153938890841,-34.7148068720687,-34.7139533694167,-34.712956269559,-34.7126224601743,-34.7117457679254,-34.7111154996327,-34.7105835648464,-34.7088841812602,-34.7085935623351,-34.7080278598854,-34.7073562471954,-34.7051364580301,-34.704978911596,-34.7040890871671,-34.7032453182783,-34.7023573674601,-34.7020797338181,-34.7020276929816,-34.7020342067899,-34.7021794307988,-34.7023878344607,-34.7027163305536,-34.7028045197649,-34.7025881786445,-34.7022357853546,-34.7019894944654,-34.70181759889,-34.70201198142,-34.7022673904273,-34.7030677016832,-34.7034326345818,-34.7037831678465,-34.7042088187103,-34.704634885483,-34.7048157908322,-34.7048437551301,-34.7048116253442,-34.7046420983914,-34.7042601633821,-34.7038472434367,-34.7036778184866,-34.7036900221849,-34.7036125065052,-34.7032698902449,-34.7032443369916,-34.7032424758759,-34.7033490752422,-34.703500972016,-34.703941116536,-34.7041233714265,-34.7044587788243,-34.7048554262181,-34.705282745802,-34.7056635336917,-34.7058905412823,-34.7061479066035,-34.7063438213912,-34.7065846956865,-34.7067951048736,-34.7069146479121,-34.7067905905701,-34.7066815533076,-34.7066645345734,-34.706768209637,-34.7067208310464,-34.7067954090501,-34.7070684172984,-34.7073574996492,-34.7077083508126,-34.7081189690048,-34.7082995335794,-34.7084800968874,-34.7085990996546,-34.7086274508338,-34.7084735513923,-34.7085338433312,-34.7086248095173,-34.7087769129865,-34.7092184146329,-34.7096449087294,-34.7098277796465,-34.7100555118942,-34.7102064520853,-34.7103548519045,-34.7105351940517,-34.7109718190388,-34.7111221180482,-34.7114713805321,-34.7116987909516,-34.7120328213272,-34.7120916225563,-34.7122560859412,-34.712544207409,-34.7128487302406,-34.7132454927907,-34.7136562103299,-34.7138369661348,-34.7141864380742,-34.7145354838553,-34.7148076261809,-34.7151278062816,-34.7154014396701,-34.7156751795311,-34.71581290191,-34.7161935815763,-34.7166038715641,-34.7169988232161,-34.7173024925069,-34.7174985813772,-34.7177107545551,-34.7179688352302,-34.7181648154024,-34.7182075184442,-34.7185251336808,-34.7186302564176,-34.7186593284403,-34.7186577230344,-34.7188842671678,-34.7191259346311,-34.7191997337172,-34.7191830010086,-34.7189062604677,-34.7186562939479,-34.7182166588162,-34.7181766288633,-34.7182124670741,-34.7185459449858,-34.7188942231203,-34.7191512193618,-34.7192567622909,-34.7194517536251,-34.7196788232836,-34.7199826966358,-34.72031789551,-34.720759929916,-34.7209880775064,-34.7211781515598,-34.7212349065521,-34.7215097184929,-34.7217215571544,-34.722083875865,-34.7222954970435,-34.7227038300189,-34.7228404806112,-34.723082670598,-34.723310385157,-34.723583361365,-34.7237338371922,-34.7237472296446,-34.723745606378,-34.7237735789315,-34.7237710872217,-34.7237534710757,-34.7237968876188,-34.7239622625535,-34.7243248840496,-34.7245967672588,-34.7250091135727,-34.7252337672746,-34.7255688575799,-34.7261016294718,-34.7263429379473,-34.7263541407898,-34.7266719293622,-34.7269282461586,-34.7271714027216,-34.7274616711396,-34.7279188301944,-34.7282839467405,-34.7286488450649,-34.7290883724809,-34.7296197235591,-34.7301984059452,-34.73126460079,-34.7319484827136,-34.7322233023621,-34.7325409093459,-34.7329847606274,-34.7336240403228,-34.7340945731999,-34.7342452471518,-34.7345019929939,-34.7349124734774,-34.7353296400465,-34.7354612392732,-34.7356432495351,-34.735933848303,-34.736360325749,-34.7369239945679,-34.7373452628643,-34.7375474947183,-34.7380659070508,-34.7384625780219,-34.7387199790142,-34.7387483621409,-34.7385029210757,-34.7383141052216,-34.7383423738638,-34.7384913939767,-34.7388203290737,-34.739104772538,-34.7394204443486,-34.7397080755915,-34.7401492322451,-34.7405302354606,-34.7408669778538,-34.7413115506243,-34.7417560114848,-34.7426873223858,-34.7430231812881,-34.7432826635283,-34.7437106798371,-34.7444431018645,-34.7450211218103,-34.7453551107715,-34.745673318009,-34.7467983429849,-34.7474514167806,-34.7479211631657,-34.7484808621629,-34.7489209146506,-34.749680933736,-34.7501052013391,-34.7501785958112,-34.7503604869515,-34.7505424884522,-34.7506475593275,-34.7507993190611,-34.7508735946591,-34.7509631007091,-34.751190130361,-34.7513256611128,-34.7513984927199,-34.751243518462,-34.751134347412,-34.7513508723565,-34.751967846878,-34.7522394533376,-34.7524506893809,-34.7524487981822,-34.7525992187154,-34.7529617621252,-34.7533244148643,-34.7536667779959,-34.7537952569622,-34.7540504956308,-34.7543956751859,-34.754374994632,-34.7539570725485,-34.7535871179003,-34.753771511305,-34.7538316494834,-34.7537683414906,-34.7537193916051,-34.7538350220939,-34.753996920177,-34.7540898717269,-34.7539356674498,-34.7539439262634,-34.7540301310548,-34.7544565491329,-34.754707645474,-34.7548709150988,-34.7550402303411,-34.7551997793806,-34.7556818457171,-34.755754044858,-34.7558996369208,-34.7559524737438,-34.7566299160602,-34.7569929160911,-34.757232529702,-34.75756432214,-34.7577773315404,-34.7582793925696,-34.7587971392597,-34.7590233335291,-34.7591119909324,-34.7594136555396,-34.7594506976552,-34.7596067629137,-34.7595664417343,-34.7594627728829,-34.7593623688866,-34.7594579523237,-34.7596015688864,-34.7598831448075,-34.760081901734,-34.7603550581576,-34.7605496574906,-34.7605480559175,-34.7604244900363,-34.7603004674245,-34.7602730074946,-34.7601833093685,-34.7602055273468,-34.7608202925262,-34.7610391136284,-34.7611428632751,-34.7613070763611,-34.7616081375108,-34.7618557810751,-34.7619726171664,-34.7621050478971,-34.7624186935364,-34.7626289825302,-34.7627307016227,-34.7627745939369,-34.7628818624856,-34.7629496348345,-34.7629950058547,-34.7631202042014,-34.7630743457692,-34.7631583026697,-34.7632299907306,-34.7632836891939,-34.7632869104601,-34.7633151166878,-34.7634535219905,-34.7635727501329,-34.763665292017,-34.7637398401682,-34.7638613593553,-34.7639290738266,-34.7639316985313,-34.7639229623938,-34.7639121251041,-34.7638884932471,-34.7639487992758,-34.7640785316849,-34.7642219783119,-34.7643208051554,-34.7644084506376,-34.7644818326741,-34.7646244572128,-34.7646581725067,-34.7647284588909,-34.7649070481111,-34.7650161409606,-34.7651875271703,-34.765310525211,-34.7655038097701,-34.7655535066083,-34.7655946898629,-34.7657984136439,-34.765894865745,-34.7661035947303,-34.7663775227178,-34.7669827108804,-34.7673612736814,-34.7674767849686,-34.7679591379305,-34.7681902713828,-34.7682761217875,-34.7684118373623,-34.7686256809556,-34.7687164415295,-34.7687849144056,-34.7688668828849,-34.7689753295789,-34.7690621514478,-34.7690899456536,-34.7690565870724,-34.7690567524029,-34.7691349688546,-34.7694086547248,-34.7695812202914,-34.7697461126196,-34.7698140833125,-34.7698894486927,-34.7699756348849,-34.7700665537963,-34.7700877578167,-34.7700741373112,-34.7699079355568,-34.7695253437289,-34.7693666432919,-34.76930849413,-34.7692877029126,-34.7692064210192,-34.7691888669815,-34.7692109373665,-34.7691675549505,-34.7691159088864,-34.7690186535715,-34.7690085867034,-34.7688947504892,-34.7687619618318,-34.768519456224,-34.768389780446,-34.7681018394751,-34.7679273075441,-34.7677323756333,-34.7677135449485,-34.7676964172967,-34.7681598658838,-34.7684185302715,-34.7687460685914,-34.770280180816,-34.7716659914916,-34.7736545370401,-34.7739554740763,-34.7760768996162,-34.7765118099493,-34.7767915213093,-34.7780445293316,-34.7779494223652,-34.7783338323397,-34.7784890452058,-34.7786275220301,-34.7788396046395,-34.7789903588662,-34.7791965571377,-34.7792481862867,-34.7793408614524,-34.7797173262982,-34.7796393084287,-34.7796130818546,-34.779628780153,-34.7796650175551,-34.7796897133658,-34.7797876088926,-34.7800320834218,-34.7807115047308,-34.7811055025204,-34.7812411312061,-34.7814121393994,-34.7815065680987,-34.7815965011461,-34.7816774095393,-34.7817807294907,-34.781852573209,-34.7819244235975,-34.7819827203293,-34.7820409837105,-34.7821127807381,-34.7821710908101,-34.782233903204,-34.7823101825432,-34.7823865285835,-34.7824448119751,-34.7825076176989,-34.7825659211008,-34.782651271785,-34.7826809001077,-34.782713547866,-34.7827408046261,-34.7827945923657,-34.7828528357367,-34.7829066168063,-34.7829376061216,-34.7829377862145,-34.7829471977349,-34.7829990444736,-34.7830298003352,-34.7830960478341,-34.7831508761104,-34.7831816186318,-34.7832318045139,-34.7832596493861,-34.7834393171826,-34.7838253438985,-34.7839563390403,-34.7835778629851,-34.7836138015196,-34.7836540356026,-34.7836897606936,-34.7837433950209,-34.7838107364173,-34.783846448168,-34.7839136294818,-34.7839808774967,-34.7840345851951,-34.7840793416105,-34.7841240646753,-34.7841912860097,-34.7843260355035,-34.7844069238864,-34.7844877855888,-34.7845463057938,-34.7845776652754,-34.7845843590885,-34.7848030081572,-34.7848975835988,-34.7850010969833,-34.785104557007,-34.7852125393629,-34.7853341554167,-34.7854558048211,-34.7855639205792,-34.7857215552087,-34.7858566715583,-34.785946744678,-34.7860368644884,-34.7861360089531,-34.7862531960562,-34.7863612117626,-34.7864514449649,-34.7865507361719,-34.7866815903234,-34.7868077687302,-34.7869067864628,-34.7870055840819,-34.7870774344703,-34.7871719165305,-34.7872800789793,-34.7873564983907,-34.7874464314382,-34.787531882174,-34.787621975304,-34.7877211197687,-34.7878337111682,-34.7879823544941,-34.78808595459,-34.7881940836882,-34.7883066950982,-34.7884418381282,-34.7885679498339,-34.78865342058,-34.7887433069367,-34.7888917034686,-34.7890045016415,-34.7891081684385,-34.7892434448706,-34.7893561496621,-34.7894462828127,-34.7895499496096,-34.7896626143804,-34.7897752124501,-34.7898967551328,-34.7899912238527,-34.7900767346195,-34.79019376164,-34.7903062463179,-34.7904007150378,-34.7904951704176,-34.7905761121613,-34.7906931992127,-34.7907923303372,-34.7909095374506,-34.7910717210928,-34.7911978928295,-34.7913240779063,-34.7914592142663,-34.7916122065016,-34.791724657829,-34.7918055995727,-34.7918910636487,-34.7919616682811]}]],[[{&#34;lng&#34;:[-56.1274053768421,-56.1271609583756,-56.1270181160936,-56.1268177516635,-56.126771896807,-56.1264531481,-56.1263308299727,-56.1262103356244,-56.1261734833355,-56.1260002885886,-56.1258412294544,-56.1255880756268,-56.1253309433497,-56.1250856471649,-56.124937052827,-56.1246438400609,-56.1241813942945,-56.1237492993997,-56.1234585255296,-56.1232155856523,-56.1229851483037,-56.1227936066443,-56.1221324175659,-56.1206842170877,-56.120258477639,-56.1201062658372,-56.118530126315,-56.1178661438823,-56.1178073388063,-56.1174963184997,-56.1138286788765,-56.1110007979505,-56.1109564824026,-56.110862620383,-56.1105119438891,-56.1099971845762,-56.1098175005026,-56.1093598131148,-56.1090035117604,-56.1088967911412,-56.1083916994424,-56.1077891939012,-56.107472420337,-56.1065237420024,-56.1065363769234,-56.1074246122783,-56.1075620173117,-56.1079425563844,-56.1083569457956,-56.1086204074487,-56.1089768712297,-56.1091701410911,-56.1093512098734,-56.1098033804489,-56.1100264176792,-56.1101738610328,-56.1102440835799,-56.1102777821024,-56.110544882026,-56.110903772787,-56.1094199904411,-56.1087939651276,-56.1084355536189,-56.1070732310343,-56.1064704992007,-56.1064611335719,-56.1019242822563,-56.1008193657559,-56.0971658215297,-56.0916202174816,-56.0913504686964,-56.0897647639833,-56.0887717647764,-56.0887369895641,-56.0882376587876,-56.0880225848157,-56.0874774551819,-56.0868610964809,-56.086026081496,-56.0854965084767,-56.085133096002,-56.0846441902844,-56.0843895737072,-56.0840958626116,-56.0837168962958,-56.0830808242284,-56.0829430765052,-56.0829031359755,-56.0828160819174,-56.0827904841355,-56.0827717118835,-56.0826656820939,-56.0823984381179,-56.0825318131294,-56.0825032128758,-56.0828143934176,-56.0829970302203,-56.083208519603,-56.0831264676981,-56.0828815878175,-56.0820241619301,-56.0817777140073,-56.0817439230614,-56.0813262906341,-56.0810198111117,-56.0803192953812,-56.0800254663754,-56.0796510074971,-56.0793829499796,-56.079321521766,-56.0792736017167,-56.0792007284547,-56.079120035574,-56.0790725852961,-56.0790100577505,-56.0789298133691,-56.0788427793207,-56.0787915688358,-56.078749669571,-56.0786362538758,-56.0784495815394,-56.0783399133183,-56.0782931577168,-56.0782404996589,-56.0781622953602,-56.078128113756,-56.0780868119192,-56.0780086631705,-56.0779361310693,-56.077902633866,-56.0778601067139,-56.0777878567533,-56.0777021258477,-56.0776763498687,-56.0776531590608,-56.0776138976748,-56.0775814503098,-56.0775562110011,-56.0775204425831,-56.0774494513243,-56.0774317937602,-56.0773943505385,-56.0773149806689,-56.0772276554963,-56.0771993810404,-56.0770813491608,-56.0766100289953,-56.0762919452077,-56.0763410503622,-56.0761230987719,-56.0760914318891,-56.07600359876,-56.0759449205753,-56.075916970471,-56.0758893998944,-56.075861916309,-56.0758723237037,-56.0758451879716,-56.0758051998043,-56.0757305602779,-56.0756291681495,-56.0754392347334,-56.0752218972546,-56.0749400457951,-56.0745329389534,-56.0740333872769,-56.0735515880842,-56.0732837400138,-56.0726508372489,-56.0718026831642,-56.0715541185428,-56.0709790858218,-56.0705330453292,-56.0703368278261,-56.0701701966154,-56.0698497834931,-56.0698290710493,-56.0698266693075,-56.0698236776402,-56.0698189791711,-56.0698149168646,-56.0698119765408,-56.0698066978944,-56.0698043507043,-56.0697996199533,-56.0697828212063,-56.0696393931521,-56.0694677380772,-56.0690813248404,-56.0690256144651,-56.0693287321089,-56.0694337345432,-56.0693024190978,-56.0691217825843,-56.0684134609635,-56.0679683011873,-56.0675974038266,-56.0675587410725,-56.0677787355375,-56.0677200948419,-56.0675894626696,-56.0674382087792,-56.0670541623602,-56.0669409583903,-56.0667740842775,-56.0665955396537,-56.0663660113175,-56.0660712549535,-56.0656924007382,-56.0654252589759,-56.0652516075944,-56.065003541806,-56.0648885957125,-56.0646108539578,-56.0645345808108,-56.0645265551963,-56.0647384350341,-56.0649598002909,-56.0649123849642,-56.064772148208,-56.0645877012195,-56.0642708014043,-56.0640648912593,-56.0637587418957,-56.0635425417764,-56.063369499634,-56.0630160443298,-56.0626039186241,-56.0623474557432,-56.0621119977494,-56.0615682289339,-56.0613110359449,-56.0609859784649,-56.0607507102647,-56.060300320003,-56.0600437578368,-56.0598599543838,-56.0595635769774,-56.0594313349308,-56.0592993800508,-56.0589647205926,-56.058912341654,-56.0587236390876,-56.058676289839,-56.0587130654999,-56.0586566186283,-56.0585669993914,-56.0584571090395,-56.0582246238768,-56.0580834157734,-56.0579121342762,-56.0578324341059,-56.0576625735542,-56.0575094268389,-56.0573261109363,-56.0571354553207,-56.0569945391081,-56.0567005742068,-56.0565087712446,-56.0564297292417,-56.0563647651804,-56.0562520782469,-56.0565928497151,-56.056657598136,-56.0567022980161,-56.0564701158651,-56.0561950568664,-56.0559411018038,-56.0552940407317,-56.0551582964243,-56.0550646902706,-56.0551109318148,-56.0548991932725,-56.0547169490271,-56.0538678186915,-56.0535798622955,-56.0531299973883,-56.0525967711723,-56.0519141204706,-56.0510356261572,-56.0503693943904,-56.0499086308159,-56.0498400056246,-56.0495934935529,-56.0493376210212,-56.0490417560593,-56.0485112235837,-56.0479009034713,-56.0476062991222,-56.0473839595345,-56.0471539457486,-56.0468161346649,-56.0464930338726,-56.0460580999045,-56.0458729606895,-56.0456693521778,-56.0456045056484,-56.0455248036749,-56.0454906931215,-56.0454726109093,-56.0455479131456,-56.045579095135,-56.0451680417585,-56.0447860795939,-56.0444163703236,-56.0439057774619,-56.04330246511,-56.0425345118767,-56.0422562720158,-56.0412682639332,-56.0407844189157,-56.0405446085554,-56.0401587184805,-56.0397390890741,-56.0391345972099,-56.0387213168838,-56.0384980870462,-56.0381776789674,-56.038124350009,-56.0382127728205,-56.0382417582727,-56.0383593633112,-56.0383247060096,-56.0380570338435,-56.0369882891331,-56.0369869849387,-56.0370644409518,-56.0371494083355,-56.0371786147283,-56.0371508512561,-56.0370745592023,-56.0370194895202,-56.0368928377451,-56.036767961907,-56.0365808945646,-56.0363630388601,-56.0361775749281,-56.0359769643417,-56.0357011426448,-56.0355706073101,-56.0354767060231,-56.0353334442073,-56.0351840566042,-56.0350963394689,-56.0350702335563,-56.0349891762575,-56.0349507597084,-56.0348793653255,-56.0348121957801,-56.0347181143478,-56.0346985839059,-56.0346359865271,-56.0345477328844,-56.0344647722365,-56.0344261761711,-56.0343933488322,-56.034317464081,-56.0342534139762,-56.0341454736272,-56.0341453208979,-56.0341066387646,-56.0340390743369,-56.0339469566581,-56.0338821910684,-56.0337549194134,-56.0337529561345,-56.0338238496497,-56.0338553391333,-56.0338704422827,-56.0338865294242,-56.0338372600249,-56.0337604457093,-56.033734693419,-56.0336028401838,-56.0335019126213,-56.0334214069336,-56.0334130969244,-56.0334473785401,-56.0334234410401,-56.0332904085126,-56.0331585032364,-56.0330454410951,-56.0328858941427,-56.032754253772,-56.032522657897,-56.0323153090555,-56.0317450832563,-56.0315028457267,-56.0312599856522,-56.0308620645299,-56.0306180401897,-56.0305429691811,-56.0306532889349,-56.0308487716127,-56.031076601852,-56.0310438797738,-56.0305816306539,-56.0302026974418,-56.0298964700105,-56.0295193130484,-56.0293436418544,-56.0292824276432,-56.0293085459735,-56.0294186113158,-56.0294816868866,-56.0294325861674,-56.0294474254763,-56.0293984042997,-56.0290402124885,-56.0290978642845,-56.0293907238777,-56.0295629029434,-56.0295591572188,-56.0295709916748,-56.0292394770646,-56.0291655811844,-56.0292775211188,-56.0294574577078,-56.0296609287639,-56.0302503162257,-56.0309549281274,-56.031594169434,-56.0319215420823,-56.0324545558011,-56.0327921455696,-56.0330051506865,-56.0330041668193,-56.0328781057483,-56.0328239645172,-56.0325958184228,-56.032512005646,-56.0323856963708,-56.0323506375441,-56.0324701865754,-56.0327009009619,-56.0330799813344,-56.0335504196689,-56.0342054916513,-56.0346594058542,-56.034876150898,-56.0350201888523,-56.0352959843014,-56.0356527411367,-56.0362030580686,-56.0365823652998,-56.0368834830592,-56.0371479012296,-56.0371637068595,-56.0370654700855,-56.0370922062368,-56.037159033037,-56.0372024839091,-56.0372920026824,-56.0375600575711,-56.0378196537811,-56.0380020245764,-56.0381956913976,-56.0382244880298,-56.0384519570541,-56.0387919463029,-56.0388713494404,-56.0388878747148,-56.0388271818064,-56.038887194884,-56.0392608895475,-56.0396571806846,-56.039889774306,-56.0399884470142,-56.0399283454159,-56.03969449517,-56.0395996884438,-56.0394980560994,-56.0396513463448,-56.0398676077331,-56.0402202239089,-56.0405886027855,-56.0410905956483,-56.0418308824153,-56.0421835163126,-56.0425326168436,-56.0428737940333,-56.0430411942543,-56.0430450902359,-56.0427761690802,-56.0426354462536,-56.0424142015316,-56.0415382320355,-56.0412910905302,-56.0410973992964,-56.0409077455838,-56.0407004280587,-56.040860763195,-56.0404905977021,-56.0396581705177,-56.0390874770932,-56.038545461887,-56.0381845310186,-56.0381771308214,-56.0381902551132,-56.0388451980783,-56.0399477803357,-56.0405348210741,-56.0410403402084,-56.0413921967234,-56.0415944520496,-56.0417432661944,-56.0418953006419,-56.041840385367,-56.041540072613,-56.0411801728602,-56.0405577831356,-56.0400889927148,-56.0399177222034,-56.0403170745532,-56.0408639090559,-56.0416541847947,-56.0416506624904,-56.041326460867,-56.0406755092052,-56.0401471182137,-56.0400033423331,-56.0400457021112,-56.0404683729791,-56.0409326404471,-56.0414881027678,-56.0422295561582,-56.0428790464794,-56.0433558862917,-56.0434401210885,-56.0435128634907,-56.0439438583287,-56.0443112789052,-56.0447754072578,-56.044890341799,-56.0451366599767,-56.0451991878982,-56.0452771139486,-56.0454233998511,-56.0455173016409,-56.0455322768719,-56.0456261288999,-56.0457091141947,-56.0457420252679,-56.0458033165123,-56.0458501427609,-56.0458810936825,-56.0459381870382,-56.0460056974703,-56.0460942919243,-56.0461668112286,-56.0463608733869,-56.0464633476432,-56.0536586304246,-56.0592416430604,-56.0636503167263,-56.0670988943915,-56.0690898148352,-56.0692811465684,-56.0694203941217,-56.0694566343096,-56.0694865489221,-56.0694681837713,-56.0694656007516,-56.0695073549521,-56.0695799270232,-56.0696365023789,-56.0706612464804,-56.071372073932,-56.0717218480525,-56.0724091305939,-56.0734752906404,-56.0747077359181,-56.0754894007073,-56.0801804047086,-56.080219482809,-56.0801815565771,-56.0792746812775,-56.0790789603392,-56.0780875090224,-56.0780351553556,-56.076860149375,-56.0756926405942,-56.0773413883839,-56.0794749845791,-56.083218975451,-56.0838189034298,-56.0866390427235,-56.0874276910594,-56.0875354933371,-56.0877203213366,-56.0885612701521,-56.0887794990812,-56.0888669082344,-56.0900712093233,-56.0918316185246,-56.0920085979836,-56.0951902947827,-56.0953420795779,-56.0955111962912,-56.0955314670136,-56.0957430070309,-56.0958788673111,-56.096166412582,-56.0963751804425,-56.0973418620757,-56.0978796296588,-56.0986374044881,-56.0987255459195,-56.1002208304093,-56.1018255113176,-56.1021356360941,-56.1023201597538,-56.1026691106616,-56.1027580922735,-56.1027959249456,-56.1029633714746,-56.1032786073831,-56.1033210326393,-56.1034596457521,-56.1036672211345,-56.1039962708339,-56.1041531050506,-56.1043198977365,-56.1045259840205,-56.1059624848607,-56.1067154475063,-56.1074197430728,-56.1077563104461,-56.1087875474937,-56.1100157340321,-56.1112117819533,-56.1119208234024,-56.1125038050536,-56.11299408457,-56.1132866154356,-56.1156151029629,-56.1176641169993,-56.1177225836862,-56.1184076017343,-56.1186951908957,-56.1191845976844,-56.1195077500931,-56.1196925254837,-56.1198319741111,-56.120744625176,-56.1212354713874,-56.1214628744544,-56.1215513986332,-56.1215285012307,-56.1214770824496,-56.1213398361492,-56.121188967594,-56.1206941371636,-56.1201259893424,-56.1196261340738,-56.1199792468499,-56.1200286225682,-56.1203288451862,-56.1207820082982,-56.1212736514076,-56.12147753968,-56.1218830981701,-56.122538426996,-56.1235020504635,-56.1236039959933,-56.1240836410331,-56.1251035926275,-56.126278207509,-56.1262673882352,-56.1262574388558,-56.126268785834,-56.1263447359642,-56.1264384416508,-56.1264468638495,-56.126525547803,-56.1266193996657,-56.1268704961171,-56.1274897403506,-56.1275484304003,-56.1277111531603,-56.1280757959278,-56.1285152535127,-56.1286370380021,-56.1289603017068,-56.1289640572105,-56.1289421290504,-56.1289053764244,-56.1289193646156,-56.1289265552307,-56.1289421691167,-56.1290401922487,-56.1297487169541,-56.1298216567617,-56.1301470044819,-56.1304336966511,-56.1303866694474,-56.1303876859592,-56.1305224542787,-56.1305533710264,-56.131839142349,-56.1318348612406,-56.1319841982575,-56.1321935646264,-56.1330281949717,-56.1334190982722,-56.1334638346867,-56.1336730983217,-56.1337679982088,-56.1358313423282,-56.136497705989,-56.135113655532,-56.1351119746652,-56.1336105470072,-56.1323757535259,-56.1322739743691,-56.1306532185039,-56.1296007162901,-56.1295301927981,-56.1294636355579,-56.1293129675102,-56.128723229826,-56.12856331402,-56.1285392830877,-56.1274053768421],&#34;lat&#34;:[-34.8040901150116,-34.8037046379213,-34.803479356732,-34.8031633531829,-34.8030910330928,-34.8026223037588,-34.8024424297502,-34.8022652368126,-34.8022110435142,-34.802038578772,-34.801931208865,-34.8017603210908,-34.8016291185872,-34.8015039545959,-34.8014296976278,-34.8012831696531,-34.8010520679576,-34.8008361310061,-34.8006908169392,-34.8005716057188,-34.8004585287604,-34.8003848956393,-34.8000865036063,-34.7993867025417,-34.7990045725056,-34.798928299598,-34.795583214452,-34.794173940987,-34.7939440826825,-34.7938212884092,-34.7920123623764,-34.7906612064423,-34.7906438353673,-34.7906146251356,-34.7905068255358,-34.7903859744852,-34.7903518074801,-34.7903214697824,-34.7903278584378,-34.7903316071801,-34.7903493481054,-34.7904175837787,-34.7904832932618,-34.7906800754462,-34.7906410141156,-34.7904430595922,-34.7904186109884,-34.7903509004327,-34.790305502985,-34.7902950505738,-34.790280907542,-34.7902823222726,-34.7902764245399,-34.790312719557,-34.7903608323417,-34.7903883179559,-34.7904014084046,-34.7904108936146,-34.7904860745134,-34.7905771618972,-34.7897760709164,-34.789425532111,-34.7894578621178,-34.7895824930598,-34.7892762153071,-34.7892714561283,-34.7869658902775,-34.78640484093,-34.7845465625683,-34.7816507516544,-34.7815088354993,-34.7807614991054,-34.7803063806342,-34.7802847793933,-34.7799746088903,-34.7791845426259,-34.7790416636237,-34.7790023431886,-34.7784524677961,-34.7781709030491,-34.7780756432064,-34.7780887053053,-34.7781278836894,-34.7780678434354,-34.7782082567488,-34.7783908885659,-34.7783912087932,-34.7783913016153,-34.7783915038842,-34.7783915633484,-34.7783916069534,-34.7783918531893,-34.7781822876452,-34.7779964254792,-34.7775816380689,-34.777329527941,-34.7773894639054,-34.777182136991,-34.7769964607217,-34.7767466040848,-34.7765370737153,-34.7764366227092,-34.7764299234893,-34.7762657878531,-34.7762863622563,-34.7760615598661,-34.7760130751033,-34.7756516942507,-34.7755903317322,-34.7755783903446,-34.7755690748638,-34.7755549085305,-34.7755392220315,-34.7755299977856,-34.7755178425157,-34.7755022430649,-34.7754853236415,-34.7754753682884,-34.7754672230251,-34.7754451748087,-34.775408885114,-34.7753448330561,-34.7753175252451,-34.7752867700362,-34.7752410943307,-34.7752211303215,-34.7751970076644,-34.775151364207,-34.7751090011124,-34.7750894367088,-34.7750645982397,-34.7750223997568,-34.7749723274508,-34.7749572726148,-34.7749437276763,-34.7749207964563,-34.7749018450516,-34.774887103616,-34.7748662124623,-34.7748247487467,-34.7748144355175,-34.7747925660895,-34.7747462085273,-34.774695204392,-34.7746786900645,-34.7746097507677,-34.7743216917029,-34.7737552039666,-34.7733018307147,-34.7730239234402,-34.7729490460425,-34.7727547434272,-34.7726239743875,-34.7725616851869,-34.7724912827057,-34.7724130816339,-34.7723273689491,-34.7722179735345,-34.7721441718452,-34.7720362539682,-34.7719540726368,-34.7718854285431,-34.7718475664311,-34.7719078311178,-34.7720389553423,-34.7720399706215,-34.7720546234154,-34.7721913784646,-34.7723831833505,-34.7727854080717,-34.7726871098632,-34.772717421394,-34.7726320612084,-34.7724927618461,-34.7723526956037,-34.7721767558477,-34.7719332455973,-34.7719150724277,-34.7718924354807,-34.7718568837114,-34.7718261455521,-34.7718038970596,-34.7717639551992,-34.771746194737,-34.7717103985842,-34.7706495139548,-34.770497994302,-34.7699994021897,-34.76964089011,-34.7694292811569,-34.7691165773651,-34.7688940508968,-34.7684945400506,-34.7683543652978,-34.7683364793451,-34.7681583025346,-34.7680535466321,-34.7677525308264,-34.7676752757867,-34.7675156179009,-34.7673206959581,-34.7671424786611,-34.7667685559608,-34.7666027495856,-34.7664858091334,-34.766160588387,-34.7660104803559,-34.7660443534191,-34.7661173290054,-34.7662501805932,-34.7663583057758,-34.766499883774,-34.7667266479655,-34.7668931417894,-34.76702736796,-34.7671201410724,-34.7673578472673,-34.7676161097781,-34.7677175673956,-34.7678437674377,-34.7680396301077,-34.7680540575838,-34.7681652835916,-34.7681597286265,-34.7685148244837,-34.7687938782741,-34.7690139426432,-34.7690867239915,-34.7691774940395,-34.7692178371724,-34.7694159996144,-34.7694468634135,-34.7694030787097,-34.7694265579342,-34.7694989646072,-34.7695981603593,-34.7695883097447,-34.7695944520218,-34.7695428422396,-34.7694659404477,-34.7692441386924,-34.7690968393826,-34.7688797264115,-34.7685505371821,-34.7680112142887,-34.7676359895375,-34.767377732598,-34.7671576673265,-34.7669366536825,-34.7667753653609,-34.7665632559827,-34.766402939138,-34.7660470113641,-34.7660373945428,-34.7659853871144,-34.7656803816188,-34.7654938002018,-34.7652891701874,-34.7650853312062,-34.7648486404154,-34.7647488522834,-34.7642992246968,-34.7639814737502,-34.7636784462202,-34.7633415378376,-34.7630952290797,-34.7630256462476,-34.7628972068604,-34.7621085379547,-34.7616601548381,-34.7609090365283,-34.7604372386598,-34.7601910855479,-34.7600463375045,-34.7601493500231,-34.760315739476,-34.7603459673241,-34.7605188781573,-34.761071120014,-34.7612402496232,-34.7614289766008,-34.7615181270252,-34.7614630013543,-34.7613807656842,-34.7614209249351,-34.7613848890198,-34.7613217246582,-34.7610893068306,-34.7609436695736,-34.7607680954565,-34.7606261032042,-34.7604577771384,-34.7603532891701,-34.7605352754874,-34.7606434325286,-34.7608056474594,-34.7610727791988,-34.7612888153848,-34.7615689327418,-34.7617981966893,-34.7619644689105,-34.7622093624962,-34.7624169235796,-34.7627596132262,-34.7629253392811,-34.7629044680908,-34.7629503170926,-34.7631308371723,-34.7633046402433,-34.7634284772743,-34.7633605041196,-34.7634243791198,-34.7635747881786,-34.7636389301,-34.7637859252973,-34.7638990739782,-34.7640507035382,-34.7643685641013,-34.7645620638552,-34.7648662910046,-34.765009852926,-34.7654407807179,-34.7657861922831,-34.7659611360007,-34.7661742400065,-34.7662865226832,-34.7665665922857,-34.7666808327941,-34.7669794245397,-34.7670891823251,-34.7672672268521,-34.767606960035,-34.7678735976762,-34.7679873123743,-34.7680732380089,-34.7682772369335,-34.7682885135371,-34.7682741804501,-34.768353764728,-34.7684088771979,-34.7685051135604,-34.7685907502894,-34.7686712340756,-34.7687675191433,-34.7688847093807,-34.7689402133608,-34.7690522017618,-34.7691477667357,-34.7692654806809,-34.7693770276704,-34.769471580626,-34.7695243989316,-34.769666617329,-34.7698854409753,-34.7700127404278,-34.7701758151764,-34.7703181314873,-34.7705064796261,-34.7707455217365,-34.7708101553671,-34.7708932360544,-34.7710985921532,-34.7713258278402,-34.7715754207131,-34.7718806638692,-34.7720490875648,-34.7722925965935,-34.7723662502348,-34.7724581247562,-34.7727953638279,-34.7728765962964,-34.7729985319483,-34.7730850992813,-34.7732524918914,-34.7734201298808,-34.7735527792677,-34.7736399736145,-34.7739077008546,-34.7740028020206,-34.774197104357,-34.774223869535,-34.7743709938533,-34.7744708154583,-34.7745531767826,-34.7746424679651,-34.7746926570987,-34.774671696261,-34.7747782339169,-34.7749372035162,-34.7752431475546,-34.7756571876404,-34.7759601176396,-34.776138054053,-34.7763030907993,-34.7766388725028,-34.7768156699287,-34.7770227728111,-34.7770956364753,-34.7770679024728,-34.7769890142899,-34.7771562401652,-34.7774397691232,-34.7775353699541,-34.7778347968618,-34.778061267545,-34.7782867469061,-34.7785327774069,-34.778761791248,-34.7795061596416,-34.7798185784073,-34.7801160102029,-34.7802555901668,-34.7802690470068,-34.7804294063788,-34.7808146037594,-34.7810163661043,-34.7811695761558,-34.7813981030813,-34.7814756071326,-34.7817585376741,-34.7820723376423,-34.7821908025779,-34.7821596813786,-34.7820205868802,-34.7819895445422,-34.7821261380464,-34.7822104434515,-34.7825045381857,-34.7827654789652,-34.7830503308547,-34.783226722435,-34.7835266039433,-34.7838831768187,-34.7842282340164,-34.7844258694477,-34.7844706396399,-34.7844406505528,-34.7841814157504,-34.7839857282061,-34.7838019579121,-34.7837187866923,-34.7837294041663,-34.7838081130499,-34.7839389416187,-34.7839549787595,-34.7841092676939,-34.7843842611557,-34.7848149706345,-34.7853537980987,-34.7856912624575,-34.7860964945021,-34.7867544811763,-34.7869659722454,-34.7871417741791,-34.7872905347099,-34.7874268773641,-34.7874705644968,-34.7876309871172,-34.7879078754406,-34.7880486044584,-34.7882515831626,-34.7885889664086,-34.7888539468387,-34.7890073571193,-34.7890303399399,-34.7892273877617,-34.7894400057356,-34.7897443115219,-34.7899945995386,-34.7904164979639,-34.7906602580712,-34.7909493730963,-34.7910525402861,-34.791054246513,-34.7909096612741,-34.7908704091123,-34.7908344837008,-34.7909422715158,-34.7911744517064,-34.7917124758064,-34.7921109425324,-34.7922464502942,-34.7923820729078,-34.7925991911334,-34.7928196599161,-34.7929673216178,-34.7935927749042,-34.7939775797973,-34.7942501149674,-34.794618216513,-34.7951773488027,-34.7960070171183,-34.7959531205029,-34.7957936184739,-34.7957126457121,-34.7958230670898,-34.7963045130674,-34.7969416886135,-34.7972954561553,-34.7975511145975,-34.797465456894,-34.7974700864985,-34.797843666712,-34.7982625709632,-34.7984496527238,-34.798838664737,-34.798949468777,-34.7994685428104,-34.8000524331735,-34.8004446830878,-34.800822117999,-34.8012772293816,-34.8013905803421,-34.8019554400992,-34.8024048707075,-34.8030030276145,-34.8035844393471,-34.8038231740728,-34.8039964694562,-34.804259940798,-34.8046666359816,-34.8050110761424,-34.8056579736206,-34.8058082390257,-34.8058763389688,-34.8058949217668,-34.8058490534064,-34.805755049585,-34.8057470364743,-34.8057186474393,-34.805711323151,-34.8057050780311,-34.8057878892418,-34.8058538561768,-34.8059528826555,-34.8059777341371,-34.8060607609216,-34.8061443239334,-34.8062101252847,-34.8062796451604,-34.8063497836888,-34.8064502004808,-34.8064811236877,-34.8064899780652,-34.8065337217539,-34.80658601625,-34.8066515286616,-34.8067257980171,-34.8067958949679,-34.8068918917531,-34.8070280093853,-34.8071718254637,-34.8029996726426,-34.7997539120542,-34.7971860744213,-34.7951247110823,-34.7934283176712,-34.7932015797124,-34.7929274016091,-34.7926883791988,-34.7924910760289,-34.7924623599484,-34.7924308412827,-34.7922415516453,-34.7921309564293,-34.7920333153595,-34.7925951532663,-34.7929898735328,-34.7931837880327,-34.7935648114019,-34.7941454130582,-34.7948165474719,-34.7952421950262,-34.7977964370989,-34.7977468124647,-34.7977969513357,-34.7989958277574,-34.7992559085543,-34.8005124632584,-34.8005845671109,-34.8020832533551,-34.8035773038751,-34.8044273115299,-34.8055272228316,-34.8074568446536,-34.8077707896172,-34.8092465098878,-34.8096157384727,-34.8096267198718,-34.8096433651662,-34.8097208778461,-34.8096707907621,-34.8097261883455,-34.8103231962377,-34.8111581238275,-34.8112513567978,-34.8128376725048,-34.8129143265397,-34.8128761320852,-34.8128902404274,-34.8132679004944,-34.8132743647974,-34.8132980797847,-34.8133995027677,-34.8138750445805,-34.8141379502706,-34.8145098891037,-34.814553151067,-34.8152870562273,-34.8160769102419,-34.8162369158691,-34.8163192418852,-34.8164832974895,-34.8165571845984,-34.8165756129497,-34.8166571761666,-34.816810735361,-34.8168313999886,-34.8169038900663,-34.8170008934304,-34.8171623366908,-34.8172392830406,-34.8173215854861,-34.8174232712614,-34.8181458239003,-34.8185229362382,-34.8188756669657,-34.8190442278167,-34.8195606855548,-34.8201458853093,-34.8207554720214,-34.8211281652546,-34.8214217133603,-34.821668513975,-34.821816603682,-34.8230092054039,-34.8240559006364,-34.824083262763,-34.8244000408513,-34.8239735692691,-34.8242028703647,-34.8243582650271,-34.8244361299075,-34.8244946533717,-34.8249190044374,-34.8251546352022,-34.8252545720974,-34.8252852598084,-34.8253112108253,-34.8253694867761,-34.8255719282442,-34.8257693518272,-34.8265604349335,-34.8273005852449,-34.8280480266118,-34.8282804655964,-34.8283041903964,-34.8284926838316,-34.8287771972651,-34.8290890794462,-34.8291980288206,-34.8294686593425,-34.8298878949032,-34.8304740852334,-34.8303471430194,-34.8295246452546,-34.8277857831038,-34.8256893290336,-34.8256442308514,-34.8256027586242,-34.8255513228694,-34.825207039812,-34.824811241167,-34.8247756668745,-34.8245110079454,-34.8240314512287,-34.822748389284,-34.8213288921567,-34.8212028292982,-34.8207988168686,-34.8198630695278,-34.819910936047,-34.8199242007449,-34.8199578628006,-34.8198948420234,-34.8191510003145,-34.8189402205009,-34.8185481944193,-34.8185144245818,-34.8184410957893,-34.8182870159151,-34.8173265763185,-34.8172615490485,-34.8164484865529,-34.8156413993501,-34.8156144203888,-34.8155176826412,-34.8152004943485,-34.8152146384417,-34.815851020195,-34.8158475319457,-34.8158697167203,-34.8159001182983,-34.8160194902906,-34.8160736418897,-34.8160798921153,-34.8161091285806,-34.8161223870288,-34.8164149312347,-34.8165079792219,-34.8144470897018,-34.8144445884118,-34.8122106896664,-34.8104063057661,-34.8103073947552,-34.8086706639846,-34.8075300298764,-34.8074551713976,-34.8073869998209,-34.8072182369035,-34.806173796286,-34.805924347639,-34.8058862823194,-34.8040901150116]}]],[[{&#34;lng&#34;:[-56.1451489569346,-56.1462188561015,-56.1472506431256,-56.1477873920567,-56.1481778343537,-56.1488123969902,-56.149072781277,-56.1493215028825,-56.1500458097594,-56.1512842751344,-56.1521454626041,-56.1536260328387,-56.1539281586527,-56.1549704461871,-56.156216848288,-56.1563291070297,-56.1567593621101,-56.156479060885,-56.1559491442601,-56.155884543298,-56.1558177568642,-56.1564348648979,-56.1564489507581,-56.1564669271171,-56.1570616498818,-56.1573862912943,-56.1575480891236,-56.1577236402605,-56.1577248857383,-56.1579560553973,-56.1582297814696,-56.1582314788655,-56.1584939405565,-56.1586963198324,-56.159045309527,-56.1597544320503,-56.1601966165746,-56.1604722544254,-56.1606559810752,-56.1609718968289,-56.1617337341878,-56.1620973419977,-56.1627476759388,-56.1632679104017,-56.1637164633986,-56.1648789939124,-56.1653014524847,-56.1658760538213,-56.1680932055034,-56.1688794377433,-56.1688897980864,-56.1689239206843,-56.1689658872955,-56.1689904549977,-56.1689927328557,-56.1690196758547,-56.169034609436,-56.1690339020383,-56.1690578819017,-56.1690599109817,-56.1690678899329,-56.1690505910114,-56.1689633226716,-56.1689440603747,-56.168826867298,-56.1688014983919,-56.1687809069284,-56.1687742779823,-56.1687230670989,-56.168621304706,-56.1686144110622,-56.1685635936573,-56.1685310399204,-56.1684695997127,-56.1681947613048,-56.168137497197,-56.1681306982658,-56.1681270280397,-56.1681240314943,-56.1680954167369,-56.1680255390325,-56.1680024154404,-56.1679151370954,-56.167687689795,-56.1675957383687,-56.1644974378338,-56.1610171584451,-56.1606364830267,-56.1604661020779,-56.155820812113,-56.1557076414564,-56.1552192118279,-56.1538187196216,-56.1525603089104,-56.1521075263728,-56.1497241138526,-56.1494854474329,-56.1494005936009,-56.1491156167017,-56.1489776322062,-56.1489688953858,-56.1487001847588,-56.1484315311149,-56.1480273393263,-56.1475986777108,-56.1475142008106,-56.1446177670456,-56.1431280420896,-56.1427829707942,-56.1432460162652,-56.1433034192027,-56.1439315731578,-56.1364390323961,-56.1362068340459,-56.136096150902,-56.1293205845638,-56.1274322240213,-56.1273983332096,-56.1263212644043,-56.1251509123095,-56.1250856471649,-56.1253309433497,-56.1255880756268,-56.1258412294544,-56.1260002885886,-56.1261734833355,-56.1262103356244,-56.1263308299727,-56.1264531481,-56.126771896807,-56.1268177516635,-56.1270181160936,-56.1271609583756,-56.1274053768421,-56.1285392830877,-56.12856331402,-56.128723229826,-56.1293129675102,-56.1294636355579,-56.1295301927981,-56.1296007162901,-56.1306532185039,-56.1322739743691,-56.1323757535259,-56.1336105470072,-56.1351119746652,-56.135113655532,-56.136497705989,-56.1375642260206,-56.1390912675397,-56.1392596677534,-56.140623537119,-56.1410729260473,-56.141380086598,-56.1418044520255,-56.1430136753319,-56.1430975988293,-56.1438364207519,-56.144242249711,-56.1450511670622,-56.1451489569346],&#34;lat&#34;:[-34.8177183004783,-34.81756144919,-34.8176524578543,-34.8177221566386,-34.8177651862663,-34.8178569615933,-34.8178878641972,-34.8179052665053,-34.8179575334608,-34.8181301958405,-34.8182497108108,-34.8184938433828,-34.818542655223,-34.8186797125737,-34.8188394564947,-34.8188515374475,-34.8188959841104,-34.8196538749741,-34.8211605653462,-34.821405930903,-34.8216595956156,-34.8218448571195,-34.8218535640117,-34.8218646757327,-34.8219534247447,-34.8220018688788,-34.8220260125766,-34.8220477956442,-34.8220479879645,-34.8220836837656,-34.8221224855648,-34.8221227258609,-34.8221598816126,-34.8221856513884,-34.8222300888382,-34.8223393230731,-34.8224016572469,-34.822441499488,-34.8224712220741,-34.8225089698111,-34.8226014551166,-34.8226515327134,-34.8227430511429,-34.8228227559138,-34.8228981748092,-34.8230785052074,-34.823173443439,-34.8232755827815,-34.82364419235,-34.8237543763743,-34.8236957528073,-34.8231638384855,-34.822462039763,-34.8221292249088,-34.8220938045944,-34.8216263496234,-34.8214426108043,-34.8213964070473,-34.8209321855822,-34.8208331940836,-34.8207657350555,-34.8206623017123,-34.8201440544389,-34.8200549931424,-34.8194780709742,-34.8193545603881,-34.8192543089077,-34.8192228036344,-34.8189794138039,-34.818490447772,-34.8184629874697,-34.8182244643306,-34.8180975189577,-34.8177747125087,-34.8164683921391,-34.8151158653361,-34.8149552784544,-34.8148685937489,-34.8148009922184,-34.8146138290268,-34.8141567533012,-34.814008089965,-34.8134359282199,-34.8119537304793,-34.8119167981545,-34.8088748692985,-34.8084579381114,-34.8084091440759,-34.8083881820713,-34.8077720655217,-34.8077598628842,-34.8076995789246,-34.8075206218077,-34.8073374416147,-34.8072715290816,-34.806968052571,-34.8069376635653,-34.8069268576072,-34.8068905659425,-34.8068729968817,-34.806866883377,-34.8068360927981,-34.8067948416881,-34.8067426974188,-34.80668957562,-34.8066783364903,-34.8062933979677,-34.8060942485946,-34.8060545281097,-34.8036737002559,-34.8036825714977,-34.8008821739277,-34.7997780778504,-34.7997184982919,-34.7996900980217,-34.7987358336717,-34.7986500961214,-34.7987267890072,-34.800022804062,-34.8014257220881,-34.8015039545959,-34.8016291185872,-34.8017603210908,-34.801931208865,-34.802038578772,-34.8022110435142,-34.8022652368126,-34.8024424297502,-34.8026223037588,-34.8030910330928,-34.8031633531829,-34.803479356732,-34.8037046379213,-34.8040901150116,-34.8058862823194,-34.805924347639,-34.806173796286,-34.8072182369035,-34.8073869998209,-34.8074551713976,-34.8075300298764,-34.8086706639846,-34.8103073947552,-34.8104063057661,-34.8122106896664,-34.8144445884118,-34.8144470897018,-34.8165079792219,-34.8166541479382,-34.8169034070706,-34.8169277056856,-34.8171244905059,-34.8172150419683,-34.8172784866029,-34.817298988198,-34.8174612066688,-34.8174744247982,-34.8175493029258,-34.8176400495327,-34.8177249398137,-34.8177183004783]}]],[[{&#34;lng&#34;:[-56.141006168464,-56.1408902285374,-56.1404585322238,-56.1398944751596,-56.1384608284214,-56.13845260418,-56.1380481514407,-56.1377222956294,-56.1376506135512,-56.1376887569111,-56.1376833474546,-56.1373254795596,-56.1369735232179,-56.1369582412344,-56.1369465412085,-56.1369256087267,-56.1369255484897,-56.1366039641223,-56.1362348971184,-56.1358817316486,-56.1356738210904,-56.1355099265658,-56.1354758012727,-56.1353376753909,-56.1351061893059,-56.1350493626617,-56.1350974433408,-56.1357125267384,-56.1362186437695,-56.1366237683803,-56.1369026798092,-56.1375271852101,-56.1379356344344,-56.1381950641312,-56.1383376958177,-56.1386487562113,-56.1388555022355,-56.1389955676275,-56.1391329328878,-56.1390222021824,-56.1387395769696,-56.1384745209212,-56.1382731476725,-56.1380262020051,-56.1377673487253,-56.1372175301434,-56.1366595606566,-56.1363717369726,-56.1361544530766,-56.1359411742234,-56.1356524123186,-56.1349883101569,-56.1349428274316,-56.1348923994699,-56.1351731705931,-56.135545895906,-56.1360354534875,-56.1365199232557,-56.1367325172335,-56.1373114160719,-56.1376861293478,-56.1381623422338,-56.1384929270353,-56.1390481169316,-56.1391745102987,-56.1394437504939,-56.1395752640327,-56.139652293704,-56.139663362526,-56.1397201476638,-56.1397846560108,-56.1399244302787,-56.1399779360759,-56.1399945360604,-56.1400952013094,-56.1402851759508,-56.140374341936,-56.1406464956259,-56.1408708113113,-56.1414290392037,-56.1418376766151,-56.1425635242867,-56.1431298997143,-56.1433160323744,-56.1437045455053,-56.1438217332953,-56.143966977638,-56.1441481784964,-56.1442396417597,-56.1443214158338,-56.1444084957857,-56.1445063429146,-56.1456176466616,-56.1456608783381,-56.145682145973,-56.1456958897277,-56.1457160801404,-56.1457393654826,-56.1457572146879,-56.1457750605581,-56.145822038119,-56.1458700462113,-56.1459228701206,-56.1459376077212,-56.1459455051274,-56.1459712650791,-56.1459918823787,-56.146014240576,-56.1460314060954,-56.1460437491277,-56.1460540077517,-56.1460666576088,-56.1460875683931,-56.1461074519809,-56.1461139486647,-56.1461252478253,-56.1461368904964,-56.1461547397017,-56.1461777482345,-56.1462017339378,-56.1462202334785,-56.1462271070234,-56.1462332935473,-56.1462435688465,-56.1462579462613,-56.1462761189668,-56.1462905330671,-56.1462953688944,-56.1463001880465,-56.1463125310787,-56.1463231665637,-56.1463341422242,-56.1463427399916,-56.1463657318491,-56.1463770676953,-56.1463887437169,-56.1464014435999,-56.1464172417474,-56.1464371386754,-56.1464443557308,-56.1464618747658,-56.1464708160437,-56.1464804410075,-56.1464944949222,-56.1465154190466,-56.1469413553795,-56.1469543820977,-56.1469801287093,-56.1469965938674,-56.1470069158574,-56.1470179248684,-56.1470264926203,-56.147034046516,-56.1470405932257,-56.1470471399353,-56.1470601866639,-56.1470879843332,-56.1471106526905,-56.1471188902721,-56.1471226688875,-56.1471292155972,-56.1471371130034,-56.1471488057003,-56.1471645704973,-56.1471793080978,-56.1471817193414,-56.1471838037497,-56.147195463096,-56.1472108843825,-56.1472325088682,-56.1472459457979,-56.1472480302062,-56.1472497577639,-56.1472586790315,-56.1472703550531,-56.147276544912,-56.1472817075745,-56.1472985462587,-56.1473239493597,-56.1473414717298,-56.1473596777858,-56.1473720741789,-56.1473823961689,-56.1473923312927,-56.1473971837952,-56.1474000185905,-56.1474096435544,-56.1474147895416,-56.1474360905271,-56.1474645885576,-56.1474890011478,-56.1475058398319,-56.1475154481205,-56.1475264071057,-56.1475397940096,-56.147549075463,-56.1475638464141,-56.1475848539149,-56.1475969067975,-56.1476034535071,-56.1476144958686,-56.1476210759288,-56.1476224766512,-56.1476235338631,-56.1476283730254,-56.1476404392483,-56.1476487301908,-56.1476532258427,-56.1476566609476,-56.1476923760334,-56.1477256765407,-56.1477346011433,-56.1477377294233,-56.1477425986012,-56.1477533674883,-56.1477561355825,-56.1477664609076,-56.1477860676859,-56.1477991611052,-56.1478057078149,-56.1478146824433,-56.1478233302365,-56.1478333153861,-56.1478660322591,-56.1478794691888,-56.1479059661873,-56.1479365152756,-56.147950619216,-56.1479492685195,-56.1479472508122,-56.1479534540114,-56.1479641395221,-56.1479642729243,-56.1479660805232,-56.1479822855472,-56.1479955457191,-56.1479973066273,-56.1479987240249,-56.148000791758,-56.1480076653028,-56.1480138351515,-56.148020692021,-56.1480186743138,-56.1480139185278,-56.1480283159529,-56.1480423698675,-56.1480462118489,-56.1480497003147,-56.1480548929927,-56.1480666390504,-56.1480849118075,-56.1480959708443,-56.148104962148,-56.1481187392532,-56.1481538173439,-56.1481751683551,-56.1481941281332,-56.1481984136767,-56.1481736475708,-56.1481586531711,-56.1481453663188,-56.148153799141,-56.1481895457699,-56.148219248246,-56.1482439338192,-56.1482529417982,-56.1482622899526,-56.1482737091751,-56.1482792453636,-56.1482748497634,-56.1482770842491,-56.1482905378541,-56.1483006864213,-56.1483124324791,-56.1483224309689,-56.1483204299369,-56.1483071597598,-56.1482902110189,-56.1483080001932,-56.1483205933545,-56.1483173883683,-56.1483275536108,-56.1483320059069,-56.1483213971024,-56.14831405665,-56.1483038013611,-56.1482941163663,-56.1482817633289,-56.148283964464,-56.1482654215677,-56.1482506072609,-56.1482542591443,-56.1482634505512,-56.1488156892451,-56.1488521762924,-56.1489692363966,-56.1489574006834,-56.1487124344466,-56.1496612414277,-56.150608049721,-56.1509845872443,-56.1515473474742,-56.1525737601548,-56.1534986838283,-56.1547786072509,-56.1548733661204,-56.1548990126804,-56.1560136375209,-56.1560420608773,-56.1561394746428,-56.156246137427,-56.1562635627911,-56.1575276334673,-56.1588195106077,-56.1598543129794,-56.1601050475658,-56.1604029795502,-56.1613604366687,-56.1619922274994,-56.1623161512218,-56.1626588357824,-56.162763447901,-56.1627770722926,-56.1628129065468,-56.1628425398437,-56.1628468393874,-56.1629360412339,-56.1630294842004,-56.1630568242241,-56.1630735867893,-56.1630763653556,-56.1633205610139,-56.163326476079,-56.1634348715078,-56.1635480815598,-56.1636445668042,-56.1636458805492,-56.1636487651516,-56.1636494138195,-56.1637678982582,-56.1638866861869,-56.1639799993109,-56.1640385795222,-56.1635655255561,-56.1634002153014,-56.1625034161325,-56.161367992232,-56.1611480104484,-56.1603884420529,-56.1603607644455,-56.1591470086293,-56.1590457208333,-56.1575833736433,-56.1567177940058,-56.1564967163919,-56.1562423345244,-56.156060002469,-56.1556890834734,-56.1543619839044,-56.1537871459289,-56.1527634103788,-56.151917104998,-56.1507582338414,-56.1503605587502,-56.1498817818327,-56.1486855549078,-56.1475153013782,-56.1470098573744,-56.1460933680508,-56.1459052677093,-56.1458738114865,-56.1449625513071,-56.1436943490076,-56.1435556714723,-56.1428820808948,-56.142276216073,-56.141006168464],&#34;lat&#34;:[-34.9019100955824,-34.9018968735749,-34.9017894939517,-34.9016452314956,-34.9012207044082,-34.901216217094,-34.9023633255528,-34.9032945809708,-34.9035407856623,-34.9037103967396,-34.9037284360429,-34.9047253318342,-34.9057115788779,-34.9057539891634,-34.9057794950538,-34.9058251275235,-34.9058252588391,-34.9067371593852,-34.9077656247911,-34.9087489836011,-34.9093263680397,-34.9097819613341,-34.9098748338133,-34.9102764437978,-34.9109573932142,-34.9111071085805,-34.9111066742556,-34.9111282906706,-34.9111629217782,-34.9112485543561,-34.9113953545015,-34.9117170107157,-34.911885416206,-34.9118941524202,-34.9118641312114,-34.9117387578141,-34.9115816118292,-34.9113964085031,-34.9114697911403,-34.9116517543901,-34.9118600839562,-34.9119892318032,-34.9120326289224,-34.9120308775618,-34.9119669759639,-34.9117079165035,-34.911428108248,-34.9113329652514,-34.9112969402023,-34.9112781835885,-34.9112726820223,-34.9112679567325,-34.9113877844982,-34.9115177641687,-34.9114692604319,-34.9114512239592,-34.9114684977006,-34.9115719350508,-34.9116561991052,-34.9119361556077,-34.9121284589247,-34.9122214869609,-34.9122307271581,-34.9119760565586,-34.9118976463441,-34.9117685265874,-34.9116005023824,-34.9114389884517,-34.9111804615384,-34.9109532908853,-34.9107882401366,-34.910630618196,-34.9104868561704,-34.9104561940532,-34.9103973603778,-34.9103563358871,-34.9103335841534,-34.9103239058287,-34.91032335888,-34.9103715737457,-34.9104697276995,-34.9107248459371,-34.9109442957797,-34.9110700306244,-34.9113267496207,-34.9113509609979,-34.9114223468725,-34.9114709580286,-34.911486953994,-34.9115387026606,-34.9116171861398,-34.9116304663221,-34.9125520101836,-34.9125965979142,-34.9126145738515,-34.9126325664641,-34.9126370254304,-34.9126459800485,-34.9126639626559,-34.9126819485984,-34.9127178871328,-34.9127538223322,-34.9127987621755,-34.9128077368039,-34.9128167314427,-34.9128482176809,-34.9128752082673,-34.9129112068327,-34.9129291927752,-34.9129381774088,-34.9129381507284,-34.9129381173778,-34.9129515876581,-34.9129650579385,-34.9129650445982,-34.9129695235748,-34.9129739992164,-34.9129919818238,-34.9130189690751,-34.9130324293503,-34.9130413973086,-34.9130503952824,-34.9130593932562,-34.9130638722329,-34.9130683445393,-34.9130818214897,-34.9130953051102,-34.9131088154112,-34.9131178167201,-34.9131267980186,-34.9131357859873,-34.9131447739559,-34.9131582742517,-34.9131807491759,-34.9131942428016,-34.9132077364273,-34.9132212233829,-34.9132392126604,-34.9132571919328,-34.9132661865715,-34.913288678171,-34.9133021751317,-34.9133156720925,-34.913324653391,-34.9133426293283,-34.9137697262598,-34.9137787075584,-34.9138056848046,-34.9138191650901,-34.9138371677078,-34.9138551669905,-34.9138596526371,-34.9138686472759,-34.9138821542418,-34.9138956578727,-34.9139091448282,-34.9139361187394,-34.9139631026556,-34.9139720972944,-34.9139765929463,-34.9139900999121,-34.9139990912159,-34.9140170904985,-34.914026065127,-34.9140350430905,-34.9140395454125,-34.9140485533915,-34.914057538025,-34.9140665126535,-34.9140889942478,-34.9141160015095,-34.9141250094885,-34.9141295118104,-34.9141385031142,-34.9141519967398,-34.9141609947136,-34.9141699960225,-34.914192487622,-34.9142194648682,-34.9142419564677,-34.9142644480672,-34.9142869496718,-34.9143049522896,-34.9143094346012,-34.9143274505592,-34.9143544845013,-34.914367981462,-34.9143724771139,-34.9143994643652,-34.9144309405983,-34.9144669358286,-34.9144894274281,-34.9144984187318,-34.9145028977084,-34.914516384664,-34.9145298816247,-34.9145478742373,-34.9145883851298,-34.9146108900695,-34.9146243937004,-34.9146514076321,-34.914673925912,-34.914682933891,-34.9146919452051,-34.914705455506,-34.9147324661027,-34.9147549810476,-34.9147684913485,-34.9147729870004,-34.9148134612073,-34.9148494330923,-34.914858424396,-34.914871938032,-34.9148944596469,-34.9149395028769,-34.9149485108559,-34.9149665134736,-34.9149980130521,-34.9150250203137,-34.9150385239446,-34.9150610388894,-34.9150880561563,-34.915106058774,-34.9151690746062,-34.9151960818679,-34.9152410850772,-34.9152725579752,-34.9152950595799,-34.915299568572,-34.9153085865561,-34.915322093522,-34.9153446017968,-34.915380657058,-34.9154076910002,-34.9154437062408,-34.9155157867479,-34.9155293003839,-34.9155428173549,-34.9155473196769,-34.9155563176507,-34.9155608099675,-34.9155652989493,-34.9155743169334,-34.9155833415876,-34.9155923195511,-34.9156013008497,-34.9156238257997,-34.9156418450927,-34.9156598577156,-34.9156913773044,-34.9157318948671,-34.9157634144558,-34.9157904350577,-34.9158174423194,-34.9158714368324,-34.9159119443899,-34.9159524619525,-34.9160020275147,-34.9160561721051,-34.9160697290968,-34.9160832827534,-34.9161111160156,-34.9161012019948,-34.9160881457466,-34.9161055709147,-34.9161370971736,-34.9161686234325,-34.9162046486783,-34.9162226646362,-34.9162361949475,-34.9162857671798,-34.9163172800985,-34.9163803526266,-34.9164118722154,-34.9164343804902,-34.9164479074664,-34.91646596678,-34.916506571054,-34.9166011731761,-34.9166777593402,-34.9167363562268,-34.9168039344119,-34.9168985698845,-34.9169887330506,-34.9170383286283,-34.9171330007865,-34.9171961200054,-34.9172772751925,-34.9173178327758,-34.9173899899891,-34.9174531258832,-34.9175162117516,-34.9175973135779,-34.9175727552191,-34.9175635813488,-34.9175408978328,-34.9175947054883,-34.9184154169275,-34.9181887252507,-34.9179700124549,-34.917883431136,-34.9177558186563,-34.9175188597839,-34.9173046893307,-34.9170084765662,-34.9170172477564,-34.9170171843904,-34.9165996957475,-34.9161530887585,-34.9152292854949,-34.9144177504625,-34.9142804420134,-34.914381161682,-34.9144806239927,-34.9145753561536,-34.9145610243525,-34.9145827855753,-34.9146614194622,-34.9147093475132,-34.9147310353648,-34.9147469879273,-34.9139035252174,-34.913806462169,-34.9135511701731,-34.9131398396927,-34.9130297772413,-34.9123450816125,-34.9113691080543,-34.9112078501354,-34.911022284907,-34.9109927161583,-34.9089041898292,-34.9088213411544,-34.9076973045566,-34.9067325253286,-34.9058806662201,-34.9058227997851,-34.9056235567384,-34.9056145420894,-34.9046001722863,-34.903576787834,-34.9027743089752,-34.9022738858942,-34.902401321616,-34.9024468250833,-34.9026339582594,-34.9028307214018,-34.9028853779229,-34.903018054681,-34.9030226337092,-34.9031157919246,-34.9031018435017,-34.9031284019638,-34.9031492239951,-34.9031542964056,-34.9031461392435,-34.9031247327281,-34.9031324870301,-34.9031296868359,-34.9031251665881,-34.9031041735288,-34.9030941180542,-34.9030652306776,-34.903057218212,-34.9030313798865,-34.9029757895505,-34.9029156151837,-34.9028898318866,-34.9028470398176,-34.9028339847515,-34.9028340631252,-34.9027494090675,-34.9025306475574,-34.9025083794044,-34.902357255252,-34.9022172508593,-34.9019100955824]}]],[[{&#34;lng&#34;:[-56.2325204373686,-56.2322617306136,-56.231557404041,-56.2314805095563,-56.2314263593581,-56.2313845966193,-56.2313854482996,-56.2315327105625,-56.2319041662084,-56.2308925336698,-56.2302950235665,-56.2302353166443,-56.2286413373071,-56.2285412591748,-56.2278789865725,-56.228127616465,-56.2279690759626,-56.2271894613812,-56.2267355506211,-56.2266100492302,-56.2259285611027,-56.2246967224786,-56.2239629707307,-56.2219855876103,-56.2217989611667,-56.2217943439517,-56.2217874786601,-56.2217860048534,-56.2217938598282,-56.2217911236585,-56.2217072793803,-56.2196155253086,-56.2179146614629,-56.2170712345706,-56.2166535344007,-56.2141958028036,-56.2141093991546,-56.2128615521118,-56.2124734402859,-56.2111917342773,-56.211716039675,-56.2117366603096,-56.2122188306438,-56.2126580171436,-56.2131013324393,-56.2130865181325,-56.2129331603158,-56.2128908382648,-56.212742343856,-56.2126917945634,-56.2136097846611,-56.2143984030384,-56.2147247096564,-56.2153220143684,-56.2158175513276,-56.2160134585459,-56.2160464026699,-56.2162109237645,-56.2162408615748,-56.2162851810982,-56.2167474528369,-56.2172055824394,-56.2175218822299,-56.2181936886977,-56.2177917847589,-56.2173551695853,-56.2172815033798,-56.2174104547639,-56.2180595761991,-56.2183346380556,-56.2185384164826,-56.2189667487213,-56.2190606470183,-56.219229179138,-56.2202360186462,-56.2208093643352,-56.2209852617167,-56.2214181816512,-56.2217906003838,-56.221820899343,-56.2218536729119,-56.2220697276702,-56.2231905090191,-56.2242028044191,-56.225103919147,-56.2251516037392,-56.2260434278697,-56.2267169840866,-56.2270365469979,-56.2279090191422,-56.2289848506427,-56.2298373465536,-56.2301526262278,-56.2309123780513,-56.2311904181103,-56.2321676921155,-56.2322317451493,-56.2331586631846,-56.2331838861928,-56.2341669832011,-56.2339012328135,-56.2331081638075,-56.2339125386442,-56.2347042402783,-56.2354731234777,-56.2362807966821,-56.2370723309504,-56.2378532657645,-56.2381229445163,-56.2381904869122,-56.2380967441114,-56.2376360777212,-56.2368444008352,-56.236742814325,-56.236103168408,-56.2353678625253,-56.2345222730998,-56.2345150560445,-56.2338958700478,-56.2330371505174,-56.2326464490227,-56.232953847556,-56.2327740022103,-56.2327737709287,-56.232707424142,-56.2325139707002,-56.2322004890297,-56.2318472968795,-56.2312824489063,-56.230721649014,-56.2320821175655,-56.2325042308876,-56.2334888801526,-56.2325204373686],&#34;lat&#34;:[-34.8440793351422,-34.8437015769893,-34.8427213014361,-34.8426732667302,-34.8426394399394,-34.8425780984922,-34.84248648755,-34.841887063989,-34.8403750314046,-34.8409553315666,-34.841298071875,-34.8413323202951,-34.8422466194034,-34.8421368654129,-34.8413246472554,-34.8411779654657,-34.840985653775,-34.840039955264,-34.8402937694958,-34.840362855125,-34.8407379852559,-34.8414449265102,-34.8405052619012,-34.8415795626122,-34.8416631264572,-34.8414382496194,-34.8400435045045,-34.8397785033182,-34.8385222961986,-34.8383914185356,-34.8384464976629,-34.839702981478,-34.840735800796,-34.8412429729341,-34.8414788039817,-34.8429059693997,-34.8429598486536,-34.8437257961464,-34.8439613342861,-34.844708853134,-34.8454419045207,-34.845468885102,-34.8461750226085,-34.8468181876385,-34.8474658483203,-34.8476687062727,-34.8489417086267,-34.8492836190027,-34.8505185467726,-34.8509509690196,-34.8504569275631,-34.8514460643529,-34.8518236557531,-34.8525114004406,-34.8531181416941,-34.8530134107263,-34.8529958295334,-34.8529071598321,-34.8528916865639,-34.8528690182066,-34.852628734286,-34.8532132357284,-34.8536404293764,-34.8545487711648,-34.8546897205227,-34.8548623228715,-34.8548693506916,-34.8549973625149,-34.8558742264027,-34.8562474588882,-34.8564992220623,-34.8570813151744,-34.8572057941389,-34.8573932475996,-34.858513104006,-34.8581958453877,-34.8581006562962,-34.8578649530714,-34.8577015487996,-34.8577510309855,-34.8578185341319,-34.8576871613796,-34.8569986212819,-34.8564275901198,-34.8571684221859,-34.8572088346943,-34.8579303227704,-34.8584378195098,-34.8587194132767,-34.858322405658,-34.8578232465622,-34.8573566391606,-34.857184070256,-34.8567670201726,-34.8565948730586,-34.8560013519646,-34.855960584273,-34.8554167938263,-34.8554031918114,-34.8548907625386,-34.8551304811676,-34.855795539155,-34.8564419675346,-34.8557769078797,-34.8551299458915,-34.8544513058995,-34.8537678763218,-34.8531349179131,-34.8529044200721,-34.852695021611,-34.8527438735982,-34.8529728602189,-34.8522532382466,-34.8521720058387,-34.8513496979876,-34.8504295334352,-34.8508874495943,-34.8508784616257,-34.8492759685123,-34.8497744789402,-34.8493070011833,-34.8491347556852,-34.8489168726405,-34.8489165924415,-34.8488362128039,-34.8485998331453,-34.8487856189598,-34.8483721023654,-34.8477068692877,-34.8470271513291,-34.8462498648148,-34.8460189622886,-34.8454914267273,-34.8440793351422]}]],[[{&#34;lng&#34;:[-56.2387287724992,-56.2379413321541,-56.237116989126,-56.2363249088697,-56.2355177509853,-56.2347254115305,-56.2339256815881,-56.2331333096738,-56.2323135063198,-56.2315234325506,-56.2307006288468,-56.2299316856164,-56.2291210375445,-56.2283077981361,-56.228071489599,-56.2274771397443,-56.2270365469979,-56.2267169840866,-56.2260434278697,-56.2251516037392,-56.225103919147,-56.2242028044191,-56.2231905090191,-56.2220697276702,-56.2218536729119,-56.2215384636837,-56.2209659684333,-56.2198772302765,-56.2187949454479,-56.2195252053949,-56.2184751805369,-56.217954772149,-56.218096605296,-56.2175445139017,-56.2172037081394,-56.2170717901059,-56.2161440049567,-56.215946072878,-56.2149566742865,-56.2152644046576,-56.2155240985884,-56.2159031407368,-56.2160205879741,-56.2161010828206,-56.2161833052248,-56.2163039474431,-56.2163643385884,-56.2164159251929,-56.2164474914724,-56.2164647270279,-56.2164569496836,-56.216434074553,-56.2164225419387,-56.2163917460564,-56.2163809704992,-56.2162916977923,-56.2162729848082,-56.2162587107801,-56.2162468113099,-56.2162223453588,-56.216171989389,-56.2161263958752,-56.2161155002561,-56.2160534048986,-56.2159853764813,-56.2159765519302,-56.2159863036261,-56.2159983064829,-56.2160649275078,-56.2160641871259,-56.2160877892982,-56.216113806049,-56.2161447286633,-56.2161579187991,-56.2161730365957,-56.2161887413617,-56.2162284685167,-56.2162872321559,-56.2163064720785,-56.2163291304306,-56.2163555473879,-56.2163796131325,-56.2164023315156,-56.2164199439321,-56.2164393639475,-56.2164539814862,-56.2164841637186,-56.2165992197226,-56.2166386834083,-56.2166692024811,-56.2167152829127,-56.2167181733997,-56.2167720198934,-56.2168918186677,-56.2169794891706,-56.2171020256992,-56.2171835777576,-56.2172232282064,-56.2172309531391,-56.2172483044722,-56.2172900426643,-56.217241636492,-56.2173506222818,-56.2173741198283,-56.217433836993,-56.2174696765438,-56.2175395090417,-56.2176195376706,-56.217648682447,-56.2177271242769,-56.2178360581331,-56.2178971105316,-56.2179317871847,-56.2179620050964,-56.2179919011646,-56.2180317011691,-56.2181099381007,-56.2182149620693,-56.2183197121772,-56.2183194382211,-56.2183674915629,-56.2184638037665,-56.2185821359117,-56.218630497461,-56.2186875711057,-56.2187134678322,-56.2186867153912,-56.2187128517374,-56.218769822786,-56.2188353348704,-56.2189232433081,-56.2190770744713,-56.2192349196101,-56.219533390909,-56.2197263585772,-56.2198623550834,-56.2200376250809,-56.2202088465668,-56.2203231650149,-56.2204461231099,-56.2206124394427,-56.2206628821239,-56.2207627809795,-56.2208022906872,-56.2208641533542,-56.2209645143501,-56.2210874710953,-56.2211668759349,-56.2212912155933,-56.2213284408073,-56.2215817993664,-56.2218230337772,-56.2220024696502,-56.222073723064,-56.2221547014934,-56.2223407707874,-56.22258493671,-56.2228235230884,-56.2230273515413,-56.2232122068759,-56.2233458691423,-56.2234325838633,-56.223650849762,-56.2237888842832,-56.2239514447865,-56.2241384979213,-56.2242659069627,-56.2244985135906,-56.2246387892677,-56.2247229993636,-56.2247736121326,-56.2248080799085,-56.2248134460093,-56.2247878761556,-56.2248163575108,-56.224808486785,-56.2247884697951,-56.2248042179168,-56.2247425294358,-56.224767632382,-56.2248434915045,-56.2248797602092,-56.2249005409263,-56.2249006876687,-56.2248673171253,-56.2248261659026,-56.2247616759768,-56.2246947914828,-56.2246697585727,-56.2247173831339,-56.2248276133157,-56.2249898136332,-56.2250518089391,-56.2251229856468,-56.2252188217386,-56.2253069656089,-56.2253680599622,-56.2253966590977,-56.2254140236897,-56.2254374254029,-56.225448686446,-56.2258831153644,-56.2258850352814,-56.2258944953737,-56.2259934901268,-56.2260485629907,-56.2261624750714,-56.2261660569187,-56.226270814278,-56.2264454043186,-56.2265454492477,-56.2265922767311,-56.2266707472004,-56.2268427825901,-56.2269718825035,-56.2270223285198,-56.2271634713108,-56.2271975522205,-56.2272117128568,-56.2272117028517,-56.2273037770034,-56.2273468917861,-56.2273141939214,-56.2272354854097,-56.2271655423934,-56.2271378961885,-56.227141384081,-56.227184836443,-56.2273600489901,-56.2275649500799,-56.2277110225497,-56.2277608601022,-56.2277970247172,-56.2279189642712,-56.2281120738627,-56.2282011998273,-56.2282405834718,-56.228306544156,-56.2284286938184,-56.2284976393754,-56.2285334811933,-56.2285725880283,-56.2286597563166,-56.2286804536574,-56.2287518004528,-56.2287608117668,-56.2287818092624,-56.2287847741248,-56.2288196120916,-56.2288638449036,-56.2288865299362,-56.2288969519778,-56.2289259369261,-56.2289890161243,-56.2289826695178,-56.229003260137,-56.2290735430503,-56.2298130877858,-56.2297875579527,-56.2298146452557,-56.2298078917728,-56.2298339552143,-56.2298361296691,-56.2298665720357,-56.2298755233187,-56.2299247220251,-56.2299273733925,-56.2299553611598,-56.2299806975598,-56.2300048400107,-56.2300202612971,-56.2300475220229,-56.2300639504955,-56.2300870890953,-56.2301069560078,-56.2301454958838,-56.2301655795748,-56.2301826917333,-56.2302140345643,-56.2302321905945,-56.2302484923351,-56.2302649208077,-56.2302938690703,-56.2303126921112,-56.2303344833495,-56.2303505683116,-56.2303822313077,-56.2303993834868,-56.230419167023,-56.2304183999608,-56.2304413417925,-56.2304610619627,-56.2304775104456,-56.2305040474647,-56.2305317984433,-56.2305450652853,-56.2305482235808,-56.2305861231266,-56.2305927031868,-56.2306426055894,-56.2306426689554,-56.2306778971234,-56.2306981475671,-56.2307179311033,-56.2307217964301,-56.2307467292886,-56.2307802699197,-56.2307808001932,-56.2308019911219,-56.2307897514763,-56.2308254665621,-56.2308325368751,-56.230860244498,-56.2308875452443,-56.230895282568,-56.2309669128429,-56.2310004768194,-56.2310359617866,-56.2310385898086,-56.2311242373125,-56.2311512812598,-56.2311819170594,-56.2317353858308,-56.2317740524388,-56.2317906543341,-56.2317751463363,-56.2317546157481,-56.2317613692311,-56.2317229360768,-56.2317296895597,-56.2317019185708,-56.2317202480238,-56.2317197811163,-56.2317426395717,-56.23173909441,-56.23175567296,-56.2317822299895,-56.2317698602768,-56.2317920784019,-56.2318004327104,-56.2318222039384,-56.2318335264444,-56.2318560013686,-56.2319061605703,-56.2319215851919,-56.2319447237917,-56.2319570501487,-56.2319870222728,-56.232028016748,-56.2320610671263,-56.2320757880516,-56.2321467146302,-56.2321614555658,-56.2321910641691,-56.2322017029891,-56.2322292638696,-56.2322388754933,-56.2322702383346,-56.2322808771546,-56.2323129436921,-56.2323303526704,-56.2323575700404,-56.232373998513,-56.2324036504719,-56.2324160001743,-56.2324432175444,-56.2324562475976,-56.2324787225218,-56.2324927564262,-56.2325217046888,-56.2325353984177,-56.2325701796886,-56.2325866081612,-56.2326161967542,-56.2326360636667,-56.2326906051285,-56.2327036151714,-56.2327325834444,-56.2327520868362,-56.2327827226358,-56.2327981472574,-56.2327974202157,-56.2328432638585,-56.2328340591114,-56.2328303405269,-56.2328317512545,-56.2328648383183,-56.232871011502,-56.232881650322,-56.2328769278865,-56.2329396268887,-56.2329464837583,-56.2329543678243,-56.2329615648693,-56.232960604374,-56.2329644063348,-56.2329698958325,-56.2329777798985,-56.2329744048246,-56.2329723937874,-56.2329744882009,-56.2329799776986,-56.2329875182542,-56.2329954023202,-56.2330370804813,-56.2330330183864,-56.233038187719,-56.2332953436743,-56.2333412273376,-56.2334016184829,-56.2334245636497,-56.2334667280322,-56.2316625062261,-56.230965554378,-56.2309948257661,-56.2318052265287,-56.2335060470787,-56.2335594432105,-56.2335894153345,-56.2336422225686,-56.233730277981,-56.2337457459583,-56.2341585840095,-56.2346989243989,-56.2349391086475,-56.235076542284,-56.2351174733932,-56.235428843975,-56.2357823118424,-56.2361029090875,-56.2362709682157,-56.2366213894132,-56.2372527245969,-56.237402451815,-56.2375117215015,-56.237537464778,-56.2375195188562,-56.2376038590192,-56.2376967635992,-56.237671854086,-56.2377294904772,-56.2377922128248,-56.2378475613694,-56.2378560857657,-56.2378608482218,-56.2378652504922,-56.2378326903667,-56.237816688781,-56.2378451868115,-56.2378671047818,-56.2378941920847,-56.2379569544529,-56.2379904083726,-56.2380439626586,-56.2380050159061,-56.237973166147,-56.2380255865149,-56.2380580799392,-56.238121759447,-56.2383594787116,-56.2383865660146,-56.2384327898534,-56.2386886518079,-56.2387842477759,-56.2388295444699,-56.2390008895036,-56.2392920630025,-56.2393359689793,-56.2393495359762,-56.2394131654582,-56.2395739350378,-56.2396214895629,-56.2396188715461,-56.2397938317775,-56.2397614083893,-56.2398092664042,-56.2397542547,-56.239724349277,-56.2397960395828,-56.2398423134474,-56.2400240238268,-56.2400867028186,-56.2401281308508,-56.2402425631998,-56.2403311188702,-56.2404290994013,-56.2405399499031,-56.2404879897726,-56.2404932658269,-56.2404675425608,-56.240593127328,-56.2407131959172,-56.2407808741539,-56.2407229842986,-56.2408736753472,-56.2427309473311,-56.2424168870386,-56.2422190091702,-56.2421008282005,-56.2420617781912,-56.2421654184502,-56.2422939911737,-56.2431611817394,-56.2432831312986,-56.2434846685698,-56.2435828058484,-56.2438954604257,-56.24397179867,-56.243982507459,-56.244069501715,-56.2438222781249,-56.2435850880583,-56.2433824334321,-56.2430484720125,-56.2427183342359,-56.2426848036265,-56.2426486112419,-56.2425209684929,-56.2423166042883,-56.2421771847962,-56.2418798562392,-56.2417647903079,-56.2416189689985,-56.2415658536485,-56.2413974080961,-56.2411393325173,-56.2406573293594,-56.2405789964598,-56.240500391038,-56.2403074660579,-56.2395243065416,-56.2387287724992],&#34;lat&#34;:[-34.868266193924,-34.8675858860327,-34.8669371298042,-34.866268074553,-34.8656173661189,-34.8649790434417,-34.8643345201377,-34.8637023358326,-34.8630462712218,-34.8624060347454,-34.8617658965544,-34.861101307142,-34.8604323388045,-34.8597904127469,-34.8596063745003,-34.8591485383825,-34.8587194132767,-34.8584378195098,-34.8579303227704,-34.8572088346943,-34.8571684221859,-34.8564275901198,-34.8569986212819,-34.8576871613796,-34.8578185341319,-34.8580133095826,-34.8583666251298,-34.8590460321841,-34.8597209018983,-34.8605434244276,-34.8611776298369,-34.8614947150325,-34.8616475171698,-34.8619872323696,-34.8621955964949,-34.8620427643422,-34.8625864363944,-34.8624202840388,-34.8632813030883,-34.8634364264227,-34.8636564749073,-34.8638941858343,-34.8640200223981,-34.8641369577046,-34.8641817758185,-34.8642580251422,-34.8643119229387,-34.8643838767137,-34.864487440124,-34.8646721720617,-34.8647668425523,-34.8648480360926,-34.8649427182559,-34.865010416503,-34.8650465051148,-34.8651819866528,-34.8652000709793,-34.8652181419657,-34.8652316989573,-34.8652633236003,-34.8653130525801,-34.8653582625628,-34.8653673088949,-34.8653900339481,-34.8654623529115,-34.8654995971193,-34.8655164324684,-34.8655254104319,-34.8655206996691,-34.8655837988776,-34.8656648523456,-34.8657504048006,-34.8658629845275,-34.8659080127497,-34.8659259953571,-34.8659980575214,-34.8660925829373,-34.8661645133669,-34.8661869899587,-34.8662094548778,-34.8662319097917,-34.8662633843572,-34.8662993695824,-34.8663398788074,-34.8664029163174,-34.8664614631782,-34.866560522599,-34.8666863658329,-34.8667223010323,-34.8667447409385,-34.8668076984072,-34.8668197608432,-34.8668829801721,-34.8669160288146,-34.8669646326756,-34.8670814379151,-34.8672794933907,-34.8674326073555,-34.8674645170364,-34.8675361907761,-34.8676216948727,-34.8679097382597,-34.8677855675925,-34.8678355600547,-34.8678979863124,-34.8679447339804,-34.8679886069459,-34.8680342162246,-34.868050826158,-34.8681128475629,-34.8682003954802,-34.8682442117614,-34.8682914769994,-34.8683459508114,-34.8683773753024,-34.8684042971399,-34.8684880287635,-34.8685248903736,-34.8685906991765,-34.8686196464587,-34.8686452857844,-34.8686748539174,-34.8686973262284,-34.8686903997572,-34.8686907665094,-34.8687379751078,-34.8687812267724,-34.8688031064972,-34.8688143284434,-34.8688509356484,-34.8688406444937,-34.8688235394222,-34.8688462648665,-34.868855418312,-34.8688783685578,-34.8688900970883,-34.8689274078134,-34.8689285060147,-34.8689111459559,-34.8689123476947,-34.8689139730003,-34.8689588861632,-34.8690070217086,-34.8690260591393,-34.8690447733215,-34.8690751336149,-34.8690567249544,-34.8690434313059,-34.8690943061955,-34.8691025750623,-34.8691588534581,-34.8692212022796,-34.8692972631728,-34.8693330974868,-34.8693283391995,-34.869359310172,-34.8693901002179,-34.8694704833402,-34.8695735089732,-34.8697126482308,-34.8697933573546,-34.8698471701072,-34.8701169067173,-34.8702561910498,-34.8703773718792,-34.8705480515697,-34.8706062440811,-34.8710201558793,-34.8711999952938,-34.8713033919514,-34.8714331405328,-34.8715195717742,-34.8715682835628,-34.8715980247344,-34.8716424276342,-34.8716885472525,-34.8717272613851,-34.8717971282505,-34.8718486406501,-34.8718951688126,-34.8719717266287,-34.8720129945783,-34.8720595402498,-34.872091319139,-34.8721020171562,-34.8720979083705,-34.8720493808436,-34.8720249724223,-34.8720743995798,-34.872087616396,-34.8721999451602,-34.872316618665,-34.8723730719461,-34.8724378895409,-34.8725412486791,-34.8725858146932,-34.8726053819236,-34.8726161120157,-34.8726254919977,-34.8726528098832,-34.8726883641105,-34.872671136425,-34.8727251335454,-34.8727511865038,-34.8728018027548,-34.8728856829794,-34.8729799707727,-34.873016015195,-34.873200471157,-34.8735559711642,-34.8736818510837,-34.873830432711,-34.87394736635,-34.8742668185997,-34.8745413360087,-34.8746583571928,-34.8748021355097,-34.8749282222024,-34.8749597259497,-34.8750318373061,-34.8752073178059,-34.8753244103552,-34.8754672153745,-34.8756114509935,-34.8757126661274,-34.8757624587209,-34.8758365718654,-34.8758850933581,-34.8759292831005,-34.8759288620213,-34.8759590817535,-34.8759955822797,-34.8760981376411,-34.8763005653716,-34.8765929073899,-34.8767954380901,-34.8768854524295,-34.876957355345,-34.8772048513183,-34.8773308275375,-34.8773938116867,-34.8774973475828,-34.8776458012275,-34.877686297946,-34.8777401557218,-34.8777671688199,-34.8777986513062,-34.8778482181191,-34.8779157120941,-34.8780192317318,-34.8780462014741,-34.8780822242187,-34.8781407227212,-34.8781810856207,-34.8782126544015,-34.8782306169986,-34.8782754638773,-34.8796387236119,-34.8796613392337,-34.8796792811951,-34.8796973302952,-34.8797152753833,-34.8797423101591,-34.8797467205587,-34.8797602129337,-34.8797555501123,-34.8797375139356,-34.8797284113245,-34.8797373448901,-34.8797102267379,-34.879719191778,-34.8797010776444,-34.8797055324419,-34.8796829245324,-34.8796918753986,-34.8796737254132,-34.8796556339997,-34.8796600867127,-34.8796374525397,-34.8796464088253,-34.8796238225937,-34.8796282773912,-34.879605650722,-34.8796100980156,-34.8795920011826,-34.8795964570223,-34.8795693151078,-34.8795827814277,-34.8795737046633,-34.8795556795339,-34.879564620395,-34.8795420233244,-34.8795509848211,-34.879523859165,-34.8795372917175,-34.8795237288895,-34.879541746515,-34.8795326124293,-34.8795506192159,-34.8795504608008,-34.8795639813154,-34.8795683764987,-34.8795863399296,-34.8795772631652,-34.8795997856139,-34.8795951994987,-34.8796041068008,-34.8796446675106,-34.8796446001842,-34.8796581598857,-34.8796941017551,-34.8797436556447,-34.8797480745903,-34.8797389738552,-34.8797119078132,-34.8796801316337,-34.8796935458434,-34.8796799121455,-34.8796573690612,-34.8796255482754,-34.879634476213,-34.8796073372168,-34.8794027642132,-34.87941165484,-34.8793800535424,-34.8793530612885,-34.8793486198313,-34.8793305705228,-34.8792991443155,-34.8792810952154,-34.8792631557553,-34.8792360559459,-34.8792090157505,-34.8791999291894,-34.8791728987908,-34.8791367905855,-34.8791141714202,-34.8791006898841,-34.8791006192227,-34.8790600301649,-34.8790374262158,-34.8790464039708,-34.8790283046365,-34.8790101171318,-34.8790190819635,-34.8789964734287,-34.8790009411495,-34.8789783109368,-34.8789736735452,-34.8789510335358,-34.8789554935443,-34.8789192119163,-34.8789281788324,-34.8789010429628,-34.8789100228022,-34.8788828933943,-34.8788918765688,-34.8788737488865,-34.878882728726,-34.8788691056585,-34.8788645433056,-34.8788374149398,-34.8788418693204,-34.8788237470576,-34.8788327216861,-34.8788055931118,-34.8788145654475,-34.8787964661132,-34.878800928206,-34.87877830112,-34.8787827644635,-34.8787646257339,-34.8787690801145,-34.8787374373372,-34.8787463877865,-34.8787146651763,-34.8787191306042,-34.8787010102174,-34.8787054550097,-34.8786783155966,-34.8786872802199,-34.8786782686974,-34.8786871361872,-34.8786916724851,-34.8787006981815,-34.8787097076196,-34.8787681919481,-34.8787726792623,-34.8787816591018,-34.878795195041,-34.8788986542308,-34.8789031392522,-34.8789076209385,-34.8789121049177,-34.8789256287673,-34.878934630493,-34.8789391198917,-34.878943601578,-34.8789526262323,-34.8789616465092,-34.8789706536544,-34.8789751430531,-34.8789796259901,-34.8789841076764,-34.8790515785145,-34.8790606054616,-34.8790696028101,-34.8795284878021,-34.8796184798383,-34.8797399737458,-34.8797489143984,-34.8798530428906,-34.8805263340544,-34.8807793671023,-34.8808480202758,-34.8805464070014,-34.8799135426673,-34.8800098848209,-34.8800593651308,-34.8801673627029,-34.880284260907,-34.8803022391371,-34.8801477076036,-34.8799374899143,-34.8798404076291,-34.8798157307323,-34.8797975715755,-34.8797199530039,-34.8795827936003,-34.8794150076606,-34.8792106593316,-34.8786925028378,-34.8778391930479,-34.8776989944939,-34.87767610644,-34.8776264470794,-34.8775904497647,-34.8775721494934,-34.8775583281987,-34.8774953119496,-34.8774680837407,-34.8775039363975,-34.8774992506476,-34.8774947158089,-34.8774901934766,-34.8774811654873,-34.8773911323882,-34.8773325938651,-34.8772874322408,-34.8772963751862,-34.8772422047491,-34.8772149598649,-34.8772058376603,-34.8771831296993,-34.8771156519826,-34.8771022342294,-34.8770569950651,-34.8770613969186,-34.8770116145779,-34.8768305678741,-34.8767763966033,-34.8767221640508,-34.8767618970422,-34.8767390527608,-34.8767348547624,-34.8767029412205,-34.8766875899701,-34.8767101357642,-34.8766688398835,-34.8765982601504,-34.8764896958277,-34.8764895411646,-34.8764658297693,-34.8764157585297,-34.8764395841505,-34.8765033691293,-34.8765138612071,-34.8765407721691,-34.8766158242087,-34.8766094859398,-34.8765015440214,-34.8764970341956,-34.8764193920702,-34.8763113709443,-34.87625510526,-34.8762296454631,-34.8762199779773,-34.8762804304042,-34.8763200787685,-34.8763752280437,-34.8764135728191,-34.8763916519306,-34.8763397597518,-34.8762538291852,-34.8762856718573,-34.8763875121224,-34.8761598665208,-34.8758084540772,-34.875498192561,-34.8750601756563,-34.8747177019276,-34.8744155669797,-34.8737830849592,-34.8736941432564,-34.8734850070662,-34.8734282744744,-34.8732475295929,-34.8731643313176,-34.872974098135,-34.872908068472,-34.8727055017796,-34.872552227803,-34.8724050087897,-34.8720438020376,-34.8717048096879,-34.8716678362142,-34.8716279276118,-34.8714983037737,-34.8712908458741,-34.8711493150397,-34.8709172031062,-34.8708198041321,-34.8706944311925,-34.870605197385,-34.8704474558975,-34.8702124764038,-34.8698578816909,-34.8697957629344,-34.8697399874414,-34.8695714265384,-34.8689103553624,-34.868266193924]}]]],[1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,8,54,38],&#34;INE&#34;,{&#34;interactive&#34;:true,&#34;className&#34;:&#34;&#34;,&#34;stroke&#34;:true,&#34;color&#34;:&#34;#444444&#34;,&#34;weight&#34;:1,&#34;opacity&#34;:1,&#34;fill&#34;:true,&#34;fillColor&#34;:[&#34;#FFFDC6&#34;,&#34;#FFFEC9&#34;,&#34;#FFFFCC&#34;,&#34;#FFFCC5&#34;,&#34;#FFFFCC&#34;,&#34;#FFFFCC&#34;,&#34;#FFFBC3&#34;,&#34;#FFF9BD&#34;,&#34;#FFFAC1&#34;,&#34;#FFFAC0&#34;,&#34;#FFFDC8&#34;,&#34;#FFFABF&#34;,&#34;#FFF6B5&#34;,&#34;#FFF8BB&#34;,&#34;#FEB24C&#34;,&#34;#FFFBC2&#34;,&#34;#FFFCC4&#34;,&#34;#FFF8BB&#34;,&#34;#FFF7B8&#34;,&#34;#FFFABF&#34;,&#34;#FFFDC7&#34;,&#34;#FFF9BE&#34;,&#34;#FFFCC4&#34;,&#34;#FFFCC5&#34;,&#34;#FFFDC7&#34;,&#34;#FFFDC7&#34;,&#34;#FFFBC3&#34;,&#34;#FFFDC6&#34;,&#34;#FFF6B7&#34;,&#34;#FFFAC0&#34;,&#34;#E51F1D&#34;,&#34;#FFFDC6&#34;,&#34;#FFF0A6&#34;,&#34;#FFF8BB&#34;,&#34;#FEA546&#34;,&#34;#FFEC9E&#34;,&#34;#FFF9BE&#34;,&#34;#FFFBC3&#34;,&#34;#FFFDC6&#34;,&#34;#FFFEC9&#34;,&#34;#FFFFCB&#34;,&#34;#FFFFCB&#34;,&#34;#FFFFCB&#34;,&#34;#FFFDC8&#34;,&#34;#FFFFCC&#34;,&#34;#FFFECA&#34;,&#34;#FFFFCB&#34;,&#34;#FFFFCB&#34;,&#34;#FFFDC7&#34;,&#34;#FFFCC4&#34;,&#34;#FFF7BA&#34;,&#34;#FFF4B2&#34;,&#34;#FFFBC3&#34;,&#34;#B60026&#34;,&#34;#FEB34D&#34;,&#34;#FFF6B5&#34;,&#34;#800026&#34;,&#34;#FEBB56&#34;,&#34;#FFF7B8&#34;,&#34;#FFFBC2&#34;,&#34;#FFFBC1&#34;,&#34;#FFFBC1&#34;],&#34;fillOpacity&#34;:0.5,&#34;smoothFactor&#34;:0.5,&#34;noClip&#34;:false},null,null,null,{&#34;interactive&#34;:false,&#34;permanent&#34;:false,&#34;direction&#34;:&#34;auto&#34;,&#34;opacity&#34;:1,&#34;offset&#34;:[0,0],&#34;textsize&#34;:&#34;10px&#34;,&#34;textOnly&#34;:false,&#34;className&#34;:&#34;&#34;,&#34;sticky&#34;:true},{&#34;color&#34;:&#34;white&#34;,&#34;weight&#34;:2,&#34;bringToFront&#34;:true}]},{&#34;method&#34;:&#34;addLegend&#34;,&#34;args&#34;:[{&#34;colors&#34;:[&#34;#FFFFCC , #FFEFA5 11.1062047236577%, #FEDC7D 23.0406606914824%, #FEBA55 34.9751166593071%, #FD9640 46.9095726271318%, #FD632F 58.8440285949565%, #EB3021 70.7784845627812%, #CB0B23 82.7129405306059%, #9A0026 94.6473964984306%, #800026 &#34;],&#34;labels&#34;:[&#34;10&#34;,&#34;20&#34;,&#34;30&#34;,&#34;40&#34;,&#34;50&#34;,&#34;60&#34;,&#34;70&#34;,&#34;80&#34;],&#34;na_color&#34;:null,&#34;na_label&#34;:&#34;NA&#34;,&#34;opacity&#34;:0.5,&#34;position&#34;:&#34;topright&#34;,&#34;type&#34;:&#34;numeric&#34;,&#34;title&#34;:&#34;AREA_KM&#34;,&#34;extra&#34;:{&#34;p_1&#34;:0.111062047236577,&#34;p_n&#34;:0.946473964984306},&#34;layerId&#34;:null,&#34;className&#34;:&#34;info legend&#34;,&#34;group&#34;:null}]}],&#34;limits&#34;:{&#34;lat&#34;:[-34.9381065136363,-34.70181759889],&#34;lng&#34;:[-56.4315137698824,-56.0236490073619]}},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;&lt;p&gt;Para hacer el &lt;em&gt;choropleth&lt;/em&gt; necesitamos una función que nos de un color para cada valor de la variable que queremos visualizar. Eso es lo que hace &lt;code&gt;qpal&lt;/code&gt;. Luego dibujamos el mapa con &lt;code&gt;leaflet()&lt;/code&gt; y &lt;code&gt;addPolygons()&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;Los shapefiles tienen las coordenadas de las formas que contienen, por lo que si especificamos la proyección usada podemos superponerlos con los mapas que publica &lt;code&gt;StreetView&lt;/code&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;leaflet(st) %&amp;gt;%  addPolygons(layerId=~NROBARRIO, color = &amp;quot;#444444&amp;quot;, weight = 1, smoothFactor = 0.5,              opacity = 1.0, fillOpacity = 0.5,              fillColor = ~colorQuantile(&amp;quot;YlOrRd&amp;quot;, AREA_KM)(AREA_KM),              highlightOptions = highlightOptions(color = &amp;quot;white&amp;quot;, weight = 2,                                                  bringToFront = TRUE), group=&amp;quot;INE&amp;quot;) %&amp;gt;%  addTiles(group=&amp;quot;StreetView&amp;quot;) %&amp;gt;%  addLayersControl(    overlayGroups = c(&amp;quot;INE&amp;quot;, &amp;quot;StreetView&amp;quot;),    options = layersControlOptions(collapsed = FALSE)  )&lt;/code&gt;&lt;/pre&gt;&lt;div id=&#34;htmlwidget-3&#34; style=&#34;width:672px;height:480px;&#34; class=&#34;leaflet html-widget&#34;&gt;&lt;/div&gt;&lt;script type=&#34;application/json&#34; data-for=&#34;htmlwidget-3&#34;&gt;{&#34;x&#34;:{&#34;options&#34;:{&#34;crs&#34;:{&#34;crsClass&#34;:&#34;L.CRS.EPSG3857&#34;,&#34;code&#34;:null,&#34;proj4def&#34;:null,&#34;projectedBounds&#34;:null,&#34;options&#34;:{}}},&#34;calls&#34;:[{&#34;method&#34;:&#34;addPolygons&#34;,&#34;args&#34;:[[[[{&#34;lng&#34;:[-56.1993400536063,-56.1993135333852,-56.1989766599427,-56.1988297386621,-56.198724611095,-56.1987210522514,-56.1986126969086,-56.198129084123,-56.1980911546398,-56.1980234021982,-56.197922769466,-56.1978214697231,-56.1977387731896,-56.1977097692408,-56.1976609850086,-56.197528111764,-56.1972034437798,-56.1985855913771,-56.1988092260252,-56.1989886772434,-56.1997332467679,-56.1998548316957,-56.2001466712022,-56.2001649048953,-56.2002198654798,-56.200277579179,-56.2004009783015,-56.2004894173719,-56.2005896823842,-56.2006947788146,-56.200817744161,-56.2004935392883,-56.2002195480179,-56.1999003220108,-56.1991116140467,-56.1984579358107,-56.197696565688,-56.1968812854523,-56.1965505761969,-56.1964914702125,-56.1964474223963,-56.1963919015149,-56.196314026272,-56.1955938387079,-56.195369272605,-56.1952618602698,-56.1952449334836,-56.1952390957208,-56.197242904372,-56.1980771022242,-56.1984958091639,-56.1986785406281,-56.1989370539643,-56.1991546071119,-56.199510106462,-56.1996773912618,-56.1997031042969,-56.1995701774477,-56.1994464485996,-56.1994459190977,-56.1994767936232,-56.1994792839619,-56.1996598859496,-56.1996692292318,-56.1996120724077,-56.1996173354264,-56.199785290244,-56.1998918666186,-56.1999324723734,-56.2000095526032,-56.2000801681377,-56.2001845362982,-56.2001737264386,-56.200191724284,-56.2001412086916,-56.2001547555884,-56.2001991944929,-56.2002320820265,-56.2003055937615,-56.2002977501292,-56.200220652508,-56.2001961244031,-56.2001628785235,-56.2000924749708,-56.2000864865967,-56.2000802641901,-56.2000916079239,-56.200089911712,-56.2000645842755,-56.2001203069635,-56.2001280770737,-56.2005045657396,-56.2009758262932,-56.2013301593896,-56.2013818126594,-56.2014005441286,-56.2014363650267,-56.2014662059729,-56.2014923135831,-56.2015248275562,-56.2015436268238,-56.2015323540373,-56.2015446194405,-56.2015775214229,-56.2016029820854,-56.201659342595,-56.2017078498795,-56.2017439642285,-56.2017978938042,-56.2018295932335,-56.2018622497141,-56.2019107520981,-56.2019596510983,-56.2020025553174,-56.2020172826156,-56.2020563287172,-56.2020806717752,-56.2020816677807,-56.2021132991891,-56.2021609018309,-56.2022167985754,-56.2022865938712,-56.202418707378,-56.2025688194495,-56.2026280583777,-56.2026937130717,-56.2028970737822,-56.202967098563,-56.2030630237429,-56.2032446418488,-56.2032549169708,-56.2032860979875,-56.2033570444762,-56.203662447374,-56.2037171438611,-56.2037133967893,-56.20375242666,-56.2038169303282,-56.2039396510151,-56.204075962602,-56.2041167699583,-56.2040155788117,-56.2040106112219,-56.2040645413633,-56.2041505742588,-56.2042200452878,-56.2043698261612,-56.2045783141867,-56.2046903765404,-56.204834966825,-56.2049202769325,-56.2050325094455,-56.2050371376232,-56.2050902175792,-56.2052393256052,-56.2053273449608,-56.2054380839872,-56.2054030526437,-56.2054479480718,-56.2055498934976,-56.2056397966256,-56.2056449272643,-56.2057517441558,-56.2058366016304,-56.2058239778377,-56.2059122874898,-56.2059601821869,-56.20596875458,-56.206055642503,-56.2060389120207,-56.2059057010147,-56.2058299874415,-56.2059683368451,-56.2060901681895,-56.2061713595051,-56.2062619789489,-56.2064806293521,-56.2066090844131,-56.2066996617717,-56.2069001542189,-56.2069408171137,-56.2070956857662,-56.2071087794226,-56.20722465191,-56.2072807166525,-56.2073994321606,-56.2074503653541,-56.2075886415014,-56.2076089799555,-56.2076534532664,-56.2077458474724,-56.2079609296079,-56.2081629883326,-56.2083919531424,-56.2083691023702,-56.2083259530939,-56.2083331528265,-56.208438656848,-56.2084966193616,-56.2086429421314,-56.2088288973817,-56.2088370392856,-56.2088828266812,-56.208924723062,-56.209260459391,-56.2093363632052,-56.2094226193356,-56.2094727278283,-56.2095199162815,-56.2095601033474,-56.2096035271701,-56.2096466871124,-56.2096861353402,-56.2097229273375,-56.2097733139079,-56.2099079110705,-56.2101231663374,-56.2102134375327,-56.2102989019672,-56.2105337787819,-56.2105481991257,-56.2103825111488,-56.2102020869885,-56.2100521217359,-56.209936513881,-56.2100560596585,-56.2098361947104,-56.2097303183059,-56.2098952566226,-56.2099405701312,-56.2100754443097,-56.2101301737139,-56.2102909371424,-56.2103619421057,-56.2104724271802,-56.2105576548474,-56.2106974541641,-56.2108625502858,-56.210942892131,-56.2109734295231,-56.2108789432583,-56.2107841415245,-56.210698677302,-56.2106040334651,-56.2106547057679,-56.2107450161722,-56.2108846573967,-56.2110196102144,-56.2110599190514,-56.2111551151541,-56.2111458956333,-56.2111913661779,-56.2114420829555,-56.2119991119147,-56.2126825391205,-56.2131599169413,-56.2133615569917,-56.2135382335014,-56.2137618794233,-56.2143844033079,-56.2144088625336,-56.2144647821477,-56.2145611738549,-56.2146697007993,-56.2147663749445,-56.2148191076708,-56.2148750586184,-56.2149100156435,-56.2163730598844,-56.2166694094954,-56.2228692362284,-56.2229324886674,-56.2174043600549,-56.2168294396877,-56.216796070476,-56.2168380820377,-56.216796533427,-56.21689517745,-56.2168599288962,-56.2167329890324,-56.2167830963148,-56.216963889191,-56.2172232746478,-56.2171267575049,-56.2170315473805,-56.2170744923746,-56.2172225012063,-56.2172160434275,-56.2169534087339,-56.2167756273672,-56.2168489518492,-56.2189026643346,-56.2194557028841,-56.2196222587812,-56.2171192879351,-56.2169873132057,-56.2167635678144,-56.2140938843237,-56.2140594515658,-56.2140214586386,-56.2131348647327,-56.2144679972633,-56.2146946691638,-56.2141873025018,-56.213246714083,-56.2115297319247,-56.2080073820254,-56.2064722019604,-56.2064439357161,-56.208985711575,-56.2089843475382,-56.2074906005079,-56.2047168116607,-56.2046315526905,-56.2045816753008,-56.2005914307629,-56.2004032449288,-56.2003249672074,-56.1985367244108,-56.1985789731192,-56.1985194281365,-56.1984591099301,-56.1979144484653,-56.1977096879722,-56.1977219094643,-56.1975333903237,-56.1972594167752,-56.1972366250901,-56.1971818606937,-56.1972086673342,-56.1972235613664,-56.1972444929948,-56.1982573444413,-56.1983253504206,-56.1974490668348,-56.1984876895895,-56.1978920183506,-56.1981528742613,-56.198611797249,-56.1986685304016,-56.1977282694206,-56.197673268742,-56.1976629709856,-56.1976758914729,-56.1977139857851,-56.1977422637237,-56.1992576517732,-56.1992915665325,-56.1977268615701,-56.1977459528889,-56.1977707262787,-56.1977740596666,-56.1978572922966,-56.2017503677734,-56.2018129539461,-56.2014203072153,-56.2013159397253,-56.2011500919566,-56.2009683945861,-56.2009853068913,-56.201002573322,-56.2010260083324,-56.2009602185694,-56.2006732268767,-56.2005853307944,-56.2005755976514,-56.2003565316268,-56.200346940227,-56.2004194735719,-56.2007469866774,-56.2009965949421,-56.2011963081609,-56.2013402677371,-56.2014955020317,-56.2015630610595,-56.2015587065697,-56.2015040147606,-56.2013598786413,-56.2009442940756,-56.2005009219135,-56.1998029711616,-56.199520382398,-56.1990442523889,-56.1983337433432,-56.1982386322299,-56.1983746550207,-56.1983339111712,-56.19834865726,-56.198461094852,-56.198528331955,-56.1990628628095,-56.1991139535451,-56.1984980230895,-56.1985178598839,-56.1984898056847,-56.1984071698971,-56.1982692615464,-56.1982020077999,-56.1981995909116,-56.1983111376941,-56.198346246731,-56.1984567369927,-56.1985502443488,-56.1990862523471,-56.1990890156688,-56.1984189379647,-56.1980834180562,-56.1980760432179,-56.197953555343,-56.1979603165028,-56.195933524899,-56.1958372874744,-56.1956888584978,-56.1954930627981,-56.1954852830087,-56.1954723304519,-56.1953679718666,-56.1953001084021,-56.1947090747786,-56.194683173347,-56.1946397283454,-56.1947208731661,-56.1950553083132,-56.1954889095707,-56.1955358593658,-56.1958452963437,-56.1958754454511,-56.1959313399191,-56.1961323521064,-56.1965427730896,-56.1966483819953,-56.1977742873296,-56.1991415520535,-56.1994694291985,-56.1997953338122,-56.2003129721421,-56.2000903228372,-56.1998943523445,-56.1997925454259,-56.1997109458409,-56.1996572473139,-56.1996383667434,-56.1995673960573,-56.1995611994462,-56.1994596970989,-56.1993400536063],&#34;lat&#34;:[-34.9054947739421,-34.905993410815,-34.9059824109592,-34.9060301677527,-34.9061246049084,-34.9065236849936,-34.9064608380557,-34.9064244713197,-34.9067135722207,-34.9073402320718,-34.908273456693,-34.9092111903062,-34.9101395716251,-34.9105588405762,-34.9109501801876,-34.9110565397104,-34.9114834350197,-34.9111073640974,-34.9110451960146,-34.9109981692924,-34.9108030450742,-34.9107711816237,-34.9106922118063,-34.9107228620192,-34.9107301624179,-34.9107270833978,-34.9106950908319,-34.9106733100019,-34.9106486165792,-34.9106373789392,-34.9106501165761,-34.9107306779191,-34.9108070511451,-34.910887454435,-34.9110922296361,-34.9112648438111,-34.9114683370583,-34.9116935847161,-34.9117830199718,-34.9118072732508,-34.9118193876048,-34.9118346573374,-34.9118530120583,-34.9120671968608,-34.9121272113193,-34.912155916689,-34.91246080525,-34.9126233222404,-34.9127311540374,-34.9127748568971,-34.9127246206054,-34.9126860645595,-34.912667761922,-34.9125473350057,-34.9125460396115,-34.9125998871463,-34.9125318078336,-34.9124991460237,-34.9124874916453,-34.9123346338928,-34.9123384749154,-34.9123093902311,-34.9123560502408,-34.9123033660495,-34.9122775261592,-34.9121902575533,-34.9121749942614,-34.9121138561846,-34.912025001432,-34.9120455158746,-34.9120496183513,-34.9119884654786,-34.911964749695,-34.9119303106013,-34.9119026958495,-34.9118718651018,-34.9118430564874,-34.9118429893574,-34.9118001050572,-34.9116981996135,-34.9116795040583,-34.9116884799212,-34.9117173190071,-34.9116913921554,-34.9116258752774,-34.9115638527723,-34.9115531562525,-34.9115003993541,-34.9114584088386,-34.9113259928507,-34.9112078207925,-34.9108629038805,-34.910741525317,-34.9106537827122,-34.9106849867819,-34.9107110361527,-34.9107779391108,-34.9107917156267,-34.9107783067433,-34.9107739935674,-34.9107930473822,-34.9108221918191,-34.9108453179858,-34.9108525301349,-34.910854343521,-34.9108637674039,-34.9108587361867,-34.9108437468694,-34.910843333503,-34.9108445464135,-34.910872892705,-34.9108931260271,-34.9108906123912,-34.9108747491402,-34.9108588401923,-34.9108570871616,-34.9108622705344,-34.9108853853481,-34.9108936306909,-34.9108899243899,-34.9109113902082,-34.9109184188988,-34.9109317231921,-34.9109018537258,-34.9108625722672,-34.9107131379813,-34.9107100642203,-34.9106620377465,-34.9107023369987,-34.9107343824382,-34.9107785277623,-34.9107810336018,-34.9107307115298,-34.9106886352002,-34.9106962396413,-34.9107916529855,-34.9107906040923,-34.9107601721357,-34.9107962384518,-34.9107659181822,-34.9107400971963,-34.9106909486886,-34.9106512459857,-34.9106075212506,-34.9105640067288,-34.9105732772519,-34.910591102354,-34.9105976617248,-34.9106292497257,-34.9106169724982,-34.9106483852408,-34.9106623428543,-34.9107373056706,-34.9107817308465,-34.9107900031231,-34.9107463513997,-34.9107751901713,-34.910807368038,-34.9108402501324,-34.9108176390825,-34.9108717651113,-34.9109660776333,-34.9109842289974,-34.9109754725497,-34.9110147907654,-34.9110388164838,-34.9110122158589,-34.9110438409524,-34.9111009954849,-34.9111714109266,-34.9111132391928,-34.9111964925616,-34.9112767369344,-34.9114053590019,-34.9113089178656,-34.9113447721493,-34.9114211326022,-34.9114175635073,-34.9114578249879,-34.9114526244555,-34.9114197288098,-34.9114515939437,-34.9115028686443,-34.9115012968463,-34.9115482176544,-34.9115516842748,-34.9115376854012,-34.9115572091507,-34.9114991479162,-34.9115048297214,-34.911524816897,-34.911631796486,-34.9117774339904,-34.9117696146603,-34.9117950711038,-34.9118207330055,-34.9118532672867,-34.911818373128,-34.9118450499652,-34.9118224599274,-34.9118795368089,-34.9119145061277,-34.9119230962336,-34.911905765929,-34.9119614893208,-34.9120526107642,-34.9121000735008,-34.912103152876,-34.9120621587744,-34.9120541599613,-34.9120571958026,-34.9120877639514,-34.9121568556012,-34.912154341463,-34.9120734366829,-34.9121279026477,-34.9121210572055,-34.9121010320644,-34.9120603637717,-34.9120948688033,-34.9121567980284,-34.9122134347384,-34.9122411188624,-34.9122236546506,-34.9122764939072,-34.9123349842238,-34.9123005758767,-34.9123823347946,-34.9124040191245,-34.9123754571433,-34.9124010681393,-34.9124344028326,-34.9123694897324,-34.9122710142609,-34.9122305084245,-34.9122145726306,-34.9122484596701,-34.9122536542333,-34.9122253193324,-34.9121719268005,-34.9121094777396,-34.9120800055156,-34.9121206741523,-34.9120747133347,-34.9120090845636,-34.9119849369102,-34.9120353121865,-34.9120526779047,-34.9120240830081,-34.9120123338773,-34.9119298266299,-34.9118847757142,-34.911832812031,-34.9116715304266,-34.9113750269632,-34.9110644063282,-34.9109107105477,-34.9108557897931,-34.9109133011764,-34.9111250946678,-34.911079082221,-34.9110926352844,-34.9110602793417,-34.9110148101533,-34.9109527747933,-34.9108805617642,-34.9108908169435,-34.910846185429,-34.9113277619414,-34.9114246998278,-34.9134716146114,-34.9133806466612,-34.9115902504205,-34.9113928371792,-34.9107018466333,-34.9104828235544,-34.9102225250297,-34.9095993504799,-34.909242660319,-34.9087771672075,-34.9083828346042,-34.9080593635831,-34.9075963594157,-34.9071819858496,-34.9069072314812,-34.9061759137461,-34.9060495588438,-34.9059158435391,-34.9059077862442,-34.9058195011253,-34.9056254793967,-34.9042941377897,-34.9045538333881,-34.9043369882221,-34.9030241594961,-34.9030245647051,-34.9031469361485,-34.9048992598667,-34.9049218982085,-34.9049130002863,-34.9046092219534,-34.9018604576787,-34.9014000619074,-34.9012528776674,-34.901864169593,-34.9029600397613,-34.9018844550547,-34.9014158100292,-34.9012851926664,-34.8996686272956,-34.8995920144511,-34.8990511455112,-34.9007810409959,-34.9008308683598,-34.9008400314187,-34.8996033669726,-34.8999894712142,-34.8999965367198,-34.8993821084401,-34.8992952112887,-34.8992682869082,-34.8993209526344,-34.8990330908615,-34.8988005342424,-34.898455547033,-34.8979189681576,-34.8975881002671,-34.8974799005905,-34.8971705523078,-34.8969836720946,-34.896688190208,-34.8963861644456,-34.8967253822378,-34.89658132843,-34.8962707168868,-34.8944847811466,-34.8942420659285,-34.8937679565358,-34.8939401576235,-34.8938125076549,-34.8934908176708,-34.8934401595031,-34.8933577903918,-34.893170411966,-34.8926768565314,-34.8926221757365,-34.8931488362381,-34.8930850476409,-34.8924940500691,-34.8922427003266,-34.8919776712106,-34.8916347717061,-34.891635320985,-34.8930372076098,-34.8928775885409,-34.8927378409555,-34.892627420343,-34.8925623184854,-34.8924148110423,-34.8923874884881,-34.8923235899584,-34.8921957199441,-34.8921129863146,-34.8919510693702,-34.8918590455933,-34.8916975334214,-34.891418601035,-34.8912630801444,-34.8912224066873,-34.8912108437177,-34.8912216292544,-34.8912275141168,-34.8912604660776,-34.8912752027786,-34.8911750562065,-34.8910515758092,-34.8909689153574,-34.8909542515873,-34.8908920806912,-34.8908342979061,-34.8907062535844,-34.8906632424103,-34.8905503711453,-34.8905731211649,-34.8904688419362,-34.890037120105,-34.8895517937907,-34.8894376496633,-34.8893278953498,-34.8891916235846,-34.8893843004766,-34.8892722685199,-34.8890359805525,-34.8888656856689,-34.8887119303028,-34.8885615606373,-34.8884857387757,-34.8883897819007,-34.8881706472155,-34.8876844523388,-34.8875798065151,-34.8872022274685,-34.8871691334067,-34.887208249468,-34.8871577017974,-34.8871158289613,-34.8870274668216,-34.8870073286826,-34.8869764299381,-34.8870348593441,-34.8869421503336,-34.8878500157315,-34.8887570917345,-34.889995961977,-34.8900451866899,-34.8906202041608,-34.8915275709786,-34.8924593940266,-34.8978419855548,-34.897944395965,-34.8983134033652,-34.8987628168127,-34.899108089413,-34.8993442108843,-34.8993697776452,-34.8994704862788,-34.8994802984816,-34.8994966964637,-34.8995644873385,-34.8996962692686,-34.899728513867,-34.9000848720196,-34.9005092716357,-34.9006665078887,-34.9008424891857,-34.9010727505325,-34.9010894337457,-34.9010808844867,-34.9010801003599,-34.9020441874328,-34.9026753129204,-34.9028962085085,-34.9035761973727,-34.9036355681486,-34.904600345709,-34.9054947739421]}]],[[{&#34;lng&#34;:[-56.18454440373,-56.184430642064,-56.1843315317836,-56.1851956425914,-56.1864455668725,-56.187688419727,-56.1888225945522,-56.18995851272,-56.1906152147313,-56.1910706348297,-56.1922112623745,-56.1933141269034,-56.1944565721292,-56.1955851630692,-56.1967122059807,-56.1967447085765,-56.1978214697231,-56.197922769466,-56.1980234021982,-56.1980911546398,-56.198129084123,-56.1986126969086,-56.1987210522514,-56.198724611095,-56.1988297386621,-56.1989766599427,-56.1993135333852,-56.1993400536063,-56.1994596970989,-56.1995611994462,-56.1995673960573,-56.1996383667434,-56.1996572473139,-56.1997109458409,-56.1997925454259,-56.1998943523445,-56.2000903228372,-56.2003129721421,-56.1997953338122,-56.1994694291985,-56.1991415520535,-56.1977742873296,-56.1966483819953,-56.1965427730896,-56.1961323521064,-56.1959313399191,-56.1958754454511,-56.1957878464699,-56.1957127442462,-56.1956729350184,-56.1954239749404,-56.1946226121794,-56.1943038582987,-56.1932185855745,-56.1930933510572,-56.1921798847217,-56.19198180717,-56.1913702137959,-56.1912075752748,-56.1911028298076,-56.1908862376733,-56.1898429571001,-56.1897621957314,-56.1896347538464,-56.1886868898282,-56.1880714331813,-56.1876167926139,-56.1873947253399,-56.1869074730783,-56.1867640476995,-56.1864471019652,-56.186428796084,-56.1860951509104,-56.186086790036,-56.1859677805353,-56.1858493813759,-56.1856732079912,-56.1854712425232,-56.1854372543254,-56.1852887933549,-56.185281344924,-56.1850839314123,-56.185075254285,-56.1850042246804,-56.1846330658354,-56.1846248604363,-56.18454440373],&#34;lat&#34;:[-34.9063665922554,-34.9072907982442,-34.9082153200438,-34.9082927713322,-34.9083937399265,-34.9084767268401,-34.9085500149176,-34.9086298638346,-34.9086730644476,-34.9087104358567,-34.9088045043205,-34.9089011359108,-34.9089817824196,-34.9090464069899,-34.909128777804,-34.9091331900795,-34.9092111903062,-34.908273456693,-34.9073402320718,-34.9067135722207,-34.9064244713197,-34.9064608380557,-34.9065236849936,-34.9061246049084,-34.9060301677527,-34.9059824109592,-34.905993410815,-34.9054947739421,-34.904600345709,-34.9036355681486,-34.9035761973727,-34.9028962085085,-34.9026753129204,-34.9020441874328,-34.9010801003599,-34.9010808844867,-34.9010894337457,-34.9010727505325,-34.9008424891857,-34.9006665078887,-34.9005092716357,-34.9000848720196,-34.899728513867,-34.8996962692686,-34.8995644873385,-34.8994966964637,-34.8994802984816,-34.899576609227,-34.8996171450772,-34.8996160744185,-34.8996093784061,-34.8995565838248,-34.8995097767629,-34.8994089962199,-34.899398484023,-34.8993251615881,-34.8993078072242,-34.8992656202332,-34.8992835089143,-34.8992950297938,-34.8992829348516,-34.8992286954696,-34.8992264056485,-34.8992150471802,-34.899132875995,-34.8990801632281,-34.8990407283473,-34.8990193474454,-34.8989860026886,-34.8989765128746,-34.8996420981141,-34.899680045549,-34.9005012783818,-34.9005463716375,-34.9009473829752,-34.901723459509,-34.9026432530529,-34.9035586955669,-34.9037324428062,-34.904497233388,-34.9045312569378,-34.9054596154774,-34.9054941170148,-34.9055627427949,-34.9056092934485,-34.9056793797135,-34.9063665922554]}]],[[{&#34;lng&#34;:[-56.1837415802891,-56.1836634531744,-56.1836195816906,-56.1845231170473,-56.1844518295892,-56.1846423809677,-56.1851396759302,-56.1854214341576,-56.1857036798356,-56.185788018528,-56.1857819714791,-56.1857819337712,-56.1857716101788,-56.1857505987006,-56.1860214782134,-56.1861474377397,-56.1861112092611,-56.1861084023471,-56.1860822486775,-56.1864725641099,-56.1868220148852,-56.1873760665409,-56.1880352427029,-56.1882523963238,-56.1886807313038,-56.1887218948088,-56.1888042429304,-56.1887552402541,-56.1889836926338,-56.1890428231852,-56.1890382284881,-56.1890441667461,-56.1890930506178,-56.1891198317267,-56.1892793377429,-56.1892778093689,-56.1893599847079,-56.1894472193911,-56.1895823871719,-56.1896677594444,-56.189700913745,-56.1897684651771,-56.1897792902507,-56.1898037201904,-56.1897839741331,-56.1899030759734,-56.1897827491472,-56.1898032636236,-56.1897153943822,-56.1896580604732,-56.1896583822031,-56.1896586324372,-56.1901204119721,-56.1911232499062,-56.1918709236758,-56.1921203578593,-56.1921625925974,-56.191951947856,-56.1920126550618,-56.1922035117197,-56.1925987678977,-56.1939639570981,-56.1943112831265,-56.1945899343147,-56.1949323642587,-56.1952390957208,-56.1952449334836,-56.1952618602698,-56.195369272605,-56.1955938387079,-56.196314026272,-56.1963919015149,-56.1964474223963,-56.1964914702125,-56.1965505761969,-56.1968812854523,-56.197696565688,-56.1984579358107,-56.1991116140467,-56.1999003220108,-56.2002195480179,-56.2004935392883,-56.200817744161,-56.2006947788146,-56.2005896823842,-56.2004894173719,-56.2004009783015,-56.200277579179,-56.2002198654798,-56.2001649048953,-56.2001466712022,-56.1998548316957,-56.1997332467679,-56.1989886772434,-56.1988092260252,-56.1985855913771,-56.1972034437798,-56.197528111764,-56.1976609850086,-56.1977097692408,-56.1977387731896,-56.1978214697231,-56.1967447085765,-56.1967122059807,-56.1955851630692,-56.1944565721292,-56.1933141269034,-56.1922112623745,-56.1910706348297,-56.1906152147313,-56.18995851272,-56.1888225945522,-56.187688419727,-56.1864455668725,-56.1851956425914,-56.1843315317836,-56.1841650047857,-56.184046572873,-56.1840346319204,-56.1839462878585,-56.1838439563509,-56.1837575084942,-56.1838650937707,-56.1836907938429,-56.1837965460303,-56.1837829028206,-56.183761701258,-56.1837415802891],&#34;lat&#34;:[-34.913574624955,-34.9142794052216,-34.9144668476913,-34.9145312256512,-34.9155308985096,-34.9155492542876,-34.9155764979034,-34.9155715620246,-34.9155666169507,-34.9155565783093,-34.9156273843016,-34.9156832192535,-34.9157310123258,-34.9159437541978,-34.9159611457484,-34.9159723739351,-34.9158869375047,-34.9158557843047,-34.9158186405797,-34.9157506779252,-34.9156891621149,-34.9155668392934,-34.9153343107153,-34.9152416597043,-34.9150411931258,-34.9150653662653,-34.9150243779082,-34.9149883236277,-34.9148843572188,-34.914933859863,-34.9149520173571,-34.914984441174,-34.9149905783305,-34.914961655989,-34.9149081557727,-34.9148390305782,-34.9147904707609,-34.9146764672645,-34.9146780342922,-34.9147034015174,-34.9146999849646,-34.9147913761742,-34.9148132741398,-34.9147988864951,-34.9147860231316,-34.9147995488802,-34.9146859800923,-34.9146206394966,-34.9145745832263,-34.9145669256516,-34.914534189111,-34.9145087273572,-34.9142535339268,-34.9137636764148,-34.9133994310731,-34.9136320792783,-34.9136032589845,-34.9133822720561,-34.9133567219166,-34.913257955839,-34.913128487911,-34.9127385507751,-34.9126699201519,-34.9126244780228,-34.912604921233,-34.9126233222404,-34.91246080525,-34.912155916689,-34.9121272113193,-34.9120671968608,-34.9118530120583,-34.9118346573374,-34.9118193876048,-34.9118072732508,-34.9117830199718,-34.9116935847161,-34.9114683370583,-34.9112648438111,-34.9110922296361,-34.910887454435,-34.9108070511451,-34.9107306779191,-34.9106501165761,-34.9106373789392,-34.9106486165792,-34.9106733100019,-34.9106950908319,-34.9107270833978,-34.9107301624179,-34.9107228620192,-34.9106922118063,-34.9107711816237,-34.9108030450742,-34.9109981692924,-34.9110451960146,-34.9111073640974,-34.9114834350197,-34.9110565397104,-34.9109501801876,-34.9105588405762,-34.9101395716251,-34.9092111903062,-34.9091331900795,-34.909128777804,-34.9090464069899,-34.9089817824196,-34.9089011359108,-34.9088045043205,-34.9087104358567,-34.9086730644476,-34.9086298638346,-34.9085500149176,-34.9084767268401,-34.9083937399265,-34.9082927713322,-34.9082153200438,-34.9091330139181,-34.9100921534471,-34.9101996026721,-34.9109470938341,-34.9118799623286,-34.9126162798143,-34.9126215727896,-34.9127419746145,-34.9128835147558,-34.913087665178,-34.9132726171318,-34.913574624955]}]],[[{&#34;lng&#34;:[-56.1856732079912,-56.1858493813759,-56.1859677805353,-56.186086790036,-56.1860951509104,-56.186428796084,-56.1864471019652,-56.1867640476995,-56.1867935263266,-56.1869651481319,-56.1863193590403,-56.1852137826437,-56.1851767212937,-56.1850872231796,-56.1842940639188,-56.1834950816548,-56.1826923468306,-56.1823511812995,-56.1819648170416,-56.1819138019818,-56.1806403031225,-56.1803882718935,-56.1803138631024,-56.1795941664749,-56.1806581890134,-56.1805937041217,-56.1798244323571,-56.179626994658,-56.1792111650523,-56.1791039334564,-56.1785248194423,-56.1784271675852,-56.1784532102298,-56.1773550354926,-56.1761871473495,-56.17506133007,-56.1739105407452,-56.1729765924175,-56.1730165596963,-56.1730781931489,-56.1729485879749,-56.1715810777148,-56.1714790384239,-56.1714540371968,-56.1713676109579,-56.1712493308539,-56.1711149439844,-56.1710610111699,-56.1709955257307,-56.170377438634,-56.1699415921902,-56.1698361127918,-56.1696070096374,-56.1693236718462,-56.1692728143467,-56.1692175189852,-56.1691178740443,-56.1679596517194,-56.16660296871,-56.1654528722424,-56.1652240659078,-56.1642708159591,-56.1640385795222,-56.1639799993109,-56.1638866861869,-56.1637678982582,-56.1636494138195,-56.1636487651516,-56.1636458805492,-56.1636445668042,-56.1635480815598,-56.1634348715078,-56.1636520685219,-56.1648132390339,-56.1659298744811,-56.1666656660446,-56.1673876520129,-56.1684326956803,-56.1685424672923,-56.169707024551,-56.1708107654451,-56.1713409171912,-56.1720191586444,-56.1731704157104,-56.1731619793153,-56.1737850692133,-56.1743736662575,-56.1752625947007,-56.1762206304509,-56.1762851628986,-56.1762849819719,-56.1774616121236,-56.1773958306984,-56.1777436834283,-56.1784705049354,-56.179573201124,-56.1808958344899,-56.1820823447369,-56.1830145613297,-56.1843315317836,-56.184430642064,-56.18454440373,-56.1846248604363,-56.1846330658354,-56.1850042246804,-56.185075254285,-56.1850839314123,-56.185281344924,-56.1852887933549,-56.1854372543254,-56.1854712425232,-56.1856732079912],&#34;lat&#34;:[-34.9026432530529,-34.901723459509,-34.9009473829752,-34.9005463716375,-34.9005012783818,-34.899680045549,-34.8996420981141,-34.8989765128746,-34.8989214105647,-34.8986024107538,-34.898170566374,-34.8976083390094,-34.8975894916074,-34.8975205194615,-34.8971126090917,-34.8967002014025,-34.8962878003834,-34.8967980318561,-34.8973759915914,-34.8973581057006,-34.8968658701755,-34.8967674143993,-34.8967135366131,-34.8960772824572,-34.8952974096135,-34.8951619815627,-34.8947318387675,-34.8946079173143,-34.894933657832,-34.894913131568,-34.8948796441061,-34.8949431177295,-34.8947497158028,-34.8946484849465,-34.8945570311148,-34.8944699587092,-34.8943784365089,-34.8943088522892,-34.8939572034349,-34.8933801491666,-34.8933714855319,-34.893278555939,-34.8941912016138,-34.8944391503206,-34.8951469711953,-34.8961352470189,-34.8972163325845,-34.8973246434432,-34.8974510136156,-34.8985262531441,-34.8993016813856,-34.8994913258568,-34.8999079390482,-34.900425902842,-34.9006259541185,-34.9012426186969,-34.9021834992795,-34.9021057741947,-34.902023743556,-34.9019591819266,-34.9019417579406,-34.9022056707139,-34.9022738858942,-34.9027743089752,-34.903576787834,-34.9046001722863,-34.9056145420894,-34.9056235567384,-34.9058227997851,-34.9058806662201,-34.9067325253286,-34.9076973045566,-34.9077147618931,-34.907792832156,-34.9078871537302,-34.9079231443613,-34.9079733439503,-34.9080533131593,-34.9070978470677,-34.9071894309665,-34.9072721052704,-34.9073112437885,-34.9073589934142,-34.9074370119837,-34.9076262862094,-34.9075269798133,-34.9075193827978,-34.9075800657602,-34.907649564936,-34.9069463089156,-34.9069012406727,-34.9066450285376,-34.9077274767838,-34.9077535652383,-34.9078056537684,-34.907879236717,-34.9079702286439,-34.90805257111,-34.9081228082495,-34.9082153200438,-34.9072907982442,-34.9063665922554,-34.9056793797135,-34.9056092934485,-34.9055627427949,-34.9054941170148,-34.9054596154774,-34.9045312569378,-34.904497233388,-34.9037324428062,-34.9035586955669,-34.9026432530529]}]],[[{&#34;lng&#34;:[-56.1773958306984,-56.1774616121236,-56.1762849819719,-56.1762851628986,-56.1762206304509,-56.1752625947007,-56.1743736662575,-56.1737850692133,-56.1731619793153,-56.1730653982169,-56.172923300412,-56.1729151290526,-56.1728653984052,-56.1727698224476,-56.1726907149831,-56.1725928144934,-56.1724945396195,-56.1724071718417,-56.1724072878354,-56.1724160120419,-56.1725965409506,-56.1731829207433,-56.1736049687793,-56.1736333208288,-56.1737542599647,-56.1737836853769,-56.1738971397507,-56.1738955649591,-56.1754654506951,-56.1755190326788,-56.1768488877341,-56.1777113600423,-56.1777125285335,-56.1781442818105,-56.1781981936333,-56.1783330793968,-56.1784254896597,-56.1784741125145,-56.1784742448685,-56.1783923822466,-56.1781966720793,-56.1781104448849,-56.1780972133033,-56.1781399411883,-56.1782527668699,-56.1783664811221,-56.1784158609916,-56.178477989413,-56.178532759721,-56.1786064763214,-56.1790589330723,-56.1792221063932,-56.1794538904556,-56.1794604912471,-56.1792642829953,-56.1791908687936,-56.1790926135863,-56.1788960528272,-56.1788536272269,-56.1789953163925,-56.179075583463,-56.1792772846586,-56.1793873704965,-56.179416179452,-56.1796137454287,-56.1796861103191,-56.1804516016399,-56.1811880627709,-56.1811777042064,-56.1822330219922,-56.1822224010418,-56.1824486826935,-56.1824734726021,-56.183004790839,-56.1830185071795,-56.1833731992514,-56.1832682164505,-56.1832427058281,-56.1832931371465,-56.1835012724976,-56.1838617675486,-56.1839775891465,-56.184050033975,-56.1841198460677,-56.1843607598005,-56.1847471932765,-56.1849113402977,-56.1852355185495,-56.1853339157708,-56.1854855290274,-56.1855492211774,-56.1856281071014,-56.1856964771151,-56.185819383825,-56.1858041901819,-56.1857449756934,-56.1857395777416,-56.1858529688871,-56.1859656000441,-56.1861125365333,-56.1861570373794,-56.1861673129811,-56.186045125902,-56.1859811935654,-56.1859327747892,-56.1858789582461,-56.1857325024636,-56.1856200719187,-56.1857505987006,-56.1857716101788,-56.1857819337712,-56.1857819714791,-56.185788018528,-56.1857036798356,-56.1854214341576,-56.1851396759302,-56.1846423809677,-56.1844518295892,-56.1845231170473,-56.1836195816906,-56.1836634531744,-56.1837415802891,-56.183761701258,-56.1837829028206,-56.1837965460303,-56.1836907938429,-56.1838650937707,-56.1837575084942,-56.1838439563509,-56.1839462878585,-56.1840346319204,-56.184046572873,-56.1841650047857,-56.1843315317836,-56.1830145613297,-56.1820823447369,-56.1808958344899,-56.179573201124,-56.1784705049354,-56.1777436834283,-56.1773958306984],&#34;lat&#34;:[-34.9077274767838,-34.9066450285376,-34.9069012406727,-34.9069463089156,-34.907649564936,-34.9075800657602,-34.9075193827978,-34.9075269798133,-34.9076262862094,-34.9083702282672,-34.909627732348,-34.9097046831464,-34.9101825529294,-34.9110841945958,-34.9118280482201,-34.9127477258547,-34.9136510205107,-34.9143964484002,-34.9143981132824,-34.9145233334159,-34.9145093719536,-34.9144658887849,-34.9144379842403,-34.9148053271211,-34.9148040301363,-34.9146919048453,-34.9146672440166,-34.9145676240267,-34.9145253024815,-34.9145701723165,-34.914612469112,-34.914658269953,-34.9147456580274,-34.9147883465606,-34.9149305011204,-34.9149668607314,-34.914947229832,-34.9150032617526,-34.9150751248219,-34.9151014575694,-34.9150883714709,-34.9151432411032,-34.9151931423703,-34.915223814917,-34.9151912544693,-34.9153164975318,-34.9152965756909,-34.915231164675,-34.9152872381305,-34.9152928003602,-34.9153597009642,-34.9153624835906,-34.9153896761113,-34.915344145338,-34.9152921810352,-34.9152562376841,-34.9152454461161,-34.9152289263292,-34.9151678725267,-34.9151384463261,-34.9151035411089,-34.9149427592851,-34.9149502242911,-34.9149252130128,-34.914956793943,-34.9148598199551,-34.9149624303907,-34.9150889292715,-34.9151415243262,-34.9153511878588,-34.9153730860426,-34.9154255595399,-34.915405470605,-34.9155290130175,-34.9154942101532,-34.9156021795452,-34.9156972561326,-34.9158012687495,-34.9158587409064,-34.9158534180278,-34.9159129729262,-34.915986791553,-34.9161209657331,-34.9160242070486,-34.9159953014946,-34.9161138414691,-34.9160578766384,-34.9161005620908,-34.9160971706527,-34.9161832609999,-34.9162079947631,-34.9161882677413,-34.9162373396374,-34.9162422143329,-34.9162866751099,-34.9163065340602,-34.9163551116096,-34.9163275133634,-34.9163768816441,-34.9164386330235,-34.9164146242095,-34.9163701304508,-34.9162923403445,-34.9162919120916,-34.9162146160093,-34.9161858974661,-34.9160755353056,-34.9160059124374,-34.9159437541978,-34.9157310123258,-34.9156832192535,-34.9156273843016,-34.9155565783093,-34.9155666169507,-34.9155715620246,-34.9155764979034,-34.9155492542876,-34.9155308985096,-34.9145312256512,-34.9144668476913,-34.9142794052216,-34.913574624955,-34.9132726171318,-34.913087665178,-34.9128835147558,-34.9127419746145,-34.9126215727896,-34.9126162798143,-34.9118799623286,-34.9109470938341,-34.9101996026721,-34.9100921534471,-34.9091330139181,-34.9082153200438,-34.9081228082495,-34.90805257111,-34.9079702286439,-34.907879236717,-34.9078056537684,-34.9077535652383,-34.9077274767838]}]],[[{&#34;lng&#34;:[-56.1621336187979,-56.1621112631775,-56.1628894707878,-56.1655081769919,-56.1657363546522,-56.1656869417706,-56.165734183739,-56.1657558751755,-56.1657814917199,-56.1657915485732,-56.1657852454934,-56.1657674296883,-56.1657438420913,-56.1657255007547,-56.1657220314791,-56.1657166399971,-56.1657132258895,-56.1657464903355,-56.1657497353423,-56.1657601857319,-56.165765443112,-56.1657772429611,-56.1657816977387,-56.1657857871812,-56.1658415773412,-56.1658458731985,-56.1658553862554,-56.1659096626008,-56.1659536649292,-56.1660009597756,-56.1660560366431,-56.1661254915039,-56.1667354294029,-56.1669910067145,-56.1671508202311,-56.1677767052187,-56.1686663635921,-56.1692175848347,-56.1691527832751,-56.169148956633,-56.1692089480092,-56.1694875997213,-56.1696110934102,-56.1702129838205,-56.1701371997367,-56.1701830540109,-56.1701875373637,-56.1702004173396,-56.1702577385683,-56.1703361243581,-56.17045609246,-56.1704564331521,-56.170525612366,-56.170314792504,-56.1706134502008,-56.1707403285861,-56.1707894269549,-56.1708328456177,-56.1710602168088,-56.1711464537386,-56.1712847368368,-56.1713780160556,-56.1714533040803,-56.171566179431,-56.1715585030365,-56.1716799462679,-56.1719755536679,-56.172045165443,-56.1722431649173,-56.172097748388,-56.1719093163353,-56.1719239881473,-56.172094746996,-56.1722517766552,-56.1723545025592,-56.1724042158481,-56.1724345194023,-56.1724648597574,-56.1725067219295,-56.1725224254695,-56.1727579359667,-56.1729930460894,-56.1732136324658,-56.1734262256278,-56.1735409627927,-56.1736245194462,-56.1736333208288,-56.1736049687793,-56.1731829207433,-56.1725965409506,-56.1724160120419,-56.1724072878354,-56.1724071718417,-56.1724945396195,-56.1725928144934,-56.1726907149831,-56.1727698224476,-56.1728653984052,-56.1729151290526,-56.172923300412,-56.1730653982169,-56.1731619793153,-56.1731704157104,-56.1720191586444,-56.1713409171912,-56.1708107654451,-56.169707024551,-56.1685424672923,-56.1684326956803,-56.1673876520129,-56.1666656660446,-56.1659298744811,-56.1648132390339,-56.1636520685219,-56.1634348715078,-56.163326476079,-56.1633205610139,-56.1630763653556,-56.1630735867893,-56.1630568242241,-56.1630294842004,-56.1629360412339,-56.1628468393874,-56.1628425398437,-56.1628129065468,-56.1627770722926,-56.162763447901,-56.1626588357824,-56.1628855006586,-56.1627804791887,-56.1627277391879,-56.1627123089524,-56.1626892714513,-56.1626004794439,-56.1624868396207,-56.1623674973297,-56.1622523844204,-56.1622271866398,-56.1621336187979],&#34;lat&#34;:[-34.9213877758121,-34.921622640189,-34.9212308377572,-34.9199378028936,-34.9198687861236,-34.9196708127963,-34.9187370449205,-34.9185708990141,-34.9177731075727,-34.9174575981897,-34.9173004958867,-34.9168564400642,-34.9159419496935,-34.9153278241591,-34.915211661241,-34.9150311360174,-34.9149647065164,-34.9144065313432,-34.9143614547627,-34.9142352330002,-34.9139148575009,-34.9136921330929,-34.9135663441432,-34.9135105269924,-34.9127490336167,-34.9126266505718,-34.9124968720334,-34.9117564170517,-34.9114329433537,-34.9113879728906,-34.9113545273466,-34.9113852985392,-34.9114246100568,-34.9114527080615,-34.9114625853717,-34.9115063919326,-34.9115585864656,-34.9116062657983,-34.9116892512746,-34.9120690443231,-34.9121989881819,-34.912508185651,-34.9126070099506,-34.9129659517327,-34.9132591029183,-34.913669532806,-34.9137096619498,-34.9138210460601,-34.9143200367357,-34.9144616009076,-34.9146863530817,-34.9146869913436,-34.9148165933465,-34.9149275700493,-34.9158938396027,-34.9156871016919,-34.9156289059686,-34.9156121466144,-34.9153426293844,-34.915229109129,-34.9150418151291,-34.9149723529901,-34.9149157368781,-34.9148565340221,-34.9148348049126,-34.9147958920178,-34.9147964615094,-34.9148525728829,-34.9148770436619,-34.9150321258327,-34.9151030978303,-34.9151270422648,-34.9150689559055,-34.9148929986264,-34.9148835824885,-34.9149995305501,-34.9150240857515,-34.9150550702741,-34.9150913461046,-34.9151079968811,-34.9151743550141,-34.9152004483011,-34.9151696370435,-34.9151084469873,-34.9150285101313,-34.9149133539321,-34.9148053271211,-34.9144379842403,-34.9144658887849,-34.9145093719536,-34.9145233334159,-34.9143981132824,-34.9143964484002,-34.9136510205107,-34.9127477258547,-34.9118280482201,-34.9110841945958,-34.9101825529294,-34.9097046831464,-34.909627732348,-34.9083702282672,-34.9076262862094,-34.9074370119837,-34.9073589934142,-34.9073112437885,-34.9072721052704,-34.9071894309665,-34.9070978470677,-34.9080533131593,-34.9079733439503,-34.9079231443613,-34.9078871537302,-34.907792832156,-34.9077147618931,-34.9076973045566,-34.9088213411544,-34.9089041898292,-34.9109927161583,-34.911022284907,-34.9112078501354,-34.9113691080543,-34.9123450816125,-34.9130297772413,-34.9131398396927,-34.9135511701731,-34.913806462169,-34.9139035252174,-34.9147469879273,-34.9147529962134,-34.9157294939018,-34.9162577273798,-34.916380397142,-34.9166269751746,-34.9175089329943,-34.9184831649012,-34.9194098168544,-34.9205944455847,-34.9207674889458,-34.9213877758121]}]],[[{&#34;lng&#34;:[-56.1657852454934,-56.1657915485732,-56.1657814917199,-56.1657558751755,-56.165734183739,-56.1656869417706,-56.1657363546522,-56.1655081769919,-56.1628894707878,-56.1621112631775,-56.1621336187979,-56.1622271866398,-56.1622523844204,-56.1623674973297,-56.1624868396207,-56.1626004794439,-56.1626892714513,-56.1627123089524,-56.1627277391879,-56.1627804791887,-56.1628855006586,-56.1626588357824,-56.1623161512218,-56.1619922274994,-56.1613604366687,-56.1604029795502,-56.1601050475658,-56.1598543129794,-56.1588195106077,-56.1575276334673,-56.1562635627911,-56.156246137427,-56.1561394746428,-56.1560420608773,-56.1560136375209,-56.1548990126804,-56.1548733661204,-56.1547786072509,-56.1534986838283,-56.1525737601548,-56.1515473474742,-56.1509845872443,-56.150608049721,-56.1496612414277,-56.1487124344466,-56.1487632137082,-56.1489574006834,-56.1489692363966,-56.1488521762924,-56.1488156892451,-56.1482970916809,-56.1482634505512,-56.1482644434206,-56.148201399886,-56.1480837978826,-56.1480701842121,-56.1480792192945,-56.148062029504,-56.1480079521174,-56.1479565356006,-56.1477943186078,-56.1476472894478,-56.1474876888608,-56.147314816418,-56.1471664047766,-56.1470619375668,-56.1469471917228,-56.1468513056052,-56.1467532850535,-56.146749749897,-56.1467308234695,-56.1466965591318,-56.1466568253068,-56.146642137732,-56.146626372935,-56.1465426831074,-56.1464758486391,-56.1464353944425,-56.1464185390831,-56.1463916485483,-56.1463498303149,-56.146315549302,-56.146282769063,-56.1462762890545,-56.1462119322748,-56.1461609128854,-56.1461103167917,-56.1460477345164,-56.1460090112124,-56.1459134986208,-56.1457971786316,-56.1456869951405,-56.1456209777603,-56.14557653484,-56.1455297507122,-56.1454785209584,-56.1453729298357,-56.1453339797481,-56.145297811095,-56.1452530947003,-56.1452144981284,-56.1451926468591,-56.1451689379652,-56.1451800770432,-56.1452103693324,-56.1452310700083,-56.1452588676776,-56.1452556126655,-56.1453135225311,-56.1454008575721,-56.1454664080448,-56.1454930351104,-56.1454744722037,-56.1454049396773,-56.1454074809879,-56.1454727046254,-56.1455174076799,-56.145597872511,-56.1456393038782,-56.1456569096246,-56.1456533444527,-56.1457228636388,-56.1457755808264,-56.1458301356284,-56.1458512265055,-56.1458151245535,-56.1458016275927,-56.1458387934268,-56.1459236705334,-56.1460417714411,-56.1461711048083,-56.1462655435127,-56.1463200349487,-56.1464093743566,-56.1464898225125,-56.1465628968655,-56.1466989103444,-56.1468311151925,-56.1470049781914,-56.1471332376715,-56.1472689409905,-56.1474236507783,-56.147547387926,-56.1476537327708,-56.14766193199,-56.1476613518377,-56.1477068445046,-56.1477014683199,-56.1476709515501,-56.1475565964124,-56.1473168894676,-56.147335877168,-56.1474082587345,-56.1476382385057,-56.147819228562,-56.1478839558365,-56.1478867265054,-56.1479711833936,-56.1480322793297,-56.1480593747494,-56.148161608545,-56.1483418506024,-56.1483619175117,-56.1483244784933,-56.148524643685,-56.1486572260398,-56.1489490960388,-56.1492112596387,-56.149351048385,-56.1495104233483,-56.1495505151343,-56.1493234695572,-56.1492765668902,-56.1492913988228,-56.1493942316018,-56.1500562512226,-56.1501992209902,-56.1504301918464,-56.1506849818693,-56.1510548258041,-56.1510468960241,-56.1511062209781,-56.1512593150232,-56.1514588749359,-56.1514839615176,-56.1514770672005,-56.1515423798996,-56.1515360967437,-56.1509614090927,-56.1509405975502,-56.1514173366183,-56.1512589516329,-56.1511196960076,-56.1507747625573,-56.1506309840319,-56.1505438593437,-56.1504580738779,-56.1502093315918,-56.1499992100277,-56.1499130724871,-56.1496033315762,-56.1493917306032,-56.1493346595433,-56.1497685905963,-56.1499698883006,-56.1500883260373,-56.1502945852014,-56.1504504672691,-56.1504496990209,-56.1506078921369,-56.1506756485106,-56.150759067734,-56.1509393944481,-56.1509750152863,-56.1509784834474,-56.1509829809215,-56.1510019621317,-56.1510088298212,-56.1510475127161,-56.1510712461725,-56.1510939143558,-56.1510911507394,-56.1511070755924,-56.1511562713815,-56.1512109521617,-56.151306820801,-56.1513460999779,-56.1514304501422,-56.1514410745864,-56.151479719403,-56.1515316142338,-56.1515795124144,-56.1516619108444,-56.1516909203059,-56.1517104648727,-56.1517405399012,-56.1517362787694,-56.151765616026,-56.1518236348028,-56.1519375220305,-56.1519782230211,-56.1519990837795,-56.1520206315589,-56.1520603186932,-56.1520883798317,-56.1521280536259,-56.152169795153,-56.1522289623337,-56.1522624762844,-56.1522963370806,-56.1523250318793,-56.1523527161567,-56.15236261793,-56.152398529784,-56.1524508367601,-56.1524635099626,-56.1524720777146,-56.1524851411184,-56.1524930885504,-56.1524999987808,-56.1525079128623,-56.1525226871485,-56.1525436512935,-56.1525529194067,-56.1525655892742,-56.1526069906259,-56.1526439430166,-56.1526603581489,-56.1526846573473,-56.1527034870583,-56.15271923518,-56.1527507314234,-56.1527719523676,-56.1528037787813,-56.1528232888431,-56.152836609046,-56.1528458104581,-56.1528556788808,-56.1528625023999,-56.152867955212,-56.1528823192866,-56.1528939486175,-56.1528970101964,-56.1528997115896,-56.1529034568545,-56.1529061749229,-56.1529174107175,-56.1529303740697,-56.1529361537171,-56.1529391819455,-56.1529370975372,-56.1529295403064,-56.1529182511509,-56.1528984175889,-56.1528844103651,-56.1528745085918,-56.1528680119079,-56.15285156009,-56.1528234656009,-56.1528176192525,-56.1528186097633,-56.1528209709811,-56.1528192267482,-56.1528164753292,-56.1528054629832,-56.1528006238209,-56.1528039955598,-56.1528049360448,-56.1528069204015,-56.1528109925016,-56.1528218514351,-56.1528313596721,-56.1528395172125,-56.1528514200178,-56.1528616286159,-56.1528677684491,-56.152885844438,-56.1529039204269,-56.1529104171107,-56.1529206790698,-56.1529490803837,-56.152990138225,-56.1530476445491,-56.1530825625572,-56.1531020592788,-56.153123280223,-56.1531345660434,-56.1531537692803,-56.1531743565644,-56.1531829576669,-56.1531871264835,-56.1531913319857,-56.1531934530796,-56.153195230663,-56.1532038484408,-56.1532103951504,-56.1532107886867,-56.1532115924346,-56.1532120193214,-56.1532124428731,-56.1532111788879,-56.1532071568137,-56.1532030880486,-56.1531898011963,-56.1531761374829,-56.1531652251884,-56.1531666459212,-56.15317220212,-56.1531613598617,-56.1531477961999,-56.1531396886853,-56.1531349529096,-56.1531271021941,-56.1531213058715,-56.1531216827325,-56.1531238004913,-56.1531245875639,-56.1531243107545,-56.1531168702506,-56.1531094164064,-56.1531115341653,-56.1531239639089,-56.1531435440069,-56.1531521617846,-56.1531508110881,-56.1531494770667,-56.1531515948256,-56.1531578180351,-56.1531684735304,-56.1531798093766,-56.1531904448615,-56.1532051691219,-56.1532226448012,-56.1532339472969,-56.1532534406834,-56.153278750403,-56.1533054441696,-56.1533276923102,-56.1533478693827,-56.1533653117115,-56.1533796924614,-56.1533916619677,-56.1534056858668,-56.1534323629582,-56.1534515128343,-56.1534699823595,-56.1534873913378,-56.1535037731196,-56.153517813694,-56.1535465585185,-56.1535869660243,-56.1536153873486,-56.1536266898442,-56.1536366082928,-56.1536427314506,-56.1536488679487,-56.1536529900746,-56.1536622415125,-56.1536745878798,-56.1536821284353,-56.1536934142557,-56.1537152855353,-56.153759748466,-56.1537765404594,-56.1538025838906,-56.1538354841915,-56.1538800271634,-56.1538947680991,-56.1539108764065,-56.1539629799443,-56.1539838940636,-56.1540072194264,-56.1540291407318,-56.1540633917292,-56.1541007043056,-56.1541400879501,-56.1541691896253,-56.1541801519455,-56.1541835903854,-56.1541928418233,-56.1542024501119,-56.1542099906674,-56.1542181982336,-56.1542274163209,-56.1542520757051,-56.1542910824885,-56.1543294189263,-56.1543540616352,-56.1543800883912,-56.1544105774485,-56.1544266857559,-56.1544458889929,-56.1544654690908,-56.1544761212511,-56.1544833883322,-56.1544906554134,-56.1545027283064,-56.1545144410136,-56.1545247863489,-56.1545344646736,-56.1545376263041,-56.1545404644345,-56.1545490988875,-56.1545631894877,-56.1545810253528,-56.1545978173462,-56.1546228169058,-56.15464403785,-56.1546649186187,-56.1546861228876,-56.154707670667,-56.1547456502541,-56.1547723440207,-56.1547993779628,-56.1548281261223,-56.1548527654962,-56.1548746734613,-56.154895550895,-56.1549232718581,-56.1549513329966,-56.1549804213315,-56.1550088259805,-56.1550430603027,-56.1550817235757,-56.1551029445199,-56.155117652105,-56.1551566422132,-56.1551983670651,-56.1552565237246,-56.1553098945827,-56.1553519796203,-56.1553749281221,-56.1554212353373,-56.1554470052942,-56.1554504937599,-56.1554389177899,-56.1554246037411,-56.155423970081,-56.1554260744996,-56.1554401284142,-56.1554446274012,-56.1554388310785,-56.1554292694807,-56.15541045978,-56.1553988471244,-56.1553735407399,-56.1553488980311,-56.1553372687002,-56.1553201865572,-56.1552746830899,-56.1552391114113,-56.1552257745331,-56.1552008416746,-56.1551786435598,-56.1551510093081,-56.1551230648965,-56.1551009701683,-56.1550908316063,-56.1550902146214,-56.1550954306448,-56.1551871215768,-56.1556463419005,-56.1557737822202,-56.1559344770432,-56.1559383656609,-56.1559077775764,-56.1559362148771,-56.1565035879338,-56.1566189508364,-56.1569667004112,-56.156967237455,-56.1569161565255,-56.1569920285692,-56.1571311085206,-56.1574486135837,-56.1575183488305,-56.1576977989009,-56.1577548222244,-56.1576273807007,-56.1574767103529,-56.157464925153,-56.1575978202047,-56.1577876900919,-56.1578271335084,-56.1577043646121,-56.1576162681304,-56.157476308645,-56.1563066359659,-56.1563120401244,-56.1575164349126,-56.1576657405251,-56.1579599723532,-56.1580282942316,-56.1577990666332,-56.1577924910945,-56.1578664131649,-56.1579867940825,-56.1581249508717,-56.1581351759308,-56.1579028334888,-56.1578495552994,-56.1579643368304,-56.1578931853196,-56.157950698183,-56.1581070218189,-56.1581986233811,-56.1580577345388,-56.1580454126621,-56.1580326518719,-56.1581178734884,-56.1581195126673,-56.1581149139272,-56.1580486785523,-56.1580371027021,-56.1584156998364,-56.1584945197064,-56.1584283993073,-56.158365402628,-56.1581849793471,-56.158097753651,-56.157963860216,-56.157843263685,-56.1578344896316,-56.1583233042643,-56.158440868936,-56.1586129095991,-56.1587596180777,-56.1588840023365,-56.1588749302377,-56.1588686129949,-56.1588236897878,-56.1588271140502,-56.1588241969983,-56.1588201615838,-56.1588154224731,-56.1588079853042,-56.1588052672358,-56.1587991274026,-56.1587858572255,-56.1587769959889,-56.1587708761661,-56.1587606642329,-56.1587511226454,-56.1587463501841,-56.1587358014105,-56.1587265833231,-56.1587180489217,-56.158708180499,-56.15869354295,-56.1586829741661,-56.1586751401259,-56.1586669659102,-56.1586605192522,-56.1586567906626,-56.1586523950624,-56.1586462919148,-56.1586418963145,-56.1586385112354,-56.1586354996823,-56.158634165661,-56.1586331918254,-56.1586339622227,-56.1586336720731,-56.1586330217377,-56.1586320312269,-56.1586303903806,-56.1586297400452,-56.158630473757,-56.1586336220473,-56.1586336720731,-56.1586381543847,-56.1586498170662,-56.1586590718391,-56.1586703743347,-56.1586861257915,-56.1586943500329,-56.1586995160305,-56.1587053823893,-56.1587160045341,-56.1587235617648,-56.1587259896837,-56.1587225879293,-56.1587164647714,-56.158706239498,-56.1586874964984,-56.1586759171933,-56.1586670592917,-56.158662323516,-56.1586606459842,-56.1586596554734,-56.1586590218133,-56.1586587149884,-56.158660132386,-56.158661192933,-56.158659195236,-56.1586575177042,-56.1586578945653,-56.1586582714263,-56.1586590218133,-56.1586591085247,-56.1586557401208,-56.1586534155887,-56.1586589751225,-56.158669013633,-56.1586732191352,-56.1586756670643,-56.1586812432734,-56.1586843548782,-56.158686782797,-56.1586912984592,-56.1586961542968,-56.1586978818544,-56.1586955239717,-56.1586900844998,-56.1586887504784,-56.1586877933181,-56.1586881701792,-56.1586892307261,-56.1586916586449,-56.1586951304354,-56.1586985855506,-56.1587037515482,-56.1587205969025,-56.1587339871415,-56.1587432585897,-56.1587532437393,-56.1587632488992,-56.158768431572,-56.1587729305589,-56.158781568347,-56.1587853469624,-56.1587936245647,-56.158807031479,-56.1588166964635,-56.15882461388,-56.1588349458751,-56.1588435469776,-56.1588493799859,-56.1588655416542,-56.1588806594508,-56.1588926989932,-56.1588992323627,-56.1589123324521,-56.158921653926,-56.1589275369601,-56.1589317124468,-56.1589328230196,-56.1589321893594,-56.1589305651885,-56.1589313722714,-56.1589338001902,-56.1589410505961,-56.1589524264629,-56.1589589765076,-56.1589631153087,-56.1589717497617,-56.1589772759451,-56.1589810712357,-56.1589862872591,-56.1589883583272,-56.1589918134424,-56.1589980199766,-56.1590025022883,-56.1590039063457,-56.1590040264076,-56.1590037162477,-56.1590030692473,-56.1589963291046,-56.1589913031793,-56.1589937477734,-56.1589999409673,-56.1590085253945,-56.1590205315864,-56.1590369834044,-56.1590445439703,-56.1590503736434,-56.1590620730104,-56.1590772108174,-56.1590837608621,-56.1590937493467,-56.1591013232528,-56.1591061457399,-56.1591119954234,-56.1591175216067,-56.159128177102,-56.1591378054009,-56.159150511954,-56.1591638855177,-56.1591782862779,-56.1591961421533,-56.1592074813346,-56.1592184936806,-56.1592260709217,-56.1592353590451,-56.1592432764617,-56.1592553160041,-56.1592659548242,-56.1592772940054,-56.159294789695,-56.1593171078718,-56.1593215718406,-56.1593287905635,-56.15934014642,-56.1593521692872,-56.1593631666254,-56.1593786279326,-56.1593893001031,-56.1593985865591,-56.1594106261015,-56.1594209564291,-56.159429235699,-56.1594374949585,-56.1594474667679,-56.1594567532238,-56.1594743006067,-56.1594839472484,-56.1594904806179,-56.1594973558302,-56.1595223937429,-56.1595481170091,-56.1595728130788,-56.1596026568033,-56.1596126102699,-56.1596229239223,-56.1596407964729,-56.1596507666148,-56.1596610802671,-56.1596706918908,-56.1596830582684,-56.1596896083131,-56.1596920362319,-56.1596903603676,-56.1596784408871,-56.1596671884173,-56.1596596978875,-56.159654943769,-56.1596553206301,-56.1596591175883,-56.159665667633,-56.1596725428453,-56.1596763398035,-56.1596846174058,-56.1596925364899,-56.1596973606445,-56.1597042358569,-56.1597138641558,-56.1597248614941,-56.1597334475888,-56.1597464959849,-56.1597691760149,-56.1597791461567,-56.1597860213691,-56.1597946424819,-56.1598067003671,-56.1598115228542,-56.1598163636841,-56.159821204514,-56.1598277895767,-56.1598302008203,-56.1598319450531,-56.1598382049482,-56.1598430974714,-56.159845885576,-56.1598479899946,-56.1598501461065,-56.1598505563181,-56.1598502828437,-56.159846949458,-56.1598439579151,-56.1598447099697,-56.1598451218487,-56.1598438228455,-56.1598418735068,-56.1598395990005,-56.1598396690366,-56.1598414816381,-56.1598415850247,-56.1598416383856,-56.1598434176365,-56.1598448367017,-56.1598463091277,-56.1598495591372,-56.1598513734062,-56.1598524689712,-56.1598511349499,-56.1598477998965,-56.159846826061,-56.1598458522254,-56.1598441930364,-56.1598425171721,-56.1598425521902,-56.1598446732841,-56.1598481450746,-56.1598519770508,-56.1598554838594,-56.1598542015314,-56.1598509014961,-56.1598491753302,-56.1598431986295,-56.1598451784904,-56.1598523727948,-56.1598576360171,-56.1598491555016,-56.1598619346001,-56.159867014092,-56.1598691289393,-56.1598672455871,-56.1598689470162,-56.1598657067379,-56.1598455052899,-56.1598452363377,-56.1598543809154,-56.1598391526625,-56.1598392321855,-56.1598290708713,-56.159831078875,-56.1598283849702,-56.1598137682107,-56.159815905998,-56.1598099765886,-56.1598124818946,-56.1598259272318,-56.1598558745012,-56.1599020251228,-56.1599894076244,-56.1600087593743,-56.1601160676556,-56.1601872007981,-56.160254703572,-56.1603216325797,-56.1603978227698,-56.1605018451855,-56.1605955012395,-56.1605880994113,-56.160546565381,-56.1605086386816,-56.1604759756447,-56.1604937128355,-56.160507131321,-56.1604970865241,-56.1605057952035,-56.1605042008766,-56.160495644493,-56.1604891055676,-56.1605612913535,-56.1606477907033,-56.1606497414131,-56.1607458661196,-56.1608026612503,-56.1611910004771,-56.1613091346957,-56.1613957170064,-56.1615676402879,-56.1616349093257,-56.1616228152555,-56.1615292827484,-56.1614373227688,-56.1613763770396,-56.1612703578292,-56.1611929610288,-56.1613346970508,-56.1612763028822,-56.1611581489146,-56.161082641542,-56.1611373196809,-56.1612308304764,-56.1612563426039,-56.1611630181589,-56.1611492424075,-56.1612359685296,-56.1615484245421,-56.1615549715814,-56.1615411019971,-56.1615883745323,-56.1615053995632,-56.1611508567469,-56.1611714526772,-56.1612354039995,-56.161388218587,-56.1617674044221,-56.1618343828061,-56.1619796270538,-56.1619677191268,-56.1618009416012,-56.161784365797,-56.1618021410653,-56.1618989676903,-56.1622664517929,-56.1622634666505,-56.1623027753522,-56.1623573492637,-56.162551383296,-56.1625763567795,-56.162370104688,-56.1622667204882,-56.1618991744694,-56.1618312995879,-56.1618766201829,-56.1618751443319,-56.1620220621763,-56.1620182624729,-56.1619308267633,-56.161911989387,-56.1620299472226,-56.162139858557,-56.1621561603552,-56.162351623961,-56.1624717824468,-56.1635062033852,-56.1636124888161,-56.1636980831365,-56.1637285406296,-56.1638072276733,-56.1638256001194,-56.163950915002,-56.1639553262423,-56.1638962207506,-56.1638225649681,-56.1636990586458,-56.1636845376346,-56.1637209769726,-56.1636837603766,-56.1634596842728,-56.1633386417341,-56.1631618434948,-56.1629962165725,-56.1629012500512,-56.1624956910001,-56.1624891682194,-56.1622989109421,-56.1622934090192,-56.1624169752327,-56.1624176543458,-56.1623048762044,-56.1622210235709,-56.1621296443562,-56.1620309747372,-56.162003408004,-56.161911674465,-56.1618929754635,-56.1618145818866,-56.1617601685782,-56.161699321472,-56.1616110850018,-56.1615435972825,-56.1610824940444,-56.1609625433422,-56.1609279231675,-56.161060199941,-56.1611278650809,-56.1611497023805,-56.1611076193571,-56.1610642297849,-56.1609536480326,-56.1608832542401,-56.1607671563137,-56.1607643984365,-56.1607327730645,-56.1606865068128,-56.1605503119158,-56.1604905588052,-56.1603831433882,-56.1603982579588,-56.1606027091683,-56.1606068872074,-56.1605542180496,-56.1603849784476,-56.1603750188304,-56.1604923828273,-56.1605925009777,-56.1605445133327,-56.1604815299692,-56.1604786244072,-56.1605357965138,-56.1606210366921,-56.1608678685807,-56.1611499706841,-56.1611556366743,-56.1611641083169,-56.1613938077695,-56.161430023819,-56.1615435383722,-56.1615550947106,-56.1614850275571,-56.1613343716235,-56.1611761298459,-56.1612407983864,-56.16139868526,-56.1615184257139,-56.1616351711615,-56.1618605920194,-56.1616887451405,-56.1617210493405,-56.1619318996866,-56.1619645286719,-56.1619447552299,-56.1620441601241,-56.16222095132,-56.1622821564289,-56.1623965908947,-56.1624997290153,-56.1626792499494,-56.1627436796935,-56.1626568928824,-56.162604401797,-56.1626372954739,-56.1626058185902,-56.162596182285,-56.1626771544024,-56.1627441663308,-56.1627867552443,-56.1629532296468,-56.1630380532088,-56.1631972963908,-56.1634518550853,-56.1634875372235,-56.1633645958858,-56.1633583677285,-56.1636133383208,-56.1638900886973,-56.1641587530543,-56.1643542060456,-56.1644618980938,-56.1644060861715,-56.1644147303384,-56.1645059240216,-56.1645897321177,-56.1645947982913,-56.1647720916224,-56.1648836609289,-56.1649506813291,-56.1650403647241,-56.1651126692106,-56.1651016794487,-56.1651413406497,-56.1653943238064,-56.1654849500501,-56.1655621828233,-56.1656396204618,-56.1655943625965,-56.1656555126838,-56.1657295915644,-56.1658272348759,-56.1658957026274,-56.1659816316033,-56.1659773994389,-56.1660336067496,-56.1660723525125,-56.1661347715356,-56.1661905048933,-56.1664133996619,-56.1667540321794,-56.1668970982728,-56.1670043626988,-56.16704369254,-56.1671894234655,-56.1672118132611,-56.1672092901663,-56.167201546366,-56.1672203751061,-56.1672916180668,-56.167404637475,-56.1674531089151,-56.1675308089512,-56.1676434577138,-56.1676909540178,-56.1677460548749,-56.1677603871933,-56.1678389486795,-56.1678784704503,-56.1679738657166,-56.1682667507048,-56.168299927425,-56.1682981381848,-56.1683185651561,-56.1683231850321,-56.1685314983651,-56.1686003974436,-56.1686419669975,-56.1686446853592,-56.1686080546466,-56.1683117948946,-56.1685422311521,-56.1686384570601,-56.1686899456407,-56.1687108885575,-56.1688245482401,-56.1688829792277,-56.1687812905872,-56.1687361124806,-56.1689221082295,-56.1689611875042,-56.1690200912761,-56.1691331051823,-56.1692189348027,-56.1692805705426,-56.169261564536,-56.1692816861993,-56.1693087707252,-56.1692846393105,-56.1692508513041,-56.1692167454532,-56.1691887010506,-56.1691732802042,-56.1691778635241,-56.1691986516565,-56.1692137100518,-56.169264462947,-56.1693374061402,-56.1693673087342,-56.1693972251505,-56.169418020208,-56.1694363941941,-56.1694646389969,-56.1694912743574,-56.1695087952597,-56.169520710723,-56.1695581252413,-56.1695667596191,-56.1695453808882,-56.1695481266199,-56.1695142418795,-56.169461838138,-56.1694360628087,-56.1693846157881,-56.1693739057359,-56.1693373720096,-56.1693232427328,-56.1692761026282,-56.1692704350823,-56.1692798673491,-56.1693016605213,-56.1693327339254,-56.1694269002413,-56.16947029998,-56.1694877931846,-56.1695376583125,-56.1695551722397,-56.1695835274612,-56.1696194774477,-56.1696469450538,-56.1697473451914,-56.1697957251423,-56.16982586241,-56.1698852009892,-56.1699284763234,-56.1699426608067,-56.1699778335554,-56.1701146082472,-56.1701803846268,-56.1703496622706,-56.1704082303817,-56.1704473991184,-56.1704713647676,-56.1704946084687,-56.1705445563646,-56.1705797082286,-56.1705948629906,-56.1706198886661,-56.1706747271649,-56.1707197742353,-56.1707606957719,-56.1707619913972,-56.1706724490607,-56.1706439028809,-56.170643745906,-56.1706515462873,-56.1706527537524,-56.1706871129135,-56.1709585105065,-56.1709541477281,-56.1708459783461,-56.1708497824756,-56.1708308042959,-56.1707844643117,-56.1707872237027,-56.1708200157619,-56.1708795848373,-56.1709466931202,-56.1709932300535,-56.1710003653302,-56.1710073626864,-56.1710370339045,-56.1710586170557,-56.1710433247565,-56.1710448587547,-56.1710639748053,-56.1710688695633,-56.1710844475229,-56.1710857549406,-56.1711166547382,-56.1711260206797,-56.1711419309047,-56.1711737540144,-56.171205715034,-56.171245077261,-56.1712700507397,-56.171309481888,-56.1713200567844,-56.171371261883,-56.1713605885067,-56.1713857293802,-56.1713754695836,-56.1713968185747,-56.1714089371534,-56.1714591005983,-56.1715221287284,-56.171569352564,-56.171597529374,-56.1716614416188,-56.1716864642777,-56.1717279390362,-56.1717930520986,-56.1717898190988,-56.1718041093021,-56.1717899962564,-56.1717745168459,-56.1717735441663,-56.1718120220655,-56.1718488875391,-56.171859777402,-56.1718551583457,-56.17185542406,-56.1718807320204,-56.1718997790222,-56.1719981599184,-56.1720149577462,-56.1719634986635,-56.1725405369609,-56.1725740799619,-56.1725690478213,-56.1724344897299,-56.1726014503428,-56.1727274278973,-56.1727265041233,-56.1726254410065,-56.1724820678973,-56.1726059033882,-56.1729563163569,-56.1729625867192,-56.1726002621593,-56.1725714857801,-56.1726230836857,-56.1727764615125,-56.172849916945,-56.1728772883069,-56.1728849857393,-56.1728479808577,-56.1728359905239,-56.172598346378,-56.1725336180615,-56.1719613268947,-56.1719599029575,-56.1720116191348,-56.1720151277016,-56.1720198845045,-56.1720271476163,-56.1720390396217,-56.172046273213,-56.1720534084154,-56.1720904212024,-56.1721034532141,-56.1721261070466,-56.172136829524,-56.1721487313634,-56.172155797702,-56.1721628837166,-56.1721867267465,-56.172197498408,-56.1721928990001,-56.1721811152097,-56.1721705304593,-56.172183739538,-56.1721814496737,-56.1721839166066,-56.1722376174638,-56.1722613817702,-56.1722888415415,-56.1723161832792,-56.1723352793083,-56.1723425915351,-56.1723582379817,-56.1723655502003,-56.1723938844256,-56.1724415605328,-56.1724488530652,-56.1727399509838,-56.1727511944398,-56.1727131499458,-56.1727105061178,-56.1724538458705,-56.1724564799459,-56.1724448928268,-56.1724120673657,-56.1723568635986,-56.1723083819953,-56.1722275757769,-56.1724660243868,-56.1724563615456,-56.1722147208797,-56.1721791926087,-56.1721340130743,-56.1721233693548,-56.1721114479024,-56.1720758704676,-56.1720724504611,-56.1720832515851,-56.1720727357722,-56.1720752912474,-56.1720706525357,-56.1720696502713,-56.1720495619009,-56.1720226742149,-56.17203858626,-56.1720522078672,-56.1720478150899,-56.1720494542686,-56.1720501012689,-56.1720480135256,-56.1720441798818,-56.1720420921384,-56.1720396625521,-56.1720423456025,-56.172026851821,-56.1720764118064,-56.1720766061832,-56.1720345189152,-56.1719801602588,-56.1719555825303,-56.1719027944252,-56.1718225152519,-56.1717222825717,-56.1717103260294,-56.1715960916896,-56.1715014792398,-56.1714308181981,-56.1712797336249,-56.1712041284515,-56.1711920321548,-56.1711866656035,-56.1712520333203,-56.1712589411664,-56.1712989183344,-56.1713611420668,-56.1714071809309,-56.1714497008303,-56.1715282721105,-56.1715548239928,-56.1715158230257,-56.1715390999626,-56.1716112026183,-56.1716912094674,-56.1717304763698,-56.1717903781439,-56.171821909188,-56.1718945265868,-56.1718881393288,-56.1719209969361,-56.1719572378387,-56.171993505817,-56.1720103139171,-56.1720938403926,-56.1720732826939,-56.1720220676907,-56.1719794155412,-56.1719697779331,-56.1720018090077,-56.172044793734,-56.1721257737306,-56.1721721094555,-56.1721282801744,-56.1721266000431,-56.1722320906442,-56.1723346967335,-56.1723603789523,-56.1723461116048,-56.1723562568849,-56.1724513160207,-56.1724356748126,-56.1723738779198,-56.1723418792747,-56.1722345782372,-56.1722038817813,-56.1721345060646,-56.1721958736618,-56.1722837689571,-56.1722650412675,-56.1722217055081,-56.1721238596818,-56.1720584432983,-56.1720791413825,-56.1721840742018,-56.1723216207447,-56.1724102060096,-56.1724968733847,-56.1725490912124,-56.1725192801305,-56.1725886218806,-56.1726492217123,-56.1727031902883,-56.1726942860013,-56.1728357831394,-56.1729045558805,-56.1729573330299,-56.172993989723,-56.1730266765805,-56.1730439571592,-56.1730384493187,-56.1730253992551,-56.1730037114034,-56.1730248423012,-56.1730390613009,-56.173040663794,-56.1730295764093,-56.1730174818385,-56.1730027042173,-56.1729957206157,-56.1729785684365,-56.1730102114223,-56.1730483510919,-56.173034438917,-56.172997054637,-56.1729603373677,-56.1729473423324,-56.1729360381693,-56.1729134498532,-56.1728994292891,-56.1728597054692,-56.1728174987021,-56.1727917053998,-56.1727990858728,-56.1728190294916,-56.1728216224955,-56.1728256529074,-56.1728269852612,-56.1728190845199,-56.1728151975153,-56.1728188860843,-56.1727911334382,-56.1727690989106,-56.1727165433035,-56.1726637253435,-56.1726834209659,-56.1725549962702,-56.1725650570419,-56.172545775234,-56.1725078873609,-56.1724745718459,-56.1724561056558,-56.1723732212435,-56.1723201071846,-56.1722570930199,-56.1722231838654,-56.1721655891623,-56.1721268191677,-56.1721134105858,-56.1720905337877,-56.1720649756067,-56.1720341980673,-56.172016792424,-56.1720031670638,-56.1719806137658,-56.1719384970451,-56.1719138209857,-56.171917529565,-56.1719472448899,-56.1719482003827,-56.171924603213,-56.1719092502952,-56.1718935905524,-56.1718661797492,-56.1717838539584,-56.1717541710047,-56.1717073044799,-56.1716611556797,-56.171576021774,-56.1714967051097,-56.171430599318,-56.1714038230177,-56.1713374927401,-56.1712035841538,-56.1711209632811,-56.1709416325935,-56.1707894218024,-56.1707451238034,-56.1706676254159,-56.1707557319097,-56.170771716643,-56.1707443278827,-56.1707255565471,-56.1705997288578,-56.1704594459273,-56.1703816207909,-56.1702735967468,-56.1702452985531,-56.1701037632262,-56.170008480323,-56.1700127005292,-56.1700198692263,-56.1700276660906,-56.1700977624016,-56.170097024017,-56.170092523292,-56.1701208592945,-56.170195501471,-56.1702293160974,-56.1703222446213,-56.1703280531647,-56.170329513918,-56.1703382634304,-56.1703743687174,-56.170407002214,-56.1704416867684,-56.17050247145,-56.1705327270536,-56.1706134502008,-56.170314792504,-56.170525612366,-56.1704564331521,-56.17045609246,-56.1703361243581,-56.1702577385683,-56.1702004173396,-56.1701875373637,-56.1701830540109,-56.1701371997367,-56.1702129838205,-56.1696110934102,-56.1694875997213,-56.1692089480092,-56.169148956633,-56.1691527832751,-56.1692175848347,-56.1686663635921,-56.1677767052187,-56.1671508202311,-56.1669910067145,-56.1667354294029,-56.1661254915039,-56.1660560366431,-56.1660009597756,-56.1659536649292,-56.1659096626008,-56.1658553862554,-56.1658458731985,-56.1658415773412,-56.1657857871812,-56.1657816977387,-56.1657772429611,-56.165765443112,-56.1657601857319,-56.1657497353423,-56.1657464903355,-56.1657132258895,-56.1657166399971,-56.1657220314791,-56.1657255007547,-56.1657438420913,-56.1657674296883,-56.1657852454934],&#34;lat&#34;:[-34.9173004958867,-34.9174575981897,-34.9177731075727,-34.9185708990141,-34.9187370449205,-34.9196708127963,-34.9198687861236,-34.9199378028936,-34.9212308377572,-34.921622640189,-34.9213877758121,-34.9207674889458,-34.9205944455847,-34.9194098168544,-34.9184831649012,-34.9175089329943,-34.9166269751746,-34.916380397142,-34.9162577273798,-34.9157294939018,-34.9147529962134,-34.9147469879273,-34.9147310353648,-34.9147093475132,-34.9146614194622,-34.9145827855753,-34.9145610243525,-34.9145753561536,-34.9144806239927,-34.914381161682,-34.9142804420134,-34.9144177504625,-34.9152292854949,-34.9161530887585,-34.9165996957475,-34.9170171843904,-34.9170172477564,-34.9170084765662,-34.9173046893307,-34.9175188597839,-34.9177558186563,-34.917883431136,-34.9179700124549,-34.9181887252507,-34.9184154169275,-34.9182452923915,-34.9175947054883,-34.9175408978328,-34.9175635813488,-34.9175727552191,-34.9175958176106,-34.9175973135779,-34.9177166247676,-34.9179690652826,-34.9183545336634,-34.9185127023339,-34.9186228604736,-34.918767528076,-34.9188869320004,-34.9190402944267,-34.9191939336624,-34.919293454988,-34.9193659218874,-34.9193879784256,-34.9193712717868,-34.9193264620106,-34.9192771699227,-34.9192413547853,-34.9191830080277,-34.9191514684286,-34.9191199655151,-34.9191020229283,-34.9190840970168,-34.9190886393594,-34.9190796647309,-34.9190122699737,-34.9189718724731,-34.9189449319124,-34.9189179313209,-34.9188594078055,-34.9188324705799,-34.9188100223361,-34.9188236226835,-34.9188281450158,-34.9188551181797,-34.9188870220469,-34.9188916544359,-34.9188918111834,-34.9188693729447,-34.9188425691213,-34.9188293356298,-34.918811579806,-34.9188072375666,-34.9188118532804,-34.9188299993054,-34.9188481520006,-34.9188709470899,-34.9188800584555,-34.9189026834572,-34.9189253284691,-34.9189389454918,-34.9189480135017,-34.9190111694062,-34.9190652239501,-34.9191192318033,-34.9191687573449,-34.919195727921,-34.9192408078366,-34.9192722106985,-34.9193080491813,-34.9193709849722,-34.9194520434428,-34.9195196949991,-34.9195829609603,-34.9196235185436,-34.9196909599915,-34.9197584548004,-34.9197852953093,-34.9197987155638,-34.9198437387835,-34.9198978333481,-34.9199247005375,-34.9199380907765,-34.9199875329418,-34.9200505754544,-34.9200912297542,-34.9201408386722,-34.9202038411641,-34.920221660354,-34.9202529164736,-34.9202706222715,-34.9202839091239,-34.920315321991,-34.9203376334976,-34.9203599683496,-34.9204228841302,-34.9204901488203,-34.9205439032095,-34.9205795282489,-34.9205837137408,-34.9205653476023,-34.9206010193324,-34.9206773286871,-34.9207672017036,-34.9207798208953,-34.9207801861338,-34.9208478193809,-34.9208839805203,-34.9209326201949,-34.9209909879762,-34.9211736637412,-34.9212314087521,-34.9212664837142,-34.9212127899011,-34.9212970203255,-34.9212606027299,-34.9212003780856,-34.9212128205209,-34.9212570338603,-34.9213424892583,-34.9213924095896,-34.9214646456527,-34.9215156734507,-34.9216511101027,-34.9217118812772,-34.9218357875604,-34.921990493639,-34.9220304949369,-34.9219551429236,-34.9219774615482,-34.9220837570605,-34.9221330548708,-34.9221878542392,-34.9222473264222,-34.9222607681289,-34.9224689493649,-34.9225844454446,-34.9226539101355,-34.9229101270997,-34.9229932830254,-34.9230008360778,-34.9230021232966,-34.9231346512518,-34.9232547817331,-34.9233185658605,-34.9234881415428,-34.9236454996686,-34.9237557112772,-34.9235651107046,-34.9235861682555,-34.9237888066857,-34.9241001527648,-34.9241972838645,-34.9243777094909,-34.9243767044975,-34.9244065629807,-34.9244218881555,-34.9244360736687,-34.9244550788404,-34.9245045260501,-34.9245410334565,-34.924703351723,-34.924880401552,-34.9251223129713,-34.9251555712995,-34.9251882497179,-34.9252761420249,-34.9252535253975,-34.9251275693365,-34.9251176120867,-34.9252879062902,-34.9253491696687,-34.9253560071602,-34.9253689721646,-34.9253741274532,-34.9253739132454,-34.9253825458173,-34.925373224054,-34.9253781792178,-34.9253881609738,-34.9254226751069,-34.9254280099416,-34.9254334753473,-34.9254465333712,-34.9254545745354,-34.9254765196701,-34.9254750919923,-34.9255034920498,-34.9255275785433,-34.9255301234207,-34.9255400398804,-34.925584180439,-34.9255648439215,-34.9255650464645,-34.9255452710617,-34.9254419393677,-34.9253861564142,-34.925354502253,-34.9253549072804,-34.9253625082874,-34.9253624049008,-34.9253623515399,-34.9253622981791,-34.9253667037845,-34.9253711394054,-34.9253710393538,-34.9253754416241,-34.9253752915467,-34.9253752048354,-34.925375121459,-34.9253660334388,-34.9253614577456,-34.9253569254082,-34.9253568353618,-34.9253521963026,-34.9253566686091,-34.9253611542558,-34.9253791502034,-34.9254016651483,-34.9254196744361,-34.9254331747319,-34.9254511640094,-34.9254781545959,-34.9254871425645,-34.925491618206,-34.9254960204764,-34.9255004327519,-34.9255003927313,-34.9255048383574,-34.9255092973236,-34.92551376296,-34.9255226975678,-34.925527149864,-34.9255315754797,-34.925536034446,-34.9255314921034,-34.925522457444,-34.9255089104575,-34.9255043847901,-34.9254998657929,-34.9254998291073,-34.9254997990918,-34.9254952834296,-34.9254862654455,-34.9254817464483,-34.9254772341211,-34.9254636837996,-34.925454639135,-34.9254456078107,-34.9254320808344,-34.9254230728555,-34.9254140782167,-34.9254141048971,-34.9254141549229,-34.9254187006006,-34.925423229603,-34.9254232462782,-34.9254142749848,-34.9254008247149,-34.925391826741,-34.925382812092,-34.9253737907728,-34.9253647827938,-34.9253602804718,-34.9253422811891,-34.9253287742233,-34.925315243912,-34.9252927056217,-34.9252746729885,-34.9252656516693,-34.9252430866987,-34.9252250373902,-34.9252114937387,-34.9251934377601,-34.9251798907736,-34.9251753684413,-34.9251618014444,-34.9251482344476,-34.9251482177723,-34.9251481910919,-34.9251526267128,-34.9251570289832,-34.925170405882,-34.9251793304846,-34.9251792804588,-34.925183732755,-34.9251837027395,-34.9251971763549,-34.9252151522922,-34.9252286492529,-34.9252466685459,-34.925273699153,-34.925291721781,-34.9253097444091,-34.9253277503619,-34.9253412539927,-34.9253547742988,-34.925386320568,-34.9254088521882,-34.9254313871433,-34.9254584310906,-34.9254809760509,-34.9254900007052,-34.9255035543618,-34.9255080967044,-34.9255171380339,-34.925530655005,-34.92555317662,-34.9255802439126,-34.9256118268674,-34.925638890825,-34.9256524211362,-34.9256569501386,-34.9256614724709,-34.9256704837849,-34.925688506413,-34.9257155470252,-34.9257335729883,-34.9257561279538,-34.9257741739273,-34.9257921965553,-34.9258237128091,-34.9258461977384,-34.9258642036912,-34.9258687126833,-34.9258777306675,-34.9258957532955,-34.9259137659184,-34.9259272595441,-34.9259407498347,-34.9259497378034,-34.9259542067748,-34.9259631780682,-34.9259676537097,-34.925967607019,-34.9259675403179,-34.9259719792739,-34.92597643157,-34.9259763782092,-34.9259763348535,-34.9259808038249,-34.9259807738095,-34.9259807404589,-34.9259806704228,-34.9259806237321,-34.9259805770413,-34.9259715190365,-34.9259624610318,-34.9259669333382,-34.9259713656241,-34.9259847858786,-34.9259937271565,-34.9259982061331,-34.9259981794526,-34.9259891514633,-34.9259846291311,-34.9259891247829,-34.9259936070946,-34.9260025883931,-34.9260070773749,-34.9260070473594,-34.9260024850065,-34.9260023749497,-34.9260113429081,-34.9260247998481,-34.9260427424349,-34.9260651639983,-34.9260741386267,-34.9260831132552,-34.9261145294573,-34.9261279964026,-34.9261459656698,-34.926154923623,-34.9261683572177,-34.9261772751502,-34.9261906954047,-34.9261996333476,-34.9262041123242,-34.9262086113111,-34.9262130969578,-34.9262220849264,-34.9262265739082,-34.9262265505628,-34.9262220215604,-34.9262309728435,-34.9262353784489,-34.9262442963814,-34.9262487386724,-34.9262576866205,-34.9262711302203,-34.9262801015137,-34.9262935751291,-34.9263160600585,-34.9263295536842,-34.926352068629,-34.9263745835739,-34.9264015941706,-34.9264240991103,-34.9264466073851,-34.9264736246519,-34.926496152937,-34.9265231868791,-34.9265456984889,-34.9265636911015,-34.9265771647168,-34.9265861360102,-34.9265950872933,-34.9265995395895,-34.9266039918856,-34.9266039385248,-34.9266038851639,-34.9266082941044,-34.9266127330603,-34.9266171686812,-34.9266216043021,-34.9266260465931,-34.9266304988893,-34.9266349511854,-34.9266393868064,-34.9266438224273,-34.9266482547131,-34.926652690334,-34.9266616182717,-34.9266660238771,-34.9266704761733,-34.9266704394877,-34.9266703394361,-34.9266702327144,-34.926674591629,-34.9266789638839,-34.9266833628192,-34.9266923174374,-34.9267282526367,-34.9267597355399,-34.926777754833,-34.9267913051545,-34.9268048621462,-34.9268183857874,-34.9268318994234,-34.9268408773869,-34.9268543876878,-34.9268589100201,-34.9268634390225,-34.9268634890483,-34.9268680247208,-34.9268680914218,-34.9268636457958,-34.9268636758113,-34.926868224824,-34.9268638358938,-34.9268639259403,-34.9268639592908,-34.9268730373059,-34.9268821086509,-34.9269002079852,-34.9269273219686,-34.9269634305907,-34.9269950068754,-34.9270130361736,-34.9270355577885,-34.9271368210238,-34.9272079405838,-34.9272135991942,-34.9273674529286,-34.9275536284881,-34.9277109262897,-34.9277636272829,-34.9278200709864,-34.9278733752658,-34.9278710156256,-34.9278185159145,-34.9277131545976,-34.9276611776128,-34.9276621425243,-34.9277836707219,-34.9277650621308,-34.9277853984778,-34.9278764815459,-34.9278708249977,-34.9278697802796,-34.9278887907153,-34.9279278965257,-34.9280628579464,-34.928172911275,-34.9282770671079,-34.9283910092917,-34.928475953539,-34.9283771490985,-34.9284153709378,-34.9285191891424,-34.9286538694639,-34.9287847810639,-34.9289045805371,-34.929218012366,-34.9292943354093,-34.9294332659409,-34.9295629723344,-34.9296546174725,-34.9297883334107,-34.9298392266736,-34.9299486372731,-34.9300592127169,-34.9302162298403,-34.9302595858048,-34.9302749882561,-34.9303854028519,-34.9305610290072,-34.930632539189,-34.9307470036689,-34.9309146505613,-34.9309635321751,-34.9310217549468,-34.9310843216716,-34.9311472671669,-34.9312759417263,-34.9313192551361,-34.9313705682695,-34.9313836373924,-34.9313868892284,-34.9313637756354,-34.9313605968133,-34.9313935247076,-34.9314497368454,-34.9314913898347,-34.931487702402,-34.9315023994822,-34.931588950307,-34.9319882240543,-34.9320736961406,-34.9324247956433,-34.9325415323568,-34.9326232141976,-34.932628058651,-34.9326460979543,-34.9326596282656,-34.9326821832311,-34.9326866955582,-34.9326912212255,-34.9327092805392,-34.9327183185336,-34.9327273465229,-34.9327408968445,-34.932749934839,-34.9327544538362,-34.9327680008227,-34.9327725331602,-34.9327770621626,-34.932790605814,-34.9328086717978,-34.9328177131273,-34.9328267477867,-34.9328357824461,-34.9328493194275,-34.9328583440817,-34.932871874393,-34.9328854113743,-34.9328989450207,-34.9329079663399,-34.9329260023081,-34.9329350202923,-34.9329485439334,-34.9329710755536,-34.9329845958597,-34.9329936138438,-34.9330026284929,-34.9330206611261,-34.9330296757752,-34.9330431960813,-34.9330612153743,-34.9330747356804,-34.9330837369893,-34.9330927216229,-34.9330972039345,-34.9331016829111,-34.9331061485475,-34.9331106341942,-34.933119632168,-34.9331331391339,-34.9331376181105,-34.9331466127493,-34.9331556207282,-34.9331601363904,-34.9331691643797,-34.9331782057092,-34.9331962816981,-34.9332098320197,-34.9332188700142,-34.9332324036605,-34.9332414216446,-34.9332504362937,-34.9332639599349,-34.9332729745839,-34.933286491555,-34.933295502869,-34.9333090265102,-34.9333180478294,-34.9333270591434,-34.9333360704574,-34.9333540964205,-34.9333766313757,-34.933390161687,-34.9334081943202,-34.9334307159352,-34.933462238859,-34.9334892694661,-34.9335027831021,-34.9335298103741,-34.933538815018,-34.933547822997,-34.9335658389549,-34.9335838549129,-34.9335883572348,-34.933597375219,-34.9336064032083,-34.9336154211924,-34.9336334504906,-34.9336424651397,-34.9336514764537,-34.9336604844327,-34.9336739947336,-34.9336829993775,-34.9336920006864,-34.9337144922859,-34.9337279759064,-34.9337369672102,-34.9337549698279,-34.9337774781026,-34.9337909850685,-34.9338044953695,-34.9338270069793,-34.9338315026312,-34.9338495085839,-34.9338675011965,-34.9338900128063,-34.9339035131021,-34.9339215123848,-34.9339350126806,-34.9339395016623,-34.9339619965969,-34.9339799858744,-34.933997981822,-34.9340069764608,-34.9340339837225,-34.9340564953323,-34.9340745079552,-34.9340925239132,-34.9341150555333,-34.9341285791745,-34.9341511174647,-34.9341826637339,-34.9341916717129,-34.9342096810008,-34.9342321859404,-34.9342456895713,-34.9342546908802,-34.934277205825,-34.9342907094559,-34.9342997140998,-34.9343222357148,-34.9343267380367,-34.9343357426807,-34.9343492463115,-34.9343582476203,-34.9343672589344,-34.9343988085387,-34.9344078231878,-34.9344168378368,-34.9344438951243,-34.9344709524118,-34.9344844660477,-34.9344934640216,-34.9345024553253,-34.9345114366238,-34.9345204079172,-34.934529402556,-34.9345338948728,-34.9345518908205,-34.934574385755,-34.9345878927209,-34.9346058920036,-34.9346193956344,-34.9346283969433,-34.9346373949171,-34.934650901883,-34.9346643921736,-34.9346778891343,-34.9346913760899,-34.9347003573884,-34.9347093320169,-34.9347273146243,-34.9347408049149,-34.9347588041976,-34.9347723044934,-34.9347858014541,-34.9347993017499,-34.9348172976976,-34.9348262856662,-34.9348397759568,-34.9348532529072,-34.9348757278315,-34.9348802234833,-34.9348892181221,-34.9349072174048,-34.9349207076954,-34.934934197986,-34.9349521872635,-34.9349701865462,-34.934983683507,-34.9350016794546,-34.9350196820724,-34.9350376880251,-34.9350511849859,-34.9350646819466,-34.9350781789073,-34.9351051728288,-34.9351231754465,-34.9351321734203,-34.9351411680591,-34.9351591306562,-34.9351770932533,-34.9351950558504,-34.9352175140994,-34.935226502068,-34.9352399956937,-34.9352624839582,-34.9352759775838,-34.9352894712095,-34.9352984625132,-34.9353119494688,-34.9353254530996,-34.9353344610786,-34.9353434790628,-34.9353570293843,-34.9353660740489,-34.9353751087083,-34.9353841333625,-34.9353931446766,-34.9354021493205,-34.9354156529513,-34.9354246509251,-34.935433652234,-34.9354516615219,-34.9354651584826,-34.9354741597915,-34.9354831577653,-34.935496654726,-34.9355101450166,-34.9355191363203,-34.9355326232759,-34.9355596071922,-34.9355731008179,-34.9355820954567,-34.9356001014095,-34.9356226063492,-34.935631607658,-34.9356451146239,-34.9356586215898,-34.9356811398697,-34.9356856421917,-34.9356946501707,-34.9357216741076,-34.9357487047146,-34.9357622183506,-34.9357757319866,-34.9358027692638,-34.9358207952269,-34.9358388245251,-34.9358613661504,-34.9358839077757,-34.9359019337388,-34.9359199630369,-34.9359379923351,-34.9359650396174,-34.9359965925568,-34.9360146218549,-34.9360416591321,-34.9360686997443,-34.9360822200504,-34.9361002426784,-34.9361137596495,-34.9361407969266,-34.9361858568318,-34.936212894109,-34.9362309200721,-34.9362399347212,-34.9362624796816,-34.9362760033227,-34.9362895269638,-34.936303050605,-34.9363120685891,-34.9363210832382,-34.9363391058663,-34.9363526161672,-34.9363706354602,-34.9363931604103,-34.9364156987005,-34.9364472549749,-34.9364666713545,-34.9365093352585,-34.9365102455732,-34.9366094009716,-34.936629708979,-34.9366566791429,-34.9367446111562,-34.9367829370998,-34.9368437665503,-34.9370284503989,-34.937129820203,-34.9371793506125,-34.9372828213421,-34.9373367178653,-34.937364826963,-34.9374708644266,-34.9375144439215,-34.9375346529582,-34.9375946418284,-34.9376205630453,-34.9377128103813,-34.9377713875816,-34.9378163945848,-34.9378389359172,-34.9378615529108,-34.9378752744245,-34.9379093795884,-34.9379234982398,-34.9379033604431,-34.9378410351575,-34.9378392745198,-34.9379253323703,-34.9380676962317,-34.9381065136363,-34.9380982229166,-34.9380335504646,-34.9379546652977,-34.9377358954357,-34.93743155925,-34.9371475310229,-34.9367489786163,-34.9365058120202,-34.9364178989615,-34.9364202151543,-34.9363985184897,-34.9362587332525,-34.9359313864737,-34.9358729303324,-34.9358633633426,-34.9359142000511,-34.935929094644,-34.9359274540545,-34.9360948032567,-34.9361301786626,-34.9361124799974,-34.9361990496733,-34.9361385260303,-34.9361140474175,-34.9360869738312,-34.9359054083966,-34.935829769315,-34.9358168398402,-34.9356597699136,-34.935559101976,-34.9354753487388,-34.9354420060973,-34.9353418711673,-34.9353056559977,-34.9353347626615,-34.935253621617,-34.9352062198938,-34.9351044782966,-34.9350725502204,-34.9351763535308,-34.9351767017768,-34.9351681712751,-34.9351319047884,-34.9350378173679,-34.9349459209332,-34.9348627130261,-34.9348855167952,-34.9349089339722,-34.9350050656074,-34.9349730008453,-34.9350126284891,-34.9349698548227,-34.9348629919166,-34.9347937579387,-34.9347450902634,-34.934690869166,-34.9347238976902,-34.9347747003535,-34.9347932677742,-34.9347672159765,-34.9348641013637,-34.9348358124908,-34.934726645324,-34.934697471454,-34.9346705412939,-34.9345480972399,-34.934460993919,-34.9343634030999,-34.9342383749045,-34.934126537543,-34.9339856622412,-34.9338960833693,-34.9337058016001,-34.9335784850527,-34.9335766890088,-34.933610834677,-34.9335884239179,-34.9334996890313,-34.9334539424487,-34.9333615750006,-34.933141012527,-34.9330340729653,-34.9329615770024,-34.9324308433233,-34.9323437267721,-34.9322590780134,-34.9322179025378,-34.9322228622288,-34.9322634308281,-34.9324960734081,-34.9326875404097,-34.933217593782,-34.9333271463273,-34.933369502096,-34.9333538366468,-34.9333270382755,-34.9333184334055,-34.9332661003101,-34.9332444543252,-34.9327447742429,-34.932734006608,-34.9326671986736,-34.9326577064208,-34.9325786960185,-34.9325461119934,-34.9325367167865,-34.9324726189266,-34.9324748910507,-34.9325793383248,-34.9326572297017,-34.9328050039901,-34.932891731038,-34.9328969319575,-34.9329429445543,-34.9328468047575,-34.9328488813137,-34.9327847345058,-34.9326113542348,-34.9325479137526,-34.9324645216482,-34.932457722179,-34.9325619988289,-34.9326832408114,-34.9326682301561,-34.9326383792759,-34.9325628329295,-34.9325509948807,-34.932591343807,-34.9324567776258,-34.9324360304738,-34.9322464699441,-34.9321478079314,-34.9321608402543,-34.932096961405,-34.9320733583317,-34.932066379068,-34.9320053074191,-34.9315645742191,-34.9314316407492,-34.9312947790532,-34.9312449606143,-34.9311839377091,-34.9311117103397,-34.9310542013456,-34.9310617162045,-34.9310694740891,-34.9310912035495,-34.9310666668042,-34.9310246790586,-34.9309319723314,-34.9308688480388,-34.9307730661892,-34.9307261042757,-34.9306262979049,-34.9305787271212,-34.9304629777055,-34.9305454047203,-34.930563660537,-34.9305296074203,-34.9302145289032,-34.9301174816763,-34.9300625115184,-34.930139493468,-34.9300525716125,-34.929915905037,-34.9298526829265,-34.9298103286611,-34.929861586397,-34.929881257208,-34.9297977261744,-34.9298338222962,-34.9297413095838,-34.9296041812865,-34.92956315094,-34.9294500866318,-34.9294237256051,-34.9293307024531,-34.9293457850089,-34.9293462468192,-34.9293203962177,-34.929251825697,-34.9292349806671,-34.9291837893832,-34.9291245395113,-34.9290841166133,-34.9290338868229,-34.9289525067817,-34.928852590821,-34.9286918213323,-34.9286326670296,-34.9284887665476,-34.9283035936608,-34.9282422069537,-34.9280854018567,-34.9279061236659,-34.9278870552328,-34.9278855250455,-34.9278516598645,-34.9278362341243,-34.927851538036,-34.9278939854188,-34.9278728920755,-34.927825587974,-34.9277921258021,-34.9277263944584,-34.9276757402058,-34.9276533310535,-34.9276106824351,-34.9275496491611,-34.9274974429563,-34.9274628675428,-34.9273663820089,-34.9272386601728,-34.9271663830785,-34.9270988846084,-34.9270493430529,-34.9269443566974,-34.9269285924382,-34.9268772933494,-34.926740645401,-34.9266263947483,-34.9266068650965,-34.926628111243,-34.9266273013665,-34.9266034715952,-34.9265928299517,-34.9265830970597,-34.9265711693619,-34.9265237999368,-34.9264778692516,-34.9264484174714,-34.9264509086378,-34.9265442789698,-34.9265515278011,-34.9263910060345,-34.9263859859195,-34.9265242614984,-34.9265323561687,-34.9265039057633,-34.9263935266766,-34.9263801885073,-34.9263920704703,-34.9264043986597,-34.9264081534796,-34.9263970287299,-34.9264587854844,-34.9264777676177,-34.9264828511189,-34.9264609311637,-34.9264613660973,-34.9263708987298,-34.9263025467244,-34.9262531578484,-34.9262651650008,-34.9263345518573,-34.9263723507554,-34.9263562965436,-34.9262870429228,-34.9262270883911,-34.9261906538616,-34.9261950346393,-34.9262146337487,-34.9262339172846,-34.9262305399027,-34.9262212140129,-34.9262073724669,-34.9261931128641,-34.9261487353456,-34.9261478847798,-34.9261140603477,-34.9261117704096,-34.926086212192,-34.9260470286895,-34.9260052396542,-34.9260074385402,-34.9260000001257,-34.9260024038851,-34.9260330681097,-34.9260394427584,-34.9260444463344,-34.9260459596503,-34.9260399150333,-34.9260455927458,-34.926045774811,-34.9260417810918,-34.9260158104977,-34.9260201797043,-34.9259893876202,-34.9259631894618,-34.9259385273499,-34.9259143004481,-34.925910514349,-34.9259075958368,-34.925891475805,-34.9258804333089,-34.9258712710079,-34.9258691176708,-34.9258386298593,-34.9258228227705,-34.9257954640615,-34.9257805303019,-34.9257533195448,-34.92574299401,-34.9257316358173,-34.925730384231,-34.9257382664468,-34.9257349582525,-34.9257296674118,-34.9257141447695,-34.9257143324876,-34.9256636000854,-34.9256536469665,-34.925636713385,-34.9256131235049,-34.9256141047378,-34.9256107737414,-34.9255897610418,-34.9255639576945,-34.9255623502017,-34.9255326550878,-34.9255028894686,-34.9254983578368,-34.9255156609603,-34.9255219898692,-34.925521645276,-34.9255026889982,-34.9254856529471,-34.9254803391349,-34.9254903115725,-34.9255034783641,-34.9255144376192,-34.9256432140161,-34.9256525700469,-34.9256658092215,-34.9256814089507,-34.9256905626617,-34.9256938110184,-34.9257067792704,-34.9256831639295,-34.9256439534548,-34.9256383177478,-34.9256148352841,-34.9256098081846,-34.9256055738673,-34.9255117525649,-34.9255000285816,-34.9254896603944,-34.9254391833953,-34.92542382864,-34.9254238773234,-34.9254376383131,-34.9254437178574,-34.9254262337897,-34.9254094776575,-34.9253752050034,-34.925366519762,-34.9253528399077,-34.9253411919718,-34.9253294466786,-34.925331616514,-34.9253463731732,-34.9254199455381,-34.9254485686359,-34.9254634794182,-34.9254519936968,-34.9254521640352,-34.9254338221389,-34.9254466279932,-34.9254401205902,-34.9254371092459,-34.9254206289006,-34.9253764806332,-34.9252639816858,-34.9252415354207,-34.9252203281093,-34.9252207578876,-34.9252553629998,-34.925291797269,-34.9253225980542,-34.9253178710531,-34.9253328465556,-34.9252441542879,-34.9252108286455,-34.9252089670163,-34.9251931985326,-34.9251950520539,-34.9251734960319,-34.9251316390445,-34.9251318903206,-34.9251133537055,-34.9250996089734,-34.9250731638031,-34.9250400326886,-34.9250382034682,-34.9249526763673,-34.9248195764066,-34.9247330281549,-34.9248280544094,-34.9249223165583,-34.9249497087914,-34.9250849453717,-34.9251575872399,-34.9251662811849,-34.9251398279122,-34.9251371807308,-34.9250842899019,-34.9249509392876,-34.9249934852,-34.9249612037887,-34.9249205358175,-34.924825326618,-34.9247796406406,-34.9247836235198,-34.9248115501004,-34.9248097773949,-34.9247741096324,-34.9247674586121,-34.9247771721655,-34.9247559637595,-34.924806457896,-34.9247124434787,-34.9246174205382,-34.9245599814115,-34.924565882428,-34.924565914843,-34.9245532306036,-34.9245533116394,-34.9245435657515,-34.924543614372,-34.9245291738077,-34.9245341601947,-34.924528437442,-34.9245265514637,-34.9245256530378,-34.9245325578087,-34.9245375036773,-34.9245317890156,-34.9245250057773,-34.9245093021545,-34.9244984471737,-34.9244866208431,-34.9244739771047,-34.9244651458421,-34.9244563469879,-34.924438102002,-34.9244402229327,-34.9244296352994,-34.9244308010716,-34.9244240745258,-34.9244064930115,-34.9243879887486,-34.9243704072328,-34.9243911701073,-34.9243807201376,-34.9243650975185,-34.9243925472685,-34.9243387503278,-34.9243375117825,-34.9243639407679,-34.9243416230919,-34.9243161735642,-34.924285729588,-34.9242384891485,-34.9241695468735,-34.9241417901216,-34.9241353625341,-34.9240762566543,-34.9240522288909,-34.924112746043,-34.9240978112215,-34.9240965238839,-34.9240905742551,-34.9240934315814,-34.9240833939848,-34.9240686779111,-34.9240589563287,-34.9240402738329,-34.9240226599215,-34.9240108740975,-34.9239922564258,-34.9239793858085,-34.9238146435607,-34.9237696941594,-34.9237172795469,-34.9237010014058,-34.9236829687726,-34.9236739541235,-34.9236649461445,-34.9236469268515,-34.9236379188725,-34.9236289108936,-34.9236153839174,-34.923560284244,-34.9234631918882,-34.9232335366341,-34.9232175914477,-34.9231615467027,-34.9230848270174,-34.9230827274419,-34.9228734015767,-34.9227578900641,-34.9226864758291,-34.922703095289,-34.9226589546419,-34.9225436445209,-34.9224983182818,-34.9218146355318,-34.9217147421728,-34.921670362961,-34.9216229288917,-34.9215749238272,-34.9215077567147,-34.9215081810702,-34.9214896118919,-34.9214952970175,-34.9214985303484,-34.9214636427015,-34.9214337032889,-34.9213987933154,-34.9213938897157,-34.9213610982045,-34.9212958147238,-34.9212942759667,-34.9212847248001,-34.9212285703116,-34.9212123412355,-34.9212017747987,-34.921180441045,-34.9211564098738,-34.9211133629523,-34.9212067790514,-34.921213778214,-34.9212134292401,-34.9212235229372,-34.9212416298586,-34.9212691070269,-34.9212673605875,-34.9212439908413,-34.9213086919061,-34.9213082610293,-34.9213186339233,-34.9213284389109,-34.9213116142846,-34.9213435912627,-34.9213519313594,-34.921361735783,-34.921311759565,-34.9212999706541,-34.9213332988667,-34.9213025769099,-34.9213161244522,-34.921312670226,-34.9212375601234,-34.9212252284851,-34.921204178857,-34.9211858786858,-34.9211855834702,-34.9211991953288,-34.9211221650945,-34.9211084367548,-34.9210956637277,-34.9210966007224,-34.9210810185538,-34.9210907535479,-34.921069691445,-34.9209819505241,-34.9209257733054,-34.9207616328705,-34.9206055400251,-34.9205137612913,-34.920447284807,-34.9204477529474,-34.9204103458966,-34.9204038943367,-34.920367749029,-34.9203271414199,-34.9203181434461,-34.9203046564905,-34.9202686612602,-34.9202505752661,-34.9202144833193,-34.9201874360369,-34.9201514107911,-34.9201198945374,-34.9201019085949,-34.9200658700089,-34.9200523963935,-34.9200117487638,-34.9199710844589,-34.919912530928,-34.9198855903674,-34.9198541408147,-34.9198541775003,-34.9198496985237,-34.9198452528977,-34.9198452929183,-34.9198318793339,-34.9197959374644,-34.9197599522393,-34.9197238769677,-34.9196652333903,-34.919629171459,-34.9196111321556,-34.9196021141715,-34.9195931228678,-34.9195615832687,-34.9195435473004,-34.9195301003655,-34.9195677559779,-34.9196069199833,-34.9195451166847,-34.919464634826,-34.9194291096575,-34.9193676554611,-34.9193189381304,-34.9192514366515,-34.9192154714366,-34.9192155214624,-34.9191841953067,-34.9191572981018,-34.9191349332343,-34.9191215029746,-34.9190856044609,-34.9190541615783,-34.9190361689657,-34.9190452436458,-34.9190678486371,-34.9190679320134,-34.9190769900182,-34.9190905503449,-34.9190951160329,-34.9190817091186,-34.9190682555136,-34.9190547252023,-34.919045630512,-34.9190276012138,-34.9190276645798,-34.9190367192495,-34.9190547885683,-34.9190413416334,-34.9189784658734,-34.9189962043902,-34.9189921929528,-34.9189968253419,-34.9190015611176,-34.9189741272333,-34.9190052884348,-34.9189418819605,-34.9188590127797,-34.9188174555816,-34.918855277959,-34.9188326035919,-34.9187028592209,-34.9186099790841,-34.9185473552884,-34.9183729618873,-34.9182827511242,-34.91828030622,-34.9183750139543,-34.9186202767445,-34.918567390538,-34.9185180217439,-34.918441695714,-34.9184270563697,-34.9181901292284,-34.9178519080232,-34.9177573427757,-34.9176671862797,-34.9175799505216,-34.9174246275274,-34.917374028424,-34.9172642740028,-34.917036409882,-34.9167653311699,-34.9166103891705,-34.9165015108537,-34.9164720265719,-34.9164089240283,-34.9163728454216,-34.9163366934438,-34.916287031165,-34.9162373622162,-34.9161290330147,-34.916083883063,-34.9158938396027,-34.9149275700493,-34.9148165933465,-34.9146869913436,-34.9146863530817,-34.9144616009076,-34.9143200367357,-34.9138210460601,-34.9137096619498,-34.913669532806,-34.9132591029183,-34.9129659517327,-34.9126070099506,-34.912508185651,-34.9121989881819,-34.9120690443231,-34.9116892512746,-34.9116062657983,-34.9115585864656,-34.9115063919326,-34.9114625853717,-34.9114527080615,-34.9114246100568,-34.9113852985392,-34.9113545273466,-34.9113879728906,-34.9114329433537,-34.9117564170517,-34.9124968720334,-34.9126266505718,-34.9127490336167,-34.9135105269924,-34.9135663441432,-34.9136921330929,-34.9139148575009,-34.9142352330002,-34.9143614547627,-34.9144065313432,-34.9149647065164,-34.9150311360174,-34.915211661241,-34.9153278241591,-34.9159419496935,-34.9168564400642,-34.9173004958867]}]],[[{&#34;lng&#34;:[-56.122563106226,-56.1225028351426,-56.1224934169521,-56.1225311297349,-56.12250767764,-56.1226135589124,-56.1226373912033,-56.1227233221868,-56.1227899165312,-56.1227991212783,-56.122620982741,-56.122563106226,-56.122563106226],&#34;lat&#34;:[-34.9041560649154,-34.9041291610404,-34.904174250961,-34.9042057138539,-34.9042463298006,-34.9043136912073,-34.904385748369,-34.9044170995376,-34.9043944128375,-34.9043853781781,-34.904182973793,-34.9041560649154,-34.9041560649154]}],[{&#34;lng&#34;:[-56.1227976080722,-56.1227918183461,-56.1227237946651,-56.1227097619745,-56.1226936759671,-56.1226373475402,-56.1226092910802,-56.1225937838396,-56.1225831712907,-56.1225787928143,-56.1225885270311,-56.1226137911044,-56.1226283743657,-56.1226451592254,-56.1226592660537,-56.1227197546027,-56.1227497457699,-56.1227709029345,-56.1227919184521,-56.1227976080722],&#34;lat&#34;:[-34.9047511676663,-34.9047447007008,-34.9047099386171,-34.9047034477993,-34.9046911334997,-34.9046837564835,-34.9046749816319,-34.9046695012066,-34.9046729097843,-34.9046868189528,-34.9047020705938,-34.9047108871178,-34.9047319035662,-34.9047448037851,-34.904744324756,-34.9047828939965,-34.9047891236877,-34.904788695536,-34.9047872362653,-34.9047511676663]}],[{&#34;lng&#34;:[-56.1218108782828,-56.1219133778111,-56.121974936225,-56.1220090404801,-56.1219682861287,-56.1218876912305,-56.1218108782828,-56.1218108782828],&#34;lat&#34;:[-34.9047662195877,-34.9049462624405,-34.9049506296928,-34.9049235090393,-34.9048019146633,-34.9047299875686,-34.9047662195877,-34.9047662195877]}],[{&#34;lng&#34;:[-56.1247370940738,-56.1247420032723,-56.124800860293,-56.1248351513111,-56.1248637327179,-56.1247307841529,-56.1247370940738,-56.1247370940738],&#34;lat&#34;:[-34.9065893248098,-34.9066253683983,-34.9066387536348,-34.906566563071,-34.9065259354516,-34.9065442699071,-34.9065893248098,-34.9065893248098]}],[{&#34;lng&#34;:[-56.1246630759007,-56.1246707798739,-56.1247245542734,-56.1247669094504,-56.1248122728454,-56.1248072102345,-56.124804802326,-56.1246910836784,-56.1246318664719,-56.1246630759007,-56.1246630759007],&#34;lat&#34;:[-34.9067427305917,-34.9067967951408,-34.9068237140236,-34.9068100953334,-34.9067784423425,-34.9066973288435,-34.9066928265216,-34.9066344997743,-34.9067157600156,-34.9067427305917,-34.9067427305917]}],[{&#34;lng&#34;:[-56.1248830293363,-56.1248395002206,-56.1248081640597,-56.124848911741,-56.1248830293363,-56.1248830293363],&#34;lat&#34;:[-34.9066701114735,-34.9066386635884,-34.9066747922208,-34.9066927248025,-34.9066701114735,-34.9066701114735]}],[{&#34;lng&#34;:[-56.1245873101597,-56.1245613234244,-56.1245740699981,-56.124665096943,-56.1247071719755,-56.1247431705409,-56.1246928312463,-56.1246611682502,-56.1245873101597,-56.1245873101597],&#34;lat&#34;:[-34.9068871267272,-34.9068871867581,-34.9069141990224,-34.9069365238692,-34.9069409344772,-34.9068687405783,-34.9068463206824,-34.9068869566394,-34.9068871267272,-34.9068871267272]}],[{&#34;lng&#34;:[-56.1256010025402,-56.1256004633382,-56.1256176948888,-56.1256316572797,-56.1256431792541,-56.1256602331739,-56.1256777792092,-56.125677703684,-56.1256506452155,-56.1256265308726,-56.1256171656455,-56.1256010025402],&#34;lat&#34;:[-34.9073621648949,-34.9074130232803,-34.9074300867455,-34.9074273326499,-34.9074156781007,-34.9074121986031,-34.9074029060611,-34.9073846266297,-34.9073669141658,-34.9073733035164,-34.9073607161936,-34.9073621648949]}],[{&#34;lng&#34;:[-56.1243810904736,-56.1244976906073,-56.1245002852788,-56.1242823528855,-56.1243810904736,-56.1243810904736],&#34;lat&#34;:[-34.9075816699209,-34.9075814014491,-34.9075408321931,-34.9075052788573,-34.9075816699209,-34.9075816699209]}],[{&#34;lng&#34;:[-56.1336581784706,-56.1337426724101,-56.1337504429846,-56.1336532022937,-56.1336581784706],&#34;lat&#34;:[-34.9121192075116,-34.9121280217837,-34.9121009611354,-34.9120651363074,-34.9121192075116]}],[{&#34;lng&#34;:[-56.1323914899973,-56.1323533328633,-56.1323044717549,-56.1321848804562,-56.1321566284924,-56.1321853862627,-56.1322972272513,-56.1323398221829,-56.1323954644754,-56.132440139169,-56.1323806962946,-56.1323914899973],&#34;lat&#34;:[-34.9125328607042,-34.9125180878639,-34.9125365042307,-34.9125851222485,-34.9126130683462,-34.912635450813,-34.9126345435132,-34.9126212002019,-34.9126471864321,-34.9126330049687,-34.9125745789424,-34.9125328607042]}],[{&#34;lng&#34;:[-56.1371859109138,-56.1371952557332,-56.1372713817881,-56.1372894299363,-56.1372298135556,-56.137189865761,-56.1371859109138],&#34;lat&#34;:[-34.9120313997604,-34.9120629260193,-34.9120636066998,-34.9119918143049,-34.9119727061572,-34.911982287,-34.9120313997604]}],[{&#34;lng&#34;:[-56.1330346504511,-56.1330040978891,-56.132954281753,-56.1329705673578,-56.1330936814242,-56.1330961198638,-56.1330444305424,-56.1330467972631,-56.1330346504511],&#34;lat&#34;:[-34.9127174265531,-34.9127084173255,-34.9127400835773,-34.912804824781,-34.9128150857296,-34.9127801315459,-34.9127720861083,-34.9127439551366,-34.9127174265531]}],[{&#34;lng&#34;:[-56.1431803137475,-56.1433359612034,-56.1432053519603,-56.1422092119433,-56.1418087550329,-56.141650660166,-56.1406989726897,-56.1399416521201,-56.139301045076,-56.1390474813103,-56.1388192632755,-56.1384029752517,-56.13768342649,-56.1366205493424,-56.1366172923615,-56.1365678633145,-56.1366841988348,-56.136696038274,-56.1368763045753,-56.1371820689324,-56.1360547942347,-56.1349381350116,-56.133814497264,-56.1325183141849,-56.1334846620851,-56.1347567167614,-56.1356678304588,-56.1365566883615,-56.1365897914404,-56.1364476785924,-56.1362381452151,-56.1343881483329,-56.134241221003,-56.1332823010557,-56.1328465063052,-56.1314666480103,-56.1291462355344,-56.1290654462154,-56.1288219874245,-56.1299472570548,-56.1302696006623,-56.128899391465,-56.1288321926876,-56.1287980987702,-56.1287408922683,-56.1286453666634,-56.1285345858708,-56.1283901313719,-56.1283718619499,-56.1283407258923,-56.1282886205735,-56.1282025435446,-56.1268868038898,-56.1267220525716,-56.1265147181002,-56.1261680826825,-56.1258018502662,-56.1256989680314,-56.125582634754,-56.1255074922442,-56.1256205670521,-56.1255008978243,-56.1254452176365,-56.1253229139968,-56.1252102942266,-56.1250529793886,-56.124329251437,-56.1237334555499,-56.122765351129,-56.1214816005353,-56.1204271157994,-56.1201104401865,-56.1201039451875,-56.1188809805929,-56.1193950390393,-56.1199484145114,-56.120036775345,-56.1200699270964,-56.1200797121428,-56.1196585282608,-56.1194913487087,-56.1185090354379,-56.1180329032177,-56.1174506562714,-56.1171659469445,-56.1166700937153,-56.1168063706635,-56.1173678935885,-56.1192534460162,-56.1187381736103,-56.1182038447099,-56.1176763193182,-56.1171671033692,-56.1168586376189,-56.1173157892896,-56.1172690225982,-56.1172601255726,-56.1168968414711,-56.1178505598461,-56.118860097436,-56.1194745600503,-56.1194906416774,-56.1195108320901,-56.1195306756573,-56.1195457300879,-56.1195659205006,-56.1195888723374,-56.1196011920244,-56.1196227764894,-56.1196347760111,-56.1196518981748,-56.1196731424644,-56.1196957541258,-56.1197084206582,-56.1197430118311,-56.1197769026428,-56.1197998544797,-56.1198224661411,-56.1198416426976,-56.1198488530828,-56.1198574308399,-56.1198721651054,-56.1198851851535,-56.1198985653874,-56.1199187824805,-56.1199379723773,-56.119957162274,-56.1199784065635,-56.119990386075,-56.1200112901891,-56.1200318341175,-56.1200479490951,-56.1200640440623,-56.1200845879907,-56.1201037845575,-56.1201205665458,-56.1201400832777,-56.1201544573574,-56.1201684912618,-56.1201842460536,-56.1201996673401,-56.1202147217707,-56.1202325309553,-56.1202671221282,-56.1202928287191,-56.1203099508828,-56.1203281002429,-56.1203466097887,-56.1203620244051,-56.1203774390215,-56.1203942276798,-56.1204178465273,-56.1204305130598,-56.1204500164515,-56.1204688461625,-56.1204787912914,-56.1204986415287,-56.120527062853,-56.1205517555876,-56.1205640952849,-56.1205740404138,-56.1205894817106,-56.1206001138606,-56.1206158886627,-56.12063198363,-56.1206463910602,-56.1206580437365,-56.1206758529211,-56.1206946893022,-56.1207138658587,-56.1207323553943,-56.1207505114244,-56.1207601097079,-56.1207690343105,-56.1207776120676,-56.1207855028037,-56.1207985428622,-56.120816365387,-56.1208331473753,-56.1208499293635,-56.1208680987339,-56.120886248094,-56.1209009956997,-56.1209157299652,-56.1209325119534,-56.1209489671065,-56.1209667896313,-56.120981537237,-56.1209949308111,-56.1210096784168,-56.1210401674742,-56.1210754323278,-56.1210983841647,-56.1211374242987,-56.1211631108792,-56.1211891376352,-56.1212018041677,-56.1212148108756,-56.1212384497334,-56.1212620685809,-56.1212747684639,-56.1216369152322,-56.122410574228,-56.1228760742983,-56.1230487597811,-56.1232009445652,-56.1231982604579,-56.1231599901613,-56.1231763390917,-56.1231619617378,-56.1230931335419,-56.1230576635258,-56.122955515268,-56.1230060346555,-56.1229371324542,-56.1229227983951,-56.1228354666892,-56.1226874970442,-56.1226510182311,-56.1226577550388,-56.1225617470577,-56.1224942507154,-56.1225108792912,-56.1224808638114,-56.1223155852397,-56.1222027803967,-56.1221929419895,-56.1222111109122,-56.12235978014,-56.122412201734,-56.1224835675902,-56.1225680401547,-56.1226242359535,-56.1226683071474,-56.122767631705,-56.1227336675221,-56.1227280190814,-56.1226971845025,-56.1226685595716,-56.1226704816022,-56.1225885966077,-56.1225430412336,-56.1225283349602,-56.1225937727427,-56.1226057949083,-56.122598859395,-56.12257962808,-56.1225523085171,-56.1225204175437,-56.1225077286319,-56.1225378175456,-56.1225128736531,-56.1224595060593,-56.1223266512828,-56.1222686741613,-56.1221685160591,-56.1221159222684,-56.1220391343608,-56.1219945741175,-56.121987636108,-56.1220043880771,-56.122060084989,-56.1221415288077,-56.1222337788639,-56.1222896118446,-56.1221340983089,-56.1221215718487,-56.122159938302,-56.122291850996,-56.1223656932269,-56.122448053557,-56.122573949516,-56.1226272673579,-56.1226197354311,-56.1226225798582,-56.1227293926043,-56.1228057722827,-56.1228708782852,-56.1231865544208,-56.1232082038625,-56.1232352862197,-56.1232328564437,-56.1232135416722,-56.1230815135819,-56.1230346315276,-56.1229958980388,-56.122982729303,-56.1229773696048,-56.1230033641512,-56.1229983054154,-56.1229637711946,-56.1229448341441,-56.1229201950813,-56.1229098650584,-56.1229037878824,-56.1229156190238,-56.1229359718556,-56.1230645565987,-56.1231180916917,-56.1232033399513,-56.1233272901143,-56.123413531314,-56.1234045902322,-56.1233366031819,-56.123321779068,-56.1233472256893,-56.1233903182485,-56.123394931109,-56.1234393360862,-56.1234729495688,-56.1235117390392,-56.1235599372905,-56.1235887408224,-56.1236189834766,-56.1236768298643,-56.1237137016665,-56.1237922130638,-56.1238242327005,-56.1238419631153,-56.1238725717437,-56.1239614207591,-56.1240740269923,-56.124191732817,-56.1242522640345,-56.1241790887221,-56.1241804154154,-56.1242141698274,-56.1242105177364,-56.1242247565149,-56.1243136156752,-56.1243629744641,-56.1244799709591,-56.1244550085951,-56.1244854376215,-56.1245577749277,-56.1246057560214,-56.1246572649783,-56.1247036668325,-56.1248304162526,-56.1248837164917,-56.1250825540569,-56.1252636824057,-56.1253057032016,-56.125339434519,-56.1253959005045,-56.125405298893,-56.1255397422814,-56.1257208028999,-56.1259344258016,-56.126076326406,-56.1261230078332,-56.1261406137008,-56.1259791221457,-56.1259723090675,-56.1260240543623,-56.1261369222116,-56.1262297273951,-56.1262741662654,-56.1262356061205,-56.1262631681836,-56.1263000647167,-56.1263462957814,-56.1264384793711,-56.1265456833688,-56.1266734002117,-56.1268042811243,-56.1268237864566,-56.127015168856,-56.1271939240907,-56.1272503475591,-56.1273611873206,-56.127398512202,-56.1273096193503,-56.1273247891267,-56.1273543148807,-56.1275562024999,-56.1275557364003,-56.127750101787,-56.1277902816174,-56.1278424376109,-56.1278502259451,-56.1278848791476,-56.1278389007236,-56.127906247595,-56.1279441355851,-56.1279577190227,-56.1279845671428,-56.1280712421475,-56.1280889797272,-56.1280410114935,-56.1280452159864,-56.1280704902472,-56.1281089453258,-56.1282275590485,-56.1283833727971,-56.1284068199787,-56.1284926442405,-56.1285283760016,-56.1285899344155,-56.1286884719005,-56.1288578992785,-56.1289344387519,-56.1291065541829,-56.1290837357481,-56.1292769087057,-56.1293693230328,-56.1293710639306,-56.1295264507342,-56.1295942456978,-56.1295760763274,-56.1297096785629,-56.1298175675373,-56.129858782126,-56.129832315143,-56.1298760043413,-56.1299018976952,-56.1300095131952,-56.1299864479666,-56.1300142356307,-56.1301591370268,-56.1302410992968,-56.1302040468546,-56.1301335171473,-56.1301908400435,-56.1303698323544,-56.1303353612434,-56.1303804511641,-56.130440128608,-56.1304575375862,-56.1304835109814,-56.1304981652056,-56.1304347191515,-56.1304150756875,-56.1304736525638,-56.1305017670632,-56.1305780930931,-56.130697081125,-56.1307494414619,-56.1309432111162,-56.1309664387529,-56.1309708970561,-56.1309878688189,-56.1310374919584,-56.1310785933552,-56.1311487133971,-56.1312678107924,-56.1313999241178,-56.1315337521961,-56.131535383646,-56.1316867749214,-56.1317640184305,-56.1317588790279,-56.1317661096441,-56.1316984385851,-56.1317514444536,-56.1317630614259,-56.1318488989672,-56.1318974829479,-56.1319675683138,-56.1319590108353,-56.1319174783059,-56.1320398172571,-56.1320998756118,-56.1321456432591,-56.1321774579265,-56.1323391946716,-56.1324328696489,-56.1325334581916,-56.1326116218359,-56.1325764903844,-56.1324297613792,-56.1324136163861,-56.1325938193214,-56.132441637504,-56.1326552743486,-56.1326903591094,-56.1326714326819,-56.132743259725,-56.1327560396492,-56.1327215818785,-56.1327662048917,-56.1326296211186,-56.1327412653631,-56.1330498178248,-56.1331114929656,-56.133132036894,-56.1330550638637,-56.1329012612104,-56.1325412488761,-56.1325400580503,-56.1323948858386,-56.1322579212234,-56.1321400955687,-56.1320807369759,-56.1322602820279,-56.1322650334973,-56.1322255242815,-56.1321428194088,-56.1320168478805,-56.1319949778685,-56.131976028071,-56.1318640182659,-56.1318102786891,-56.1315315013671,-56.1315088432029,-56.1313723040559,-56.1313555402441,-56.1310443968017,-56.1308244514408,-56.1307833951732,-56.1310118407395,-56.131008920324,-56.1307632446971,-56.1307773728185,-56.1307200027038,-56.1307195996001,-56.1305720899226,-56.130503908304,-56.1305026263492,-56.1304839935177,-56.130170218967,-56.1301396408584,-56.1304585851113,-56.1304463306019,-56.1302279212351,-56.1302265658273,-56.130206239105,-56.1302012751622,-56.1301775606564,-56.1301757931749,-56.1299675178989,-56.1297153173311,-56.1296864772041,-56.1299468820294,-56.1301704171398,-56.1301702110912,-56.1301092014566,-56.1300767672341,-56.1300581475676,-56.1299188410343,-56.1298834356762,-56.129839698951,-56.1298120585673,-56.1297644272748,-56.1290681543791,-56.1291242633159,-56.1289975446305,-56.1289533084835,-56.1285988856986,-56.128646150074,-56.1286512527056,-56.1282690889473,-56.1282116259788,-56.1281945638461,-56.1280535111016,-56.1278358988734,-56.1277168908312,-56.1276708871059,-56.1276776572641,-56.1277253618666,-56.1278961699567,-56.1281371942591,-56.1282198035295,-56.1283363646577,-56.1284456399448,-56.1285349269826,-56.128643648784,-56.1289170164334,-56.1289958585347,-56.1291204791702,-56.1291513973096,-56.1291760468838,-56.1292207543318,-56.1296711277916,-56.1297081110878,-56.1297895223492,-56.1298603095805,-56.129903952088,-56.1299361887133,-56.1299973869414,-56.1300109286978,-56.1300680411075,-56.1300622552812,-56.1300825279082,-56.1300566149182,-56.1298085443597,-56.1298541116226,-56.1300938113187,-56.1308744960166,-56.1311903041876,-56.1314489695801,-56.1315494941654,-56.1316498735105,-56.1317410106055,-56.131781558788,-56.1318641800399,-56.1320988229148,-56.1322585980937,-56.1324687804697,-56.1327837450304,-56.1343856145015,-56.1344551159156,-56.1319294423904,-56.1319748661531,-56.1320875487674,-56.1322467076918,-56.1324525965939,-56.1326455296455,-56.1328784229985,-56.1330018428628,-56.1330644806804,-56.1330960360532,-56.1331301080521,-56.1331640633392,-56.1331323260002,-56.1331217119972,-56.1331863682073,-56.1332489335529,-56.1333070959815,-56.1334113717084,-56.1334746980411,-56.133325351218,-56.1333870883628,-56.1335079241907,-56.1336525547044,-56.1338340890063,-56.1345442619073,-56.1348923994699,-56.1349428274316,-56.1349883101569,-56.1348610676159,-56.1347771048144,-56.1344884733537,-56.1344224467524,-56.1349216174595,-56.1350493626617,-56.1351061893059,-56.1353376753909,-56.1354758012727,-56.1355099265658,-56.1356738210904,-56.1358817316486,-56.1362348971184,-56.1366039641223,-56.1369255484897,-56.1369256087267,-56.1369465412085,-56.1369582412344,-56.1369735232179,-56.1373254795596,-56.1376833474546,-56.1376887569111,-56.1376506135512,-56.1377222956294,-56.1380481514407,-56.13845260418,-56.1384608284214,-56.1398944751596,-56.1407907566917,-56.1418850605363,-56.1422871284089,-56.1424320431451,-56.1425880936244,-56.1429858187414,-56.143103606154,-56.1431803137475],&#34;lat&#34;:[-34.895996684622,-34.8955522665523,-34.8955168786327,-34.8952408407176,-34.8951372119955,-34.8950970362759,-34.8948424624857,-34.8946369865164,-34.8944672773264,-34.8943919783689,-34.8943512641621,-34.8942891738072,-34.8941891571544,-34.8940365735348,-34.8940454680316,-34.894038834063,-34.8938606503067,-34.8938245658637,-34.8935627299949,-34.8931158070053,-34.8926002177694,-34.8920845918479,-34.8915793416451,-34.8909703729052,-34.8902099692237,-34.8891905659126,-34.8884718105503,-34.8877766659035,-34.8877494367237,-34.8876552949327,-34.8876391425478,-34.8876784468742,-34.887701574025,-34.8877393342207,-34.8877583961347,-34.887815743627,-34.8878887501268,-34.8878767414627,-34.887790407227,-34.8869198746198,-34.8866647842144,-34.8866998766139,-34.8859876045589,-34.885659265885,-34.8851855811432,-34.8843912217658,-34.8835455336621,-34.8823920916932,-34.8822479119128,-34.8821398177675,-34.8818054719731,-34.8818190175768,-34.8817039588522,-34.8816895506644,-34.8816875295728,-34.8817295502803,-34.8817953091242,-34.8818253934615,-34.8818722845557,-34.8819035625803,-34.882278243629,-34.8822982637602,-34.8823147668064,-34.8823556487177,-34.8823936172021,-34.8824362355562,-34.8826548315808,-34.8829531912249,-34.8834507315627,-34.8839134335722,-34.8841743445695,-34.8842371525201,-34.8842441318129,-34.8844150041536,-34.8856262127632,-34.8870189102348,-34.8872555619169,-34.8884189934884,-34.8887885411569,-34.8887849880745,-34.8887808592785,-34.8887335002709,-34.8894782185078,-34.8903899303676,-34.8908344274079,-34.8916085555104,-34.891878667314,-34.8917241718034,-34.8925897665461,-34.8933931658797,-34.8942236475136,-34.895049604314,-34.8958304486821,-34.8963223965589,-34.8970431411249,-34.8970831505658,-34.8971122059351,-34.8982976303648,-34.8984511211098,-34.8989307091345,-34.8992370063644,-34.8992414770033,-34.8992459376371,-34.8992503999384,-34.8992548739125,-34.8992593345463,-34.899272803159,-34.8992772821356,-34.8992907540834,-34.8992997403846,-34.8993087166806,-34.8993221886284,-34.8993356589087,-34.8993401362178,-34.8993580871422,-34.899371530742,-34.8993849993548,-34.8993984696351,-34.899407439261,-34.8994164372348,-34.8994254318736,-34.8994344115046,-34.8994433961382,-34.8994568864288,-34.8994703617117,-34.8994838386621,-34.89949731728,-34.8995107892279,-34.8995152682045,-34.8995287418198,-34.8995377097781,-34.8995511933987,-34.8995601713622,-34.8995691393205,-34.8995826162709,-34.8995915925669,-34.8996005621928,-34.8996050361667,-34.8996095101408,-34.8996184897718,-34.8996274677353,-34.8996319400418,-34.8996409146702,-34.8996588639271,-34.8996768331943,-34.8996858078228,-34.8996947807837,-34.8997082594016,-34.8997172390326,-34.8997262169961,-34.8997351932921,-34.8997441529128,-34.8997486318894,-34.8997530941907,-34.8997620654841,-34.8997710567878,-34.8997755190892,-34.8997889743617,-34.8998114542885,-34.8998204389221,-34.8998294302258,-34.8998474228384,-34.8998564124746,-34.8998698977627,-34.8998788757262,-34.8998923643492,-34.8999013506504,-34.8999103236113,-34.8999192949047,-34.8999282661981,-34.8999372374915,-34.8999462104524,-34.8999552017561,-34.8999641963949,-34.8999731910336,-34.8999821856724,-34.8999956776305,-34.900009157916,-34.900018134212,-34.9000271088404,-34.9000405891259,-34.9000495620868,-34.9000630490424,-34.9000720286734,-34.9000810049694,-34.9000944885899,-34.9001079688754,-34.9001214558309,-34.9001394534461,-34.9001529404016,-34.9001708979962,-34.9001843399285,-34.9001978085413,-34.9002157461255,-34.9002292097357,-34.9002426716784,-34.9002471489874,-34.9002516262965,-34.9002650932417,-34.9002740528624,-34.9002875448206,-34.9005120672792,-34.9011007108578,-34.9015548450664,-34.9019395453012,-34.9021673424748,-34.9021940930763,-34.9022839022619,-34.9023471220441,-34.9023789600836,-34.9024353317202,-34.9024362443468,-34.9025011214187,-34.9025776225389,-34.9026273565214,-34.9027355556557,-34.9027943459754,-34.9028172194385,-34.9028488524191,-34.9029209479339,-34.9029866757461,-34.9030024466316,-34.9030655058195,-34.9030881091433,-34.9030479234185,-34.9030571948666,-34.9030797531672,-34.9030935202931,-34.9030917894322,-34.9031062935214,-34.9031889719696,-34.9032484768823,-34.9032993640321,-34.9033130268057,-34.9033623755895,-34.9034300571613,-34.9034637105147,-34.903482184775,-34.9035062840286,-34.9035518899936,-34.9035561882259,-34.9035717516451,-34.9035792557735,-34.9036029676807,-34.9036331619076,-34.9036581600645,-34.9036827991735,-34.9036606285157,-34.9036649066125,-34.903691156431,-34.9037427899647,-34.9037595687655,-34.9037440942283,-34.9037524832998,-34.9037623478594,-34.903746835532,-34.9037649832246,-34.9037924745149,-34.9038211326978,-34.9038464002134,-34.9038585972619,-34.9038504784705,-34.9038550630143,-34.9038424922226,-34.9038637391555,-34.9038821219693,-34.9039182055786,-34.9039406538224,-34.9039134132136,-34.9039250256061,-34.903903939888,-34.9039431480039,-34.9039878494709,-34.9040162194602,-34.9041124559224,-34.9041852413629,-34.9042744257636,-34.9043716927868,-34.9044971641623,-34.9045095503901,-34.90455113533,-34.90457827041,-34.9045917479416,-34.9045785294578,-34.9045872958044,-34.9045829502441,-34.904587769223,-34.9046014042457,-34.9046765235179,-34.9046881043299,-34.9046866933906,-34.9046772628788,-34.9046735998723,-34.9046780757964,-34.9046914883046,-34.9047060953334,-34.9047140710268,-34.9047410918215,-34.9047473785775,-34.9047479936252,-34.9048014498132,-34.9048577140517,-34.9049424376376,-34.9049843412793,-34.905017354688,-34.9050440345171,-34.9050748160618,-34.9050947215385,-34.9051533336186,-34.9051681490021,-34.9051498813644,-34.9051542033982,-34.9051676592489,-34.9051970232342,-34.9052014147948,-34.9052122791654,-34.9052393415019,-34.9052528204841,-34.9052489738669,-34.9052438952727,-34.9052061161533,-34.9052431857333,-34.9052835697318,-34.9053870897864,-34.9054554251196,-34.9054819309535,-34.9054834990122,-34.9055245419178,-34.9055448945037,-34.9055311707593,-34.9055671126288,-34.9055518349036,-34.9055849284835,-34.9056840095822,-34.9056387745867,-34.9056273700653,-34.9056358377913,-34.9056624863324,-34.9057585355909,-34.9058297656963,-34.9058473907427,-34.9059121889407,-34.9058894806018,-34.9059524729462,-34.9059569276765,-34.9059974789094,-34.9060632201037,-34.9061353690557,-34.9061490507167,-34.9062067482337,-34.9062070839073,-34.9061687510823,-34.9061048402095,-34.9060521625324,-34.9060383654014,-34.9060533462798,-34.906106642232,-34.9060867199236,-34.9060155963968,-34.9059651900525,-34.9059614069493,-34.9060042470797,-34.9061162396265,-34.9062020257165,-34.9062069919179,-34.9061451827759,-34.9061594921794,-34.9061851572281,-34.9062431181744,-34.9062516200998,-34.9062261016767,-34.9061818377124,-34.9059909264856,-34.9059505518099,-34.9059467154591,-34.9061432249184,-34.9061469086239,-34.9062049175245,-34.9062305957086,-34.906216688241,-34.9062088098159,-34.906210645357,-34.9063690017426,-34.9063758324876,-34.9062539158809,-34.9062444921684,-34.9062557928564,-34.9062564147379,-34.9062184572729,-34.9062006576244,-34.9061673636585,-34.9061453289033,-34.9061519522472,-34.9062289725925,-34.9062491325405,-34.9062292674523,-34.9062290673491,-34.9061794084054,-34.9061837706551,-34.9061024153648,-34.9061515957283,-34.9061378953294,-34.9059752431121,-34.9059031859504,-34.9058982267261,-34.9058258994251,-34.9057357562693,-34.9056813098566,-34.9056090392514,-34.9056947134358,-34.9056673593286,-34.9056220359541,-34.9055768709947,-34.9055363701074,-34.9055137334331,-34.9054866311224,-34.9055584881809,-34.9056126261012,-34.9056396016799,-34.9056167265493,-34.905589492504,-34.9055535239541,-34.905526648427,-34.9054904580961,-34.9055396134468,-34.9054585699839,-34.9054449429561,-34.9054988857758,-34.9055889839084,-34.9055844165529,-34.9054717084264,-34.9054177739444,-34.9053727507247,-34.9054041619243,-34.9054266301784,-34.9053498322384,-34.9053495520939,-34.9052637978683,-34.9051449581936,-34.9051350515741,-34.9051044207943,-34.9050636586044,-34.9050640134195,-34.9050881560224,-34.9051056921473,-34.9051849036565,-34.905206289718,-34.9053014921411,-34.9053026527172,-34.9054570477519,-34.9055836572079,-34.9056790154306,-34.9057778689862,-34.905920477924,-34.9059924028201,-34.9060674389751,-34.9061634471099,-34.9062625960487,-34.9062835384206,-34.9063107329934,-34.9063274711483,-34.9064918791019,-34.9066796909089,-34.9067356854039,-34.9067747554411,-34.9068735263798,-34.9068687972742,-34.9068865864485,-34.9069449915696,-34.9071659138381,-34.9072518931799,-34.9073285493801,-34.9075264280979,-34.9077160792392,-34.9078913429605,-34.9079498498006,-34.9081121451672,-34.9082156335388,-34.9082516587846,-34.9082742754486,-34.9083237459618,-34.9083781523539,-34.9084274644521,-34.9084627876692,-34.9084986961881,-34.9088006118938,-34.9089855789527,-34.9091031245739,-34.9091174986537,-34.9091177401826,-34.9091532884879,-34.9091928054841,-34.9092302092871,-34.9094210112364,-34.9094875351427,-34.909555060549,-34.9096762630956,-34.9097499131266,-34.909782759196,-34.9097848527064,-34.9097689693445,-34.9097726686728,-34.9096890452811,-34.9097095505198,-34.9095271616158,-34.9095261857599,-34.9095620613895,-34.9095440889959,-34.9089058465447,-34.9089145517632,-34.9095236087632,-34.9095415856062,-34.9095308297592,-34.9094859364984,-34.9094877758589,-34.9095260181418,-34.909529462345,-34.9095265401263,-34.9094874572161,-34.9094873239006,-34.9087203495548,-34.908728503634,-34.9094871421022,-34.9095247326659,-34.9095134012594,-34.9094812952746,-34.9094811497932,-34.9094699503401,-34.9094697806066,-34.9094767454089,-34.9094682770508,-34.9088064041688,-34.9088103841072,-34.909497434615,-34.9095046167421,-34.9095241521357,-34.9095265064231,-34.9095499975934,-34.9095902544541,-34.9098397472598,-34.9098304949039,-34.9098449788339,-34.9098790178735,-34.9098935761031,-34.9096124272344,-34.9095221573465,-34.9094638639498,-34.9095270648775,-34.9093791652685,-34.9093024356971,-34.9092934110429,-34.9091320544939,-34.9092268333737,-34.9092358880435,-34.9091866409788,-34.9090474325188,-34.9090432036712,-34.9090883803033,-34.9091694887997,-34.9092189543103,-34.9092726386634,-34.9093577075356,-34.9094161059865,-34.9094392062934,-34.9094972266625,-34.9095148709451,-34.9095683511699,-34.9097119335523,-34.9097212427061,-34.909765163938,-34.9097564548464,-34.909753106628,-34.9097715440817,-34.9099609249128,-34.9099624677592,-34.9100043913657,-34.9100702766924,-34.9101332725143,-34.9102593892225,-34.9105521968976,-34.9107007580172,-34.910925956453,-34.9110776300044,-34.9111398403394,-34.9112155123236,-34.9113206263121,-34.9113657774699,-34.9112606034686,-34.9114558330666,-34.9116753195431,-34.9117564741061,-34.9117502964,-34.911757909843,-34.9118482107912,-34.9119726309248,-34.9120766632085,-34.9120542027565,-34.9119863823958,-34.9119016813427,-34.911803935445,-34.9112831406582,-34.9114223189197,-34.9122391885833,-34.9122981301961,-34.9123299676348,-34.9123207600425,-34.9122463725727,-34.912209821024,-34.9121791860228,-34.9121606426369,-34.9121748817794,-34.9122150510755,-34.9122759128315,-34.9122583457838,-34.9121970099661,-34.9121500405387,-34.9121274783085,-34.9121486129749,-34.912190404615,-34.9122256289392,-34.9121743594908,-34.9120622805923,-34.9120009584192,-34.911997245077,-34.9119790877037,-34.9118321148118,-34.9115682252124,-34.9115177641687,-34.9113877844982,-34.9112679567325,-34.9112946354994,-34.9113181742135,-34.9114115297783,-34.9112711655439,-34.9111088708225,-34.9111071085805,-34.9109573932142,-34.9102764437978,-34.9098748338133,-34.9097819613341,-34.9093263680397,-34.9087489836011,-34.9077656247911,-34.9067371593852,-34.9058252588391,-34.9058251275235,-34.9057794950538,-34.9057539891634,-34.9057115788779,-34.9047253318342,-34.9037284360429,-34.9037103967396,-34.9035407856623,-34.9032945809708,-34.9023633255528,-34.901216217094,-34.9012207044082,-34.9016452314956,-34.8992680523756,-34.8995460556926,-34.8984756820633,-34.8980832229954,-34.8976501746613,-34.8965449996943,-34.8962157048686,-34.895996684622]}],[{&#34;lng&#34;:[-56.1255666352227,-56.1255563396374,-56.1255491784382,-56.125530362625,-56.1255166102272,-56.1255040445028,-56.1255537907811,-56.1255786098494,-56.1255853247681,-56.1256052704304,-56.1256298074533,-56.1256439216383,-56.1256648005119,-56.1256686245712,-56.1256866789476,-56.1257075578218,-56.1257273293139,-56.1257451597554,-56.1257556157859,-56.1257699207558,-56.1257746946078,-56.1258155357562,-56.125830924857,-56.1259468713202,-56.1260171675738,-56.1261981142259,-56.1261862747867,-56.1260964751414,-56.1260587089978,-56.1260532728609,-56.1259946959846,-56.1256766653014,-56.1255045965611,-56.1254382756911,-56.125352304687,-56.1252644860633,-56.1251529685509,-56.1249146389716,-56.1249720952699,-56.1249600423873,-56.1247915688345,-56.1247834379745,-56.1250057526279,-56.1250965261088,-56.1247406292303,-56.1246674581608,-56.1246135703695,-56.1246747085667,-56.1246608280748,-56.1246197935789,-56.1245350765549,-56.1244388202464,-56.1244249130741,-56.1244917208619,-56.1244963365757,-56.1245193684538,-56.1246972935477,-56.1247513347514,-56.1247946771042,-56.1249206487376,-56.12496521133,-56.1250520163158,-56.1250693118523,-56.1251063289816,-56.1251573908316,-56.1251739719615,-56.1252060658273,-56.1252526307127,-56.1252830988605,-56.1252897142363,-56.1253049109667,-56.125324790291,-56.1253590908079,-56.1253647397956,-56.1253817946304,-56.1253988162775,-56.1254150208868,-56.1254305826888,-56.1254254813062,-56.125417306525,-56.1254195628892,-56.1254138558285,-56.125401525102,-56.1253931263091,-56.1253864943478,-56.1253751715007,-56.1253599748026,-56.1253362465576,-56.125312700872,-56.1252957124686,-56.1252843564413,-56.1252844477233,-56.1252902460617,-56.1252903041498,-56.1252912871359,-56.1252998933595,-56.1253103659752,-56.1253207888022,-56.1253245298878,-56.1253453589499,-56.1253520406917,-56.1253796095802,-56.125388141122,-56.1253928237082,-56.1253984146018,-56.1254079125334,-56.125413470241,-56.1254182192076,-56.1254257511779,-56.1254343159124,-56.1254361408268,-56.1254615114595,-56.1255041277348,-56.1254566127773,-56.1254804861112,-56.1255369719081,-56.1255260927216,-56.1254897514645,-56.1254594491555,-56.1254252314965,-56.1254149247601,-56.1253874635658,-56.1253741165958,-56.1253530633604,-56.1253406744826,-56.1253083149265,-56.1252902687422,-56.1252828695138,-56.1252877014934,-56.1252945990379,-56.125284796538,-56.1252604062888,-56.1252381791697,-56.1252406204219,-56.1252408896101,-56.1252517593733,-56.1252659794467,-56.1252763824361,-56.1253063115254,-56.1253242049572,-56.1253533732446,-56.1253674822664,-56.1253816892768,-56.1253995892487,-56.1254212997628,-56.1254354479861,-56.1254705981794,-56.1254929780516,-56.1255064307957,-56.1255078870822,-56.1255123343193,-56.1255301689905,-56.1255722936878,-56.1255840289176,-56.1256014783008,-56.1256058406496,-56.1256169195892,-56.1256258793961,-56.1256340653421,-56.1256422532138,-56.1256575381491,-56.125661955098,-56.1256941047565,-56.1257178168136,-56.125717605494,-56.1257324995666,-56.1257468176995,-56.1257559581114,-56.1257857726308,-56.1258026690876,-56.1258038156059,-56.1257998583631,-56.1258177957001,-56.1258442129773,-56.1258440016859,-56.1258473673021,-56.1258629799269,-56.1258783812723,-56.1258817257729,-56.1258948446445,-56.12591891611,-56.1259163483941,-56.1259173575949,-56.1259371648837,-56.1259544524165,-56.1259628849205,-56.1259693308647,-56.1260004782661,-56.1260090629007,-56.1260000304023,-56.126008741794,-56.1260384942016,-56.1260459503687,-56.1260632633173,-56.1260753225751,-56.1260858853513,-56.1261148557726,-56.12611658886,-56.1261407497208,-56.1261532399417,-56.1261560508105,-56.1261646692934,-56.1261645848058,-56.1261549422256,-56.1261548130675,-56.1261677218809,-56.1261772564024,-56.1262390146487,-56.1262437030051,-56.1262730959158,-56.1262810437875,-56.1263068472016,-56.1263181837334,-56.1263279622565,-56.126350864905,-56.1263904237941,-56.1264023198784,-56.1263993329624,-56.1263981049247,-56.1263918441599,-56.126348529554,-56.1263277589047,-56.1263180952012,-56.1263003545085,-56.1262876178572,-56.1262713634475,-56.1262488627025,-56.1262473477529,-56.126237583641,-56.1262345393966,-56.1262346972407,-56.1262201156579,-56.1261975862771,-56.1261651493308,-56.1261410476698,-56.1261217634925,-56.1260894127483,-56.1260748743013,-56.1260637101472,-56.1260609243007,-56.1260432412353,-56.1260223561356,-56.1260113499048,-56.1259904217862,-56.1259644466184,-56.1259415873827,-56.1259286500525,-56.1259158849809,-56.1259002859234,-56.1259005615314,-56.1258809186551,-56.1258674236778,-56.1258487595357,-56.1258395285319,-56.1258282298671,-56.1258147900424,-56.1257995949509,-56.1257965669605,-56.1257987816297,-56.1257905201702,-56.1257779212536,-56.1257168793882,-56.125677685848,-56.1256809619196,-56.1256758203568,-56.1256728934734,-56.125657229876,-56.1256288203745,-56.1256203843651,-56.1255916952148,-56.1255212941929,-56.1255442429389,-56.1255572620612,-56.1255621852366,-56.1255719487069,-56.1255745593094,-56.1255738817525,-56.1255689043778,-56.1255644958166,-56.1255697879287,-56.1255666352227],&#34;lat&#34;:[-34.9074978100055,-34.9074973305118,-34.9075018588634,-34.9075123661394,-34.9075133089584,-34.9074584967993,-34.9072460157343,-34.9072344568668,-34.90722824521,-34.9072283887185,-34.9072434326889,-34.9072560541778,-34.9072577693834,-34.907255449406,-34.9072547967982,-34.9072565119965,-34.9072730866566,-34.9072935598321,-34.9072928525533,-34.9072874779827,-34.9072851648343,-34.9072854586184,-34.907289879437,-34.9072986239468,-34.9072578996109,-34.9070772030877,-34.9070141338947,-34.9069512447945,-34.9069062615955,-34.9068161367825,-34.9067847239154,-34.9065736333839,-34.9065514969676,-34.9065561577046,-34.9065112862299,-34.9065295172988,-34.9066154065941,-34.9067151080127,-34.9068186364049,-34.9068952809325,-34.9069227117459,-34.9069452650439,-34.9069627790764,-34.9071112990052,-34.9070264885996,-34.9070266570198,-34.9070673430027,-34.9071483281021,-34.9071889223709,-34.9071890157524,-34.9071125930059,-34.9071623920218,-34.9071939716416,-34.907234380815,-34.9072839463772,-34.9073199482777,-34.9073555949949,-34.907359977255,-34.9074364950505,-34.9074767658191,-34.9074827881657,-34.9074482008115,-34.9074295454167,-34.9074321593983,-34.9074131229969,-34.9074130839338,-34.9074320948683,-34.9074300825535,-34.9074232593865,-34.9074264369863,-34.9074265463639,-34.9074329494122,-34.907423023823,-34.9074277594565,-34.9074317946789,-34.9074389596455,-34.9074335987881,-34.9073992809371,-34.9073429044869,-34.9073076333208,-34.9072740022141,-34.9072747436399,-34.9072730899088,-34.9072589445311,-34.9072573318103,-34.9072502078553,-34.9072500984869,-34.9072483627217,-34.9072294133455,-34.9072191186207,-34.907215124404,-34.9072065176007,-34.9071971693777,-34.9071916923211,-34.9071885694106,-34.9071831538786,-34.9071808817646,-34.9071833042697,-34.9071888086698,-34.9071952185501,-34.907192136653,-34.9071899875732,-34.907191613965,-34.9071979076352,-34.9072081203237,-34.9072081886761,-34.9072215311108,-34.9072215652865,-34.9072278794607,-34.9072263761026,-34.9072334317027,-34.9072594366552,-34.9072714807637,-34.9074526780088,-34.907530316942,-34.9076676602592,-34.9077082717872,-34.9077314851751,-34.9077226596596,-34.9077247609088,-34.9077113842992,-34.9077033617083,-34.907707960631,-34.9077226765426,-34.9077264998606,-34.9077325269314,-34.9077323970448,-34.9077135638768,-34.9077057736921,-34.9076823484477,-34.9076742309903,-34.9076821023409,-34.9077179371837,-34.9077554578811,-34.9077560343939,-34.9077597072367,-34.9077585775369,-34.907764812679,-34.907763180015,-34.9077682370116,-34.9077678309132,-34.9077771728522,-34.9077772750978,-34.907781716104,-34.9077794082388,-34.9077850542933,-34.9077846912145,-34.9077897804709,-34.9077904933008,-34.9077941999387,-34.9077979280986,-34.9078085288804,-34.9078556499958,-34.9078772953592,-34.9079242389198,-34.9079359748096,-34.9079489910772,-34.9079502875944,-34.907954042649,-34.9079640580007,-34.9080060327641,-34.9080459357745,-34.9080950093308,-34.9081410318358,-34.9081609659316,-34.9082398187622,-34.9082588606001,-34.9083097621742,-34.9083508446607,-34.9083549533275,-34.9083609422594,-34.9083918139974,-34.9084118786419,-34.9084310074998,-34.9084509415953,-34.9084758853233,-34.9084869622125,-34.9085179731952,-34.9085449103318,-34.9085629467452,-34.908575081249,-34.9085890177114,-34.9086079638042,-34.9086456848996,-34.9086585680289,-34.9086849436879,-34.9087160896065,-34.9087912715266,-34.9088032946338,-34.9088335318082,-34.9088335944584,-34.908857731163,-34.908884897219,-34.9088953882419,-34.908944915286,-34.90895296549,-34.9089595532121,-34.9089787038641,-34.9090737711213,-34.9090826326036,-34.9090914244853,-34.9091002581266,-34.9091082317646,-34.9091225553459,-34.9091347446749,-34.9091578635381,-34.909189084976,-34.9092572526784,-34.9092803124292,-34.9092994863784,-34.9093252785083,-34.9093728705768,-34.9093892057548,-34.9093974028927,-34.9094084033254,-34.9093992063946,-34.9093627211379,-34.9093342557318,-34.9092949671848,-34.9092651237709,-34.9091632269096,-34.909106189718,-34.9090871576205,-34.9090545227231,-34.9090151514337,-34.9089974264219,-34.9089485036162,-34.9089363024659,-34.9089267509518,-34.9089037030207,-34.9088888049509,-34.9088683830132,-34.908822168938,-34.9087799470387,-34.9087269492816,-34.9086848219464,-34.9086344738075,-34.9086099887427,-34.9085774011024,-34.9085299745067,-34.908491922092,-34.9084457198077,-34.9083982340923,-34.9083560949125,-34.9083247552164,-34.9083096916042,-34.9082892814567,-34.9082526188679,-34.9082134165737,-34.9081874126695,-34.9081543305958,-34.9081368962718,-34.9081107561359,-34.9080881513019,-34.9080620641427,-34.9080394290321,-34.9079838405034,-34.9079716826412,-34.9079612962173,-34.9079465001198,-34.9079438089009,-34.9078454142695,-34.9077705820924,-34.9077593364434,-34.9077480302352,-34.9077263376048,-34.9077149556958,-34.9077147513001,-34.9077164243307,-34.9077024838473,-34.9075337405733,-34.9075381608042,-34.9075339360296,-34.9075293398243,-34.9075207624639,-34.9075158192933,-34.9075114917007,-34.9075112399649,-34.907506781831,-34.9075020696117,-34.9074978100055]}]],[[{&#34;lng&#34;:[-56.1425880936244,-56.1424320431451,-56.1422871284089,-56.1418850605363,-56.1407907566917,-56.1398944751596,-56.1404585322238,-56.1408902285374,-56.141006168464,-56.142276216073,-56.1428820808948,-56.1435556714723,-56.1436943490076,-56.1449625513071,-56.1458738114865,-56.1459052677093,-56.1460933680508,-56.1470098573744,-56.1475153013782,-56.1486855549078,-56.1498817818327,-56.1503605587502,-56.1507582338414,-56.151917104998,-56.1527634103788,-56.1537871459289,-56.1543619839044,-56.1556890834734,-56.156060002469,-56.1562423345244,-56.1564967163919,-56.1567177940058,-56.1575833736433,-56.1590457208333,-56.1591470086293,-56.1603607644455,-56.1603884420529,-56.1611480104484,-56.161367992232,-56.1625034161325,-56.1634002153014,-56.1635655255561,-56.1640385795222,-56.1642708159591,-56.1643433450309,-56.1644040013129,-56.1645435094378,-56.1646515180262,-56.1646776059909,-56.1647450372139,-56.164752218534,-56.1648556542418,-56.1648649043879,-56.1648724652036,-56.1648979643956,-56.1648992066553,-56.1649238118544,-56.1649245380863,-56.1649241572343,-56.1648296167523,-56.1647012956471,-56.1647979161315,-56.1648513753684,-56.1646856165491,-56.1644314271237,-56.1641278799412,-56.1636811559386,-56.1628887682017,-56.1625358695362,-56.1626613492493,-56.1626099810907,-56.1606275807152,-56.1604710391828,-56.1594603558386,-56.1593828453302,-56.1588257878188,-56.1580039172924,-56.1574508473465,-56.1574512389287,-56.1568847059539,-56.1557032411238,-56.1553938552487,-56.1552167154332,-56.1519394989671,-56.1506968783914,-56.1506465377142,-56.1501859745037,-56.1499513269907,-56.1496403958322,-56.1494681517048,-56.1486642734815,-56.1476609547477,-56.1471670050862,-56.1471066339512,-56.1460313612916,-56.1459662582786,-56.1456077402379,-56.1451564732664,-56.1447669507077,-56.1446242298494,-56.1434955249433,-56.14284970571,-56.1422944385453,-56.1419451992934,-56.1416402921217,-56.1412012150423,-56.1401562767768,-56.1394248559534,-56.138535225161,-56.1382281317471,-56.1379149101143,-56.1375286676823,-56.136712953072,-56.1365897914404,-56.1365566883615,-56.1356678304588,-56.1347567167614,-56.1334846620851,-56.1325183141849,-56.133814497264,-56.1349381350116,-56.1360547942347,-56.1371820689324,-56.1368763045753,-56.136696038274,-56.1366841988348,-56.1365678633145,-56.1366172923615,-56.1366205493424,-56.13768342649,-56.1384029752517,-56.1388192632755,-56.1390474813103,-56.139301045076,-56.1399416521201,-56.1406989726897,-56.141650660166,-56.1418087550329,-56.1422092119433,-56.1432053519603,-56.1433359612034,-56.1431803137475,-56.143103606154,-56.1429858187414,-56.1425880936244],&#34;lat&#34;:[-34.8976501746613,-34.8980832229954,-34.8984756820633,-34.8995460556926,-34.8992680523756,-34.9016452314956,-34.9017894939517,-34.9018968735749,-34.9019100955824,-34.9022172508593,-34.902357255252,-34.9025083794044,-34.9025306475574,-34.9027494090675,-34.9028340631252,-34.9028339847515,-34.9028470398176,-34.9028898318866,-34.9029156151837,-34.9029757895505,-34.9030313798865,-34.903057218212,-34.9030652306776,-34.9030941180542,-34.9031041735288,-34.9031251665881,-34.9031296868359,-34.9031324870301,-34.9031247327281,-34.9031461392435,-34.9031542964056,-34.9031492239951,-34.9031284019638,-34.9031018435017,-34.9031157919246,-34.9030226337092,-34.903018054681,-34.9028853779229,-34.9028307214018,-34.9026339582594,-34.9024468250833,-34.902401321616,-34.9022738858942,-34.9022056707139,-34.9015114126672,-34.900929859412,-34.8998734894961,-34.8988912593473,-34.8983134304901,-34.8976497402279,-34.8975803971984,-34.8968769392174,-34.8967951319065,-34.8967282647211,-34.896502751239,-34.8964325518703,-34.8963105109136,-34.8963069088218,-34.8963068467811,-34.8962914461133,-34.8962766495253,-34.8953898022628,-34.8951033461967,-34.8950080378771,-34.8948634558125,-34.8947040435088,-34.8944797506137,-34.8941504155794,-34.8940211255679,-34.8939351654027,-34.8939127646834,-34.8928005108552,-34.8927211526529,-34.8922047058051,-34.8921703436198,-34.8919701011354,-34.8917659058267,-34.8916314943264,-34.89162768621,-34.8915278500633,-34.8912267483497,-34.8911648583085,-34.8911286069328,-34.8903436276693,-34.8900160449383,-34.8900027736823,-34.8898331691882,-34.8897318717964,-34.8895969653303,-34.8895142590147,-34.8891481596437,-34.888686588259,-34.8884643552159,-34.8884403495022,-34.8880574228051,-34.8880342378664,-34.8878963987117,-34.8877111829895,-34.8875513073248,-34.8875020596085,-34.8870926923976,-34.8869122108725,-34.8867735747989,-34.8866957516836,-34.8866478805295,-34.8866249628442,-34.8865553816599,-34.8865072880985,-34.8864845374289,-34.8864655435442,-34.8867088066524,-34.8870174911144,-34.8876524498447,-34.8877494367237,-34.8877766659035,-34.8884718105503,-34.8891905659126,-34.8902099692237,-34.8909703729052,-34.8915793416451,-34.8920845918479,-34.8926002177694,-34.8931158070053,-34.8935627299949,-34.8938245658637,-34.8938606503067,-34.894038834063,-34.8940454680316,-34.8940365735348,-34.8941891571544,-34.8942891738072,-34.8943512641621,-34.8943919783689,-34.8944672773264,-34.8946369865164,-34.8948424624857,-34.8950970362759,-34.8951372119955,-34.8952408407176,-34.8955168786327,-34.8955522665523,-34.895996684622,-34.8962157048686,-34.8965449996943,-34.8976501746613]}]],[[{&#34;lng&#34;:[-56.1174506562714,-56.1180329032177,-56.1185090354379,-56.1194913487087,-56.1196585282608,-56.1200797121428,-56.1200699270964,-56.120036775345,-56.1199484145114,-56.1193950390393,-56.1188809805929,-56.1187569699708,-56.1187002540543,-56.117491992045,-56.1169395059914,-56.1168065574265,-56.1159132367181,-56.1157210776167,-56.1149116551365,-56.1144279432623,-56.1137390933978,-56.1127363689636,-56.1126545926973,-56.1123842074588,-56.1123696079273,-56.1120669941857,-56.1119972312974,-56.1116816194627,-56.1114327470717,-56.1111530455148,-56.1111772229855,-56.1111859155877,-56.1112143937549,-56.1105117161295,-56.1104955914378,-56.1103878977745,-56.1103164541288,-56.1102068170324,-56.1100728246682,-56.1097252320724,-56.1087044596831,-56.1081400756708,-56.1075174699308,-56.1070076783789,-56.1066770206017,-56.1064869338599,-56.1063293571492,-56.106159836522,-56.1062719018018,-56.1055764962057,-56.1045266110105,-56.1037039567921,-56.1038907630875,-56.1039005971556,-56.1039939922139,-56.1039051160513,-56.1026468079467,-56.102331083244,-56.1014504573559,-56.1006877712226,-56.1005834542834,-56.1005594650518,-56.0996234976929,-56.0990506903927,-56.0989772515326,-56.0981874179747,-56.0973839568695,-56.09705979035,-56.0956910583046,-56.0956337071753,-56.0933832574313,-56.0932892489487,-56.0927226033817,-56.0917391515778,-56.0915471519128,-56.0914556845162,-56.0914399618907,-56.0919336425591,-56.0928537776984,-56.0919882913449,-56.0919364045856,-56.0911888434138,-56.0910105935028,-56.0925718789827,-56.0917185455634,-56.0915948539662,-56.0915485997463,-56.0915261258631,-56.0913038185275,-56.0912705078531,-56.0908519013837,-56.0909438389146,-56.0912412010689,-56.091246215304,-56.091260229198,-56.0912732225656,-56.0912862159333,-56.0912995494764,-56.0913125428441,-56.0913255295417,-56.0913388630848,-56.0913518564525,-56.0913737344022,-56.0913939381551,-56.0914066113577,-56.0914295431842,-56.0914442440992,-56.0914763806728,-56.0914968979207,-56.0915116121759,-56.0915314557431,-56.0915632788217,-56.0915851834519,-56.0915975031388,-56.0916104965064,-56.0916327346419,-56.0916693268468,-56.0916850682984,-56.09170456502,-56.0917237282363,-56.0917459597016,-56.0917681978371,-56.0917818848958,-56.0917952184389,-56.0918150620061,-56.091840021545,-56.0918530149127,-56.0918755932236,-56.0918985117099,-56.0919183686173,-56.0919378653389,-56.0919686812315,-56.0919936474405,-56.0920165659268,-56.0920408451149,-56.0920610288575,-56.0920873824487,-56.0920993619602,-56.0921120218226,-56.0921342466178,-56.092155784392,-56.0921786895381,-56.0922009276736,-56.0922313833804,-56.0922512202774,-56.0922713973499,-56.0922850844087,-56.0922980777764,-56.0923107376387,-56.0923237310064,-56.0923452687806,-56.0923572482921,-56.0923853227708,-56.0924000236858,-56.0924208811092,-56.0924482418865,-56.0924660510712,-56.0924879290208,-56.0925091266197,-56.0925399358421,-56.0925597660691,-56.0925727727769,-56.0925857594745,-56.0925987528422,-56.0926192834303,-56.0926353650574,-56.0926514333442,-56.0926658007538,-56.0926805016688,-56.0927000050606,-56.0927201621227,-56.0927413597215,-56.092762910836,-56.0927827544032,-56.0928012439387,-56.0928337473682,-56.0928474277569,-56.0928614283106,-56.0928774965975,-56.0928935648843,-56.0929185244232,-56.0929400621975,-56.0929588785682,-56.092979762672,-56.0929958576393,-56.0930095580383,-56.0930324965349,-56.0930581631052,-56.0930797142196,-56.0931012653341,-56.0931221360977,-56.0931382177247,-56.0931638709547,-56.093180966438,-56.093201490356,-56.0932186125197,-56.0932418645113,-56.093264429482,-56.0932917902593,-56.0933119740019,-56.0933352393338,-56.0933584979955,-56.0933783549029,-56.0933981984701,-56.0934142934373,-56.0934303750644,-56.0934440687933,-56.0934833824016,-56.0935209884627,-56.093536022883,-56.0935620029483,-56.0935934858515,-56.0936191524217,-56.0936369549362,-56.0936544106052,-56.093665716436,-56.0936866005397,-56.0937044030543,-56.093733164554,-56.0937530214614,-56.093777647495,-56.0937923617502,-56.0938115249665,-56.0938303413372,-56.0938495112236,-56.093865926356,-56.093882007983,-56.0938953548664,-56.0939083615743,-56.0939361092178,-56.0939532113711,-56.093971347391,-56.0939891365653,-56.0940226605211,-56.0940459191829,-56.0940640552028,-56.0940849192963,-56.0941095786804,-56.0941253334722,-56.0941404012431,-56.0941541083121,-56.0941678087111,-56.0941808287592,-56.0941938354671,-56.0942037429302,-56.0942427896771,-56.0943250276284,-56.0945362403949,-56.0945732977867,-56.0946490246192,-56.0947103403052,-56.0947779067333,-56.0948395016684,-56.0949581647797,-56.0951036476632,-56.0951555381981,-56.0950683077374,-56.0951005781164,-56.0953715158657,-56.0954273441435,-56.0955034066734,-56.0954781250883,-56.0954112962801,-56.0954522111948,-56.0955473420025,-56.0955734339568,-56.0956126460311,-56.0956927333324,-56.0957110391225,-56.0957168621899,-56.095724539529,-56.0957902156015,-56.0959839814033,-56.0961053371902,-56.0961715336506,-56.096172276916,-56.0962446309906,-56.0962891620707,-56.0962966539735,-56.0963829736258,-56.0964864507457,-56.0965980885197,-56.0966903615989,-56.096778702912,-56.0968573445842,-56.0969462428872,-56.09705537607,-56.0971193648885,-56.0971754155973,-56.0973145591339,-56.0973622075822,-56.0974241188818,-56.0974446137201,-56.097448545691,-56.0974648302388,-56.0974956003516,-56.0975121075623,-56.0975697714732,-56.0976110394885,-56.0976928705862,-56.0977196159664,-56.0977895582949,-56.0978532687001,-56.0978860605598,-56.0979846401933,-56.0980007950684,-56.0981651070079,-56.0981821859963,-56.0981828808362,-56.0981869748313,-56.0982013622512,-56.0982140421239,-56.0982315311434,-56.0982459185634,-56.0982647482744,-56.0982873265852,-56.0983212040567,-56.0983417479851,-56.0983660605237,-56.0983787403963,-56.0983917471042,-56.0984102366398,-56.0984297533717,-56.098447229051,-56.098461302976,-56.0984825405954,-56.0985027510185,-56.0985198731821,-56.0985400769351,-56.0985698189404,-56.0985906763638,-56.0986077851873,-56.0986217990813,-56.0986395949257,-56.0986659485169,-56.0986789552248,-56.0986916150872,-56.0987053221562,-56.0987214171235,-56.0987317424485,-56.0987495449631,-56.0987704157267,-56.0987905994693,-56.0988258576528,-56.098846074746,-56.0988710743055,-56.0988871692728,-56.0989056721485,-56.0989241750243,-56.0989443921174,-56.0989611674355,-56.0989776092483,-56.0990063840883,-56.0990156421962,-56.0990303697916,-56.0990375801769,-56.0990468382848,-56.0990598716732,-56.0990749727945,-56.099095523393,-56.0991071760693,-56.0991184885701,-56.0991267194816,-56.0991479771114,-56.0991668201626,-56.0991777858178,-56.0991976427252,-56.0992164791063,-56.099235295477,-56.099250369918,-56.0992654243486,-56.0992815059757,-56.0992976009429,-56.0993205394395,-56.0993386754594,-56.0993595662333,-56.0993698648779,-56.0993791563364,-56.0993867068971,-56.0993952913243,-56.0994055766287,-56.0994213447608,-56.0994306028687,-56.0994412350187,-56.0994532145301,-56.0994662345783,-56.0994812756687,-56.0995028267831,-56.0995178745436,-56.0995466360433,-56.0995603497825,-56.0995799065351,-56.099593600264,-56.099611742954,-56.0996449534148,-56.0996668713851,-56.0996956929158,-56.0997330655231,-56.0997440912094,-56.0997530224821,-56.0997582385055,-56.0997586187016,-56.0997566243397,-56.0997501810167,-56.0997375745152,-56.0997376632117,-56.0997615935691,-56.0997790825886,-56.0997955244014,-56.0998150277932,-56.0998383264756,-56.0998472444081,-56.0998592266122,-56.0998740953514,-56.0998875320717,-56.0999024842482,-56.099901938409,-56.0998720530426,-56.0998272153861,-56.0997150411175,-56.0996086349463,-56.0995012512756,-56.0995043736807,-56.0995506384762,-56.0996751805772,-56.0998018223588,-56.0998727704949,-56.0999095004768,-56.0999256171092,-56.0999755245407,-56.100117192514,-56.1002427743356,-56.1003311984162,-56.1003768344474,-56.1004930835686,-56.1005506106366,-56.1006038807884,-56.1006311363321,-56.1006952751523,-56.100677937213,-56.1007268792909,-56.1007781455529,-56.1008463530655,-56.1009226575038,-56.1010274739456,-56.1011106800391,-56.1011564841094,-56.1012356524351,-56.1013151715304,-56.1013663157126,-56.1013556900864,-56.1013845375902,-56.1014697929689,-56.101475392097,-56.1014995092859,-56.1015573871331,-56.1016318252722,-56.1017049304932,-56.1017190839534,-56.101689071153,-56.1016097503538,-56.1015572582908,-56.1015324026982,-56.1015739335246,-56.1016315520844,-56.101836416687,-56.1018282431749,-56.101606376424,-56.1015014839728,-56.1014824104668,-56.1014477744166,-56.1013051845513,-56.1012353947711,-56.1012511470234,-56.1012512751694,-56.1012597528749,-56.1012638149698,-56.1012712788191,-56.1012787426684,-56.1012923496859,-56.1013029084646,-56.101311066005,-56.1013195904013,-56.101332523738,-56.1013475114675,-56.1013625125373,-56.1013781806177,-56.1013941955437,-56.1014016927436,-56.1014095234487,-56.1014187281958,-56.1014282731184,-56.1014378047007,-56.1014463224269,-56.1014544999776,-56.1014718822754,-56.1014800598261,-56.1015080275832,-56.1015288249756,-56.1015472411399,-56.1015656639744,-56.1015803248687,-56.1015953392787,-56.1016076056047,-56.1016202254465,-56.1016352398564,-56.1016499007508,-56.1016645616451,-56.1016778551676,-56.101688767462,-56.1016983123846,-56.1017201503136,-56.1017399405199,-56.1017703095153,-56.1018003249951,-56.1018139720332,-56.1018272788959,-56.1018395585622,-56.101851498053,-56.1018675263192,-56.1018835679256,-56.101893793199,-56.1019077804126,-56.1019221144717,-56.1019367887062,-56.101961361379,-56.10197331421,-56.1020013219877,-56.1020187443062,-56.1020306971372,-56.1020467387436,-56.1020846449595,-56.1021263397959,-56.1021417143917,-56.1021642660221,-56.1021929674909,-56.1022121040267,-56.1022159586462,-56.1022165485406,-56.1025126666976,-56.1028788542764,-56.1029752081264,-56.1030391286404,-56.103113195655,-56.1031360147374,-56.1031459077827,-56.1031531100328,-56.10317596712,-56.1032016163813,-56.1032229823096,-56.1032512843448,-56.1032641343091,-56.1032924109978,-56.1033180222115,-56.1033363805173,-56.1033618776858,-56.1033775958473,-56.1034398729725,-56.1034722682727,-56.1035076584795,-56.1035515646308,-56.1036124393293,-56.1036464524313,-56.1036833463969,-56.10368898147,-56.1037101699926,-56.103978231939,-56.1040786466208,-56.1040802274658,-56.1040959088864,-56.1041184605169,-56.1041375970527,-56.1041642774792,-56.1041779378575,-56.1041980949197,-56.1042196060135,-56.1042421443038,-56.1042568318785,-56.1042701454113,-56.1042855200071,-56.1043149084968,-56.1043272015033,-56.1043504468248,-56.1043764469004,-56.1043976444992,-56.1044102776811,-56.1044301079081,-56.1044519791877,-56.1044810074916,-56.1045038992975,-56.1045168926652,-56.1045418522041,-56.1045630364627,-56.104577377192,-56.1045965137278,-56.1046238478247,-56.1046488073637,-56.1046652024857,-56.1046809172569,-56.1046966253579,-56.1047113129327,-56.1047359056158,-56.1047669883126,-56.1047847508065,-56.1048028401356,-56.1048243645697,-56.1048458956738,-56.1048694544904,-56.1048930333172,-56.1049162652986,-56.1049408646517,-56.1049634296224,-56.1049839468703,-56.1050129885145,-56.1050423970146,-56.1050612000451,-56.1050800030756,-56.1050940169696,-56.1051076973583,-56.1051302423186,-56.1051527939491,-56.1051647467801,-56.1051815020879,-56.1052016591501,-56.1052334555483,-56.1052724156411,-56.1052853889984,-56.1053062464218,-56.1053267436594,-56.1053561521595,-56.1053756222007,-56.1053899562598,-56.1054066915572,-56.1054220794932,-56.1054442976183,-56.1054583181824,-56.1054801827919,-56.1055037616188,-56.1055218776283,-56.1055369253888,-56.105557082451,-56.105571096345,-56.1055854570845,-56.1055936838672,-56.1056871313961,-56.1062684837078,-56.106888536475,-56.1080636842859,-56.1090703470688,-56.109507256424,-56.1095116358369,-56.1095257425239,-56.1095466132875,-56.1095674707109,-56.1095896754958,-56.1096033558844,-56.1096286555988,-56.1096406017598,-56.1096628132148,-56.1096843376488,-56.1096973110062,-56.1097174880787,-56.1097376451408,-56.1097591829151,-56.1097779859456,-56.1097967889762,-56.109817986575,-56.1098320071391,-56.1098473884049,-56.1098620893199,-56.1098928585217,-56.1099119883875,-56.1099301110671,-56.1099482337468,-56.1099625878162,-56.1100032754665,-56.1100408815276,-56.11006105193,-56.1100856846337,-56.1100993583523,-56.1101294472032,-56.1101520255141,-56.1101691209973,-56.1101930533398,-56.1102214279734,-56.1102402310039,-56.1102590540448,-56.1102826395417,-56.1102966601058,-56.1103106806699,-56.1103318715986,-56.110353416043,-56.1103763211891,-56.1103995798508,-56.1104136004149,-56.1104454101534,-56.1104693424959,-56.1104878186912,-56.1105062815463,-56.1105182610578,-56.1105418532249,-56.1105545197573,-56.1105709415598,-56.1106037784946,-56.1106314861175,-56.1106461870325,-56.1106591937404,-56.1106827992477,-56.1107087993232,-56.1107388948443,-56.110753955945,-56.1107761740701,-56.1108059360858,-56.1108199699901,-56.1108391131961,-56.1108524600794,-56.110868201531,-56.110883589467,-56.110900358115,-56.1109130179774,-56.1109270385414,-56.1109455147368,-56.1109653583039,-56.1109828073028,-56.1110026708803,-56.1110194328582,-56.1110365416817,-56.111051262607,-56.1110697521425,-56.1110841262223,-56.1111214187883,-56.1111494665866,-56.1111734189395,-56.1111973646222,-56.1112281605044,-56.1112664669267,-56.1112945213951,-56.1113071812574,-56.1113294193929,-56.111355079293,-56.1113725282919,-56.111395433438,-56.111407759795,-56.1114333996848,-56.1114566583466,-56.111475141212,-56.1114932705618,-56.1115113932415,-56.1115312368086,-56.111566108126,-56.1116009994537,-56.1116256121471,-56.1116427076303,-56.1116570683699,-56.1116827082597,-56.1116964019885,-56.1117104158825,-56.1117237494256,-56.1117377699897,-56.1117521440695,-56.111765817788,-56.1117794915066,-56.1118044510455,-56.1118232540761,-56.1118506081833,-56.111878996157,-56.1119019346537,-56.111936866002,-56.1119563827339,-56.1119813822935,-56.1119943890014,-56.1120245045327,-56.1120587088394,-56.1120809469749,-56.1120977156229,-56.1121097084746,-56.1121230887085,-56.1121347547249,-56.1121484751342,-56.1121628892346,-56.1121718271775,-56.1121838467096,-56.1121976271498,-56.1122096533521,-56.1122206190073,-56.1122357067885,-56.1122504543942,-56.1122627940914,-56.1122706848275,-56.1122888475279,-56.1123042621442,-56.1123200302763,-56.1123505059934,-56.1123774999148,-56.1124000515453,-56.1124130249026,-56.1124321881189,-56.1124421332479,-56.1124586017411,-56.1124791590097,-56.1125017506608,-56.1125267568905,-56.1125411443104,-56.1125671710664,-56.112582912518,-56.1125976267732,-56.112623640189,-56.1126438306017,-56.1126626469725,-56.1126893474092,-56.1127222110245,-56.1127348908972,-56.1127502855032,-56.1127656867794,-56.112793067567,-56.1128060742749,-56.1128221625721,-56.1128508907212,-56.1128638840889,-56.1128775578075,-56.1128980283647,-56.1129167780344,-56.1129262896064,-56.1129265897612,-56.1129224409549,-56.1129182921486,-56.1129151705387,-56.1129113685779,-56.1129079067926,-56.1129040981617,-56.11288522176,-56.1128714880105,-56.1128577676012,-56.112850563886,-56.1128388778592,-56.1128299332463,-56.1128175601985,-56.112806581203,-56.1127925206183,-56.1127835960156,-56.1127691952555,-56.1127599371475,-56.112751019215,-56.1127420812721,-56.1127273269963,-56.1127084439245,-56.1126991858165,-56.1126902678839,-56.112680322755,-56.1126683165631,-56.112675446907,-56.112691148338,-56.1127024008079,-56.1127235517159,-56.1127399334978,-56.1127518729886,-56.1127717032156,-56.1127864441512,-56.1128063344091,-56.1128135447943,-56.1128214355304,-56.1128293262666,-56.1128372236728,-56.1128451144089,-56.1128585213232,-56.1128677994415,-56.1128774110651,-56.1128859888222,-56.1128942264039,-56.1129069196168,-56.1129165512507,-56.1129210535727,-56.112920073067,-56.1129283506693,-56.1129386693243,-56.1129438386569,-56.1129500351859,-56.1129637822756,-56.1129737274046,-56.1129833323581,-56.1129932908273,-56.113005283679,-56.1130176367164,-56.1130286090418,-56.1130395947074,-56.1130580975831,-56.1130670288559,-56.1130814362862,-56.1131006395231,-56.1131147001078,-56.1131291208783,-56.1131363312636,-56.1131469700836,-56.1131620445246,-56.1131744109022,-56.1131850563924,-56.1131950148615,-56.1132042729695,-56.1132169928628,-56.1132238764128,-56.1132276850437,-56.113229452622,-56.1132298528284,-56.1132350555115,-56.1132443269597,-56.113251537345,-56.1132590879056,-56.1132676656627,-56.1132834538051,-56.1133060454562,-56.1133221004028,-56.1133364011114,-56.1133483539424,-56.1133719394394,-56.1133910893155,-56.1134106193876,-56.1134219452287,-56.1134294957894,-56.1134367061746,-56.1134442567353,-56.1134511402853,-56.1134481520775,-56.113445490705,-56.1134435096833,-56.1134538283383,-56.1134607118883,-56.113467948954,-56.1134796283106,-56.1134919680079,-56.113499918775,-56.1134975708974,-56.1134918145954,-56.1134840105707,-56.1134772337424,-56.1134741988439,-56.1134783476502,-56.1134869520877,-56.1134952030096,-56.1135055216645,-56.1135175411966,-56.1135210096521,-56.1135254919637,-56.1135320353383,-56.1135399594249,-56.113567680388,-56.113582381303,-56.1136071914405,-56.1137054692835,-56.113732603171,-56.1137781935218,-56.113793641056,-56.1137847486678,-56.1139678083054,-56.1142872101563,-56.1142714942271,-56.1142865388704,-56.1142832345739,-56.1143134849864,-56.1143588606194,-56.1144018179912,-56.114423471168,-56.1145055445986,-56.114613138953,-56.114766054844,-56.1148816288162,-56.1150377140532,-56.1151774129595,-56.115337101715,-56.1154776913596,-56.1157349014706,-56.1157658490276,-56.115636007599,-56.1156857596166,-56.1158502810275,-56.1159728106628,-56.1165258292188,-56.1168968414711,-56.1172601255726,-56.1172690225982,-56.1173157892896,-56.1168586376189,-56.1171671033692,-56.1176763193182,-56.1182038447099,-56.1187381736103,-56.1192534460162,-56.1173678935885,-56.1168063706635,-56.1166700937153,-56.1171659469445,-56.1174506562714],&#34;lat&#34;:[-34.8903899303676,-34.8894782185078,-34.8887335002709,-34.8887808592785,-34.8887849880745,-34.8887885411569,-34.8884189934884,-34.8872555619169,-34.8870189102348,-34.8856262127632,-34.8844150041536,-34.884437818628,-34.884446960426,-34.8845372656176,-34.884568098525,-34.8845774102023,-34.8846515184218,-34.8846384262531,-34.884677970321,-34.8847029025623,-34.8845366374032,-34.8841821212699,-34.8841935811599,-34.8841499095863,-34.8841011394844,-34.8840467052783,-34.8840237174799,-34.8839773859851,-34.8839352103163,-34.8838941195057,-34.8837905347269,-34.8837379722051,-34.8835442581384,-34.8835092530775,-34.8835008151942,-34.8834438047976,-34.8834076625964,-34.8832926518234,-34.8830328958963,-34.8828353484952,-34.882380052792,-34.882387686057,-34.8824949550755,-34.8827384327535,-34.8829302487393,-34.8830796318676,-34.8829655655268,-34.8828428526697,-34.8826962800842,-34.8823158758278,-34.8817378639266,-34.8827554076189,-34.8830560051581,-34.8835415266844,-34.8836467399828,-34.8836485810435,-34.8836970153683,-34.8837033547763,-34.8847601280087,-34.8856670613299,-34.8857744293073,-34.8857821836181,-34.8857386512902,-34.8856654402276,-34.8857685612284,-34.8855839691376,-34.8853961860625,-34.8853221614277,-34.8850405146649,-34.8851122777531,-34.8879402132358,-34.8880530797773,-34.8887843640026,-34.8900105682348,-34.8902523245513,-34.8904673009361,-34.8907294713109,-34.8908527768772,-34.8909113767909,-34.891976782081,-34.8920039294149,-34.892420450496,-34.8927061176115,-34.8935755591112,-34.8946003743012,-34.8946272995684,-34.8946614669498,-34.8946889601911,-34.8949780401687,-34.8950268210649,-34.8956437177069,-34.8956335972396,-34.895677992415,-34.8956784944821,-34.8956784661341,-34.8956784394537,-34.8956784136071,-34.8956783860929,-34.8956783602462,-34.8956783335658,-34.8956783068853,-34.8956782802049,-34.8956782360155,-34.8956872089764,-34.895696196945,-34.8957051640696,-34.8957051340541,-34.8957050690206,-34.8957050273324,-34.8957095046415,-34.8957139711116,-34.8957229198934,-34.8957318895193,-34.8957363718309,-34.8957363451505,-34.8957408066181,-34.8957452397376,-34.8957497145454,-34.8957541818493,-34.895758649987,-34.8957631114546,-34.8957675729221,-34.8957720518987,-34.8957720252183,-34.8957764916884,-34.8957764408289,-34.8957764141484,-34.895780875616,-34.895785335416,-34.8957943092107,-34.8957987765146,-34.8958122342885,-34.8958166907534,-34.8958211513872,-34.8958211013614,-34.8958255678316,-34.8958345274523,-34.8958390105977,-34.8958434912418,-34.8958434462186,-34.8958434020291,-34.8958433553384,-34.8958478176397,-34.8958567689228,-34.8958612353929,-34.8958611945385,-34.8958656735151,-34.8958656468347,-34.8958701283126,-34.8958701016321,-34.8958700582764,-34.8958745405881,-34.8958880041983,-34.8958879741828,-34.8958879316609,-34.8958923831233,-34.895901360253,-34.8959013160636,-34.8959012727079,-34.8959147304817,-34.8959146896273,-34.8959191702714,-34.895919143591,-34.8959191177443,-34.8959235825469,-34.895928056521,-34.8959280240042,-34.8959325013133,-34.8959324712978,-34.8959369386017,-34.8959323904227,-34.8959323470671,-34.8959368102021,-34.8959412766723,-34.8959502529682,-34.8959592000825,-34.8959591725683,-34.8959546368958,-34.8959546035453,-34.8959545710285,-34.8959545201689,-34.8959544759795,-34.8959589449509,-34.8959679154105,-34.8959768967091,-34.8959858830102,-34.895994849301,-34.896003811423,-34.8960082737244,-34.8960127368594,-34.8960172008283,-34.896021675636,-34.8960261295997,-34.8960260945817,-34.8960305593843,-34.8960395390153,-34.896039490657,-34.8960394448001,-34.8960438954287,-34.8960483610651,-34.8960528208651,-34.8960572798314,-34.8960662536261,-34.8960707200962,-34.896079700561,-34.896084174535,-34.8960886535116,-34.8960885734703,-34.8960884959303,-34.8960839585903,-34.8960839052294,-34.896092854845,-34.8961018161332,-34.896110793263,-34.8961152647357,-34.8961242552056,-34.896133226499,-34.8961422036288,-34.8961556655714,-34.8961646385323,-34.8961690958311,-34.8961735714726,-34.8961780404441,-34.896182507748,-34.8961914823764,-34.8961914490259,-34.8961959229999,-34.8962004019765,-34.8962048826206,-34.8962228535553,-34.8962273258618,-34.8962317948332,-34.8962362654722,-34.8962407044282,-34.8962451633944,-34.8962496323658,-34.8962540963347,-34.896267566615,-34.8962765479135,-34.8962855308796,-34.8962945171808,-34.8963035034819,-34.896312489783,-34.8963169704271,-34.8963250940648,-34.8963416954499,-34.8963524863576,-34.8964303957415,-34.8964306717971,-34.8964719482873,-34.8965131173953,-34.8965475476248,-34.8965632734945,-34.8966320111392,-34.8966958592919,-34.8968455244206,-34.896914425359,-34.8969757342209,-34.8970523904497,-34.8970307534001,-34.8970414975564,-34.8970938962727,-34.8971799127811,-34.8972039661827,-34.8971656580641,-34.8971858352247,-34.8972187308495,-34.8972379865868,-34.8972584789848,-34.8972907529614,-34.8973417005848,-34.8973608490401,-34.8973402378207,-34.8973513184732,-34.8973229727869,-34.8972551243043,-34.897228520716,-34.8972984021831,-34.8973663118968,-34.8973805244688,-34.8973320995626,-34.8972905206239,-34.897325133431,-34.8973427534476,-34.8973060181161,-34.8972727516388,-34.897271866078,-34.8972570742747,-34.8972150818674,-34.8971058525542,-34.8970790648107,-34.8970659537669,-34.8970745877095,-34.897091580412,-34.8971086648395,-34.8971190714228,-34.8971158012912,-34.8971145330894,-34.8971063577309,-34.8971544630586,-34.8971563579546,-34.8971619661983,-34.8971726171982,-34.8971864313903,-34.8972092155722,-34.89723817342,-34.8972750160508,-34.8972806306064,-34.8972801800855,-34.8972822048899,-34.897291187856,-34.8973001758247,-34.8973181667697,-34.8973271514033,-34.8973361260317,-34.897340584998,-34.897349529611,-34.8973584992369,-34.8973719695171,-34.8973809574858,-34.8973854364624,-34.8973944127584,-34.8974033857193,-34.8974168693398,-34.8974348686225,-34.8974483439054,-34.8974618225233,-34.8974708021543,-34.8974797734477,-34.8974797117492,-34.897479666726,-34.8974841390325,-34.897484109017,-34.897488579656,-34.8974975376092,-34.8975020182533,-34.8975064972299,-34.897515483531,-34.897524463162,-34.8975469764394,-34.8975559527353,-34.8975604167042,-34.897564880673,-34.8975783292755,-34.8975918062259,-34.8976052748387,-34.8976142561372,-34.8976277380902,-34.8976412200432,-34.8976546986611,-34.8976636766247,-34.8976726562557,-34.8976906238553,-34.8976996184941,-34.8977086014602,-34.8977176011015,-34.8977265957403,-34.897740089366,-34.8977580853136,-34.897771562264,-34.8977805519002,-34.8977895432039,-34.8977985395102,-34.8978165221176,-34.8978300040706,-34.8978389953743,-34.8978479666677,-34.8978569412962,-34.8978614086001,-34.8978703915662,-34.8978748672077,-34.8978793395142,-34.8978883191452,-34.897897285436,-34.8979017544074,-34.8979152313579,-34.8979287316536,-34.8979467392739,-34.8979557372477,-34.8979692408786,-34.8979782321823,-34.8979917208054,-34.8980007154442,-34.8980097067479,-34.898014187392,-34.8980231753607,-34.8980231436777,-34.8980276043115,-34.8980275726284,-34.8980410345711,-34.8980545265293,-34.8980770197963,-34.8980814971053,-34.8980904734013,-34.8981039253388,-34.8981173989542,-34.8981488885275,-34.898184865415,-34.8982118826819,-34.8982253846452,-34.8982524169197,-34.8982659355583,-34.8982839681915,-34.8983020091624,-34.8983155561489,-34.8983250677053,-34.8983425484029,-34.8983605393479,-34.8983695189789,-34.8983739846153,-34.8983919638877,-34.8984009585264,-34.8984227440588,-34.8984324499218,-34.8984465457137,-34.898477448266,-34.8986831895739,-34.8987753437115,-34.8988365952808,-34.8988413629511,-34.8987845896101,-34.898817385135,-34.8988426015748,-34.8989619127272,-34.8990692070739,-34.8992954852311,-34.8993324010174,-34.8993914574097,-34.8994713555608,-34.8995682994741,-34.8996631235345,-34.8996752502942,-34.8996675070891,-34.8996888393073,-34.8997778762724,-34.8997992964292,-34.8997437055149,-34.8997369090609,-34.8997751736112,-34.8998072367686,-34.8998369910871,-34.8998093778309,-34.8997860887686,-34.899799249894,-34.8998462129375,-34.8998496275963,-34.8998555648571,-34.8999177339503,-34.8999477141394,-34.8999312967568,-34.8998150490585,-34.899818061603,-34.8997892997194,-34.8997431533829,-34.8997125398532,-34.8997017706798,-34.8997303134748,-34.8997252552959,-34.8996735736574,-34.8996215655917,-34.8995733919458,-34.899557608021,-34.8995000395263,-34.8994303651138,-34.899443387667,-34.8993511266458,-34.8993216740505,-34.8994152090141,-34.8993752440479,-34.8992547350132,-34.8991593042312,-34.8989930938484,-34.8988498157056,-34.8987950147994,-34.8987946132109,-34.8987720599129,-34.8987585312692,-34.8987404869633,-34.8987224443249,-34.8986998793542,-34.8986863373703,-34.8986727987214,-34.898663767397,-34.8986457114184,-34.8986276521048,-34.8986141001157,-34.8985960391345,-34.8985779781533,-34.8985689484965,-34.8985599171722,-34.8985508841803,-34.8985418495209,-34.8985283092044,-34.8985192778801,-34.8985102465558,-34.898492180572,-34.8984831509152,-34.898460555929,-34.8984424849427,-34.8984289246159,-34.8984153642892,-34.8984018139676,-34.8983927676355,-34.898379220649,-34.898370180987,-34.8983611346549,-34.8983475826658,-34.8983340306767,-34.8983204820226,-34.8983114456957,-34.8983024110363,-34.8982888440395,-34.8982752820452,-34.898257189381,-34.8982345910598,-34.8982255480628,-34.8982165067333,-34.8982074670713,-34.8981984274093,-34.8981848720851,-34.8981758240855,-34.8981667894261,-34.8981577447616,-34.8981487017645,-34.8981396571,-34.898126083433,-34.8981215510955,-34.898112478083,-34.8981079340729,-34.8981034017355,-34.8980943537358,-34.8980807533885,-34.898076157685,-34.8980716186774,-34.8980670629946,-34.8980624956391,-34.898057948294,-34.8980562716213,-34.8980553545346,-34.8978943033026,-34.8977967318321,-34.8977857831166,-34.8977641010978,-34.8977203401662,-34.8977041847316,-34.8977054237181,-34.8976938169928,-34.8976741638701,-34.8976580293055,-34.897645361093,-34.8976455699076,-34.8976351708309,-34.8976377114228,-34.8976250745135,-34.8976287079097,-34.8976265640323,-34.8976126881413,-34.8976119815516,-34.8976262123518,-34.8976253074028,-34.8976221332791,-34.8976202502704,-34.8976158371638,-34.8976067813443,-34.8976091548735,-34.8976128090843,-34.8975588181483,-34.8975187506406,-34.8975176479806,-34.8975040926564,-34.8974995386412,-34.897494991296,-34.8974994402571,-34.8974949045846,-34.8974903539043,-34.897481294232,-34.8974722328922,-34.8974676938847,-34.8974631582122,-34.8974586192046,-34.8974540485141,-34.8974495161766,-34.8974494661508,-34.897453918447,-34.8974538717562,-34.8974493377512,-34.8974492960631,-34.8974447420478,-34.8974356657002,-34.8974311100174,-34.897431083337,-34.8974310299761,-34.8974264776284,-34.8974219402884,-34.8974173912756,-34.8974128255877,-34.8974127722268,-34.8974082315517,-34.8974036908767,-34.8973991502016,-34.897394611194,-34.8973855448516,-34.897376465169,-34.8973719194914,-34.8973628664891,-34.8973583141414,-34.8973537601261,-34.8973446971187,-34.8973401381009,-34.8973355824181,-34.8973310234002,-34.8973309750419,-34.8973309300187,-34.8973263609957,-34.8973262976297,-34.897326257609,-34.8973262175884,-34.8973261875729,-34.8973261575574,-34.8973216035421,-34.8973170478593,-34.8973125155219,-34.8973124788363,-34.8973079281561,-34.897307861455,-34.8973032707541,-34.8972987350816,-34.8972986900584,-34.8972941393782,-34.8972940760121,-34.897289528667,-34.8972804840024,-34.8972759399923,-34.8972759083093,-34.897275859951,-34.8972758299355,-34.8972712759202,-34.8972667185699,-34.8972666802168,-34.8972666468662,-34.897262096186,-34.8972620661705,-34.897262036155,-34.8972620187112,-34.8972505873879,-34.897152705124,-34.8971450038356,-34.8971740648025,-34.8971896205164,-34.8971478725842,-34.8971520972942,-34.897149851632,-34.8971543122657,-34.8971542672425,-34.8971497115597,-34.8971496815442,-34.8971496265159,-34.8971450941784,-34.8971405384956,-34.8971359844803,-34.8971314488078,-34.8971314054521,-34.8971268547719,-34.8971268080811,-34.897126766393,-34.8971267247048,-34.8971266796816,-34.8971266479986,-34.897126614648,-34.897126582965,-34.897126516264,-34.8971219672513,-34.8971219272306,-34.89712188721,-34.8971218571945,-34.8971217671481,-34.8971216854392,-34.8971216420836,-34.8971260943797,-34.8971260643643,-34.8971259993307,-34.8971304566295,-34.8971304199439,-34.897130366583,-34.8971303048845,-34.8971302631964,-34.8971347305003,-34.8971346788069,-34.8971346471239,-34.8971346171085,-34.8971345704177,-34.8971345237269,-34.8971344737012,-34.8971389293324,-34.8971388993169,-34.8971433366053,-34.8971432832445,-34.8971477505484,-34.8971477105277,-34.8971521911718,-34.8971521394785,-34.8971566184551,-34.8971610890941,-34.8971655247149,-34.897169970341,-34.897169938658,-34.8971744176346,-34.8971788715983,-34.8971833222269,-34.8971877628504,-34.8971922368244,-34.8971921884661,-34.8971966307571,-34.8972011063987,-34.8972010647105,-34.8972055420196,-34.897210014326,-34.8972099809755,-34.8972144516145,-34.8972189305911,-34.8972189005756,-34.897223366212,-34.8972278301808,-34.8972322991522,-34.8972412687781,-34.8972457394171,-34.8972502083885,-34.8972546823625,-34.897263656991,-34.8972681326325,-34.8972770639052,-34.8972815095313,-34.897285963495,-34.8972904174587,-34.8972993654067,-34.8973037876874,-34.8973082333134,-34.89731271229,-34.8973171695888,-34.8973216202174,-34.8973260891888,-34.897326039163,-34.8973305198071,-34.8973304631112,-34.8973349187425,-34.8973393843788,-34.8973438516827,-34.8973438116621,-34.8973482756309,-34.8973481989247,-34.897352629543,-34.8973525745147,-34.8973525378291,-34.8973525061461,-34.8973524494501,-34.8973569267592,-34.8973568967437,-34.8973568667283,-34.8973568350453,-34.8973613106868,-34.8973612806713,-34.8973612506558,-34.8973611956274,-34.8973611556068,-34.8973610939083,-34.8973655395344,-34.8973745024901,-34.8973924534146,-34.8974014247079,-34.8974148899857,-34.8974193689623,-34.8974283169103,-34.8974327475286,-34.8974372064949,-34.8974416754663,-34.897450663435,-34.8974641553931,-34.8974776506863,-34.8974911409769,-34.8975091369246,-34.8975226372203,-34.8975406398381,-34.8975721577593,-34.8975901587096,-34.8975991483458,-34.8976126353013,-34.8976261239244,-34.8976351118931,-34.8976441081994,-34.8976575884848,-34.8976665681158,-34.8976800550714,-34.8976935086765,-34.8976889413209,-34.8976843856381,-34.8976798499656,-34.8976843139345,-34.8976933069057,-34.8977112978508,-34.8977247731337,-34.897733737757,-34.8977472030347,-34.8977561860008,-34.8977696479434,-34.8977741202499,-34.8977785958914,-34.8977875521771,-34.8977920144784,-34.8977964801148,-34.8978054347329,-34.8978188833354,-34.8978278696365,-34.897832341943,-34.8978368142495,-34.8978457688676,-34.8978502461767,-34.8978547184831,-34.8978591624417,-34.8978591324262,-34.8978591024107,-34.8978455370814,-34.8978274677626,-34.8978094184541,-34.897795898148,-34.8977823861795,-34.8977688742111,-34.8977553605751,-34.8977418469391,-34.8977283349706,-34.8977148213346,-34.8976923297351,-34.89767433212,-34.8976608418293,-34.8976518438555,-34.8976338412378,-34.8976158336174,-34.8975978326672,-34.8975843357065,-34.8975708454159,-34.8975618524446,-34.897548362154,-34.8975393691828,-34.897530374544,-34.8975168742482,-34.8974988783006,-34.8974763867011,-34.8974673920623,-34.8974583974236,-34.8974494061198,-34.8974359124942,-34.8974223755128,-34.8974133275132,-34.8974042878512,-34.8973907208544,-34.8973816711872,-34.8973726298577,-34.897372586502,-34.8973860751251,-34.8974040594001,-34.8974130573739,-34.8974220536802,-34.8974310499865,-34.8974400462927,-34.897449042599,-34.8974715475388,-34.8974850478345,-34.8974985481303,-34.8975075427691,-34.8975165390754,-34.8975300310335,-34.8975480369863,-34.8975660562793,-34.897579578253,-34.8976020948654,-34.8976200991506,-34.8976336094516,-34.8976471164174,-34.8976696213572,-34.8976786126609,-34.8976876056321,-34.8977011042604,-34.897710092229,-34.8977235858547,-34.8977325754909,-34.8977460707841,-34.8977595510695,-34.8977730530329,-34.8977865416559,-34.8978045275984,-34.8978180162215,-34.8978360121692,-34.897845010143,-34.8978585071037,-34.8978674884023,-34.8978854893525,-34.8978989863132,-34.8979124849415,-34.8979214779127,-34.8979439845199,-34.8979574898183,-34.8979710034543,-34.8979890260824,-34.898007053713,-34.8980295769955,-34.8980430772913,-34.8980520752651,-34.8980610715714,-34.8980700678777,-34.8980880604903,-34.898097023446,-34.8980924811034,-34.8980744217898,-34.8980698894523,-34.8980698360915,-34.8980697944033,-34.8980832713537,-34.8980967683144,-34.8981057646207,-34.8981147625946,-34.8981237605684,-34.8981372658667,-34.898164313149,-34.8981868547743,-34.8982093930646,-34.8982273990174,-34.8982409043157,-34.8982589152711,-34.8982769178888,-34.89828590419,-34.8983129281269,-34.8983264551031,-34.8983444944064,-34.8983625403799,-34.8983805830183,-34.8983941099945,-34.898407621963,-34.8984256312508,-34.8984391332141,-34.8984571374994,-34.8984751401171,-34.8984886520856,-34.8985021640541,-34.8985156693524,-34.8985336803078,-34.8985426332584,-34.8985425999078,-34.8985386960859,-34.8984969325134,-34.8985146396441,-34.8985099694214,-34.8984850688075,-34.8984649933724,-34.8983812829446,-34.8986062288263,-34.8986561407953,-34.8986687570542,-34.8986937462227,-34.8987039719612,-34.8987193105549,-34.8986771010415,-34.8986397389389,-34.8986303316086,-34.8985060491886,-34.8984021073662,-34.8983829384683,-34.898266512752,-34.8982625271733,-34.8983762492158,-34.8985723757876,-34.8986517884253,-34.8985969844218,-34.8985310052936,-34.8984213089775,-34.8983674767207,-34.8982658136447,-34.8982223094916,-34.8982976303648,-34.8971122059351,-34.8970831505658,-34.8970431411249,-34.8963223965589,-34.8958304486821,-34.895049604314,-34.8942236475136,-34.8933931658797,-34.8925897665461,-34.8917241718034,-34.891878667314,-34.8916085555104,-34.8908344274079,-34.8903899303676]}]],[[{&#34;lng&#34;:[-56.1110785383027,-56.1112011399025,-56.1112013400057,-56.1113396046457,-56.1114106079306,-56.1114729956163,-56.1114717327875,-56.1114698938432,-56.1114506236354,-56.1114253156858,-56.1114181321693,-56.1114131792757,-56.1113427624181,-56.1112758384332,-56.1112407284851,-56.1112143937549,-56.1111859155877,-56.1111772229855,-56.1111530455148,-56.1114327470717,-56.1116816194627,-56.1119972312974,-56.1120669941857,-56.1123696079273,-56.1123842074588,-56.1126545926973,-56.1127363689636,-56.1137390933978,-56.1144279432623,-56.1149116551365,-56.1157210776167,-56.1159132367181,-56.1168065574265,-56.1169395059914,-56.117491992045,-56.1187002540543,-56.1187569699708,-56.1188809805929,-56.1201039451875,-56.1201104401865,-56.1204271157994,-56.1214816005353,-56.122765351129,-56.1237334555499,-56.124329251437,-56.1250529793886,-56.1252102942266,-56.1253229139968,-56.1254452176365,-56.1255008978243,-56.1256205670521,-56.1255074922442,-56.125582634754,-56.1256989680314,-56.1258018502662,-56.1261680826825,-56.1265147181002,-56.1267220525716,-56.1268868038898,-56.1282025435446,-56.1282886205735,-56.1281211539381,-56.127894315881,-56.1278569343255,-56.1278190058346,-56.1277790048906,-56.1277377342318,-56.1276615504454,-56.1273133871813,-56.1272676991716,-56.1267761256546,-56.1263923544006,-56.1261492734582,-56.1264517116793,-56.1267692020839,-56.125893116931,-56.1256232911083,-56.1254453593443,-56.1253021721657,-56.1246860877685,-56.124242972576,-56.1236660216944,-56.1234741227272,-56.1225806619466,-56.121478546891,-56.1212098673475,-56.120812995111,-56.120258813709,-56.1191071639081,-56.1190390346398,-56.1189803666,-56.1184724365629,-56.1184622822828,-56.1180565287353,-56.118020970397,-56.1170696797921,-56.1169960465929,-56.1168452240345,-56.1167645076194,-56.1166188005954,-56.1161786043537,-56.1159297519211,-56.1158185897781,-56.115791667355,-56.1149464114349,-56.1149436967015,-56.1139677133619,-56.1135782991977,-56.1135464353018,-56.1134504749564,-56.1133990734331,-56.1133923899863,-56.1130785157223,-56.1126723653178,-56.1122948106032,-56.1119790811067,-56.1118308973294,-56.1116651147912,-56.1115222964281,-56.1114918262102,-56.1113251770893,-56.1110785383027],&#34;lat&#34;:[-34.8780935668744,-34.8789410763173,-34.8789426183626,-34.8799001847041,-34.8803918947498,-34.88083704078,-34.8811684610783,-34.8812275986571,-34.8818472915102,-34.8825555390461,-34.8825882936816,-34.8826205197638,-34.8829219842233,-34.8832439608969,-34.8834155532717,-34.8835442581384,-34.8837379722051,-34.8837905347269,-34.8838941195057,-34.8839352103163,-34.8839773859851,-34.8840237174799,-34.8840467052783,-34.8841011394844,-34.8841499095863,-34.8841935811599,-34.8841821212699,-34.8845366374032,-34.8847029025623,-34.884677970321,-34.8846384262531,-34.8846515184218,-34.8845774102023,-34.884568098525,-34.8845372656176,-34.884446960426,-34.884437818628,-34.8844150041536,-34.8842441318129,-34.8842371525201,-34.8841743445695,-34.8839134335722,-34.8834507315627,-34.8829531912249,-34.8826548315808,-34.8824362355562,-34.8823936172021,-34.8823556487177,-34.8823147668064,-34.8822982637602,-34.882278243629,-34.8819035625803,-34.8818722845557,-34.8818253934615,-34.8817953091242,-34.8817295502803,-34.8816875295728,-34.8816895506644,-34.8817039588522,-34.8818190175768,-34.8818054719731,-34.8812892030404,-34.880607190875,-34.8804533449564,-34.8803512829478,-34.8802402771181,-34.8801256302419,-34.8798881629441,-34.8788589133117,-34.8787395684362,-34.877226373668,-34.8760464413967,-34.8752966730446,-34.8743111256167,-34.873399984051,-34.8733794793095,-34.8733350330541,-34.8733054769779,-34.8732816913777,-34.8731298755824,-34.8730231121885,-34.8728798316284,-34.8728352027788,-34.8726254212558,-34.8723665319066,-34.8723111641155,-34.8722143261385,-34.8721164056763,-34.8719392407082,-34.8719272046834,-34.8719162732135,-34.8718279983377,-34.8718258204768,-34.8717387948332,-34.8717343683837,-34.8716012947542,-34.8715895488517,-34.8715654896219,-34.8715396529298,-34.8714930130772,-34.8713478733143,-34.8712658217135,-34.8714330683875,-34.8714734496545,-34.8725131074994,-34.8725164458877,-34.8737219709412,-34.8741985809078,-34.8742384083683,-34.8743583512552,-34.8744225989396,-34.8744308365213,-34.874816609724,-34.8753157899978,-34.8757808385852,-34.8762322292956,-34.876516582969,-34.8768873534467,-34.8771948143735,-34.8772541277151,-34.8775785252869,-34.8780935668744]}]],[[{&#34;lng&#34;:[-56.0786414941687,-56.0782917925105,-56.0769582080793,-56.0767581347958,-56.0761009538039,-56.0759561026119,-56.0751144223297,-56.0750330939709,-56.0731725356505,-56.0729575212448,-56.0718679014116,-56.071466947963,-56.071203323055,-56.0710840838435,-56.0699914937002,-56.0686396631933,-56.0685228562863,-56.0678851674138,-56.0672430629308,-56.0660223400394,-56.0654457893641,-56.0637314919237,-56.0637116817071,-56.0619146309646,-56.0605682905517,-56.0602782585179,-56.0601867914669,-56.059444014095,-56.0594632506825,-56.0594725221307,-56.0594821270842,-56.0594941466163,-56.05950751351,-56.0595294448205,-56.0595462134685,-56.0595547912256,-56.0595719067192,-56.0595863008093,-56.0596003347136,-56.0596137016072,-56.0596232932205,-56.0596613261684,-56.0596993724565,-56.059714793743,-56.059729868184,-56.0597545342382,-56.0597788667871,-56.0598062809253,-56.0598333615582,-56.0598477556482,-56.0598621497383,-56.0598758634775,-56.0598919784551,-56.0599070662362,-56.0599252222664,-56.0599389360056,-56.0599529699099,-56.0599875877632,-56.0600221922763,-56.0600691231464,-56.0601160673568,-56.0601283937138,-56.0601403865655,-56.0601492978279,-56.060159249627,-56.0601959352133,-56.060220627948,-56.060234328347,-56.0602627830218,-56.0602847143323,-56.0603069924884,-56.0603313250373,-56.0603580588246,-56.0603858198084,-56.0604146079885,-56.0604437430142,-56.0604728780398,-56.0605009858691,-56.0605283866671,-56.0605544401035,-56.0605797998488,-56.0606041323977,-56.0606281314413,-56.0606517702992,-56.0606750756517,-56.0606983676639,-56.060722019862,-56.0607453118743,-56.0607692975777,-56.0607929364355,-56.0608172556442,-56.0608415881931,-56.0608662542474,-56.0608912671471,-56.0609166135523,-56.0609426536485,-56.0609686937447,-56.060995427532,-56.0610221479791,-56.0610499089628,-56.0610776566063,-56.0611060846007,-56.0611352062861,-56.0611643413118,-56.0611941433482,-56.0612236118792,-56.0612527335646,-56.0612818419099,-56.0613102832445,-56.0613380175478,-56.0613650981806,-56.0613911249366,-56.0614164846819,-56.0614408038906,-56.0614644427485,-56.0614870544099,-56.0615089857204,-56.0615298898345,-56.0615501002576,-56.0615696436699,-56.061588480051,-56.0616066494214,-56.0616244719463,-56.0616419476256,-56.0616590897996,-56.0616762186334,-56.0616933608074,-56.0617105029814,-56.0617279786607,-56.0617454676802,-56.0617632902051,-56.061781806421,-56.061800322637,-56.0618198793896,-56.0618397563073,-56.0618603269161,-56.0618808975249,-56.0619018149792,-56.0619220387424,-56.0619422758459,-56.0619614724127,-56.0619799886287,-56.0619974776482,-56.0620139261311,-56.0620296942631,-56.0620444351988,-56.062058842629,-56.062072543028,-56.0620859232619,-56.0620993034957,-56.0621123235438,-56.0621253569322,-56.0621380434749,-56.0621507433579,-56.0621634165605,-56.0621764499488,-56.0621891364916,-56.0622018230343,-56.0622145095771,-56.0622275296252,-56.0622405630135,-56.0622535964019,-56.0622669632955,-56.0622806770347,-56.0622943907739,-56.062308784864,-56.0623231922943,-56.0623379465701,-56.0623533811968,-56.062369162669,-56.0623852776466,-56.0624020863152,-56.0624195753348,-56.0624374111999,-56.0624559274158,-56.0624751239826,-56.0624946540548,-56.062514877818,-56.0625351015813,-56.0625424605421,-56.0625410572255,-56.0625690344178,-56.0626666677207,-56.0627110676575,-56.0626911181756,-56.0626063027801,-56.0625864878837,-56.062622080491,-56.0627128786099,-56.0629224721388,-56.0630353261336,-56.0631062649009,-56.0630795695969,-56.0630764981207,-56.0631814619069,-56.0632580277201,-56.0633419679063,-56.063408850876,-56.0634204385679,-56.0634197880525,-56.063416582217,-56.0634569270747,-56.0635263431349,-56.0635785001407,-56.063698123604,-56.0637844624265,-56.0640299406205,-56.0640554477235,-56.0640050832746,-56.0639808760188,-56.063977975486,-56.0640029179051,-56.0640124394063,-56.0640422948869,-56.0640305677821,-56.0639150362537,-56.0639259383336,-56.0639545925651,-56.0640162046502,-56.0640350504239,-56.0640654081311,-56.0641382452297,-56.0642347516716,-56.0642354330156,-56.0641974186118,-56.0641485558129,-56.0641511199986,-56.064184059751,-56.0642128035827,-56.064313649198,-56.0642665796686,-56.0643315448498,-56.0644503577886,-56.0645114499026,-56.0645536960895,-56.0645805930606,-56.0646656230774,-56.0648419776606,-56.0649129856631,-56.0649854644231,-56.0650403529114,-56.0652495398794,-56.0653501336665,-56.0655709755923,-56.0656284456252,-56.0656726283262,-56.0656904690625,-56.0657423084323,-56.0658437642255,-56.0659157959739,-56.0658963230713,-56.0658747346165,-56.0659759400954,-56.0660910415401,-56.0660934970331,-56.0661571705033,-56.0662756976653,-56.0664347313715,-56.0668184624932,-56.0669948179321,-56.0670427664613,-56.0671789016916,-56.0672667845804,-56.0672275356604,-56.06715457299,-56.067021613446,-56.0669997573339,-56.0671684744617,-56.067347517658,-56.0675799793866,-56.0676601701114,-56.0677696767203,-56.0679778743705,-56.0680389321822,-56.0681526330803,-56.0681497777999,-56.068136365055,-56.0680119916423,-56.0679709420104,-56.0681215433701,-56.0681894817825,-56.0682364042088,-56.0684927250384,-56.068507193293,-56.06869330223,-56.0690964502931,-56.0693361930437,-56.0695552212223,-56.0696843743653,-56.069761153864,-56.0698351041462,-56.0698947685965,-56.0700028792734,-56.0701838761291,-56.0706613545087,-56.0707834150663,-56.0709611846055,-56.071014401073,-56.0709890196151,-56.0709565189039,-56.0709212857183,-56.0709645062074,-56.0710074187362,-56.0710390439723,-56.0712026625033,-56.0713151723701,-56.0714215286077,-56.0714810385837,-56.0716496053672,-56.0715414489594,-56.0715622527356,-56.0717197691694,-56.0717892772879,-56.0718617447166,-56.0719993080829,-56.0721151182263,-56.0721780486717,-56.0722938586251,-56.0724317619533,-56.0724877606009,-56.0725598745796,-56.0725788489382,-56.0725700117524,-56.0725295217779,-56.0724555600451,-56.072524641486,-56.0725312551568,-56.0724064641879,-56.0723634620406,-56.0723673612433,-56.0724621172073,-56.0728874913077,-56.0729317933037,-56.0729318591173,-56.0725063038325,-56.072503473692,-56.0725413066223,-56.0725033014304,-56.0726443227512,-56.0730192683143,-56.0732900850805,-56.0736177107741,-56.0743967340809,-56.0753335544987,-56.076322331236,-56.0765061789742,-56.077052298019,-56.0774660519986,-56.0779542692699,-56.0781618352586,-56.078192020382,-56.0781057397483,-56.0781286818753,-56.0781902870566,-56.0783434062786,-56.0785112594531,-56.0785884027709,-56.0784910527471,-56.0783534709554,-56.0782350339253,-56.0782313980923,-56.0782777242149,-56.0784243187986,-56.0787028311117,-56.0788180631032,-56.0788266454938,-56.0789511773591,-56.0790759961429,-56.0793018216479,-56.0795343735845,-56.0797947110662,-56.0798003185857,-56.0800358193514,-56.0800848073779,-56.0802861714002,-56.0804244671114,-56.0804570869937,-56.080519039,-56.0806061155729,-56.0806429073969,-56.0806435487637,-56.080704054626,-56.0809934568484,-56.0811389001846,-56.0812254927688,-56.0811191960595,-56.0811342715125,-56.0811866547958,-56.0812724173466,-56.0813847268765,-56.0814708069911,-56.0817092451518,-56.0817990451208,-56.0818145772473,-56.082123683408,-56.0822501378728,-56.0823586933313,-56.0823820766358,-56.0823564629705,-56.0824127976524,-56.0824394045178,-56.0824437925893,-56.0824926524158,-56.0825604730152,-56.0825911252945,-56.0825973280169,-56.0827093404712,-56.0827178764705,-56.0827779477636,-56.0828348293869,-56.0828030761588,-56.0828377732615,-56.0828394163376,-56.0828754482252,-56.0829821463005,-56.0830608691142,-56.083091383464,-56.0830514709944,-56.0831282699331,-56.0831811051284,-56.0832671651997,-56.0832973029211,-56.0833583993596,-56.0834507620212,-56.0836494867097,-56.0837801540353,-56.0838860281746,-56.0838718997197,-56.0839750035848,-56.083945570548,-56.0839738188223,-56.0840310897859,-56.0840647158352,-56.0839286077583,-56.0840401595571,-56.0843002158505,-56.084455028476,-56.084604107728,-56.0847488197553,-56.0847271968889,-56.0848507065851,-56.0851648510846,-56.0852495881651,-56.0851652550022,-56.0849982974279,-56.0850399822779,-56.0852788831247,-56.085640343521,-56.0858856993785,-56.086050218437,-56.0861715282357,-56.0863276094729,-56.086453339797,-56.0867597998923,-56.0870258022833,-56.0870880684739,-56.0874298640256,-56.0876382716654,-56.0877958899397,-56.087942629047,-56.0882090991051,-56.0883745835745,-56.0886845707679,-56.0887121463049,-56.0888356156509,-56.088975342158,-56.0890109173704,-56.0889083753145,-56.0888289438469,-56.0888100151163,-56.0888616628526,-56.0889328890537,-56.0889689818811,-56.0890654734621,-56.0891568240657,-56.0892313484292,-56.0892570034419,-56.0893287233828,-56.0894483515708,-56.0894379391411,-56.0893556251401,-56.089404831977,-56.0895075037958,-56.0895811709655,-56.0896500603331,-56.0895084646621,-56.0895155796329,-56.0895815345803,-56.0896778444173,-56.0898058595249,-56.0900358185683,-56.0901903710149,-56.0903082842613,-56.0905806196187,-56.0907148402405,-56.0908519013837,-56.0912705078531,-56.0913038185275,-56.0915261258631,-56.0915485997463,-56.0915948539662,-56.0917185455634,-56.0925718789827,-56.0910105935028,-56.0911888434138,-56.0919364045856,-56.0919882913449,-56.0928537776984,-56.0919336425591,-56.0914399618907,-56.0914556845162,-56.0915471519128,-56.0917391515778,-56.0927226033817,-56.0932892489487,-56.0933832574313,-56.0956337071753,-56.0956910583046,-56.0957707837804,-56.0958677156385,-56.0960684222395,-56.0961437845809,-56.0963087595209,-56.0966672043801,-56.096924545001,-56.0961358941345,-56.0956019216532,-56.0955764618563,-56.0943600411836,-56.0934843156421,-56.0921824314679,-56.0920200864848,-56.0910334425624,-56.0903331243996,-56.0901240682325,-56.0901020135166,-56.0895249637128,-56.0894585653357,-56.0889475176914,-56.0877043348992,-56.0876427569405,-56.0868224360984,-56.0859759709326,-56.0858678281988,-56.0853333859066,-56.0849845993617,-56.0843849634475,-56.0842713915422,-56.0837740016922,-56.0836851710056,-56.0836517513532,-56.0834676837162,-56.0833778746469,-56.0832604101532,-56.0832068025064,-56.0830703894689,-56.0829005224721,-56.0828213272908,-56.0827741752289,-56.0826198671053,-56.0824859164462,-56.0823184977182,-56.0821685670618,-56.0818868900187,-56.0818012390868,-56.0814501085462,-56.0812630005757,-56.0802132673423,-56.0799449513126,-56.0790950578575,-56.0787855386792,-56.0786414941687],&#34;lat&#34;:[-34.8883438702898,-34.8885277498698,-34.8891743117954,-34.8892691849955,-34.889596992805,-34.8896538287432,-34.8899725444296,-34.8900152273337,-34.8906963149776,-34.8907778871886,-34.8911281977777,-34.891268662719,-34.891362253759,-34.8914045853178,-34.8917897072684,-34.8922654359472,-34.8923062136439,-34.8925237208179,-34.8927502468098,-34.8931716232912,-34.89337097777,-34.8939689986847,-34.8939735410273,-34.8945486685643,-34.8950177479329,-34.8951572645393,-34.8951989898366,-34.8954233845821,-34.8954548991683,-34.8954729109574,-34.8954864145882,-34.8955044213748,-34.8955179183355,-34.8955359076131,-34.8955448914129,-34.8955538902205,-34.8955628740203,-34.8955763693135,-34.895585358116,-34.8955943485859,-34.895603345726,-34.8956348269616,-34.8956708155219,-34.8956843091475,-34.8956978027732,-34.8957202943727,-34.8957427859722,-34.8957652717353,-34.8957922656568,-34.89580576095,-34.8958192562432,-34.8958327532039,-34.8958507524866,-34.8958687534368,-34.8958822420599,-34.8958957390207,-34.8959047278231,-34.8959362148951,-34.8959631954763,-34.8959991681951,-34.8960396474046,-34.8960486395421,-34.8960576316795,-34.8960666296533,-34.8960801332842,-34.8961206308364,-34.896147628093,-34.8961611250537,-34.8961881156401,-34.8962061049176,-34.8962285998522,-34.8962510914517,-34.8962780853731,-34.8963050792946,-34.896332069881,-34.8963590587999,-34.8963860493863,-34.8964130416402,-34.8964355265696,-34.8964625221586,-34.8964850120905,-34.89650750369,-34.8965299952895,-34.896547981232,-34.896570474499,-34.8965884604415,-34.8966109537085,-34.896628939651,-34.8966469255934,-34.896664911536,-34.8966828958109,-34.8967053874104,-34.8967233716853,-34.8967458616173,-34.8967638442247,-34.8967863324892,-34.8968088207536,-34.8968313073505,-34.896853795615,-34.8968762805443,-34.8968987654737,-34.8969212504031,-34.896943733665,-34.8969707225839,-34.8969932041782,-34.8970156857725,-34.8970381690344,-34.8970606522963,-34.8970831355581,-34.8971011148305,-34.8971236014274,-34.8971415823673,-34.8971640722993,-34.8971820565742,-34.8972000425167,-34.8972180301267,-34.8972360177367,-34.8972540086817,-34.8972719996268,-34.8972899939069,-34.8973034808625,-34.8973214751426,-34.8973394710902,-34.8973529613808,-34.897370958996,-34.8973844492866,-34.8974024469018,-34.8974204428494,-34.8974384404646,-34.8974564364122,-34.8974744323599,-34.89749242664,-34.8975149282446,-34.8975374281817,-34.8975554207943,-34.8975779190639,-34.8976004173335,-34.8976229139356,-34.8976454122052,-34.8976679104748,-34.8976859047549,-34.8977084063596,-34.8977264023072,-34.8977444015899,-34.8977578935481,-34.8977758944983,-34.8977893897915,-34.8978028867522,-34.8978208910375,-34.8978343879982,-34.8978478849589,-34.8978613819196,-34.8978748805479,-34.8978928865007,-34.8979063834614,-34.8979198820897,-34.8979333790504,-34.8979468776787,-34.8979603763069,-34.8979738732677,-34.8979873702284,-34.8980008688566,-34.8980143658174,-34.8980278611106,-34.8980458653958,-34.898059360689,-34.8980773616392,-34.8980953625895,-34.8981133635397,-34.8981358701469,-34.8981538694296,-34.8981718670448,-34.898194370317,-34.8982123662646,-34.8982348678692,-34.8982528604818,-34.8982708530944,-34.898288845707,-34.8983068366521,-34.8983133874643,-34.898316494014,-34.8983381741079,-34.8984001855435,-34.8985032840546,-34.8985703168939,-34.8986467298609,-34.8987019072452,-34.8987357750956,-34.8987661165165,-34.8986847373339,-34.8986737509034,-34.898763221303,-34.8987906806267,-34.8988499393178,-34.8989001503773,-34.8989165491398,-34.8989171960534,-34.8989414244158,-34.8989770831306,-34.8990343844071,-34.8991054985445,-34.8991433549305,-34.8991557462746,-34.8992095022639,-34.8992361128793,-34.8992367779679,-34.8993750180589,-34.8994522815619,-34.8994518937112,-34.8994714680755,-34.899536853949,-34.8995370460361,-34.8995434428144,-34.8996179732949,-34.8996368533433,-34.8996723234423,-34.899726156752,-34.8997374434782,-34.8997189476134,-34.899749129142,-34.8997793993172,-34.8997862836389,-34.899736439084,-34.8996763715318,-34.8996444615826,-34.8995539761546,-34.8994970848257,-34.8994688829171,-34.8994722659565,-34.8995473429325,-34.8996370897546,-34.8996613028484,-34.8996748643679,-34.8997022092795,-34.8996993727125,-34.8996964179984,-34.8996433230437,-34.899658907852,-34.8996578733194,-34.8996963716407,-34.8997631901435,-34.8997600565656,-34.8996881104681,-34.8996724190552,-34.8996807652009,-34.8996763622686,-34.8996259117889,-34.8996231485527,-34.8996444796057,-34.8997224955241,-34.8997476396793,-34.8997901570685,-34.8998336181755,-34.8998360835285,-34.8997886764954,-34.8997575484739,-34.8997963998306,-34.8998165918543,-34.8998195387379,-34.899835120434,-34.8998370693662,-34.8998460185993,-34.899879891204,-34.8999570523025,-34.8999612349102,-34.9000108019744,-34.9000770304629,-34.9000893915484,-34.9000370162355,-34.900011925161,-34.9000473193341,-34.9000355124091,-34.8999501616427,-34.899980666255,-34.8999372738719,-34.8998503044786,-34.8998486207784,-34.8998176307178,-34.8997145597972,-34.8996319288102,-34.8995628916858,-34.8994857890903,-34.8993752581092,-34.8993707631484,-34.8993162781332,-34.8992727739016,-34.8992764736042,-34.8993116972838,-34.8994934655549,-34.8995052354729,-34.8995673037904,-34.8996926287908,-34.8997344576382,-34.8997321150332,-34.8997171298593,-34.8997255179447,-34.899808880055,-34.8999335240753,-34.9000004192903,-34.9000292974002,-34.9000539001751,-34.9000607758446,-34.9000244502331,-34.9000027652367,-34.9000604624548,-34.9001135060046,-34.9001457349914,-34.9001329852624,-34.9001621540258,-34.9003058964715,-34.900322835679,-34.9001644970422,-34.900169416593,-34.9001619671066,-34.900083329905,-34.9000482351673,-34.8999998870322,-34.8999647921207,-34.8999067363952,-34.8999200133727,-34.8998871546633,-34.8998641701328,-34.8998178440649,-34.8998123952452,-34.8997321631737,-34.8996915715673,-34.8996582130213,-34.8996598306081,-34.8996003941529,-34.8995310359589,-34.899426392231,-34.899601822659,-34.8995456222511,-34.8995454262257,-34.8993804707952,-34.8993547499547,-34.8993190597164,-34.8990926163521,-34.8987570323049,-34.8984232323879,-34.898321339412,-34.8981862221672,-34.8979788534766,-34.897885757059,-34.8978881355163,-34.8979049520983,-34.8979490028897,-34.897981629494,-34.8981164004071,-34.8982439012472,-34.8983340775993,-34.8985184578776,-34.8986985267152,-34.8987683819648,-34.8987438439087,-34.8987965151503,-34.8988716278562,-34.898929998103,-34.8989597940148,-34.8989511860751,-34.898997417168,-34.8990388873103,-34.8990399989364,-34.8989598727734,-34.8989761657445,-34.8990456187954,-34.8990671219775,-34.8990629279454,-34.8992316840215,-34.8993568018786,-34.8995078289268,-34.8995644097563,-34.8997049685432,-34.899787576968,-34.8999124573377,-34.9000985384408,-34.9002504108737,-34.900289428463,-34.9003132165239,-34.9003552773832,-34.9003559025264,-34.9003983968003,-34.9004487737322,-34.9004632020791,-34.9003982385837,-34.9003328421523,-34.9003159090389,-34.900309770632,-34.9003292708155,-34.9002917874722,-34.9003030560495,-34.9003726037376,-34.9003640441044,-34.9003118123096,-34.900412686646,-34.9004690700722,-34.9004544929261,-34.9003684473627,-34.9003189842012,-34.9002947746352,-34.9002549438115,-34.9001964690774,-34.900172203042,-34.9001234452229,-34.9000559306492,-34.8998342634533,-34.8995086965683,-34.8994133007812,-34.8993891192371,-34.8993156438062,-34.8991460392928,-34.8990508409088,-34.8989030439378,-34.8986877604927,-34.8985038038346,-34.8984828422244,-34.8984276439067,-34.8983195651252,-34.8981353827513,-34.8980895908712,-34.8980810019181,-34.8980596736893,-34.8979431187001,-34.8977036249502,-34.8976466154586,-34.8976599179746,-34.8975498589644,-34.8974758477634,-34.8973796249223,-34.8973375237582,-34.8972170256247,-34.8971755778984,-34.8971093170582,-34.8969801897927,-34.8968972718161,-34.8969041582966,-34.8969644483073,-34.8970025235258,-34.8968952197223,-34.8966881236687,-34.8966052949804,-34.8965879519271,-34.8964811313903,-34.89635811228,-34.896215642772,-34.8960629760755,-34.8959000259742,-34.8957615328949,-34.8957892673954,-34.8958940606212,-34.8960314784203,-34.8961244401026,-34.8961206780693,-34.8960476675626,-34.8960167162322,-34.896068961942,-34.8961586098489,-34.8961695885834,-34.8961237006769,-34.8960283064479,-34.895954992189,-34.8959727082993,-34.896097417316,-34.8961870588476,-34.8963880359755,-34.8964102652717,-34.8962928545696,-34.8962661969565,-34.8962161770393,-34.8961195397152,-34.8960987449667,-34.896115753702,-34.8962101661133,-34.8962673744397,-34.896272766132,-34.8962497891109,-34.8962546884401,-34.8962269832513,-34.896258475605,-34.8961666092664,-34.8961189216433,-34.896060451622,-34.8960753420527,-34.8961300254478,-34.896099945318,-34.895988268007,-34.8958612297575,-34.8958381883241,-34.8959118696367,-34.8959598992815,-34.8958298224499,-34.8958027368456,-34.8957306594303,-34.8956432625554,-34.8956466202721,-34.8956437177069,-34.8950268210649,-34.8949780401687,-34.8946889601911,-34.8946614669498,-34.8946272995684,-34.8946003743012,-34.8935755591112,-34.8927061176115,-34.892420450496,-34.8920039294149,-34.891976782081,-34.8909113767909,-34.8908527768772,-34.8907294713109,-34.8904673009361,-34.8902523245513,-34.8900105682348,-34.8887843640026,-34.8880530797773,-34.8879402132358,-34.8851122777531,-34.8850405146649,-34.8849639211014,-34.8848707968193,-34.8845851969264,-34.8844856796051,-34.8842377047991,-34.8837194464784,-34.8833680311008,-34.8824085225789,-34.8816403208347,-34.8816055545715,-34.8799745342981,-34.8787691987176,-34.8771730932732,-34.8769751698252,-34.8757722746755,-34.8761877659481,-34.8763193865915,-34.8763429581455,-34.876697398868,-34.8767172523704,-34.8770341020826,-34.877805409736,-34.8778436138218,-34.8783472755698,-34.8788724374625,-34.8790090526245,-34.8795329194627,-34.879957263933,-34.8806344919468,-34.8808420360659,-34.8816542682361,-34.8819069894321,-34.8820020671162,-34.8825257285298,-34.8827812403088,-34.8831335598425,-34.8833495053778,-34.8837661002359,-34.8841557453438,-34.8843574632863,-34.8844789093764,-34.8849489434219,-34.8852260466451,-34.8854519812409,-34.8856190317682,-34.8859799127536,-34.886070805101,-34.8864081553537,-34.8865840078672,-34.8872749486143,-34.887456287555,-34.8880446112479,-34.8882627250765,-34.8883438702898]}]],[[{&#34;lng&#34;:[-56.0751144223297,-56.0759561026119,-56.0761009538039,-56.0767581347958,-56.0769582080793,-56.0782917925105,-56.0786414941687,-56.0787855386792,-56.0790950578575,-56.0799449513126,-56.0802132673423,-56.0812630005757,-56.0814501085462,-56.0818012390868,-56.0818868900187,-56.0821685670618,-56.0823184977182,-56.0824859164462,-56.0826198671053,-56.0827741752289,-56.0828213272908,-56.0829005224721,-56.0830703894689,-56.0832068025064,-56.0832604101532,-56.0827662825194,-56.0823189447352,-56.0815096283972,-56.0808385042783,-56.0805215233486,-56.0795758546278,-56.0781686508694,-56.0780214611176,-56.077137948697,-56.076577676636,-56.0753118257345,-56.0736826158153,-56.0726130527079,-56.0713603282583,-56.070897245641,-56.0702134225918,-56.0698650226508,-56.0692901453302,-56.0692150132493,-56.0690936573296,-56.0687466116827,-56.0687010014937,-56.0669262462069,-56.066903661226,-56.0651636820353,-56.0642741727427,-56.0634796111977,-56.0634422484209,-56.0633064831819,-56.0631417070615,-56.0631429884174,-56.0627635127121,-56.0622029270399,-56.0621663028211,-56.062460293165,-56.0628208332586,-56.0629412172366,-56.0629611477887,-56.0623716482966,-56.0620478994395,-56.0619134337332,-56.0616117970669,-56.0614718934195,-56.0607229886187,-56.0605885122877,-56.0603692997376,-56.0596568827564,-56.0592703769342,-56.0589140931547,-56.0586912665712,-56.0582821152207,-56.0582250608806,-56.0580569999418,-56.0579918128389,-56.0579009408981,-56.0580741210344,-56.0569334259872,-56.0560031862387,-56.0556244532174,-56.055618241046,-56.0552196354749,-56.0548839156689,-56.0542781099061,-56.0536871582934,-56.0528880682132,-56.0524122599326,-56.0514777818601,-56.0513256800059,-56.0495898235754,-56.0493978312216,-56.0491789280137,-56.0475968541006,-56.0457148384887,-56.0451758376343,-56.0448187579034,-56.0446343543641,-56.0443776541883,-56.043839415591,-56.0439757967395,-56.0439804680203,-56.0422585047669,-56.042161431972,-56.0403763804285,-56.0386329630082,-56.0384127049636,-56.0382741642586,-56.0382567875226,-56.0383760300842,-56.0385178859209,-56.0387082815551,-56.0392639912133,-56.0394673442501,-56.0395877355202,-56.0398553682598,-56.0398021371513,-56.0393713501914,-56.0390810008952,-56.0387630068583,-56.0382817472824,-56.0380031290216,-56.0376623644025,-56.0373996536875,-56.0370715702996,-56.0367412868383,-56.0364375602693,-56.0361729191833,-56.0361043543909,-56.0361071946635,-56.0360552573299,-56.0360361547606,-56.0359962060598,-56.0358255620693,-56.0357349464781,-56.0356530920354,-56.0356343277822,-56.035559620236,-56.0355300785551,-56.0355112495182,-56.0354322370201,-56.0351541221522,-56.0349673162743,-56.0347993767428,-56.0346930356241,-56.0343387118373,-56.0342354665326,-56.0337833954114,-56.0333256857362,-56.0331753294956,-56.0328202704662,-56.0325913639698,-56.032471385251,-56.0323895047598,-56.0322040113305,-56.0318955089453,-56.0315132000765,-56.0313508794181,-56.0310540713801,-56.0308612831723,-56.0307702255941,-56.030781097192,-56.0308541870228,-56.0306364539347,-56.0303439537105,-56.029851022741,-56.0294324806627,-56.0292184418483,-56.0286100926559,-56.028061939209,-56.0275639473431,-56.026779024878,-56.026084485429,-56.0255936497888,-56.0252281608196,-56.0246668135335,-56.0244723470038,-56.0241748845991,-56.0238970841174,-56.0236490073619,-56.0241553989048,-56.0245273705739,-56.0249541186179,-56.0251346925012,-56.025347807112,-56.0258166609144,-56.0264345949003,-56.0274549645058,-56.0281147041391,-56.0285951118386,-56.0292556904841,-56.030010988031,-56.0312144847003,-56.0322153680003,-56.0322190674881,-56.0322595603607,-56.0325876602599,-56.0326832017016,-56.0335360229292,-56.0350978777981,-56.0368095086856,-56.0376489177502,-56.0381211773879,-56.0384625489254,-56.0384825954867,-56.0385913420222,-56.038593007364,-56.0386238232565,-56.0386412722554,-56.0386590680999,-56.0386758367479,-56.0386926187361,-56.0387182853064,-56.0387439385364,-56.0387723531906,-56.0388096657669,-56.0388288223131,-56.0388503934379,-56.0388688696332,-56.0388917881195,-56.0389147066059,-56.0389331961414,-56.0389615974553,-56.0389988833513,-56.039027644851,-56.0390386105063,-56.039052297565,-56.0390663314693,-56.039082766612,-56.0391084331823,-56.0391269093776,-56.0391539499898,-56.0391700382869,-56.0391874872858,-56.0392022148812,-56.0392165822909,-56.039244996945,-56.0392727179081,-56.0392925814856,-56.0393045609971,-56.0393162070032,-56.0393234107184,-56.039336777612,-56.0393501445057,-56.0393645119153,-56.0393758244161,-56.0393977290462,-56.0394302391459,-56.0394456337519,-56.0394606815124,-56.0394859878969,-56.0394993414503,-56.0395126816636,-56.0395311578589,-56.039551688447,-56.0395725658807,-56.0395975387599,-56.0396160282954,-56.0396324500979,-56.0396526338405,-56.039667681601,-56.0396827427017,-56.039694708873,-56.03970703523,-56.0397275524779,-56.0397402256805,-56.0397593822267,-56.0397751370185,-56.0397912253157,-56.0398035383325,-56.0398158646895,-56.0398336605339,-56.039851122873,-56.0398647965916,-56.0398784969906,-56.0398945852877,-56.0399106735848,-56.0399291497802,-56.0399476393157,-56.0399633674271,-56.0399760406296,-56.0400047754489,-56.0400328432575,-56.0400550947332,-56.0400721968865,-56.0400875914926,-56.040107761895,-56.0401221293046,-56.0401358163634,-56.040148489566,-56.0401628703158,-56.0401885235459,-56.040204611843,-56.0402165913545,-56.0402302784132,-56.0402443123175,-56.0402631353584,-56.0402822919046,-56.0403089856713,-56.0403298497647,-56.0403428431324,-56.0403555029948,-56.0403746595409,-56.0404009931218,-56.0404557146765,-56.040472136479,-56.0404912930252,-56.0405231094337,-56.0405354357907,-56.0405518575932,-56.0405727350269,-56.0405949865025,-56.0406145032345,-56.0406240948478,-56.0406367813906,-56.0406460394985,-56.0406617809501,-56.0406881412115,-56.0407008277542,-56.0407210248371,-56.0407309632959,-56.0407518407296,-56.0407686093776,-56.0407775206401,-56.0407933021123,-56.0408076962024,-56.0408173144961,-56.0408255454077,-56.0408330826281,-56.0408402863433,-56.0408502248021,-56.0408693946885,-56.0408806938491,-56.0408971156516,-56.0409094286684,-56.0409296257512,-56.0409415919225,-56.0409617890053,-56.040981292397,-56.0410069589673,-56.0410240611206,-56.0410462859159,-56.0410685240513,-56.0410870002466,-56.0411085580312,-56.0411393472433,-56.0411567962422,-56.0411742585813,-56.0411941088186,-56.041220789245,-56.0412474830117,-56.0412652788561,-56.0412793127604,-56.0413059931869,-56.0413326869535,-56.0413494556016,-56.0413679317969,-56.0413860611466,-56.0414024962893,-56.0414202921338,-56.0414339791925,-56.0414507478406,-56.0414647950851,-56.0414744000386,-56.0414822841046,-56.0414990394124,-56.0415120461203,-56.0415339507504,-56.0415503725529,-56.0415626855697,-56.0415750119267,-56.0415866579329,-56.0416099232647,-56.0416294133162,-56.041648916708,-56.0416680865944,-56.0416814268076,-56.0417002898691,-56.0417184192189,-56.0417399770034,-56.0417519565149,-56.0417735142995,-56.0417954322698,-56.0418118407321,-56.0418299967623,-56.0418399352211,-56.0418560235183,-56.0418717649699,-56.0419025675222,-56.0419244721523,-56.041939533253,-56.0419617847287,-56.0419696687947,-56.0419905595686,-56.0420073282166,-56.042019988079,-56.0420552329223,-56.0420812463381,-56.0421021237718,-56.0421175183778,-56.0421329129839,-56.0421486410953,-56.0421708792307,-56.0421975729974,-56.0422068177652,-56.0422218788659,-56.0422403684014,-56.0422636470735,-56.0422862453947,-56.0423081366846,-56.042337565195,-56.0423591229795,-56.0423864970971,-56.0424053334781,-56.0424214217753,-56.0424286254904,-56.0424419790438,-56.042464577365,-56.0424768903818,-56.042491604637,-56.0425117883796,-56.0425251285929,-56.0425381219605,-56.0425607069415,-56.0425743940003,-56.0426068907597,-56.0426281150389,-56.042643509645,-56.0426592510966,-56.0426722578045,-56.0426849176668,-56.042704074213,-56.0427968020351,-56.0428286317839,-56.0428495092176,-56.0428707201566,-56.0428847407207,-56.0428950260251,-56.0429172775008,-56.0429453453094,-56.0429583386771,-56.0429781889143,-56.0429973588007,-56.0430076307649,-56.0430278278477,-56.0430398073592,-56.0430617253295,-56.0430955961309,-56.0431168204101,-56.0431366839876,-56.0431609898561,-56.0431699011186,-56.0431887241594,-56.0432027580637,-56.0432366288651,-56.0432616150845,-56.0432818255075,-56.0433020092501,-56.0433184443928,-56.0433341858444,-56.0433499406362,-56.0433687636771,-56.0433872532126,-56.0434132666284,-56.0434409875915,-56.0434533006083,-56.0434656403055,-56.0434813817571,-56.0434902930195,-56.0435149323934,-56.0435375173743,-56.0435501772367,-56.0435881568237,-56.0436151974359,-56.0436282041438,-56.0436411975115,-56.0436617280997,-56.0436822586878,-56.0437031361215,-56.0437240135552,-56.0437380341193,-56.0437524148691,-56.0437801358322,-56.0438078567953,-56.0438321626638,-56.0438520129011,-56.0438670606616,-56.0438868975586,-56.0439067344557,-56.0439402584115,-56.0439631902381,-56.0439782379986,-56.0439909112011,-56.0440035710635,-56.0440189656695,-56.0440347071211,-56.0440552377093,-56.0440764619885,-56.0440980197731,-56.0441219654558,-56.0441315570691,-56.0441438834262,-56.044171964575,-56.0441894135739,-56.0442041411693,-56.0442393860126,-56.0442653860882,-56.0442773655997,-56.0442989233842,-56.0443173862393,-56.0443358757749,-56.0443642770888,-56.0443930252483,-56.0444358073121,-56.0444789228812,-56.0444963718801,-56.0445083380514,-56.044529895836,-56.0445634197918,-56.0445972905932,-56.0446157534483,-56.0446280798053,-56.0446602297191,-56.0446814539984,-56.044712590056,-56.0447303859005,-56.0447485152503,-56.0447676851367,-56.0447871885284,-56.0448289300556,-56.0448415899179,-56.0448542631205,-56.0448703380774,-56.0448994464227,-56.044925806684,-56.0449477113141,-56.044963786271,-56.0449760992878,-56.0449887591502,-56.0450099834294,-56.0450175339901,-56.045048309862,-56.0450773915268,-56.0451105686371,-56.0451341674743,-56.0451512829679,-56.0451964395896,-56.0452416095516,-56.0452744531566,-56.0453073101017,-56.0453333101773,-56.045360003944,-56.0453815483883,-56.0454065212675,-56.0454215957084,-56.0454294931146,-56.0454414859663,-56.045449036527,-56.0454678595679,-56.0454890571667,-56.0455085205378,-56.0455242219687,-56.0455443790309,-56.0455645627735,-56.0455809979162,-56.0455793303896,-56.0455653498461,-56.0455530635097,-56.0455551579232,-56.0455825453809,-56.0455965792852,-56.045610266344,-56.0456242869081,-56.045638667658,-56.0456995790715,-56.0457461097353,-56.0458179868041,-56.045896000371,-56.0459736937728,-56.0460164624964,-56.0460592445602,-56.0460859249867,-56.046105775224,-56.0461256254612,-56.0461458092038,-56.0461861900293,-56.0462060269263,-56.0462258771636,-56.0462453805553,-56.0462915777137,-56.0463224336269,-56.0463388821098,-56.0463573716453,-56.0463761946862,-56.0463970587797,-56.0464189500696,-56.0464411615246,-56.0464630394743,-56.0464859312802,-56.0464982309568,-56.046523524001,-56.0465488170453,-56.0465614769076,-56.0465734564191,-56.0465984292983,-56.046612116357,-56.0466254699105,-56.0466388234639,-56.0466518301718,-56.0466648368797,-56.0466775100823,-56.0467001084034,-56.0467141423078,-56.046730924296,-56.046747692944,-56.0467651419429,-56.0467829511276,-56.0468181959709,-56.0468534408142,-56.0468821889737,-56.0469106036279,-56.0469225831394,-56.0469338823,-56.0469479028641,-56.0469622836139,-56.0469818003459,-56.046998889159,-56.0470159646319,-56.0470364551994,-56.0470556250858,-56.0470611345939,-56.0470495819692,-56.0470530370845,-56.047067084329,-56.0470876282574,-56.0471002881197,-56.0471132948276,-56.0471262881953,-56.0471396284085,-56.0471533154673,-56.047167002526,-56.0471810364303,-56.0471950569944,-56.0472111319514,-56.0472272069083,-56.0472429483599,-56.0472590233168,-56.0472747514282,-56.0472904928798,-56.0473062343314,-56.0473216289375,-56.0473370235435,-56.0473524181496,-56.0473674792503,-56.0473931324804,-56.047459179876,-56.0475248804262,-56.0475443971581,-56.0475635537043,-56.0475946897619,-56.0476254923143,-56.047658696105,-56.0476912062046,-56.0477069609964,-56.0477169127955,-56.0477217286125,-56.0477320272571,-56.0477395778178,-56.0477648975425,-56.0477857482957,-56.0478052116668,-56.047826742771,-56.0478472733591,-56.0478650692035,-56.0478729532696,-56.0478849461212,-56.0478938707239,-56.0479069041122,-56.0479233525951,-56.0479432028324,-56.0479551823439,-56.0479678422062,-56.0479808355739,-56.0479938422818,-56.0480071691548,-56.0480208428733,-56.0480417069668,-56.0480615438639,-56.0480800333994,-56.0480971622332,-56.0481232023294,-56.0481440797631,-56.0481632496495,-56.0481947192125,-56.0482073790748,-56.0482200389372,-56.0482330323049,-56.0482583386894,-56.0482720257481,-56.0482976923184,-56.0483110458718,-56.0483339643581,-56.0483466242205,-56.0483664744577,-56.0483873385512,-56.0484003452591,-56.0484191549597,-56.0484352432569,-56.048452705596,-56.0484667395003,-56.0484804265591,-56.0485006236419,-56.0485129499989,-56.0485218612613,-56.0485406843022,-56.048558813652,-56.0485807049419,-56.0485916705971,-56.048610493638,-56.0486293300191,-56.0486536225473,-56.0486762075283,-56.048690574938,-56.0487063163896,-56.0487254729358,-56.0487562621479,-56.0487860108234,-56.0488000313875,-56.0488140652918,-56.0488270719997,-56.0488462285459,-56.0488684666813,-56.0488821537401,-56.0489036981844,-56.0489190794503,-56.0489546444587,-56.0489799508432,-56.049002522484,-56.0490247472792,-56.0490404887308,-56.0490507740352,-56.0490768007912,-56.0490894739938,-56.0491024807017,-56.0491158342551,-56.0491360046575,-56.0491527866457,-56.0491695419535,-56.0491822018159,-56.0491948616782,-56.0492130043682,-56.0492283856341,-56.0492499434186,-56.0492656982104,-56.0492930856682,-56.0493115752037,-56.049335867732,-56.0493608539513,-56.0493745410101,-56.0493899356162,-56.049399874075,-56.0494135611338,-56.0494269146872,-56.0494508737102,-56.0494714042983,-56.049492281732,-56.0495042479033,-56.049516240755,-56.0495299278137,-56.0495436148725,-56.0495535533314,-56.0495703219794,-56.0495833420275,-56.0496021784085,-56.049623042502,-56.0496518040017,-56.0496647973694,-56.0496815793576,-56.0496894634237,-56.0497062320717,-56.0497301910946,-56.0497534697667,-56.0497657827835,-56.0497794698423,-56.0497921297046,-56.0498051364125,-56.0498225854114,-56.0498400477505,-56.049862285886,-56.0498749457483,-56.0498886461473,-56.0499023332061,-56.0499177278121,-56.0499300408289,-56.0499515986135,-56.0499796397417,-56.0500011708458,-56.0500264905705,-56.050035401833,-56.0500549185649,-56.050070313171,-56.0500911639242,-56.0501110008213,-56.0501233271783,-56.0501421635594,-56.0501606530949,-56.0501733129572,-56.0501945105561,-56.0502146942987,-56.050228728203,-56.0502448165001,-56.0502571295169,-56.0502691090284,-56.0502845169747,-56.0503002584263,-56.0503173739198,-56.0503392518695,-56.050351231381,-56.0503700677621,-56.0503827409646,-56.0504066999876,-56.0504217610883,-56.0504443460693,-56.0504665975449,-56.0504953323642,-56.0505240938639,-56.0505566039636,-56.0505685701348,-56.0505805496463,-56.0505925291578,-56.050611685704,-56.0506305087448,-56.050645223,-56.0506595904096,-56.0506719034264,-56.0506842297835,-56.0507071482698,-56.0507300800963,-56.0507492366425,-56.0507687400342,-56.050783801135,-56.0508005431025,-56.050818338947,-56.0508361214512,-56.0508535704501,-56.050871019449,-56.0508850400131,-56.0509117337798,-56.0509326112135,-56.0509445907249,-56.0509671757059,-56.0509918017395,-56.0510054887983,-56.0510226042919,-56.0510551143915,-56.051073603927,-56.0510944813607,-56.0511156922997,-56.0511300730496,-56.0511447873048,-56.0511663317491,-56.051188223039,-56.0512193724369,-56.0512313519484,-56.0512481205964,-56.0512686511845,-56.0512881679165,-56.0513076713082,-56.051321358367,-56.0513350454257,-56.0513531881157,-56.0513887798046,-56.0514072426597,-56.0514291472898,-56.0514397660995,-56.0514558543967,-56.0514746774375,-56.0514979561096,-56.051510615972,-56.0515352553458,-56.0515609085758,-56.0515742621292,-56.0515876156827,-56.0516149898002,-56.0516293705501,-56.0516430576088,-56.0516625610006,-56.0516765815647,-56.0516981526895,-56.0517234724141,-56.0517381733291,-56.0517518470477,-56.0517727244814,-56.0518058749112,-56.05181956197,-56.0518359704323,-56.0518493106455,-56.0518636780551,-56.0518828346013,-56.0519019778073,-56.0519248962936,-56.0519385700121,-56.0519522437307,-56.0519748153715,-56.0520107405657,-56.05202477447,-56.0520490669983,-56.0520648084499,-56.0520877269362,-56.0521205838814,-56.0521411144695,-56.0521681417415,-56.0521838965333,-56.0522013455322,-56.0522253045552,-56.0522355898595,-56.0522434739256,-56.0522622969664,-56.0522879768769,-56.0523068132579,-56.0523263166497,-56.0523406973995,-56.052352676911,-56.0523653501136,-56.0523821187616,-56.052401288648,-56.0524132681595,-56.0524276489093,-56.0524519414376,-56.0524683632401,-56.0524871862809,-56.0525056624762,-56.0525196830403,-56.0525323429027,-56.052545002765,-56.0525669073951,-56.0525812748048,-56.0525956555546,-56.0526124108624,-56.0526288326649,-56.0526411456817,-56.0526534720387,-56.0526702406868,-56.0526873428401,-56.0527020570953,-56.0527201864451,-56.0527379822895,-56.052757472341,-56.0527704790489,-56.0527909962969,-56.052817343218,-56.0528300030803,-56.0528481457703,-56.0528652612639,-56.0528799755191,-56.0528947031145,-56.0529128458044,-56.0529248253159,-56.0529371516729,-56.0529676073797,-56.0529809475929,-56.0529946346517,-56.0530161924363,-56.0530367096842,-56.0530545188689,-56.0530730350848,-56.0531068792058,-56.0531188587172,-56.0531328926215,-56.0531469131856,-56.0531626546372,-56.0531787295942,-56.0531992735225,-56.0532197907705,-56.0532331309837,-56.0532461376916,-56.0532629196798,-56.0532807155243,-56.0532981645232,-56.0533098238695,-56.0533255653211,-56.0533447352075,-56.0533594494627,-56.053369041076,-56.0533909590463,-56.0534186666692,-56.0534460274465,-56.0534580202982,-56.0534771768444,-56.0535021497235,-56.0535148095859,-56.0535278162938,-56.0535456121382,-56.0535634079827,-56.0535753874941,-56.0535877138512,-56.0536072305831,-56.0536175025473,-56.0536370192792,-56.0536472912434,-56.0536596176004,-56.0536736381645,-56.0537064951097,-56.0537304674729,-56.0537544131556,-56.0537746235786,-56.0537920725775,-56.0538143373934,-56.0538266504102,-56.0538400039636,-56.0538588270045,-56.0538725274035,-56.0538882821953,-56.0539040236469,-56.0539139621057,-56.0539358800761,-56.0539482064331,-56.0539684168561,-56.0539886139389,-56.0540026611834,-56.0540146406949,-56.0540372256759,-56.0540529671275,-56.0540721236737,-56.0540909467146,-56.0541176404812,-56.0541368103676,-56.054155980254,-56.0541741096038,-56.0541925991393,-56.0542066330436,-56.0542210004533,-56.054241877887,-56.054263088826,-56.0542843131052,-56.0543079252826,-56.0543287893761,-56.0543407822278,-56.0543732923274,-56.054389033779,-56.0544088973565,-56.0544256793447,-56.0544393664035,-56.0544523864516,-56.0544705424818,-56.0544941679994,-56.0545068278618,-56.0545201814152,-56.0545338818142,-56.0545523580095,-56.0545609357666,-56.0545797588075,-56.0545910579681,-56.0546033843251,-56.0546150303312,-56.0546324793301,-56.0546475537711,-56.0546667236575,-56.0546817980984,-56.0546982332411,-56.0547147084044,-56.0547338782908,-56.054753034837,-56.0547660682253,-56.0547804756556,-56.0547941893948,-56.0548013931099,-56.0548123587652,-56.0548263926695,-56.054840439914,-56.0548551541692,-56.0548678273718,-56.0548777658306,-56.0549000306465,-56.0549123570035,-56.0549260574025,-56.0549397444613,-56.0549537917058,-56.0549678256101,-56.0549832335564,-56.0550024034428,-56.0550147164596,-56.0550379951317,-56.0550602466073,-56.0550722261188,-56.0550873005597,-56.0551064837863,-56.0551314700057,-56.0551451570645,-56.0551612453616,-56.055177346999,-56.0551982244327,-56.055218768361,-56.0552406729911,-56.0552625776213,-56.0552810671568,-56.0553142576073,-56.0553262371188,-56.0553560124747,-56.0553686856772,-56.0553899232967,-56.0554039705412,-56.0554224734169,-56.0554399357561,-56.0554607998495,-56.0554796228904,-56.0554888809984,-56.0554967650644,-56.0555101186178,-56.0555214311186,-56.0555467641835,-56.0555631993262,-56.0555748453324,-56.055595029075,-56.0556124914141,-56.0556265253184,-56.055646082071,-56.0556649184521,-56.0556875167733,-56.0556994829445,-56.0557169586238,-56.0557344209629,-56.0557515497967,-56.0557696924867,-56.0557915837766,-56.0558087126104,-56.0558306172405,-56.0558525218706,-56.0558727322936,-56.0558891674363,-56.0559059627648,-56.0559272003842,-56.0559484513439,-56.0559638459499,-56.0559772128436,-56.0559973965862,-56.0560080287361,-56.0560330149555,-56.0560549329258,-56.0560638441883,-56.0560854286533,-56.056096047463,-56.0561104415531,-56.0561200331664,-56.0561279172324,-56.0561358012984,-56.0561467802939,-56.0561598136822,-56.0561687249446,-56.0561827588489,-56.0561933776587,-56.0562057173559,-56.0562132545764,-56.0562341586905,-56.0562475255841,-56.0562557564957,-56.0562646677581,-56.056279048508,-56.0562893204722,-56.0562989254257,-56.0563088638845,-56.0563225642835,-56.0563314755459,-56.0563513524636,-56.0563592365297,-56.0563784197563,-56.0563897189169,-56.0563976163231,-56.0564270848541,-56.0564486826593,-56.0564839808635,-56.0565199460784,-56.0565357008702,-56.0565490677638,-56.0565713325797,-56.0565792166457,-56.0565888215992,-56.0565984132125,-56.0566097257133,-56.0566210515544,-56.0566299628168,-56.0566388740792,-56.0566522276327,-56.0566693564664,-56.0566772405325,-56.0566919814681,-56.0567111780349,-56.056730708107,-56.0567457958882,-56.0567656861461,-56.0567759714505,-56.0567862567549,-56.0567958483682,-56.0568139910582,-56.0568222219698,-56.056839003958,-56.0568595745668,-56.0568804786809,-56.0568928183781,-56.0569051580754,-56.0569157902253,-56.0569376815152,-56.0569674168505,-56.0569893081404,-56.056998232743,-56.0570051296333,-56.0570075708923,-56.0570093318004,-56.057013120421,-56.057024446262,-56.057032330328,-56.0570405612396,-56.0570549419894,-56.0570631595608,-56.0570727645143,-56.0570833966642,-56.0570950426704,-56.0571162802898,-56.0571334224638,-56.0571505512976,-56.0571758843625,-56.057194373898,-56.0572029383149,-56.0572190399523,-56.0572385833647,-56.0572509230619,-56.0572632494189,-56.0572738682286,-56.0572937318061,-56.057322506646,-56.0573389417887,-56.0573468258547,-56.0573666894322,-56.0573872333606,-56.057403334998,-56.0574166885514,-56.0574379128306,-56.0574574295626,-56.0574748919017,-56.0574875651042,-56.0575002383068,-56.0575177139861,-56.0575355231708,-56.0575533190152,-56.0575694073124,-56.0575947403773,-56.057605359187,-56.057627944168,-56.0576399370197,-56.0576546646151,-56.0576861475183,-56.0577107735519,-56.0577302636034,-56.0577531820897,-56.0577696172324,-56.0577939231009,-56.0578110519347,-56.0578288877998,-56.0578415743425,-56.0578559684326,-56.057872763761,-56.0578840629216,-56.0579004980643,-56.0579117972249,-56.0579227628802,-56.0579375038158,-56.0579501770184,-56.0579662653155,-56.0579888769769,-56.0580025907161,-56.058011155133,-56.0580303250194,-56.0580433450675,-56.0580525898353,-56.0580618479433,-56.0580752014967,-56.0580861804922,-56.0580964791368,-56.0581091523393,-56.0581297096079,-56.0581502535363,-56.0581635937495,-56.0581769473029,-56.0581906477019,-56.0582132727036,-56.0582283604847,-56.0582369382418,-56.0582451691534,-56.0582564949944,-56.0582845894834,-56.0583051334118,-56.0583123371269,-56.0583243299786,-56.0583373633669,-56.0583531181588,-56.0583675122488,-56.0583788247496,-56.0583942460361,-56.0584123887261,-56.0584206196377,-56.0584350003875,-56.0584497413231,-56.0584655094552,-56.0584733935212,-56.0584901755094,-56.0585113997886,-56.05853776005,-56.0585494193963,-56.0585631197953,-56.0585771670398,-56.0585908674388,-56.0586049013431,-56.0586189352474,-56.0586357172357,-56.0586524858837,-56.0586644653952,-56.0586726963067,-56.0586901586458,-56.0587055799323,-56.0587244029732,-56.0587466411086,-56.0587743620717,-56.0587935319581,-56.058808606399,-56.0588202524052,-56.0588394356318,-56.0588514151433,-56.0588637415003,-56.058875734352,-56.0588942372277,-56.0589058832339,-56.0589219581908,-56.0589394205299,-56.0589476514415,-56.0589654606261,-56.0589750522394,-56.0589843103474,-56.0589932216098,-56.0590107106294,-56.059019635232,-56.0590401791604,-56.0590600427379,-56.059080573326,-56.0591038653383,-56.0591158448498,-56.0591278243612,-56.0591504226824,-56.0591915238794,-56.0592240739996,-56.0592497539101,-56.059267576435,-56.0592853989598,-56.0593097181685,-56.0593347310683,-56.0593518599021,-56.0593635059082,-56.0593909067062,-56.059444014095,-56.0601867914669,-56.0602782585179,-56.0605682905517,-56.0619146309646,-56.0637116817071,-56.0637314919237,-56.0654457893641,-56.0660223400394,-56.0672430629308,-56.0678851674138,-56.0685228562863,-56.0686396631933,-56.0699914937002,-56.0710840838435,-56.071203323055,-56.071466947963,-56.0718679014116,-56.0723034420361,-56.0729575212448,-56.0731725356505,-56.0750330939709,-56.0751144223297],&#34;lat&#34;:[-34.8899725444296,-34.8896538287432,-34.889596992805,-34.8892691849955,-34.8891743117954,-34.8885277498698,-34.8883438702898,-34.8882627250765,-34.8880446112479,-34.887456287555,-34.8872749486143,-34.8865840078672,-34.8864081553537,-34.886070805101,-34.8859799127536,-34.8856190317682,-34.8854519812409,-34.8852260466451,-34.8849489434219,-34.8844789093764,-34.8843574632863,-34.8841557453438,-34.8837661002359,-34.8833495053778,-34.8831335598425,-34.8829281892775,-34.8828243457152,-34.8825394206631,-34.882315074002,-34.8821714898039,-34.8818797123203,-34.8813902422274,-34.8812962250388,-34.8809767698733,-34.8807841109708,-34.8803468476374,-34.8797788982366,-34.8793959890501,-34.8789648894536,-34.8788078358684,-34.8785859193187,-34.8785398659901,-34.8796672885519,-34.8798206641099,-34.8800687712318,-34.8807860185304,-34.8808582139926,-34.880221483948,-34.8802125114039,-34.8797394716142,-34.8797740044318,-34.8799542724287,-34.8798503427007,-34.879748162284,-34.8797201834856,-34.8797190569168,-34.8789220058572,-34.8778010298394,-34.877696512686,-34.8777243768234,-34.8777585474913,-34.8776431746892,-34.8775496602758,-34.8774908244266,-34.8774770165333,-34.8774737169333,-34.8774465057901,-34.8774386394927,-34.8773598163698,-34.8773442344989,-34.8773253033112,-34.8772673999749,-34.8772359840433,-34.8772070235093,-34.877188910506,-34.8771556505564,-34.8771510124927,-34.8771153010919,-34.8770908178013,-34.8770861172893,-34.8758878523463,-34.875836042472,-34.8757655519515,-34.875735170206,-34.8757346718592,-34.8757083211861,-34.8756818604563,-34.8756333300113,-34.8755661691459,-34.8754839015499,-34.8754060697853,-34.8753246585892,-34.8764779620707,-34.8763226217217,-34.8763156168744,-34.8762932636638,-34.8761640258312,-34.8759894986725,-34.8759588119053,-34.8758514136594,-34.8758288279347,-34.8758479472773,-34.8758162375653,-34.8749115177542,-34.8747766361189,-34.8746527084178,-34.8746479413916,-34.8745117399119,-34.8743683888482,-34.8743603216912,-34.8742096901067,-34.8740262209025,-34.8738406159999,-34.8737415462991,-34.8734604981862,-34.873194637877,-34.873024140861,-34.8729328934941,-34.8724629698398,-34.8709780610017,-34.871261619886,-34.8714107865445,-34.8715149995236,-34.8716768725964,-34.8717001574691,-34.8717484388783,-34.8717336146933,-34.8717827240954,-34.8720330439512,-34.8724696641371,-34.8730093523612,-34.873256886203,-34.8734824336264,-34.873712057248,-34.8739419411771,-34.874046000232,-34.874634887861,-34.8748957780245,-34.8753869816766,-34.8755444914553,-34.8757966597508,-34.8760353085655,-34.8761005763185,-34.8761892021203,-34.87663677002,-34.8773569284261,-34.877803368314,-34.8778779682775,-34.8781089301469,-34.8781868205704,-34.8783406496058,-34.8783932328414,-34.8783994310551,-34.8784223850169,-34.8783393748447,-34.8783023361169,-34.8782836424767,-34.8782325505512,-34.8781794539795,-34.8781800085567,-34.8782865666284,-34.8783751490478,-34.8785254112115,-34.8787270837648,-34.8789633019809,-34.8792810593782,-34.87939517795,-34.8795012398778,-34.879456727684,-34.8793775062575,-34.8793083477767,-34.8788397730823,-34.8784728508857,-34.8781906393584,-34.8779482851366,-34.8778499801418,-34.8778291847215,-34.8775901815648,-34.8774760739871,-34.8774829448968,-34.8775480071309,-34.8776806759807,-34.8779824079398,-34.8782039446576,-34.8782541648139,-34.8783899633543,-34.878514961617,-34.8786049204597,-34.8788028286209,-34.879072529022,-34.8797249218398,-34.8800831983017,-34.8802105881075,-34.8804982650403,-34.8809278943793,-34.8814934667998,-34.8819868144777,-34.8819962634933,-34.8819798920076,-34.8820729267215,-34.8821132471831,-34.8824930262885,-34.8832344711009,-34.8840731575719,-34.8844301959304,-34.88451305404,-34.8846457382091,-34.8846911084288,-34.8847534546751,-34.8847544267025,-34.8847724053496,-34.8847813914423,-34.8847903769096,-34.8847993640445,-34.8848083511794,-34.884821831048,-34.8848308040089,-34.8848487864079,-34.8848667548414,-34.8848757380159,-34.8848892245546,-34.8848982087713,-34.8849026792018,-34.88491165654,-34.8849206409651,-34.8849341164565,-34.8849475775654,-34.8849655595475,-34.8849745558538,-34.8849835479912,-34.8849880323873,-34.8850015270552,-34.8850104998077,-34.8850194842328,-34.8850329618085,-34.8850419499856,-34.8850509360783,-34.8850599263398,-34.8850689172266,-34.885082392718,-34.8851003761592,-34.8851138651992,-34.8851228598379,-34.8851318553104,-34.8851408576615,-34.8851543571235,-34.8851678565856,-34.8851768474724,-34.8851858433618,-34.8851993290667,-34.885212797888,-34.8852172801996,-34.8852217629281,-34.8852262293982,-34.8852352219526,-34.8852397073909,-34.8852441846999,-34.88525316579,-34.8852621462548,-34.8852711200495,-34.8852846113823,-34.8852890920265,-34.8852980735334,-34.885302556262,-34.8853070391989,-34.88531152693,-34.8853160140358,-34.8853204880098,-34.8853294816064,-34.8853384647809,-34.8853474533749,-34.885356441552,-34.8853609286578,-34.8853699228796,-34.8853789081386,-34.8853878940228,-34.8853923790442,-34.8854013709732,-34.8854103591503,-34.885419347119,-34.8854283313357,-34.8854373155524,-34.8854417972388,-34.8854507908353,-34.8854597585852,-34.885473234285,-34.8854867193646,-34.8854911989665,-34.8854956810697,-34.8855001556691,-34.8855046394398,-34.8855091244611,-34.8855181180577,-34.8855316156437,-34.8855360814886,-34.8855450694572,-34.8855495571883,-34.8855540420013,-34.8855630335134,-34.8855720171048,-34.8855810000709,-34.8855899711559,-34.8855944445045,-34.8855989305681,-34.8856034170486,-34.885607893107,-34.8856123577012,-34.8856257904621,-34.8856302708978,-34.8856347471646,-34.8856482166112,-34.885652703717,-34.8856616910603,-34.8856706715251,-34.8856841563963,-34.8856976458531,-34.8857066442438,-34.8857201449565,-34.8857336506717,-34.8857426394742,-34.8857561176752,-34.885769617971,-34.8857831065941,-34.885792104151,-34.8858055915235,-34.8858145782415,-34.8858235778828,-34.8858460874082,-34.8858640916935,-34.8858821043164,-34.8858911047915,-34.8859001065173,-34.8859091086599,-34.8859226135414,-34.8859315965075,-34.8859405923969,-34.8859450726241,-34.8859495599383,-34.8859585412369,-34.885963028968,-34.8859720102665,-34.8859809923988,-34.8859899649429,-34.8859944443364,-34.8859989153922,-34.886003386448,-34.8860123702479,-34.886021349462,-34.8860303136684,-34.8860392995527,-34.88604828502,-34.8860572667354,-34.886066237612,-34.8860797153961,-34.886084193539,-34.8860931848427,-34.8861021553023,-34.8861156330865,-34.8861201128968,-34.8861290971136,-34.8861335748395,-34.8861425619744,-34.8861515470249,-34.8861560318378,-34.8861650185558,-34.8861785167672,-34.8861920220656,-34.8862010233744,-34.8862055031848,-34.8862099888315,-34.8862189672119,-34.8862279547636,-34.886232441661,-34.8862369285583,-34.886245923614,-34.8862548999099,-34.8862593755515,-34.8862683576838,-34.8862773406499,-34.8862818258797,-34.8863043299856,-34.8863133146192,-34.8863222934165,-34.8863267811476,-34.8863357599449,-34.8863492452329,-34.886353725877,-34.8863672170014,-34.8863762149752,-34.8863852029439,-34.8863941913294,-34.8864076620266,-34.8864211473146,-34.8864301369508,-34.8864436214051,-34.886452622714,-34.8864661096695,-34.8864750963876,-34.886479582868,-34.8864930464782,-34.8865065250962,-34.8865155051441,-34.8865199870388,-34.8865244689336,-34.8865289504115,-34.8865379279581,-34.8865468988346,-34.8865558976422,-34.8865648868615,-34.8865738706613,-34.8865873538649,-34.8866008379024,-34.8866098162827,-34.8866232894812,-34.8866322682785,-34.8866412374875,-34.8866547277781,-34.8866637157467,-34.8866727178894,-34.8866862169345,-34.8866997009719,-34.8867041878692,-34.8867086710147,-34.8867131449887,-34.8867176302185,-34.8867176089575,-34.8867265860872,-34.8867310709002,-34.8867445386792,-34.8867535183102,-34.8867580002049,-34.8867669885905,-34.8867714742372,-34.8867759603008,-34.8867849432669,-34.886820847617,-34.8868343166467,-34.8868432966946,-34.8868522759087,-34.8868567598879,-34.8868657570279,-34.8868792418991,-34.8868927167651,-34.8868972024118,-34.8869061841272,-34.8869151666764,-34.8869241638165,-34.8869331446981,-34.8869421393369,-34.8869556242081,-34.8869690899027,-34.8869825760245,-34.8869960646476,-34.8870095457668,-34.8870185449912,-34.8870275283742,-34.887036519261,-34.8870499849557,-34.8870634648242,-34.8870769526136,-34.8870859334952,-34.8870949206301,-34.8871039090157,-34.8871128969843,-34.8871218803673,-34.8871353706579,-34.8871488492758,-34.8871623245587,-34.8871668114561,-34.8871758052611,-34.8871847932297,-34.8871937928711,-34.8872072731565,-34.8872162502863,-34.8872207363499,-34.8872341953744,-34.8872476719079,-34.8872521575546,-34.8872566432013,-34.887265623666,-34.887274603714,-34.887283583345,-34.8872925633929,-34.887297047372,-34.8873060374251,-34.8873150062172,-34.8873284815001,-34.8873419626193,-34.8873509439179,-34.8873554262295,-34.8873599006204,-34.8873643750113,-34.8873733342151,-34.8873823105111,-34.8873867928227,-34.887395785794,-34.8874002718576,-34.8874047537523,-34.887413741721,-34.8874227221858,-34.887431700983,-34.8874406797803,-34.8874496544087,-34.8874586523826,-34.8874631392799,-34.8874856279612,-34.8874946130117,-34.8875036030648,-34.8875170658412,-34.8875260371346,-34.8875305244488,-34.8875395028292,-34.8875439797214,-34.8875529631043,-34.8875664371366,-34.8875799107519,-34.8875978683465,-34.8876158255241,-34.8876203036669,-34.8876247909812,-34.8876337693616,-34.8876427281485,-34.8876516865185,-34.8876561629938,-34.8876606494743,-34.8876696107625,-34.8876785895598,-34.8876920594232,-34.8877010440568,-34.887705520949,-34.8877145034982,-34.8877234852136,-34.8877369371511,-34.8877414232147,-34.8877504166028,-34.8877548968301,-34.8877773838439,-34.8877908612112,-34.8877998391746,-34.8878043194019,-34.8878088062992,-34.8878132923628,-34.8878267780677,-34.8878357797935,-34.8878402358416,-34.8878492017155,-34.8878581609193,-34.887862629057,-34.8878716145244,-34.8878850610424,-34.8879030144681,-34.8879164809965,-34.8879299475249,-34.8879389188183,-34.8879478884441,-34.8879523599168,-34.8879613324609,-34.8879748285878,-34.8879883363875,-34.888001837517,-34.8880108388259,-34.888019821792,-34.8880197867739,-34.8880107404418,-34.8880017007799,-34.8879971605217,-34.8880016340788,-34.8880151277044,-34.8880331582533,-34.8880467023216,-34.8880557365641,-34.8880737608598,-34.8880872365595,-34.8880962270295,-34.8881007114255,-34.8881051954047,-34.8881141854578,-34.8881366195276,-34.888154570452,-34.8881859999943,-34.8882174195315,-34.8882533463933,-34.8882713035709,-34.8882892603317,-34.8882982303744,-34.8883072112561,-34.8883161921378,-34.8883206656949,-34.8883386266245,-34.8883431005985,-34.8883520814801,-34.8883610631956,-34.8883790145369,-34.8884150189386,-34.8884285125643,-34.888442002438,-34.8884509854041,-34.8884554577106,-34.8884599283495,-34.8884598912471,-34.8884553480707,-34.8884508032268,-34.8884462758919,-34.8884462337869,-34.8884461916818,-34.8884506777454,-34.8884551646428,-34.8884641371868,-34.888468621166,-34.8884776128866,-34.8884866046072,-34.8884910902539,-34.8885000823913,-34.8885090753626,-34.8885225585662,-34.8885315490362,-34.8885405353373,-34.8885495212215,-34.8885585058551,-34.8885674904887,-34.888585459756,-34.8885989216986,-34.8886123948971,-34.8886258685124,-34.8886303554098,-34.8886393504654,-34.8886438340277,-34.8886528240808,-34.8886618057962,-34.8886617770314,-34.8886527348681,-34.8886481937762,-34.8886571754916,-34.8886751943677,-34.8887022554071,-34.8887157702938,-34.8887292680883,-34.8887427546269,-34.8887472402736,-34.8887517259203,-34.8887562111502,-34.8887606959631,-34.8887651799423,-34.8887696639214,-34.8887741474837,-34.8887786314629,-34.8887786043656,-34.8887830845928,-34.8887875652369,-34.8887920454641,-34.8887965261083,-34.8888010071693,-34.8888054878134,-34.8888099688744,-34.8888144503523,-34.8888189314133,-34.8888279202157,-34.8888368915091,-34.8888638228983,-34.8888907551213,-34.8888997364198,-34.8889042112276,-34.8889176802572,-34.8889311497038,-34.8889491218892,-34.8889625888344,-34.8889760832938,-34.8889895873415,-34.8890031001438,-34.8890211106823,-34.8890301119912,-34.8890390837014,-34.8890390491002,-34.8890300023513,-34.8890299664995,-34.8890344392228,-34.8890434234395,-34.8890524239146,-34.8890659246273,-34.8890794307595,-34.8890974367122,-34.8891109303379,-34.8891199108027,-34.8891243977,-34.8891288837636,-34.8891333689934,-34.8891378538064,-34.8891378317116,-34.8891378087831,-34.8891422806728,-34.8891467546468,-34.8891557371959,-34.8891692299879,-34.8891917207536,-34.8892052068754,-34.8892141890077,-34.889223150296,-34.8892276359427,-34.8892321215893,-34.8892320999115,-34.8892365638803,-34.8892410478595,-34.8892500191529,-34.8892590104566,-34.8892679859188,-34.8892724715655,-34.8892769455395,-34.889281417846,-34.8892904099835,-34.8892948847912,-34.8893038719262,-34.8893128565598,-34.8893173397052,-34.8893263310089,-34.8893353114737,-34.8893443044449,-34.8893533032525,-34.8893622853848,-34.8893667618601,-34.8893712324991,-34.8893802279716,-34.8893892101039,-34.8894026995607,-34.8894116725217,-34.8894206488177,-34.8894251311293,-34.8894296117734,-34.8894340865812,-34.8894430487032,-34.8894475060019,-34.8894519891473,-34.8894564731265,-34.8894609579394,-34.889469939238,-34.8894744090432,-34.8894788930223,-34.8894833636613,-34.8894833378146,-34.8894877851082,-34.8894922499108,-34.8894922115577,-34.8894966813629,-34.889501162007,-34.8895146656379,-34.8895326490791,-34.8895416420503,-34.8895461268632,-34.8895551181669,-34.8895595913072,-34.8895685767745,-34.8895730557511,-34.8895775413978,-34.8895820270445,-34.8895910108444,-34.8895909849977,-34.8895954556367,-34.8896089500961,-34.8896224245452,-34.8896359140021,-34.889644886963,-34.8896583664147,-34.8896628495601,-34.889667331038,-34.889676328178,-34.8896808121572,-34.8896898034609,-34.8896987772556,-34.8897077560529,-34.8897167348501,-34.8897212221643,-34.8897302151356,-34.8897346991148,-34.8897391830939,-34.889748180234,-34.8897571657014,-34.8897706651634,-34.8897796472957,-34.8897886260929,-34.8898020980408,-34.8898065828537,-34.8898155691548,-34.8898245696299,-34.8898335550973,-34.8898470353828,-34.8898560100112,-34.8898604964917,-34.8898649804708,-34.8898694661176,-34.8898739509305,-34.8898829355641,-34.8898919193639,-34.8899008956599,-34.8899053813066,-34.8899143726103,-34.8899188565895,-34.8899233372336,-34.8899278237141,-34.8899322935193,-34.8899367533193,-34.8899367174675,-34.8899456879271,-34.8899546867347,-34.8899636680332,-34.8899681486773,-34.8899681136593,-34.8899725867995,-34.8899815797708,-34.8899950692276,-34.8900040521937,-34.8900085370067,-34.8900130084794,-34.8900174816196,-34.890021964765,-34.8900309510661,-34.8900354375466,-34.8900399240271,-34.8900489119957,-34.8900533918061,-34.8900623772735,-34.8900668470786,-34.8900713335591,-34.8900848230159,-34.8900938151534,-34.8901027889481,-34.8901117769168,-34.890120752379,-34.8901342359995,-34.8901432006228,-34.8901566734044,-34.8901701386821,-34.8901746259963,-34.8901791124768,-34.8901835989572,-34.890188073765,-34.8901970558973,-34.8902015373752,-34.8902060196869,-34.8902105061673,-34.8902149926478,-34.8902239672762,-34.8902329427384,-34.8902374167124,-34.890246398011,-34.8902508786551,-34.8902508503071,-34.8902553276162,-34.8902598040915,-34.8902642814006,-34.8902687587096,-34.890273241855,-34.8902822106471,-34.8902911894444,-34.8902956759249,-34.890304651387,-34.8903136235142,-34.8903181074934,-34.890327092127,-34.8903405574047,-34.8903495403708,-34.8903585183343,-34.8903674962978,-34.890376485934,-34.8903809682456,-34.8903854380508,-34.890389907856,-34.890403375635,-34.8904078629492,-34.8904168475828,-34.8904258272139,-34.8904348076787,-34.8904437881434,-34.8904482721226,-34.8904527561018,-34.8904617390679,-34.890475199343,-34.8904796749845,-34.8904886512805,-34.8904976475868,-34.8905066338879,-34.8905156160203,-34.8905245898149,-34.8905290754616,-34.8905380475888,-34.8905470172147,-34.8905515020276,-34.8905604933313,-34.8905739669466,-34.8905784492583,-34.890587440562,-34.8905919137022,-34.8905963968476,-34.8906053739774,-34.8906143452708,-34.8906143202579,-34.8906188034033,-34.890623274876,-34.8906232181801,-34.8906277021593,-34.8906276738113,-34.8906276512997,-34.8906321336113,-34.8906366084191,-34.8906365750686,-34.8906410432062,-34.8906410198609,-34.8906409965155,-34.8906454654869,-34.8906589249283,-34.8906634080737,-34.8906723802009,-34.8906768600112,-34.8906813281489,-34.8906992999174,-34.8907037713901,-34.8907127393485,-34.8907262338079,-34.8907307102832,-34.8907396832441,-34.890753186875,-34.8907621873501,-34.8907711694824,-34.8907846464328,-34.8907981350559,-34.8908071155207,-34.8908161043231,-34.8908205908035,-34.8908295837748,-34.8908385684084,-34.890847549707,-34.8908520361874,-34.8908610258236,-34.8908699979507,-34.8908744769273,-34.8908834582259,-34.8908879338674,-34.8908924170128,-34.8908969018258,-34.8909013874724,-34.8909103637684,-34.8909148460801,-34.8909193283917,-34.8909238073683,-34.8909282855111,-34.8909327719916,-34.8909372576383,-34.8909462431057,-34.8909507204147,-34.8909552018926,-34.8909596783679,-34.8909641548432,-34.8909686279834,-34.8909731127964,-34.8909775842691,-34.8909820465704,-34.8909865313833,-34.8909955143494,-34.891004498983,-34.8910134877855,-34.8910224765879,-34.891031459554,-34.8910404525252,-34.8910449390056,-34.8910584076184,-34.8910628915976,-34.8910628682522,-34.8910718445482,-34.8910763168547,-34.8910898071453,-34.8911078030929,-34.8911122520541,-34.8911167385345,-34.8911212208462,-34.8911257039916,-34.8911301838019,-34.8911346636123,-34.8911436424095,-34.8911481138822,-34.8911525978614,-34.8911570826743,-34.8911660673079,-34.8911750511078,-34.8911840349076,-34.8911975360372,-34.8912020158475,-34.8912109963123,-34.891215478624,-34.891224475764,-34.8912379593845,-34.8912469256753,-34.8912513854754,-34.8912603784466,-34.8912648524206,-34.891273823714,-34.8912783085269,-34.8912827933399,-34.8912917771397,-34.8913007601058,-34.8913052465863,-34.8913142395575,-34.8913232191885,-34.8913322154948,-34.8913411959596,-34.8913501922659,-34.8913546779126,-34.891359161058,-34.891372625502,-34.8913861049537,-34.8913950779146,-34.8914085640364,-34.8914175478362,-34.8914310297892,-34.8914355162697,-34.8914445067396,-34.8914534880382,-34.8914624785081,-34.891471465643,-34.8914804519441,-34.8914894490842,-34.891502931871,-34.8915119248422,-34.891525410964,-34.8915388970858,-34.891547886722,-34.8915523732024,-34.8915613478309,-34.8915703349658,-34.8915748089398,-34.8915837902384,-34.8915927581967,-34.8916017386615,-34.89161071996,-34.8916197020923,-34.8916286842247,-34.8916331673701,-34.8916376496817,-34.8916466276452,-34.891655604775,-34.8916645819047,-34.8916735548656,-34.8916780263383,-34.8916870193096,-34.8917004837535,-34.8917094708884,-34.8917229570102,-34.8917319424776,-34.8917409329475,-34.8917499242512,-34.8917634137081,-34.8917768939936,-34.8917813788065,-34.8917903692764,-34.8917993597464,-34.8918083418787,-34.8918173406863,-34.8918263219848,-34.8918353166236,-34.8918398022703,-34.8918487960753,-34.8918577798752,-34.8918667678438,-34.8918757483086,-34.8918892436018,-34.8918982290692,-34.8919252421672,-34.8919387299565,-34.8919432039305,-34.891956701725,-34.8919792116673,-34.8919927094618,-34.8920017107707,-34.8920107054094,-34.8920196950456,-34.8920286846818,-34.8920376734842,-34.892046664788,-34.892055661928,-34.892069143881,-34.8920781368522,-34.8920871273222,-34.8920961169583,-34.8921051065945,-34.8921140962307,-34.8921230833656,-34.8921320646642,-34.8921365503109,-34.8921455241056,-34.8921590060585,-34.892163492539,-34.8921769869984,-34.8921904747878,-34.8922039525719,-34.8922084357173,-34.8922174211847,-34.8922264074858,-34.8922353854493,-34.8922488707374,-34.8922578461996,-34.8922713289863,-34.8922803111187,-34.8922937747289,-34.8922982603756,-34.8923117298221,-34.8923207219596,-34.8923342064139,-34.8923477025408,-34.8923656984884,-34.8923746814545,-34.8923791529272,-34.8923881342258,-34.8923971313659,-34.8924061318409,-34.8924151223109,-34.8924241169497,-34.8924375939001,-34.8924465793675,-34.8924555731725,-34.8924645519697,-34.8924735357695,-34.892482524572,-34.8925050261766,-34.892518513966,-34.892531995919,-34.8925364815656,-34.8925499718563,-34.8925589556561,-34.8925724467805,-34.8925814289128,-34.8925904052088,-34.8925993890086,-34.8926128717954,-34.8926218480914,-34.8926353333794,-34.8926488261713,-34.8926623172957,-34.8926803082407,-34.8926982991858,-34.8927072863207,-34.8927162776244,-34.8927252564217,-34.8927342510604,-34.8927477288446,-34.8927612116313,-34.8927702096052,-34.8927882005502,-34.8927971960228,-34.892810691316,-34.892819688456,-34.8928286889311,-34.8928376894062,-34.8928511905358,-34.892864689164,-34.8928736871379,-34.892882676774,-34.8928916722466,-34.8929006643841,-34.8929096656929,-34.892927656638,-34.8929411544325,-34.8929501540738,-34.8929591528814,-34.8929681416838,-34.8929771371563,-34.8929861342964,-34.8929951314365,-34.8930086283972,-34.893017626371,-34.8930356198174,-34.8930446202924,-34.893058107248,-34.8930671018868,-34.8930761015281,-34.8931030921146,-34.8931255895504,-34.8931615831132,-34.8931885620269,-34.8931975491618,-34.8932110461225,-34.8932290354,-34.8932380358751,-34.8932470330152,-34.8932560301553,-34.8932695312848,-34.8932830324144,-34.8932920303882,-34.8933010291958,-34.8933100196657,-34.8933235107901,-34.8933325104314,-34.8933460057246,-34.8933685073293,-34.8933865007756,-34.8934045025596,-34.8934270024968,-34.8934405052938,-34.8934495007663,-34.8934584979064,-34.8934674808725,-34.8934764796801,-34.8934899716382,-34.8935124707416,-34.8935304616866,-34.8935439611486,-34.8935529532861,-34.8935664560832,-34.8935709242209,-34.8935708725275,-34.893575341499,-34.8935888467973,-34.8936113692461,-34.8936293927079,-34.8936474178372,-34.8936609314732,-34.8936744326028,-34.8936834330779,-34.8936924327192,-34.8937014215217,-34.8937104203292,-34.8937194174693,-34.8937329202664,-34.8937419132376,-34.8937599041826,-34.8937779017978,-34.8937913929222,-34.8938048698726,-34.8938138511712,-34.8938228499788,-34.8938363427707,-34.8938588435415,-34.893867835679,-34.8938768278165,-34.893885823289,-34.8938993094108,-34.8939217935065,-34.8939307789738,-34.8939397794489,-34.8939487582462,-34.8939622435343,-34.8939757354924,-34.8939847259623,-34.8939937030921,-34.8940071900476,-34.8940161730137,-34.8940251651512,-34.8940341564549,-34.8940476467455,-34.8940611362024,-34.8940701191685,-34.8940791046358,-34.8940880742617,-34.8940970697342,-34.8941060443627,-34.8941150373339,-34.8941285317934,-34.8941374905803,-34.8941419545491,-34.8941464268556,-34.8941508941595,-34.8941598787931,-34.8941733574111,-34.8941868477017,-34.8942048444831,-34.8942228504359,-34.8942363457291,-34.8942498368535,-34.8942588314922,-34.8942678161258,-34.8942768107646,-34.8942858054034,-34.8942992998628,-34.8943082920003,-34.8943172774677,-34.8943352659114,-34.8943487620384,-34.894357760846,-34.8943667413108,-34.8943757326145,-34.8943847297545,-34.8943937277283,-34.8944027181983,-34.8944162201616,-34.8944342294494,-34.8944432207532,-34.8944567060412,-34.8944701904955,-34.8944746744746,-34.8944836649446,-34.8944926545808,-34.8945151495153,-34.8945331504655,-34.8945421492731,-34.8945511489145,-34.8945691565348,-34.8945916422979,-34.8946051267522,-34.8946141280611,-34.8946276283569,-34.8946411261514,-34.8946546189433,-34.8946681150702,-34.8946771088752,-34.8946906025009,-34.8946995846333,-34.8947085834408,-34.8947175722432,-34.8947355740272,-34.8947490676529,-34.8947580672942,-34.8947715584186,-34.8947805355484,-34.8947940099975,-34.8948075102933,-34.8948164999295,-34.8948299960564,-34.8948389856926,-34.8948434680042,-34.8948524576404,-34.8948614414403,-34.8948704260739,-34.8948749117206,-34.8948839113619,-34.8948974016525,-34.8949063879537,-34.8949153692522,-34.8949243438807,-34.894933308504,-34.8949422889687,-34.8949557834282,-34.8949647763994,-34.894978263355,-34.8949827490017,-34.8949917411392,-34.8950007341104,-34.8950142227335,-34.8950232157047,-34.8950276946813,-34.8950366776474,-34.8950456772887,-34.8950591667456,-34.8950681630519,-34.8950771610257,-34.8950861589995,-34.8951086631055,-34.8951176610793,-34.8951311455336,-34.8951446316554,-34.8951536096189,-34.8951670890706,-34.8951715747173,-34.8951805676885,-34.8951940488077,-34.8952210177163,-34.8952480016326,-34.89526598424,-34.8952794736969,-34.8952974704783,-34.8953154547532,-34.8953379455189,-34.8953514358096,-34.8953604296146,-34.8953784088869,-34.8954233845821,-34.8951989898366,-34.8951572645393,-34.8950177479329,-34.8945486685643,-34.8939735410273,-34.8939689986847,-34.89337097777,-34.8931716232912,-34.8927502468098,-34.8925237208179,-34.8923062136439,-34.8922654359472,-34.8917897072684,-34.8914045853178,-34.891362253759,-34.891268662719,-34.8911281977777,-34.8909881738824,-34.8907778871886,-34.8906963149776,-34.8900152273337,-34.8899725444296]}]],[[{&#34;lng&#34;:[-56.0628208332586,-56.062460293165,-56.0621663028211,-56.0622029270399,-56.0627635127121,-56.0631429884174,-56.0631417070615,-56.0633064831819,-56.0634422484209,-56.0634796111977,-56.0642741727427,-56.0651636820353,-56.066903661226,-56.0669262462069,-56.0687010014937,-56.0687466116827,-56.0690936573296,-56.0692150132493,-56.0692901453302,-56.0698650226508,-56.0702134225918,-56.070897245641,-56.0713603282583,-56.0726130527079,-56.0736826158153,-56.0753118257345,-56.076577676636,-56.077137948697,-56.0780214611176,-56.0781686508694,-56.0795758546278,-56.0805215233486,-56.0808385042783,-56.0815096283972,-56.0823189447352,-56.0827662825194,-56.0832604101532,-56.0833778746469,-56.0834676837162,-56.0836517513532,-56.0836851710056,-56.0837740016922,-56.0842713915422,-56.0843849634475,-56.0849845993617,-56.0853333859066,-56.0858678281988,-56.0859759709326,-56.0868224360984,-56.0876427569405,-56.0877043348992,-56.0889475176914,-56.0894585653357,-56.0895249637128,-56.0901020135166,-56.0901240682325,-56.0903331243996,-56.0910334425624,-56.0917583614843,-56.0926670949189,-56.0933451773316,-56.0936591172733,-56.0944688626605,-56.095409091083,-56.0958269456088,-56.0961804454135,-56.0966160937078,-56.0966712448561,-56.0967104878872,-56.0967253048489,-56.0967355243881,-56.0967275881534,-56.0959590783828,-56.0947843581043,-56.094351243313,-56.0937405062069,-56.0927222144031,-56.0912359441254,-56.0896521532054,-56.0877397483119,-56.0863473088125,-56.0862166814447,-56.0855870433909,-56.084641889284,-56.0825970413703,-56.080854095822,-56.079607366185,-56.0767700962656,-56.0748043091256,-56.073652581817,-56.073012798531,-56.0719378123165,-56.0712533044483,-56.0704370571371,-56.0694665627334,-56.0681906020986,-56.0681421481228,-56.0675716993824,-56.0669152563341,-56.0655807704035,-56.0646660199141,-56.0640190451945,-56.0636604025765,-56.0628663500904,-56.0617366496963,-56.0607182735182,-56.0605497450745,-56.0601324008425,-56.0598919373592,-56.059829318272,-56.0596540881044,-56.059498162809,-56.0592618410289,-56.059063853314,-56.0589391877752,-56.0584888809782,-56.0580737504347,-56.0578259966669,-56.0575274729744,-56.0572947053423,-56.056618252415,-56.0563104246246,-56.0561681160973,-56.0554793830326,-56.0543837804535,-56.0538572371935,-56.0535604055947,-56.0530166347252,-56.0527432922523,-56.0524631589255,-56.0521559021274,-56.0520311109168,-56.0516988062658,-56.0512822645799,-56.0505481878113,-56.0502853610258,-56.0500314831862,-56.0494677552536,-56.0494311866851,-56.0491151630853,-56.0485378307815,-56.0480975362171,-56.0478839001822,-56.0475883284529,-56.0473853229749,-56.0465452536988,-56.0463602642186,-56.0458003725903,-56.0455424136149,-56.0452485663677,-56.0448445185585,-56.0442944056305,-56.044055439249,-56.043576865906,-56.0430235039084,-56.0425426539112,-56.0422557595253,-56.0420407596805,-56.0419162540743,-56.0417492752976,-56.0414990772964,-56.0412942279058,-56.041311632619,-56.0411854601181,-56.0411117040887,-56.0409342102461,-56.0408083367415,-56.0405055824781,-56.0403685570173,-56.0398021371513,-56.0398553682598,-56.0395877355202,-56.0394673442501,-56.0392639912133,-56.0387082815551,-56.0385178859209,-56.0383760300842,-56.0382567875226,-56.0382741642586,-56.0384127049636,-56.0386329630082,-56.0403763804285,-56.042161431972,-56.0422585047669,-56.0439804680203,-56.0439757967395,-56.043839415591,-56.0443776541883,-56.0446343543641,-56.0448187579034,-56.0451758376343,-56.0457148384887,-56.0475968541006,-56.0491789280137,-56.0493978312216,-56.0495898235754,-56.0513256800059,-56.0514777818601,-56.0524122599326,-56.0528880682132,-56.0536871582934,-56.0542781099061,-56.0548839156689,-56.0552196354749,-56.055618241046,-56.0556244532174,-56.0560031862387,-56.0569334259872,-56.0580741210344,-56.0579009408981,-56.0579918128389,-56.0580569999418,-56.0582250608806,-56.0582821152207,-56.0586912665712,-56.0589140931547,-56.0592703769342,-56.0596568827564,-56.0603692997376,-56.0605885122877,-56.0607229886187,-56.0614718934195,-56.0616117970669,-56.0619134337332,-56.0620478994395,-56.0623716482966,-56.0629611477887,-56.0629412172366,-56.0628208332586],&#34;lat&#34;:[-34.8777585474913,-34.8777243768234,-34.877696512686,-34.8778010298394,-34.8789220058572,-34.8797190569168,-34.8797201834856,-34.879748162284,-34.8798503427007,-34.8799542724287,-34.8797740044318,-34.8797394716142,-34.8802125114039,-34.880221483948,-34.8808582139926,-34.8807860185304,-34.8800687712318,-34.8798206641099,-34.8796672885519,-34.8785398659901,-34.8785859193187,-34.8788078358684,-34.8789648894536,-34.8793959890501,-34.8797788982366,-34.8803468476374,-34.8807841109708,-34.8809767698733,-34.8812962250388,-34.8813902422274,-34.8818797123203,-34.8821714898039,-34.882315074002,-34.8825394206631,-34.8828243457152,-34.8829281892775,-34.8831335598425,-34.8827812403088,-34.8825257285298,-34.8820020671162,-34.8819069894321,-34.8816542682361,-34.8808420360659,-34.8806344919468,-34.879957263933,-34.8795329194627,-34.8790090526245,-34.8788724374625,-34.8783472755698,-34.8778436138218,-34.877805409736,-34.8770341020826,-34.8767172523704,-34.876697398868,-34.8763429581455,-34.8763193865915,-34.8761877659481,-34.8757722746755,-34.8753231029877,-34.8747241217217,-34.8743469610404,-34.874134303431,-34.8736446464345,-34.8731499826364,-34.8729830406174,-34.8728309435377,-34.8726434989824,-34.8725892236096,-34.872539678599,-34.8725118802002,-34.8724621195534,-34.8724147632104,-34.8723704742613,-34.8723081560007,-34.8722851766162,-34.8722111877273,-34.8720691112915,-34.8718226678943,-34.8715469675696,-34.8712218034284,-34.8709226080714,-34.8709003332504,-34.8707573595152,-34.870603345086,-34.8702539615667,-34.8699418722809,-34.869971329973,-34.8700353713341,-34.8700796716809,-34.8701043810909,-34.870119106185,-34.8701679549695,-34.8701990549166,-34.870144641575,-34.8699947742604,-34.8696333443933,-34.8696196189477,-34.8694331140745,-34.8692184895338,-34.868780910059,-34.8684800865573,-34.8682769579555,-34.8681513048939,-34.8678913000488,-34.8675327042694,-34.8671791357984,-34.8670648352666,-34.8667875704847,-34.8666580760245,-34.8667671978595,-34.8668838800436,-34.8671018860564,-34.8673761476007,-34.8675116561521,-34.8676793159331,-34.8680012972006,-34.868131887146,-34.8681979057185,-34.8682750464655,-34.8683351947437,-34.8684707283152,-34.868552651804,-34.8686263032485,-34.8687654108004,-34.8690695127682,-34.8692755346282,-34.8692900868846,-34.8694016775554,-34.8694226670984,-34.8694342747138,-34.8694222991751,-34.869408354417,-34.8692749583666,-34.8690193957698,-34.8686395140566,-34.8685310335353,-34.8683688570658,-34.8681659942859,-34.8680859352117,-34.8679907207406,-34.8676800927988,-34.8675274722861,-34.8674246249446,-34.8674424406504,-34.8674303858689,-34.867612161797,-34.8676891945777,-34.868023770809,-34.8682156641272,-34.8683031062396,-34.8684125329078,-34.8684682738332,-34.8685327998399,-34.8684835606527,-34.8684235076484,-34.8684281533158,-34.8684680498694,-34.8684832185617,-34.8686339993913,-34.8686965408913,-34.8689367150027,-34.8692664579131,-34.869607254204,-34.8699013516749,-34.8700862566536,-34.8701973905905,-34.8702921988293,-34.8705172023498,-34.870653715776,-34.8709780610017,-34.8724629698398,-34.8729328934941,-34.873024140861,-34.873194637877,-34.8734604981862,-34.8737415462991,-34.8738406159999,-34.8740262209025,-34.8742096901067,-34.8743603216912,-34.8743683888482,-34.8745117399119,-34.8746479413916,-34.8746527084178,-34.8747766361189,-34.8749115177542,-34.8758162375653,-34.8758479472773,-34.8758288279347,-34.8758514136594,-34.8759588119053,-34.8759894986725,-34.8761640258312,-34.8762932636638,-34.8763156168744,-34.8763226217217,-34.8764779620707,-34.8753246585892,-34.8754060697853,-34.8754839015499,-34.8755661691459,-34.8756333300113,-34.8756818604563,-34.8757083211861,-34.8757346718592,-34.875735170206,-34.8757655519515,-34.875836042472,-34.8758878523463,-34.8770861172893,-34.8770908178013,-34.8771153010919,-34.8771510124927,-34.8771556505564,-34.877188910506,-34.8772070235093,-34.8772359840433,-34.8772673999749,-34.8773253033112,-34.8773442344989,-34.8773598163698,-34.8774386394927,-34.8774465057901,-34.8774737169333,-34.8774770165333,-34.8774908244266,-34.8775496602758,-34.8776431746892,-34.8777585474913]}]],[[{&#34;lng&#34;:[-56.1127831674957,-56.1126521807929,-56.1124419545007,-56.1121456061296,-56.1119476182874,-56.1117744829585,-56.1116685028704,-56.1115378192849,-56.1112859039072,-56.1108435393357,-56.1106906753705,-56.1104815866984,-56.1103391912725,-56.1102232658038,-56.1098392595768,-56.1079561292495,-56.1075819250533,-56.106744748294,-56.1066756793401,-56.1066463708916,-56.1065592859797,-56.1064974741017,-56.1064719142532,-56.1064210613604,-56.1062885396822,-56.1061680975671,-56.1060528002862,-56.1059798323051,-56.105766797273,-56.1055876382094,-56.1054500739306,-56.1054000681414,-56.1052645849359,-56.1047551555435,-56.1047213914638,-56.104608353167,-56.1045070942786,-56.1043391143137,-56.104306290719,-56.1042532100106,-56.1041901374825,-56.1041395847445,-56.1040217973319,-56.1039474123029,-56.1039443440539,-56.1038828856916,-56.1037972481928,-56.103725377794,-56.1036436689881,-56.1036085375365,-56.1033503844004,-56.1032054296435,-56.1030896099123,-56.1029911257882,-56.102913158912,-56.1030347149349,-56.1030858946629,-56.1031154365651,-56.1030552722034,-56.1031018228775,-56.1031682037785,-56.103045607219,-56.1029214898751,-56.1028913743438,-56.1029467428988,-56.1029464093934,-56.1030103156849,-56.1030572732354,-56.1031384417628,-56.1034929179085,-56.103561139759,-56.1035737062398,-56.1037614163801,-56.1039491465306,-56.104064472674,-56.1042093607298,-56.1044185486133,-56.1046834111613,-56.1046190593796,-56.1045069690715,-56.1044282494017,-56.1042427672738,-56.1038234499696,-56.1034766245899,-56.103352243825,-56.1032627788961,-56.1028779700287,-56.1022368815088,-56.1017530317598,-56.1010499823023,-56.100781106385,-56.1003590129248,-56.1000162106482,-56.0999745986506,-56.09947568625,-56.0994423930755,-56.0987493715403,-56.0978750646556,-56.0978748830763,-56.0971307892559,-56.0957298676382,-56.0953175207612,-56.0939340815053,-56.0938009528196,-56.0935326604637,-56.0927736770136,-56.0926878951189,-56.0925009965925,-56.0918903298169,-56.0915597306336,-56.0907391204488,-56.0847091039484,-56.0804323183006,-56.0799503830876,-56.079562069491,-56.0789789420906,-56.0791713346457,-56.0798308014163,-56.0804895344751,-56.0811875878124,-56.0813784595832,-56.0811831055007,-56.0809498585427,-56.0804449448124,-56.0803057730379,-56.0811173916104,-56.0815494210857,-56.0815951379964,-56.0827155758349,-56.0839474044538,-56.0839988910067,-56.0846320241964,-56.0849907025093,-56.0854227608551,-56.0854117129685,-56.0856049592972,-56.0861858455418,-56.0871362090019,-56.0877768260511,-56.0879478409146,-56.0881234381412,-56.0883497735965,-56.0883603336476,-56.0882135312712,-56.087540324081,-56.0873849839682,-56.0874276910594,-56.0866390427235,-56.0838189034298,-56.083218975451,-56.0794749845791,-56.0773413883839,-56.0756926405942,-56.076860149375,-56.0780351553556,-56.0780875090224,-56.0790789603392,-56.0792746812775,-56.0801815565771,-56.080219482809,-56.0801804047086,-56.0754894007073,-56.0747077359181,-56.0734752906404,-56.0724091305939,-56.0717218480525,-56.071372073932,-56.0706612464804,-56.0696365023789,-56.0695799270232,-56.0695073549521,-56.0695003637894,-56.0694656007516,-56.0694681837713,-56.0694865489221,-56.0694203941217,-56.0692811465684,-56.0690898148352,-56.0670988943915,-56.0636503167263,-56.0592416430604,-56.0536586304246,-56.0464633476432,-56.0465935334409,-56.0467352713734,-56.0470804642302,-56.0472522850699,-56.0475759711986,-56.0476824087281,-56.0478476626045,-56.0480093401625,-56.0482446831066,-56.0484253660035,-56.048557662513,-56.0485897526071,-56.0487093533386,-56.048763365573,-56.048958172309,-56.0489862648421,-56.0490864417163,-56.0494400025258,-56.0495799106721,-56.0498223866915,-56.0499093505699,-56.0500687394686,-56.0505778001457,-56.0508780840236,-56.0512584940632,-56.0521148178834,-56.0527122288226,-56.052915302899,-56.0529758874394,-56.0528138666178,-56.0525361121064,-56.0522499622273,-56.0518519035488,-56.0518941734802,-56.0519384880674,-56.0521985174546,-56.052972859782,-56.0534970403985,-56.0539297972641,-56.054810188787,-56.0550316418539,-56.0550212407381,-56.0549345660831,-56.0549108559572,-56.0548956224188,-56.0548454886065,-56.0547370977791,-56.0545972608936,-56.0545040002179,-56.0542597601137,-56.0542508918342,-56.0542379151735,-56.0542033552029,-56.0542102101923,-56.0542974203813,-56.054460904669,-56.0548241905291,-56.0552611352239,-56.0562132261242,-56.056222572477,-56.0561862677297,-56.0561709834348,-56.0561196541214,-56.0560516994283,-56.0560255865395,-56.0560936139779,-56.0563045476113,-56.0564060551675,-56.0566175658439,-56.0567110705447,-56.0571010930323,-56.0568165402312,-56.0567447524995,-56.0570844669653,-56.0573437733033,-56.0577281081568,-56.0581027952284,-56.0585074969795,-56.0587315542326,-56.0590662006642,-56.0591094207942,-56.0589921629445,-56.0587701613496,-56.058911434239,-56.0593764177753,-56.0595616205055,-56.0596624629524,-56.0598237155597,-56.0599751244624,-56.0601104604601,-56.060223005786,-56.0604557251165,-56.0605258854956,-56.0605547489635,-56.060635713378,-56.0607768110023,-56.060802023933,-56.060677652173,-56.0604915252251,-56.0602433547267,-56.0601204200854,-56.0599241583521,-56.0598919373592,-56.0601324008425,-56.0605497450745,-56.0607182735182,-56.0617366496963,-56.0628663500904,-56.0636604025765,-56.0640190451945,-56.0646660199141,-56.0655807704035,-56.0669152563341,-56.0675716993824,-56.0681421481228,-56.0681906020986,-56.0694665627334,-56.0704370571371,-56.0712533044483,-56.0719378123165,-56.073012798531,-56.073652581817,-56.0748043091256,-56.0767700962656,-56.079607366185,-56.080854095822,-56.0825970413703,-56.084641889284,-56.0855870433909,-56.0862166814447,-56.0863473088125,-56.0877397483119,-56.0896521532054,-56.0912359441254,-56.0927222144031,-56.0937405062069,-56.094351243313,-56.0942247447411,-56.0931112037929,-56.0930188361566,-56.0923351882115,-56.0931064239665,-56.093353630511,-56.0951611612191,-56.0952981670352,-56.095323200034,-56.095983195328,-56.096224904645,-56.0968670266725,-56.0986637253138,-56.0976310874432,-56.0966172331275,-56.0957481628381,-56.0961051945372,-56.0961672532091,-56.0967521415177,-56.0973674988732,-56.0974191944446,-56.0983311758661,-56.099043283118,-56.0993420105127,-56.0994824362672,-56.0997083861287,-56.1006679676761,-56.1010566347883,-56.1027101275369,-56.1038105217049,-56.1037636441957,-56.1043312702683,-56.1045490292388,-56.1049443998082,-56.1052871098859,-56.1054995661217,-56.1056898976139,-56.1058083653774,-56.106157825603,-56.10642478995,-56.1064840071565,-56.106548353675,-56.1069798428716,-56.1069884606494,-56.1072189661937,-56.1072631289695,-56.1077507938041,-56.1081667083018,-56.1083162987828,-56.1086506712272,-56.1096138746426,-56.110386079555,-56.1106627555773,-56.1106513697053,-56.1110061793564,-56.1114170645938,-56.1118720587996,-56.1119722042268,-56.1123477512393,-56.1124511078516,-56.112669937399,-56.1127552147469,-56.1130422472243,-56.1131651327839,-56.1134725968298,-56.1135836219428,-56.1136675064557,-56.1137748672396,-56.1139504044353,-56.1140674194239,-56.1140507160387,-56.1139853030124,-56.1138665649261,-56.1138705966647,-56.113647701657,-56.1146427815118,-56.1151220420121,-56.1152102341617,-56.1147093946461,-56.114590894356,-56.114415983113,-56.1143594817446,-56.1140892760549,-56.11405080288,-56.1139855292167,-56.1139592393426,-56.1139031395647,-56.1138782739024,-56.1138169889628,-56.1137240143468,-56.1136533112167,-56.1135805023191,-56.1124981935306,-56.1124178940805,-56.1119714438346,-56.1119637331914,-56.1131145600356,-56.1136159652898,-56.1143262982933,-56.1153854845428,-56.1162210917689,-56.1174892763913,-56.1181138394236,-56.1182217253417,-56.1200413627692,-56.1200703038901,-56.1203748051675,-56.1219485049878,-56.1220741080446,-56.1222474885701,-56.1237219992046,-56.123804174633,-56.1241178752676,-56.1241783058924,-56.1237254970011,-56.1222902149711,-56.1221219630728,-56.1206597112631,-56.1191682687547,-56.1179588183436,-56.1166908710974,-56.1164755392429,-56.1153852756853,-56.1142216509907,-56.112993331111,-56.112913431074,-56.1127831674957],&#34;lat&#34;:[-34.8348876798837,-34.8348073200078,-34.8346811762834,-34.8344827528851,-34.8342725858889,-34.8340553972328,-34.8340886098004,-34.8341332668734,-34.8342118483175,-34.8343538576803,-34.8344001597437,-34.8344657572966,-34.8345109037894,-34.8345406745819,-34.8346542969565,-34.8352065327656,-34.8353098643308,-34.8355208079574,-34.8353928319569,-34.8352677541177,-34.835154715821,-34.8350356644231,-34.8349522914256,-34.8348689717888,-34.8347508341956,-34.8345951505722,-34.8344792865753,-34.8343407218938,-34.8341918759265,-34.833982004357,-34.8334846978834,-34.8333571954604,-34.83317448123,-34.8328884637235,-34.8328877833726,-34.83293016523,-34.8329454331041,-34.8329292347502,-34.8329383361106,-34.8329371555018,-34.8329958624451,-34.8330104132827,-34.8329986305393,-34.8328623836066,-34.8328134450344,-34.8327662340198,-34.8327640095393,-34.8328090961249,-34.8328188978466,-34.8327884821605,-34.8326991660979,-34.8327131132908,-34.8327053359465,-34.8326421566966,-34.8326046106665,-34.8325581200235,-34.8325121629889,-34.8323851441487,-34.8322935802602,-34.8321347850321,-34.8320081397179,-34.8319374132424,-34.8319094654957,-34.8318531030948,-34.8317789281743,-34.8316731302783,-34.8315918817096,-34.8315635704421,-34.8315351858034,-34.8313722050835,-34.8313050571202,-34.8312203901219,-34.8310683483768,-34.8309233569343,-34.8308772664976,-34.830707679037,-34.8305873269684,-34.8303605190981,-34.8303376171488,-34.8302850164411,-34.8302423578358,-34.8301542347887,-34.8299192407472,-34.8297234304858,-34.8296666846227,-34.8296095960714,-34.8293852628283,-34.829020215084,-34.8287386835695,-34.8283319928565,-34.8281824467751,-34.8279631350736,-34.8277714324087,-34.8277711245573,-34.8274618239622,-34.8274411837144,-34.8270624257533,-34.8275839933257,-34.8275841186066,-34.8280975016067,-34.8272579899441,-34.8270249562714,-34.8262430998727,-34.8261885244938,-34.8261578107031,-34.8259634544491,-34.8259370050567,-34.8258793777991,-34.8256486061331,-34.8255236705208,-34.8252129952881,-34.8227912596704,-34.8210599201076,-34.8207093059536,-34.8206109018707,-34.8202289315455,-34.8196561694908,-34.8196188435742,-34.8192029224064,-34.8190438203534,-34.8178265592473,-34.8174753914745,-34.8172504954899,-34.8172199263913,-34.8170444225461,-34.8161144029112,-34.8156223024557,-34.8156041864462,-34.8151783401597,-34.8146531092847,-34.8146214596288,-34.8142326124237,-34.8138983800515,-34.8132866915317,-34.813271076535,-34.8131309776158,-34.8128684155391,-34.8126997685635,-34.8123108880079,-34.8122789982282,-34.8120623131448,-34.8112436988171,-34.8112055046001,-34.8108767884061,-34.8102786999565,-34.8099499971027,-34.8096157384727,-34.8092465098878,-34.8077707896172,-34.8074568446536,-34.8055272228316,-34.8044273115299,-34.8035773038751,-34.8020832533551,-34.8005845671109,-34.8005124632584,-34.7992559085543,-34.7989958277574,-34.7977969513357,-34.7977468124647,-34.7977964370989,-34.7952421950262,-34.7948165474719,-34.7941454130582,-34.7935648114019,-34.7931837880327,-34.7929898735328,-34.7925951532663,-34.7920333153595,-34.7921309564293,-34.7922415516453,-34.7922732456393,-34.7924308412827,-34.7924623599484,-34.7924910760289,-34.7929274016091,-34.7932015797124,-34.7934283176712,-34.7951247110823,-34.7971860744213,-34.7997539120542,-34.8029996726426,-34.8071718254637,-34.8072406150283,-34.8073597636815,-34.8075648186268,-34.8077347900626,-34.8080324195179,-34.8082086045998,-34.8082935802237,-34.8085402837739,-34.8088457421419,-34.8090573082464,-34.809201977484,-34.8093237654647,-34.8094075667364,-34.8095532876854,-34.8096897829497,-34.8097909157331,-34.8099202386985,-34.8103908966087,-34.8106702223374,-34.8118103412129,-34.8122494477025,-34.8126132378961,-34.8129894801251,-34.8135182127851,-34.8140558409029,-34.815158583374,-34.8159494790543,-34.8164111384431,-34.8167419404559,-34.8174994955275,-34.8185428129232,-34.819425869574,-34.8210727041919,-34.8214298837569,-34.8216086541598,-34.8221319118177,-34.8232593027621,-34.8239125908684,-34.8245145780912,-34.8259131997021,-34.8265129243469,-34.8274234218647,-34.8296401747947,-34.8308203692551,-34.8312586772057,-34.8329614049512,-34.8352875934477,-34.8385747007638,-34.8413647238013,-34.8456608484667,-34.8464404371091,-34.8475746054823,-34.8492438787732,-34.8513467897493,-34.8518317623411,-34.8524065400087,-34.8530848271472,-34.8540823000646,-34.8560013804168,-34.8565367254092,-34.8570079931523,-34.8583460553589,-34.8587789725908,-34.8593137173199,-34.8594615732221,-34.8596429512454,-34.8601129436989,-34.8601811813083,-34.8604694844471,-34.8607135908429,-34.8611224399277,-34.860960039654,-34.8609763452882,-34.8612250055307,-34.8613688273083,-34.8617512117478,-34.8620829328323,-34.8624739038166,-34.8625599507707,-34.8628154778301,-34.8629563260737,-34.8629376198746,-34.8627625992707,-34.8629323174273,-34.8631741156363,-34.8633251845796,-34.863452432993,-34.8636644607787,-34.8638426873113,-34.86409308255,-34.864264722696,-34.8647569751199,-34.8648839857328,-34.8650444021835,-34.8651209088002,-34.8656846618614,-34.8657882609574,-34.8659306311892,-34.8661062490677,-34.8663404057683,-34.8663563180348,-34.8665234254431,-34.8666580760245,-34.8667875704847,-34.8670648352666,-34.8671791357984,-34.8675327042694,-34.8678913000488,-34.8681513048939,-34.8682769579555,-34.8684800865573,-34.868780910059,-34.8692184895338,-34.8694331140745,-34.8696196189477,-34.8696333443933,-34.8699947742604,-34.870144641575,-34.8701990549166,-34.8701679549695,-34.870119106185,-34.8701043810909,-34.8700796716809,-34.8700353713341,-34.869971329973,-34.8699418722809,-34.8702539615667,-34.870603345086,-34.8707573595152,-34.8709003332504,-34.8709226080714,-34.8712218034284,-34.8715469675696,-34.8718226678943,-34.8720691112915,-34.8722111877273,-34.8722851766162,-34.8718351261804,-34.8688808375782,-34.8686241293538,-34.8667285743762,-34.8665437254206,-34.8671612042094,-34.8666478420726,-34.8671248766742,-34.8671663086239,-34.8670194287106,-34.8676511485928,-34.8674547997336,-34.8669330764219,-34.8645863662446,-34.8622822070646,-34.860306987848,-34.8601915779713,-34.860156206396,-34.8599270081926,-34.8588846189391,-34.8588666204672,-34.8585490975689,-34.8584169077285,-34.8584343100367,-34.8579833174482,-34.8577845365986,-34.8578951953347,-34.8577140969377,-34.8577827106568,-34.8580102263258,-34.8579012084359,-34.8582119286822,-34.8583038377488,-34.8584805055275,-34.8586515670817,-34.858727729694,-34.858722815493,-34.8587946725515,-34.8587533579111,-34.8589916541399,-34.8590230753447,-34.8590544848767,-34.8589093316841,-34.8588236808451,-34.8586654392359,-34.8586499996066,-34.858479503344,-34.8584876175287,-34.8585684175327,-34.8586172693935,-34.8585746107266,-34.8582213818908,-34.8576528987095,-34.8574050408829,-34.8568003290175,-34.8561008482774,-34.8559742556157,-34.8559463919537,-34.855945566528,-34.8559784652456,-34.8558825690385,-34.8558493880668,-34.8563678125692,-34.856325402419,-34.8562129612197,-34.8561723584904,-34.8561383307888,-34.8561002129497,-34.8560339904638,-34.8559978006443,-34.8554201272526,-34.8547093493582,-34.8535617796701,-34.8535618090473,-34.8515483971285,-34.8512487325839,-34.8510989353296,-34.8510040930837,-34.8494730239889,-34.8492874882302,-34.8488113361495,-34.8484844456798,-34.8475948014915,-34.8474281255324,-34.8472381475559,-34.8471228050427,-34.8469306065063,-34.8469102050942,-34.8467279344259,-34.8464731196781,-34.8462391656887,-34.8460504182486,-34.8463610706155,-34.8462689310395,-34.8454408106233,-34.8453292697654,-34.8450009337675,-34.8448420818435,-34.8446286817876,-34.8443153468595,-34.8440611362125,-34.8436711041743,-34.843472412748,-34.8434339104478,-34.8428947137988,-34.8428801735683,-34.8427848543685,-34.8423201945813,-34.8422814218947,-34.8422279004003,-34.8420186246197,-34.8419743080587,-34.8415552825694,-34.8414745617939,-34.841206278377,-34.8403558698155,-34.8402537850571,-34.8393503196012,-34.838488351729,-34.8377609465876,-34.8370021052336,-34.8368788554606,-34.8362548084739,-34.835583720403,-34.834876742948,-34.8349627548676,-34.8348876798837]}]],[[{&#34;lng&#34;:[-56.1225806619466,-56.1234741227272,-56.1236660216944,-56.1242413917608,-56.1246860877685,-56.1253021721657,-56.1254453593443,-56.1256232911083,-56.1265312060099,-56.1273811776954,-56.1275687010726,-56.1282475044823,-56.1282503192673,-56.1283385585703,-56.1287231097641,-56.1290626715515,-56.129787145181,-56.1299095483075,-56.1299391232986,-56.1299733985989,-56.1306750887641,-56.1313684940565,-56.1319989697148,-56.1321823011207,-56.1327580937595,-56.1334537797335,-56.1342385175343,-56.1343009842906,-56.1342586926352,-56.1342195306285,-56.1340495021928,-56.1340988603845,-56.1340888320128,-56.1339794038225,-56.1339898643204,-56.1339393399447,-56.1338847202785,-56.1339041784404,-56.1338209855357,-56.1338112905358,-56.1337914836542,-56.1337779233274,-56.1337523817384,-56.1337499398396,-56.1336981755328,-56.133675599174,-56.1336318746731,-56.1336089917777,-56.1336009934944,-56.133551067045,-56.1335082331493,-56.1329220227109,-56.1322143816704,-56.132157030725,-56.1316477814254,-56.1310235294827,-56.129461930793,-56.1289578708364,-56.1284814851521,-56.1284030113478,-56.1274365662607,-56.1264015057868,-56.1257470682767,-56.124831389371,-56.1245997965993,-56.1245905985223,-56.124214691324,-56.123573967553,-56.1234914316538,-56.1234393848119,-56.1233936345507,-56.1230429737059,-56.1229996240524,-56.122998646546,-56.1229090898159,-56.1228619889753,-56.1227754120922,-56.1224853921388,-56.1224386553768,-56.122398501335,-56.1202006293504,-56.1195309891523,-56.1189246431108,-56.1190480256381,-56.1192684047304,-56.1193412913202,-56.1193549717089,-56.119507741724,-56.1203329649196,-56.1206551088896,-56.1206192570665,-56.1192860905384,-56.1193473804715,-56.1195399808986,-56.1190130953945,-56.1184823016506,-56.1179783728127,-56.1174263675883,-56.1173109108678,-56.1172717286993,-56.1172335451597,-56.1171577425747,-56.1170184932402,-56.1168598668795,-56.1163729604761,-56.115743369113,-56.1153177162596,-56.1148745810568,-56.1147518977859,-56.1147160639123,-56.1144103216263,-56.1143549470424,-56.1139304780352,-56.113525041906,-56.1135201267205,-56.1131216343608,-56.1128835834617,-56.112738813245,-56.1127526307245,-56.1127687990742,-56.1127654755541,-56.1127728496097,-56.1125693774606,-56.1127577426824,-56.1127611418654,-56.112039100282,-56.1129526979916,-56.1150539869143,-56.1154043676146,-56.1169370513922,-56.1164925621725,-56.1164034071754,-56.1158385982251,-56.1157434474697,-56.1155485916479,-56.1154458490076,-56.114507151564,-56.1136321269581,-56.1128476824,-56.1120372448043,-56.1114042814688,-56.1126383053101,-56.112737322752,-56.1127997461267,-56.1132957190556,-56.1136856394719,-56.1146849899465,-56.1148054320616,-56.1159297519021,-56.1159297519211,-56.1161786043537,-56.1166188005954,-56.1167645076194,-56.1168452240345,-56.1169960465929,-56.1170696797921,-56.118020970397,-56.1180565287353,-56.1184622822828,-56.1184724365629,-56.1189803666,-56.1190390346398,-56.1191071639081,-56.120258813709,-56.120812995111,-56.1212098673475,-56.121478546891,-56.1225806619466],&#34;lat&#34;:[-34.8726254212558,-34.8728352027788,-34.8728798316284,-34.8730227328262,-34.8731298755824,-34.8732816913777,-34.8733054769779,-34.8733350330541,-34.8726659021328,-34.8720509816692,-34.8719153367137,-34.8714224967102,-34.8714204623276,-34.871356707139,-34.8710788569864,-34.8708301804041,-34.8703056765708,-34.87021975726,-34.8701920867237,-34.8701600185177,-34.8696565418195,-34.8691913410461,-34.868741488207,-34.8686120465384,-34.8682104442501,-34.8677212449214,-34.867194366155,-34.8671723828428,-34.8669643770668,-34.8668113742038,-34.8660618156744,-34.8659491513852,-34.8658452276198,-34.8650221928597,-34.864969202002,-34.8641197963623,-34.8631887223883,-34.8629721386443,-34.8617873843028,-34.8616247771088,-34.8613363783742,-34.8610793608237,-34.8606289416629,-34.8605858792144,-34.8595743763313,-34.8593472585296,-34.8586021532644,-34.8583171257957,-34.8582174994297,-34.8577029453199,-34.8576035743712,-34.8568177168311,-34.8560160676375,-34.8558913602391,-34.8552588640446,-34.8544783248339,-34.8550864167758,-34.8552849708419,-34.8554726242862,-34.8555035335602,-34.8558843716349,-34.856287894742,-34.8565271764791,-34.8560589399975,-34.8559405122547,-34.8559357964893,-34.8557430904392,-34.8553389353394,-34.855285040878,-34.8551983278245,-34.8551221101838,-34.8545379105638,-34.8544668280558,-34.8544651671008,-34.8544184136793,-34.8543720182777,-34.8543406900083,-34.8543710072175,-34.8543860555816,-34.8543902544137,-34.8546201015261,-34.8546901223966,-34.85475008332,-34.8554053659869,-34.8558757390706,-34.8558801994832,-34.8558831743507,-34.8558688969984,-34.8556469406178,-34.8563912113584,-34.8564003077163,-34.8568191375262,-34.8569648964381,-34.8574229327651,-34.8575891608383,-34.8577409641271,-34.8578772427765,-34.8580450326109,-34.8578109001949,-34.8576934487416,-34.8576079998987,-34.8574383649154,-34.8574671316854,-34.8574888857823,-34.8575275990893,-34.8574884422284,-34.8573226317157,-34.8571388319254,-34.8570202574402,-34.8569856221254,-34.8573002635132,-34.8573914151689,-34.8573347338397,-34.8573069742701,-34.8573605989374,-34.8572134146623,-34.8572330661011,-34.8573319598062,-34.8577510685446,-34.8579512533461,-34.8582607664561,-34.8588534710101,-34.8594635112179,-34.8596269634519,-34.8596714107163,-34.8616974887248,-34.8618984112533,-34.863299460786,-34.863533042917,-34.8645481947901,-34.8650130282495,-34.8651072148226,-34.8656773904785,-34.8657749947491,-34.8659699490848,-34.8660748788068,-34.8670549776021,-34.8679673231221,-34.8687848163909,-34.8696296853284,-34.870292745704,-34.8704397143514,-34.8704490830341,-34.8704598470852,-34.8705510520272,-34.8706375779172,-34.8708539526641,-34.8708942476119,-34.8712658217422,-34.8712658217135,-34.8713478733143,-34.8714930130772,-34.8715396529298,-34.8715654896219,-34.8715895488517,-34.8716012947542,-34.8717343683837,-34.8717387948332,-34.8718258204768,-34.8718279983377,-34.8719162732135,-34.8719272046834,-34.8719392407082,-34.8721164056763,-34.8722143261385,-34.8723111641155,-34.8723665319066,-34.8726254212558]}]],[[{&#34;lng&#34;:[-56.1139304780352,-56.1143549470424,-56.1144103216263,-56.1147160639123,-56.1147518977859,-56.1148745810568,-56.1153177162596,-56.115743369113,-56.1163729604761,-56.1168598668795,-56.1170184932402,-56.1171577425747,-56.1172335451597,-56.1172717286993,-56.1173109108678,-56.1174263675883,-56.1179783728127,-56.1184823016506,-56.1190130953945,-56.1195399836542,-56.1193473804715,-56.1192860905384,-56.1206192570665,-56.1206551088896,-56.1203329649196,-56.119507741724,-56.1193549717089,-56.1193412913202,-56.1192684047304,-56.1190480256381,-56.1189246431108,-56.1195309891523,-56.1202006293504,-56.122398501335,-56.1224386553768,-56.1224853921388,-56.1227754120922,-56.1228619889753,-56.1229090898159,-56.122998646546,-56.1229996240524,-56.1230429737059,-56.1233936345507,-56.1234393848119,-56.1234914316538,-56.123573967553,-56.124214691324,-56.1245905985223,-56.1245997965993,-56.124831389371,-56.1257470682767,-56.1264015057868,-56.1274365662607,-56.1284030113478,-56.1284814851521,-56.1289578708364,-56.129461930793,-56.1310235294827,-56.1316477814254,-56.132157030725,-56.1322143816704,-56.1329220227109,-56.1335082331493,-56.133551067045,-56.1336009934944,-56.1336089917777,-56.1336318746731,-56.133675599174,-56.1336981755328,-56.1337499398396,-56.1337523817384,-56.1337779233274,-56.1337914836542,-56.1338112905358,-56.1338209855357,-56.1349821143596,-56.1349443982417,-56.1357512410179,-56.1361839131038,-56.1363539465286,-56.1364944678594,-56.1367853997413,-56.1379596266055,-56.1371516499112,-56.1369802619526,-56.1367963833578,-56.13696043463,-56.1376408488703,-56.1385040807277,-56.1376981717665,-56.1376671193971,-56.1380922850208,-56.1382397472852,-56.13835907261,-56.1385698079583,-56.1387459521337,-56.1382030254658,-56.1378828536784,-56.1373582631336,-56.136522858961,-56.1357903945437,-56.1355131949181,-56.1350158517588,-56.134641702622,-56.1343513954097,-56.1342547174812,-56.1337392404206,-56.1335864279017,-56.132663992178,-56.1297835900142,-56.1293782609757,-56.1290509321638,-56.1288734139465,-56.128855744834,-56.1287324946041,-56.1286269134865,-56.1259878924759,-56.1257875624939,-56.1255772673727,-56.1254058523029,-56.1254049303887,-56.125349804915,-56.1253249169575,-56.1248730255117,-56.1246918907613,-56.1246917397738,-56.1245606001451,-56.1245580923384,-56.1241783058924,-56.1241178752676,-56.123804174633,-56.1237219992046,-56.1222474885701,-56.1219485049878,-56.1203748051675,-56.1200703038901,-56.1200413627692,-56.1182217253417,-56.1181138394236,-56.1174892763913,-56.1162210917689,-56.1153854845428,-56.1143262982933,-56.1136159652898,-56.1131145600356,-56.1119637331914,-56.1119714438346,-56.1124178940805,-56.1124981935306,-56.1135805023191,-56.1136533112167,-56.1137240143468,-56.1138169889628,-56.1138782739024,-56.1139031395647,-56.1139592393426,-56.1139855292167,-56.11405080288,-56.1140892760549,-56.1143594817446,-56.114415983113,-56.114590894356,-56.1147093946461,-56.1152102341617,-56.1151220420121,-56.1146427815118,-56.113647701657,-56.1138705966647,-56.1138665649261,-56.1139853030124,-56.1140507160387,-56.1140674194239,-56.1139504044353,-56.1137748672396,-56.1136675064557,-56.1135836219428,-56.1134725968298,-56.1131651327839,-56.1130422472243,-56.1127552147469,-56.112669937399,-56.1124511078516,-56.1125888289026,-56.112752399927,-56.1129845529876,-56.1131074897226,-56.1132870956833,-56.1134050088391,-56.1135270287595,-56.113525041906,-56.1139304780352],&#34;lat&#34;:[-34.8573347338397,-34.8573914151689,-34.8573002635132,-34.8569856221254,-34.8570202574402,-34.8571388319254,-34.8573226317157,-34.8574884422284,-34.8575275990893,-34.8574888857823,-34.8574671316854,-34.8574383649154,-34.8576079998987,-34.8576934487416,-34.8578109001949,-34.8580450326109,-34.8578772427765,-34.8577409641271,-34.8575891608383,-34.8574229393184,-34.8569648964381,-34.8568191375262,-34.8564003077163,-34.8563912113584,-34.8556469406178,-34.8558688969984,-34.8558831743507,-34.8558801994832,-34.8558757390706,-34.8554053659869,-34.85475008332,-34.8546901223966,-34.8546201015261,-34.8543902544137,-34.8543860555816,-34.8543710072175,-34.8543406900083,-34.8543720182777,-34.8544184136793,-34.8544651671008,-34.8544668280558,-34.8545379105638,-34.8551221101838,-34.8551983278245,-34.855285040878,-34.8553389353394,-34.8557430904392,-34.8559357964893,-34.8559405122547,-34.8560589399975,-34.8565271764791,-34.856287894742,-34.8558843716349,-34.8555035335602,-34.8554726242862,-34.8552849708419,-34.8550864167758,-34.8544783248339,-34.8552588640446,-34.8558913602391,-34.8560160676375,-34.8568177168311,-34.8576035743712,-34.8577029453199,-34.8582174994297,-34.8583171257957,-34.8586021532644,-34.8593472585296,-34.8595743763313,-34.8605858792144,-34.8606289416629,-34.8610793608237,-34.8613363783742,-34.8616247771088,-34.8617873843028,-34.8612388947661,-34.8605223769062,-34.8601328493502,-34.8599573501106,-34.8598730420645,-34.8598071146005,-34.8596801082599,-34.8590954476689,-34.8580968476654,-34.8578783280425,-34.8576515113273,-34.8575609779703,-34.8571852625376,-34.8567144547299,-34.8557158513913,-34.855693072493,-34.85545800508,-34.854912089988,-34.8544703340461,-34.8539605377979,-34.8536220899183,-34.853348475475,-34.8529661549692,-34.8523679931485,-34.8514190270757,-34.850586994642,-34.850272168945,-34.8497370296267,-34.8493233820123,-34.8489838889868,-34.8488620731633,-34.848266246241,-34.8481404562329,-34.8478812392147,-34.8469956458249,-34.846870401233,-34.8467720138255,-34.8467183428126,-34.8467129700417,-34.8466754907127,-34.8466433841545,-34.8458400398493,-34.8457790517295,-34.8450495455045,-34.8444548821547,-34.8444514948271,-34.8442489504919,-34.8441963277823,-34.8426305625593,-34.8419731789436,-34.8419729430903,-34.8417680930291,-34.8417641756336,-34.8414745617939,-34.8415552825694,-34.8419743080587,-34.8420186246197,-34.8422279004003,-34.8423201945813,-34.8427848543685,-34.8428801735683,-34.8428947137988,-34.8434339104478,-34.843472412748,-34.8436711041743,-34.8440611362125,-34.8443153468595,-34.8446286817876,-34.8448420818435,-34.8450009337675,-34.8453292697654,-34.8454408106233,-34.8462689310395,-34.8463610706155,-34.8460504182486,-34.8462391656887,-34.8464731196781,-34.8467279344259,-34.8469102050942,-34.8469306065063,-34.8471228050427,-34.8472381475559,-34.8474281255324,-34.8475948014915,-34.8484844456798,-34.8488113361495,-34.8492874882302,-34.8494730239889,-34.8510040930837,-34.8510989353296,-34.8512487325839,-34.8515483971285,-34.8535618090473,-34.8535617796701,-34.8547093493582,-34.8554201272526,-34.8559978006443,-34.8560339904638,-34.8561002129497,-34.8561383307888,-34.8561723584904,-34.8562129612197,-34.856325402419,-34.8563678125692,-34.8558493880668,-34.8558825690385,-34.8559784652456,-34.8560446626343,-34.8562067062044,-34.8565646024473,-34.8567659346128,-34.8570491756874,-34.857129202071,-34.8571833925206,-34.8573069742701,-34.8573347338397]}]],[[{&#34;lng&#34;:[-56.1062719018018,-56.106159836522,-56.1063293571492,-56.1064869338599,-56.1066770206017,-56.1070076783789,-56.1075174699308,-56.1081400756708,-56.1087044596831,-56.1097252320724,-56.1100728246682,-56.1102068170324,-56.1103164541288,-56.1103878977745,-56.1104955914378,-56.1105117161295,-56.1112143937549,-56.1112407284851,-56.1112758384332,-56.1113427624181,-56.1114131792757,-56.1114181321693,-56.1114253156858,-56.1114506236354,-56.1114698938432,-56.1114717327875,-56.1114729956163,-56.1114106079306,-56.1113396046457,-56.1112013400057,-56.1112011399025,-56.1110785383027,-56.1113251770893,-56.1114918262102,-56.1115222964281,-56.1116651147912,-56.1118308973294,-56.1119790811067,-56.1122948106032,-56.1126723653178,-56.1130785157223,-56.1133923899863,-56.1133990734331,-56.1134504749564,-56.1135464353018,-56.1135782991977,-56.1139677133619,-56.1149436967015,-56.1149464114349,-56.115791667355,-56.1158185897781,-56.1159297519021,-56.1148054320616,-56.1146849899465,-56.1136856394719,-56.1132957190556,-56.1127997461267,-56.112737322752,-56.1126383053101,-56.1114042814688,-56.1120372448043,-56.1128476824,-56.1136321269581,-56.114507151564,-56.1154458490076,-56.1155485916479,-56.1157434474697,-56.1158385982251,-56.1164034071754,-56.1164925621725,-56.1169370513922,-56.1154043676146,-56.1150539869143,-56.1129526979916,-56.112039100282,-56.1127611418654,-56.1127577426824,-56.1125693774606,-56.1127728496097,-56.1127654755541,-56.1127687990742,-56.1127526307245,-56.112738813245,-56.1128835834617,-56.1131216343608,-56.1135201267205,-56.113525041906,-56.1135270287595,-56.1134050088391,-56.1132870956833,-56.1131074897226,-56.1129845529876,-56.112752399927,-56.1125888289026,-56.1124511078516,-56.1123477512393,-56.1119722042268,-56.1118720587996,-56.1114170645938,-56.1110061793564,-56.1106513697053,-56.1106627555773,-56.110386079555,-56.1096138746426,-56.1086506712272,-56.1083162987828,-56.1081667083018,-56.1077507938041,-56.1072631289695,-56.1072189661937,-56.1069884606494,-56.1069798428716,-56.106548353675,-56.1064840071565,-56.10642478995,-56.106157825603,-56.1058083653774,-56.1056898976139,-56.1054995661217,-56.1052871098859,-56.1049443998082,-56.1045490292388,-56.1043312702683,-56.1037636441957,-56.1038105217049,-56.1027101275369,-56.1010566347883,-56.1006679676761,-56.0997083861287,-56.0994824362672,-56.0993420105127,-56.099043283118,-56.0983311758661,-56.0974191944446,-56.0973674988732,-56.0967521415177,-56.0961672532091,-56.0961051945372,-56.0957481628381,-56.0966172331275,-56.0976310874432,-56.0986637253138,-56.0968670266725,-56.096224904645,-56.095983195328,-56.095323200034,-56.0952981670352,-56.0951611612191,-56.093353630511,-56.0931064239665,-56.0923351882115,-56.0930188361566,-56.0931112037929,-56.0942247447411,-56.094351243313,-56.0947843581043,-56.0959590783828,-56.0967275881534,-56.0967355243881,-56.0967253048489,-56.0967104878872,-56.0966712448561,-56.0966160937078,-56.0961804454135,-56.0958269456088,-56.095409091083,-56.0944688626605,-56.0936591172733,-56.0933451773316,-56.0926670949189,-56.0917583614843,-56.0910334425624,-56.0920200864848,-56.0921824314679,-56.0934843156421,-56.0943600411836,-56.0955764618563,-56.0956019216532,-56.0961358941345,-56.096924545001,-56.0966672043801,-56.0963087595209,-56.0961437845809,-56.0960684222395,-56.0958677156385,-56.0957707837804,-56.0956910583046,-56.09705979035,-56.0973839568695,-56.0981874179747,-56.0989772515326,-56.0990506903927,-56.0996234976929,-56.1005594650518,-56.1005834542834,-56.1006877712226,-56.1014504573559,-56.102331083244,-56.1026468079467,-56.1039051160513,-56.1039939922139,-56.1039005971556,-56.1038907630875,-56.1037039567921,-56.1045266110105,-56.1055764962057,-56.1062719018018],&#34;lat&#34;:[-34.8826962800842,-34.8828428526697,-34.8829655655268,-34.8830796318676,-34.8829302487393,-34.8827384327535,-34.8824949550755,-34.882387686057,-34.882380052792,-34.8828353484952,-34.8830328958963,-34.8832926518234,-34.8834076625964,-34.8834438047976,-34.8835008151942,-34.8835092530775,-34.8835442581384,-34.8834155532717,-34.8832439608969,-34.8829219842233,-34.8826205197638,-34.8825882936816,-34.8825555390461,-34.8818472915102,-34.8812275986571,-34.8811684610783,-34.88083704078,-34.8803918947498,-34.8799001847041,-34.8789426183626,-34.8789410763173,-34.8780935668744,-34.8775785252869,-34.8772541277151,-34.8771948143735,-34.8768873534467,-34.876516582969,-34.8762322292956,-34.8757808385852,-34.8753157899978,-34.874816609724,-34.8744308365213,-34.8744225989396,-34.8743583512552,-34.8742384083683,-34.8741985809078,-34.8737219709412,-34.8725164458877,-34.8725131074994,-34.8714734496545,-34.8714330683875,-34.8712658217422,-34.8708942476119,-34.8708539526641,-34.8706375779172,-34.8705510520272,-34.8704598470852,-34.8704490830341,-34.8704397143514,-34.870292745704,-34.8696296853284,-34.8687848163909,-34.8679673231221,-34.8670549776021,-34.8660748788068,-34.8659699490848,-34.8657749947491,-34.8656773904785,-34.8651072148226,-34.8650130282495,-34.8645481947901,-34.863533042917,-34.863299460786,-34.8618984112533,-34.8616974887248,-34.8596714107163,-34.8596269634519,-34.8594635112179,-34.8588534710101,-34.8582607664561,-34.8579512533461,-34.8577510685446,-34.8573319598062,-34.8572330661011,-34.8572134146623,-34.8573605989374,-34.8573069742701,-34.8571833925206,-34.857129202071,-34.8570491756874,-34.8567659346128,-34.8565646024473,-34.8562067062044,-34.8560446626343,-34.8559784652456,-34.855945566528,-34.8559463919537,-34.8559742556157,-34.8561008482774,-34.8568003290175,-34.8574050408829,-34.8576528987095,-34.8582213818908,-34.8585746107266,-34.8586172693935,-34.8585684175327,-34.8584876175287,-34.858479503344,-34.8586499996066,-34.8586654392359,-34.8588236808451,-34.8589093316841,-34.8590544848767,-34.8590230753447,-34.8589916541399,-34.8587533579111,-34.8587946725515,-34.858722815493,-34.858727729694,-34.8586515670817,-34.8584805055275,-34.8583038377488,-34.8582119286822,-34.8579012084359,-34.8580102263258,-34.8577827106568,-34.8577140969377,-34.8578951953347,-34.8577845365986,-34.8579833174482,-34.8584343100367,-34.8584169077285,-34.8585490975689,-34.8588666204672,-34.8588846189391,-34.8599270081926,-34.860156206396,-34.8601915779713,-34.860306987848,-34.8622822070646,-34.8645863662446,-34.8669330764219,-34.8674547997336,-34.8676511485928,-34.8670194287106,-34.8671663086239,-34.8671248766742,-34.8666478420726,-34.8671612042094,-34.8665437254206,-34.8667285743762,-34.8686241293538,-34.8688808375782,-34.8718351261804,-34.8722851766162,-34.8723081560007,-34.8723704742613,-34.8724147632104,-34.8724621195534,-34.8725118802002,-34.872539678599,-34.8725892236096,-34.8726434989824,-34.8728309435377,-34.8729830406174,-34.8731499826364,-34.8736446464345,-34.874134303431,-34.8743469610404,-34.8747241217217,-34.8753231029877,-34.8757722746755,-34.8769751698252,-34.8771730932732,-34.8787691987176,-34.8799745342981,-34.8816055545715,-34.8816403208347,-34.8824085225789,-34.8833680311008,-34.8837194464784,-34.8842377047991,-34.8844856796051,-34.8845851969264,-34.8848707968193,-34.8849639211014,-34.8850405146649,-34.8853221614277,-34.8853961860625,-34.8855839691376,-34.8857685612284,-34.8856654402276,-34.8857386512902,-34.8857821836181,-34.8857744293073,-34.8856670613299,-34.8847601280087,-34.8837033547763,-34.8836970153683,-34.8836485810435,-34.8836467399828,-34.8835415266844,-34.8830560051581,-34.8827554076189,-34.8817378639266,-34.8823158758278,-34.8826962800842]}]],[[{&#34;lng&#34;:[-56.1103391912725,-56.1104815866984,-56.1106906753705,-56.1108435393357,-56.1112859039072,-56.1115378192849,-56.1116685028704,-56.1117744829585,-56.1119476182874,-56.1121456061296,-56.1124419545007,-56.1126521807929,-56.1127831674957,-56.112913431074,-56.112993331111,-56.1142216509907,-56.1153852756853,-56.1164755392429,-56.1166908710974,-56.1179588183436,-56.1191682687547,-56.1200731620981,-56.1209824577117,-56.1218549743576,-56.1223398911082,-56.1227690390975,-56.1232958441176,-56.1233233382971,-56.123339346553,-56.1233434686788,-56.1235020504635,-56.122538426996,-56.1218830981701,-56.12147753968,-56.1212736514076,-56.1207820082982,-56.1203288451862,-56.1200286225682,-56.1199792468499,-56.1196261340738,-56.1201259893424,-56.1206941371636,-56.121188967594,-56.1213398361492,-56.1214770824496,-56.1215285012307,-56.1215513986332,-56.1214628744544,-56.1212354713874,-56.120744625176,-56.1198319741111,-56.1196925254837,-56.1195077500931,-56.1191845976844,-56.1186951908957,-56.1184076017343,-56.1177225836862,-56.1176641169993,-56.1156151029629,-56.1132866154356,-56.11299408457,-56.1125038050536,-56.1119208234024,-56.1112117819533,-56.1100157340321,-56.1087875474937,-56.1077563104461,-56.1074197430728,-56.1067154475063,-56.1059624848607,-56.1045259840205,-56.1043198977365,-56.1041531050506,-56.1039962708339,-56.1036672211345,-56.1034596457521,-56.1033210326393,-56.1032786073831,-56.1029633714746,-56.1027959249456,-56.1027580922735,-56.1026691106616,-56.1023201597538,-56.1021356360941,-56.1018255113176,-56.1002208304093,-56.0987255459195,-56.0986374044881,-56.0978796296588,-56.0973418620757,-56.0963751804425,-56.096166412582,-56.0958788673111,-56.0957430070309,-56.0955314670136,-56.0955111962912,-56.0953420795779,-56.0951902947827,-56.0920085979836,-56.0918316185246,-56.0900712093233,-56.0888669082344,-56.0887794990812,-56.0885612701521,-56.0877203213366,-56.0875354933371,-56.0874276910594,-56.0873849839682,-56.087540324081,-56.0882135312712,-56.0883603336476,-56.0883497735965,-56.0881234381412,-56.0879478409146,-56.0877768260511,-56.0871362090019,-56.0861858455418,-56.0856049592972,-56.0854117129685,-56.0854227608551,-56.0849907025093,-56.0846320241964,-56.0839988910067,-56.0839474044538,-56.0827155758349,-56.0815951379964,-56.0815494210857,-56.0811173916104,-56.0803057730379,-56.0804449448124,-56.0809498585427,-56.0811831055007,-56.0813784595832,-56.0811875878124,-56.0804895344751,-56.0798308014163,-56.0791713346457,-56.0789789420906,-56.079562069491,-56.0799503830876,-56.0804323183006,-56.0847091039484,-56.0907391204488,-56.0915597306336,-56.0918903298169,-56.0925009965925,-56.0926878951189,-56.0927736770136,-56.0935326604637,-56.0938009528196,-56.0939340815053,-56.0953175207612,-56.0957298676382,-56.0971307892559,-56.0978750646556,-56.0987493715403,-56.0994423930755,-56.09947568625,-56.0999745986506,-56.1000162106482,-56.1003590129248,-56.100781106385,-56.1010499823023,-56.1017530317598,-56.1022368815088,-56.1028779700287,-56.1032627788961,-56.103352243825,-56.1034766245899,-56.1038234499696,-56.1042427672738,-56.1044282494017,-56.1045069690715,-56.1046190593796,-56.1046834111613,-56.1044185486133,-56.1042093607298,-56.104064472674,-56.1039491465306,-56.1037614163801,-56.1035737062398,-56.103561139759,-56.1034929179085,-56.1031384417628,-56.1030572732354,-56.1030103156849,-56.1029464093934,-56.1029467428988,-56.1028913743438,-56.1029214898751,-56.103045607219,-56.1031682037785,-56.1031018228775,-56.1030552722034,-56.1031154365651,-56.1030858946629,-56.1030347149349,-56.102913158912,-56.1029911257882,-56.1030896099123,-56.1032054296435,-56.1033503844004,-56.1036085375365,-56.1036436689881,-56.103725377794,-56.1037972481928,-56.1038828856916,-56.1039443440539,-56.1039474123029,-56.1040217973319,-56.1041395847445,-56.1041901374825,-56.1042532100106,-56.104306290719,-56.1043391143137,-56.1045070942786,-56.104608353167,-56.1047213914638,-56.1047551555435,-56.1052645849359,-56.1054000681414,-56.1054500739306,-56.1055876382094,-56.105766797273,-56.1059798323051,-56.1060528002862,-56.1061680975671,-56.1062885396822,-56.1064210613604,-56.1064719142532,-56.1064974741017,-56.1065592859797,-56.1066463708916,-56.1066756793401,-56.106744748294,-56.1075819250533,-56.1079561292495,-56.1098392595768,-56.1102232658038,-56.1103391912725],&#34;lat&#34;:[-34.8345109037894,-34.8344657572966,-34.8344001597437,-34.8343538576803,-34.8342118483175,-34.8341332668734,-34.8340886098004,-34.8340553972328,-34.8342725858889,-34.8344827528851,-34.8346811762834,-34.8348073200078,-34.8348876798837,-34.8349627548676,-34.834876742948,-34.835583720403,-34.8362548084739,-34.8368788554606,-34.8370021052336,-34.8377609465876,-34.838488351729,-34.8374226587905,-34.8363524401848,-34.8353228625386,-34.8347538757642,-34.8342616352365,-34.8336564931493,-34.8330975648956,-34.8327676914381,-34.8326828743625,-34.8304740852334,-34.8298878949032,-34.8294686593425,-34.8291980288206,-34.8290890794462,-34.8287771972651,-34.8284926838316,-34.8283041903964,-34.8282804655964,-34.8280480266118,-34.8273005852449,-34.8265604349335,-34.8257693518272,-34.8255719282442,-34.8253694867761,-34.8253112108253,-34.8252852598084,-34.8252545720974,-34.8251546352022,-34.8249190044374,-34.8244946533717,-34.8244361299075,-34.8243582650271,-34.8242028703647,-34.8239735692691,-34.8244000408513,-34.824083262763,-34.8240559006364,-34.8230092054039,-34.821816603682,-34.821668513975,-34.8214217133603,-34.8211281652546,-34.8207554720214,-34.8201458853093,-34.8195606855548,-34.8190442278167,-34.8188756669657,-34.8185229362382,-34.8181458239003,-34.8174232712614,-34.8173215854861,-34.8172392830406,-34.8171623366908,-34.8170008934304,-34.8169038900663,-34.8168313999886,-34.816810735361,-34.8166571761666,-34.8165756129497,-34.8165571845984,-34.8164832974895,-34.8163192418852,-34.8162369158691,-34.8160769102419,-34.8152870562273,-34.814553151067,-34.8145098891037,-34.8141379502706,-34.8138750445805,-34.8133995027677,-34.8132980797847,-34.8132743647974,-34.8132679004944,-34.8128902404274,-34.8128761320852,-34.8129143265397,-34.8128376725048,-34.8112513567978,-34.8111581238275,-34.8103231962377,-34.8097261883455,-34.8096707907621,-34.8097208778461,-34.8096433651662,-34.8096267198718,-34.8096157384727,-34.8099499971027,-34.8102786999565,-34.8108767884061,-34.8112055046001,-34.8112436988171,-34.8120623131448,-34.8122789982282,-34.8123108880079,-34.8126997685635,-34.8128684155391,-34.8131309776158,-34.813271076535,-34.8132866915317,-34.8138983800515,-34.8142326124237,-34.8146214596288,-34.8146531092847,-34.8151783401597,-34.8156041864462,-34.8156223024557,-34.8161144029112,-34.8170444225461,-34.8172199263913,-34.8172504954899,-34.8174753914745,-34.8178265592473,-34.8190438203534,-34.8192029224064,-34.8196188435742,-34.8196561694908,-34.8202289315455,-34.8206109018707,-34.8207093059536,-34.8210599201076,-34.8227912596704,-34.8252129952881,-34.8255236705208,-34.8256486061331,-34.8258793777991,-34.8259370050567,-34.8259634544491,-34.8261578107031,-34.8261885244938,-34.8262430998727,-34.8270249562714,-34.8272579899441,-34.8280975016067,-34.8275839933257,-34.8270624257533,-34.8274411837144,-34.8274618239622,-34.8277711245573,-34.8277714324087,-34.8279631350736,-34.8281824467751,-34.8283319928565,-34.8287386835695,-34.829020215084,-34.8293852628283,-34.8296095960714,-34.8296666846227,-34.8297234304858,-34.8299192407472,-34.8301542347887,-34.8302423578358,-34.8302850164411,-34.8303376171488,-34.8303605190981,-34.8305873269684,-34.830707679037,-34.8308772664976,-34.8309233569343,-34.8310683483768,-34.8312203901219,-34.8313050571202,-34.8313722050835,-34.8315351858034,-34.8315635704421,-34.8315918817096,-34.8316731302783,-34.8317789281743,-34.8318531030948,-34.8319094654957,-34.8319374132424,-34.8320081397179,-34.8321347850321,-34.8322935802602,-34.8323851441487,-34.8325121629889,-34.8325581200235,-34.8326046106665,-34.8326421566966,-34.8327053359465,-34.8327131132908,-34.8326991660979,-34.8327884821605,-34.8328188978466,-34.8328090961249,-34.8327640095393,-34.8327662340198,-34.8328134450344,-34.8328623836066,-34.8329986305393,-34.8330104132827,-34.8329958624451,-34.8329371555018,-34.8329383361106,-34.8329292347502,-34.8329454331041,-34.83293016523,-34.8328877833726,-34.8328884637235,-34.83317448123,-34.8333571954604,-34.8334846978834,-34.833982004357,-34.8341918759265,-34.8343407218938,-34.8344792865753,-34.8345951505722,-34.8347508341956,-34.8348689717888,-34.8349522914256,-34.8350356644231,-34.835154715821,-34.8352677541177,-34.8353928319569,-34.8355208079574,-34.8353098643308,-34.8352065327656,-34.8346542969565,-34.8345406745819,-34.8345109037894]}]],[[{&#34;lng&#34;:[-56.1351569511941,-56.1357175936651,-56.1367360084622,-56.1375141201798,-56.1382987108388,-56.1393016920763,-56.140166568115,-56.139710342828,-56.1406009706715,-56.1408794107368,-56.1414589361383,-56.1419181681267,-56.1422838033608,-56.1424933869653,-56.143185016518,-56.1440626807734,-56.1449389328894,-56.1454286085506,-56.1460495654606,-56.1464099880064,-56.1465219824315,-56.1484879948259,-56.1496276506483,-56.1498369151617,-56.1493893828979,-56.1486887014429,-56.1481507390896,-56.1480710082019,-56.1476553169211,-56.1474149462891,-56.1468185120261,-56.1461012621219,-56.1458889750411,-56.1446001479589,-56.1438752274322,-56.1435045562676,-56.1430488979396,-56.1422244360769,-56.1415621111656,-56.1414798987666,-56.1411151076245,-56.1410233025351,-56.1407716068156,-56.1407622986819,-56.1407525669963,-56.1407130532847,-56.1399451005652,-56.1395107365526,-56.1382553591223,-56.1369681786237,-56.1369554048194,-56.1358768572299,-56.1349154805425,-56.1346990469534,-56.1343672037433,-56.134303314285,-56.1338210589069,-56.1335135903375,-56.1333071872235,-56.133303031747,-56.1332700947606,-56.133227389403,-56.1330432465243,-56.1329467302625,-56.1328233450436,-56.1324188737586,-56.132301006048,-56.1321505334339,-56.1321506830111,-56.131961623602,-56.1317600069634,-56.1308038895421,-56.1307303491841,-56.1295164522444,-56.1291452074507,-56.1290486458915,-56.1289740258346,-56.1289337984216,-56.1282440772872,-56.1274519509172,-56.1263476320236,-56.1263853425093,-56.1267526507429,-56.1268867196977,-56.1269553778857,-56.1270363616882,-56.1270644211228,-56.1271501252024,-56.1274651476675,-56.1281083660583,-56.1282848508837,-56.1285072848495,-56.1283875300304,-56.1262574388558,-56.1262673882352,-56.126278207509,-56.1251035926275,-56.1240836410331,-56.1236039959933,-56.1235020504635,-56.1233434686788,-56.123339346553,-56.1233233382971,-56.1232958441176,-56.1227690390975,-56.1223398911082,-56.1218549743576,-56.1209824577117,-56.1200731620981,-56.1191682687547,-56.1206597112631,-56.1221219630728,-56.1222902149711,-56.1237254970011,-56.1241783058924,-56.1245580923384,-56.1245606001451,-56.1246917397738,-56.1248730255117,-56.1253249169575,-56.125349804915,-56.1254049303887,-56.1254058523029,-56.1255772673727,-56.1257875624939,-56.1259878924759,-56.1286269134865,-56.1287324946041,-56.128855744834,-56.1288734139465,-56.1290509321638,-56.1293782609757,-56.1297835900142,-56.132663992178,-56.1335864279017,-56.1337392404206,-56.1342217455513,-56.1344495196869,-56.1349665896864,-56.1350185998427,-56.1351569511941],&#34;lat&#34;:[-34.8460364644839,-34.8462154034339,-34.8465810414419,-34.8468826308735,-34.8461375101008,-34.8455081920402,-34.8449607497102,-34.8444570766198,-34.8438408175459,-34.8436420564058,-34.8432533813673,-34.8429194136076,-34.8426480136397,-34.8425061464823,-34.8420379762841,-34.8414673280633,-34.8408670414268,-34.840525769144,-34.8400968045826,-34.8399967596536,-34.839978453546,-34.8396490424849,-34.8394225894368,-34.8394033676148,-34.8388551462677,-34.8380330349117,-34.8373967954522,-34.8372987891867,-34.8367878113835,-34.8364923390008,-34.8357592309182,-34.8348775929016,-34.8346153047728,-34.8330335418773,-34.8321433094284,-34.8316871041516,-34.831126294928,-34.8301140662291,-34.829300096444,-34.8292149391929,-34.8287543321009,-34.8290320465201,-34.8290090696874,-34.829346583752,-34.8295220275662,-34.8299241282732,-34.8298268414332,-34.8297783197427,-34.8296417459747,-34.8295000195495,-34.8295268613553,-34.8294262503741,-34.8293157376079,-34.829282021756,-34.8292630268688,-34.8292692638762,-34.8292230100219,-34.8291791907565,-34.8291432088664,-34.8291430020931,-34.8291372924818,-34.8291298919986,-34.8291133777083,-34.8291044892525,-34.8290836940653,-34.829042150258,-34.8289798708002,-34.8289008695475,-34.8288992384809,-34.8288846010734,-34.8288646707978,-34.8287577900961,-34.8287470949282,-34.8286380483422,-34.8286162504338,-34.8286101667894,-34.8286066154648,-34.8286046344431,-34.8285435727761,-34.8284506952704,-34.8282650186353,-34.8281812739441,-34.8276108034221,-34.8273820176812,-34.8272587999393,-34.8271280964895,-34.8270803284608,-34.8271008622427,-34.8271587687732,-34.827276999748,-34.8272973678162,-34.8258312475668,-34.8258156727709,-34.8256027586242,-34.8256442308514,-34.8256893290336,-34.8277857831038,-34.8295246452546,-34.8303471430194,-34.8304740852334,-34.8326828743625,-34.8327676914381,-34.8330975648956,-34.8336564931493,-34.8342616352365,-34.8347538757642,-34.8353228625386,-34.8363524401848,-34.8374226587905,-34.838488351729,-34.8393503196012,-34.8402537850571,-34.8403558698155,-34.841206278377,-34.8414745617939,-34.8417641756336,-34.8417680930291,-34.8419729430903,-34.8426305625593,-34.8441963277823,-34.8442489504919,-34.8444514948271,-34.8444548821547,-34.8450495455045,-34.8457790517295,-34.8458400398493,-34.8466433841545,-34.8466754907127,-34.8467129700417,-34.8467183428126,-34.8467720138255,-34.846870401233,-34.8469956458249,-34.8478812392147,-34.8481404562329,-34.848266246241,-34.8475890952153,-34.8472595419229,-34.84651015211,-34.8464334091984,-34.8460364644839]}]],[[{&#34;lng&#34;:[-56.142231263169,-56.1422298571768,-56.1418226788804,-56.1429784082529,-56.1430578725681,-56.1432020769379,-56.1434502215792,-56.1435463289609,-56.1436253518983,-56.1436585223385,-56.1437286092453,-56.143737968653,-56.1437648838585,-56.1437849475392,-56.1439507964051,-56.1440391308261,-56.1441895808516,-56.1442585864512,-56.144301021318,-56.1443314760646,-56.1444462685994,-56.1445559051418,-56.1448279821255,-56.1455098671244,-56.1461252611655,-56.1465572272748,-56.1472800000272,-56.1480689068867,-56.1483027067508,-56.1484962864772,-56.1495573645224,-56.1502034410539,-56.1512716452875,-56.1520271015623,-56.1523883245209,-56.1528081343609,-56.153533955352,-56.1535350781902,-56.1543265365753,-56.1552363199717,-56.1554459160988,-56.1556394227482,-56.1553024037939,-56.154809857284,-56.1544928400498,-56.1539033548897,-56.1532900756471,-56.1526768835324,-56.1522865842358,-56.1516117456223,-56.1515587946976,-56.1509311551103,-56.1500351243882,-56.1498369151617,-56.1496276506483,-56.1484879948259,-56.1465219824315,-56.1464099880064,-56.1460495654606,-56.1454286085506,-56.1449389328894,-56.1440626807734,-56.143185016518,-56.1424933869653,-56.1422838033608,-56.1419181681267,-56.1414589361383,-56.1408794107368,-56.1406009706715,-56.139710342828,-56.140166568115,-56.1393016920763,-56.1382987108388,-56.1375141201798,-56.1367360084622,-56.1357175936651,-56.1351569511941,-56.1350185998427,-56.1349665896864,-56.1344495196869,-56.1342217455513,-56.1337392404206,-56.1342547174812,-56.1343513954097,-56.134641702622,-56.1350158517588,-56.1355131949181,-56.1357903945437,-56.136522858961,-56.1373582631336,-56.1378828536784,-56.1382030254658,-56.1387459521337,-56.1385698079583,-56.13835907261,-56.1382397472852,-56.1380922850208,-56.1376671193971,-56.1376981717665,-56.1385040807277,-56.1393669490644,-56.1410257396549,-56.1411240385737,-56.1413781429656,-56.1415472888842,-56.1416433465587,-56.1417736636553,-56.1423747790405,-56.1422767059218,-56.1422186408446,-56.142224084674,-56.142089553181,-56.1420545084408,-56.1421414959433,-56.142231263169],&#34;lat&#34;:[-34.8575393286888,-34.8576747668511,-34.8578872145522,-34.85943070557,-34.8593579680574,-34.8592428870405,-34.8590103804642,-34.8588601409396,-34.8585760381294,-34.8584004392353,-34.8580294149092,-34.8579798680373,-34.8578373838532,-34.8577344024097,-34.8569559259295,-34.8565541375626,-34.8557547919987,-34.8552294320145,-34.8548092840918,-34.8546360411722,-34.8534053548091,-34.8532969188859,-34.8531294892048,-34.8527086555035,-34.852328546138,-34.8520615651157,-34.8516135774103,-34.8511248586989,-34.8510063404009,-34.8508838833972,-34.8502017126089,-34.8498124918778,-34.8491675726097,-34.8487134550764,-34.8485100468402,-34.848242001936,-34.8477984631916,-34.8477977633818,-34.8472708930896,-34.8467350047389,-34.8465924317718,-34.8464800098699,-34.8460352077634,-34.8455023870418,-34.8451058354338,-34.8443967703368,-34.8436322345368,-34.8428926517448,-34.8424262544256,-34.8415798089546,-34.8415217761153,-34.8407486174655,-34.8396460736138,-34.8394033676148,-34.8394225894368,-34.8396490424849,-34.839978453546,-34.8399967596536,-34.8400968045826,-34.840525769144,-34.8408670414268,-34.8414673280633,-34.8420379762841,-34.8425061464823,-34.8426480136397,-34.8429194136076,-34.8432533813673,-34.8436420564058,-34.8438408175459,-34.8444570766198,-34.8449607497102,-34.8455081920402,-34.8461375101008,-34.8468826308735,-34.8465810414419,-34.8462154034339,-34.8460364644839,-34.8464334091984,-34.84651015211,-34.8472595419229,-34.8475890952153,-34.848266246241,-34.8488620731633,-34.8489838889868,-34.8493233820123,-34.8497370296267,-34.850272168945,-34.850586994642,-34.8514190270757,-34.8523679931485,-34.8529661549692,-34.853348475475,-34.8536220899183,-34.8539605377979,-34.8544703340461,-34.854912089988,-34.85545800508,-34.855693072493,-34.8557158513913,-34.8567144547299,-34.8562391345952,-34.8553288247339,-34.8552748789705,-34.8555603788598,-34.8557504219804,-34.8558583466504,-34.8558906942782,-34.8559895983766,-34.8560690698686,-34.8561709374624,-34.8562926027346,-34.8569088099639,-34.8570708868845,-34.857358423682,-34.8575393286888]}]],[[{&#34;lng&#34;:[-56.1440987326996,-56.1431880497037,-56.1421653889581,-56.141337275212,-56.1410715048141,-56.1407036884551,-56.1404099036094,-56.1396643224274,-56.1393228062988,-56.1392254527578,-56.1389766877966,-56.1393516678501,-56.1392298817086,-56.1391768807245,-56.1390925149158,-56.1389419325063,-56.1386874467489,-56.1386159862638,-56.1374194680319,-56.1373401871447,-56.1372406618515,-56.1372235554743,-56.1370161994713,-56.1369616685997,-56.1361346821016,-56.135260554625,-56.1340988603845,-56.1340495021928,-56.1342195306285,-56.1342586926352,-56.1343009842906,-56.1342385175343,-56.1334537797335,-56.1327580937595,-56.1321823011207,-56.1319989697148,-56.1313684940565,-56.1306750887641,-56.1299733985989,-56.1299095483075,-56.129787145181,-56.1290626715515,-56.1287231097641,-56.1282503192673,-56.1282475044823,-56.1275687010726,-56.1273811776954,-56.1265312060099,-56.1256232911083,-56.125893116931,-56.1267692020839,-56.1264517116793,-56.1261492734582,-56.1263923544006,-56.1267761256546,-56.1272676991716,-56.1273133871813,-56.1276615504454,-56.1277377342318,-56.1277790048906,-56.1278190058346,-56.1278569343255,-56.127894315881,-56.1281211539381,-56.1282886205735,-56.1283407258923,-56.1283718619499,-56.1283901313719,-56.1285345858708,-56.1286453666634,-56.1287408922683,-56.1287980987702,-56.1288321926876,-56.128899391465,-56.1302696006623,-56.1299472570548,-56.1288219874245,-56.1290654462154,-56.1291462355344,-56.1314666480103,-56.1328465063052,-56.1332823010557,-56.134241221003,-56.1343881483329,-56.1362381452151,-56.1364476785924,-56.1365897914404,-56.136712953072,-56.1375286676823,-56.1379149101143,-56.1382281317471,-56.138535225161,-56.1394248559534,-56.1401562767768,-56.1412012150423,-56.1416402921217,-56.1419451992934,-56.1422944385453,-56.14284970571,-56.1434955249433,-56.1446242298494,-56.144690304455,-56.1451708823013,-56.1455993332644,-56.1457489737711,-56.1460980037749,-56.1463816567286,-56.1464277071446,-56.146785474988,-56.1471783509375,-56.1479765647942,-56.1481252059215,-56.1482709577562,-56.1492245395427,-56.1495702711787,-56.1501436182991,-56.1505072866416,-56.1510732902759,-56.1511441428646,-56.1518307464378,-56.1518939761871,-56.1522882206343,-56.1523736351886,-56.1524908347617,-56.1528220796073,-56.152865582492,-56.1533704543637,-56.1534670486114,-56.1538395887221,-56.1541279083354,-56.1544333391873,-56.1545822226369,-56.1546574070797,-56.1548913484326,-56.1552214881461,-56.1543638414131,-56.1543100448443,-56.1536349112912,-56.1530920642205,-56.1524618750628,-56.1523193448638,-56.152240488708,-56.1513340084713,-56.1512194086558,-56.1501541156155,-56.1493073689266,-56.1492707338135,-56.1484072638955,-56.1475327236966,-56.1466291577045,-56.146073928025,-56.1458026714644,-56.1454338145688,-56.1440987326996],&#34;lat&#34;:[-34.8726329126193,-34.8721168531408,-34.8715379629257,-34.87107126307,-34.8709186743761,-34.870712250418,-34.8705465482945,-34.8701199065978,-34.8699223813956,-34.869841492179,-34.8695671698706,-34.8689832879144,-34.8683046079018,-34.8679248389629,-34.8676401108087,-34.8670935132936,-34.8661414322889,-34.8661538619859,-34.8663619752031,-34.865979074398,-34.8655830293651,-34.865469777861,-34.8645261431648,-34.8645738113345,-34.86526987031,-34.8657812490411,-34.8659491513852,-34.8660618156744,-34.8668113742038,-34.8669643770668,-34.8671723828428,-34.867194366155,-34.8677212449214,-34.8682104442501,-34.8686120465384,-34.868741488207,-34.8691913410461,-34.8696565418195,-34.8701600185177,-34.87021975726,-34.8703056765708,-34.8708301804041,-34.8710788569864,-34.8714204623276,-34.8714224967102,-34.8719153367137,-34.8720509816692,-34.8726659021328,-34.8733350330541,-34.8733794793095,-34.873399984051,-34.8743111256167,-34.8752966730446,-34.8760464413967,-34.877226373668,-34.8787395684362,-34.8788589133117,-34.8798881629441,-34.8801256302419,-34.8802402771181,-34.8803512829478,-34.8804533449564,-34.880607190875,-34.8812892030404,-34.8818054719731,-34.8821398177675,-34.8822479119128,-34.8823920916932,-34.8835455336621,-34.8843912217658,-34.8851855811432,-34.885659265885,-34.8859876045589,-34.8866998766139,-34.8866647842144,-34.8869198746198,-34.887790407227,-34.8878767414627,-34.8878887501268,-34.887815743627,-34.8877583961347,-34.8877393342207,-34.887701574025,-34.8876784468742,-34.8876391425478,-34.8876552949327,-34.8877494367237,-34.8876524498447,-34.8870174911144,-34.8867088066524,-34.8864655435442,-34.8864845374289,-34.8865072880985,-34.8865553816599,-34.8866249628442,-34.8866478805295,-34.8866957516836,-34.8867735747989,-34.8869122108725,-34.8870926923976,-34.8875020596085,-34.8874728388656,-34.887079547285,-34.8867359596714,-34.8866184082138,-34.886338112825,-34.8861300892919,-34.8861029332035,-34.8858766973612,-34.8856233312772,-34.8852950592591,-34.885237880407,-34.8851789262528,-34.8847664082984,-34.884616812398,-34.8843459501058,-34.8841679631601,-34.8838899822248,-34.8837885495124,-34.8828025574547,-34.8828293201962,-34.8823005615193,-34.8821939535827,-34.8820419064168,-34.8816908406366,-34.8816473539287,-34.8811509507978,-34.8810425280542,-34.8808205981486,-34.8806094354828,-34.880404604638,-34.8802233843031,-34.8800951470463,-34.8797628667774,-34.8792986150613,-34.8787388247358,-34.8786628114693,-34.8782165447075,-34.8778613008871,-34.8774601593825,-34.8773737160059,-34.8773258902567,-34.8767553099044,-34.8766750917614,-34.8761152418789,-34.875626109204,-34.8756026035634,-34.8750741906279,-34.8745984512978,-34.8740778928325,-34.8737547703567,-34.8736022058419,-34.8733920866447,-34.8726329126193]}]],[[{&#34;lng&#34;:[-56.1481510492496,-56.1486726916072,-56.1489951050089,-56.1493174874783,-56.1495207771109,-56.1499708811168,-56.1501622246637,-56.1502350849462,-56.1509209110716,-56.1517181422241,-56.1521278301773,-56.1521401465291,-56.1523639920627,-56.1523532434631,-56.1523538361309,-56.1523484220139,-56.1523631849268,-56.1521225167466,-56.1521198208966,-56.1521149325825,-56.1521169025814,-56.1521132105772,-56.1521234542168,-56.152084342998,-56.1520767047417,-56.1520305724162,-56.1520302292352,-56.1519680272488,-56.1519642400764,-56.1519192331881,-56.151848068241,-56.1517682133157,-56.1517623903318,-56.15169969047,-56.1516439018965,-56.1516199656629,-56.1514889187318,-56.1515775541013,-56.1516539749261,-56.1517521970759,-56.1518123409529,-56.151944995885,-56.1522822331402,-56.1523147443359,-56.1523582323349,-56.1526467211159,-56.1527547001368,-56.1529196852239,-56.1529617469162,-56.1531996962994,-56.153275121865,-56.1531331119602,-56.1506145988262,-56.1504801809911,-56.1504407043617,-56.150230949824,-56.1498214270451,-56.149561970327,-56.1495285259004,-56.1491070828348,-56.1487970676645,-56.1483027067508,-56.1480689068867,-56.1472792870932,-56.1472792863258,-56.1465572272748,-56.1461252611655,-56.1455098671244,-56.1448279821255,-56.1445559051418,-56.1444462685994,-56.1443314760646,-56.144301021318,-56.1442585864512,-56.1441895808516,-56.1440391308261,-56.1439507964051,-56.1437849475392,-56.1437648838585,-56.143737968653,-56.1437286092453,-56.1436585223385,-56.1436253518983,-56.1435463289609,-56.1434502215792,-56.1432020769379,-56.1430578725681,-56.1429784082529,-56.1418226788804,-56.1422298571768,-56.142231263169,-56.1421414959433,-56.1420545084408,-56.142089553181,-56.142224084674,-56.1422186408446,-56.1422767059218,-56.1423747790405,-56.1417736636553,-56.1416433465587,-56.1415472888842,-56.1413781429656,-56.1411240385737,-56.1410257396549,-56.1393669490644,-56.1385040807277,-56.1376408488703,-56.13696043463,-56.1367963833578,-56.1369802619526,-56.1371516499112,-56.1379596266055,-56.1367853997413,-56.1364944678594,-56.1363539465286,-56.1361839131038,-56.1357512410179,-56.1349443982417,-56.1349821143596,-56.1338209855357,-56.1339041784404,-56.1338847202785,-56.1339393399447,-56.1339898643204,-56.1339794038225,-56.1340888320128,-56.1340988603845,-56.135260554625,-56.1361346821016,-56.1369616685997,-56.1370161994713,-56.1372235554743,-56.1372406618515,-56.1373401871447,-56.1374194680319,-56.1386159862638,-56.1386874467489,-56.1389419325063,-56.1390925149158,-56.1391768807245,-56.1392298817086,-56.1393516678501,-56.1389766877966,-56.1392254527578,-56.1393228062988,-56.1396643224274,-56.1404099036094,-56.1407036884551,-56.1410715048141,-56.141337275212,-56.1421653889442,-56.1421653889581,-56.1431880497037,-56.1440987326996,-56.1454324238516,-56.1458026714644,-56.146073928025,-56.1466291577045,-56.1475327236966,-56.1478257514852,-56.1481510492496],&#34;lat&#34;:[-34.8738577693092,-34.8732254923945,-34.8728418395339,-34.872439667958,-34.8722012562529,-34.8716718469731,-34.8714273701354,-34.8713224229425,-34.8705291976796,-34.8695717122132,-34.8698156997105,-34.8698230343265,-34.8698762572366,-34.8696564660544,-34.8689651677897,-34.8682255971647,-34.8680542141827,-34.8680632540669,-34.867929565615,-34.8676571989357,-34.8674652889256,-34.8674590720919,-34.8671929267015,-34.8657993589174,-34.8655271975485,-34.8645332057224,-34.864530502721,-34.8640405777414,-34.8640436468753,-34.8636718674509,-34.8633635842532,-34.8630176538019,-34.8629942013044,-34.8627416721504,-34.8625441632176,-34.8624594212045,-34.8620078171147,-34.8618764247843,-34.8617647487886,-34.8616306190664,-34.8615335335829,-34.8613729805842,-34.8608623188896,-34.8608164869575,-34.8607499742839,-34.8597577125492,-34.8593878684778,-34.8588195720595,-34.8586436946884,-34.8576650799917,-34.8575477061257,-34.8564889300878,-34.8575274955584,-34.85757881034,-34.8575992958731,-34.8576571844818,-34.8562270974362,-34.8553525665605,-34.8552417162327,-34.8538118048437,-34.8527688635785,-34.8510063404009,-34.8511248586989,-34.8516140193044,-34.8516140176374,-34.8520615651157,-34.852328546138,-34.8527086555035,-34.8531294892048,-34.8532969188859,-34.8534053548091,-34.8546360411722,-34.8548092840918,-34.8552294320145,-34.8557547919987,-34.8565541375626,-34.8569559259295,-34.8577344024097,-34.8578373838532,-34.8579798680373,-34.8580294149092,-34.8584004392353,-34.8585760381294,-34.8588601409396,-34.8590103804642,-34.8592428870405,-34.8593579680574,-34.85943070557,-34.8578872145522,-34.8576747668511,-34.8575393286888,-34.857358423682,-34.8570708868845,-34.8569088099639,-34.8562926027346,-34.8561709374624,-34.8560690698686,-34.8559895983766,-34.8558906942782,-34.8558583466504,-34.8557504219804,-34.8555603788598,-34.8552748789705,-34.8553288247339,-34.8562391345952,-34.8567144547299,-34.8571852625376,-34.8575609779703,-34.8576515113273,-34.8578783280425,-34.8580968476654,-34.8590954476689,-34.8596801082599,-34.8598071146005,-34.8598730420645,-34.8599573501106,-34.8601328493502,-34.8605223769062,-34.8612388947661,-34.8617873843028,-34.8629721386443,-34.8631887223883,-34.8641197963623,-34.864969202002,-34.8650221928597,-34.8658452276198,-34.8659491513852,-34.8657812490411,-34.86526987031,-34.8645738113345,-34.8645261431648,-34.865469777861,-34.8655830293651,-34.865979074398,-34.8663619752031,-34.8661538619859,-34.8661414322889,-34.8670935132936,-34.8676401108087,-34.8679248389629,-34.8683046079018,-34.8689832879144,-34.8695671698706,-34.869841492179,-34.8699223813956,-34.8701199065978,-34.8705465482945,-34.870712250418,-34.8709186743761,-34.87107126307,-34.8715379629436,-34.8715379629257,-34.8721168531408,-34.8726329126193,-34.8733912962371,-34.8736022058419,-34.8737547703567,-34.8740778928325,-34.8745984512978,-34.8742551926039,-34.8738577693092]}]],[[{&#34;lng&#34;:[-56.1714042548561,-56.1709588835,-56.1700576887308,-56.1699185549977,-56.1695059491846,-56.1694863807593,-56.1694466135837,-56.1694195446236,-56.169403429646,-56.1693571891319,-56.1693082305494,-56.1692617179787,-56.1692030828467,-56.1691502795638,-56.1690915713514,-56.1690357303079,-56.1689785588626,-56.1689221881241,-56.1688665194143,-56.1688118945762,-56.1687735084756,-56.1687357903273,-56.1686227490093,-56.1685731497827,-56.1685346749403,-56.1685002988783,-56.1684700432747,-56.1684442299622,-56.1684232174588,-56.1684069907569,-56.168395890032,-56.1683895734411,-56.16838872467,-56.1683926783757,-56.1684090234719,-56.1684259271896,-56.1684476333841,-56.1684737651942,-56.1685046828059,-56.168513602406,-56.1684314183549,-56.1681077473746,-56.1675813299425,-56.1674746449224,-56.1674167050413,-56.1662216937434,-56.1661731988665,-56.1660885067221,-56.1657366648005,-56.1656150515745,-56.1649908664899,-56.1648927039683,-56.1638975874868,-56.1630652122078,-56.1622539558127,-56.1618069993379,-56.1606575177597,-56.1602891956663,-56.1601940467983,-56.1599733578007,-56.1596495562588,-56.1592616126644,-56.1585212440911,-56.1584284262225,-56.158146802383,-56.1579808169148,-56.1578229612497,-56.1577515447895,-56.1576268205638,-56.1574372363561,-56.1573078844536,-56.1569126146779,-56.1569119524785,-56.1565160740799,-56.1560489770182,-56.1559689795618,-56.1558490034003,-56.1560408346842,-56.1563049515843,-56.1564797057693,-56.1565427887702,-56.1564585920166,-56.1556404383859,-56.1548702011548,-56.1540752745242,-56.153275121865,-56.1531996962994,-56.1529617469162,-56.1529196852239,-56.1527547001368,-56.1526467211159,-56.1523582323349,-56.1523147443359,-56.1522822331402,-56.151944995885,-56.1518123409529,-56.1517521970759,-56.1516539749261,-56.1515775541013,-56.1514889187318,-56.1516199656629,-56.1516439018965,-56.15169969047,-56.1517623903318,-56.1517682133157,-56.151848068241,-56.1519192331881,-56.1519642400764,-56.1519680272488,-56.1520302292352,-56.1520305724162,-56.1520767047417,-56.152084342998,-56.1521234542168,-56.1521132105772,-56.1521169025814,-56.1521149325825,-56.1521198208966,-56.1521225167466,-56.1523631849268,-56.1523484220139,-56.1523538361309,-56.1523532434631,-56.1523639920627,-56.1521401465291,-56.1521278301773,-56.1517181422241,-56.1509209110716,-56.1502350849462,-56.1501622246637,-56.1499708811168,-56.1495207771109,-56.1493174874783,-56.1489951050089,-56.1486726916072,-56.1481510492496,-56.1478257514852,-56.1475327236966,-56.1484072638955,-56.1492707338135,-56.1493073689266,-56.1501541156155,-56.1512194086558,-56.1513340084713,-56.152240488708,-56.1523193448638,-56.1524618750628,-56.1530920642205,-56.1536349112912,-56.1543100448443,-56.1543638414131,-56.1552214881461,-56.1553454686586,-56.1553817095978,-56.156130659982,-56.1563684006017,-56.1569899710411,-56.1570135347651,-56.1571610592757,-56.1577924395273,-56.1585602885748,-56.1592498231713,-56.1600954859679,-56.1610876993444,-56.1612954998458,-56.162065123427,-56.1622291630264,-56.1627940693631,-56.1630502154265,-56.1631951720123,-56.1637576113627,-56.1644721261384,-56.164517341074,-56.1655570058091,-56.1662499464727,-56.1663367896346,-56.1666893029887,-56.1670276727048,-56.1673587597289,-56.167402692189,-56.1677539695296,-56.1684501680246,-56.1689252265851,-56.1683083560016,-56.1682641387512,-56.1687514471461,-56.1687894636535,-56.1689043587124,-56.1690323168887,-56.1691143993718,-56.1693203587637,-56.1700121505595,-56.1700054118491,-56.1699363311436,-56.1712741210761,-56.1712328698017,-56.171215931066,-56.1725205689011,-56.173732909136,-56.173770902897,-56.1737975649807,-56.1738392660065,-56.1741003258169,-56.1743865191893,-56.1743775212621,-56.1742631027844,-56.1742197538036,-56.1738432578672,-56.1737843107862,-56.1735062946987,-56.1734642643561,-56.173097756126,-56.1734195378294,-56.1738446457931,-56.1742894551923,-56.1745505488748,-56.1742217437102,-56.1740131603354,-56.1735949541814,-56.1743798636203,-56.1745218401746,-56.1749453219083,-56.1754692513141,-56.1747312973637,-56.173985134785,-56.1734933485155,-56.1725091868572,-56.1724782737551,-56.1722654389908,-56.1714310169913,-56.1714042548561],&#34;lat&#34;:[-34.8637289606234,-34.8632794604714,-34.8624120331169,-34.862511284236,-34.8628056144301,-34.8627831311683,-34.8627516882857,-34.8627337340263,-34.8627202554083,-34.8626933381931,-34.862670933305,-34.8626423911215,-34.8626250246871,-34.8626125454548,-34.8626024495422,-34.8625996442689,-34.8626132235426,-34.862617879277,-34.862627042336,-34.8626407093844,-34.8626511732831,-34.8626679534348,-34.8627301244525,-34.8627630324696,-34.8627991911175,-34.8628353380928,-34.8628759823874,-34.8629166133418,-34.8629617382806,-34.8630068515466,-34.863051949805,-34.8630970363906,-34.8631421079685,-34.8631916751982,-34.8632637423651,-34.8633042599277,-34.8633492714747,-34.8633897640244,-34.8634302449014,-34.8634392345376,-34.8634845228939,-34.8637493718845,-34.8641448000825,-34.8642171940846,-34.8642579117504,-34.8651624682533,-34.8652053715596,-34.8652754948774,-34.8655791045068,-34.865663020586,-34.8661231256899,-34.8661976130107,-34.8669513336351,-34.8665304025324,-34.8661599209985,-34.8659309404185,-34.8653573127869,-34.8651676730726,-34.8651177501911,-34.8650183572468,-34.8647854278068,-34.8645219424059,-34.863935333722,-34.8638622927195,-34.8636404996588,-34.8635071400563,-34.8633872986654,-34.8633272202521,-34.8632222968836,-34.8630770847886,-34.8629780071909,-34.8626591350395,-34.8626586008266,-34.8623342457087,-34.8619441969253,-34.8618473622674,-34.8617001847323,-34.8615982589696,-34.861454774671,-34.861356156577,-34.8613307028255,-34.8611806548303,-34.8597861488812,-34.8585216584178,-34.8572205090484,-34.8575477061257,-34.8576650799917,-34.8586436946884,-34.8588195720595,-34.8593878684778,-34.8597577125492,-34.8607499742839,-34.8608164869575,-34.8608623188896,-34.8613729805842,-34.8615335335829,-34.8616306190664,-34.8617647487886,-34.8618764247843,-34.8620078171147,-34.8624594212045,-34.8625441632176,-34.8627416721504,-34.8629942013044,-34.8630176538019,-34.8633635842532,-34.8636718674509,-34.8640436468753,-34.8640405777414,-34.864530502721,-34.8645332057224,-34.8655271975485,-34.8657993589174,-34.8671929267015,-34.8674590720919,-34.8674652889256,-34.8676571989357,-34.867929565615,-34.8680632540669,-34.8680542141827,-34.8682255971647,-34.8689651677897,-34.8696564660544,-34.8698762572366,-34.8698230343265,-34.8698156997105,-34.8695717122132,-34.8705291976796,-34.8713224229425,-34.8714273701354,-34.8716718469731,-34.8722012562529,-34.872439667958,-34.8728418395339,-34.8732254923945,-34.8738577693092,-34.8742551926039,-34.8745984512978,-34.8750741906279,-34.8756026035634,-34.875626109204,-34.8761152418789,-34.8766750917614,-34.8767553099044,-34.8773258902567,-34.8773737160059,-34.8774601593825,-34.8778613008871,-34.8782165447075,-34.8786628114693,-34.8787388247358,-34.8792986150613,-34.8791301318735,-34.8790837602943,-34.8780793216337,-34.8777881263967,-34.8769659035035,-34.8769227929462,-34.8767141282399,-34.8758649599417,-34.8749111760303,-34.8740417475248,-34.8733989568545,-34.8728785351264,-34.8727717925765,-34.8723750829833,-34.8722876862439,-34.8719567322291,-34.8718326863377,-34.8717516121469,-34.8714104021033,-34.8709528723945,-34.8708953778591,-34.8702161608822,-34.8698219012021,-34.8697762630192,-34.8695890864622,-34.8694380338731,-34.8693082859339,-34.8692880847305,-34.8691265580119,-34.868831853149,-34.8686431529051,-34.8690675993026,-34.8691997879023,-34.8697216276986,-34.8697449192523,-34.8698153117967,-34.8698521466006,-34.869857076859,-34.8698696139263,-34.8699117217861,-34.8699958924883,-34.8709935996836,-34.8710936729606,-34.87172475676,-34.8720222610239,-34.8721179020151,-34.8722092724705,-34.8718801627402,-34.8712806660644,-34.8702909328306,-34.8703115869209,-34.870333043278,-34.8703274662361,-34.8702565479306,-34.8702526746972,-34.8702190341042,-34.8702144613007,-34.8701996686564,-34.8702018717024,-34.8701495267482,-34.8701635442182,-34.8701845228398,-34.8702172905248,-34.8702318116937,-34.8698632279831,-34.8696350448755,-34.8691179144565,-34.8683450629321,-34.8682094688361,-34.8677891729121,-34.8672189647961,-34.8664016123116,-34.8655683083887,-34.8658710820772,-34.8648509574479,-34.8648212606171,-34.8645829643883,-34.8637559311995,-34.8637289606234]}]],[[{&#34;lng&#34;:[-56.1618138796767,-56.1616745908669,-56.1616638755623,-56.1615595443536,-56.1614165706184,-56.1613238511339,-56.1611617858861,-56.1608958870886,-56.1606365966992,-56.1605305701722,-56.1603533906426,-56.1597278212949,-56.1596250841851,-56.1595748683754,-56.1594609653961,-56.1593832536515,-56.1591705827458,-56.1589778221761,-56.1583338419212,-56.1581867356957,-56.1580684584097,-56.1578084752613,-56.1572948409927,-56.1563180713664,-56.1556394227482,-56.1554459160988,-56.1552363199717,-56.1543265365753,-56.1535350781902,-56.153533955352,-56.1528081343609,-56.1523883245209,-56.1520271015623,-56.1512716452875,-56.1502034410539,-56.1495573645224,-56.1484962864772,-56.1483027067508,-56.1487970676645,-56.1491070828348,-56.1495285259004,-56.149561970327,-56.1498214270451,-56.150230949824,-56.1504407043617,-56.1504801809911,-56.1506145988262,-56.1531331119602,-56.153275121865,-56.1540752745242,-56.1548702011548,-56.1556404383859,-56.1564585920166,-56.1565427887702,-56.1564797057693,-56.1563049515843,-56.1560408346842,-56.1558490034003,-56.1559689795618,-56.1560489770182,-56.1565160740799,-56.1569119524785,-56.1569126146779,-56.1573078844536,-56.1574372363561,-56.1576268205638,-56.1577515447895,-56.1578229612497,-56.1579808169148,-56.158146802383,-56.1584284262225,-56.1585212440911,-56.1592616126644,-56.1596495562588,-56.1599733578007,-56.1601940467983,-56.1602891956663,-56.1606575177597,-56.1618069993379,-56.1622539558127,-56.1630652122078,-56.1638975874868,-56.1648927039683,-56.1649908664899,-56.1656150515745,-56.1657366648005,-56.1660885067221,-56.1661731988665,-56.1662216937434,-56.1674167050413,-56.1674746449224,-56.1675813299425,-56.1681077473746,-56.1684314183549,-56.168513602406,-56.1685046828059,-56.1684737651942,-56.1684476333841,-56.1684259271896,-56.1684090234719,-56.1683926783757,-56.16838872467,-56.1683895734411,-56.168395890032,-56.1684069907569,-56.1684232174588,-56.1684442299622,-56.1684700432747,-56.1685002988783,-56.1685346749403,-56.1685731497827,-56.1686227490093,-56.1685332308622,-56.1683580216049,-56.1683182216431,-56.1679950016169,-56.1678606803824,-56.1675224045532,-56.1674887205148,-56.1674447495045,-56.1670027332121,-56.1666287253791,-56.1667735904837,-56.1666252630246,-56.1661034524744,-56.1654987312972,-56.1648601749066,-56.1642070486136,-56.1640310238478,-56.1635257176054,-56.1634901139123,-56.1628797464491,-56.162449390292,-56.1622054655608,-56.1618138796767],&#34;lat&#34;:[-34.8540599559269,-34.853885265425,-34.8537267127643,-34.8533439364674,-34.8528620612854,-34.8525468020315,-34.8519972219323,-34.8510966875036,-34.8502185012672,-34.8502415727117,-34.8502802197637,-34.8504106170174,-34.850431516965,-34.8504431754168,-34.8504687803425,-34.8504829843346,-34.8505286665913,-34.8505700716899,-34.8497848367236,-34.8496006117093,-34.8494524892204,-34.8491468412036,-34.8485392609555,-34.847317136505,-34.8464800098699,-34.8465924317718,-34.8467350047389,-34.8472708930896,-34.8477977633818,-34.8477984631916,-34.848242001936,-34.8485100468402,-34.8487134550764,-34.8491675726097,-34.8498124918778,-34.8502017126089,-34.8508838833972,-34.8510063404009,-34.8527688635785,-34.8538118048437,-34.8552417162327,-34.8553525665605,-34.8562270974362,-34.8576571844818,-34.8575992958731,-34.85757881034,-34.8575274955584,-34.8564889300878,-34.8575477061257,-34.8572205090484,-34.8585216584178,-34.8597861488812,-34.8611806548303,-34.8613307028255,-34.861356156577,-34.861454774671,-34.8615982589696,-34.8617001847323,-34.8618473622674,-34.8619441969253,-34.8623342457087,-34.8626586008266,-34.8626591350395,-34.8629780071909,-34.8630770847886,-34.8632222968836,-34.8633272202521,-34.8633872986654,-34.8635071400563,-34.8636404996588,-34.8638622927195,-34.863935333722,-34.8645219424059,-34.8647854278068,-34.8650183572468,-34.8651177501911,-34.8651676730726,-34.8653573127869,-34.8659309404185,-34.8661599209985,-34.8665304025324,-34.8669513336351,-34.8661976130107,-34.8661231256899,-34.865663020586,-34.8655791045068,-34.8652754948774,-34.8652053715596,-34.8651624682533,-34.8642579117504,-34.8642171940846,-34.8641448000825,-34.8637493718845,-34.8634845228939,-34.8634392345376,-34.8634302449014,-34.8633897640244,-34.8633492714747,-34.8633042599277,-34.8632637423651,-34.8631916751982,-34.8631421079685,-34.8630970363906,-34.863051949805,-34.8630068515466,-34.8629617382806,-34.8629166133418,-34.8628759823874,-34.8628353380928,-34.8627991911175,-34.8627630324696,-34.8627301244525,-34.8626053961725,-34.8623818295474,-34.8623310446824,-34.8619127572942,-34.8617360478211,-34.8613100798113,-34.8612605926229,-34.8612021191333,-34.8606399225275,-34.8601630531612,-34.8600864342199,-34.8599091667419,-34.8592886086192,-34.8584972619718,-34.8576800026877,-34.8568898130323,-34.8566909542919,-34.856112887226,-34.8560653017999,-34.8553346897706,-34.8548336776422,-34.854551062651,-34.8540599559269]}]],[[{&#34;lng&#34;:[-56.1741255266189,-56.1731046918149,-56.1720671433913,-56.1710434787946,-56.1710432553461,-56.170081132488,-56.1699807840691,-56.1689538644604,-56.168145440869,-56.1679252473095,-56.1667952688337,-56.1658043212694,-56.1647550006655,-56.1636751254129,-56.162736252879,-56.1627027638538,-56.1625991705154,-56.161703496311,-56.1615828352138,-56.1614742953635,-56.1610318622144,-56.1606365966992,-56.1608958870886,-56.1611617858861,-56.1613238511339,-56.1614165706184,-56.1615595443536,-56.1616638755623,-56.1616745908669,-56.1618138796767,-56.1622054655608,-56.162449390292,-56.1628797464491,-56.1634901139123,-56.1635257176054,-56.1640310238478,-56.1642070486136,-56.1648601749066,-56.1654987312972,-56.1661034524744,-56.1666252630246,-56.1667735904837,-56.1666287253791,-56.1670027332121,-56.1674447495045,-56.1674887205148,-56.1675224045532,-56.1678606803824,-56.1679950016169,-56.1683182216431,-56.1683580216049,-56.1685332308622,-56.1686227490093,-56.1687357903273,-56.1687735084756,-56.1688118945762,-56.1688665194143,-56.1689221881241,-56.1689785588626,-56.1690357303079,-56.1690915713514,-56.1691502795638,-56.1692030828467,-56.1692617179787,-56.1693082305494,-56.1693571891319,-56.169403429646,-56.1694195446236,-56.1694968194762,-56.1698025770337,-56.1698767470812,-56.1708795000687,-56.170959044416,-56.1710666378508,-56.1714094694705,-56.1717811685021,-56.1718509486548,-56.172695034079,-56.1727952271031,-56.1728452665145,-56.172895953203,-56.172977788183,-56.1735911854432,-56.1736818764537,-56.1737629604676,-56.1745267452042,-56.1746186962728,-56.1746032136635,-56.174461816719,-56.174193023929,-56.1741063884155,-56.1738953345696,-56.1746744713904,-56.1754659691445,-56.1759241672981,-56.1759896136121,-56.1760688356797,-56.1761916794222,-56.1764251304897,-56.1764580230552,-56.1765264929171,-56.1773241663225,-56.1783647440519,-56.1784264356097,-56.1793932299619,-56.1795963372226,-56.1796659556266,-56.1807190399791,-56.1810200093634,-56.1820796662722,-56.182930123208,-56.18250563137,-56.1817713656328,-56.1816936590934,-56.1813161220763,-56.1808969408938,-56.1799923714676,-56.1796354724056,-56.179495586096,-56.1785918016579,-56.1777100102288,-56.1773494217641,-56.1768101978392,-56.1760391499546,-56.1758730862134,-56.1757765576287,-56.1751567384412,-56.1741255266189],&#34;lat&#34;:[-34.846991773828,-34.8472784750205,-34.8475742242126,-34.8478698666829,-34.8478699300489,-34.8481474331644,-34.8481747439159,-34.8483983258895,-34.8485762509834,-34.8486264135202,-34.8488415222709,-34.8490677932947,-34.8493198578138,-34.849552551153,-34.8497564329668,-34.84976935346,-34.8497861983175,-34.8499742481694,-34.8499949463232,-34.8500229374615,-34.8501314397006,-34.8502185012672,-34.8510966875036,-34.8519972219323,-34.8525468020315,-34.8528620612854,-34.8533439364674,-34.8537267127643,-34.853885265425,-34.8540599559269,-34.854551062651,-34.8548336776422,-34.8553346897706,-34.8560653017999,-34.856112887226,-34.8566909542919,-34.8568898130323,-34.8576800026877,-34.8584972619718,-34.8592886086192,-34.8599091667419,-34.8600864342199,-34.8601630531612,-34.8606399225275,-34.8612021191333,-34.8612605926229,-34.8613100798113,-34.8617360478211,-34.8619127572942,-34.8623310446824,-34.8623818295474,-34.8626053961725,-34.8627301244525,-34.8626679534348,-34.8626511732831,-34.8626407093844,-34.862627042336,-34.862617879277,-34.8626132235426,-34.8625996442689,-34.8626024495422,-34.8626125454548,-34.8626250246871,-34.8626423911215,-34.862670933305,-34.8626933381931,-34.8627202554083,-34.8627337340263,-34.8626569094058,-34.8624275837726,-34.8623719541138,-34.861633749154,-34.861572947169,-34.8614887900333,-34.861228619551,-34.8609207674415,-34.860855932632,-34.8602291854726,-34.8601559412269,-34.8601178377975,-34.860079679514,-34.8600168541591,-34.8595490481164,-34.8594817618525,-34.8594229615762,-34.8588259736943,-34.8587570685136,-34.8587200970878,-34.8583979879711,-34.8574928178183,-34.8572767180368,-34.8566237813007,-34.8564549108765,-34.8572181684201,-34.8576663396312,-34.8577296898521,-34.8578115451029,-34.8577187843895,-34.857546988509,-34.8575149907369,-34.8574617535209,-34.8568013663423,-34.8559775059909,-34.8559286619041,-34.8551658412556,-34.855706820067,-34.8556840933462,-34.8553251382239,-34.8552206460012,-34.8548841941511,-34.8546159207956,-34.8540942934457,-34.8532657707044,-34.8531754814621,-34.8527500101645,-34.8522689253901,-34.8512393277335,-34.8508617263282,-34.8507449327614,-34.8499857378918,-34.8492535236036,-34.8489513377586,-34.848539375299,-34.847927514268,-34.8478072944128,-34.8476603756306,-34.8467169821109,-34.846991773828]}]],[[{&#34;lng&#34;:[-56.1701616640202,-56.170284452829,-56.170342565317,-56.1704079511917,-56.1704391838109,-56.1699417642981,-56.1695791676643,-56.1691671787588,-56.1691595238473,-56.1690652744003,-56.1689171590015,-56.1687114692974,-56.1687059802809,-56.1686384849909,-56.1683552868395,-56.1683509626508,-56.1683279033029,-56.1683261675592,-56.1683242097313,-56.1683225422047,-56.1683259251587,-56.1683194137994,-56.1682917946807,-56.1683931769662,-56.1680143932844,-56.1658708311279,-56.165696848067,-56.1653727792698,-56.1649768538336,-56.1633236983429,-56.1630364710425,-56.1630138176929,-56.1629028319421,-56.1628597098823,-56.1624077495955,-56.1624067629526,-56.1624270634221,-56.1624632020597,-56.1624618330203,-56.1614491524217,-56.1604385412236,-56.1599096434575,-56.1594282918788,-56.1591145900948,-56.1579340946164,-56.1574036643933,-56.1570327487404,-56.1565362903997,-56.1558039660546,-56.1554170198299,-56.1534938780164,-56.1520175166191,-56.1517372654197,-56.1505106895098,-56.1499043968291,-56.1492834132387,-56.1484136146613,-56.1479374124049,-56.1473695261982,-56.1468521093531,-56.1460035117095,-56.1451932138182,-56.144867679265,-56.1446001479589,-56.1458889750411,-56.1461012621219,-56.1468185120261,-56.1474149462891,-56.1476553169211,-56.1480710082019,-56.1481507390896,-56.1486887014429,-56.1493893828979,-56.1498369151617,-56.1500351243882,-56.1509311551103,-56.1515587946976,-56.1516117456223,-56.1522865842358,-56.1526768835324,-56.1532900756471,-56.1539033548897,-56.1544928400498,-56.154809857284,-56.1553024037939,-56.1556394227482,-56.1563180713664,-56.1572948409927,-56.1578084752613,-56.1580684584097,-56.1581867356957,-56.1583338419212,-56.1589778221761,-56.1591705827458,-56.1593832536515,-56.1594609653961,-56.1595748683754,-56.1596250841851,-56.1597278212949,-56.1603533906426,-56.1605305701722,-56.1606365966992,-56.1609069500102,-56.1610318622144,-56.1614742953635,-56.1615828352138,-56.161703496311,-56.1625991705154,-56.1627027638538,-56.162736252879,-56.1636751254129,-56.1647550006655,-56.1658043212694,-56.1667952688337,-56.1679252473095,-56.168145440869,-56.1689538644604,-56.1699807840691,-56.170081132488,-56.1710432553461,-56.1710434787946,-56.1720671433913,-56.1731046918149,-56.1741255266189,-56.1751567384412,-56.1744484528169,-56.1742726725845,-56.1738720183782,-56.1732870225142,-56.1726924025201,-56.1726796709541,-56.172152245614,-56.1721116415934,-56.1720971305231,-56.1714913680012,-56.1714200079804,-56.1713828771644,-56.1699744241224,-56.1700491793423,-56.1701309715246,-56.1701616640202],&#34;lat&#34;:[-34.8371862602071,-34.8365384017036,-34.8362456241217,-34.8359026197125,-34.8357387770363,-34.8356850316894,-34.835649638498,-34.8356097438331,-34.8356089098731,-34.8355986418799,-34.8355811540254,-34.8355603223249,-34.8355597664072,-34.8355511745071,-34.8355231776977,-34.8356826646165,-34.8365331367079,-34.8366265097176,-34.8367318291787,-34.8368215954735,-34.8369048744845,-34.8370907227352,-34.8384802442144,-34.8388946179175,-34.8387468950664,-34.8384686348938,-34.838446560176,-34.8384062127011,-34.8383493778603,-34.8381282129791,-34.8380118693282,-34.8379848854119,-34.8378437080431,-34.8378005036548,-34.8372378799602,-34.8371977528008,-34.8363458801349,-34.8352596032475,-34.8349035562916,-34.8347935228779,-34.834687981781,-34.8346350845005,-34.834586939671,-34.8345652184688,-34.8344330536413,-34.8343758274617,-34.8343376618797,-34.8342924211136,-34.8342176258731,-34.8341781054914,-34.8339666664469,-34.8338261839965,-34.8337953414235,-34.8336677289438,-34.8336016481976,-34.833535600802,-34.8334386207869,-34.8333863638366,-34.8333240416955,-34.8332712444667,-34.8331787034075,-34.8330950769459,-34.8330623734132,-34.8330335418773,-34.8346153047728,-34.8348775929016,-34.8357592309182,-34.8364923390008,-34.8367878113835,-34.8372987891867,-34.8373967954522,-34.8380330349117,-34.8388551462677,-34.8394033676148,-34.8396460736138,-34.8407486174655,-34.8415217761153,-34.8415798089546,-34.8424262544256,-34.8428926517448,-34.8436322345368,-34.8443967703368,-34.8451058354338,-34.8455023870418,-34.8460352077634,-34.8464800098699,-34.847317136505,-34.8485392609555,-34.8491468412036,-34.8494524892204,-34.8496006117093,-34.8497848367236,-34.8505700716899,-34.8505286665913,-34.8504829843346,-34.8504687803425,-34.8504431754168,-34.850431516965,-34.8504106170174,-34.8502802197637,-34.8502415727117,-34.8502185012672,-34.8501589531437,-34.8501314397006,-34.8500229374615,-34.8499949463232,-34.8499742481694,-34.8497861983175,-34.84976935346,-34.8497564329668,-34.849552551153,-34.8493198578138,-34.8490677932947,-34.8488415222709,-34.8486264135202,-34.8485762509834,-34.8483983258895,-34.8481747439159,-34.8481474331644,-34.8478699300489,-34.8478698666829,-34.8475742242126,-34.8472784750205,-34.846991773828,-34.8467169821109,-34.8455412343997,-34.8452529476164,-34.8445947542903,-34.8436363500168,-34.8426599431254,-34.8426374415208,-34.8417778682168,-34.8417040681254,-34.8416880418911,-34.8406857285262,-34.840576638712,-34.8405181485471,-34.8382233650686,-34.8377724691967,-34.8373462126987,-34.8371862602071]}]],[[{&#34;lng&#34;:[-56.1845628904762,-56.1847681926489,-56.1849738107316,-56.1851371173721,-56.1852173405078,-56.1854328126132,-56.185798687651,-56.1862659354433,-56.186290909168,-56.1871911476669,-56.1884130945245,-56.1884180754788,-56.1896926087115,-56.1899812763347,-56.1900478804759,-56.1910403237626,-56.191839848631,-56.1924303258158,-56.1924776187715,-56.1927113359054,-56.1933159989213,-56.1940528944127,-56.1944117211678,-56.1946746167829,-56.1948182437204,-56.1950553658965,-56.1950562329385,-56.1951549889955,-56.1957174022057,-56.1960115276817,-56.1961075675166,-56.1962120609832,-56.1962965495387,-56.1964829825515,-56.1967163129219,-56.1968646541104,-56.1969940079799,-56.1990134377848,-56.1992011663592,-56.1997390685154,-56.1997928247818,-56.2000889811927,-56.2000275332798,-56.1997290463737,-56.1996093743978,-56.1994389299433,-56.1992559482763,-56.1991644694848,-56.1990608084479,-56.1988210938305,-56.1981194313609,-56.1976393170502,-56.1974643891276,-56.1970940393578,-56.1966586449823,-56.1961826924267,-56.1958284710493,-56.1955882888479,-56.1954281220791,-56.1952372753212,-56.195065178233,-56.1949959166797,-56.1948909717236,-56.1946911711814,-56.193839375415,-56.1936738461978,-56.1934216472887,-56.1932406463657,-56.1929423614453,-56.192698334826,-56.1925983129564,-56.1925374399388,-56.1924838416246,-56.1922832922933,-56.1921052221246,-56.1919494176055,-56.1917119214496,-56.1914127785584,-56.19129816257,-56.1912810975191,-56.1909042409773,-56.1906448959618,-56.1900980699796,-56.190017183342,-56.1899654664328,-56.189866299724,-56.1897669688264,-56.1895230888204,-56.1893677134877,-56.1891635934209,-56.1889531766201,-56.1888902451892,-56.1888133543826,-56.1887120347011,-56.1886030521971,-56.1884526472366,-56.1882917161563,-56.1880504626775,-56.1879139326868,-56.1878760862632,-56.1877466787747,-56.1875929570674,-56.1875249837049,-56.1874364302758,-56.1873284756446,-56.1872621417053,-56.1872204642721,-56.1871424468053,-56.1871046465347,-56.1869924327316,-56.1869368536479,-56.186867230143,-56.1868112518095,-56.1867692609547,-56.1867555303324,-56.1867490074441,-56.1867282688707,-56.1866831023064,-56.1866170260847,-56.1865283566174,-56.1864073704924,-56.1863733952271,-56.1863413441726,-56.1862422148226,-56.1861760986734,-56.1861267592434,-56.1860777403754,-56.1860781853388,-56.186068126602,-56.1860973933308,-56.1860518752587,-56.1860492249437,-56.1860333940007,-56.1860502150865,-56.1860668271932,-56.1862421747386,-56.1863047884747,-56.1863108757298,-56.1863286535212,-56.1863285814931,-56.186328461443,-56.1862687690956,-56.1861994685639,-56.1861631291977,-56.1861263747217,-56.186069307895,-56.1860305222673,-56.1859843296946,-56.1858843874226,-56.1858215641897,-56.1856877534093,-56.1856313287167,-56.1851735546864,-56.1824801378057,-56.1797515397645,-56.1767398707364,-56.1766456454753,-56.1760391499546,-56.1768101978392,-56.1773494217641,-56.1777100102288,-56.1785918016579,-56.179495586096,-56.1796354724056,-56.1799923714676,-56.1808969408938,-56.1813161220763,-56.1816936590934,-56.1817713656328,-56.18250563137,-56.182930123208,-56.1833488295622,-56.1834698886622,-56.1836403403184,-56.1841095064461,-56.1843304754054,-56.1843525307383,-56.1845628904762],&#34;lat&#34;:[-34.8577031429551,-34.8582611528329,-34.8587385936301,-34.8592811173404,-34.8594576706142,-34.8596991355887,-34.8602189654054,-34.8609743149566,-34.8610580752891,-34.8606064914695,-34.860031894243,-34.8600286846592,-34.8592706363515,-34.8591123513866,-34.8590758292178,-34.8587620257147,-34.8584856947252,-34.8582889269148,-34.8582736694935,-34.8582090250074,-34.8580844398548,-34.8579050930735,-34.8578180064947,-34.8577542014302,-34.8577217059627,-34.8576627873501,-34.8576625764559,-34.8576385555664,-34.8575017554115,-34.8573976864921,-34.8573638052711,-34.857327609937,-34.857204854543,-34.8564761453292,-34.8554031558298,-34.8548162420183,-34.8543641592891,-34.853943652423,-34.853904156994,-34.853783507404,-34.8537154701447,-34.8536326136348,-34.8534667164549,-34.8527872907279,-34.8525760384288,-34.8523962662433,-34.8522849346858,-34.8522280452513,-34.8522028899613,-34.8521254458164,-34.8519274875291,-34.8518435612277,-34.8518203816481,-34.8517445192648,-34.8516413062157,-34.8514350384506,-34.8511585760878,-34.850924905578,-34.8507045285906,-34.8503400139344,-34.8497230557533,-34.8492635454387,-34.8489303335928,-34.8485478163189,-34.8473639708536,-34.8471343628504,-34.8468928995026,-34.8467545700345,-34.8466120247823,-34.8465218059003,-34.8464998440277,-34.8464900688242,-34.8464760823046,-34.846436450767,-34.846423437389,-34.8464238809511,-34.8464262557794,-34.8464708566067,-34.8465023580904,-34.8465069137733,-34.8466285402456,-34.8467553218943,-34.8470445388867,-34.8470899153147,-34.8471510835043,-34.8472171392363,-34.8472616567158,-34.847412100632,-34.8474690792575,-34.8474735200232,-34.847402500113,-34.8473614705627,-34.8473087450551,-34.8472355516112,-34.8472261224845,-34.8471351971184,-34.8470413006122,-34.8468859528835,-34.8468154244201,-34.8467281505478,-34.8466489673397,-34.8465377138264,-34.846404347673,-34.8463539237386,-34.8462400749411,-34.8461874189952,-34.84613202708,-34.8460886817331,-34.8461022460032,-34.84606378679,-34.845990897618,-34.8459150138215,-34.8458827318029,-34.845859245401,-34.8458243451245,-34.8457720888063,-34.8457342409621,-34.8456759248265,-34.8455971639014,-34.8454712796703,-34.8453023562926,-34.8452738880286,-34.8452470320564,-34.8451731921262,-34.845127014292,-34.8450672280463,-34.84503143878,-34.8449296966174,-34.8448244377402,-34.8446691330113,-34.8445701882877,-34.8444904423587,-34.8444080125767,-34.8443307711921,-34.8442625451242,-34.8440192813652,-34.8438884441573,-34.8438336023149,-34.8437491415195,-34.8436697069218,-34.8435373156088,-34.843366964421,-34.8432447247122,-34.8431053361593,-34.8429695027732,-34.8427839971032,-34.8427088716925,-34.8426368278709,-34.8425375333289,-34.8424866270752,-34.8423069844289,-34.8422545088319,-34.8425689686679,-34.8441790398958,-34.8456837292359,-34.8474488795691,-34.847535210759,-34.847927514268,-34.848539375299,-34.8489513377586,-34.8492535236036,-34.8499857378918,-34.8507449327614,-34.8508617263282,-34.8512393277335,-34.8522689253901,-34.8527500101645,-34.8531754814621,-34.8532657707044,-34.8540942934457,-34.8546159207956,-34.8551420704778,-34.8553310245929,-34.8557316695491,-34.8567263992233,-34.8571945056378,-34.8572395138497,-34.8577031429551]}]],[[{&#34;lng&#34;:[-56.1680932055034,-56.1658760538213,-56.1653014524847,-56.1648789939124,-56.1637164633986,-56.1632679104017,-56.1627476759388,-56.1620973419977,-56.1617337341878,-56.1609718968289,-56.1606559810752,-56.1604722544254,-56.1601966165746,-56.1597544320503,-56.159045309527,-56.1586963198324,-56.1584939405565,-56.1582314788655,-56.1582297814696,-56.1579560553973,-56.1577248857383,-56.1577236402605,-56.1575480891236,-56.1573862912943,-56.1570616498818,-56.1564669271171,-56.1564489507581,-56.1564348648979,-56.1558177568642,-56.1557902042804,-56.1555580686506,-56.1553150639153,-56.1527287169663,-56.1526453051394,-56.1525837367924,-56.152491795734,-56.1523483386232,-56.152097876172,-56.1520160371937,-56.1519564454457,-56.1517073454109,-56.1516110423196,-56.1512990254814,-56.1509405467087,-56.1509095070067,-56.1505022785053,-56.1501658791703,-56.1499613895551,-56.149753013207,-56.1496103306694,-56.1492973931825,-56.149127941213,-56.1479544750193,-56.1478628724803,-56.1477014273681,-56.1475253732391,-56.1480922189093,-56.1481536472561,-56.1487885580292,-56.1486081216402,-56.148393515783,-56.1482027825965,-56.1489669933862,-56.1492614352374,-56.1493907752747,-56.149981343179,-56.1504347436759,-56.1506088434636,-56.150999584979,-56.153262452141,-56.1534997340343,-56.1546122472396,-56.1545998499177,-56.1545151647201,-56.1543870086267,-56.1543346249445,-56.1541922315085,-56.1537002677903,-56.1536416769246,-56.1534047938633,-56.1531676816076,-56.1530772569408,-56.1529698744411,-56.1527817671367,-56.1527104473145,-56.1517875746988,-56.1517372654197,-56.1520175166191,-56.1534938780164,-56.1554170198299,-56.1558039660546,-56.1565362903997,-56.1570327487404,-56.1574036643933,-56.1579340946164,-56.1591145900948,-56.1594282918788,-56.1599096434575,-56.1604385412236,-56.1614491524217,-56.1624618330203,-56.1624632020597,-56.1624270634221,-56.1624067629526,-56.1624077495955,-56.1628597098823,-56.1629028319421,-56.1630138176929,-56.1630364710425,-56.1633236983429,-56.1649768538336,-56.1653727792698,-56.165696848067,-56.1658708311279,-56.1680143932844,-56.1683931769662,-56.1682917946807,-56.1683194137994,-56.1683259251587,-56.1683225422047,-56.1683242097313,-56.1683261675592,-56.1683279033029,-56.1683509626508,-56.1683552868395,-56.1686384849909,-56.1687059802809,-56.1687114692974,-56.1689171590015,-56.1690652744003,-56.1691595238473,-56.1691671787588,-56.1695791676643,-56.1699417642981,-56.1704391838109,-56.1704079511917,-56.170342565317,-56.170284452829,-56.1701616640202,-56.1701309715246,-56.1700491793423,-56.1699744241224,-56.1713828771644,-56.1714200079804,-56.1714913680012,-56.1720971305231,-56.1721116415934,-56.172152245614,-56.1726796709541,-56.1726924025201,-56.1732870225142,-56.1738720183782,-56.1742726725845,-56.1744484528169,-56.1751567384412,-56.1757765576287,-56.1758730862134,-56.1760391499546,-56.1766456454753,-56.1767398707364,-56.1797515397645,-56.1824801378057,-56.1851735546864,-56.1856313287167,-56.1855859709174,-56.1855746961444,-56.1855637444547,-56.1855500781358,-56.1855346848846,-56.185526808114,-56.185509346296,-56.1855000658848,-56.1854962332833,-56.185494810883,-56.1854940905115,-56.1854937115661,-56.1854929911946,-56.1854915687943,-56.1854901649453,-56.1854880778273,-56.185484263777,-56.1854808101208,-56.185472914799,-56.1854664047749,-56.1854595529079,-56.1854506326825,-56.1854420726429,-56.1854345189556,-56.1854232070801,-56.1854122182879,-56.185402956428,-56.1853940362026,-56.1853816808723,-56.1853706735289,-56.1853596661855,-56.1853507086492,-56.1853420929558,-56.1853334772625,-56.1853248615692,-56.185318295683,-56.1853114069219,-56.1853045179524,-56.1852972875569,-56.1852697135446,-56.1852645515074,-56.1852569794773,-56.1852473757744,-56.1852391204753,-56.1852026114383,-56.1851477942093,-56.1851361221481,-56.1851244500868,-56.1851103680327,-56.1850595801734,-56.1850389880952,-56.1850166690847,-56.184994026991,-56.1849844234965,-56.184977571838,-56.184968651821,-56.1849600917814,-56.1848678710958,-56.1848346193637,-56.1848226242192,-56.1848102690973,-56.1847979325267,-56.1847890308525,-56.1847633140481,-56.1847379574293,-56.1846930338444,-56.1846783056237,-56.1846594959231,-56.1846406678796,-56.1846321265997,-56.1846232249255,-56.1846146650943,-56.1846064654489,-56.1845965388712,-56.18458797904,-56.1845787357313,-56.1845722257072,-56.1845656973404,-56.184556093846,-56.1845145313695,-56.1844942996855,-56.184479211279,-56.1844525066734,-56.184440188654,-56.1843666774091,-56.1843611443472,-56.1842709957719,-56.1842540890436,-56.1841876917447,-56.184099359677,-56.1839969644609,-56.1839244925962,-56.1838656046856,-56.1837813975271,-56.1837513453842,-56.183681790444,-56.1836391517837,-56.1835814625237,-56.1835015107844,-56.1834089105475,-56.1833976176402,-56.1833893996519,-56.1833808398207,-56.1833731846228,-56.1833640803441,-56.1833555209298,-56.1833442280224,-56.1833329346982,-56.1832627489182,-56.1832545492728,-56.1832401626866,-56.1832254350912,-56.1832103839956,-56.1831953141404,-56.1831829965379,-56.183152534161,-56.1830987660147,-56.1830922559907,-56.1830854045405,-56.1830425691159,-56.1830264562227,-56.1830093182175,-56.1829918204435,-56.1829829191862,-56.1829736577432,-56.1829643963002,-56.1829551348571,-56.182935245433,-56.1829156974349,-56.1829037029157,-56.1828841365748,-56.1828762416699,-56.1828687069507,-56.1828594271649,-56.18284500431,-56.182837109405,-56.1828054564141,-56.1827975431664,-56.182787377507,-56.1828103330958,-56.1828140541815,-56.1828198071485,-56.1828255596986,-56.1828381086704,-56.1828425130252,-56.1828482843349,-56.182855745266,-56.1828618763447,-56.1828747855022,-56.1828876942429,-56.1829073994054,-56.1829287941892,-56.18293963478,-56.1829419893276,-56.1829687026877,-56.1829720823474,-56.18297580385,-56.1830056471576,-56.1830127850054,-56.183023985782,-56.1830358881703,-56.1830420009062,-56.1830600343732,-56.1830777076544,-56.1831358893268,-56.1831420208223,-56.1831870073564,-56.1831937850185,-56.1832005439209,-56.1832028801257,-56.1832052346733,-56.1832092609164,-56.183214634938,-56.1832176356522,-56.1832209786262,-56.1832226499048,-56.1832246626095,-56.1832273406573,-56.183230378474,-56.1832347273835,-56.1832390950527,-56.1832427794528,-56.183246805279,-56.1832488184006,-56.1832508311052,-56.1832528442268,-56.1832683201248,-56.1832841191061,-56.1832861318107,-56.1832884863584,-56.1832904994799,-56.1832928540275,-56.1832934818513,-56.1832864544771,-56.1832675080393,-56.1832623462105,-56.1832544517225,-56.1832496317367,-56.1832372953745,-56.1832304443413,-56.1832235928911,-56.1832088469529,-56.1832047102362,-56.1831730389025,-56.1831644611454,-56.1831582746215,-56.1831132976757,-56.1830837136685,-56.1830452467468,-56.1830092265036,-56.1829492730841,-56.18290850706,-56.1828259865854,-56.1827968919972,-56.1827763564065,-56.1827561443159,-56.1827445099825,-56.182733217492,-56.1827198564347,-56.1827089053703,-56.1826880466963,-56.1826740211296,-56.1826599955629,-56.1826483612294,-56.182638435277,-56.1826285272506,-56.1825246128259,-56.1825129972521,-56.1825017231044,-56.1824901071138,-56.1824743915088,-56.1824518432134,-56.1824405507229,-56.1824296180013,-56.1824135426275,-56.1823988517177,-56.1822854269716,-56.1822103757658,-56.1821452296683,-56.1820379826916,-56.1819271355249,-56.1818124434586,-56.1817370274813,-56.1815843145567,-56.181484419705,-56.1814154078638,-56.1814104598954,-56.181399695594,-56.1814875659109,-56.1814717319116,-56.1814588523526,-56.1813984032608,-56.1814186053462,-56.1814496029992,-56.1814609655258,-56.1814438692088,-56.1814486566778,-56.1814456109403,-56.1814423008999,-56.1814380362005,-56.1814204633878,-56.181415474148,-56.1814341825464,-56.1814453520568,-56.1814377902403,-56.1813924414361,-56.1813584868415,-56.1813415793719,-56.1813227638349,-56.1813151807575,-56.1813130880115,-56.1813091105436,-56.1813760896698,-56.1813756315168,-56.181377621293,-56.1814167714838,-56.1814860638863,-56.1815961765075,-56.181722362835,-56.181770999168,-56.1817868073207,-56.1818199319039,-56.1818342959785,-56.1818802325858,-56.1818978896087,-56.1819522301335,-56.1819759231859,-56.1820064760262,-56.1820142746314,-56.1820099544868,-56.1820759322632,-56.1820655477409,-56.1820823964303,-56.1820807672567,-56.182106398392,-56.1821457115835,-56.1821737668857,-56.1822487693163,-56.182293711244,-56.1823246496998,-56.1823326067201,-56.1823681058613,-56.1823604406581,-56.1823603397727,-56.1824179744964,-56.182500008887,-56.18256005944,-56.1825852382586,-56.1827024412032,-56.1827342275963,-56.1827548328062,-56.1828014376749,-56.1828577371266,-56.1828817503442,-56.1829002157006,-56.1829266026423,-56.1829669630406,-56.1829863676313,-56.1830419041896,-56.1831267938027,-56.1831510167117,-56.1831470121465,-56.1831266232981,-56.1831392960838,-56.1831599767493,-56.1831805369361,-56.1831690197464,-56.1831771960464,-56.1831742932994,-56.1832172925586,-56.183251064559,-56.1833299481579,-56.1833543478248,-56.1834756720615,-56.1834851777972,-56.183488813839,-56.1835049025531,-56.1835037011001,-56.1835176128581,-56.1835300459368,-56.1835392181672,-56.1835258350151,-56.1835068356333,-56.1834803807399,-56.1834501939217,-56.1834144296439,-56.1833860708518,-56.1833765205098,-56.1833781071614,-56.1833354509959,-56.1832833412049,-56.1832438012298,-56.1832192439816,-56.1832001753975,-56.1831530081555,-56.1831378232409,-56.1831253122053,-56.1829826928195,-56.1829692721481,-56.1829384374959,-56.1829162422992,-56.1828502736942,-56.1828366825182,-56.1828366254054,-56.1828249548033,-56.1828184322728,-56.1828193027217,-56.1827964530208,-56.1827510066663,-56.1827458560934,-56.1827244383811,-56.1826701924884,-56.1826432540122,-56.1826374989608,-56.1826148326879,-56.182607325066,-56.182579174298,-56.1825691783095,-56.1825709171229,-56.1825761915097,-56.1825120830306,-56.1824611038227,-56.1824608570287,-56.182441258588,-56.182417264547,-56.1824140712334,-56.1824186431746,-56.1824417300811,-56.1824627959453,-56.1824878167659,-56.1825121330564,-56.1825376549687,-56.1825301565183,-56.1825241546729,-56.182501477978,-56.1824844266842,-56.1824851433038,-56.182500875584,-56.1824328092304,-56.1823564907044,-56.1823237625756,-56.1822860898135,-56.1822519713844,-56.182241006146,-56.1822180113703,-56.1821841901779,-56.1821634724099,-56.1821352957951,-56.1821068148568,-56.1821364943299,-56.1821495410585,-56.1821512586109,-56.1821525942998,-56.1821545815746,-56.1822253105514,-56.1822232107184,-56.1822415255806,-56.1822728867543,-56.1823252245796,-56.1823755446976,-56.1823791240436,-56.1823733885857,-56.1823394285716,-56.1822950836185,-56.1822915939021,-56.1823234519988,-56.1823380374375,-56.1823376997634,-56.1823284316502,-56.1823351226009,-56.1823198943307,-56.1823010554483,-56.1823890216481,-56.1824564539246,-56.182473704071,-56.1825407774124,-56.1825800805987,-56.1826062745243,-56.1826249174722,-56.1826285280843,-56.1826901673733,-56.1828324236551,-56.1829841906753,-56.1830085949278,-56.1830348134494,-56.1830816292602,-56.1831229051305,-56.1831941310302,-56.1832129069635,-56.1832448109171,-56.1833068675046,-56.1833520520575,-56.1833971861676,-56.1834440966105,-56.1834759563748,-56.1834852582553,-56.1834707774539,-56.1834216277311,-56.1834208258592,-56.1829308223185,-56.18268562378,-56.1822721538472,-56.1819353794668,-56.1817350425673,-56.1813172236905,-56.1797007635779,-56.1776546713286,-56.1774731036307,-56.1756097167326,-56.1755678621349,-56.1746959162015,-56.1744132926006,-56.1735266351039,-56.1721029466285,-56.1719279665217,-56.1711652322253,-56.1709392916958,-56.1706707687627,-56.1700006993399,-56.1697341120847,-56.1696246103812,-56.169563114487,-56.1694070234903,-56.1685993803386,-56.1685391055586,-56.1678896328169,-56.167687689795,-56.1679151370954,-56.1680024154404,-56.1680255390325,-56.1680954167369,-56.1681240314943,-56.1681270280397,-56.1681306982658,-56.168137497197,-56.1681947613048,-56.1684695997127,-56.1685310399204,-56.1685635936573,-56.1686144110622,-56.1686201486346,-56.1687230670989,-56.1687742779823,-56.1687809069284,-56.1688014983919,-56.168826867298,-56.1689440603747,-56.1689633226716,-56.1690505910114,-56.1690678899329,-56.1690599109817,-56.1690578819017,-56.1690339020383,-56.169034609436,-56.1690196758547,-56.1689927328557,-56.1689904549977,-56.1689658872955,-56.1689239206843,-56.1688897980864,-56.1688794377433,-56.1680932055034],&#34;lat&#34;:[-34.82364419235,-34.8232755827815,-34.823173443439,-34.8230785052074,-34.8228981748092,-34.8228227559138,-34.8227430511429,-34.8226515327134,-34.8226014551166,-34.8225089698111,-34.8224712220741,-34.822441499488,-34.8224016572469,-34.8223393230731,-34.8222300888382,-34.8221856513884,-34.8221598816126,-34.8221227258609,-34.8221224855648,-34.8220836837656,-34.8220479879645,-34.8220477956442,-34.8220260125766,-34.8220018688788,-34.8219534247447,-34.8218646757327,-34.8218535640117,-34.8218448571195,-34.8216595956156,-34.8217642439013,-34.822726267768,-34.823677089849,-34.8234583762175,-34.8234607850609,-34.8234543766882,-34.8234315946693,-34.8234252154684,-34.8233950862459,-34.8233852413614,-34.8234709023223,-34.8234458867976,-34.823436215553,-34.823414510477,-34.8234101953855,-34.8233799183186,-34.8233498544186,-34.8233263457672,-34.8233120549245,-34.8233156491845,-34.8232339553925,-34.8232042428706,-34.8231983039975,-34.8231201543593,-34.8231464116383,-34.8232095353859,-34.8246657330509,-34.8247048865767,-34.8247091020841,-34.8247527245813,-34.8258483696335,-34.827080414996,-34.8280262594937,-34.8281181168669,-34.8281535084526,-34.8281690564711,-34.8282561713985,-34.8283169060542,-34.828340228082,-34.8283783710867,-34.8285254551996,-34.8285502407766,-34.8286664433773,-34.8288242634905,-34.8293579329384,-34.8301650091683,-34.8304986612412,-34.8314274602466,-34.8318985732116,-34.8319546802652,-34.8321777686459,-34.8324037343889,-34.8324962460775,-34.8325979939208,-34.8327911996176,-34.8328464153714,-34.8337276098259,-34.8337953414235,-34.8338261839965,-34.8339666664469,-34.8341781054914,-34.8342176258731,-34.8342924211136,-34.8343376618797,-34.8343758274617,-34.8344330536413,-34.8345652184688,-34.834586939671,-34.8346350845005,-34.834687981781,-34.8347935228779,-34.8349035562916,-34.8352596032475,-34.8363458801349,-34.8371977528008,-34.8372378799602,-34.8378005036548,-34.8378437080431,-34.8379848854119,-34.8380118693282,-34.8381282129791,-34.8383493778603,-34.8384062127011,-34.838446560176,-34.8384686348938,-34.8387468950664,-34.8388946179175,-34.8384802442144,-34.8370907227352,-34.8369048744845,-34.8368215954735,-34.8367318291787,-34.8366265097176,-34.8365331367079,-34.8356826646165,-34.8355231776977,-34.8355511745071,-34.8355597664072,-34.8355603223249,-34.8355811540254,-34.8355986418799,-34.8356089098731,-34.8356097438331,-34.835649638498,-34.8356850316894,-34.8357387770363,-34.8359026197125,-34.8362456241217,-34.8365384017036,-34.8371862602071,-34.8373462126987,-34.8377724691967,-34.8382233650686,-34.8405181485471,-34.840576638712,-34.8406857285262,-34.8416880418911,-34.8417040681254,-34.8417778682168,-34.8426374415208,-34.8426599431254,-34.8436363500168,-34.8445947542903,-34.8452529476164,-34.8455412343997,-34.8467169821109,-34.8476603756306,-34.8478072944128,-34.847927514268,-34.847535210759,-34.8474488795691,-34.8456837292359,-34.8441790398958,-34.8425689686679,-34.8422545088319,-34.8422008296822,-34.8422008630327,-34.8421963840561,-34.8421964240768,-34.8421919584404,-34.8421874761287,-34.8421785081704,-34.8421650145447,-34.8421469985868,-34.8421334816157,-34.8421244703017,-34.8421154556526,-34.8421064443386,-34.8420929273675,-34.8420839160535,-34.8420749080745,-34.8420613977736,-34.8420523931297,-34.8420434018259,-34.8420389128442,-34.8420344271975,-34.8420254358938,-34.8420209535821,-34.8420119622784,-34.8420029776448,-34.8419894906893,-34.8419805027206,-34.8419715114169,-34.8419580244613,-34.8419400285137,-34.841922032566,-34.8419040299483,-34.8418860239955,-34.8418680213778,-34.84185001876,-34.8418320094721,-34.8418185058413,-34.8418050055455,-34.8417915052498,-34.8417329917395,-34.8417239904307,-34.8417104934699,-34.8417015055013,-34.8416880085406,-34.8416483047309,-34.8415800962207,-34.8415666059301,-34.8415531189745,-34.841535129697,-34.8414811885448,-34.8414587102855,-34.8414317330394,-34.8414092614502,-34.8414002734815,-34.8413957844998,-34.8413867965311,-34.8413823142195,-34.841305954839,-34.8412790042732,-34.8412700229747,-34.8412565393542,-34.8412475580556,-34.841243075744,-34.84122061416,-34.8412026548979,-34.8411622207116,-34.8411532460832,-34.841148793787,-34.8411398324988,-34.8411398558442,-34.8411353735325,-34.8411308912209,-34.8411309112312,-34.8411264322546,-34.841121949943,-34.8411174676313,-34.8411129819846,-34.8411039840108,-34.8410949960422,-34.8410410315446,-34.8410230589424,-34.8410095786569,-34.840996135057,-34.8409916594155,-34.8409783458827,-34.8409780990887,-34.8409741070299,-34.8409738490259,-34.8409728357512,-34.8409722432666,-34.8409047939948,-34.8407889909465,-34.8407885958382,-34.8406745825072,-34.8406577715621,-34.8406370731843,-34.8406110662787,-34.8404892929322,-34.8403855780402,-34.8402869426417,-34.8402824670001,-34.8402779846885,-34.8402734990418,-34.8402703540865,-34.8402690400755,-34.8402645577639,-34.8402600821224,-34.8402556064808,-34.8402197446526,-34.840219767998,-34.8402107933695,-34.8402018220761,-34.8401973564398,-34.8401883851464,-34.8401839128399,-34.8401704759101,-34.8401390763833,-34.8401345874015,-34.8401300984198,-34.8400986688774,-34.8400851952621,-34.8400717216467,-34.8400537423743,-34.8400492600627,-34.840040272094,-34.8400312841254,-34.8400222961567,-34.8400043235544,-34.8399863476171,-34.8399773696536,-34.8399548880593,-34.8399458967556,-34.8399414111089,-34.8399279141482,-34.8399099282057,-34.8399009335669,-34.8398469390539,-34.8398334387581,-34.8397703695651,-34.8397027013335,-34.8396936766792,-34.8396801396979,-34.8396666027165,-34.8396440344108,-34.8396350097565,-34.8396259784322,-34.8396124381158,-34.8396079124484,-34.8395898497997,-34.839571783816,-34.8395446898429,-34.8395130802077,-34.839490515237,-34.8394814939178,-34.8394138156811,-34.8394047910269,-34.8393957697077,-34.8393416017719,-34.8393325671125,-34.8393145077988,-34.8393009541422,-34.8392919228178,-34.8392738468289,-34.8392512618479,-34.8391925082138,-34.8391879858815,-34.8391608185373,-34.8391472782209,-34.8391292322475,-34.8391157052713,-34.8391066839521,-34.8390886446487,-34.8390660930183,-34.83904805705,-34.8390300210817,-34.8390210030976,-34.8390119817784,-34.8389984548022,-34.838989433483,-34.8389668851876,-34.8389488458843,-34.8389308065809,-34.8389127672776,-34.8389037492935,-34.8388947279743,-34.8388857099901,-34.838827076418,-34.8387639338537,-34.8387549158696,-34.8387458945504,-34.8387368732312,-34.8387278552471,-34.8387143316059,-34.8386640256619,-34.8386287708134,-34.8386197728396,-34.8386107782008,-34.838601780227,-34.8385927989284,-34.8385883099467,-34.8385838243,-34.8385703440145,-34.8385613427056,-34.8385028392006,-34.8384938478968,-34.8384848532581,-34.8384308920956,-34.8383813999045,-34.8383319310589,-34.8382959725141,-34.8382555783485,-34.838228647793,-34.8381838080013,-34.8381703677365,-34.8381614131184,-34.8381479461731,-34.8381434738667,-34.8381389982251,-34.8381300202616,-34.8381255446201,-34.838121095659,-34.8381166266876,-34.8381121577161,-34.8381076854096,-34.838103206433,-34.8381032331135,-34.8380899996219,-34.8380900329725,-34.838090062988,-34.8380900963385,-34.8380901396942,-34.8380902030602,-34.8380857274187,-34.8380857574341,-34.8380812951328,-34.8380813351535,-34.8380835796443,-34.838108899369,-34.8381418597009,-34.8382265600496,-34.8382303786857,-34.8382136633985,-34.8381665791159,-34.8379844418498,-34.8379154129165,-34.8378677283243,-34.8378271774111,-34.8377129384952,-34.8375776087022,-34.837520535935,-34.837461979069,-34.837395594833,-34.8372475885023,-34.8371960419184,-34.8371419773693,-34.837065257803,-34.8369837691106,-34.8369537803112,-34.8369211868353,-34.8368806359222,-34.8368480991421,-34.8368112167876,-34.8367925771747,-34.8367677677131,-34.836736414877,-34.8366904745177,-34.8366419895128,-34.8366549928856,-34.8366473022527,-34.8366302868107,-34.8365776329891,-34.8365234350379,-34.8363652734699,-34.8363280342647,-34.8362800862033,-34.8362071852731,-34.8361558854831,-34.836100260129,-34.8360623038874,-34.8360126082581,-34.8359533376907,-34.8358973288055,-34.8358730429473,-34.8358274027429,-34.8358062685101,-34.8357735916578,-34.835743389415,-34.8357176861592,-34.8356706919231,-34.8356495310099,-34.835553818315,-34.8354635217468,-34.8354495345332,-34.8354202027394,-34.8353472484483,-34.8353146149517,-34.8352851097351,-34.835252379522,-34.8352181818854,-34.8351109665917,-34.835083329005,-34.8350367649907,-34.834999615832,-34.8349748363859,-34.8348290912214,-34.8346786302915,-34.8346645263511,-34.8346482946466,-34.8345727523542,-34.8345370406034,-34.8345230433847,-34.8345197083314,-34.8344236354508,-34.8343244476305,-34.834280561664,-34.8342685654773,-34.83421680545,-34.8341847655929,-34.8341452218658,-34.834074412014,-34.8340409947799,-34.8339659394052,-34.833923881048,-34.8339164005235,-34.8339209895568,-34.8338961534148,-34.8338357822799,-34.8337977826825,-34.8337474867436,-34.8336978044545,-34.8336884196146,-34.8336866487012,-34.8336819362709,-34.8335668602566,-34.8335220471453,-34.8334926086298,-34.8334827502122,-34.8334584943695,-34.8334448506665,-34.8334326577116,-34.8334165794196,-34.8333593098842,-34.8333067060884,-34.8332680594907,-34.8332356194272,-34.8332171332268,-34.8331722967701,-34.8331336034817,-34.8330172801574,-34.8329452863617,-34.832855083175,-34.8328319612504,-34.8327979570469,-34.8327283144637,-34.8326773348389,-34.8326386582257,-34.8326043038416,-34.8323680520005,-34.8323014910066,-34.832252649151,-34.8321947726359,-34.8321392006427,-34.8320633648656,-34.8320168842276,-34.8319979244496,-34.8319615290129,-34.8319147115346,-34.8318388857626,-34.8317491828338,-34.8317362861827,-34.8316826585256,-34.8316082634915,-34.8315806659254,-34.8315512540903,-34.8315203414812,-34.8314831456317,-34.831419599526,-34.8313795288605,-34.8313454512858,-34.8312571557496,-34.8311763340677,-34.8311320245495,-34.8310716200641,-34.8310136501675,-34.8309757172712,-34.8309332286921,-34.8308533608355,-34.8308269338731,-34.8308028214377,-34.8307741799999,-34.8307493305178,-34.8306624690544,-34.8305634279764,-34.8304736149909,-34.8304284917197,-34.8304040291037,-34.8303516320812,-34.8302924715706,-34.830182698291,-34.8301555176066,-34.8301566715351,-34.8301304446758,-34.8300546489194,-34.830042679413,-34.8300175731318,-34.8300145682487,-34.8300006877569,-34.8299579390436,-34.8299249553664,-34.8298334948646,-34.8298086753978,-34.8297590631449,-34.8297204765781,-34.8296630769757,-34.8295049054026,-34.8294507041162,-34.8293360416485,-34.8291965630492,-34.8291344676917,-34.8290383047647,-34.8289949290614,-34.8289701629555,-34.8289330871679,-34.828815279745,-34.8287179395441,-34.8286680538168,-34.8285923581119,-34.8285629329366,-34.8285397243006,-34.8283383637872,-34.8282888449157,-34.8282749577538,-34.8281988251569,-34.828153721896,-34.8281202813165,-34.8281054770149,-34.8280712927185,-34.8280464399013,-34.8280123156358,-34.8279766839263,-34.8278928773718,-34.8277732256643,-34.8276829757868,-34.8276798074862,-34.827661151198,-34.8276269468913,-34.8276159912412,-34.8275801694336,-34.8275785686081,-34.8275722853676,-34.8275906981969,-34.8276169017107,-34.8276307155015,-34.8276197431762,-34.8276026176774,-34.8275809098155,-34.8275147290177,-34.8274645648134,-34.8274637660681,-34.8269850458465,-34.8267454923026,-34.8263398295107,-34.8260094101575,-34.8258128519902,-34.8254029099305,-34.8238016741003,-34.821818330681,-34.8216366131989,-34.8197981572953,-34.8197495643236,-34.8189018670827,-34.8186383675499,-34.8177911984179,-34.8163720187128,-34.8161783910817,-34.8154354350844,-34.8152137722166,-34.814945663755,-34.8142416304078,-34.8139820439822,-34.8138820783109,-34.8138257224642,-34.8136723666762,-34.8128739027913,-34.8128168155944,-34.8121750258077,-34.8119537304793,-34.8134359282199,-34.814008089965,-34.8141567533012,-34.8146138290268,-34.8148009922184,-34.8148685937489,-34.8149552784544,-34.8151158653361,-34.8164683921391,-34.8177747125087,-34.8180975189577,-34.8182244643306,-34.8184629874697,-34.818490257473,-34.8189794138039,-34.8192228036344,-34.8192543089077,-34.8193545603881,-34.8194780709742,-34.8200549931424,-34.8201440544389,-34.8206623017123,-34.8207657350555,-34.8208331940836,-34.8209321855822,-34.8213964070473,-34.8214426108043,-34.8216263496234,-34.8220938045944,-34.8221292249088,-34.822462039763,-34.8231638384855,-34.8236957528073,-34.8237543763743,-34.82364419235]}]],[[{&#34;lng&#34;:[-56.1509095070067,-56.1509405467087,-56.1512990254814,-56.1516110423196,-56.1517073454109,-56.1519564454457,-56.1520160371937,-56.152097876172,-56.1523483386232,-56.152491795734,-56.1525837367924,-56.1526453051394,-56.1527287169663,-56.1553150639153,-56.1555580686506,-56.1557902042804,-56.1558177568642,-56.155884543298,-56.1559491442601,-56.156479060885,-56.1567593621101,-56.1563291070297,-56.156216848288,-56.1549704461871,-56.1539281586527,-56.1536260328387,-56.1521454626041,-56.1512842751344,-56.1500458097594,-56.1493215028825,-56.149072781277,-56.1488123969902,-56.1481778343537,-56.1477873920567,-56.1472506431256,-56.1462188561015,-56.1451489569346,-56.1450511670622,-56.144242249711,-56.1438364207519,-56.1430975988293,-56.1430136753319,-56.1418044520255,-56.141380086598,-56.1410729260473,-56.140623537119,-56.1392596677534,-56.1390912675397,-56.1375642260206,-56.136497705989,-56.1358313423282,-56.1337679982088,-56.1336730983217,-56.1334638346867,-56.1334190982722,-56.1330281949717,-56.1321935646264,-56.1319841982575,-56.1318348612406,-56.131839142349,-56.1305533710264,-56.1305224542787,-56.1303876859592,-56.1303866694474,-56.1304336966511,-56.1301470044819,-56.1298216567617,-56.1297487169541,-56.1290401922487,-56.1289421691167,-56.1289265552307,-56.1289193646156,-56.1289053764244,-56.1289421290504,-56.1289640572105,-56.1289603017068,-56.1286370380021,-56.1285152535127,-56.1280757959278,-56.1277111531603,-56.1275484304003,-56.1274897403506,-56.1268704961171,-56.1266193996657,-56.126525547803,-56.1264468638495,-56.1264384416508,-56.1263447359642,-56.126268785834,-56.1262574388558,-56.1283875300304,-56.1285072848495,-56.1282848508837,-56.1281083660583,-56.1274651476675,-56.1271501252024,-56.1270644211228,-56.1270363616882,-56.1269553778857,-56.1268867196977,-56.1267526507429,-56.1263853425093,-56.1263476320236,-56.1274519509172,-56.1282440772872,-56.1289337984216,-56.1289740258346,-56.1290486458915,-56.1291452074507,-56.1295164522444,-56.1307303491841,-56.1308038895421,-56.1317600069634,-56.131961623602,-56.1321506830111,-56.1321505334339,-56.132301006048,-56.1324188737586,-56.1328233450436,-56.1329467302625,-56.1330432465243,-56.133227389403,-56.1332700947606,-56.133303031747,-56.1333071872235,-56.1335135903375,-56.1338210589069,-56.134303314285,-56.1343672037433,-56.1346990469534,-56.1349154805425,-56.1358768572299,-56.1369554048194,-56.1369681786237,-56.1382553591223,-56.1395107365526,-56.1399451005652,-56.1407130532847,-56.1407525669963,-56.1407622986819,-56.1407716068156,-56.1410233025351,-56.1411151076245,-56.1414798987666,-56.1415621111656,-56.1422244360769,-56.1430488979396,-56.1435045562676,-56.1438752274322,-56.1446001479589,-56.144867679265,-56.1451932138182,-56.1460035117095,-56.1468521093531,-56.1473695261982,-56.1479374124049,-56.1484136146613,-56.1492834132387,-56.1499043968291,-56.1505106895098,-56.1517372654197,-56.1517875746988,-56.1527104473145,-56.1527817671367,-56.1529698744411,-56.1530772569408,-56.1531676816076,-56.1534047938633,-56.1536416769246,-56.1537002677903,-56.1541922315085,-56.1543346249445,-56.1543870086267,-56.1545151647201,-56.1545998499177,-56.1546122472396,-56.1534997340343,-56.153262452141,-56.150999584979,-56.1506088434636,-56.1504347436759,-56.149981343179,-56.1493907752747,-56.1492614352374,-56.1489669933862,-56.1482027825965,-56.148393515783,-56.1486081216402,-56.1487885580292,-56.1481536472561,-56.1480922189093,-56.1475253732391,-56.1477014273681,-56.1478628724803,-56.1479544750193,-56.149127941213,-56.1492973931825,-56.1496103306694,-56.149753013207,-56.1499613895551,-56.1501658791703,-56.1505022785053,-56.1509095070067],&#34;lat&#34;:[-34.8233799183186,-34.8234101953855,-34.823414510477,-34.823436215553,-34.8234458867976,-34.8234709023223,-34.8233852413614,-34.8233950862459,-34.8234252154684,-34.8234315946693,-34.8234543766882,-34.8234607850609,-34.8234583762175,-34.823677089849,-34.822726267768,-34.8217642439013,-34.8216595956156,-34.821405930903,-34.8211605653462,-34.8196538749741,-34.8188959841104,-34.8188515374475,-34.8188394564947,-34.8186797125737,-34.818542655223,-34.8184938433828,-34.8182497108108,-34.8181301958405,-34.8179575334608,-34.8179052665053,-34.8178878641972,-34.8178569615933,-34.8177651862663,-34.8177221566386,-34.8176524578543,-34.81756144919,-34.8177183004783,-34.8177249398137,-34.8176400495327,-34.8175493029258,-34.8174744247982,-34.8174612066688,-34.817298988198,-34.8172784866029,-34.8172150419683,-34.8171244905059,-34.8169277056856,-34.8169034070706,-34.8166541479382,-34.8165079792219,-34.8164149312347,-34.8161223870288,-34.8161091285806,-34.8160798921153,-34.8160736418897,-34.8160194902906,-34.8159001182983,-34.8158697167203,-34.8158475319457,-34.815851020195,-34.8152146384417,-34.8152004943485,-34.8155176826412,-34.8156144203888,-34.8156413993501,-34.8164484865529,-34.8172615490485,-34.8173265763185,-34.8182870159151,-34.8184410957893,-34.8185144245818,-34.8185481944193,-34.8189402205009,-34.8191510003145,-34.8198948420234,-34.8199578628006,-34.8199242007449,-34.819910936047,-34.8198630695278,-34.8207988168686,-34.8212028292982,-34.8213288921567,-34.822748389284,-34.8240314512287,-34.8245110079454,-34.8247756668745,-34.824811241167,-34.825207039812,-34.8255513228694,-34.8256027586242,-34.8258156727709,-34.8258312475668,-34.8272973678162,-34.827276999748,-34.8271587687732,-34.8271008622427,-34.8270803284608,-34.8271280964895,-34.8272587999393,-34.8273820176812,-34.8276108034221,-34.8281812739441,-34.8282650186353,-34.8284506952704,-34.8285435727761,-34.8286046344431,-34.8286066154648,-34.8286101667894,-34.8286162504338,-34.8286380483422,-34.8287470949282,-34.8287577900961,-34.8288646707978,-34.8288846010734,-34.8288992384809,-34.8289008695475,-34.8289798708002,-34.829042150258,-34.8290836940653,-34.8291044892525,-34.8291133777083,-34.8291298919986,-34.8291372924818,-34.8291430020931,-34.8291432088664,-34.8291791907565,-34.8292230100219,-34.8292692638762,-34.8292630268688,-34.829282021756,-34.8293157376079,-34.8294262503741,-34.8295268613553,-34.8295000195495,-34.8296417459747,-34.8297783197427,-34.8298268414332,-34.8299241282732,-34.8295220275662,-34.829346583752,-34.8290090696874,-34.8290320465201,-34.8287543321009,-34.8292149391929,-34.829300096444,-34.8301140662291,-34.831126294928,-34.8316871041516,-34.8321433094284,-34.8330335418773,-34.8330623734132,-34.8330950769459,-34.8331787034075,-34.8332712444667,-34.8333240416955,-34.8333863638366,-34.8334386207869,-34.833535600802,-34.8336016481976,-34.8336677289438,-34.8337953414235,-34.8337276098259,-34.8328464153714,-34.8327911996176,-34.8325979939208,-34.8324962460775,-34.8324037343889,-34.8321777686459,-34.8319546802652,-34.8318985732116,-34.8314274602466,-34.8304986612412,-34.8301650091683,-34.8293579329384,-34.8288242634905,-34.8286664433773,-34.8285502407766,-34.8285254551996,-34.8283783710867,-34.828340228082,-34.8283169060542,-34.8282561713985,-34.8281690564711,-34.8281535084526,-34.8281181168669,-34.8280262594937,-34.827080414996,-34.8258483696335,-34.8247527245813,-34.8247091020841,-34.8247048865767,-34.8246657330509,-34.8232095353859,-34.8231464116383,-34.8231201543593,-34.8231983039975,-34.8232042428706,-34.8232339553925,-34.8233156491845,-34.8233120549245,-34.8233263457672,-34.8233498544186,-34.8233799183186]}]],[[{&#34;lng&#34;:[-56.0948474452023,-56.0949007251342,-56.0954451405316,-56.0956798535142,-56.0956891202551,-56.0958692305434,-56.0961015675165,-56.0966608937402,-56.0971049553768,-56.0972428361623,-56.0973484068594,-56.0971188787873,-56.0972847916968,-56.0977863112589,-56.098400709732,-56.0987651021445,-56.0990605148009,-56.0995143914795,-56.0999830006857,-56.0998343472218,-56.0993102508622,-56.0990699390684,-56.0985775549284,-56.0983476626535,-56.0984150839052,-56.098733215222,-56.099039371798,-56.0990356007265,-56.0988352491633,-56.0985123667271,-56.0981594563556,-56.0978618521291,-56.0978848490416,-56.0980586299097,-56.0982319756319,-56.0983135552067,-56.0981990363623,-56.0979664989175,-56.0977886684968,-56.0980519540444,-56.0984269935704,-56.098550120581,-56.0984337420954,-56.0975453960009,-56.0972963983669,-56.0971105060456,-56.0967697491886,-56.0962737099936,-56.0957807835852,-56.0952967131745,-56.0951165192745,-56.0950624739424,-56.0949407465037,-56.0948734434172,-56.0945754926346,-56.0942358800278,-56.0939984906352,-56.0934974202672,-56.093302957248,-56.093268724086,-56.09313000177,-56.0928989753288,-56.0928392372023,-56.0928521422394,-56.0923215622954,-56.0918388483763,-56.0911668467289,-56.0908317295127,-56.0906491276462,-56.0901143223369,-56.0897347187576,-56.0892429776583,-56.0891048409519,-56.0891361802442,-56.0890118072512,-56.0887589198236,-56.0885687405771,-56.0884000225305,-56.0880225848157,-56.0882376587876,-56.0887369895641,-56.0887717647764,-56.0897647639833,-56.0913504686964,-56.0916202174816,-56.0971658215297,-56.1008193657559,-56.1019242822563,-56.1064611335719,-56.1064704992007,-56.1070732310343,-56.1084355536189,-56.1087939651276,-56.1094199904411,-56.110903772787,-56.110544882026,-56.1102777821024,-56.1102440835799,-56.1101738610328,-56.1100264176792,-56.1098033804489,-56.1093512098734,-56.1091701410911,-56.1089768712297,-56.1086204074487,-56.1083569457956,-56.1079425563844,-56.1075620173117,-56.1074246122783,-56.1065363769234,-56.1065237420024,-56.107472420337,-56.1077891939012,-56.1083916994424,-56.1088967911412,-56.1090035117604,-56.1093598131148,-56.1098175005026,-56.1099971845762,-56.1105119438891,-56.110862620383,-56.1109564824026,-56.1110007979505,-56.1138286788765,-56.1174963184997,-56.1178073388063,-56.1178661438823,-56.118530126315,-56.1201062658372,-56.120258477639,-56.1206842170877,-56.1221324175659,-56.1227936066443,-56.1229851483037,-56.1232155856523,-56.1234585255296,-56.1237492993997,-56.1241813942945,-56.1246438400609,-56.124937052827,-56.1250856471649,-56.1251509123095,-56.1263212644043,-56.1273983332096,-56.1274322240213,-56.1293205845638,-56.136096150902,-56.1362068340459,-56.1364390323961,-56.1439315731578,-56.1433034192027,-56.1432460162652,-56.1427829707942,-56.1431280420896,-56.1446177670456,-56.1475142008106,-56.1475986777108,-56.1480273393263,-56.1484315311149,-56.1487001847588,-56.1489688953858,-56.1489776322062,-56.1491156167017,-56.1494005936009,-56.1494854474329,-56.1497241138526,-56.1521075263728,-56.1525603089104,-56.1538187196216,-56.1552192118279,-56.1557076414564,-56.155820812113,-56.1604661020779,-56.1606364830267,-56.1610171584451,-56.1644974378338,-56.1675957383687,-56.167687689795,-56.1678896328169,-56.1685391055586,-56.1685993803386,-56.1694070234903,-56.169563114487,-56.1696246103812,-56.1697341120847,-56.1700006993399,-56.1706707687627,-56.1709392916958,-56.1711652322253,-56.1719279665217,-56.1721029466285,-56.1735266351039,-56.1744132926006,-56.1746959162015,-56.1755678621349,-56.1756097167326,-56.1774731036307,-56.1776546713286,-56.1797007635779,-56.1813172236905,-56.1817350425673,-56.1819353794668,-56.1822721538472,-56.18268562378,-56.1829308223185,-56.1834208258592,-56.1834216277311,-56.1834707774539,-56.1835035902096,-56.183576687491,-56.183755390903,-56.1838431499125,-56.1838939183868,-56.1840347439308,-56.1841245656708,-56.1842005363092,-56.1844504768766,-56.1844775026895,-56.1845129974534,-56.184693738166,-56.1847227691797,-56.1847712796144,-56.184803696541,-56.1849297511339,-56.1849864503752,-56.1849928955741,-56.1850074332799,-56.1850695246771,-56.1851164026032,-56.1852005760136,-56.1852417211915,-56.1852736270212,-56.185390378066,-56.1854591958488,-56.185473092599,-56.1854926710295,-56.1854812169973,-56.185482380514,-56.1854692533273,-56.1854497755738,-56.185434635474,-56.1853872925164,-56.1853665945503,-56.1853434959711,-56.1852948356674,-56.1852647893384,-56.1852510259903,-56.1852039733907,-56.1851551327857,-56.1851452868746,-56.1851567092237,-56.1851656600899,-56.1853788671295,-56.1854422514851,-56.1854550412061,-56.1854449557965,-56.1854360111835,-56.1853964747519,-56.1853370113768,-56.1853433142107,-56.1853337315603,-56.1853726362078,-56.1853699098017,-56.1853509437704,-56.1853565153938,-56.1853346263968,-56.1853079663976,-56.1852934126418,-56.1852596625277,-56.1852595155769,-56.1852673458652,-56.185300274514,-56.1853373304997,-56.1854367767867,-56.1855459325603,-56.1857283682095,-56.1857619951351,-56.1859575582837,-56.1860055760685,-56.1860451555432,-56.186079280955,-56.1860990278057,-56.1861445598294,-56.186176919122,-56.1862128597409,-56.1862547404023,-56.1863699790005,-56.1864400555452,-56.1864851721585,-56.1865219968834,-56.1865753938444,-56.186631784489,-56.186695455555,-56.1867245344058,-56.1867445734384,-56.1867697247429,-56.1867972628798,-56.1868247901207,-56.1868596475246,-56.1869064184425,-56.1869417311333,-56.1869760501085,-56.1869941423298,-56.1870373096964,-56.1870732868445,-56.1870959971375,-56.1871150563809,-56.1871226340389,-56.1871352396285,-56.1871949647271,-56.1872237093887,-56.1872681247666,-56.1872993143762,-56.1873678594011,-56.1873979743072,-56.187458064516,-56.1875151936795,-56.1875420749647,-56.1875682553937,-56.1875884341077,-56.1875862629098,-56.1876198470269,-56.1876305873316,-56.1876556395485,-56.1877023064544,-56.1877408960695,-56.1877585438168,-56.1878063303365,-56.1878289561198,-56.1878384008865,-56.1878369317434,-56.1878688007312,-56.1878613628849,-56.1878358628589,-56.1878213325527,-56.1878094000446,-56.1877534889182,-56.1876986740081,-56.1876136723841,-56.1875815692913,-56.1875542552047,-56.1875418619642,-56.1875405039462,-56.1875338056479,-56.1875120378071,-56.1874915021382,-56.1874934994183,-56.1874920387691,-56.1875295972796,-56.1875294001467,-56.1875543409781,-56.1876069385728,-56.1876572513433,-56.1877021209681,-56.1878107206736,-56.1878226290026,-56.1878188752437,-56.1877786772209,-56.1877612953921,-56.1877651333507,-56.1877693583003,-56.1877937640641,-56.1878257555108,-56.1878509713278,-56.1878446986136,-56.187849444655,-56.1878478275189,-56.1878294329803,-56.1876255562473,-56.1874783102567,-56.1874161800766,-56.1873804993053,-56.1873514809348,-56.187284244565,-56.1872326186514,-56.1872095748791,-56.1872103847695,-56.1871736218646,-56.1871058717353,-56.1870898502565,-56.18707647681,-56.1870895829051,-56.1870834470193,-56.1870578536118,-56.1870553185804,-56.1870335326443,-56.1870321380188,-56.187010274191,-56.18697327055,-56.1869630393621,-56.1869664974476,-56.1869496135057,-56.186931490774,-56.186842213794,-56.1868360471762,-56.1868257818822,-56.1868192550786,-56.1868037732922,-56.1867938309251,-56.1867845530152,-56.1867498883148,-56.186739262835,-56.186713848895,-56.1866885624167,-56.1866815369705,-56.1866884119224,-56.1867074235501,-56.1867429855883,-56.186750678983,-56.1867164284546,-56.1867068276699,-56.1866948360167,-56.1866359583603,-56.1866267177614,-56.1866188433879,-56.1866109690665,-56.1866024115802,-56.1865924878686,-56.1865784469294,-56.1865688648001,-56.1865616735914,-56.1865534390322,-56.1865434781138,-56.1865369699657,-56.1865239164629,-56.1865078075822,-56.1864627848837,-56.1864545503765,-56.1864439250009,-56.1864370753225,-56.1864254253039,-56.1863859977826,-56.1863712551795,-56.1863568541066,-56.1863472534261,-56.1863383359105,-56.1863308030673,-56.1863235933073,-56.1863105584599,-56.1863043732909,-56.1862995543473,-56.1862889289717,-56.1862806945167,-56.1862666350784,-56.186202218628,-56.1861717460375,-56.1861556558644,-56.1861436643675,-56.1861339212178,-56.186133154885,-56.1859364201948,-56.1859249532393,-56.1858729413112,-56.1858276255449,-56.1858093705053,-56.1857773934931,-56.185754582458,-56.1857205267697,-56.1857190012954,-56.185715890316,-56.1857158058975,-56.185675058112,-56.1856725424396,-56.1856339079314,-56.185626729125,-56.1856107063825,-56.1856159678459,-56.1856152642539,-56.1856133128309,-56.1856113075258,-56.1856093129555,-56.1856073076505,-56.1856042943256,-56.185601194602,-56.1855981920118,-56.1855961975457,-56.1855942137101,-56.1855922515523,-56.185589313683,-56.1855873406864,-56.1855853353813,-56.1855823112175,-56.1855802951778,-56.1855782790339,-56.1855762737288,-56.1855732711387,-56.1855702792832,-56.1855672982666,-56.1855652929616,-56.1855632876566,-56.1855612716169,-56.1855582690267,-56.1855552664365,-56.1855532287189,-56.1855502153941,-56.1855472020692,-56.18553656648,-56.1855338662332,-56.1855373344802,-56.1855496318639,-56.1855593034143,-56.1855515448297,-56.1855387976306,-56.1855335206383,-56.1855208074151,-56.1855003866753,-56.1854800845383,-56.1854798602559,-56.1854770934123,-56.1854757804435,-56.1854713712946,-56.1854702505083,-56.185466070019,-56.1854701045997,-56.185472088748,-56.185479428575,-56.1854832301189,-56.18548214977,-56.1854769896088,-56.1854680723016,-56.1854612306482,-56.1854552915436,-56.1854513105321,-56.1854364461995,-56.1854291009531,-56.1854620400239,-56.185537666318,-56.1855707582802,-56.1855942791605,-56.1855774352654,-56.1854939969216,-56.1855104783381,-56.1856523040855,-56.1857207697074,-56.1858384939625,-56.1858804313199,-56.1858158209153,-56.1857728763718,-56.1856846974582,-56.1855178227508,-56.1853395466426,-56.1852327582358,-56.1850216983451,-56.1847703276652,-56.1847038954877,-56.1846016719351,-56.1844827020376,-56.1842164605634,-56.1839289416575,-56.1838575123196,-56.1836956021517,-56.1836195120768,-56.1835508116462,-56.183490702313,-56.1834857214108,-56.1834685192059,-56.1836685978082,-56.1837228153529,-56.1837504529397,-56.1837002954055,-56.1836595564787,-56.1836943852741,-56.1837214217175,-56.1839110941198,-56.1840243810864,-56.1841425370225,-56.1842158056423,-56.1844220545101,-56.1845120769787,-56.1845736293478,-56.1848718210496,-56.1849971592313,-56.1851226743794,-56.1852102535045,-56.1853970548427,-56.1855035735271,-56.1855626583737,-56.1856354344479,-56.1856754747852,-56.1856584224492,-56.1855964119271,-56.1854677469255,-56.1853890146545,-56.1852842962736,-56.1852222705353,-56.1851840376927,-56.1851386050953,-56.1850953421585,-56.1850878933169,-56.1850236422643,-56.1848787723429,-56.1846723277491,-56.1846128983498,-56.1845390456788,-56.1844915486834,-56.1843440526159,-56.1842010171822,-56.1839489594812,-56.18380629403,-56.1836212016982,-56.1834597580209,-56.1834074410397,-56.1833126129677,-56.1832218615816,-56.1831669507627,-56.1830545582156,-56.1829647235523,-56.1829170919041,-56.1828383817279,-56.1827859459354,-56.1827294434623,-56.1827320652311,-56.1827786438362,-56.1828165066964,-56.1828599403462,-56.1830014320671,-56.1831889600301,-56.1834599852214,-56.1835373617931,-56.1837179044869,-56.1838763347351,-56.1841105098802,-56.1842073000057,-56.1842772619202,-56.1843280881326,-56.184381170717,-56.1845149603407,-56.1845615326926,-56.1845498716787,-56.1845370540266,-56.1844365744985,-56.1843607937497,-56.1842708131778,-56.1841853643179,-56.1841016594825,-56.1840410521841,-56.1839883014376,-56.1839652753958,-56.1840301140431,-56.1841245152282,-56.1842082527888,-56.1843361981485,-56.1844515609774,-56.1845159568963,-56.1845844855716,-56.1846890642972,-56.1847925570461,-56.1848864250396,-56.1850061953498,-56.1850533146505,-56.185086314586,-56.1851511292626,-56.1852076388227,-56.1852725914871,-56.1853420817,-56.1854033101521,-56.1854778350448,-56.1855383363511,-56.1855884908629,-56.1856787406361,-56.1857715650706,-56.1858437077973,-56.1859800518634,-56.1860621094951,-56.1861443088666,-56.1862184362627,-56.1862833574525,-56.186329294581,-56.1863634895078,-56.1864017288643,-56.1864496917249,-56.1864882660458,-56.1865281884056,-56.1865678014913,-56.1866027667634,-56.186643988387,-56.186647889722,-56.1866502225917,-56.1866270522047,-56.1865727569637,-56.1865270141542,-56.1864793564509,-56.1864724031774,-56.1864323449142,-56.1863813305839,-56.1863184134485,-56.1862514808046,-56.1861652984415,-56.1860603043975,-56.1859188049643,-56.1859083117402,-56.1858912320984,-56.1858659596898,-56.1858809213643,-56.1859117412172,-56.1859543509004,-56.1859308226204,-56.1858940470919,-56.1858689651982,-56.1858445278035,-56.1857899147423,-56.1857084631523,-56.1856031082973,-56.1854960877916,-56.1854068826195,-56.1853216344882,-56.1852571009983,-56.1851893621053,-56.1851273555436,-56.1850835271068,-56.1850386531308,-56.1849987911146,-56.1849550093686,-56.1849179802717,-56.1848830526753,-56.1848348052929,-56.1848537890417,-56.1848320146871,-56.1849042679916,-56.1849292085624,-56.184943268105,-56.1848548989891,-56.1848400592525,-56.1848137779903,-56.1847857772996,-56.1847535608931,-56.1848324163526,-56.184878347332,-56.1849311416427,-56.1849829919249,-56.1850450947863,-56.185098593627,-56.1851789604909,-56.185241989038,-56.1853058061168,-56.1853830384475,-56.1854562883076,-56.1855122129827,-56.1855432453411,-56.1855839357011,-56.1856834834988,-56.1857557007431,-56.1858405719092,-56.1859392847971,-56.1860250513208,-56.186086458094,-56.1862389822754,-56.1863571357102,-56.1864725328276,-56.1865805680233,-56.1867042154893,-56.186813933011,-56.1869271412391,-56.1869915332237,-56.1870470192091,-56.1871727593104,-56.1872870360355,-56.1874323655202,-56.187498099525,-56.187573142289,-56.1876176966991,-56.1876966763372,-56.1877493432385,-56.1877479828494,-56.1877591818021,-56.1879318343851,-56.1879187791626,-56.1879480668191,-56.1880441172922,-56.1881244372049,-56.1882120873562,-56.188286965035,-56.1883650479085,-56.1884465998628,-56.1884880464462,-56.1885442512658,-56.1886388482811,-56.188736279779,-56.188825478802,-56.1889119459995,-56.1890113695665,-56.1890936827467,-56.1891882508929,-56.1892873324084,-56.189367825379,-56.1894237898664,-56.1894886508168,-56.1895967634483,-56.1896650009317,-56.1897490013362,-56.1898258499274,-56.1899037227967,-56.1900037520927,-56.1900707168365,-56.1901144068686,-56.1901429601359,-56.1901447525186,-56.1901472517242,-56.190143442468,-56.1901650769587,-56.1901911918852,-56.1902590677239,-56.1903509386457,-56.1904672778115,-56.1905754598537,-56.1907074677252,-56.1908203544855,-56.190942820561,-56.1910587616048,-56.1911548228127,-56.1912176510481,-56.1912678077486,-56.1913097510465,-56.1913653705642,-56.1913629497324,-56.1913605188954,-56.1913229432667,-56.1912553584115,-56.1911949064015,-56.1912744457553,-56.1913731433228,-56.1914383415305,-56.1914960279476,-56.1915280311191,-56.1915341409367,-56.1915313736763,-56.1915305315753,-56.1914360591034,-56.1914151199712,-56.1914040638527,-56.1913983471544,-56.1913543152794,-56.1913030759373,-56.1912437115716,-56.1911363120162,-56.191019333354,-56.1909088426211,-56.190751405385,-56.1907447863464,-56.1907117816167,-56.1906774887226,-56.190598353744,-56.1905748710084,-56.1905504990641,-56.1905125838853,-56.190494322384,-56.1904711791985,-56.1904629972705,-56.1904543200872,-56.1904730947698,-56.1904887136581,-56.1905464186264,-56.1906016769162,-56.1906419310096,-56.1906584637026,-56.1906732513289,-56.1906841231858,-56.1906962365163,-56.1907428142877,-56.1907918889717,-56.1908058040648,-56.1908119764147,-56.190846710578,-56.190896491668,-56.1909348985588,-56.1909636554728,-56.1910012536131,-56.1910350193603,-56.1910612174547,-56.1911078281597,-56.1911226061977,-56.1911424885349,-56.1911496230477,-56.1911137566338,-56.1910345858034,-56.1909902391827,-56.1909112046726,-56.19084796831,-56.190776842045,-56.1907382688185,-56.1907005001735,-56.190669737225,-56.190659973648,-56.1906481577625,-56.1906199563433,-56.1905645929994,-56.1905450971115,-56.1905428257318,-56.1905306719638,-56.1904818359445,-56.1904802955667,-56.1905539402138,-56.1906378374401,-56.1906683796498,-56.1906927055286,-56.190721554365,-56.1907715568193,-56.1907971708624,-56.1908092195762,-56.1908254429431,-56.1908767539888,-56.1909308902416,-56.1909879296583,-56.1910498240788,-56.1911211833806,-56.1911718857791,-56.1912222284088,-56.1912975134852,-56.1913409312936,-56.1913190800243,-56.1912565202607,-56.1912139403845,-56.1911580778247,-56.1911271877272,-56.1911025212561,-56.191082307498,-56.1910423473062,-56.1909957386856,-56.191032980809,-56.1910585748418,-56.1910992537376,-56.1911367897626,-56.1912198188328,-56.191250840248,-56.1912847047961,-56.1913043336693,-56.1913349944818,-56.1913263579444,-56.1913589768501,-56.1912543011996,-56.1911601714044,-56.1910888400337,-56.1910119712238,-56.1909353496247,-56.1908579888945,-56.1908007335331,-56.1907462470997,-56.1907239647748,-56.1907070698117,-56.1907162526725,-56.1907618893335,-56.1908000340057,-56.1907754588316,-56.190745421674,-56.1907350696686,-56.1907329438275,-56.1907319432645,-56.1907065324512,-56.1906823556076,-56.1907127637899,-56.1907506445759,-56.1908135409716,-56.1908188578803,-56.1908341853684,-56.1908462515913,-56.1907782431843,-56.1906972995646,-56.1906146823734,-56.1905484953224,-56.1903471179253,-56.1902220015245,-56.1900744518877,-56.1899723014978,-56.1898827440608,-56.1897540383089,-56.1896425662366,-56.189535549587,-56.1894423104596,-56.1893862788543,-56.1893752260708,-56.1893931747023,-56.1894255090863,-56.1894588792128,-56.1894949601123,-56.1894932154626,-56.1894219311995,-56.1893659177286,-56.1892747813522,-56.1890739536135,-56.1890323907201,-56.1888602190101,-56.1887555508634,-56.1885725947374,-56.1884546692327,-56.1883357106953,-56.1883063050092,-56.1882475970236,-56.1882738282601,-56.1882788368848,-56.1882708231686,-56.1883372178267,-56.1883672877095,-56.1883539063292,-56.1883343761528,-56.1883699646109,-56.1883619535002,-56.1883846671934,-56.1884007993673,-56.1884160749537,-56.1883674065208,-56.1882460046399,-56.1882053992195,-56.1882317937693,-56.1882150451316,-56.188217151322,-56.1882423502552,-56.1882857487828,-56.1883026535427,-56.1883260557159,-56.1883737451022,-56.1884331427143,-56.188475102479,-56.188566554539,-56.1886803335302,-56.1887891472524,-56.1889446569319,-56.1890309568557,-56.189182131487,-56.1892673087484,-56.1893120976805,-56.1893680434082,-56.1893876260074,-56.189409333244,-56.1894140337932,-56.1894266475902,-56.1894429951877,-56.1894773872996,-56.1895340552747,-56.1895610842142,-56.1895560678772,-56.1896475352576,-56.1897537710878,-56.1898575325169,-56.1899538884601,-56.1900625897285,-56.1901709447766,-56.1903115051839,-56.1904229528686,-56.1905283309648,-56.1906630777488,-56.1907417030896,-56.1907959381433,-56.190877116259,-56.1909005520954,-56.1909790013037,-56.1910639109271,-56.1911347282827,-56.1912095714646,-56.1913126713025,-56.1913945251833,-56.1914778231422,-56.1916023569508,-56.1916916650926,-56.1918160909289,-56.191972547034,-56.1921299336189,-56.1922873010273,-56.192365889891,-56.1924212592797,-56.1924613578762,-56.1925534883069,-56.1926562183708,-56.1928293626657,-56.192960140111,-56.1931119300596,-56.1932534034377,-56.1934119814705,-56.193506042897,-56.1936409216241,-56.1937477158673,-56.1938462200017,-56.1939042036554,-56.193912920651,-56.1939358045361,-56.1938979400084,-56.1938108413394,-56.1937113550318,-56.1936205673769,-56.1934920773613,-56.1933189118054,-56.1931900149133,-56.1930610379799,-56.1929445441511,-56.1928300280089,-56.1926638681493,-56.1925506931154,-56.1923851748367,-56.1922671477171,-56.1921848390184,-56.1921162140434,-56.1920070098073,-56.1919789053131,-56.1919758158031,-56.1919988243359,-56.1920440109731,-56.1920844434919,-56.1920970966841,-56.192069033878,-56.192013077103,-56.191964243585,-56.1918894741912,-56.1918157124003,-56.1917104451947,-56.1916081566085,-56.1915734766398,-56.1915768066906,-56.191544652191,-56.191461587269,-56.1914069624309,-56.1913544803645,-56.1912372061332,-56.1911555144194,-56.1911114629509,-56.1910330508451,-56.190896537525,-56.1908374074468,-56.1907887902903,-56.1907554222483,-56.1906323775409,-56.1905497190785,-56.1903940750589,-56.1902624380037,-56.190187047873,-56.1899816152595,-56.1898679049495,-56.1897520401951,-56.1896175108149,-56.189444819045,-56.1893067226168,-56.1891889879397,-56.1890724009378,-56.1888347600469,-56.1887554483105,-56.1887076006134,-56.1886389536479,-56.1884462767795,-56.1883776412783,-56.1883185794644,-56.188191378968,-56.1880304587899,-56.1879242381237,-56.1877861642071,-56.1877175040578,-56.1876965308976,-56.1875780064642,-56.1874456640843,-56.1872905218974,-56.187142265726,-56.1870645541898,-56.186958239595,-56.1868156750031,-56.1866593124359,-56.1865489120621,-56.1863955029451,-56.1863059904791,-56.1862305203072,-56.1861108183655,-56.1859971298376,-56.1858825858685,-56.1857588071368,-56.1855931425327,-56.1854751055121,-56.1853294564388,-56.1852207622575,-56.185103618927,-56.1849949247456,-56.1848323323509,-56.1847898248037,-56.1847884563896,-56.1846708605341,-56.1845723711989,-56.1844557172875,-56.1843492665548,-56.1842687944283,-56.1841991528874,-56.1841298527725,-56.1840557558088,-56.183982756703,-56.1838784656258,-56.1837571634838,-56.1836502337541,-56.1835371237537,-56.1834294382175,-56.1833207288199,-56.1832031448455,-56.1830893340671,-56.182984434551,-56.1828757805988,-56.1827412774821,-56.1826303811233,-56.1825146326789,-56.1823944106773,-56.1822725365737,-56.1821274154811,-56.1820068703962,-56.1818897383215,-56.1817679196632,-56.1817116239634,-56.1816546704243,-56.1815439391507,-56.1814643418503,-56.1813854636708,-56.1813130709194,-56.1812482053832,-56.1811826753377,-56.1811345780327,-56.1810809441223,-56.1809758090682,-56.1809264940518,-56.1808809910014,-56.180825993888,-56.1807891186204,-56.1806769699492,-56.180612527131,-56.1804660224081,-56.1803427830171,-56.1802336825845,-56.1801074766636,-56.1799776430384,-56.1798522642107,-56.1797143097307,-56.1795896887938,-56.1794586170301,-56.179350018523,-56.1792259878906,-56.179122076801,-56.1790069757738,-56.1788866995776,-56.1788184835635,-56.1787502500404,-56.1786724048937,-56.1786122913916,-56.1785545299359,-56.1784869976077,-56.1784031360248,-56.1783151606537,-56.1782571499027,-56.1781750467267,-56.178160348313,-56.1782064245757,-56.178272621215,-56.1783204033575,-56.1783643952119,-56.1784049844781,-56.1784494549127,-56.1785777210628,-56.1786826318346,-56.1787646007748,-56.1787686386906,-56.1787344844097,-56.1786812344473,-56.1786269422808,-56.1785747161798,-56.1784951843298,-56.1784341019948,-56.1783767390779,-56.1783401960651,-56.1783152040094,-56.1783023515477,-56.1782832450273,-56.1782680138389,-56.1782545777429,-56.1782647313127,-56.1782644778486,-56.1782641143278,-56.1782915701541,-56.1783579102007,-56.1784123691199,-56.1784686731573,-56.178524099242,-56.1786028323467,-56.1786569744358,-56.1786852123321,-56.1787215710833,-56.178815448665,-56.1788393484908,-56.1788556952545,-56.1788889790865,-56.1789969105829,-56.1790483421075,-56.179097945189,-56.1791704934374,-56.1792792203439,-56.1793416241939,-56.179387255227,-56.1794201997173,-56.1794462531537,-56.1794969901534,-56.1795701387113,-56.1796000207889,-56.1796054060663,-56.1795846895489,-56.1795766495691,-56.1795788773847,-56.1795616418293,-56.1795539320198,-56.1795313878932,-56.1794972961445,-56.1794817206118,-56.1794354492485,-56.1794026965238,-56.1793847189189,-56.1793675967552,-56.1793518211194,-56.1793360679951,-56.1793226944313,-56.1793258210438,-56.1792911056402,-56.1791805677996,-56.1790735817909,-56.1789643004317,-56.1788101359251,-56.1787455426127,-56.1786699919826,-56.1785823817998,-56.1784978640452,-56.1784222058596,-56.1783320018391,-56.1782787143574,-56.1782159136361,-56.1781940882135,-56.1781726038001,-56.1781225229722,-56.1780619158822,-56.1779962253372,-56.1779247509761,-56.177823564625,-56.1777864729959,-56.1777155497523,-56.1776490479557,-56.1775828688254,-56.1775167255469,-56.1774769717115,-56.1774228471314,-56.1774095002481,-56.1773718850156,-56.1773349701444,-56.1773007675052,-56.1772050581454,-56.1771063138871,-56.1770841107698,-56.1770677106451,-56.1770465138801,-56.1770177898997,-56.177003419155,-56.1769870190304,-56.1769362486802,-56.1768847529558,-56.1767917566619,-56.1766991914237,-56.176654354967,-56.1766457680385,-56.1766378639622,-56.1766193077256,-56.1766068221198,-56.1766115287138,-56.1766176176873,-56.1766223242813,-56.1766242994666,-56.1766245329204,-56.1766237600218,-56.1766223226138,-56.1766205441966,-56.1766170407231,-56.1766128727403,-56.1766073223778,-56.1766018070334,-56.1765935619478,-56.1765842930009,-56.176571610627,-56.1765643894028,-56.1765615862905,-56.1765642093099,-56.1766025749294,-56.1766333266222,-56.1766469728265,-56.1766606648879,-56.176695001763,-56.1767085337417,-56.1767255716953,-56.17681869222,-56.1769117793941,-56.1769909360505,-56.1770010987917,-56.177021653559,-56.1770799127714,-56.1771137252094,-56.1771066573976,-56.17704783873,-56.1769544105467,-56.176861004875,-56.1767711051781,-56.1766845855577,-56.1766292953765,-56.1765389904706,-56.1764202567366,-56.1763728748005,-56.176336270923,-56.1762982388088,-56.1762715292007,-56.1762457200569,-56.176182241486,-56.1761427261069,-56.176025563183,-56.1759573788519,-56.1759193417352,-56.1759140356654,-56.1759223557897,-56.1759485451295,-56.1759685162625,-56.1759571095464,-56.175927726893,-56.1758690699755,-56.1757786908646,-56.1757030085,-56.1755277322722,-56.1754486123014,-56.1753968872921,-56.1753752244534,-56.1753661531084,-56.1753699325575,-56.1753726481247,-56.175390313902,-56.1754329667325,-56.1754362692691,-56.1754309623655,-56.1754016030575,-56.1753448612943,-56.175247822082,-56.1750055037789,-56.1748904611152,-56.1748114270219,-56.1747280498555,-56.1745953680948,-56.1745970214475,-56.1745986197718,-56.1746344199015,-56.1746326022974,-56.1746084881945,-56.1745723945801,-56.1745397844289,-56.174424939367,-56.1742288373989,-56.1740554162945,-56.1740193627008,-56.173994758345,-56.1739936669488,-56.1737979560157,-56.173734864311,-56.1736528945371,-56.1734782644759,-56.1733826826819,-56.1732343036591,-56.1731331548273,-56.173037380434,-56.172978690166,-56.1728579528987,-56.1727401538133,-56.1726144940074,-56.172505262674,-56.1723744335354,-56.1722860262748,-56.1722831214434,-56.172168007076,-56.17215903078,-56.1720945608645,-56.1720584739202,-56.1719844757575,-56.1718341882504,-56.1717764317972,-56.1717810458435,-56.1717873607669,-56.1717859352752,-56.1716392310393,-56.1715664268256,-56.1714945731022,-56.1714621196984,-56.1714221941078,-56.1713704590934,-56.1713215171861,-56.171318192138,-56.1713148670898,-56.1713121706992,-56.1713092058368,-56.1713069596784,-56.1713034995606,-56.1713110651291,-56.1713023823178,-56.1713013032464,-56.1712963041831,-56.1712905528837,-56.1712877247585,-56.1712846181564,-56.171281248085,-56.1712782832226,-56.1712746413444,-56.1712709977987,-56.1712680296012,-56.1712650664063,-56.1713016252607,-56.1713384692621,-56.1713690933891,-56.171381099581,-56.1713848681912,-56.171386172197,-56.1713712828516,-56.1714336083277,-56.171479080112,-56.171678969867,-56.1716166477258,-56.1715512223176,-56.1714885449933,-56.1714541439185,-56.1713921302698,-56.1713748546936,-56.1712060759835,-56.1711597270802,-56.1711251892681,-56.1710872096811,-56.1710131314771,-56.1709268970037,-56.1708185061038,-56.1708475010572,-56.1708317912886,-56.1707796960885,-56.1707937618407,-56.1705359503826,-56.1704121098482,-56.1701916494844,-56.1701725446316,-56.170161872461,-56.1701993434524,-56.1702419187429,-56.1703119098391,-56.1703386736419,-56.1703595477405,-56.1703473481155,-56.1703081662418,-56.1702056483707,-56.1700441133963,-56.1699579989849,-56.1698689297163,-56.1697877845343,-56.1697069745252,-56.1696634654197,-56.1696014334282,-56.1694825504506,-56.1693796357082,-56.1692809681561,-56.1691997395978,-56.1691396869604,-56.1690730275825,-56.1690040319997,-56.1689411462346,-56.1689049142155,-56.1688859744477,-56.1687961814726,-56.1687616519981,-56.1687983659325,-56.1688053545367,-56.1688552669444,-56.1689358301596,-56.1689476662638,-56.1689279744416,-56.1689036035395,-56.1688630909795,-56.1688575848065,-56.1688045774692,-56.1688089663994,-56.1688189982397,-56.1687963548953,-56.1687623506918,-56.1687098119296,-56.1686475948426,-56.1686557223675,-56.1686334608867,-56.1686300207792,-56.1686013276481,-56.1685773602875,-56.1685595877885,-56.1684922497272,-56.1683809956839,-56.1682680891218,-56.1681741173248,-56.1681661215345,-56.1680949581671,-56.1680093173332,-56.1679342002601,-56.1678307235612,-56.1678408254377,-56.1677992106425,-56.1678040814879,-56.1677762387953,-56.1677657167022,-56.1679310719801,-56.1679073697563,-56.1678767439618,-56.1678705924559,-56.1679358010857,-56.1679725867237,-56.1671742983593,-56.1667492291402,-56.1658856187542,-56.1658397621723,-56.1658200489076,-56.1657850106595,-56.1659196687754,-56.1660352634235,-56.1662421860708,-56.1663946762351,-56.1665811577819,-56.1669172991515,-56.1670504906147,-56.1671856594106,-56.1669903343624,-56.1669332025668,-56.1668453180124,-56.1667899812814,-56.1665115651755,-56.1658382228093,-56.1634809298297,-56.1621719196986,-56.1612620216369,-56.1590992759346,-56.1587788383486,-56.1557181942738,-56.1554740391783,-56.1550695891248,-56.1545897280537,-56.1541828977502,-56.1538875168263,-56.1535066565311,-56.1526960043016,-56.1523827873107,-56.1519916035666,-56.1517103207974,-56.1513990672528,-56.1508918072804,-56.1507669854209,-56.1501260096782,-56.1495003292081,-56.1492063862406,-56.1486613091863,-56.148216999116,-56.1478090709583,-56.1466069501885,-56.1454465386501,-56.1452663204778,-56.1443884655269,-56.1440564329509,-56.1424707541495,-56.1420766372579,-56.1417110670632,-56.141432546639,-56.1411460337974,-56.1407086765796,-56.1403843020003,-56.1400186127012,-56.1397229057578,-56.1393290320231,-56.1390469359918,-56.1386787148104,-56.138465030172,-56.1381803972581,-56.1379220160412,-56.1375233060598,-56.1373376801201,-56.137178788771,-56.1368404336002,-56.1365154456541,-56.1358536750119,-56.1352057075378,-56.1343722027637,-56.1340547711833,-56.1334537009063,-56.1331872169456,-56.13291903955,-56.1328241473797,-56.1326692451102,-56.1324421760115,-56.1321468289841,-56.1320365162596,-56.1318677196337,-56.1316969452079,-56.1311464638158,-56.1307657073319,-56.1303579213697,-56.1300776721262,-56.1298384827695,-56.1292347417816,-56.1288735747501,-56.1284931825083,-56.128196005628,-56.1278272624577,-56.1273790877883,-56.1268631774688,-56.1266072962215,-56.1263646562572,-56.1261424623202,-56.1258031210801,-56.1256061065633,-56.1254594906209,-56.1252741931278,-56.1249632796233,-56.1245614462783,-56.1244516224937,-56.1244504274867,-56.124639119831,-56.1245522272851,-56.1242499872708,-56.1240083295603,-56.1240884051049,-56.1241577731858,-56.1246409548431,-56.1246106239637,-56.1243995382199,-56.1244256019849,-56.1244930785018,-56.1244212122518,-56.1241371596412,-56.1240649261901,-56.1240063339645,-56.124032031235,-56.1241115635621,-56.124246883859,-56.1242021769796,-56.1241574698096,-56.1240162930188,-56.1238995930157,-56.1237701041351,-56.1235442667885,-56.1231627521036,-56.1230179072434,-56.1228852810772,-56.12277055488,-56.1227828056426,-56.1229679422684,-56.1230313524695,-56.1229581730273,-56.1230565946294,-56.1234448018581,-56.1235803698845,-56.1237415152763,-56.1242430225743,-56.1248260256449,-56.1250624694549,-56.1253406971808,-56.1254626349576,-56.1260731854605,-56.1262285098158,-56.1261971335962,-56.1260941752306,-56.1261498237983,-56.1264435110341,-56.126681672915,-56.1268206740692,-56.1269907513296,-56.1269032888602,-56.1268449396025,-56.1268821020647,-56.12689841595,-56.1271737348569,-56.1270853623788,-56.1268278303356,-56.1265807353798,-56.1264667085966,-56.1263250265786,-56.126044583728,-56.1257913079863,-56.1257004336919,-56.1256226951123,-56.1255881916371,-56.1254782139789,-56.1250853227296,-56.1245928966369,-56.1239469672411,-56.1237369375622,-56.1233899797161,-56.1230029872973,-56.1228992639027,-56.1224080557403,-56.1220431321387,-56.122004515345,-56.1219791888135,-56.1219104330302,-56.1218892092668,-56.1218762816856,-56.1218748746415,-56.1219025109384,-56.1218969042049,-56.1218741992159,-56.1218291410218,-56.1217092485086,-56.1216708693658,-56.1216063326441,-56.1215249306804,-56.1214548960441,-56.1214181490756,-56.1214062496054,-56.1213157829494,-56.1212495108531,-56.1211707674322,-56.1211139481356,-56.1210534795647,-56.1210045496833,-56.120932386032,-56.1208730592506,-56.120824309484,-56.1207875772069,-56.1207239910805,-56.1206591525599,-56.1206242347586,-56.1205841240624,-56.1205202770785,-56.1204839157824,-56.1204436039543,-56.1204055536113,-56.1203446486144,-56.1203084321859,-56.1202665426989,-56.1202397146601,-56.1201970663544,-56.1201271366008,-56.1201116019225,-56.1200998225142,-56.1200897973439,-56.1200825062162,-56.1201288975089,-56.1201429647637,-56.1202166860646,-56.1201695418255,-56.1201550265678,-56.1201352736158,-56.1201066115352,-56.1200790913214,-56.1200653604991,-56.1200451076296,-56.1200436535464,-56.1200467101042,-56.1200550496686,-56.1200620239689,-56.1200395960598,-56.1200237934788,-56.1200103528682,-56.1200139796202,-56.1200465395667,-56.1200393557593,-56.1200219867977,-56.1200204204695,-56.1200224250599,-56.1200398860861,-56.1200584555366,-56.1200719324265,-56.1200849402649,-56.1200818969787,-56.120064963529,-56.1200223213647,-56.1200169160296,-56.1200191440068,-56.1200264980953,-56.1200361025119,-56.1200409047248,-56.1200403797821,-56.1200285612024,-56.1200255066968,-56.1200457792961,-56.1201935804481,-56.1203390314398,-56.1205458885237,-56.1206992759977,-56.1207399614602,-56.12076516523,-56.1206235819565,-56.1205658207912,-56.1205354691161,-56.1205301486542,-56.1204920866291,-56.1202124727529,-56.1200975611713,-56.1201474560641,-56.1200758227772,-56.1202207633156,-56.1201284450184,-56.1199333668899,-56.119789050008,-56.1198010496599,-56.119807420181,-56.1197253717858,-56.1197227789062,-56.1196499399234,-56.1195216939903,-56.1192495892003,-56.1189769143368,-56.1187092025229,-56.1184400569916,-56.1179472261874,-56.1171176413018,-56.1166396551454,-56.1159493257359,-56.115497058242,-56.1153831187029,-56.1153293754243,-56.1152888737413,-56.1152575731647,-56.1152296135788,-56.1151957938547,-56.1151619290296,-56.11512140793,-56.1150804603949,-56.1139637344798,-56.1132282436836,-56.1131700180811,-56.1131279806902,-56.113122075266,-56.1131049615799,-56.1130308133373,-56.1129567628616,-56.1128086689123,-56.1123311845816,-56.1117818292001,-56.1108654630238,-56.1105538610385,-56.1100708810209,-56.1096305686108,-56.1091214705925,-56.1087756005183,-56.1085634024113,-56.1080219379048,-56.1074026866501,-56.1067703257921,-56.1066626564098,-56.1064018212082,-56.1061996513645,-56.1060269649727,-56.105539287475,-56.1048401861566,-56.1048409558613,-56.1043147621045,-56.1040659347719,-56.1033825842767,-56.1030107846331,-56.1022791243016,-56.1017417803751,-56.1016008599165,-56.1012772810229,-56.1012477967426,-56.1011551256817,-56.1006452888072,-56.1004190618104,-56.1001270791567,-56.0995496815903,-56.0995755723809,-56.0996029193211,-56.0995864991048,-56.0996206723689,-56.0996667800802,-56.0997125336828,-56.0997194172802,-56.1000341799867,-56.0999175292365,-56.0994017538858,-56.0991064375634,-56.0981733264163,-56.0978933072633,-56.0974456527658,-56.0964585535924,-56.096172232008,-56.0958006756905,-56.0954118707303,-56.0952836159353,-56.0950316910008,-56.0942414575411,-56.0941767177163,-56.0941268248063,-56.0943201065325,-56.0941641909896,-56.0942029469891,-56.0939765839171,-56.0937062834335,-56.0934102290727,-56.0930843757259,-56.0932064515746,-56.0935123506558,-56.0935189434842,-56.0935889747749,-56.0938650811788,-56.0943656662483,-56.0948138607291,-56.0954593571769,-56.0958462291446,-56.095732351069,-56.0952549891749,-56.0952676152237,-56.0951245713839,-56.094954508072,-56.0948262341843,-56.0948474452023],&#34;lat&#34;:[-34.7639565764822,-34.7642114285427,-34.7644120995473,-34.76473769617,-34.765297036964,-34.765564279622,-34.7659090118892,-34.7660288249643,-34.7664369352014,-34.7666461488671,-34.767248372872,-34.7677324503253,-34.7679418718027,-34.7682231776235,-34.768435920323,-34.768438618319,-34.7685750833525,-34.7690418775568,-34.7692646028959,-34.7696073436552,-34.7698652922642,-34.7699305794762,-34.770218420767,-34.7705618425621,-34.7709805850462,-34.7712184717551,-34.7715750815044,-34.7719220387225,-34.7720765946718,-34.7723461135702,-34.772574823112,-34.772873338467,-34.7733361555653,-34.773567088851,-34.7736394477174,-34.7738713753158,-34.7740902841909,-34.7741778576713,-34.7744457946898,-34.7747253336138,-34.7750403981641,-34.7753188979166,-34.7755794379927,-34.7761904820581,-34.7763274480079,-34.776377048585,-34.7764637343069,-34.7766257351487,-34.7768012549079,-34.7767289665739,-34.7765425687411,-34.776357108468,-34.7759513879786,-34.7756964320888,-34.7757945974073,-34.776007250184,-34.7762335328363,-34.7767707246766,-34.7770264190601,-34.777592905627,-34.7779073871245,-34.7780759293563,-34.7784109025944,-34.7787669000024,-34.779259991519,-34.779613245129,-34.7797578295742,-34.7799573555748,-34.7799906900445,-34.7801833181387,-34.7802845753883,-34.7803849924858,-34.7801989005699,-34.7798984153278,-34.77973555858,-34.7795626713627,-34.7794326539583,-34.7792798989225,-34.7791845426259,-34.7799746088903,-34.7802847793933,-34.7803063806342,-34.7807614991054,-34.7815088354993,-34.7816507516544,-34.7845465625683,-34.78640484093,-34.7869658902775,-34.7892714561283,-34.7892762153071,-34.7895824930598,-34.7894578621178,-34.789425532111,-34.7897760709164,-34.7905771618972,-34.7904860745134,-34.7904108936146,-34.7904014084046,-34.7903883179559,-34.7903608323417,-34.790312719557,-34.7902764245399,-34.7902823222726,-34.790280907542,-34.7902950505738,-34.790305502985,-34.7903509004327,-34.7904186109884,-34.7904430595922,-34.7906410141156,-34.7906800754462,-34.7904832932618,-34.7904175837787,-34.7903493481054,-34.7903316071801,-34.7903278584378,-34.7903214697824,-34.7903518074801,-34.7903859744852,-34.7905068255358,-34.7906146251356,-34.7906438353673,-34.7906612064423,-34.7920123623764,-34.7938212884092,-34.7939440826825,-34.794173940987,-34.795583214452,-34.798928299598,-34.7990045725056,-34.7993867025417,-34.8000865036063,-34.8003848956393,-34.8004585287604,-34.8005716057188,-34.8006908169392,-34.8008361310061,-34.8010520679576,-34.8012831696531,-34.8014296976278,-34.8015039545959,-34.8014257220881,-34.800022804062,-34.7987267890072,-34.7986500961214,-34.7987358336717,-34.7996900980217,-34.7997184982919,-34.7997780778504,-34.8008821739277,-34.8036825714977,-34.8036737002559,-34.8060545281097,-34.8060942485946,-34.8062933979677,-34.8066783364903,-34.80668957562,-34.8067426974188,-34.8067948416881,-34.8068360927981,-34.806866883377,-34.8068729968817,-34.8068905659425,-34.8069268576072,-34.8069376635653,-34.806968052571,-34.8072715290816,-34.8073374416147,-34.8075206218077,-34.8076995789246,-34.8077598628842,-34.8077720655217,-34.8083881820713,-34.8084091440759,-34.8084579381114,-34.8088748692985,-34.8119167981545,-34.8119537304793,-34.8121750258077,-34.8128168155944,-34.8128739027913,-34.8136723666762,-34.8138257224642,-34.8138820783109,-34.8139820439822,-34.8142416304078,-34.814945663755,-34.8152137722166,-34.8154354350844,-34.8161783910817,-34.8163720187128,-34.8177911984179,-34.8186383675499,-34.8189018670827,-34.8197495643236,-34.8197981572953,-34.8216366131989,-34.821818330681,-34.8238016741003,-34.8254029099305,-34.8258128519902,-34.8260094101575,-34.8263398295107,-34.8267454923026,-34.8269850458465,-34.8274637660681,-34.8274645648134,-34.8275147290177,-34.827470893077,-34.8274335204697,-34.8273825041593,-34.8273739230671,-34.8273877201826,-34.8273636977937,-34.8273589420077,-34.8273408693538,-34.8272814120235,-34.8272559922472,-34.827209431568,-34.8270996015925,-34.8270663577812,-34.8270416450362,-34.8269777287396,-34.8267018131095,-34.826617386235,-34.8265281735591,-34.8264866254651,-34.8264365796551,-34.826417863336,-34.8263339934154,-34.8263103345473,-34.8262857752148,-34.8262395146904,-34.8261954286207,-34.8261698354216,-34.8261147937019,-34.8260699105545,-34.825896447762,-34.8258183007929,-34.8257323698094,-34.8257045287844,-34.8256101867965,-34.825600955369,-34.8255572461604,-34.8255066800821,-34.8254402858409,-34.8253581167976,-34.8252554905373,-34.825107073995,-34.8248727398096,-34.8248095405495,-34.8247600083378,-34.8244765021264,-34.8243617095916,-34.8242749448448,-34.8242319093169,-34.8242145937201,-34.8241914751306,-34.8240654568064,-34.8240318661495,-34.8240057927028,-34.8238755855516,-34.8236696059893,-34.8236247428523,-34.8234908871528,-34.8234294888215,-34.823377028433,-34.8233707518626,-34.8233226470538,-34.8232869619834,-34.8232736217702,-34.8232462543228,-34.82321042251,-34.8231328291598,-34.8230780075536,-34.8230130607255,-34.8230060304331,-34.8229182518301,-34.8229032507604,-34.8228823266359,-34.8228590079432,-34.8228296394638,-34.8227948215073,-34.8227719297014,-34.8227430814903,-34.8227269598426,-34.8226603721683,-34.8226312298648,-34.8226124674626,-34.8226107931585,-34.8226083653471,-34.8226051170052,-34.8225783632075,-34.8225658500875,-34.8225572189696,-34.8225353410199,-34.8225080015267,-34.8224806728261,-34.8224566937928,-34.8224478358913,-34.8224411524444,-34.8224346490905,-34.8224397850726,-34.8224245638893,-34.8224046402809,-34.8223738510687,-34.8223321629024,-34.8223030945778,-34.822271638355,-34.8221812717507,-34.8221564122633,-34.8221424050394,-34.8221274506604,-34.8221351879841,-34.8221509627862,-34.8221488150119,-34.8221393634708,-34.8221178457069,-34.822085128834,-34.8219928212286,-34.8218146560109,-34.8217602746317,-34.8217230887873,-34.8216774252374,-34.8216267390973,-34.8215787476802,-34.8215651273226,-34.8214946109554,-34.8214443983929,-34.8214023367006,-34.8213379168109,-34.8211970708397,-34.8211425760687,-34.8210801972317,-34.8210544706305,-34.8210117886183,-34.8209257976038,-34.8208916266477,-34.8208320292451,-34.8207645411064,-34.8207063110757,-34.8206161445745,-34.8205784784825,-34.8205161063156,-34.8203803162852,-34.8202960728387,-34.8202574595915,-34.8201950140534,-34.8199768415363,-34.8199292636658,-34.8198568329781,-34.8197872971167,-34.8197465160849,-34.8197241178668,-34.8196548888303,-34.8196280950121,-34.8195924232819,-34.8194636768841,-34.819329907896,-34.8192981485602,-34.8192631868196,-34.8192180502081,-34.819222672592,-34.8192166561559,-34.8191532367822,-34.8191383557744,-34.8190382441442,-34.8190061209108,-34.8187692587549,-34.818621982801,-34.8185431621511,-34.8185122328668,-34.8184706781026,-34.8184172438785,-34.8183227418081,-34.8181469444782,-34.8180666564049,-34.8178962685315,-34.8177730183016,-34.8177462511637,-34.8176566716319,-34.8176288772977,-34.8176020434588,-34.8175129908654,-34.8174812811786,-34.8174446689634,-34.8173980849388,-34.8173426363426,-34.8172849866111,-34.8172555447606,-34.81721984635,-34.817206019219,-34.8171832741554,-34.8170844165053,-34.8170799275236,-34.817075451882,-34.8170664539082,-34.8170394533167,-34.8170304686831,-34.8170169750574,-34.8169765075206,-34.816967522887,-34.8169495002589,-34.8169053108026,-34.816881058295,-34.8168688986906,-34.8168609946143,-34.8168780300666,-34.8168544445696,-34.8168143505587,-34.8168053659251,-34.8167963879617,-34.8167649984399,-34.8167605227984,-34.8167560338167,-34.816751551505,-34.8167470691934,-34.8167425868817,-34.8167336155883,-34.8167291332767,-34.8167246442949,-34.8167156596613,-34.8167021660357,-34.8166976770539,-34.8166796811063,-34.8166662074909,-34.8165987326924,-34.8165897413887,-34.8165807567551,-34.8165762677734,-34.8165672831398,-34.8165313379352,-34.8165178576498,-34.8165043773643,-34.8164953927307,-34.816486401427,-34.8164819191154,-34.8164729278116,-34.8164594408561,-34.8164504428823,-34.8164414449084,-34.8164324602748,-34.8164234689711,-34.8164099886857,-34.8163605898761,-34.8163426472893,-34.816333682666,-34.8163246980324,-34.8163174009358,-34.8163155266358,-34.8161840321541,-34.8161375681914,-34.8161023833791,-34.8160504299187,-34.8159984097572,-34.8158999323032,-34.8158367597235,-34.8157810643333,-34.8157811977354,-34.8157717928851,-34.815771539421,-34.8156919183584,-34.8156286924179,-34.8155562684003,-34.8154558566153,-34.8153982469045,-34.8153199398529,-34.8153167582121,-34.815307933661,-34.815298862316,-34.8152898376618,-34.8152807729869,-34.815267139289,-34.8152531187249,-34.8152395383878,-34.8152305137336,-34.8152215424402,-34.8152126645283,-34.8151993776759,-34.8151904530733,-34.8151813817283,-34.8151677013396,-34.8151585833039,-34.8151494652681,-34.8151403939231,-34.8151268135861,-34.8151132799398,-34.8150997929842,-34.8150907216392,-34.8150816502942,-34.8150725322585,-34.8150589519214,-34.8150453715844,-34.815036153497,-34.8150225197991,-34.8150088927713,-34.8149607812923,-34.8149330136385,-34.8149318063492,-34.8148843752211,-34.8148060481592,-34.8147421885585,-34.8146804033609,-34.8146124216343,-34.8145588806886,-34.8144538398497,-34.8143776538919,-34.8143776338816,-34.8143491858769,-34.814335678911,-34.8142903355263,-34.8142667100087,-34.8142456191316,-34.814231258392,-34.8142160572191,-34.8141902505766,-34.8141181267138,-34.8141046064077,-34.8140956084339,-34.8140866171302,-34.8140694482758,-34.8140586627134,-34.814046249645,-34.8140005060538,-34.8139438234878,-34.8138831188476,-34.8138262094979,-34.8138026573515,-34.8137576207917,-34.8136970562236,-34.8135838911949,-34.8135564703866,-34.8134563654266,-34.8133877366996,-34.8131918956994,-34.8130138572138,-34.8128674016829,-34.8128010407922,-34.8126878891037,-34.8124615590461,-34.8123447454691,-34.8123176715063,-34.8123225406842,-34.8122779110008,-34.8122644107051,-34.8121943078845,-34.8120871059311,-34.811907973548,-34.8117425882545,-34.8116665356989,-34.8114929728548,-34.811436490392,-34.8113605312179,-34.8112413297427,-34.8111826861653,-34.8110341428911,-34.810687524131,-34.810613072401,-34.8104155238535,-34.8103237698669,-34.81021635447,-34.8100383359947,-34.8099225296037,-34.80970144225,-34.8095799062374,-34.8094896396846,-34.8094366456876,-34.8094399807409,-34.8094260402181,-34.8094063167129,-34.8092862214433,-34.8092135239513,-34.809183848647,-34.8091523190531,-34.8090384003023,-34.8090009543237,-34.8089577720535,-34.8087855165503,-34.8087228375585,-34.808611440108,-34.808519719472,-34.8083597569752,-34.8082368002299,-34.8081354279497,-34.8080397986312,-34.8079656070353,-34.8078699310261,-34.8077253698055,-34.8076432741333,-34.8075828429674,-34.8075167688914,-34.8074645552968,-34.8074236675433,-34.807333934599,-34.8073125635774,-34.8071839305714,-34.8069868556015,-34.8067939961389,-34.8066868608866,-34.8066384959435,-34.8065763839108,-34.8065354694768,-34.8064788469418,-34.8063678430276,-34.8062721936988,-34.8061790123094,-34.8060909202114,-34.8060363120486,-34.8059172639858,-34.805847021093,-34.8056977307669,-34.8056706768145,-34.8055075526871,-34.8054128038227,-34.8053728632244,-34.8053162606997,-34.8052412420106,-34.805187901168,-34.8051726733146,-34.805101183112,-34.8050207416263,-34.8049457229372,-34.8048909880423,-34.804851360939,-34.8048091525043,-34.8047587331684,-34.8046381176306,-34.8045027811674,-34.8044362535241,-34.8043631291453,-34.8042721088705,-34.8042034601333,-34.8041219514305,-34.8040445448433,-34.8039687190713,-34.8039138174238,-34.8038041475309,-34.8037562828458,-34.8036614539401,-34.8035304863968,-34.8034928136347,-34.8034352506146,-34.803403741031,-34.80338615863,-34.8033674423108,-34.8033388809143,-34.8033106196726,-34.8032849797828,-34.8032070195767,-34.8031763437564,-34.8031309536809,-34.8030418010359,-34.8029640742836,-34.8028747348757,-34.8027791455778,-34.8026949288117,-34.8025924159432,-34.8025091996931,-34.8024402107805,-34.8023515650636,-34.8022603913763,-34.8021895348338,-34.8020556124333,-34.8019750175351,-34.8018942758945,-34.8018214716809,-34.8017577054617,-34.8016421792152,-34.8015561882007,-34.8014600252737,-34.8013394030658,-34.8012423997053,-34.8011420012606,-34.8010423832184,-34.8009544512029,-34.8008507844059,-34.8007605178532,-34.8007065433505,-34.8006577115,-34.8005432924911,-34.8004468961104,-34.8003464643152,-34.8002338062145,-34.8001706069544,-34.800090125448,-34.7999908609214,-34.7999465113825,-34.7998894019297,-34.7998198327178,-34.7997260710291,-34.7996643458626,-34.7995638873869,-34.7994152307208,-34.799370941213,-34.7992797141648,-34.7991535824488,-34.799060307678,-34.7989145258278,-34.7988151012187,-34.7987182245903,-34.7986267440781,-34.7985619039717,-34.7984780340512,-34.7983928301094,-34.7983218201544,-34.7982539518196,-34.7981576354802,-34.7980565300041,-34.7979639822749,-34.7978985618693,-34.7977881049038,-34.7976899809654,-34.7975822053828,-34.7974910517058,-34.7974050740316,-34.7972863061133,-34.7972088061446,-34.7971696192682,-34.7970011990763,-34.7968979925167,-34.7968398091767,-34.7966913259335,-34.7966332893359,-34.796530502993,-34.7964209931826,-34.7962949948687,-34.7961545824545,-34.7960727936072,-34.7959787851246,-34.7958864575089,-34.7957758738114,-34.7957218392777,-34.7956406707504,-34.795577017923,-34.7954756323025,-34.7953529423615,-34.7952365756815,-34.7951477298615,-34.7950984311035,-34.79506692819,-34.7949898684483,-34.7949323187685,-34.7948646838874,-34.7947860233202,-34.7947176747377,-34.7946687428356,-34.7946182301182,-34.7945790966028,-34.794540883562,-34.7945051051101,-34.7944437334592,-34.7943892787088,-34.7943330897307,-34.7943011332499,-34.7942907679043,-34.7942672691187,-34.7942459181074,-34.7942187641034,-34.7941530368728,-34.7940780048436,-34.7940334552015,-34.7939115590032,-34.7938302704139,-34.7937491485773,-34.793649964092,-34.7935367990632,-34.793393445132,-34.7933339411109,-34.7932423071863,-34.7931656876716,-34.7931131472418,-34.7930106343733,-34.7929361426227,-34.7928734302803,-34.7928392259736,-34.7928022602428,-34.7927595982409,-34.792705236872,-34.7926418908695,-34.7925785448671,-34.7925106631921,-34.7924338102237,-34.7923479059206,-34.7922800242456,-34.7921761306651,-34.7920858374319,-34.7920000198402,-34.7918870349043,-34.7917921926584,-34.791710830698,-34.7916339977399,-34.7915571514417,-34.7914712404685,-34.7913989365128,-34.7913131789521,-34.7912004207999,-34.7911514755576,-34.7910832270267,-34.7909885915541,-34.7909456494078,-34.7908938093392,-34.7907944647713,-34.7907175851225,-34.790694719997,-34.7906808861959,-34.7906489630657,-34.7906170932963,-34.7905897058385,-34.790553320407,-34.7904989590381,-34.7904176571086,-34.7903273705455,-34.7902326083409,-34.7901423084376,-34.7900523553798,-34.7899620421363,-34.7898765180294,-34.7898000852777,-34.7897146278718,-34.7896287702595,-34.7895518706004,-34.7894660463386,-34.7893802487573,-34.789276501919,-34.789186342088,-34.7890962089373,-34.7890498316861,-34.7889207050922,-34.7888125960042,-34.7886999579139,-34.7886258330191,-34.7884914770616,-34.7883661057378,-34.7883218229,-34.7882770598145,-34.7882278144174,-34.78817854901,-34.7881136488726,-34.7880573264924,-34.7880132170774,-34.7879673801047,-34.7879045076798,-34.7878581304286,-34.7878099922692,-34.7877244681622,-34.7876788046123,-34.7876209280973,-34.7875662665735,-34.787508296677,-34.7874516608018,-34.7874045431687,-34.7873232479093,-34.787228445684,-34.7871381924715,-34.7870834242261,-34.7870344389631,-34.7869397634699,-34.7868964878182,-34.7868494568965,-34.7868100165561,-34.7867610513035,-34.7867320763603,-34.7866283161819,-34.7865493087691,-34.7864883506647,-34.7864296670668,-34.7863529475005,-34.7862627142983,-34.7861589808003,-34.7859560294664,-34.7858695115136,-34.7857531181532,-34.7856629583221,-34.785577420875,-34.785505537136,-34.7854360079447,-34.785312084034,-34.7852131129921,-34.7851051439764,-34.7850392166426,-34.7849746633508,-34.7848846102415,-34.7848030681881,-34.7847043906309,-34.7846284181166,-34.7844792745328,-34.7843891880729,-34.7842539850119,-34.7841233176234,-34.7839566983602,-34.7838730485532,-34.783726633043,-34.7836227327923,-34.7834964543339,-34.7833459100277,-34.7832303837812,-34.7831040452919,-34.7828605997408,-34.7827208476671,-34.7825179830446,-34.7823781175791,-34.7822607837337,-34.7821028756298,-34.7819629834838,-34.7818005263672,-34.7816786901998,-34.7815523517105,-34.7814430886941,-34.7812815920728,-34.7811984025032,-34.7810937351902,-34.7810402742857,-34.7809891612587,-34.7808726144859,-34.7807307279781,-34.7806236194061,-34.7805212199294,-34.780376665379,-34.780306909404,-34.7801636621944,-34.7800257644103,-34.7798985254567,-34.7797448995612,-34.7797354880407,-34.7797307322547,-34.7796980620725,-34.7796024527644,-34.7795628723517,-34.779474233305,-34.7794249545573,-34.7793666311451,-34.7792902117337,-34.7791957830344,-34.7790788160448,-34.7789483354193,-34.7788087834488,-34.7786782294521,-34.7785746360263,-34.778452993292,-34.7783628267909,-34.7782545309399,-34.7781507574213,-34.777988573779,-34.7778264101471,-34.7777182677086,-34.777653919045,-34.777623632236,-34.7775065185041,-34.7773578618381,-34.7772000271053,-34.7770331610482,-34.7768887532401,-34.7766904309602,-34.7766002511188,-34.776530061587,-34.7763660436654,-34.7762761306283,-34.7762363301021,-34.7762044403224,-34.776132903429,-34.7760926960264,-34.7760279359613,-34.7759762226247,-34.7759278376714,-34.77585642751,-34.7757663277099,-34.7757025281401,-34.775600975767,-34.7755181663934,-34.7754063487262,-34.7752882878391,-34.7751879761058,-34.7750844493811,-34.7749725049818,-34.7748933374865,-34.7748149704039,-34.7747825336755,-34.7747297531218,-34.7746757852892,-34.7746417210548,-34.7746182489496,-34.774568970202,-34.7744928642855,-34.7744571458647,-34.7744488749324,-34.7744079871789,-34.7743164332956,-34.7742323032409,-34.7742052426183,-34.7741397288312,-34.7740474145557,-34.7739661259665,-34.7738855310683,-34.7737679104083,-34.773678050732,-34.7735822279804,-34.773429295776,-34.7733206730899,-34.7732178200459,-34.7730610125096,-34.7730279954819,-34.7729836392729,-34.7728501504293,-34.7726729123564,-34.7725828925976,-34.7724879236197,-34.7724139187868,-34.772313827167,-34.7721724475873,-34.7721543782685,-34.7721582936211,-34.7721336809277,-34.7721109625445,-34.7721024714988,-34.7720899183582,-34.7720016861879,-34.771929989212,-34.7718377149571,-34.7717821796494,-34.7717086950849,-34.7715430229769,-34.7714267363382,-34.7712919268135,-34.7711998126412,-34.7711056774266,-34.7710570390092,-34.7709977350913,-34.7709404121951,-34.7708954156559,-34.7708791005751,-34.7708604642973,-34.770823411855,-34.770786372753,-34.7707534290965,-34.7707143356016,-34.7706692923717,-34.7706209207585,-34.7705663125957,-34.7705146793004,-34.7704486519151,-34.7704061566658,-34.7703590457029,-34.7702465210043,-34.7702091550671,-34.7701291404682,-34.7700425224637,-34.7699702852091,-34.7698740088903,-34.769788778268,-34.7697285205249,-34.7696899406283,-34.769615408857,-34.7695619679628,-34.7694875028926,-34.7693857704266,-34.7693087040148,-34.7692271286109,-34.7691638026188,-34.7691294382295,-34.7690553733657,-34.7688838315639,-34.7687979072505,-34.7687343144541,-34.7686618370756,-34.7685532343998,-34.7684266224361,-34.7683089884359,-34.7682178080785,-34.76803708821,-34.7678871575536,-34.7677488729033,-34.7675898842421,-34.7674735175622,-34.7673790421721,-34.7672775231495,-34.7671573144882,-34.7670330637422,-34.7669337458548,-34.7668184597321,-34.7666667014665,-34.7665834318556,-34.7665306446318,-34.7664799384814,-34.766453764983,-34.7664722678588,-34.7664275114434,-34.7664243631531,-34.7664553658086,-34.7664392374908,-34.7664048464211,-34.7663473767826,-34.7662250737078,-34.766091137967,-34.7660400182699,-34.7659917800589,-34.7658654749201,-34.7656265650415,-34.7654463654413,-34.7652076423257,-34.7651947823601,-34.7651989845273,-34.7651411280226,-34.7649966801938,-34.7649937186665,-34.7649482819002,-34.764919800545,-34.7648574350482,-34.7647272212269,-34.7646416037384,-34.7645390441792,-34.7643754931651,-34.7642474404584,-34.7641583411743,-34.7640554614499,-34.7638970997787,-34.7637777315508,-34.7636981705191,-34.7636202503337,-34.763491197111,-34.7634044990652,-34.7633292869431,-34.7633073156119,-34.7633071021685,-34.7632123066133,-34.7631990464414,-34.7632001803595,-34.7631948709547,-34.7631355870471,-34.7631018229674,-34.7631198989564,-34.7631508749314,-34.7632312363759,-34.7632743652853,-34.7633397590105,-34.7634196402073,-34.7635311910702,-34.7636139270726,-34.7636874983486,-34.7638077870512,-34.7638938314265,-34.7639212188842,-34.7640339837066,-34.764111023438,-34.7641607290724,-34.7642241617863,-34.7642626483014,-34.7642773091957,-34.7642891152845,-34.7642887150781,-34.7642852199422,-34.7642805375274,-34.7642648494366,-34.7642566318653,-34.7642667304067,-34.7642637955597,-34.7642499350782,-34.7642379288863,-34.7642070462927,-34.7641859954363,-34.7641848348377,-34.7641568470704,-34.7641111168194,-34.7640843430115,-34.7640643727123,-34.7640428416082,-34.764022871309,-34.7639929892313,-34.7639473123413,-34.763948046053,-34.7638221811412,-34.7637773847053,-34.7637146056618,-34.763642795294,-34.7635799228691,-34.7634944788034,-34.7634090347378,-34.7633191083604,-34.7632471912709,-34.7632024215154,-34.7631712054164,-34.763148967281,-34.7631177378418,-34.7630774637381,-34.7630372029746,-34.7629969688915,-34.7629612304603,-34.7629344833328,-34.7629077362053,-34.7629036140794,-34.7629129255482,-34.7629042410694,-34.7628865386064,-34.7628823764599,-34.7628692496901,-34.7628560695595,-34.7628428760886,-34.762852227578,-34.7628613389437,-34.762870557031,-34.7629204494285,-34.7629882710725,-34.7630651107007,-34.7631419236484,-34.763223232248,-34.7633090498396,-34.7633714019962,-34.7633918658833,-34.7634069269841,-34.7633885975311,-34.7633234039091,-34.7632289151788,-34.763180250081,-34.7631214597613,-34.7631123217152,-34.7630946859534,-34.7630905238068,-34.763091284199,-34.763059627873,-34.7630284251143,-34.7630017313476,-34.7629876440825,-34.762979920099,-34.7629802802848,-34.7629670601335,-34.7629358573747,-34.7629000789229,-34.7628823631197,-34.7628511470208,-34.7627792299313,-34.7627027905095,-34.7626128641322,-34.7625183754019,-34.7624148820277,-34.7623429515981,-34.7622845881652,-34.7622217290805,-34.7621407673264,-34.7620102867009,-34.7619201869008,-34.76183442267,-34.7617441094265,-34.7616583451957,-34.761563576321,-34.7615311996235,-34.7614957279965,-34.7614773585229,-34.7614229838138,-34.7613506398375,-34.7612514820326,-34.7611614355934,-34.7610759381668,-34.7609859450884,-34.7609004610021,-34.7608150436168,-34.7607340818628,-34.7606441021246,-34.7605540556853,-34.7604504689297,-34.7603484563192,-34.7602400537465,-34.7601436040049,-34.760058520125,-34.7599508779445,-34.7598579633594,-34.7597676634561,-34.759666304516,-34.759508516474,-34.7594451504612,-34.7593734868358,-34.7592818395709,-34.7591516524301,-34.759108350098,-34.7590954767922,-34.7590566834522,-34.7588930390566,-34.7588332082003,-34.7587493783004,-34.7586731256416,-34.758565229997,-34.758491085092,-34.758408255708,-34.7583163016183,-34.7582235871364,-34.7581877286433,-34.7581534442953,-34.7581058997754,-34.7580364773058,-34.7579550619844,-34.7578947909011,-34.7578463792673,-34.7577049063061,-34.7576485172248,-34.7575447703866,-34.7574581390419,-34.7573510838308,-34.7572515791804,-34.7571996057097,-34.7571272217127,-34.7570855869073,-34.756992912446,-34.7569049604202,-34.756791768711,-34.756683966448,-34.7565846352203,-34.756485450735,-34.7563983658231,-34.7563186580491,-34.7562618287408,-34.7562165920777,-34.7561969686241,-34.7561774518921,-34.7561313747957,-34.7560925547752,-34.7560210378921,-34.7559520689897,-34.7558855280062,-34.7558259639541,-34.7557878109443,-34.7557778991659,-34.7557904656467,-34.7557950413399,-34.7557996036928,-34.7558222687151,-34.7558585007342,-34.7559037507374,-34.755953523073,-34.7559988664577,-34.7560040958213,-34.755958592354,-34.7558866619243,-34.7558102225025,-34.7557428010649,-34.7557023535384,-34.7556529147082,-34.7556439367447,-34.7556260208384,-34.7556126005839,-34.7555946579971,-34.755558866205,-34.7555320923971,-34.755527650106,-34.7555231811346,-34.7555142298516,-34.7555007829166,-34.7554918182933,-34.7554873493219,-34.755460642215,-34.755433548242,-34.7553932341176,-34.7553754649536,-34.7553440354113,-34.7553305351155,-34.7553170348197,-34.7552777212113,-34.7552359930244,-34.7552179570561,-34.7552044167397,-34.7551863674312,-34.7551683448031,-34.7551412908507,-34.7551187592306,-34.7551007366025,-34.7550827139745,-34.7550601956945,-34.7550421730665,-34.7550196547866,-34.7550061411505,-34.754992654195,-34.7549791538992,-34.7549656669436,-34.7549521666479,-34.7549341440198,-34.7549070900674,-34.754885919149,-34.7548146824104,-34.7547776499785,-34.7547519967484,-34.7547148976155,-34.7546493971686,-34.7545981173889,-34.7546007053903,-34.7545947689954,-34.7545546949949,-34.7545091381667,-34.7544749205198,-34.7543836868016,-34.7542156668161,-34.7541729914739,-34.7541247666031,-34.7540453256334,-34.7539715809347,-34.7539120569033,-34.7538354440588,-34.7538071361263,-34.7537616193188,-34.7536812178537,-34.7536338867772,-34.7534923471149,-34.7534230580474,-34.7533955105071,-34.7533785817765,-34.7533829973871,-34.7533717782678,-34.7532545311338,-34.7531548664008,-34.7530841499305,-34.7530445028168,-34.752979322535,-34.7528765628725,-34.7527207091615,-34.7526577166747,-34.7526053830181,-34.7525276495957,-34.7524563594962,-34.7524126569577,-34.7523536531947,-34.7523085365935,-34.7522477719223,-34.7521947178943,-34.7520715210252,-34.7519433215761,-34.7517634288008,-34.7516748631252,-34.7516124175871,-34.7515798407864,-34.7515401936728,-34.7514935296069,-34.7514653550766,-34.7514450779525,-34.7513565122769,-34.7513398236702,-34.7513159580287,-34.7512786454523,-34.7511416147821,-34.751126033413,-34.7510962847376,-34.7510367073453,-34.7510112141979,-34.7509886158767,-34.7509745419517,-34.7509732212706,-34.7510061048962,-34.7511036618755,-34.7510786356355,-34.7510744868292,-34.751085425804,-34.7510858793712,-34.7512098099521,-34.751167321373,-34.7511200703377,-34.7510881205271,-34.7510691240634,-34.7509904968467,-34.7508927397642,-34.7507931150518,-34.7507342847115,-34.750673373298,-34.7506139426481,-34.7505505366146,-34.7504954281938,-34.750429434159,-34.7503395211219,-34.7502088270529,-34.7500964624369,-34.7499838176765,-34.7499267349041,-34.7499140750418,-34.7498629553447,-34.7497589150218,-34.7497189210626,-34.7496466037667,-34.7495476327248,-34.749557456377,-34.749243956111,-34.7490955062182,-34.7489489773162,-34.7488165623597,-34.7487005158449,-34.7485711157767,-34.7484221189352,-34.748255246208,-34.7480884668623,-34.7479532371208,-34.747804467063,-34.7476917556015,-34.747518172747,-34.7474968817667,-34.7474621705319,-34.7473948596338,-34.7472614003229,-34.7470693679536,-34.7469748925635,-34.7468711990861,-34.746758634367,-34.7466596233044,-34.7465380672816,-34.7464163778565,-34.7463172467321,-34.746218329051,-34.7460819120306,-34.7459444144529,-34.7458301421865,-34.7457853324103,-34.7457573579831,-34.7456525439278,-34.7456321200614,-34.7454755993396,-34.7453614071145,-34.7453383418858,-34.7452395576069,-34.7451358641295,-34.7450687094961,-34.745047551918,-34.7449868139271,-34.7449571186125,-34.7448003577669,-34.7447718497313,-34.7447396597968,-34.7446816965703,-34.7446068179535,-34.7445418244347,-34.744434729203,-34.7443778065131,-34.7443098648072,-34.7442785019659,-34.744269703919,-34.7441307724447,-34.7440560405702,-34.7439226117575,-34.7437875687791,-34.7436912791201,-34.7436203625466,-34.7435380934516,-34.743445832537,-34.7433858682785,-34.7433423124824,-34.7432941943333,-34.7432642588948,-34.7432284804429,-34.7431973710657,-34.7430804174164,-34.7429371168459,-34.742809864552,-34.7426799575557,-34.7426118957878,-34.7425454882064,-34.7424211707593,-34.7423112474024,-34.7422123564018,-34.7421224300244,-34.7420369592783,-34.7419199522681,-34.7418164722342,-34.7417512385915,-34.7417003456781,-34.7416455174017,-34.7415465997207,-34.7414840207805,-34.7414068876676,-34.7413387725389,-34.7412897205749,-34.741217216516,-34.7411019170531,-34.7410147520999,-34.7409255727745,-34.7407667041753,-34.7406675730508,-34.74055052602,-34.7404513548749,-34.7403507429868,-34.7402644051268,-34.7401359922343,-34.7400720125717,-34.7400236142781,-34.739919934141,-34.739811825053,-34.7397171895804,-34.7396226074687,-34.7395468750782,-34.7394199029287,-34.7393029092588,-34.7392130629227,-34.7391367435629,-34.7391003648014,-34.7390648931745,-34.7389298768764,-34.7388444728314,-34.7387455151297,-34.738599880022,-34.738550267769,-34.7384384901224,-34.7383676535902,-34.738267161764,-34.7382091184962,-34.7380659646681,-34.7376384775354,-34.7368431740437,-34.7366834249904,-34.7365736750562,-34.7364557208909,-34.7361374901045,-34.7359678025923,-34.7356230381218,-34.7355260177865,-34.7354672166681,-34.7352326507393,-34.7346852215699,-34.7341985896048,-34.7338039745907,-34.7333175947422,-34.7331208550185,-34.732762843046,-34.7323167699979,-34.7321318390609,-34.7312953801427,-34.7309745028727,-34.730677072543,-34.7305692932908,-34.7300026137762,-34.7286320795572,-34.7239144943238,-34.7212441301351,-34.7194003274622,-34.7200842428731,-34.7200657235761,-34.7218066007347,-34.7217126069022,-34.7215363074929,-34.7212801119062,-34.721091081529,-34.7210308408199,-34.7209471410172,-34.7207680105498,-34.7206945192754,-34.7203542978013,-34.7202941499732,-34.7204083612048,-34.7203931887431,-34.7201944744051,-34.7200329965033,-34.7200110694553,-34.719811172715,-34.7194328871173,-34.7190480927228,-34.7186259785485,-34.7176516180847,-34.7167357278855,-34.7164435161594,-34.7156471266792,-34.7154961128242,-34.7141893943342,-34.7141400680646,-34.7140560279339,-34.7140732154893,-34.7141800629501,-34.7142235306184,-34.7142445181451,-34.7141721100033,-34.7141467465336,-34.7140741373103,-34.7140954199424,-34.7142673857193,-34.7144869948529,-34.7147526533153,-34.7152047031454,-34.7155975695556,-34.7158290131408,-34.7162003004604,-34.7162095415712,-34.7162887038245,-34.7162258221587,-34.7161573772179,-34.7163782353267,-34.7163805281941,-34.7162605912497,-34.7162933944408,-34.7164042769083,-34.7161577441634,-34.7161450035881,-34.716294679328,-34.7162343863408,-34.7160008427664,-34.7160255363231,-34.7161264397792,-34.716203980319,-34.7162245400298,-34.7162732311215,-34.7162827966225,-34.7163565448477,-34.7165196671787,-34.7165601616339,-34.7165458031849,-34.7166600557497,-34.7168785361696,-34.7171541028328,-34.7174186106613,-34.7176262582657,-34.7177135812638,-34.7175996491621,-34.7177019554876,-34.717916332635,-34.7182115556802,-34.7184080692127,-34.7184873015173,-34.7186837722045,-34.7188909508766,-34.7189937657829,-34.7198233279642,-34.7200438230958,-34.7203239476503,-34.7206576327095,-34.7209985961901,-34.7210982263719,-34.7217725442616,-34.7219920858533,-34.7220830991487,-34.7222683471406,-34.7225117242136,-34.7226847020457,-34.7230527813278,-34.7232604551509,-34.7235029258813,-34.7237228701395,-34.7241513946535,-34.7246034527476,-34.7248575896262,-34.7251117264737,-34.7252148079014,-34.7256534874474,-34.7259764120169,-34.7261367152689,-34.7264462592519,-34.7268963014997,-34.7270727387565,-34.7272581182786,-34.7274327743157,-34.7276477499647,-34.7279233538257,-34.7281788597183,-34.7285389916731,-34.7289234730491,-34.7293524007991,-34.7300128378995,-34.7302824689757,-34.7307955753622,-34.7309592018398,-34.7311462604614,-34.7315403893662,-34.7320999526886,-34.7321941460142,-34.7324965049931,-34.7329030910107,-34.7329733173492,-34.7331965431084,-34.7333379051284,-34.7335251072438,-34.7341074979767,-34.73443072665,-34.7346500675149,-34.7351129847225,-34.7355157360898,-34.7361461529124,-34.7365062926899,-34.7368652197671,-34.737123354535,-34.7373075970195,-34.7374569422172,-34.7374780627185,-34.7375803414209,-34.7376790891811,-34.7377204828798,-34.7377344160497,-34.7380407442459,-34.7380957538376,-34.7382888419176,-34.738422992638,-34.7384099154677,-34.7382860330831,-34.7381351951149,-34.7381119185452,-34.7382037209703,-34.7385735084691,-34.7386612029912,-34.7387210994652,-34.7388321791593,-34.7388727940681,-34.7389106481824,-34.7389992858579,-34.7390896036865,-34.7391281855086,-34.739185955175,-34.7392682389858,-34.7394218634272,-34.7394870298981,-34.7395823023177,-34.7397240049577,-34.7398309367474,-34.7398831551731,-34.7398967088298,-34.7399870487537,-34.7400675016216,-34.7401533043308,-34.7402171458281,-34.7402641081059,-34.7403058871139,-34.740372777688,-34.7404323877556,-34.7404749270317,-34.7405110656693,-34.7405788206123,-34.7406299178503,-34.7406739044749,-34.740726280019,-34.7408511620736,-34.7409109377807,-34.7409822712815,-34.7410810069855,-34.7411690445712,-34.741215128325,-34.7413148895525,-34.7413866772446,-34.7414892360042,-34.7416032689465,-34.7416528811994,-34.7417024934524,-34.7417656060012,-34.7418436472528,-34.7419277696331,-34.7419502745728,-34.7421244940699,-34.7422800677924,-34.742325254959,-34.7423830439195,-34.7424386619032,-34.7425069277654,-34.7425984659174,-34.7427978316797,-34.7428744445242,-34.7429132687426,-34.7429691540532,-34.7430334559215,-34.7431028118624,-34.743149043007,-34.7432131973648,-34.743232183022,-34.7432903499425,-34.743366135841,-34.7434397415387,-34.7434671160943,-34.7435187424166,-34.7435567874835,-34.7436106400985,-34.7436634026127,-34.7437604004529,-34.7438067237866,-34.7438392538239,-34.7438895042454,-34.7439179043622,-34.7439484662403,-34.7439769585524,-34.7440339062975,-34.7440623801696,-34.7441118816043,-34.7441433952893,-34.74419077184,-34.7442820907433,-34.744290465101,-34.7443767392515,-34.74469052185,-34.7447610269033,-34.7448885493475,-34.745154754938,-34.7452925275968,-34.7454540379093,-34.7456735773482,-34.7458043094213,-34.7458004927208,-34.7457406418174,-34.7460058351813,-34.7464239743754,-34.7467343513166,-34.7470133819858,-34.7472389295905,-34.7475689460594,-34.7478821239783,-34.7480800535207,-34.7482591552162,-34.7485682945948,-34.7488126698817,-34.7490332617347,-34.7491603504596,-34.749040083086,-34.7486792601358,-34.7486727954748,-34.7487801152322,-34.7487183575267,-34.7485028653312,-34.7483713831244,-34.7483198223758,-34.7484212785446,-34.7485108624091,-34.7485412760219,-34.7485651418055,-34.7485839404196,-34.7485982332955,-34.7486130875872,-34.7486321695453,-34.7486578471325,-34.7486829523419,-34.7494109831157,-34.7497949986306,-34.7498338346345,-34.7498643325035,-34.7498691214972,-34.7498955728704,-34.7499521108472,-34.7500337154998,-34.7501630607368,-34.7504464958633,-34.7503959389273,-34.7503993897363,-34.7505149917549,-34.7508489591818,-34.7511483232389,-34.7512607654264,-34.7512556071256,-34.7512531780988,-34.7513629070737,-34.751511307853,-34.7514429466846,-34.7514039222786,-34.7512490701687,-34.750982197708,-34.7501018975186,-34.7498438595953,-34.7496999279448,-34.7499376305239,-34.750048465115,-34.7502123178427,-34.7505768891792,-34.750688854777,-34.7506873355439,-34.7511344553298,-34.7513531852646,-34.7518355161349,-34.7520017675173,-34.752252048879,-34.7527456314541,-34.7527512866474,-34.7527186706196,-34.7529804250865,-34.7531772420421,-34.7534323470111,-34.7534877152354,-34.7536185317818,-34.7537429083652,-34.7538999232753,-34.7541267344452,-34.7548230334457,-34.7554198588752,-34.7559895631274,-34.7561658063318,-34.7567706512976,-34.7569597496267,-34.7569436874461,-34.7563001596958,-34.7561822964145,-34.7562687517444,-34.7565207606586,-34.7569531321747,-34.7573973292689,-34.7578451238304,-34.7579135100278,-34.7580755948723,-34.7583430550646,-34.7585038219046,-34.7588048311551,-34.7589997722094,-34.7593678786187,-34.7595276012653,-34.7598490278369,-34.7602200550047,-34.760442090327,-34.760831517708,-34.76112506569,-34.7615088049148,-34.7618710810467,-34.7618975463101,-34.7620778592795,-34.7623331658556,-34.7624942467278,-34.7625716637389,-34.76269898558,-34.7629639447789,-34.7631361734897,-34.7633318450052,-34.7639565764822]}]],[[{&#34;lng&#34;:[-56.2130865181325,-56.2131013324393,-56.2126580171436,-56.2122188306438,-56.2117366603096,-56.211716039675,-56.2111917342773,-56.2105911278625,-56.2103845211583,-56.2101162524611,-56.2093762277085,-56.2087921517512,-56.2087658000257,-56.2087051670365,-56.208654570501,-56.2083752136867,-56.2072071992613,-56.2070257257601,-56.20590675201,-56.2058782573146,-56.2052849996898,-56.2048671975519,-56.2038690261027,-56.2033329529694,-56.2013809696149,-56.2012471900888,-56.201203405441,-56.201165599357,-56.2010825912929,-56.2010423180061,-56.2010238929024,-56.2010338130991,-56.2001507730982,-56.1992967379625,-56.1992550542861,-56.1975341197172,-56.1974593363354,-56.1973277419817,-56.1972645400889,-56.1971411572018,-56.1970194667932,-56.1969578468307,-56.1961993738019,-56.1969518487373,-56.1977838961788,-56.198544261652,-56.1986635089843,-56.1985388407362,-56.1974725973007,-56.1969580794506,-56.1964070744499,-56.1960043092336,-56.195431789804,-56.195055574947,-56.1944384785338,-56.1944329305592,-56.1943986914646,-56.1943176619054,-56.1942623789389,-56.1941498227479,-56.1940172183777,-56.193839375415,-56.1946911711814,-56.1948909717236,-56.1949959166797,-56.195065178233,-56.1952372753212,-56.1954281220791,-56.1955882888479,-56.1958284710493,-56.1961826924267,-56.1966586449823,-56.1970940393578,-56.1974643891276,-56.1976393170502,-56.1981194313609,-56.1988210938305,-56.1990608084479,-56.1991644694848,-56.1992559482763,-56.1994389299433,-56.1996093743978,-56.1997290463737,-56.2000275332798,-56.2000889811927,-56.2001127822449,-56.2001544028764,-56.2003267184106,-56.2005229396069,-56.2006708283769,-56.2008235184431,-56.2010456910213,-56.2014849515744,-56.2018108446458,-56.2021283917463,-56.2023864131479,-56.202498942849,-56.2026055720265,-56.2027036000626,-56.2026986758564,-56.2026580565747,-56.2025870788383,-56.2028584020419,-56.2029436203061,-56.202970595973,-56.2030662113669,-56.2030914219146,-56.2032565536871,-56.2037684625728,-56.2040296089193,-56.2059131553124,-56.2059830280142,-56.2076265920587,-56.2082945203184,-56.2084583003915,-56.2085101889277,-56.2095432243409,-56.2097417814996,-56.210519647665,-56.2109678704917,-56.2117665920006,-56.2126917945634,-56.212742343856,-56.2128908382648,-56.2129331603158,-56.2130865181325],&#34;lat&#34;:[-34.8476687062727,-34.8474658483203,-34.8468181876385,-34.8461750226085,-34.845468885102,-34.8454419045207,-34.844708853134,-34.8438723650691,-34.8436356707288,-34.8432819958951,-34.8426850876278,-34.8422237081479,-34.8421786095064,-34.8421470983588,-34.8420801833707,-34.8418700163823,-34.8409708510138,-34.8408137976876,-34.8399427751457,-34.8399113089178,-34.8402691201168,-34.8405137362716,-34.8410980843015,-34.8414106488324,-34.8425791848096,-34.8426717875661,-34.8420048500811,-34.8414289720048,-34.8400377680957,-34.8391135645409,-34.838872301193,-34.8387901824504,-34.8393220318052,-34.8398501032509,-34.8398745490879,-34.8408769959187,-34.840918793558,-34.8410003927469,-34.8410380375872,-34.8411132621291,-34.8411844385693,-34.8412309728355,-34.8416919716781,-34.8423892802042,-34.8432116443185,-34.8439666036703,-34.8440473819964,-34.8441356604288,-34.8448035052819,-34.8451340057294,-34.8454826355267,-34.8457406986165,-34.8460938941018,-34.846329342195,-34.8467421614383,-34.846870135773,-34.8469783265653,-34.847095326634,-34.847141232769,-34.8472235552786,-34.8472951725082,-34.8473639708536,-34.8485478163189,-34.8489303335928,-34.8492635454387,-34.8497230557533,-34.8503400139344,-34.8507045285906,-34.850924905578,-34.8511585760878,-34.8514350384506,-34.8516413062157,-34.8517445192648,-34.8518203816481,-34.8518435612277,-34.8519274875291,-34.8521254458164,-34.8522028899613,-34.8522280452513,-34.8522849346858,-34.8523962662433,-34.8525760384288,-34.8527872907279,-34.8534667164549,-34.8536326136348,-34.8536859328437,-34.8537825760184,-34.8542012202573,-34.8544575424492,-34.854557010414,-34.8546582576812,-34.8547708232915,-34.8548738704936,-34.8550081230644,-34.8551874688909,-34.8554300856813,-34.8556018676069,-34.8557980478871,-34.8562358962584,-34.8564772007053,-34.856664437268,-34.8568890495076,-34.856840795657,-34.8565978633361,-34.8565209632866,-34.8563872875577,-34.8563628381827,-34.8562026916778,-34.8559352978988,-34.8557948104459,-34.8546985467413,-34.8546577757146,-34.8537011571622,-34.8533099972711,-34.8532168350975,-34.8531873195184,-34.8526153117714,-34.8525463084436,-34.8521158097577,-34.851873451434,-34.851446188104,-34.8509509690196,-34.8505185467726,-34.8492836190027,-34.8489417086267,-34.8476687062727]}]],[[{&#34;lng&#34;:[-56.1944384785338,-56.195055574947,-56.195431789804,-56.1960043092336,-56.1964070744499,-56.1969580794506,-56.1974725973007,-56.1985388407362,-56.1986635089843,-56.198544261652,-56.1977838961788,-56.1969518487373,-56.1961993738019,-56.1969578468307,-56.1970194667932,-56.1971411572018,-56.1972645400889,-56.1973277419817,-56.1974593363354,-56.1975341197172,-56.1992550542861,-56.1992967379625,-56.2001507730982,-56.2010338130991,-56.2009909268572,-56.2010420266923,-56.2010112098063,-56.2009981970521,-56.200977337906,-56.2009396712669,-56.2009367233813,-56.2008696463817,-56.201064247123,-56.202457306376,-56.2036349670591,-56.2054238796471,-56.2066670885218,-56.2067894094922,-56.2075381216825,-56.2084271468422,-56.2092882275902,-56.2101374188131,-56.2102005597699,-56.2107371948597,-56.2111311013407,-56.2116673995901,-56.2120671174014,-56.2123689780787,-56.2126461810394,-56.2136216504233,-56.2140510910004,-56.2141907428371,-56.2144699582746,-56.2148243243636,-56.215114650759,-56.2156560933282,-56.2159443653307,-56.2163965218528,-56.2166166320359,-56.2168578797869,-56.2169476994425,-56.2173454764758,-56.2176033208966,-56.2179471795718,-56.2179525276581,-56.2178930436474,-56.217869311408,-56.21785004147,-56.2178043212243,-56.2177576004625,-56.2177094923186,-56.2176600168028,-56.2176091939255,-56.2175573505218,-56.2175041364113,-56.2174495582639,-56.2173939562552,-56.217337006885,-56.217279013643,-56.2172196730396,-56.2171593085747,-56.217097576738,-56.2170351812257,-56.2169714016663,-56.2169066182559,-56.216840807649,-56.2167739731807,-56.2167061348615,-56.2166372693457,-56.2165673599584,-56.2164964667302,-56.2164259170126,-56.2163550237845,-56.2163009092096,-56.2162464744695,-56.2161913360332,-56.2161355339213,-56.2160848677915,-56.2160790514585,-56.2160218819747,-56.2159643723155,-56.2159062023158,-56.2158476654602,-56.2157888117745,-56.2157289308924,-56.2156690500103,-56.2156085087876,-56.2155667739305,-56.2155476040441,-56.2154863758005,-56.215424467206,-56.2153625586115,-56.215299966331,-56.2152370505504,-56.2151747801026,-56.2151245458622,-56.2151108821488,-56.2150469425068,-56.2149830045324,-56.2149190849007,-56.2148544632403,-56.2147898615903,-56.2147355285694,-56.2147989061534,-56.2148276334851,-56.216512281553,-56.218865088289,-56.2189575245888,-56.2189823621034,-56.2190984019481,-56.2191171682931,-56.219307763564,-56.2192968761959,-56.2193472440348,-56.2200334826945,-56.2201454441548,-56.2201678601618,-56.2202788107151,-56.2203900900667,-56.220469809218,-56.2205046438497,-56.220524010001,-56.2205284626774,-56.2205468731556,-56.2206444993101,-56.220788957144,-56.2206701558697,-56.2206528457481,-56.2200550152981,-56.2200165221129,-56.2198474648602,-56.2186995862687,-56.2167700178075,-56.2159720629485,-56.2146255168335,-56.2138050203491,-56.2129963549664,-56.2124763601251,-56.2119707993945,-56.2117732515364,-56.2116148209194,-56.2106901388868,-56.2106253478518,-56.2105507489668,-56.2105413095197,-56.2101270999462,-56.2101051522325,-56.2096663992897,-56.2095600961331,-56.2092162754827,-56.2086262661998,-56.2072636084423,-56.2047329978223,-56.2043222477078,-56.2037749409139,-56.2031545251758,-56.1962468368113,-56.1958662399487,-56.1940661434219,-56.1928418170054,-56.1924235229471,-56.1939339073077,-56.20090782727,-56.1999961162439,-56.1997170865078,-56.1980926220633,-56.1946290308006,-56.1921247351046,-56.1908523701634,-56.1902226806248,-56.1895263014842,-56.1865939164699,-56.184381170717,-56.1843280881326,-56.1842772619202,-56.1842073000057,-56.1841105098802,-56.1838763347351,-56.1837179044869,-56.1835373617931,-56.1834599852214,-56.1831889600301,-56.1830014320671,-56.1828599403462,-56.1828165066964,-56.1827786438362,-56.1827320652311,-56.1827294434623,-56.1827859459354,-56.1828383817279,-56.1829170919041,-56.1829647235523,-56.1830545582156,-56.1831669507627,-56.1832218615816,-56.1833126129677,-56.1834074410397,-56.1834597580209,-56.1836212016982,-56.18380629403,-56.1839489594812,-56.1842010171822,-56.1843440526159,-56.1844915486834,-56.1845390456788,-56.1846128983498,-56.1846723277491,-56.1848787723429,-56.1850236422643,-56.1850878933169,-56.1850953421585,-56.1851386050953,-56.1851840376927,-56.1852222705353,-56.1852842962736,-56.1853890146545,-56.1854677469255,-56.1855964119271,-56.1856584224492,-56.1856754747852,-56.1856354344479,-56.1855626583737,-56.1855035735271,-56.1853970548427,-56.1852102535045,-56.1851226743794,-56.1849971592313,-56.1848718210496,-56.1845736293478,-56.1845120769787,-56.1844220545101,-56.1842158056423,-56.1841425370225,-56.1840243810864,-56.1839110941198,-56.1837214217175,-56.1836943852741,-56.1836595564787,-56.1837002954055,-56.1837504529397,-56.1837228153529,-56.1836685978082,-56.1834685192059,-56.1834857214108,-56.183490702313,-56.1835508116462,-56.1836195120768,-56.1836956021517,-56.1838575123196,-56.1839289416575,-56.1842164605634,-56.1844827020376,-56.1846016719351,-56.1847038954877,-56.1847703276652,-56.1850216983451,-56.1852327582358,-56.1853395466426,-56.1855178227508,-56.1856846974582,-56.1857728763718,-56.1858158209153,-56.1858804313199,-56.1858384939625,-56.1857207697074,-56.1856523040855,-56.1855104783381,-56.1854939969216,-56.1855774352654,-56.1855942791605,-56.1855707582802,-56.185537666318,-56.1854620400239,-56.1854291009531,-56.1854364461995,-56.1854513105321,-56.1854552915436,-56.1854612306482,-56.1854680723016,-56.1854769896088,-56.18548214977,-56.1854832301189,-56.185479428575,-56.185472088748,-56.1854701045997,-56.185466070019,-56.1854702505083,-56.1854713712946,-56.1854757804435,-56.1854770934123,-56.1854784032045,-56.1854797168831,-56.1854798602559,-56.1854800845383,-56.1855003866753,-56.1855208074151,-56.1855335206383,-56.1855387976306,-56.1855515448297,-56.1855593034143,-56.1855496318639,-56.1855373344802,-56.1855338662332,-56.18553656648,-56.1855472020692,-56.1855502153941,-56.1855532287189,-56.1855552664365,-56.1855582690267,-56.1855612716169,-56.1855632876566,-56.1855652929616,-56.1855672982666,-56.1855702792832,-56.1855732711387,-56.1855762737288,-56.1855782790339,-56.1855802951778,-56.1855823112175,-56.1855853353813,-56.1855873406864,-56.185589313683,-56.1855922515523,-56.1855942137101,-56.1855961975457,-56.1855981920118,-56.185601194602,-56.1856042943256,-56.1856073076505,-56.1856093129555,-56.1856113075258,-56.1856133128309,-56.1856152642539,-56.1856159678459,-56.1856107063825,-56.185626729125,-56.1856339079314,-56.1856725424396,-56.185675058112,-56.1857158058975,-56.185715890316,-56.1857190012954,-56.1857205267697,-56.185754582458,-56.1857773934931,-56.1858093705053,-56.1858276255449,-56.1858729413112,-56.1859249532393,-56.1859364201948,-56.186133154885,-56.1861339212178,-56.1861436643675,-56.1861556558644,-56.1861717460375,-56.186202218628,-56.1862666350784,-56.1862806945167,-56.1862889289717,-56.1862995543473,-56.1863043732909,-56.1863105584599,-56.1863235933073,-56.1863308030673,-56.1863383359105,-56.1863472534261,-56.1863568541066,-56.1863712551795,-56.1863859977826,-56.1864254253039,-56.1864370753225,-56.1864439250009,-56.1864545503765,-56.1864627848837,-56.1865078075822,-56.1865239164629,-56.1865369699657,-56.1865434781138,-56.1865534390322,-56.1865616735914,-56.1865688648001,-56.1865784469294,-56.1865924878686,-56.1866024115802,-56.1866109690665,-56.1866188433879,-56.1866267177614,-56.1866359583603,-56.1866948360167,-56.1867068276699,-56.1867164284546,-56.186750678983,-56.1867429855883,-56.1867074235501,-56.1866884119224,-56.1866815369705,-56.1866885624167,-56.186713848895,-56.186739262835,-56.1867498883148,-56.1867845530152,-56.1867938309251,-56.1868037732922,-56.1868192550786,-56.1868257818822,-56.1868360471762,-56.186842213794,-56.186931490774,-56.1869496135057,-56.1869664974476,-56.1869630393621,-56.18697327055,-56.187010274191,-56.1870321380188,-56.1870335326443,-56.1870553185804,-56.1870578536118,-56.1870834470193,-56.1870895829051,-56.18707647681,-56.1870898502565,-56.1871058717353,-56.1871736218646,-56.1872103847695,-56.1872095748791,-56.1872326186514,-56.187284244565,-56.1873514809348,-56.1873804993053,-56.1874161800766,-56.1874783102567,-56.1876255562473,-56.1878294329803,-56.1878478275189,-56.187849444655,-56.1878446986136,-56.1878509713278,-56.1878257555108,-56.1877937640641,-56.1877693583003,-56.1877651333507,-56.1877612953921,-56.1877786772209,-56.1878188752437,-56.1878226290026,-56.1878107206736,-56.1877021209681,-56.1876572513433,-56.1876069385728,-56.1875543409781,-56.1875294001467,-56.1875295972796,-56.1874920387691,-56.1874934994183,-56.1874915021382,-56.1875120378071,-56.1875338056479,-56.1875405039462,-56.1875418619642,-56.1875542552047,-56.1875815692913,-56.1876136723841,-56.1876986740081,-56.1877534889182,-56.1878094000446,-56.1878213325527,-56.1878358628589,-56.1878613628849,-56.1878688007312,-56.1878369317434,-56.1878384008865,-56.1878289561198,-56.1878063303365,-56.1877585438168,-56.1877408960695,-56.1877023064544,-56.1876556395485,-56.1876305873316,-56.1876198470269,-56.1875862629098,-56.1875884341077,-56.1875682553937,-56.1875420749647,-56.1875151936795,-56.187458064516,-56.1873979743072,-56.1873678594011,-56.1872993143762,-56.1872681247666,-56.1872237093887,-56.1871949647271,-56.1871352396285,-56.1871226340389,-56.1871150563809,-56.1870959971375,-56.1870732868445,-56.1870373096964,-56.1869941423298,-56.1869760501085,-56.1869417311333,-56.1869064184425,-56.1868596475246,-56.1868247901207,-56.1867972628798,-56.1867697247429,-56.1867445734384,-56.1867245344058,-56.186695455555,-56.186631784489,-56.1865753938444,-56.1865219968834,-56.1864851721585,-56.1864400555452,-56.1863699790005,-56.1862547404023,-56.1862128597409,-56.186176919122,-56.1861445598294,-56.1860990278057,-56.186079280955,-56.1860451555432,-56.1860055760685,-56.1859575582837,-56.1857619951351,-56.1857283682095,-56.1855459325603,-56.1854367767867,-56.1853373304997,-56.185300274514,-56.1852673458652,-56.1852595155769,-56.1852596625277,-56.1852934126418,-56.1853079663976,-56.1853346263968,-56.1853565153938,-56.1853509437704,-56.1853699098017,-56.1853726362078,-56.1853337315603,-56.1853433142107,-56.1853370113768,-56.1853964747519,-56.1854360111835,-56.1854449557965,-56.1854550412061,-56.1854422514851,-56.1853788671295,-56.1851656600899,-56.1851567092237,-56.1851452868746,-56.1851551327857,-56.1852039733907,-56.1852510259903,-56.1852647893384,-56.1852948356674,-56.1853434959711,-56.1853665945503,-56.1853872925164,-56.185434635474,-56.1854497755738,-56.1854692533273,-56.185482380514,-56.1854812169973,-56.1854926710295,-56.185473092599,-56.1854591958488,-56.185390378066,-56.1852736270212,-56.1852417211915,-56.1852005760136,-56.1851164026032,-56.1850695246771,-56.1850074332799,-56.1849928955741,-56.1849864503752,-56.1849297511339,-56.184803696541,-56.1847712796144,-56.1847227691797,-56.184693738166,-56.1845129974534,-56.1844775026895,-56.1844504768766,-56.1842005363092,-56.1841245656708,-56.1840347439308,-56.1838939183868,-56.1838431499125,-56.183755390903,-56.183576687491,-56.1835035902096,-56.1834707774539,-56.1834852582553,-56.1834759563748,-56.1834440966105,-56.1833971861676,-56.1833520520575,-56.1833068675046,-56.1832448109171,-56.1832129069635,-56.1831941310302,-56.1831229051305,-56.1830816292602,-56.1830348134494,-56.1830085949278,-56.1829841906753,-56.1828324236551,-56.1826901673733,-56.1826285280843,-56.1826249174722,-56.1826062745243,-56.1825800805987,-56.1825407774124,-56.182473704071,-56.1824564539246,-56.1823890216481,-56.1823010554483,-56.1823198943307,-56.1823351226009,-56.1823284316502,-56.1823376997634,-56.1823380374375,-56.1823234519988,-56.1822915939021,-56.1822950836185,-56.1823394285716,-56.1823733885857,-56.1823791240436,-56.1823755446976,-56.1823252245796,-56.1822728867543,-56.1822415255806,-56.1822232107184,-56.1822253105514,-56.1821545815746,-56.1821525942998,-56.1821512586109,-56.1821495410585,-56.1821364943299,-56.1821068148568,-56.1821352957951,-56.1821634724099,-56.1821841901779,-56.1822180113703,-56.182241006146,-56.1822519713844,-56.1822860898135,-56.1823237625756,-56.1823564907044,-56.1824328092304,-56.182500875584,-56.1824851433038,-56.1824844266842,-56.182501477978,-56.1825241546729,-56.1825301565183,-56.1825376549687,-56.1825121330564,-56.1824878167659,-56.1824627959453,-56.1824417300811,-56.1824186431746,-56.1824140712334,-56.182417264547,-56.182441258588,-56.1824608570287,-56.1824611038227,-56.1825120830306,-56.1825761915097,-56.1825709171229,-56.1825691783095,-56.182579174298,-56.182607325066,-56.1826148326879,-56.1826374989608,-56.1826432540122,-56.1826701924884,-56.1827244383811,-56.1827458560934,-56.1827510066663,-56.1827964530208,-56.1828193027217,-56.1828184322728,-56.1828249548033,-56.1828366254054,-56.1828366825182,-56.1828502736942,-56.1829162422992,-56.1829384374959,-56.1829692721481,-56.1829826928195,-56.1831253122053,-56.1831378232409,-56.1831530081555,-56.1832001753975,-56.1832192439816,-56.1832438012298,-56.1832833412049,-56.1833354509959,-56.1833781071614,-56.1833765205098,-56.1833860708518,-56.1834144296439,-56.1834501939217,-56.1834803807399,-56.1835068356333,-56.1835258350151,-56.1835392181672,-56.1835300459368,-56.1835176128581,-56.1835037011001,-56.1835049025531,-56.183488813839,-56.1834851777972,-56.1834756720615,-56.1833543478248,-56.1833299481579,-56.183251064559,-56.1832172925586,-56.1831742932994,-56.1831771960464,-56.1831690197464,-56.1831805369361,-56.1831599767493,-56.1831392960838,-56.1831266232981,-56.1831470121465,-56.1831510167117,-56.1831267938027,-56.1830419041896,-56.1829863676313,-56.1829669630406,-56.1829266026423,-56.1829002157006,-56.1828817503442,-56.1828577371266,-56.1828014376749,-56.1827548328062,-56.1827342275963,-56.1827024412032,-56.1825852382586,-56.18256005944,-56.182500008887,-56.1824179744964,-56.1823603397727,-56.1823604406581,-56.1823681058613,-56.1823326067201,-56.1823246496998,-56.182293711244,-56.1822487693163,-56.1821737668857,-56.1821457115835,-56.182106398392,-56.1820807672567,-56.1820823964303,-56.1820655477409,-56.1820759322632,-56.1820099544868,-56.1820142746314,-56.1820064760262,-56.1819759231859,-56.1819522301335,-56.1818978896087,-56.1818802325858,-56.1818342959785,-56.1818199319039,-56.1817868073207,-56.181770999168,-56.181722362835,-56.1815961765075,-56.1814860638863,-56.1814167714838,-56.181377621293,-56.1813756315168,-56.1813760896698,-56.1813091105436,-56.1813130880115,-56.1813151807575,-56.1813227638349,-56.1813415793719,-56.1813584868415,-56.1813924414361,-56.1814377902403,-56.1814453520568,-56.1814341825464,-56.181415474148,-56.1814204633878,-56.1814380362005,-56.1814423008999,-56.1814456109403,-56.1814486566778,-56.1814438692088,-56.1814609655258,-56.1814496029992,-56.1814186053462,-56.1813984032608,-56.1814588523526,-56.1814717319116,-56.1814875659109,-56.181399695594,-56.1814104598954,-56.1814154078638,-56.181484419705,-56.1815843145567,-56.1817370274813,-56.1818124434586,-56.1819271355249,-56.1820379826916,-56.1821452296683,-56.1822103757658,-56.1822854269716,-56.1823988517177,-56.1824135426275,-56.1824296180013,-56.1824405507229,-56.1824518432134,-56.1824743915088,-56.1824901071138,-56.1825017231044,-56.1825129972521,-56.1825246128259,-56.1826285272506,-56.182638435277,-56.1826483612294,-56.1826599955629,-56.1826740211296,-56.1826880466963,-56.1827089053703,-56.1827198564347,-56.182733217492,-56.1827445099825,-56.1827561443159,-56.1827763564065,-56.1827968919972,-56.1828259865854,-56.18290850706,-56.1829492730841,-56.1830092265036,-56.1830452467468,-56.1830837136685,-56.1831132976757,-56.1831582746215,-56.1831644611454,-56.1831730389025,-56.1832047102362,-56.1832088469529,-56.1832235928911,-56.1832304443413,-56.1832372953745,-56.1832496317367,-56.1832544517225,-56.1832623462105,-56.1832675080393,-56.1832864544771,-56.1832934818513,-56.1832928540275,-56.1832904994799,-56.1832884863584,-56.1832861318107,-56.1832841191061,-56.1832683201248,-56.1832528442268,-56.1832508311052,-56.1832488184006,-56.183246805279,-56.1832427794528,-56.1832390950527,-56.1832347273835,-56.183230378474,-56.1832273406573,-56.1832246626095,-56.1832226499048,-56.1832209786262,-56.1832176356522,-56.183214634938,-56.1832092609164,-56.1832052346733,-56.1832028801257,-56.1832005439209,-56.1831937850185,-56.1831870073564,-56.1831420208223,-56.1831358893268,-56.1830777076544,-56.1830600343732,-56.1830420009062,-56.1830358881703,-56.183023985782,-56.1830127850054,-56.1830056471576,-56.18297580385,-56.1829720823474,-56.1829687026877,-56.1829419893276,-56.18293963478,-56.1829287941892,-56.1829073994054,-56.1828876942429,-56.1828747855022,-56.1828618763447,-56.182855745266,-56.1828482843349,-56.1828425130252,-56.1828381086704,-56.1828255596986,-56.1828198071485,-56.1828140541815,-56.1828103330958,-56.182787377507,-56.1827975431664,-56.1828054564141,-56.182837109405,-56.18284500431,-56.1828594271649,-56.1828687069507,-56.1828762416699,-56.1828841365748,-56.1829037029157,-56.1829156974349,-56.182935245433,-56.1829551348571,-56.1829643963002,-56.1829736577432,-56.1829829191862,-56.1829918204435,-56.1830093182175,-56.1830264562227,-56.1830425691159,-56.1830854045405,-56.1830922559907,-56.1830987660147,-56.183152534161,-56.1831829965379,-56.1831953141404,-56.1832103839956,-56.1832254350912,-56.1832401626866,-56.1832545492728,-56.1832627489182,-56.1833329346982,-56.1833442280224,-56.1833555209298,-56.1833640803441,-56.1833731846228,-56.1833808398207,-56.1833893996519,-56.1833976176402,-56.1834089105475,-56.1835015107844,-56.1835814625237,-56.1836391517837,-56.183681790444,-56.1837513453842,-56.1837813975271,-56.1838656046856,-56.1839244925962,-56.1839969644609,-56.184099359677,-56.1841876917447,-56.1842540890436,-56.1842709957719,-56.1843611443472,-56.1843666774091,-56.184440188654,-56.1844525066734,-56.184479211279,-56.1844942996855,-56.1845145313695,-56.184556093846,-56.1845656973404,-56.1845722257072,-56.1845787357313,-56.18458797904,-56.1845965388712,-56.1846064654489,-56.1846146650943,-56.1846232249255,-56.1846321265997,-56.1846406678796,-56.1846594959231,-56.1846783056237,-56.1846930338444,-56.1847379574293,-56.1847633140481,-56.1847890308525,-56.1847979325267,-56.1848102690973,-56.1848226242192,-56.1848346193637,-56.1848678710958,-56.1849600917814,-56.184968651821,-56.184977571838,-56.1849844234965,-56.184994026991,-56.1850166690847,-56.1850389880952,-56.1850595801734,-56.1851103680327,-56.1851244500868,-56.1851361221481,-56.1851477942093,-56.1852026114383,-56.1852391204753,-56.1852473757744,-56.1852569794773,-56.1852645515074,-56.1852697135446,-56.1852972875569,-56.1853045179524,-56.1853114069219,-56.185318295683,-56.1853248615692,-56.1853334772625,-56.1853420929558,-56.1853507086492,-56.1853596661855,-56.1853706735289,-56.1853816808723,-56.1853940362026,-56.185402956428,-56.1854122182879,-56.1854232070801,-56.1854345189556,-56.1854420726429,-56.1854506326825,-56.1854595529079,-56.1854664047749,-56.185472914799,-56.1854808101208,-56.185484263777,-56.1854880778273,-56.1854901649453,-56.1854915687943,-56.1854929911946,-56.1854937115661,-56.1854940905115,-56.185494810883,-56.1854962332833,-56.1855000658848,-56.185509346296,-56.185526808114,-56.1855346848846,-56.1855500781358,-56.1855637444547,-56.1855746961444,-56.1855859709174,-56.1856313287167,-56.1856877534093,-56.1858215641897,-56.1858843874226,-56.1859843296946,-56.1860305222673,-56.186069307895,-56.1861263747217,-56.1861631291977,-56.1861994685639,-56.1862687690956,-56.186328461443,-56.1863285814931,-56.1863286535212,-56.1863108757298,-56.1863047884747,-56.1862421747386,-56.1860668271932,-56.1860502150865,-56.1860333940007,-56.1860492249437,-56.1860518752587,-56.1860973933308,-56.186068126602,-56.1860781853388,-56.1860777403754,-56.1861267592434,-56.1861760986734,-56.1862422148226,-56.1863413441726,-56.1863733952271,-56.1864073704924,-56.1865283566174,-56.1866170260847,-56.1866831023064,-56.1867282688707,-56.1867490074441,-56.1867555303324,-56.1867692609547,-56.1868112518095,-56.186867230143,-56.1869368536479,-56.1869924327316,-56.1871046465347,-56.1871424468053,-56.1872204642721,-56.1872621417053,-56.1873284756446,-56.1874364302758,-56.1875249837049,-56.1875929570674,-56.1877466787747,-56.1878760862632,-56.1879139326868,-56.1880504626775,-56.1882917161563,-56.1884526472366,-56.1886030521971,-56.1887120347011,-56.1888133543826,-56.1888902451892,-56.1889531766201,-56.1891635934209,-56.1893677134877,-56.1895230888204,-56.1897669688264,-56.189866299724,-56.1899654664328,-56.190017183342,-56.1900980699796,-56.1906448959618,-56.1909042409773,-56.1912810975191,-56.19129816257,-56.1914127785584,-56.1917119214496,-56.1919494176055,-56.1921052221246,-56.1922832922933,-56.1924838416246,-56.1925374399388,-56.1925983129564,-56.192698334826,-56.1929423614453,-56.1932406463657,-56.1934216472887,-56.1936738461978,-56.193839375415,-56.1940172183777,-56.1941498227479,-56.1942623789389,-56.1943176619054,-56.1943986914646,-56.1944329305592,-56.1944384785338],&#34;lat&#34;:[-34.8467421614383,-34.846329342195,-34.8460938941018,-34.8457406986165,-34.8454826355267,-34.8451340057294,-34.8448035052819,-34.8441356604288,-34.8440473819964,-34.8439666036703,-34.8432116443185,-34.8423892802042,-34.8416919716781,-34.8412309728355,-34.8411844385693,-34.8411132621291,-34.8410380375872,-34.8410003927469,-34.840918793558,-34.8408769959187,-34.8398745490879,-34.8398501032509,-34.8393220318052,-34.8387901824504,-34.8387202518293,-34.8386481046635,-34.8380100024964,-34.8377405547796,-34.8371686874177,-34.8362032613148,-34.8361277039349,-34.8349650028437,-34.8348485357512,-34.8339947542658,-34.8333017201837,-34.8322417968875,-34.8314434367922,-34.8313672241383,-34.8309059512911,-34.8303940072685,-34.8299001692502,-34.829368327365,-34.8294106768064,-34.8296344121925,-34.8297954785919,-34.8300192106429,-34.830180253697,-34.8303055383094,-34.8304173726519,-34.8308278539514,-34.8310095198944,-34.8309318021367,-34.8307769080735,-34.8305730162546,-34.8304098821222,-34.8301017565473,-34.8299386257499,-34.8296803492168,-34.8295534804539,-34.8294175336761,-34.829364039421,-34.8291271344617,-34.828973568045,-34.8287657571274,-34.8287651772392,-34.8286797265034,-34.8286437446132,-34.8286122550399,-34.8285492959036,-34.8284908490944,-34.8284278999633,-34.8283649541672,-34.8283065173632,-34.8282480872293,-34.8281896570953,-34.8281312336316,-34.8280728135028,-34.8280189057011,-34.8279604922425,-34.827906591111,-34.8278526933145,-34.8277987988531,-34.8277494100487,-34.8276955222574,-34.8276461434581,-34.8275967679939,-34.8275473958648,-34.8275025360628,-34.8274576762608,-34.8274083141368,-34.8273679666619,-34.827327619187,-34.8272872717121,-34.8272558888605,-34.827229015001,-34.8271976321494,-34.8271707616249,-34.8271466591946,-34.8271438944355,-34.827117027246,-34.8270901600566,-34.8270678018592,-34.8270409380049,-34.8270185831426,-34.8269962316153,-34.826973880088,-34.8269560342178,-34.8269426406437,-34.8269336860256,-34.8269158468255,-34.8268980076253,-34.8268801684252,-34.8268623292251,-34.826848999017,-34.8268266541599,-34.8268223019153,-34.8268223419359,-34.8268090150629,-34.826795691525,-34.826786870309,-34.826773546771,-34.8267647288901,-34.8267603866507,-34.8267232180888,-34.8267063705704,-34.8257183625855,-34.8243346089484,-34.8242819153427,-34.8239846217844,-34.8227251322334,-34.8225239418077,-34.8206936107889,-34.8206479835708,-34.8201164085214,-34.8197005166431,-34.8196361866287,-34.8192846979134,-34.8180674701579,-34.8168251636535,-34.8159756380132,-34.8154482126732,-34.8153240185013,-34.8152954636506,-34.8150764873838,-34.813829778005,-34.8122473819229,-34.8123214319443,-34.812332221495,-34.8127048511848,-34.8127275028668,-34.8128341886521,-34.8135278889798,-34.8147430823527,-34.815254812932,-34.8160611554501,-34.8165698311205,-34.8170711563334,-34.8162704834059,-34.8154877930858,-34.8151835891409,-34.8149344971255,-34.8135572339431,-34.8134588183662,-34.8133455046397,-34.8133188531283,-34.8121450896529,-34.8120873794054,-34.8108525358984,-34.8106004658995,-34.8091502446499,-34.809494542213,-34.8102828220824,-34.8117184406115,-34.8119576188064,-34.8122672321601,-34.8126521994908,-34.8165528223486,-34.8161006900109,-34.8138005362576,-34.8120781613181,-34.8114988825692,-34.810791757887,-34.807587005114,-34.8065820268209,-34.8062744481948,-34.8050366231501,-34.8023694809699,-34.8022709701654,-34.802535033016,-34.8022311362887,-34.8025192515438,-34.8037975708057,-34.8047587331684,-34.8048091525043,-34.804851360939,-34.8048909880423,-34.8049457229372,-34.8050207416263,-34.805101183112,-34.8051726733146,-34.805187901168,-34.8052412420106,-34.8053162606997,-34.8053728632244,-34.8054128038227,-34.8055075526871,-34.8056706768145,-34.8056977307669,-34.805847021093,-34.8059172639858,-34.8060363120486,-34.8060909202114,-34.8061790123094,-34.8062721936988,-34.8063678430276,-34.8064788469418,-34.8065354694768,-34.8065763839108,-34.8066384959435,-34.8066868608866,-34.8067939961389,-34.8069868556015,-34.8071839305714,-34.8073125635774,-34.807333934599,-34.8074236675433,-34.8074645552968,-34.8075167688914,-34.8075828429674,-34.8076432741333,-34.8077253698055,-34.8078699310261,-34.8079656070353,-34.8080397986312,-34.8081354279497,-34.8082368002299,-34.8083597569752,-34.808519719472,-34.808611440108,-34.8087228375585,-34.8087855165503,-34.8089577720535,-34.8090009543237,-34.8090384003023,-34.8091523190531,-34.809183848647,-34.8092135239513,-34.8092862214433,-34.8094063167129,-34.8094260402181,-34.8094399807409,-34.8094366456876,-34.8094896396846,-34.8095799062374,-34.80970144225,-34.8099225296037,-34.8100383359947,-34.81021635447,-34.8103237698669,-34.8104155238535,-34.810613072401,-34.810687524131,-34.8110341428911,-34.8111826861653,-34.8112413297427,-34.8113605312179,-34.811436490392,-34.8114929728548,-34.8116665356989,-34.8117425882545,-34.811907973548,-34.8120871059311,-34.8121943078845,-34.8122644107051,-34.8122779110008,-34.8123225406842,-34.8123176715063,-34.8123447454691,-34.8124615590461,-34.8126878891037,-34.8128010407922,-34.8128674016829,-34.8130138572138,-34.8131918956994,-34.8133877366996,-34.8134563654266,-34.8135564703866,-34.8135838911949,-34.8136970562236,-34.8137576207917,-34.8138026573515,-34.8138262094979,-34.8138831188476,-34.8139438234878,-34.8140005060538,-34.814046249645,-34.8140586627134,-34.8140694482758,-34.8140866171302,-34.8140956084339,-34.8141046064077,-34.8141181267138,-34.8141902505766,-34.8142160572191,-34.814231258392,-34.8142456191316,-34.8142667100087,-34.8142903355263,-34.814335678911,-34.8143491858769,-34.8143626528393,-34.8143761597582,-34.8143776338816,-34.8143776538919,-34.8144538398497,-34.8145588806886,-34.8146124216343,-34.8146804033609,-34.8147421885585,-34.8148060481592,-34.8148843752211,-34.8149318063492,-34.8149330136385,-34.8149607812923,-34.8150088927713,-34.8150225197991,-34.815036153497,-34.8150453715844,-34.8150589519214,-34.8150725322585,-34.8150816502942,-34.8150907216392,-34.8150997929842,-34.8151132799398,-34.8151268135861,-34.8151403939231,-34.8151494652681,-34.8151585833039,-34.8151677013396,-34.8151813817283,-34.8151904530733,-34.8151993776759,-34.8152126645283,-34.8152215424402,-34.8152305137336,-34.8152395383878,-34.8152531187249,-34.815267139289,-34.8152807729869,-34.8152898376618,-34.815298862316,-34.815307933661,-34.8153167582121,-34.8153199398529,-34.8153982469045,-34.8154558566153,-34.8155562684003,-34.8156286924179,-34.8156919183584,-34.815771539421,-34.8157717928851,-34.8157811977354,-34.8157810643333,-34.8158367597235,-34.8158999323032,-34.8159984097572,-34.8160504299187,-34.8161023833791,-34.8161375681914,-34.8161840321541,-34.8163155266358,-34.8163174009358,-34.8163246980324,-34.816333682666,-34.8163426472893,-34.8163605898761,-34.8164099886857,-34.8164234689711,-34.8164324602748,-34.8164414449084,-34.8164504428823,-34.8164594408561,-34.8164729278116,-34.8164819191154,-34.816486401427,-34.8164953927307,-34.8165043773643,-34.8165178576498,-34.8165313379352,-34.8165672831398,-34.8165762677734,-34.8165807567551,-34.8165897413887,-34.8165987326924,-34.8166662074909,-34.8166796811063,-34.8166976770539,-34.8167021660357,-34.8167156596613,-34.8167246442949,-34.8167291332767,-34.8167336155883,-34.8167425868817,-34.8167470691934,-34.816751551505,-34.8167560338167,-34.8167605227984,-34.8167649984399,-34.8167963879617,-34.8168053659251,-34.8168143505587,-34.8168544445696,-34.8168780300666,-34.8168609946143,-34.8168688986906,-34.816881058295,-34.8169053108026,-34.8169495002589,-34.816967522887,-34.8169765075206,-34.8170169750574,-34.8170304686831,-34.8170394533167,-34.8170664539082,-34.817075451882,-34.8170799275236,-34.8170844165053,-34.8171832741554,-34.817206019219,-34.81721984635,-34.8172555447606,-34.8172849866111,-34.8173426363426,-34.8173980849388,-34.8174446689634,-34.8174812811786,-34.8175129908654,-34.8176020434588,-34.8176288772977,-34.8176566716319,-34.8177462511637,-34.8177730183016,-34.8178962685315,-34.8180666564049,-34.8181469444782,-34.8183227418081,-34.8184172438785,-34.8184706781026,-34.8185122328668,-34.8185431621511,-34.818621982801,-34.8187692587549,-34.8190061209108,-34.8190382441442,-34.8191383557744,-34.8191532367822,-34.8192166561559,-34.819222672592,-34.8192180502081,-34.8192631868196,-34.8192981485602,-34.819329907896,-34.8194636768841,-34.8195924232819,-34.8196280950121,-34.8196548888303,-34.8197241178668,-34.8197465160849,-34.8197872971167,-34.8198568329781,-34.8199292636658,-34.8199768415363,-34.8201950140534,-34.8202574595915,-34.8202960728387,-34.8203803162852,-34.8205161063156,-34.8205784784825,-34.8206161445745,-34.8207063110757,-34.8207645411064,-34.8208320292451,-34.8208916266477,-34.8209257976038,-34.8210117886183,-34.8210544706305,-34.8210801972317,-34.8211425760687,-34.8211970708397,-34.8213379168109,-34.8214023367006,-34.8214443983929,-34.8214946109554,-34.8215651273226,-34.8215787476802,-34.8216267390973,-34.8216774252374,-34.8217230887873,-34.8217602746317,-34.8218146560109,-34.8219928212286,-34.822085128834,-34.8221178457069,-34.8221393634708,-34.8221488150119,-34.8221509627862,-34.8221351879841,-34.8221274506604,-34.8221424050394,-34.8221564122633,-34.8221812717507,-34.822271638355,-34.8223030945778,-34.8223321629024,-34.8223738510687,-34.8224046402809,-34.8224245638893,-34.8224397850726,-34.8224346490905,-34.8224411524444,-34.8224478358913,-34.8224566937928,-34.8224806728261,-34.8225080015267,-34.8225353410199,-34.8225572189696,-34.8225658500875,-34.8225783632075,-34.8226051170052,-34.8226083653471,-34.8226107931585,-34.8226124674626,-34.8226312298648,-34.8226603721683,-34.8227269598426,-34.8227430814903,-34.8227719297014,-34.8227948215073,-34.8228296394638,-34.8228590079432,-34.8228823266359,-34.8229032507604,-34.8229182518301,-34.8230060304331,-34.8230130607255,-34.8230780075536,-34.8231328291598,-34.82321042251,-34.8232462543228,-34.8232736217702,-34.8232869619834,-34.8233226470538,-34.8233707518626,-34.823377028433,-34.8234294888215,-34.8234908871528,-34.8236247428523,-34.8236696059893,-34.8238755855516,-34.8240057927028,-34.8240318661495,-34.8240654568064,-34.8241914751306,-34.8242145937201,-34.8242319093169,-34.8242749448448,-34.8243617095916,-34.8244765021264,-34.8247600083378,-34.8248095405495,-34.8248727398096,-34.825107073995,-34.8252554905373,-34.8253581167976,-34.8254402858409,-34.8255066800821,-34.8255572461604,-34.825600955369,-34.8256101867965,-34.8257045287844,-34.8257323698094,-34.8258183007929,-34.825896447762,-34.8260699105545,-34.8261147937019,-34.8261698354216,-34.8261954286207,-34.8262395146904,-34.8262857752148,-34.8263103345473,-34.8263339934154,-34.826417863336,-34.8264365796551,-34.8264866254651,-34.8265281735591,-34.826617386235,-34.8267018131095,-34.8269777287396,-34.8270416450362,-34.8270663577812,-34.8270996015925,-34.827209431568,-34.8272559922472,-34.8272814120235,-34.8273408693538,-34.8273589420077,-34.8273636977937,-34.8273877201826,-34.8273739230671,-34.8273825041593,-34.8274335204697,-34.827470893077,-34.8275147290177,-34.8275809098155,-34.8276026176774,-34.8276197431762,-34.8276307155015,-34.8276169017107,-34.8275906981969,-34.8275722853676,-34.8275785686081,-34.8275801694336,-34.8276159912412,-34.8276269468913,-34.827661151198,-34.8276798074862,-34.8276829757868,-34.8277732256643,-34.8278928773718,-34.8279766839263,-34.8280123156358,-34.8280464399013,-34.8280712927185,-34.8281054770149,-34.8281202813165,-34.828153721896,-34.8281988251569,-34.8282749577538,-34.8282888449157,-34.8283383637872,-34.8285397243006,-34.8285629329366,-34.8285923581119,-34.8286680538168,-34.8287179395441,-34.828815279745,-34.8289330871679,-34.8289701629555,-34.8289949290614,-34.8290383047647,-34.8291344676917,-34.8291965630492,-34.8293360416485,-34.8294507041162,-34.8295049054026,-34.8296630769757,-34.8297204765781,-34.8297590631449,-34.8298086753978,-34.8298334948646,-34.8299249553664,-34.8299579390436,-34.8300006877569,-34.8300145682487,-34.8300175731318,-34.830042679413,-34.8300546489194,-34.8301304446758,-34.8301566715351,-34.8301555176066,-34.830182698291,-34.8302924715706,-34.8303516320812,-34.8304040291037,-34.8304284917197,-34.8304736149909,-34.8305634279764,-34.8306624690544,-34.8307493305178,-34.8307741799999,-34.8308028214377,-34.8308269338731,-34.8308533608355,-34.8309332286921,-34.8309757172712,-34.8310136501675,-34.8310716200641,-34.8311320245495,-34.8311763340677,-34.8312571557496,-34.8313454512858,-34.8313795288605,-34.831419599526,-34.8314831456317,-34.8315203414812,-34.8315512540903,-34.8315806659254,-34.8316082634915,-34.8316826585256,-34.8317362861827,-34.8317491828338,-34.8318388857626,-34.8319147115346,-34.8319615290129,-34.8319979244496,-34.8320168842276,-34.8320633648656,-34.8321392006427,-34.8321947726359,-34.832252649151,-34.8323014910066,-34.8323680520005,-34.8326043038416,-34.8326386582257,-34.8326773348389,-34.8327283144637,-34.8327979570469,-34.8328319612504,-34.832855083175,-34.8329452863617,-34.8330172801574,-34.8331336034817,-34.8331722967701,-34.8332171332268,-34.8332356194272,-34.8332680594907,-34.8333067060884,-34.8333593098842,-34.8334165794196,-34.8334326577116,-34.8334448506665,-34.8334584943695,-34.8334827502122,-34.8334926086298,-34.8335220471453,-34.8335668602566,-34.8336819362709,-34.8336866487012,-34.8336884196146,-34.8336978044545,-34.8337474867436,-34.8337977826825,-34.8338357822799,-34.8338961534148,-34.8339209895568,-34.8339164005235,-34.833923881048,-34.8339659394052,-34.8340409947799,-34.834074412014,-34.8341452218658,-34.8341847655929,-34.83421680545,-34.8342685654773,-34.834280561664,-34.8343244476305,-34.8344236354508,-34.8345197083314,-34.8345230433847,-34.8345370406034,-34.8345727523542,-34.8346482946466,-34.8346645263511,-34.8346786302915,-34.8348290912214,-34.8349748363859,-34.834999615832,-34.8350367649907,-34.835083329005,-34.8351109665917,-34.8352181818854,-34.835252379522,-34.8352851097351,-34.8353146149517,-34.8353472484483,-34.8354202027394,-34.8354495345332,-34.8354635217468,-34.835553818315,-34.8356495310099,-34.8356706919231,-34.8357176861592,-34.835743389415,-34.8357735916578,-34.8358062685101,-34.8358274027429,-34.8358730429473,-34.8358973288055,-34.8359533376907,-34.8360126082581,-34.8360623038874,-34.836100260129,-34.8361558854831,-34.8362071852731,-34.8362800862033,-34.8363280342647,-34.8363652734699,-34.8365234350379,-34.8365776329891,-34.8366302868107,-34.8366473022527,-34.8366549928856,-34.8366419895128,-34.8366904745177,-34.836736414877,-34.8367677677131,-34.8367925771747,-34.8368112167876,-34.8368480991421,-34.8368806359222,-34.8369211868353,-34.8369537803112,-34.8369837691106,-34.837065257803,-34.8371419773693,-34.8371960419184,-34.8372475885023,-34.837395594833,-34.837461979069,-34.837520535935,-34.8375776087022,-34.8377129384952,-34.8378271774111,-34.8378677283243,-34.8379154129165,-34.8379844418498,-34.8381665791159,-34.8382136633985,-34.8382303786857,-34.8382265600496,-34.8381418597009,-34.838108899369,-34.8380835796443,-34.8380813351535,-34.8380812951328,-34.8380857574341,-34.8380857274187,-34.8380902030602,-34.8380901396942,-34.8380900963385,-34.838090062988,-34.8380900329725,-34.8380899996219,-34.8381032331135,-34.838103206433,-34.8381076854096,-34.8381121577161,-34.8381166266876,-34.838121095659,-34.8381255446201,-34.8381300202616,-34.8381389982251,-34.8381434738667,-34.8381479461731,-34.8381614131184,-34.8381703677365,-34.8381838080013,-34.838228647793,-34.8382555783485,-34.8382959725141,-34.8383319310589,-34.8383813999045,-34.8384308920956,-34.8384848532581,-34.8384938478968,-34.8385028392006,-34.8385613427056,-34.8385703440145,-34.8385838243,-34.8385883099467,-34.8385927989284,-34.838601780227,-34.8386107782008,-34.8386197728396,-34.8386287708134,-34.8386640256619,-34.8387143316059,-34.8387278552471,-34.8387368732312,-34.8387458945504,-34.8387549158696,-34.8387639338537,-34.838827076418,-34.8388857099901,-34.8388947279743,-34.8389037492935,-34.8389127672776,-34.8389308065809,-34.8389488458843,-34.8389668851876,-34.838989433483,-34.8389984548022,-34.8390119817784,-34.8390210030976,-34.8390300210817,-34.83904805705,-34.8390660930183,-34.8390886446487,-34.8391066839521,-34.8391157052713,-34.8391292322475,-34.8391472782209,-34.8391608185373,-34.8391879858815,-34.8391925082138,-34.8392512618479,-34.8392738468289,-34.8392919228178,-34.8393009541422,-34.8393145077988,-34.8393325671125,-34.8393416017719,-34.8393957697077,-34.8394047910269,-34.8394138156811,-34.8394814939178,-34.839490515237,-34.8395130802077,-34.8395446898429,-34.839571783816,-34.8395898497997,-34.8396079124484,-34.8396124381158,-34.8396259784322,-34.8396350097565,-34.8396440344108,-34.8396666027165,-34.8396801396979,-34.8396936766792,-34.8397027013335,-34.8397703695651,-34.8398334387581,-34.8398469390539,-34.8399009335669,-34.8399099282057,-34.8399279141482,-34.8399414111089,-34.8399458967556,-34.8399548880593,-34.8399773696536,-34.8399863476171,-34.8400043235544,-34.8400222961567,-34.8400312841254,-34.840040272094,-34.8400492600627,-34.8400537423743,-34.8400717216467,-34.8400851952621,-34.8400986688774,-34.8401300984198,-34.8401345874015,-34.8401390763833,-34.8401704759101,-34.8401839128399,-34.8401883851464,-34.8401973564398,-34.8402018220761,-34.8402107933695,-34.840219767998,-34.8402197446526,-34.8402556064808,-34.8402600821224,-34.8402645577639,-34.8402690400755,-34.8402703540865,-34.8402734990418,-34.8402779846885,-34.8402824670001,-34.8402869426417,-34.8403855780402,-34.8404892929322,-34.8406110662787,-34.8406370731843,-34.8406577715621,-34.8406745825072,-34.8407885958382,-34.8407889909465,-34.8409047939948,-34.8409722432666,-34.8409728357512,-34.8409738490259,-34.8409741070299,-34.8409780990887,-34.8409783458827,-34.8409916594155,-34.840996135057,-34.8410095786569,-34.8410230589424,-34.8410410315446,-34.8410949960422,-34.8411039840108,-34.8411129819846,-34.8411174676313,-34.841121949943,-34.8411264322546,-34.8411309112312,-34.8411308912209,-34.8411353735325,-34.8411398558442,-34.8411398324988,-34.841148793787,-34.8411532460832,-34.8411622207116,-34.8412026548979,-34.84122061416,-34.841243075744,-34.8412475580556,-34.8412565393542,-34.8412700229747,-34.8412790042732,-34.841305954839,-34.8413823142195,-34.8413867965311,-34.8413957844998,-34.8414002734815,-34.8414092614502,-34.8414317330394,-34.8414587102855,-34.8414811885448,-34.841535129697,-34.8415531189745,-34.8415666059301,-34.8415800962207,-34.8416483047309,-34.8416880085406,-34.8417015055013,-34.8417104934699,-34.8417239904307,-34.8417329917395,-34.8417915052498,-34.8418050055455,-34.8418185058413,-34.8418320094721,-34.84185001876,-34.8418680213778,-34.8418860239955,-34.8419040299483,-34.841922032566,-34.8419400285137,-34.8419580244613,-34.8419715114169,-34.8419805027206,-34.8419894906893,-34.8420029776448,-34.8420119622784,-34.8420209535821,-34.8420254358938,-34.8420344271975,-34.8420389128442,-34.8420434018259,-34.8420523931297,-34.8420613977736,-34.8420749080745,-34.8420839160535,-34.8420929273675,-34.8421064443386,-34.8421154556526,-34.8421244703017,-34.8421334816157,-34.8421469985868,-34.8421650145447,-34.8421785081704,-34.8421874761287,-34.8421919584404,-34.8421964240768,-34.8421963840561,-34.8422008630327,-34.8422008296822,-34.8422545088319,-34.8423069844289,-34.8424866270752,-34.8425375333289,-34.8426368278709,-34.8427088716925,-34.8427839971032,-34.8429695027732,-34.8431053361593,-34.8432447247122,-34.843366964421,-34.8435373156088,-34.8436697069218,-34.8437491415195,-34.8438336023149,-34.8438884441573,-34.8440192813652,-34.8442625451242,-34.8443307711921,-34.8444080125767,-34.8444904423587,-34.8445701882877,-34.8446691330113,-34.8448244377402,-34.8449296966174,-34.84503143878,-34.8450672280463,-34.845127014292,-34.8451731921262,-34.8452470320564,-34.8452738880286,-34.8453023562926,-34.8454712796703,-34.8455971639014,-34.8456759248265,-34.8457342409621,-34.8457720888063,-34.8458243451245,-34.845859245401,-34.8458827318029,-34.8459150138215,-34.845990897618,-34.84606378679,-34.8461022460032,-34.8460886817331,-34.84613202708,-34.8461874189952,-34.8462400749411,-34.8463539237386,-34.846404347673,-34.8465377138264,-34.8466489673397,-34.8467281505478,-34.8468154244201,-34.8468859528835,-34.8470413006122,-34.8471351971184,-34.8472261224845,-34.8472355516112,-34.8473087450551,-34.8473614705627,-34.847402500113,-34.8474735200232,-34.8474690792575,-34.847412100632,-34.8472616567158,-34.8472171392363,-34.8471510835043,-34.8470899153147,-34.8470445388867,-34.8467553218943,-34.8466285402456,-34.8465069137733,-34.8465023580904,-34.8464708566067,-34.8464262557794,-34.8464238809511,-34.846423437389,-34.846436450767,-34.8464760823046,-34.8464900688242,-34.8464998440277,-34.8465218059003,-34.8466120247823,-34.8467545700345,-34.8468928995026,-34.8471343628504,-34.8473639708536,-34.8472951725082,-34.8472235552786,-34.847141232769,-34.847095326634,-34.8469783265653,-34.846870135773,-34.8467421614383]}]],[[{&#34;lng&#34;:[-56.2447061185028,-56.2448790952488,-56.2448696769578,-56.2447870492621,-56.244371143031,-56.2441897416103,-56.2437731354973,-56.2436389720547,-56.2434520266545,-56.2429842291742,-56.2426014404429,-56.2424089620469,-56.2422981233346,-56.24217762117,-56.2421716149805,-56.2420963612401,-56.2420871602821,-56.2415012398561,-56.2414439510744,-56.2414977205562,-56.2415688821869,-56.2417960285313,-56.2417844201158,-56.2419220078838,-56.2417221023215,-56.2418984142964,-56.2418633796925,-56.2418126283182,-56.2418670691022,-56.2420433403671,-56.2421928308506,-56.2422870846804,-56.2423080827651,-56.242235622103,-56.2420586804513,-56.2420249020268,-56.2420793014353,-56.242361436181,-56.2424172170477,-56.242455439256,-56.2425217402271,-56.2425600880547,-56.2422665541398,-56.2421663909954,-56.2424360811959,-56.2425523384478,-56.2426471367509,-56.2427351478877,-56.2428733242401,-56.2430457224795,-56.242918166319,-56.2428690050394,-56.2427529571645,-56.242831200737,-56.242770473582,-56.2427161569612,-56.2428570094269,-56.2427101544385,-56.2428163083016,-56.2428822323356,-56.242947529187,-56.2430413226005,-56.2431356595734,-56.2431641139646,-56.2430708641786,-56.2431494410174,-56.2431393803794,-56.2430299113336,-56.2432095682655,-56.2433544023325,-56.2434668800779,-56.243324325877,-56.2432187028409,-56.243222184312,-56.2434758004133,-56.2435622897051,-56.2437280047273,-56.243976001963,-56.2441088555212,-56.2443219137073,-56.2444117784381,-56.2443464370133,-56.2444566701952,-56.2446216616129,-56.2445689078981,-56.2444679392314,-56.2443818862677,-56.2443097474175,-56.2442797827106,-56.2443524836695,-56.244431970451,-56.2444379535366,-56.2444224722192,-56.244438600537,-56.2444488791713,-56.2444612322087,-56.2444712373686,-56.2444788212798,-56.2444785678158,-56.2444663215,-56.2444492727075,-56.2444414553426,-56.2444285086657,-56.2444238062405,-56.2444351320815,-56.2444511603477,-56.2444596647336,-56.244471264049,-56.244489340038,-56.2445084832439,-56.2445238711799,-56.2445338696697,-56.2445257121293,-56.2445124186068,-56.2444718910391,-56.2444695831822,-56.244469009553,-56.2444763199899,-56.2444873056554,-56.2445200391323,-56.2445356083562,-56.2445009660338,-56.2444948762264,-56.2444761599073,-56.2444615056831,-56.2444496062129,-56.2444554825768,-56.2444712707192,-56.2444818895289,-56.2445075294187,-56.2445318086068,-56.2445434279325,-56.2445540467422,-56.2445711622358,-56.2445869103575,-56.2446166323525,-56.2446296457305,-56.2446344748877,-56.2446386703848,-56.2446448869241,-56.2446282301162,-56.2446215870924,-56.2446213902037,-56.2446540556537,-56.2446667574344,-56.2446602894349,-56.2447111886279,-56.2447380416331,-56.2447538764662,-56.2447629146337,-56.2447726928369,-56.2447963050143,-56.2448246996582,-56.2448414749763,-56.2448603447079,-56.2448757726645,-56.2448963299331,-56.2449468456497,-56.2448683445878,-56.2447419490288,-56.2448214811168,-56.2449345212635,-56.2450348265558,-56.2450977979218,-56.2451783658712,-56.2452104186878,-56.2452527370235,-56.2452961995329,-56.2453931558223,-56.2454397810123,-56.2454316344908,-56.2454800976637,-56.2454900561329,-56.2455072183172,-56.2455261480797,-56.2455398884994,-56.2455625001608,-56.2455984853859,-56.2456241719665,-56.2456419878213,-56.245669748805,-56.2457156257982,-56.2457361363761,-56.2457559866134,-56.2457721015909,-56.2457888969194,-56.2458056722375,-56.2458282372082,-56.2458525497468,-56.2458734471908,-56.2458894954673,-56.2459045165474,-56.2459236864338,-56.2459538353157,-56.2459771273279,-56.2459932423055,-56.2460065758486,-56.24602605923,-56.2460459294776,-56.2460548674205,-56.2460518525323,-56.2460252521471,-56.2459890334682,-56.2459497398702,-56.2459249495024,-56.2459035693922,-56.2458994768909,-56.2458031871491,-56.2457654337003,-56.2457392382398,-56.2457410589148,-56.2457524714672,-56.2457679928052,-56.2457762637374,-56.2457903243222,-56.2458143166957,-56.2458287441363,-56.245840430163,-56.2458687612773,-56.2458920767985,-56.2459070778683,-56.2459152153984,-56.2459069044455,-56.245900361071,-56.2458564893213,-56.2458410496023,-56.2458209134311,-56.2457830472359,-56.2458010965444,-56.2458161290838,-56.2458454994441,-56.2458565081335,-56.2458689062367,-56.2458585218385,-56.2458980356372,-56.2459424020879,-56.245953728594,-56.2459676984078,-56.2459725583049,-56.2459731519444,-56.2459719243741,-56.2460106600376,-56.2460230492078,-56.2460177616174,-56.2460082567155,-56.2459943695535,-56.2459930688827,-56.2459996322676,-56.2460054886213,-56.2460303881292,-56.246041006939,-56.2460669669939,-56.2460929070385,-56.2461174530308,-56.2461392709496,-56.2461655044789,-56.2461801653732,-56.2461968539799,-56.2462197324456,-56.2462420039316,-56.2462512953901,-56.246252729463,-56.2462449521187,-56.2462395493323,-56.2462410034156,-56.2462479069759,-56.246249121851,-56.2462501931679,-56.2462634721159,-56.2463180281438,-56.2463927255791,-56.2463828003024,-56.2463898360671,-56.2464126024914,-56.2464652532723,-56.2465136300908,-56.2466729514818,-56.2466987623553,-56.2467341336803,-56.2468371759741,-56.2468842859388,-56.2468967903436,-56.2469878295493,-56.2470298616237,-56.2470786620843,-56.2471016139211,-56.2471283276981,-56.2471745248565,-56.2471933478973,-56.2472131781243,-56.2472363834252,-56.2472363167241,-56.2472174469925,-56.2471982104051,-56.2471916737006,-56.2472107768859,-56.2472285327097,-56.2472469688844,-56.2472732491044,-56.2472937396719,-56.2473118623516,-56.2473463934935,-56.2473880349691,-56.2474242269676,-56.2474471321137,-56.2474756001287,-56.2475030409473,-56.2475620580506,-56.2475761253055,-56.2475980699562,-56.2476549993161,-56.2477016433717,-56.247735260709,-56.2477530632235,-56.2477749411732,-56.2477947513898,-56.2478182701858,-56.2478335914206,-56.2478479054694,-56.2478618993531,-56.2478735053386,-56.2478779009389,-56.2478716377088,-56.2478589244856,-56.2478455242414,-56.2478335580701,-56.2478232594255,-56.2478300095734,-56.2478354323701,-56.2478265010973,-56.2477976929069,-56.247766857004,-56.2477552109979,-56.2477288440664,-56.2477140964607,-56.2476891169114,-56.2476548859243,-56.2476333281397,-56.2476024922369,-56.2475798872456,-56.2475459497431,-56.2475222508543,-56.2475163945007,-56.2475267731866,-56.2475399533173,-56.2475484310228,-56.2475640924331,-56.2476057339087,-56.2476392178439,-56.2476928921918,-56.2477331615891,-56.2477691782011,-56.24778975548,-56.2477976862368,-56.247811153182,-56.2478191706502,-56.2478115424188,-56.2478645930716,-56.24789611335,-56.2479127587406,-56.2479287407782,-56.2479710380106,-56.2480157762026,-56.248084871229,-56.2481305313084,-56.248175159973,-56.2482057233386,-56.2482386336446,-56.2482937820861,-56.2483731139633,-56.2484227619376,-56.2484545516657,-56.2485023963405,-56.2485488936536,-56.2485639147337,-56.2485836515792,-56.2486109123049,-56.2486327702443,-56.2486721105331,-56.2487012122082,-56.2487371574127,-56.248789851255,-56.248800363343,-56.2488016640138,-56.248812876463,-56.2488299919566,-56.2488399971165,-56.2488527570304,-56.2488847068411,-56.2489022092008,-56.2489231066449,-56.2489569974565,-56.2489953105489,-56.2490294948453,-56.2490725303732,-56.2490984704178,-56.2491172067472,-56.249144467473,-56.2491710678581,-56.249184701556,-56.2491987354604,-56.2492231413804,-56.2492249423092,-56.2492407104413,-56.2492656699802,-56.249292997407,-56.2493380406369,-56.2493578241731,-56.2493748262749,-56.2493816031032,-56.249396917668,-56.2494235180532,-56.2494497782629,-56.2494627449501,-56.2494829153525,-56.2495130242138,-56.249541378837,-56.2495646241585,-56.2495878961605,-56.2496149501129,-56.24964229755,-56.249666570068,-56.2496963587641,-56.2497223855201,-56.2497483722554,-56.24976993004,-56.2497911276388,-56.2498109578658,-56.2498369579414,-56.2498735834968,-56.2499040125231,-56.2499334143531,-56.2499700599188,-56.2500114946211,-56.2500583788004,-56.2500977190892,-56.2501432559071,-56.2501822693606,-56.250216140162,-56.2502561874821,-56.2502914456656,-56.2503232820845,-56.2503482416234,-56.2503790308356,-56.2504317246778,-56.2504775816607,-56.250526833728,-56.250574698413,-56.2506089093898,-56.2506622635726,-56.2507238686772,-56.250780664635,-56.2508001280061,-56.2508209854295,-56.2508391481298,-56.250859365223,-56.2508928691685,-56.2509294280228,-56.2509626318135,-56.2509876313731,-56.2510269249711,-56.2510662452496,-56.2511291510251,-56.251152736522,-56.2511807709801,-56.2512313970893,-56.25127586002,-56.2513299012237,-56.2513657997375,-56.2514006443745,-56.2514280451724,-56.2514646707278,-56.2515200726333,-56.2515631748623,-56.2515830250995,-56.2515984530561,-56.2516295891138,-56.2517034538744,-56.2525644045554,-56.2526100347547,-56.2526661703719,-56.2526781565535,-56.2527137349022,-56.2527684831372,-56.2528040548158,-56.2528373786684,-56.253024608561,-56.253146985007,-56.2532641515581,-56.2533506720641,-56.2533743603399,-56.2533019982847,-56.2536800199067,-56.2538653454434,-56.2540580181068,-56.2540648416329,-56.2540975669488,-56.2541512314078,-56.254161056702,-56.2542344312131,-56.2542448072083,-56.2546327186115,-56.2546963760944,-56.2547286683313,-56.2547751218632,-56.2548196176283,-56.2549161700214,-56.2549068262991,-56.2549185620027,-56.2549716326514,-56.2550728413454,-56.2552061293604,-56.2552934473774,-56.2553899996836,-56.2554147778138,-56.2555276795774,-56.2555977135646,-56.2559706794631,-56.256098959263,-56.2561155606818,-56.2560925988572,-56.2559774026346,-56.2557636745992,-56.2556957805002,-56.2555780738362,-56.255548971184,-56.2553722561786,-56.2553370268852,-56.2551311934161,-56.2548941800829,-56.2550129503183,-56.255109011026,-56.255206956369,-56.2553091081414,-56.2553518919913,-56.2553729380146,-56.2553674994736,-56.2553597296515,-56.2553903891083,-56.2554578543621,-56.2556298921956,-56.2559024662351,-56.2565464535438,-56.2570791700861,-56.2575842570514,-56.2580699705833,-56.2594589335737,-56.2598249700815,-56.260247052817,-56.2604610336989,-56.2605560817874,-56.2607569229801,-56.2609359286312,-56.2610067651634,-56.2610294235156,-56.2610101268972,-56.260966257606,-56.2609946789302,-56.2610890609388,-56.2612377709657,-56.2614710379341,-56.2617765688375,-56.2618604654385,-56.2619626981625,-56.2621669501672,-56.2622136275732,-56.2625494874515,-56.2629036057294,-56.2630948351103,-56.2631275848571,-56.263157901226,-56.2633402891303,-56.2633581015494,-56.2633873717191,-56.2634688043426,-56.2635530184442,-56.2636263193768,-56.2636372119107,-56.2636552601831,-56.2636858448916,-56.2637005739323,-56.2658539188129,-56.2660974206239,-56.2653150600679,-56.265288209838,-56.2650942583612,-56.2650922413686,-56.2650187641425,-56.2649849540599,-56.2649801667714,-56.2649748038746,-56.2649777311765,-56.2650580065808,-56.2651229825678,-56.265136103766,-56.2651312444124,-56.2651246973489,-56.2650844879045,-56.2650366693245,-56.2649988496741,-56.264946654395,-56.2648893741909,-56.2646167402533,-56.2643691421245,-56.2641872567082,-56.2643776203229,-56.2644202978036,-56.2644836258904,-56.2645434890017,-56.2648422098671,-56.2649359115247,-56.2650442073757,-56.2650512043175,-56.2650526917513,-56.2651396733715,-56.2652128903409,-56.2652225126656,-56.2653872718205,-56.2653932109007,-56.2653904792903,-56.2653938064633,-56.265453422031,-56.2655466186948,-56.2655597720065,-56.2657222298119,-56.2657229053674,-56.2657749952684,-56.2658900098702,-56.2659114194176,-56.2659244800152,-56.2660864390067,-56.2661130199941,-56.2662620071738,-56.2664978370497,-56.2664976070422,-56.2665979553499,-56.2666916036468,-56.2669806260363,-56.2670672106903,-56.2670820572822,-56.2665042003314,-56.2663385266008,-56.265301893393,-56.2645993581202,-56.2641892284863,-56.263832315014,-56.2629211287977,-56.2626868512282,-56.2626110795582,-56.262519205574,-56.2622408961686,-56.2620931308182,-56.2617481364544,-56.2615279581489,-56.2604617925674,-56.2598468389914,-56.2593409627728,-56.259238682322,-56.2588281946112,-56.2585130624811,-56.2581503086332,-56.2578686500683,-56.2575188071968,-56.2574045340673,-56.2571414984131,-56.2570296674057,-56.2567545337139,-56.2564297460446,-56.2560651880033,-56.2559504770825,-56.2557900853087,-56.2556138368053,-56.2552938855519,-56.2552794514412,-56.2550613307946,-56.2549558445488,-56.254386831094,-56.2534787761202,-56.2530457661392,-56.2529342819773,-56.2530424607926,-56.2528673395895,-56.2527707677607,-56.2527655057167,-56.2522040349325,-56.2517083497327,-56.251273045235,-56.2497965370953,-56.2478371399174,-56.2476757099971,-56.247700448993,-56.2473223736235,-56.2472441196895,-56.2471590921426,-56.2470582582281,-56.2469293183972,-56.2468419199903,-56.2467844436816,-56.2466968251612,-56.2465621957294,-56.246484969235,-56.2464003819521,-56.2462731599996,-56.2461744357516,-56.2460822066491,-56.2460705745218,-56.2460456840385,-56.2460115114838,-56.2460002872684,-56.2459825966087,-56.2459691561381,-56.2459464719065,-56.2458829320824,-56.2458410971737,-56.2457416681649,-56.2455657551728,-56.2454073268006,-56.245302119209,-56.2451280160862,-56.2449951475625,-56.2449601561832,-56.2448103255784,-56.2446811789742,-56.2446194204571,-56.244531448421,-56.2444384871452,-56.2444025886314,-56.2443250953328,-56.24425604151,-56.2441803471721,-56.2441649327328,-56.2441474650792,-56.2441059222996,-56.244069501715,-56.243982507459,-56.24397179867,-56.2438954604257,-56.2435828058484,-56.2434846685698,-56.2432831312986,-56.2431611817394,-56.2422939911737,-56.2421654184502,-56.2420617781912,-56.2421008282005,-56.2422190091702,-56.2424168870386,-56.2426945810234,-56.2427309473311,-56.2430815909608,-56.2432286283499,-56.243739873976,-56.2441664050108,-56.2445533545898,-56.2446572454505,-56.244922544494,-56.2456261935297,-56.2456429448824,-56.2457741550035,-56.2457957944228,-56.2464948380615,-56.2465007496566,-56.2467800120172,-56.2472239308626,-56.247374604977,-56.2473509602522,-56.2474657249045,-56.2474637022103,-56.2474988498167,-56.2477329219,-56.2478427216117,-56.2477554278146,-56.2477286871337,-56.2475842416771,-56.2475962414875,-56.2476402926836,-56.2476082795315,-56.2475864667118,-56.2475487615468,-56.2473974118975,-56.2472825552799,-56.2472285198455,-56.2470006077602,-56.2469433623594,-56.2468565985439,-56.2468432365563,-56.2468461097091,-56.2467396563536,-56.246738861693,-56.2468638676303,-56.2468529873001,-56.246733390668,-56.2465119234337,-56.2459831323283,-56.2457650868717,-56.2445266310044,-56.2443068129865,-56.2443010640419,-56.244176237704,-56.244163862311,-56.2441909374381,-56.2442508396871,-56.2441603045992,-56.2439928706411,-56.2439351008658,-56.2439747697515,-56.2440674073303,-56.2442533577968,-56.2442765595474,-56.2443090115766,-56.2438256352046,-56.2438043892521,-56.2443767688145,-56.2443879215739,-56.2442571945601,-56.2442969562231,-56.244442993297,-56.2444497131545,-56.2446081813275,-56.2446078526936,-56.244611796507,-56.2446916582359,-56.2446544154424,-56.244629976387,-56.2446613019785,-56.2450908274955,-56.2450972422523,-56.2449098776691,-56.2448725252145,-56.2449979629011,-56.2450136107736,-56.2448656101527,-56.244843231058,-56.2447684640561,-56.2448571321135,-56.2450521695451,-56.2450579408677,-56.2450036530982,-56.2450162384396,-56.2450531975004,-56.2450327432797,-56.2449828573888,-56.2447497594297,-56.2444328234821,-56.2444080333649,-56.2448904495334,-56.2449301827799,-56.2449495591484,-56.244886251073,-56.244889734079,-56.2447824122857,-56.2445733349189,-56.2446177466387,-56.2447962520913,-56.2447826768918,-56.2447856387694,-56.2447202871661,-56.2445898290758,-56.2442689755249,-56.2441672505471,-56.2440534216336,-56.2433713080719,-56.2433636678138,-56.2433465476827,-56.2433339832194,-56.244953532154,-56.244839630523,-56.2430776634388,-56.2430566915851,-56.2444492645282,-56.2443717467772,-56.2442904703345,-56.2441960468823,-56.2440181222089,-56.2438507674801,-56.2438295506537,-56.2439952179696,-56.2441292524288,-56.2440994142342,-56.2439111486881,-56.2438493392883,-56.2439913210211,-56.2440190423372,-56.244141771126,-56.2441575111555,-56.2441523720144,-56.244074393082,-56.2441139119334,-56.2437876049956,-56.2435846720338,-56.2435353958295,-56.2438265403665,-56.2439161638084,-56.2443142378108,-56.2446506256565,-56.2447061185028],&#34;lat&#34;:[-34.8905830132787,-34.8912136180717,-34.8913542583211,-34.8914977937201,-34.8916292078522,-34.8916810877097,-34.8916448896928,-34.8916963324231,-34.891820261542,-34.8924241410297,-34.8926532709358,-34.892639002104,-34.8926177736821,-34.8926618317234,-34.8928223607213,-34.8928741689763,-34.8930023218941,-34.8935502131099,-34.893764092453,-34.8939330825211,-34.8940155747046,-34.8939805259329,-34.8940397105199,-34.8941180585993,-34.8941988598457,-34.8942774495175,-34.8944777931399,-34.8945823158795,-34.8946783782771,-34.8947615257165,-34.8947487831088,-34.894726579542,-34.8948497826491,-34.8949085879341,-34.8948983682719,-34.8949619728588,-34.8950625931306,-34.895064352028,-34.8950145591722,-34.8950694961508,-34.8950790258011,-34.8951202888399,-34.8951549251809,-34.8952181159524,-34.8953702186752,-34.8953618267328,-34.8952803692974,-34.8953356164001,-34.8953501518545,-34.8953439437928,-34.8952866159432,-34.8952179362811,-34.8952035386826,-34.895117419734,-34.8951033667456,-34.8949936308335,-34.8947164562376,-34.8944420475655,-34.8943287531098,-34.8943793042889,-34.8944982249853,-34.8945261584986,-34.8944948383262,-34.8944084091156,-34.8943212220827,-34.8941986391375,-34.8940891789521,-34.8939608668149,-34.8936748169304,-34.8935663210273,-34.8933664589385,-34.8931339630354,-34.8928008784712,-34.8926683394668,-34.892440270783,-34.8921514159752,-34.892118840165,-34.8921583290427,-34.892100671499,-34.8920945280002,-34.892179103979,-34.8923859405864,-34.8927208281248,-34.893400115297,-34.8937526984544,-34.8941679006518,-34.8942211368283,-34.8942214005215,-34.8942850273701,-34.8944228943383,-34.8944688789858,-34.8945049150705,-34.8945545423312,-34.8945680101102,-34.8945724832504,-34.8945814562114,-34.8945994504915,-34.8946129466185,-34.8946309750829,-34.8946445362434,-34.8946536059208,-34.8946626455828,-34.8946717019201,-34.8946897453922,-34.8946987216882,-34.8946896553458,-34.8946806131825,-34.8946760683386,-34.8946669953261,-34.8946669319601,-34.8946668811005,-34.8946848762144,-34.8946939167101,-34.8947029747149,-34.8947346560538,-34.8947526911883,-34.894775227811,-34.8948022450778,-34.8948112230413,-34.8948134774711,-34.8948553961886,-34.8948787820499,-34.8948923223663,-34.8949104116955,-34.894919473869,-34.8949330341958,-34.8949465353253,-34.8949600039381,-34.8949644762446,-34.8949643920345,-34.8949643119932,-34.8949642736401,-34.8949687459466,-34.8949731965752,-34.8949776513727,-34.8949730464978,-34.8949775104667,-34.8949865084405,-34.8950045227309,-34.8950180230267,-34.8950352087454,-34.8951271757518,-34.8951486829593,-34.8952241654626,-34.895262481604,-34.8953353310922,-34.8953201135124,-34.8953332005718,-34.8953556829999,-34.8953730110786,-34.8954998423466,-34.8955042712974,-34.8955086844067,-34.8955131367028,-34.8955265953105,-34.8955355582662,-34.8955445045467,-34.895559365252,-34.8957381145038,-34.896079074236,-34.896104661555,-34.8961137282014,-34.896088063177,-34.8960215391751,-34.8958759379088,-34.8957593577663,-34.8957309426364,-34.8957359921536,-34.8957592974588,-34.8957356886522,-34.8956639517147,-34.8956507460048,-34.8956597273034,-34.8956731917473,-34.895700170661,-34.8957136459439,-34.8957225855543,-34.8957404939568,-34.895749423562,-34.8957583781801,-34.895771807606,-34.895785177001,-34.8957851094662,-34.8957895500896,-34.8957985113779,-34.895807469331,-34.8958119207934,-34.8958118465885,-34.8958207803625,-34.8958297249755,-34.8958251651239,-34.8958206086073,-34.8958250525658,-34.8958384736541,-34.8958474107632,-34.8958563712177,-34.8958563270282,-34.8958562628284,-34.8958652107764,-34.8958741954101,-34.8958877257213,-34.8959013344063,-34.895905960959,-34.8959105975169,-34.8959090988667,-34.895906242771,-34.8959051788847,-34.89590736454,-34.895943348565,-34.8960146437116,-34.8960239593138,-34.8960509632404,-34.8960779538268,-34.8960914466187,-34.8961004145771,-34.8961138556756,-34.896127329291,-34.896140811244,-34.8961422113752,-34.8961451476471,-34.8961360846397,-34.8961225368194,-34.8961000293784,-34.8960910372409,-34.8960550155795,-34.896054430348,-34.8960642584304,-34.8960102997692,-34.8959967194322,-34.895986244083,-34.8959875597083,-34.8959879629264,-34.8959963602653,-34.8960276197587,-34.8960366294768,-34.8960144359395,-34.8960277646096,-34.8960415118629,-34.8960322094019,-34.89601417927,-34.8959691015089,-34.8959556375814,-34.8959650137219,-34.8959779764326,-34.8959915292554,-34.8960186165584,-34.8960321410333,-34.8960456404953,-34.8960546351341,-34.896113142808,-34.8961176142807,-34.8961130219123,-34.8961039222194,-34.8960903202045,-34.896076727361,-34.8960586130189,-34.8960495508453,-34.8960359746771,-34.8960313923139,-34.896040332758,-34.8960538230486,-34.8960673391859,-34.8960853918295,-34.8960989304783,-34.8961169539402,-34.8961304517347,-34.8961323901641,-34.8961322282951,-34.8961383032035,-34.896137642736,-34.8961880439167,-34.8962129513962,-34.8962389627956,-34.8962680680052,-34.8963433014697,-34.8963555864961,-34.89629864591,-34.8962598542091,-34.896236103161,-34.8962357429303,-34.8962540125236,-34.8962121420504,-34.8961987234324,-34.896179078732,-34.8961953076825,-34.8962042456254,-34.8962131702281,-34.8962220314647,-34.8962264754232,-34.8962264103897,-34.8962173190344,-34.8962037987283,-34.8961903401206,-34.8961723775235,-34.8961633845523,-34.8961543082047,-34.8961497425168,-34.8961451734937,-34.896136072967,-34.8961314981076,-34.8961314380767,-34.8961313238511,-34.8961176651403,-34.8961085312631,-34.8961084553906,-34.896126388806,-34.8961443255564,-34.8961891978649,-34.8961981658232,-34.8962116144257,-34.8962474812564,-34.8962788741132,-34.8963012973441,-34.8963057446377,-34.8963056729341,-34.896301100576,-34.8962875018961,-34.8962739298967,-34.8962648685569,-34.8962603145416,-34.8962557688639,-34.8962467408746,-34.8962242275973,-34.8962107489793,-34.8961972720289,-34.8961973120496,-34.8961883324186,-34.8961702831101,-34.8961612501182,-34.8961522671521,-34.8961343345705,-34.8961209159835,-34.8961164478458,-34.8961075215757,-34.8960985561186,-34.8960941321704,-34.8960852317469,-34.896080796126,-34.896067377539,-34.8960584387624,-34.8960405236898,-34.8960180679421,-34.8960090733034,-34.8959639700425,-34.8959323779163,-34.8959188292622,-34.895905256429,-34.8958915977182,-34.8958869795031,-34.8958868019115,-34.8958866315113,-34.8958955622628,-34.8959090150341,-34.8959225094935,-34.8959495059163,-34.8959810280064,-34.8960117619316,-34.8960432515516,-34.8960444771149,-34.8960787059661,-34.896091724513,-34.8960672254157,-34.8961046434003,-34.8961075469268,-34.8961255967299,-34.8960932489472,-34.8960969244438,-34.8961148428514,-34.8961371943787,-34.8961365665549,-34.896154793455,-34.8961546884008,-34.8961500226612,-34.8961498675812,-34.8961453110647,-34.8961272175667,-34.8961090990559,-34.8961045200277,-34.8961088956176,-34.8961178127164,-34.8961267073036,-34.8961355460286,-34.8961174833799,-34.8961039580712,-34.8960904002457,-34.8960948500406,-34.8961128443207,-34.896135336754,-34.8961667796366,-34.8961802415792,-34.8961891861922,-34.8961980874495,-34.8962024663744,-34.8962023529826,-34.8961931949263,-34.8961840952333,-34.8961705115612,-34.8961523938841,-34.8961387843653,-34.8961297255268,-34.8961341853268,-34.896161145064,-34.8961791676921,-34.8961881289803,-34.896188045604,-34.896183448233,-34.8961652705249,-34.8961561908423,-34.8961381065158,-34.8961245628643,-34.8961109908649,-34.8960973813461,-34.8960837734948,-34.8960792236483,-34.8960791561135,-34.8960835625527,-34.8960789618467,-34.8960788843067,-34.8960833132575,-34.8960922370264,-34.8960921461462,-34.8960920652711,-34.8961009798686,-34.8961099069725,-34.8961098202611,-34.8961142550483,-34.8961141841784,-34.8961141183111,-34.8961185389243,-34.8961274301764,-34.8961273284572,-34.8961272309069,-34.8961406294836,-34.896154011385,-34.8961628692866,-34.8961672448765,-34.8961806134377,-34.8961894980197,-34.8961938919524,-34.8962027715318,-34.8962116677865,-34.8962205757139,-34.8962204923376,-34.8962248962755,-34.8962337341667,-34.8962425954034,-34.8962469376428,-34.8962467775602,-34.8962511698254,-34.8962554987246,-34.8962688139249,-34.8962776368084,-34.8962730661179,-34.8962729960818,-34.8962819490324,-34.8962908953128,-34.8962907835886,-34.8962861545346,-34.8962950574594,-34.8963039870646,-34.896299349673,-34.8962992179384,-34.89629900783,-34.8962989277887,-34.8962988344072,-34.8963031716441,-34.8963075305587,-34.8963118561229,-34.896311736061,-34.8963071120096,-34.8963160349447,-34.8963249261968,-34.8963292467583,-34.8963336106756,-34.8963380496315,-34.8963470125873,-34.8963514148577,-34.8963556753883,-34.8965202636039,-34.8965419247752,-34.8965552583183,-34.8965597239547,-34.8965641112173,-34.8965729424384,-34.8965773297011,-34.8966087659135,-34.8966532054988,-34.896672735571,-34.8967270766825,-34.8955686283082,-34.8954716700861,-34.8954354066154,-34.8954837106938,-34.8946113008556,-34.8937453624522,-34.8937154780336,-34.8936463077893,-34.8933655225789,-34.8933015811508,-34.892959165,-34.8928342729195,-34.8928869392571,-34.8925962741257,-34.8925019933794,-34.8924795849994,-34.8924806379949,-34.8924843507055,-34.8921558243657,-34.8921145450868,-34.8920048605386,-34.8920171839879,-34.8920381458022,-34.8920558511124,-34.8920782204309,-34.8920858622421,-34.8921329919598,-34.89216238232,-34.8923339081492,-34.8924157002269,-34.8925244498376,-34.8925700607837,-34.8927010904615,-34.8928772127059,-34.892932328197,-34.8929871385982,-34.8930031467097,-34.8930076203894,-34.8930042377105,-34.8929844735923,-34.8929302392815,-34.8929946705689,-34.8930429474631,-34.8930921713761,-34.8931305786176,-34.8931719557479,-34.8932309791724,-34.8934415527219,-34.8937268842822,-34.8939028466085,-34.894092016758,-34.8941558150837,-34.8942658271101,-34.8945257395123,-34.894700407508,-34.8947930946803,-34.89483788846,-34.8948872389113,-34.8948457169086,-34.8947041453876,-34.894569097855,-34.8945151362571,-34.8943194377484,-34.894021368193,-34.8937642314143,-34.8934441630135,-34.8932098696825,-34.8928494663132,-34.8925203640867,-34.8921865294197,-34.8918480006651,-34.891531716716,-34.8912422265852,-34.891201376351,-34.8912055318275,-34.891303982601,-34.891272273748,-34.8910998564947,-34.8908295559031,-34.8906804230511,-34.8906501893255,-34.8906186750037,-34.8904143209018,-34.8903850656063,-34.8903369919345,-34.8902132835142,-34.8900161490894,-34.8896418918093,-34.8895767930428,-34.8894255483305,-34.8892636591969,-34.8892717519741,-34.8898564672714,-34.8899554281895,-34.889406392418,-34.8893875495622,-34.8891992781737,-34.8891951996901,-34.8890466239082,-34.8889204874637,-34.8888716062681,-34.8888168476915,-34.8887047886404,-34.8886814278822,-34.8886428720405,-34.888619164436,-34.8885817169492,-34.8885586261228,-34.8885242036021,-34.8885070234993,-34.8884998397176,-34.8885114471761,-34.8880451131687,-34.8873384695678,-34.886891446575,-34.8868689115559,-34.8859729270105,-34.8857246251774,-34.8854295393165,-34.8851100327274,-34.8834281839752,-34.8829834963572,-34.8824695181344,-34.8824334385637,-34.8824259388105,-34.8820072668663,-34.8816253887391,-34.8815720238413,-34.8807682703722,-34.8807311710938,-34.8807301010465,-34.8807248538811,-34.8803690265873,-34.8798127572979,-34.8797472301076,-34.8789125897887,-34.8788366282611,-34.8786332168998,-34.8779502208958,-34.8778985554273,-34.8778433865619,-34.8770639901718,-34.8769018604082,-34.8761672741307,-34.8751452374561,-34.8751155355658,-34.8747392664198,-34.8742702211878,-34.8728405213551,-34.8723940344236,-34.8723213823549,-34.8725383221699,-34.8726120581153,-34.8730384934344,-34.8733450030605,-34.8735113440245,-34.8736756959071,-34.8740656326161,-34.8737365933595,-34.8736821587002,-34.8736554039874,-34.873603878745,-34.8736034818578,-34.8735490286866,-34.8735350613146,-34.8733934207394,-34.8732627355972,-34.8732040926163,-34.8731922356351,-34.873163136427,-34.8731337106598,-34.8730982508585,-34.8730559970021,-34.8730136143138,-34.8729997701504,-34.872964441097,-34.8729512993194,-34.8729161715784,-34.8728685221583,-34.8728173344883,-34.8728038243139,-34.8727814956005,-34.8727536351127,-34.8727092936776,-34.8727093503735,-34.8726785786298,-34.8726636968288,-34.8725816528499,-34.8724585160118,-34.8723968742216,-34.8723837274414,-34.8716958963433,-34.8716820826369,-34.8723503015188,-34.8723479538099,-34.8723155805061,-34.8722571371556,-34.8722135246635,-34.8720066279616,-34.8717382195365,-34.8717162198573,-34.871648625231,-34.8715972969521,-34.8716019691787,-34.87166332285,-34.8717019208163,-34.8717961936018,-34.8718205695065,-34.8718052040821,-34.871882277164,-34.8718699249603,-34.8719554949243,-34.8719881418705,-34.8720372437509,-34.8721089407269,-34.8721448337199,-34.8721353132871,-34.8721269704136,-34.8721307477907,-34.8721323578848,-34.8721446359559,-34.8721657588006,-34.8721948028851,-34.8722221057556,-34.8722351082947,-34.8722601527174,-34.8722720340049,-34.872301019787,-34.8722986852497,-34.8723069361715,-34.872322360793,-34.8723828319796,-34.8724387800001,-34.8724903941188,-34.8725631141224,-34.8725676698052,-34.8726106327956,-34.8726790022222,-34.8727091169198,-34.8726873565515,-34.8727251005003,-34.872769363824,-34.8728347626814,-34.8728669066293,-34.872908068472,-34.872974098135,-34.8731643313176,-34.8732475295929,-34.8734282744744,-34.8734850070662,-34.8736941432564,-34.8737830849592,-34.8744155669797,-34.8747177019276,-34.8750601756563,-34.875498192561,-34.8758084540772,-34.8761598665208,-34.8763601265022,-34.8763875121224,-34.8763645829879,-34.8761143719559,-34.8760233807139,-34.8760323112476,-34.8762042264987,-34.876506223635,-34.8766522692386,-34.8768731698449,-34.876864864301,-34.8768801110833,-34.8768806889997,-34.877082453083,-34.8770788316131,-34.8771014994168,-34.8774559965776,-34.8776495531762,-34.8780137169495,-34.8782447383709,-34.8784666619008,-34.8785129416504,-34.8784767029625,-34.8786951308832,-34.8787950901312,-34.8789414862058,-34.8791792782573,-34.8795352876423,-34.8797198090187,-34.8798871097713,-34.8800502861679,-34.8802845512088,-34.8803317702955,-34.8804449584395,-34.8805752729687,-34.8806040113382,-34.880640506504,-34.88088381406,-34.8809212842958,-34.8810519511794,-34.8811350410567,-34.8812221355191,-34.8813334592085,-34.8816348896674,-34.8818217473601,-34.8820347733914,-34.8823091926096,-34.8823517399299,-34.8821933012645,-34.8822254348133,-34.8822263729707,-34.882291762799,-34.8822982455914,-34.8824491627984,-34.8825667843228,-34.8826868205699,-34.8827695288371,-34.8828629688641,-34.8829704147556,-34.8830647901105,-34.883179845365,-34.8832372496685,-34.8833175402872,-34.8832743349024,-34.8833747019815,-34.8834653603364,-34.8835793287892,-34.8836488656474,-34.8837462620791,-34.8837806695399,-34.8839348101227,-34.8839897066918,-34.883993665017,-34.8839927669293,-34.8841507119298,-34.8841970020988,-34.8842273780882,-34.8843582217191,-34.8845116385752,-34.8846992769582,-34.8847383130133,-34.8848218303486,-34.8848862589588,-34.8849533556182,-34.8851333349602,-34.885357644182,-34.8855313783383,-34.885615678496,-34.8856269397941,-34.8858849235908,-34.8860420351886,-34.8860840834822,-34.8862326901225,-34.8864174128505,-34.8865377020573,-34.8866870028801,-34.8866682835525,-34.886711679116,-34.8868620754624,-34.8869628214478,-34.8870667909538,-34.8873209956404,-34.887384666754,-34.8875615485982,-34.8877511979308,-34.8877849736332,-34.8878262823922,-34.8879769468055,-34.8880975642035,-34.8881306579041,-34.8881700469457,-34.8881345529533,-34.8881439704184,-34.8881432626135,-34.8880452196893,-34.8880406206372,-34.8880852652336,-34.8881253866869,-34.8884101545422,-34.8888616932166,-34.8885894369854,-34.8886596557971,-34.8888693174714,-34.8888989853858,-34.8888951301681,-34.8889950422716,-34.8888900867782,-34.8889627452608,-34.8890597624522,-34.8891713419321,-34.8891855753275,-34.8893361384958,-34.8894723164702,-34.8895623812261,-34.8895967640382,-34.8896773357462,-34.8895943496595,-34.889651397039,-34.8897686140715,-34.8898485284827,-34.8899727231522,-34.8900879426297,-34.8900498303453,-34.8901031232392,-34.890275783199,-34.8902562408579,-34.8902955658702,-34.8904115556157,-34.8905830132787]}]],[[{&#34;lng&#34;:[-56.3556231747956,-56.3515790088226,-56.3451289094162,-56.344503613043,-56.3403431075348,-56.3395910799038,-56.3336360216468,-56.3334581832313,-56.3297962329481,-56.3291718796572,-56.3274086503147,-56.3211747130629,-56.3190460441714,-56.3170963319883,-56.3152571370977,-56.314870272716,-56.3131270555737,-56.3118104192411,-56.3113910162776,-56.3099961369026,-56.3068342262244,-56.3008085586334,-56.2989870725798,-56.2917625039077,-56.2910945723533,-56.2907788897276,-56.2907610348562,-56.2907285347879,-56.2906889186399,-56.2906381346846,-56.2905885190044,-56.2904158236594,-56.2897606970584,-56.2899237115777,-56.2900978009922,-56.2902089053901,-56.2902139555942,-56.2903298521415,-56.2903980872565,-56.2903596921627,-56.2903334817669,-56.2897876790965,-56.2896050736959,-56.2885634768648,-56.2884739707042,-56.2877276191249,-56.2873522522052,-56.2869701951686,-56.286966213115,-56.2868487125169,-56.286579186849,-56.2861714165514,-56.2857776134571,-56.2857586903646,-56.285728247998,-56.2842130198895,-56.283855867529,-56.2830934688189,-56.2825936703958,-56.2823666564034,-56.2821187745512,-56.2820934944316,-56.2817075530625,-56.2814774955979,-56.2808868529889,-56.2807321208345,-56.2807216636504,-56.280469961421,-56.2788351599156,-56.2777602787124,-56.2767037582764,-56.2762312436901,-56.2760540473589,-56.2742034760941,-56.2727474639901,-56.2726187203774,-56.2723076745701,-56.2718626740872,-56.2716481669088,-56.2714568515104,-56.2710802173262,-56.2707914729084,-56.2706453104601,-56.2703186323076,-56.2699878784084,-56.2698324629532,-56.2696997620726,-56.2696099357731,-56.2695373983192,-56.2693094631937,-56.2691327717003,-56.2688079651153,-56.268534953971,-56.2683961560614,-56.2682362602198,-56.2680638780304,-56.2670828787707,-56.2670672106903,-56.2669806260363,-56.2666916036468,-56.2665979553499,-56.2664976070422,-56.2664978370497,-56.2662620071738,-56.2661130199941,-56.2660864390067,-56.2659244800152,-56.2659114194176,-56.2658900098702,-56.2657749952684,-56.2657229053674,-56.2657222298119,-56.2655597720065,-56.2655466186948,-56.265453422031,-56.2653938064633,-56.2653904792903,-56.2653932109007,-56.2653872718205,-56.2652225126656,-56.2652128903409,-56.2651396733715,-56.2650526917513,-56.2650512043175,-56.2650442073757,-56.2649359115247,-56.2648422098671,-56.2645434890017,-56.2644836258904,-56.2644202978036,-56.2643776203229,-56.2641872567082,-56.2643691421245,-56.2646167402533,-56.2648893741909,-56.264946654395,-56.2649988496741,-56.2650366693245,-56.2650844879045,-56.2651246973489,-56.2651312444124,-56.265136103766,-56.2651229825678,-56.2650580065808,-56.2649777311765,-56.2649748038746,-56.2649801667714,-56.2649849540599,-56.2650187641425,-56.2650922413686,-56.2650942583612,-56.265288209838,-56.2653150600679,-56.2660974206239,-56.2658539188129,-56.2636858448916,-56.2636552601831,-56.2636372119107,-56.2636263193768,-56.2635530184442,-56.2634688043426,-56.2633873717191,-56.2633581015494,-56.2633402891303,-56.263157901226,-56.2631275848571,-56.2630948351103,-56.2629036057294,-56.2625494874515,-56.2622136275732,-56.2621669501672,-56.2619626981625,-56.2618604654385,-56.2617765688375,-56.2614710379341,-56.2612377709657,-56.2610890609388,-56.2609946789302,-56.260966257606,-56.2610101268972,-56.2610294235156,-56.2610067651634,-56.2609359286312,-56.2607569229801,-56.2605560817874,-56.2604610336989,-56.260247052817,-56.2598249700815,-56.2594589335737,-56.2580699705833,-56.2575842570514,-56.2570791700861,-56.2565464535438,-56.2559024662351,-56.2556298921956,-56.2554578543621,-56.2553903891083,-56.2553597296515,-56.2553674994736,-56.2553729380146,-56.2553518919913,-56.2553091081414,-56.255206956369,-56.2550129503183,-56.2548941800829,-56.2551311934161,-56.2553370268852,-56.2553722561786,-56.255548971184,-56.2555780738362,-56.2556957805002,-56.2557636745992,-56.2559774026346,-56.2560925988572,-56.2561155606818,-56.256098959263,-56.2559706794631,-56.2555977135646,-56.2555276795774,-56.2554147778138,-56.2553899996836,-56.2552934473774,-56.2552061293604,-56.2550728413454,-56.2549716326514,-56.2549185620027,-56.2549068262991,-56.2549161700214,-56.2548196176283,-56.2547751218632,-56.2547286683313,-56.2546963760944,-56.2546327186115,-56.2542448072083,-56.2542344312131,-56.254161056702,-56.2541512314078,-56.2540975669488,-56.2540648416329,-56.2540580181068,-56.2538653454434,-56.2536800199067,-56.2533019982847,-56.2533743603399,-56.2533506720641,-56.2532641515581,-56.253362654736,-56.2534949311184,-56.2535965702029,-56.2536329156139,-56.2537923111515,-56.2539376727849,-56.2540272256363,-56.2541133834034,-56.2542253211325,-56.2544165730994,-56.2544508040865,-56.2544743762433,-56.2544719283142,-56.2544274453732,-56.2544285059201,-56.2544520647367,-56.2544995825762,-56.2546266014164,-56.2546359929265,-56.2545736607802,-56.2545738075226,-56.2545937444712,-56.254703280962,-56.2547340301535,-56.2547871842331,-56.2547927337618,-56.2547540404733,-56.2547707624306,-56.2548818330459,-56.2549261092136,-56.2549249686253,-56.2548835405932,-56.2548408385706,-56.2548592013741,-56.2549270563687,-56.2549973726326,-56.2550792481912,-56.2551547537981,-56.2553051180114,-56.2554452236008,-56.255500545465,-56.2555750972466,-56.2555983625785,-56.2555868366343,-56.2555584753409,-56.2554332974502,-56.255203739061,-56.2551583089649,-56.2551232909052,-56.2551000389136,-56.2550928218582,-56.2551434079467,-56.2552149181597,-56.2553197388851,-56.2553470062809,-56.2554054564252,-56.2554214446707,-56.2553952178115,-56.255246907991,-56.255202671844,-56.2551637184214,-56.2551505382907,-56.2551447553083,-56.2551860632785,-56.2552334299346,-56.255274682315,-56.2551956749021,-56.2551210097287,-56.255121836822,-56.2551571083457,-56.255225943846,-56.2553111677981,-56.2553702649427,-56.2553527559128,-56.2552787444099,-56.255178814774,-56.2551095304753,-56.2550717910121,-56.2550530947032,-56.2550567032309,-56.2550957767154,-56.2551470765054,-56.2552254169075,-56.2553175844407,-56.2554168556374,-56.2554909538517,-56.2555791593416,-56.2555952679207,-56.2556567927124,-56.2556936396773,-56.2557378723858,-56.2557960178477,-56.2558486959882,-56.2557594323129,-56.2557248678205,-56.2557143716579,-56.2557433773663,-56.2557481868522,-56.2556482403583,-56.2556083077074,-56.2555889577282,-56.2555881506453,-56.255597141949,-56.2556497757602,-56.255726275213,-56.2557707381436,-56.2558431554911,-56.2559298023507,-56.2559600527875,-56.2559486365571,-56.2559406591096,-56.2558971863261,-56.2558580808015,-56.2558504281137,-56.2558995005835,-56.2560241713806,-56.256047032935,-56.256080564154,-56.2561227730304,-56.2560894353013,-56.2560444392983,-56.2560846115491,-56.2561254517768,-56.2561627536494,-56.256215548221,-56.2562640728127,-56.2562959556784,-56.2562936344813,-56.2562790850762,-56.2562867576014,-56.2562968990253,-56.2563282881393,-56.2563698871401,-56.2564890952855,-56.2565661793927,-56.2566066825949,-56.2565382539712,-56.2564555246389,-56.2563957471434,-56.2564055382377,-56.2563881098714,-56.2563877802295,-56.2564279704285,-56.2564597302471,-56.256494324649,-56.2565276757635,-56.2565660082848,-56.2565974758771,-56.2566457160588,-56.2566900893978,-56.2567434264506,-56.2567915607643,-56.2568903755693,-56.2569930551905,-56.2570234935999,-56.2570349234497,-56.2570715854408,-56.2571107825722,-56.2571446878513,-56.2571989213609,-56.2572496314862,-56.2573049293653,-56.2573692799643,-56.2574097300804,-56.2573668056475,-56.2573371259699,-56.2573264482361,-56.2573502794202,-56.2573972657903,-56.2574226700872,-56.2574518670836,-56.2574817939122,-56.2575793909122,-56.2576438707521,-56.2576724388994,-56.257703041996,-56.2577078104747,-56.2578065070771,-56.25801445619,-56.258146170793,-56.2584559804881,-56.2585404212909,-56.2585515131384,-56.2582610837294,-56.2581677882722,-56.2581359745397,-56.2581168953881,-56.2581054755608,-56.258144969262,-56.2581583228155,-56.258177125846,-56.2581919401528,-56.2582037595817,-56.2582028618206,-56.2582048637407,-56.2582028057565,-56.2581119920089,-56.2571771219756,-56.2574001575526,-56.2571845662537,-56.257143457941,-56.2571430600279,-56.2573516161789,-56.2574645870332,-56.2573529459482,-56.2569135368125,-56.2569194019226,-56.2576210962487,-56.2577029153528,-56.257432561834,-56.2565059969242,-56.2561958547162,-56.2561480610469,-56.2564611240184,-56.2569339535024,-56.2569426927022,-56.2568022498774,-56.2567675913707,-56.2567547370443,-56.2567357131679,-56.2567354789601,-56.2567164316516,-56.2566911679568,-56.2566531435832,-56.256154905949,-56.256088368957,-56.2564662233661,-56.2565192264625,-56.2564116657254,-56.2563514150435,-56.255613507233,-56.2555659233821,-56.2555687265661,-56.2556095781051,-56.2565423975605,-56.2565921992125,-56.2566246795526,-56.2567718439026,-56.2568152187669,-56.2568436379379,-56.2568563753625,-56.2568657703582,-56.2571695478851,-56.2571756239651,-56.2573812190597,-56.257362475803,-56.2573910821157,-56.2586253704666,-56.2588430697618,-56.2588894148472,-56.2587527893105,-56.2574459313511,-56.2574176759846,-56.2572910045034,-56.2572782437272,-56.2572842730451,-56.2563285539531,-56.2562880298197,-56.256215204748,-56.2562022796449,-56.2562362122889,-56.2562708246775,-56.2571252544946,-56.2571911837543,-56.2572001340735,-56.2572846663652,-56.2574708172848,-56.2575369299783,-56.2576315636517,-56.257846344418,-56.2579221136002,-56.258148205454,-56.2581655117776,-56.2582459669651,-56.2583434246588,-56.2583494587879,-56.2584156883174,-56.2585349048301,-56.2585758044555,-56.2588182342289,-56.2589004773917,-56.2591466696409,-56.2592100286988,-56.2593614740932,-56.2594342517179,-56.2595862103985,-56.2596839254788,-56.2597505793579,-56.2598418909076,-56.2599084280739,-56.2599526229101,-56.2600349355443,-56.2601580313497,-56.2602842822511,-56.2603475708576,-56.2603852689797,-56.260423223487,-56.260455007604,-56.2605597319362,-56.2605859047987,-56.2605673470275,-56.2605647511661,-56.2605864312186,-56.2607381314778,-56.2607137527871,-56.2605905416167,-56.2606021175211,-56.2605708232571,-56.2603655814926,-56.2603154502197,-56.2603091867275,-56.260151410693,-56.2599060394153,-56.259844127874,-56.2598382609236,-56.2599312030588,-56.2598908638852,-56.2599198188915,-56.2599329398036,-56.2599652252528,-56.2600064504687,-56.2600161487207,-56.2600478855072,-56.2600576303722,-56.2601463440465,-56.2601312683392,-56.260179036554,-56.260391215101,-56.2604512535843,-56.2605140742474,-56.2606560732276,-56.2607766393014,-56.2607802601695,-56.2607961982672,-56.2608689498111,-56.2609070428064,-56.260989003158,-56.2611123278751,-56.2611572662437,-56.2611236088778,-56.261167406468,-56.2612084328267,-56.2612897182771,-56.2613301645458,-56.2613606910184,-56.2614012682544,-56.2614570058367,-56.2615229999652,-56.2615487535153,-56.2615136412458,-56.2615624438711,-56.2616540229978,-56.2617432342736,-56.261788771353,-56.2619073684524,-56.2619453908506,-56.2620011844539,-56.2620418924579,-56.2620438344893,-56.2620358542979,-56.2620815221956,-56.2621854448845,-56.2623303183465,-56.2624194542962,-56.262447612541,-56.262559330114,-56.2625817624681,-56.262683615921,-56.2627569377023,-56.2627951467196,-56.2628540363045,-56.2628843943744,-56.262896533281,-56.2629781353558,-56.2629965597953,-56.2630324379584,-56.2630225737092,-56.2630380327112,-56.2631805184876,-56.2632745578196,-56.2633508074027,-56.2634773116852,-56.2634871760986,-56.2634741786882,-56.2634891711885,-56.2635546797156,-56.2636283187227,-56.2636514789641,-56.2637204374125,-56.2639112383122,-56.2640911118719,-56.2642346048807,-56.2643577725318,-56.2644591778324,-56.2645939617594,-56.2646470887086,-56.2647587499912,-56.2648504579037,-56.2649193225528,-56.2649706767291,-56.2650540688304,-56.2651680240105,-56.2652540453574,-56.2653302016192,-56.2655110432638,-56.2655744075189,-56.265645063767,-56.2657088930109,-56.2657724060461,-56.2658597372188,-56.2658632929995,-56.2659683429678,-56.2660767103402,-56.2661429547549,-56.2662468822083,-56.2663177782912,-56.2664132203837,-56.266504162312,-56.2665903618302,-56.2666063018254,-56.2667131840373,-56.2668415060987,-56.2670944375259,-56.2672734566939,-56.2673065485381,-56.2673810051886,-56.26744335502,-56.2675475536988,-56.2676966482999,-56.2678593317975,-56.2679670311253,-56.2680415782187,-56.2680662155936,-56.2680618372371,-56.2680160639497,-56.2679290771323,-56.2678330309558,-56.2677783493389,-56.2677740616168,-56.2677861685787,-56.2680017192529,-56.2681463146583,-56.2682208620113,-56.2683038334411,-56.2684576386921,-56.2685658517994,-56.2685208038706,-56.2684753027096,-56.2684508163174,-56.2683352370363,-56.2683019075194,-56.2682159445888,-56.2682825511572,-56.2684109929566,-56.2685896764609,-56.2686768441036,-56.2687591200469,-56.2689332437676,-56.2690040164271,-56.2689881651694,-56.2690672105719,-56.2692545882122,-56.2692718584162,-56.2691979158214,-56.2691909631476,-56.2692369850913,-56.2692378605026,-56.2692474917057,-56.2694299463118,-56.2694177785275,-56.2692830910836,-56.2692117130329,-56.2691999679649,-56.2691223727504,-56.2691352649621,-56.2690986715039,-56.2689869287646,-56.2689081864819,-56.2688385928055,-56.2687939685423,-56.2688372652275,-56.2689334283342,-56.268958790027,-56.2690587871804,-56.2691385250471,-56.2695011079045,-56.2695042433439,-56.2696667671221,-56.2698585763712,-56.2704355741615,-56.2704382244594,-56.2707011414586,-56.27109885904,-56.2713138263678,-56.2714585969806,-56.2717276071122,-56.271872407788,-56.272050058338,-56.2722089598765,-56.2722235726944,-56.2723226035776,-56.2723511670063,-56.2723923197234,-56.2727090432459,-56.2727376670556,-56.2727165047891,-56.2725592042274,-56.2725422983467,-56.2726079387827,-56.2727010984726,-56.2728469479217,-56.272956338577,-56.2729670783764,-56.2729466297188,-56.2727700894942,-56.2727807694671,-56.2728657767357,-56.2729645675194,-56.2729723832708,-56.2729170300323,-56.2729192167682,-56.2729548785576,-56.2730698590855,-56.2731111299363,-56.2731472499657,-56.2731227863244,-56.273191843244,-56.2733064851223,-56.2733389839007,-56.2734703335535,-56.2734640474901,-56.2733785219823,-56.2734126503755,-56.2733870512911,-56.2734935594204,-56.2735670906685,-56.273371375609,-56.2733574326604,-56.2734306054805,-56.2736560354658,-56.2737579305368,-56.2737989229888,-56.2737542103378,-56.2736495902587,-56.2736002439851,-56.273454053821,-56.2735223746366,-56.2736019533949,-56.2737058569422,-56.274051978249,-56.2741513276147,-56.2742090276922,-56.2742197680859,-56.2743186995657,-56.2744009634414,-56.274370373048,-56.2741744191212,-56.2739870771059,-56.273868255015,-56.2739065228828,-56.2740630158738,-56.2740956350242,-56.2742191507572,-56.2743980198361,-56.2744334435896,-56.2744992788619,-56.2745647959849,-56.2745287954743,-56.2745691123727,-56.2744970913181,-56.2739897392859,-56.2739976354037,-56.2740496276299,-56.2742780637416,-56.2744482021961,-56.2745588099136,-56.2746244665733,-56.2746266745275,-56.2743065658044,-56.2743439190984,-56.2743374348721,-56.2744049018657,-56.2744315744712,-56.2744948845907,-56.2745861202265,-56.2746131111748,-56.27459324116,-56.2745374893827,-56.2745370916516,-56.2745505175466,-56.2745696916466,-56.2745944946223,-56.2746274724538,-56.2746463880689,-56.274645871094,-56.2746729616166,-56.2746736860742,-56.274785798377,-56.2747893781675,-56.2748147178433,-56.2749289674289,-56.2750306855085,-56.2752338632653,-56.275259123094,-56.275291981683,-56.2753321212833,-56.2753506597881,-56.2756032053524,-56.2757434108234,-56.2757083830532,-56.2756788450234,-56.2758245001517,-56.2758292156324,-56.2759142461674,-56.2760961796299,-56.2760670580122,-56.2760704180248,-56.2761729093792,-56.2762208214026,-56.2762269260887,-56.27635312839,-56.2764303602655,-56.2765623496382,-56.2766704286612,-56.27676369294,-56.2768255352011,-56.2768613764606,-56.2768273787735,-56.276907414458,-56.2769202465911,-56.2769767382186,-56.2770946267989,-56.2771578963906,-56.277095994103,-56.2771375824558,-56.2770618373883,-56.2771526539012,-56.2772946708253,-56.277372238668,-56.2773619131088,-56.2774461922484,-56.2775459503971,-56.2775471105044,-56.2775575243789,-56.2776633077197,-56.277871803441,-56.2778332874241,-56.2778757482667,-56.2780673045843,-56.2781538624697,-56.278145767697,-56.2791176377354,-56.2790732531131,-56.2783652220663,-56.2777779525118,-56.2775820276038,-56.2775700415663,-56.2770699259891,-56.2771240328102,-56.2770590148493,-56.2771345103502,-56.2771394208036,-56.2773054271745,-56.2773306219939,-56.2772277372208,-56.2772861571116,-56.2771788097655,-56.2771550772344,-56.2773250084588,-56.2772592149466,-56.2771517485298,-56.2771782563601,-56.2772044954912,-56.2775661614583,-56.2778402272502,-56.2779365116854,-56.2780232943563,-56.2780482005344,-56.2782217833888,-56.2783202208222,-56.2784739417879,-56.2785364987297,-56.2785922024186,-56.2787108444695,-56.278896113536,-56.2790356725132,-56.2790813111589,-56.2791668068842,-56.279182487491,-56.2790756940605,-56.2791477694346,-56.2792038309662,-56.2792798091827,-56.2794389043273,-56.2794463285377,-56.2793443661582,-56.2792626299868,-56.2793361096602,-56.2795315630025,-56.2796572013449,-56.2797922627716,-56.2799476689927,-56.2796448039347,-56.2797177359124,-56.2798399714493,-56.2799953773731,-56.2800773996545,-56.2801701767535,-56.2802401577222,-56.2802511737509,-56.2802098876379,-56.2802668996973,-56.2801749314373,-56.2802360888844,-56.2802852942608,-56.2803344996373,-56.2805727583163,-56.2805864397368,-56.28037470704,-56.2802952850354,-56.2802559516374,-56.2803722605693,-56.2804754819467,-56.2804162560899,-56.2803971241279,-56.2805440315397,-56.2806133701246,-56.2809513262873,-56.2811197464198,-56.2811994582226,-56.2815472177688,-56.2816434192095,-56.2814887035829,-56.2812809264097,-56.281373302041,-56.2816912420597,-56.2819591705324,-56.2820883513887,-56.2821037507027,-56.2821361378881,-56.2822412659271,-56.2824701743928,-56.2825682853179,-56.2825691800612,-56.2827814743393,-56.283362240564,-56.2836874573308,-56.2836764229725,-56.2836954872742,-56.2836156577741,-56.2834236334029,-56.2834891208535,-56.2836209241976,-56.2834928252355,-56.2834780806432,-56.2835868030771,-56.2836483620143,-56.2838126600803,-56.2838461412954,-56.2838985888859,-56.283979590381,-56.2840643642682,-56.284167502541,-56.2843067964422,-56.2843067992027,-56.2843128246947,-56.28450644903,-56.2846371687398,-56.2847322064677,-56.2847905060414,-56.2849606340617,-56.2849730986855,-56.2851487291253,-56.2852510801636,-56.2854247628086,-56.2854187550513,-56.2855652706131,-56.2858460744627,-56.2859503973348,-56.2859098025776,-56.2855910182841,-56.2855441314893,-56.2856837918129,-56.2858355212167,-56.2858733616594,-56.2857614850588,-56.2856989630359,-56.2857955304448,-56.2856908947654,-56.2855023842309,-56.285563713587,-56.2855497530588,-56.2853868409399,-56.2853710484425,-56.2853214546736,-56.2851757608406,-56.2849157774754,-56.2848762168171,-56.2847690646347,-56.2847593049675,-56.2846941950529,-56.2848014182268,-56.2849916182935,-56.2850521687651,-56.2847810084902,-56.2843718225211,-56.2843372500774,-56.2841898859165,-56.2840911896621,-56.2840334067504,-56.2842259132055,-56.2844983129633,-56.2845048497547,-56.2846235056958,-56.2847357863937,-56.2847060640691,-56.2848949761724,-56.2849995346411,-56.2851155775681,-56.2852291958272,-56.2853223453303,-56.2854040808167,-56.2856632751899,-56.2857550618266,-56.285820902449,-56.285875337189,-56.2860374158044,-56.2860480577998,-56.2860716924491,-56.2859409881098,-56.2859109981126,-56.2860039638489,-56.2860984466595,-56.2861640216297,-56.2862461657697,-56.2864022659164,-56.2865051219852,-56.2864199494306,-56.28651711958,-56.2866063497622,-56.286691169287,-56.2867399077101,-56.2867833721526,-56.2869367645943,-56.2870034122996,-56.2870421271939,-56.2871227091876,-56.2871620274348,-56.2870912043875,-56.2871142845374,-56.2871983339116,-56.2872401641026,-56.2873142392676,-56.2873933111703,-56.2874589327901,-56.2877107499574,-56.2878362045502,-56.2878951291744,-56.2880282965816,-56.2881106988285,-56.287941351644,-56.2879754882991,-56.288002293141,-56.2881064299393,-56.2881021610575,-56.2879844193492,-56.2878295503458,-56.2878325742313,-56.2878809264417,-56.2879665277262,-56.2881181940123,-56.2882477235109,-56.2883505583572,-56.2883801692831,-56.2884460404604,-56.2885792518559,-56.2887050276316,-56.2887341987388,-56.2888395792578,-56.2888726162959,-56.2888794598253,-56.2889562661029,-56.288977170217,-56.2889857879948,-56.289013208803,-56.2890208327349,-56.289016337083,-56.2890034904577,-56.2890151831546,-56.2890312781219,-56.2890490606261,-56.2890651756037,-56.2890771417749,-56.289100046921,-56.2891352650839,-56.289154728455,-56.2891830563978,-56.289212411537,-56.2892225701094,-56.2892258918225,-56.2892172206839,-56.2891938753107,-56.2891622523353,-56.2891532677017,-56.2891340244441,-56.2891459372545,-56.2891421086133,-56.2891540747846,-56.2891995449013,-56.2892286265662,-56.2892512182173,-56.2892635045536,-56.2893050659879,-56.289321087584,-56.2893189398097,-56.2893503960325,-56.2893626756987,-56.2893745684988,-56.2893871483199,-56.2893997214709,-56.2894071519696,-56.2894197718113,-56.2894423167717,-56.289503715103,-56.28969188345,-56.2898457302487,-56.2898660255923,-56.2898234981833,-56.289873690325,-56.28983805337,-56.2897930890043,-56.2897510037601,-56.2896554795182,-56.2896392810798,-56.2896978678979,-56.2897133013173,-56.2896806227133,-56.2896252194545,-56.2895366917141,-56.2895337573459,-56.2894482816187,-56.2893161121847,-56.289233476968,-56.2889466728487,-56.2889275643649,-56.2888680878005,-56.2888343730047,-56.2886972751625,-56.288519174393,-56.2883483321974,-56.2881838758394,-56.2880273213187,-56.2878950988318,-56.2877481630532,-56.2875675638797,-56.2875966709472,-56.2876780456061,-56.2876046990218,-56.2876313107023,-56.2877527693905,-56.2878491230727,-56.2879150291103,-56.2880450961893,-56.2881437245706,-56.2882431848854,-56.2883196888626,-56.2884308551322,-56.2885799869874,-56.288722131342,-56.288936502577,-56.2889556257727,-56.2889744021228,-56.2889959465671,-56.2890013626937,-56.289018338115,-56.2890230738907,-56.2890288168525,-56.2890430775405,-56.2890508882353,-56.2890572915376,-56.289066009367,-56.2890686707395,-56.2890716722875,-56.2890764147333,-56.2890749473098,-56.2890663295321,-56.2890693310801,-56.2890638149019,-56.2890589790746,-56.2890619806226,-56.2890581719917,-56.2890567312487,-56.2890607866735,-56.2890782223322,-56.289078148961,-56.2890928031852,-56.2890981726211,-56.2890800032507,-56.2890754875885,-56.2890709986067,-56.2890569313519,-56.289054123237,-56.2890440847265,-56.2890364941452,-56.2890237475715,-56.2890229404886,-56.2890190384762,-56.2890185515584,-56.2890215531064,-56.2890303709874,-56.2890436044789,-56.289051054988,-56.2890578184761,-56.2890676635534,-56.2890802367044,-56.2891929081453,-56.2892056080282,-56.2892199687678,-56.2892377446019,-56.2892637513476,-56.2892808201504,-56.2893057996997,-56.2893167186642,-56.2893327402603,-56.2893556187259,-56.2893627490699,-56.2893742550038,-56.2895856342334,-56.2896012320617,-56.2896495836645,-56.2896839947445,-56.2897190861754,-56.2897711997184,-56.2898073116755,-56.2898458248711,-56.2899205434054,-56.2899950484962,-56.2900114369482,-56.2900237166144,-56.2900428398101,-56.2900729219909,-56.2901152438174,-56.2901401766759,-56.2901549042713,-56.2901726801054,-56.2902030824513,-56.2902256407519,-56.2902464981753,-56.2902868656605,-56.2903661798982,-56.2903891050546,-56.2904777240911,-56.2905177514008,-56.2905488807884,-56.2905686843349,-56.290588834727,-56.2906080046134,-56.2906501530171,-56.2906720776575,-56.2906854578914,-56.2907022131992,-56.2907186216614,-56.290740552972,-56.2907662395525,-56.2908039189848,-56.2908532444232,-56.2908970803638,-56.2909179577975,-56.2909391553963,-56.2909617670577,-56.2910108457022,-56.2910389535314,-56.2910634575163,-56.2910800747227,-56.2910709563622,-56.2910490526484,-56.2910507511536,-56.291153982698,-56.2911637350315,-56.2911840793904,-56.2912088105308,-56.2912103592061,-56.2912499942211,-56.2913075060046,-56.2913467255907,-56.291347492653,-56.2913608462064,-56.2913773347099,-56.291405802725,-56.2914353312869,-56.2914535206677,-56.2914686151189,-56.2914891990679,-56.2915005515894,-56.2915177204438,-56.2915345224423,-56.2915564537529,-56.291578671878,-56.2915974749085,-56.291637795703,-56.2916651431401,-56.2916822586337,-56.291696666064,-56.2917220391495,-56.2917330048048,-56.2917480458952,-56.2919075305807,-56.2920130492308,-56.2920299246006,-56.2921596813609,-56.2922147450685,-56.2922186824569,-56.2921551001604,-56.292034006254,-56.2920062572221,-56.2920057716332,-56.2920242349996,-56.2920602535753,-56.292082131525,-56.2921217919789,-56.2921607920923,-56.2921823298665,-56.2922127789032,-56.292246676385,-56.2922727098111,-56.2922953214725,-56.2923134374821,-56.2923315801721,-56.2923599347953,-56.2923975408563,-56.292443691324,-56.2924758545781,-56.2924909223489,-56.2925247931503,-56.2925435494901,-56.2926132543147,-56.2928298563788,-56.2928708916421,-56.2928841251336,-56.2928943370669,-56.2929107455291,-56.2929339708404,-56.2929582166779,-56.2930105946504,-56.2930464282264,-56.2931566156528,-56.293222555591,-56.2932476177494,-56.2932963562245,-56.293370739878,-56.2933736654431,-56.2933294030334,-56.2934186303559,-56.2935164806935,-56.2934849586278,-56.2935148703866,-56.2935237624449,-56.2934838265764,-56.2935138429018,-56.2934781737703,-56.2934085504629,-56.2934089241195,-56.2933645572838,-56.2933543987566,-56.2931692256199,-56.2932892304577,-56.2934244977546,-56.2934378287366,-56.2932706450082,-56.2931456333357,-56.2931220611767,-56.2931367087308,-56.2931311458619,-56.2931180524426,-56.2931200067839,-56.2931492618714,-56.2931454265601,-56.2931631290231,-56.2931992528758,-56.2932605637592,-56.2933018456168,-56.2933227388146,-56.2933044218914,-56.2933245922938,-56.2933498920082,-56.2933631221969,-56.2933754931986,-56.2934117083876,-56.2933950519727,-56.2933907697236,-56.2934066954609,-56.2934518125411,-56.2934691148309,-56.2935398972556,-56.2935513999408,-56.2936238073819,-56.2936885279343,-56.293745727107,-56.2937586428115,-56.2937619491455,-56.293761887199,-56.2938130520949,-56.2939425341956,-56.2940387192913,-56.2940799375087,-56.2941714023488,-56.2941314549154,-56.2941242425037,-56.2941438872513,-56.2941752614519,-56.2941856154582,-56.294222990051,-56.294297587546,-56.2943192711419,-56.2944095043604,-56.2944466721246,-56.2944294554334,-56.2944814013718,-56.2945362300758,-56.2945755883015,-56.294574128137,-56.2946196166777,-56.2946432839124,-56.2946931580982,-56.2947764705045,-56.2949112000716,-56.294932511651,-56.2949151535147,-56.2949197278035,-56.2949567716498,-56.2949785514929,-56.2950413013271,-56.2951117244778,-56.2951607946517,-56.2951688259511,-56.2951143277804,-56.2950085003688,-56.2949784652384,-56.2950284065878,-56.2950463428222,-56.2950954129314,-56.2950740875503,-56.2951348947927,-56.2951254029474,-56.2951611238107,-56.2951183354128,-56.2949655459412,-56.294937677256,-56.2949727510214,-56.2949471001662,-56.2949097672159,-56.2947945583625,-56.2947593468748,-56.2947103180475,-56.2946281854527,-56.2946266288092,-56.2946487944561,-56.2946705605381,-56.294725609381,-56.2948258020366,-56.2948981672404,-56.2949629555703,-56.2949347960504,-56.2949743564528,-56.2950121492768,-56.2950405505908,-56.2949611629819,-56.2949442676018,-56.2950600339722,-56.2950945517739,-56.295135853074,-56.2951476524926,-56.2951078786469,-56.2950657235731,-56.2950477743162,-56.2950965127852,-56.2951101064625,-56.2951531419904,-56.295195790652,-56.2952402402425,-56.2952066629258,-56.2952054889871,-56.2952954287046,-56.2953499368158,-56.2953111101252,-56.2953910646932,-56.2954017968947,-56.295429277734,-56.2954207058664,-56.2954539237779,-56.2955424360926,-56.2956651860646,-56.2957431129201,-56.2958256268825,-56.2959118965129,-56.2960043048444,-56.2961119564755,-56.2961701598258,-56.2962566444281,-56.2963565359448,-56.2963851234308,-56.2964400611131,-56.2965135969451,-56.2966056036494,-56.2966479195521,-56.2967389531671,-56.2967557351553,-56.2967827711872,-56.2968172547267,-56.2968531933285,-56.2968843492353,-56.2969281784523,-56.2969269101302,-56.2970022232411,-56.2971210299007,-56.2972752723716,-56.2974766909744,-56.297552463555,-56.2977612533658,-56.297995005933,-56.2981143195385,-56.2982368125629,-56.2983125853455,-56.2984970203305,-56.2987723383967,-56.2988066928867,-56.2988396486283,-56.2989166295839,-56.2989480991469,-56.298958498982,-56.2989948099035,-56.2990370049979,-56.2990610307219,-56.2990827660714,-56.2991190963089,-56.2991636282958,-56.2992084267378,-56.2994224485532,-56.2995167732306,-56.2995818437921,-56.2996685708614,-56.299736998439,-56.2998000385138,-56.2999592806391,-56.3001142805765,-56.3002218293755,-56.3006343754694,-56.3008290155661,-56.3009580357226,-56.3009724164725,-56.3009867972223,-56.3010011779722,-56.3010159055676,-56.3010299261317,-56.3010443068815,-56.3010580072805,-56.3010713608339,-56.3010840073561,-56.3010966805586,-56.3011086734103,-56.3011203194165,-56.3011319520824,-56.3011435980885,-56.3011552440947,-56.3011668634204,-56.3011788562721,-56.3011911959693,-56.3012038424914,-56.301216515694,-56.3012291622161,-56.3012421822642,-56.3012551622917,-56.3012678488345,-56.3012808555424,-56.3012938755905,-56.3013068689582,-56.3013198756661,-56.3013332425597,-56.3013465961131,-56.3013602698317,-56.3013739702307,-56.3013880174752,-56.3014023715446,-56.30141709914,-56.3014318267354,-56.3014468878361,-56.3014619355967,-56.3014776770483,-56.3014930849945,-56.3015088397864,-56.3015249547639,-56.3015413899066,-56.3015578250493,-56.3015749405429,-56.3015924295624,-56.3016105722524,-56.3016290884683,-56.3016482583547,-56.3016677617465,-56.3016879588293,-56.3017085294381,-56.3017290600262,-56.3017496039546,-56.3017701345427,-56.3017906918113,-56.3018108888941,-56.301831085977,-56.3018509362142,-56.3018708131319,-56.3018906767094,-56.3019105269467,-56.3019304038644,-56.3019506009472,-56.3019708247105,-56.3019917288246,-56.3020122594127,-56.3020335103724,-56.3020544144865,-56.302075652106,-56.3020969030656,-56.3021178071797,-56.3021390447992,-56.3021602957589,-56.302181199873,-56.3022024508326,-56.3022233549468,-56.3022445925662,-56.3022658435259,-56.3022870811453,-56.302308332105,-56.3023295830647,-56.3023504871788,-56.3023713912929,-56.3023919485615,-56.3024114919738,-56.3024306752005,-56.302449164736,-56.30246630691,-56.3024827687331,-56.3024978298338,-56.3025119037588,-56.3025245769613,-56.3025359028024,-56.3025533918219,-56.3025647443433,-56.3025719747389,-56.3025775242676,-56.3025841009927,-56.3025937459669,-56.3025996023205,-56.3026061523652,-56.3026130359152,-56.3026202663108,-56.3026281770572,-56.3026436383644,-56.3026601268679,-56.3026779493928,-56.302687914532,-56.3026988801873,-56.3027105261934,-56.302723199396,-56.3027365662897,-56.3027509470395,-56.3027656746349,-56.3027807357356,-56.3027961436819,-56.3028112448033,-56.302826305904,-56.3028410334994,-56.3028557610948,-56.3028708221955,-56.3028869371731,-56.3029041060275,-56.3029226222435,-56.3029435797184,-56.302966578246,-56.302982719904,-56.3029936855593,-56.3030187251395,-56.3030334660751,-56.3030577452632,-56.3030830649879,-56.3031050229789,-56.3031314499413,-56.3031732581695,-56.3032242978253,-56.3032636514543,-56.3032961882343,-56.3033208943092,-56.303353164285,-56.3033922110891,-56.3034148227505,-56.3034234405283,-56.3034409562282,-56.303467716696,-56.3035075772531,-56.3035353915976,-56.3035594039814,-56.3035888991929,-56.303610176833,-56.3036331753606,-56.3036544263202,-56.3036743032379,-56.3036822406648,-56.3036898179059,-56.3037055860379,-56.3037552383115,-56.3038028361923,-56.3038213257279,-56.3038364401894,-56.3038704310527,-56.3039167616133,-56.3039425082248,-56.3039767125315,-56.3040140251079,-56.3040366634497,-56.3040631170925,-56.3041124758814,-56.3041522297168,-56.3041704257677,-56.3041883016534,-56.3042098861184,-56.304227695303,-56.3042352592039,-56.3042424895995,-56.3042658216324,-56.3042918483884,-56.3043388859803,-56.3044034125916,-56.3044638037369,-56.3044881763064,-56.3045097474312,-56.3045248352124,-56.3045664566776,-56.3046681624632,-56.3047178547575,-56.3047644788027,-56.3048806720599,-56.3049053647945,-56.3049290570132,-56.3049771484819,-56.3050183430603,-56.3050406478968,-56.3050642600742,-56.3050896064794,-56.3051030133936,-56.3051198754232,-56.3051391120106,-56.3051730361729,-56.3051973553816,-56.3051977822684,-56.3052132435755,-56.3052382964959,-56.3052658440362,-56.3052885624194,-56.3053184578372,-56.3053472993782,-56.3053548632791,-56.3053627873657,-56.3053863995431,-56.305413480176,-56.3054179758278,-56.3054420015519,-56.3054907066703,-56.3055177339423,-56.3055314343413,-56.3055403722842,-56.3055538058789,-56.3055964011797,-56.3056290313412,-56.3056418379459,-56.3056525101165,-56.3056686517745,-56.3056830858852,-56.3056961592942,-56.3057119807871,-56.305732938262,-56.305744264103,-56.3057488131158,-56.3057564170373,-56.3057708644882,-56.3057891138999,-56.305809391024,-56.3058215039376,-56.3058328831395,-56.3058462767136,-56.3058556015226,-56.3058619381239,-56.3058703691386,-56.3058731972638,-56.3058736108105,-56.3058693552824,-56.3058588832151,-56.3058555348215,-56.3058613911751,-56.305874144419,-56.3058807211441,-56.3058684614882,-56.3058606441232,-56.3058604039994,-56.3058735441094,-56.3058996775871,-56.3059124575114,-56.3059056673428,-56.3058954887601,-56.305898983896,-56.3059028525578,-56.3058882450244,-56.3058811480309,-56.3058883784265,-56.3058979967202,-56.3059139249348,-56.3059095360047,-56.3059058140852,-56.3059082820246,-56.3059042799607,-56.3059040398368,-56.3059189008343,-56.3059408721655,-56.3059532652236,-56.3059478891177,-56.3059540923168,-56.3059661118489,-56.3059847481268,-56.3059788672763,-56.3060368298596,-56.3061085483924,-56.3061522372191,-56.3061400507601,-56.3061175660666,-56.3061349494271,-56.3061822919172,-56.306214572923,-56.3062134527423,-56.3062364646101,-56.3062457493985,-56.3062547140218,-56.3062811409842,-56.3063270980187,-56.3063617825731,-56.3063851279463,-56.3064146098175,-56.3064499213619,-56.3064846059163,-56.306528882084,-56.3065679822489,-56.3065957298924,-56.3066145796137,-56.306628987044,-56.3066424206387,-56.3066548136968,-56.3066729830672,-56.3066969821108,-56.3067144711303,-56.3067182864313,-56.3067235157949,-56.3067402044016,-56.3067505030462,-56.3067896032112,-56.3068208459905,-56.3068452185601,-56.3068801699187,-56.3069222716317,-56.3069413881572,-56.3069588238159,-56.3069834631897,-56.3069900132344,-56.3069966299802,-56.3070065951195,-56.3070162534338,-56.3070409728489,-56.3070636378712,-56.3070698410703,-56.3070753772588,-56.3070883973069,-56.3071068868425,-56.307122001304,-56.3071367822603,-56.3071593939217,-56.3071806182009,-56.3071922908875,-56.3072064181733,-56.3072150893119,-56.3072241072961,-56.3072470791432,-56.307262206945,-56.3072660355862,-56.3072733460231,-56.3072778416749,-56.3073172353246,-56.3073689019704,-56.3073785602847,-56.3073861241856,-56.3074094028577,-56.3074340422315,-56.3074508509002,-56.3074802927508,-56.3074953405113,-56.3075014236485,-56.307497261502,-56.3074787052654,-56.3074714748698,-56.307465538475,-56.3074636174843,-56.3074775846875,-56.3074829607934,-56.3075061594242,-56.3075314257881,-56.3075402703494,-56.3075477408688,-56.3075640692898,-56.3075773294618,-56.3075830657534,-56.3075964326471,-56.307609439355,-56.3076138416253,-56.3076133880581,-56.3076036897231,-56.307599807721,-56.307598366978,-56.3075972597403,-56.3076016620107,-56.3075943515738,-56.3075815716496,-56.3075937245838,-56.3076014619075,-56.3075890821896,-56.3075767024717,-56.3075782632767,-56.307581158103,-56.3075749282234,-56.3075690718698,-56.3075549979448,-56.3075379091317,-56.3075280640543,-56.3075069198164,-56.3074946067996,-56.3074720218186,-56.3074637108657,-56.3074656451967,-56.3074739828299,-56.3074810664831,-56.3074895375185,-56.3075014503289,-56.3075160978831,-56.3075304386123,-56.3075458198781,-56.3075687250242,-56.3076059442191,-56.3076229796714,-56.307616696431,-56.3076005014121,-56.3076010883815,-56.3076085589009,-56.3076156158737,-56.3076134814396,-56.3076260879411,-56.3076434702389,-56.307653235275,-56.3076418960938,-56.307649980263,-56.3076352526676,-56.3076266615703,-56.3076245004557,-56.307634905822,-56.3076457647556,-56.3076600921446,-56.3076603589489,-56.3076431900944,-56.3076434568987,-56.3076553430287,-56.3076758335962,-56.3076864123853,-56.3076802091861,-56.307667816128,-56.307659118309,-56.3076652014463,-56.3076856653333,-56.3077003395679,-56.3077126259043,-56.3077200697432,-56.3077237516421,-56.3077274335409,-56.3077397465577,-56.3077534469567,-56.3077628918277,-56.3077566352677,-56.3077610108576,-56.3077694552126,-56.307784809798,-56.3077964824846,-56.307810209564,-56.3078317673486,-56.3078475221404,-56.3078602220234,-56.3078753231447,-56.3078870225117,-56.307901056416,-56.3079126357211,-56.3079156372691,-56.3079114884628,-56.3079052585832,-56.3078924519785,-56.3078878762854,-56.307909687534,-56.3079584993742,-56.3079785363744,-56.3079918232268,-56.3080198376746,-56.3080687162158,-56.308114900034,-56.3081354439624,-56.3081946344884,-56.3082292123211,-56.3082733417464,-56.3083202059155,-56.3083516621383,-56.3083910024271,-56.3084231656811,-56.3084440431148,-56.308458383844,-56.3084782074009,-56.3085096903041,-56.3085480033965,-56.3085921061414,-56.3086474813665,-56.3086891962132,-56.3087398223224,-56.3087870733576,-56.3088134736396,-56.3088241458102,-56.308836899054,-56.3088644065737,-56.3088877252664,-56.3089233302955,-56.3089647516575,-56.3089898179182,-56.3090079872886,-56.3090322798169,-56.3090719936316,-56.3091319445499,-56.309166549063,-56.3091837445978,-56.3092002597818,-56.3092235651343,-56.3092485380134,-56.3092598771947,-56.3092708695304,-56.3092958424095,-56.3093238301769,-56.3093350626364,-56.3093490832005,-56.3093763505963,-56.3094060992718,-56.3094157175655,-56.3094366083395,-56.3094625817346,-56.3095030292611,-56.3095209051468,-56.3095874838715,-56.3096753260825,-56.3097219837707,-56.3096561559277,-56.3096378429059,-56.3096704185043,-56.309663411639,-56.3097359878973,-56.3097323209553,-56.3095960608781,-56.3095942755589,-56.3095860320678,-56.3095929156178,-56.3096170480635,-56.3096432349021,-56.3096569619815,-56.3096966757962,-56.3097439801923,-56.3097608155414,-56.3097944462189,-56.3098342534152,-56.309859266315,-56.3098777691907,-56.3099008610998,-56.3099184435008,-56.3099219386367,-56.3099203111307,-56.3099083449594,-56.3098569584581,-56.3098041845746,-56.3097959269826,-56.3097914313308,-56.309775303013,-56.3097427528927,-56.3097231961401,-56.3097122304848,-56.309695475177,-56.3096824284485,-56.3096584027245,-56.3096227576748,-56.3095977047543,-56.3095853517169,-56.3095747195669,-56.3095603388171,-56.30954050192,-56.3095450242523,-56.3095532818443,-56.3095659817273,-56.3095803758174,-56.3095964641145,-56.3096085370075,-56.3096205965602,-56.3096397664466,-56.3096568952804,-56.3096747178053,-56.3096942345372,-56.3097154854969,-56.3097223690469,-56.3097323341862,-56.3097433265219,-56.3097580807977,-56.3097806924591,-56.3098047448635,-56.3098048515852,-56.3097994888195,-56.3098214601507,-56.3098547306425,-56.3098589061292,-56.3098664833703,-56.3098884146809,-56.3098989801298,-56.3099086117637,-56.3099158421593,-56.3099176297478,-56.3099060237623,-56.3098927502502,-56.3098948713441,-56.3099151751486,-56.3099330777147,-56.3099372532015,-56.3099414286882,-56.3099866653513,-56.310001726452,-56.310009984044,-56.3100180015121,-56.3100279666514,-56.3100348635416,-56.3100294340749,-56.3100199491832,-56.3100275397646,-56.3100321154577,-56.3100232708963,-56.3100031805352,-56.3099867987534,-56.3099714308278,-56.3099598648629,-56.3099554625925,-56.3099626929881,-56.3099903872708,-56.3100139060667,-56.3100381318939,-56.3100541668302,-56.3100702417871,-56.3100931202528,-56.3101092085499,-56.3101171326366,-56.3101042326504,-56.3100861166408,-56.3100700550241,-56.3100622643396,-56.3100537666238,-56.3100319820556,-56.310021123122,-56.3100170676972,-56.3100107044155,-56.3100081164141,-56.3100188152651,-56.3100542868921,-56.3100756445735,-56.3100866502494,-56.3101519772735,-56.3101701733244,-56.3101880492101,-56.310202870187,-56.3101988547828,-56.3101893298705,-56.3101596612363,-56.3101364626055,-56.3101187067817,-56.310098643101,-56.3100871705177,-56.3100889981269,-56.3100839555263,-56.3100716425095,-56.3100600498642,-56.3100474166823,-56.3100334094584,-56.3100183350175,-56.310003980948,-56.3099731783957,-56.3099608653789,-56.3099485923827,-56.3099209514609,-56.3099031956371,-56.3098902022695,-56.30988210476,-56.3098896953413,-56.309901688193,-56.3099160422625,-56.3099328242507,-56.309968069094,-56.3099783410582,-56.3100085299607,-56.3100449220624,-56.3100546070572,-56.3100444284745,-56.3100119717357,-56.3099921081583,-56.3099767268924,-56.3099641070507,-56.309957997233,-56.3099577304288,-56.309948232197,-56.3099369863972,-56.3099250469064,-56.3099168826959,-56.3098967656544,-56.3098951514886,-56.3099054367929,-56.3099335046016,-56.3099625329055,-56.3099730583338,-56.3099915211889,-56.3100048480619,-56.3100226572465,-56.3100414802874,-56.3100682807758,-56.3100834219178,-56.3100951479652,-56.3101085148588,-56.3101242696507,-56.3101339146248,-56.3101531378721,-56.310172654604,-56.3101969471323,-56.3102167973696,-56.3102339528838,-56.3102487738607,-56.3102492007475,-56.3102506414905,-56.3102606066298,-56.3102705717691,-56.310276508164,-56.3102721725947,-56.3102664629834,-56.3102614070426,-56.310259432691,-56.3102622608162,-56.3102694912118,-56.3102906888106,-56.3103006539499,-56.3103133805133,-56.3103315632239,-56.3103435694158,-56.3103494657901,-56.3103720507711,-56.310381682405,-56.3103902735023,-56.3104115778228,-56.3104335624942,-56.3104459422121,-56.310460016137,-56.3104744235673,-56.3104871234503,-56.3104937135156,-56.310502371314,-56.3105171255898,-56.3105476213173,-56.3105634294699,-56.3105740482797,-56.3105908035875,-56.3106021160883,-56.3106209658096,-56.3106422434497,-56.3106535959711,-56.3106503142787,-56.3106599325724,-56.3106637745538,-56.3106600793147,-56.3106601860365,-56.31068355809,-56.3107158547462,-56.3107316362185,-56.3107494587433,-56.3107628523174,-56.3107758857057,-56.3107987908518,-56.3108039801948,-56.3108132783234,-56.3108239638342,-56.3108311942297,-56.3108470157226,-56.310865558619,-56.3108830476385,-56.3108973750276,-56.3109100215497,-56.3109323263862,-56.310964222836,-56.3110095128599,-56.3110273087043,-56.3110561102247,-56.3110804561138,-56.3110945300388,-56.3111041483325,-56.3111169015763,-56.3111238118068,-56.3111276271078,-56.3111290945312,-56.3111305486145,-56.3111368051745,-56.3111450761067,-56.3111557749577,-56.3111685015211,-56.3111802142283,-56.3111960090407,-56.3112358076186,-56.3112817115881,-56.311327852411,-56.3113412857004,-56.3113734472168,-56.3113882091155,-56.3114247269964,-56.3114386634363,-56.3113866006671,-56.3111363754872,-56.3111385833028,-56.3114147711895,-56.311444765068,-56.3114529949083,-56.3114609590156,-56.3114627866248,-56.3114625198205,-56.3114622663565,-56.3114678025449,-56.3114754064665,-56.3114672956169,-56.3114568102093,-56.311466802029,-56.3114743926103,-56.3114669220909,-56.3114584510555,-56.3114633735942,-56.3114672555962,-56.3114618394696,-56.3114577840448,-56.3114616260262,-56.3114651478425,-56.3114600652213,-56.311456356642,-56.3114544356513,-56.3114551960434,-56.311418630519,-56.3113908386062,-56.3111980281642,-56.3110128328523,-56.3109669841697,-56.310820109223,-56.3105232338336,-56.3104764112591,-56.3104255183456,-56.3104054625828,-56.3104065410485,-56.3103956229278,-56.3103694360893,-56.3103421953739,-56.310342955766,-56.3103358587726,-56.3103259870148,-56.310302788384,-56.3102758678337,-56.3102389821442,-56.3102253084256,-56.310208192932,-56.3101832067127,-56.3101708670154,-56.3101509900977,-56.3101218817525,-56.3101037390625,-56.3100770186154,-56.3100639718869,-56.3100475100638,-56.310024938423,-56.3100243381134,-56.3100155202325,-56.3100035807416,-56.3099796217187,-56.3099621060187,-56.3099545154374,-56.3099472850418,-56.309926714433,-56.3098956850971,-56.3098490610519,-56.3098077330713,-56.3097615492531,-56.3097471951837,-56.3097160858065,-56.3097020919228,-56.3096843094186,-56.3096682211214,-56.3096397664466,-56.3096168613005,-56.3095765071555,-56.3095495332444,-56.3095270416449,-56.3095086054702,-56.3094901692955,-56.3094802975378,-56.3094516827804,-56.3094281639845,-56.3094265631589,-56.3094150638951,-56.3094048319516,-56.3093980951439,-56.3093903044594,-56.3093797390105,-56.3093359964513,-56.3093114104384,-56.3092942816046,-56.3092747648726,-56.3092580362453,-56.3092427350207,-56.3092376523994,-56.3090832260912,-56.3090536089644,-56.3089363909017,-56.3090219764352,-56.3089350624937,-56.3088083427271,-56.3087143200506,-56.3086581646307,-56.3087337245093,-56.3086068121304,-56.3086009423907,-56.3087067019447,-56.3085770642116,-56.3084925769397,-56.3085096584402,-56.3085847989515,-56.3086480282236,-56.3086917305614,-56.3087885837929,-56.3089049989413,-56.3087772642584,-56.3087710799617,-56.3089335206007,-56.3089739909067,-56.3089457120143,-56.3087705029951,-56.3087626077419,-56.3088228499998,-56.3086912556748,-56.3085670320672,-56.3085715027971,-56.3086367753895,-56.3087309567191,-56.3089160346699,-56.3088953187305,-56.3088670571591,-56.3089554039104,-56.3090850251749,-56.3091330762418,-56.3089902672169,-56.3090507370996,-56.3091316957221,-56.3092230297372,-56.3092022440426,-56.3091562712006,-56.3091506291578,-56.3092341031812,-56.3092738225801,-56.3093666239344,-56.3094989530831,-56.3095696590375,-56.3097182152068,-56.3098236808605,-56.3099597848216,-56.3100898940911,-56.3100700163945,-56.3101537002757,-56.3102415167847,-56.3104130475958,-56.3104707066592,-56.3105417443621,-56.3106303016936,-56.3106733053,-56.3107063873333,-56.3106788414775,-56.3106566574657,-56.3106604804625,-56.3106911343057,-56.3107718491944,-56.3107660515907,-56.3107804981242,-56.3108655639802,-56.3109099150634,-56.3109248324228,-56.3109749811418,-56.3111117300361,-56.3111596424316,-56.3112022803566,-56.3112117839807,-56.3111656201257,-56.3110506571292,-56.3110007844171,-56.3109953355563,-56.3110533963863,-56.3111532025363,-56.3111726084359,-56.3111189160064,-56.3111107950759,-56.3111257594779,-56.3111218555499,-56.3110833766827,-56.3110930196675,-56.3110674135167,-56.311077317901,-56.3111178353913,-56.3111934751815,-56.3111420014964,-56.3110762959705,-56.311042126762,-56.3110413599368,-56.3109898858659,-56.3109641052092,-56.3110094158405,-56.3110064647963,-56.3109153031517,-56.3107655395209,-56.3106815227395,-56.3107090866202,-56.310837530831,-56.3108834109697,-56.310966974538,-56.3109898913629,-56.3110890348601,-56.3110515489291,-56.3111224660426,-56.3111599346012,-56.3112491908629,-56.3113147811461,-56.3115627821516,-56.3116840061948,-56.3117645669491,-56.3118634838111,-56.3119393099201,-56.3119461597694,-56.3119937775265,-56.3121001884131,-56.3121671712573,-56.3122612487105,-56.3124511186336,-56.3124691436104,-56.3124161449627,-56.3124643431531,-56.3125914887253,-56.3125938405099,-56.3127308869408,-56.3127883021413,-56.3127890359977,-56.3130080769038,-56.3131813872124,-56.3133004093896,-56.3133032200802,-56.3131996377114,-56.3131722117669,-56.3133170997913,-56.3134261122898,-56.3135153316212,-56.3135217951748,-56.3136875740046,-56.3137134086751,-56.3138987671102,-56.3140121155342,-56.3142675751835,-56.3145133549827,-56.3146465846575,-56.3147398281355,-56.3148385532003,-56.3149327153445,-56.3148926766954,-56.3147566713197,-56.3148202671099,-56.3149419598412,-56.3151059294481,-56.3152956598086,-56.3156091138023,-56.3157563591082,-56.3158243960183,-56.3159326782504,-56.3160427598671,-56.315995745291,-56.3158042271269,-56.3157406345997,-56.3157243562137,-56.315775769903,-56.315800685605,-56.3157642039768,-56.3156862863061,-56.3157678594203,-56.315706099071,-56.3156313456277,-56.3154866725517,-56.3154195470605,-56.3155446837016,-56.3156960952807,-56.3156941901668,-56.315539636806,-56.3153599086113,-56.3151196107259,-56.3148648057216,-56.3144373002588,-56.3141623497736,-56.3139292349763,-56.3138768641433,-56.3139735669607,-56.3141920281964,-56.3144676400674,-56.3146429365368,-56.3147495811023,-56.3149120014078,-56.3150781266346,-56.3150275336498,-56.3151719331035,-56.3154049569047,-56.3154135283044,-56.3154253235398,-56.315633991155,-56.3156115795968,-56.3156266554814,-56.3156205066267,-56.3156958598021,-56.315748637074,-56.315812318572,-56.3158473918144,-56.3159130667872,-56.315947864661,-56.3159199053742,-56.3160216446658,-56.3160183148446,-56.3159778003857,-56.3160516376463,-56.3161156545657,-56.316225675005,-56.3162354325575,-56.3161856922596,-56.3162971826909,-56.3163896341928,-56.3165571433402,-56.3166216292112,-56.3164353800525,-56.3162984964829,-56.3162586389567,-56.3163240316991,-56.3164803667067,-56.3165899794702,-56.3166906793778,-56.316704830376,-56.3166286908138,-56.3164414159143,-56.3164513607628,-56.3165479789305,-56.3166134331533,-56.316752834838,-56.31688496965,-56.316829138589,-56.316650772925,-56.3167106449348,-56.3169810466333,-56.3170593693927,-56.317018510962,-56.317069594663,-56.3171246036689,-56.3172481474578,-56.317253384884,-56.3173316447757,-56.3174233679515,-56.3174190675271,-56.3173597270021,-56.3172819981717,-56.3172686910466,-56.3173877779498,-56.3174835516107,-56.3175891571042,-56.3176259518007,-56.3175120395785,-56.317622587845,-56.3176550014443,-56.3178152276123,-56.317952386811,-56.3180360111905,-56.3181734859651,-56.3181466211292,-56.3182251607489,-56.3182758061374,-56.3184138418633,-56.3185099585451,-56.31849671307,-56.3185747845278,-56.3186661015277,-56.318743985959,-56.31872170212,-56.318772129048,-56.3188828624342,-56.3190205856499,-56.3190304961733,-56.3191454054714,-56.3193890302133,-56.3196456827511,-56.3197322627928,-56.3197920701505,-56.3197285216386,-56.3195222763587,-56.3194225011712,-56.3194688444644,-56.3194965164915,-56.3195948145204,-56.3196774350721,-56.3198253151234,-56.3198168991538,-56.3198680409598,-56.3199060608003,-56.3199656184407,-56.320108220747,-56.3201034323826,-56.3200489849102,-56.3201271788908,-56.3200731980194,-56.3202434850796,-56.3203582983254,-56.3206279444898,-56.3206466738549,-56.3205231953238,-56.3204413530092,-56.3204653787389,-56.320633647539,-56.3206405567591,-56.3207230204656,-56.3209108192169,-56.3209565628081,-56.3209998873747,-56.3212071053526,-56.3215961993517,-56.3218181804997,-56.3219792368939,-56.3221117452319,-56.3222237363219,-56.3224289194891,-56.3228972169864,-56.3229382381421,-56.3229869299204,-56.3230323800268,-56.3231145957609,-56.3231442510549,-56.3232163015465,-56.3232133133387,-56.3232624853647,-56.3232655536137,-56.3233041468506,-56.3233932861553,-56.3234356813529,-56.3235010350575,-56.3234943916313,-56.3234487414217,-56.3234285309987,-56.3233892040501,-56.3233401654263,-56.3232866178104,-56.3232903263897,-56.3233001848072,-56.3233100432248,-56.3233226363861,-56.3233379776313,-56.3233563871256,-56.3233666057289,-56.3233775180233,-56.3233894841946,-56.3234021173765,-56.3234154175691,-56.3234290646072,-56.3234427383257,-56.3234563853639,-56.3234697255771,-56.3234857871938,-56.3235487530002,-56.3236864373409,-56.3236976964809,-56.323712344035,-56.323718787358,-56.3237283122702,-56.3237385175333,-56.3237524980768,-56.323764464248,-56.3237778044613,-56.3237931857271,-56.3238106213858,-56.3238294444266,-56.3238489344782,-56.3238684512101,-56.3238865672197,-56.3239030023623,-56.3239173564318,-56.323930696645,-56.3239433698476,-56.3239553360188,-56.3239669553445,-56.3239772406489,-56.3239909143675,-56.3240035342092,-56.3239945962663,-56.3239818963834,-56.3239678491388,-56.3239538152345,-56.3239414488569,-56.3239297761703,-56.3239286689326,-56.3239392477217,-56.323950840367,-56.3239645407659,-56.3239802688773,-56.3239908876871,-56.3240022001879,-56.324013846194,-56.3240261592108,-56.3240391792589,-56.3240525061319,-56.3240662065309,-56.3240795334039,-56.3240928736172,-56.3241062004902,-56.3241202210543,-56.3241359491656,-56.3241534115048,-56.3241718743599,-56.3241910442463,-56.3242095071014,-56.3242269561003,-56.3242437114081,-56.3242601198703,-56.3242769018586,-56.3242939906717,-56.3243104258144,-56.3243258204204,-56.3243391739739,-56.3243542350746,-56.3243679488138,-56.3243717507746,-56.3243677353704,-56.3243797015417,-56.3243913208674,-56.3244029401931,-56.3244145461786,-56.3244295805989,-56.3244415734506,-56.3244555940147,-56.3244662128244,-56.3244778454903,-56.3244898250018,-56.3245021380186,-56.324514424355,-56.3245263905263,-56.3245383433573,-56.3245496024973,-56.3245663578051,-56.3245772700995,-56.3245885292394,-56.3246001218847,-56.324609273271,-56.324595572872,-56.3245798447606,-56.3245743219124,-56.3245872885996,-56.3246012824833,-56.324618718142,-56.3246382081935,-56.3246484267968,-56.3246689440447,-56.3246894612927,-56.324708938004,-56.3247277477046,-56.3247451833633,-56.3247609114747,-56.3247742116673,-56.3247885390563,-56.324789833057,-56.324776132658,-56.3247620854135,-56.3247460237967,-56.3247289349836,-56.3247132068722,-56.3246988394626,-56.324685165744,-56.324671838871,-56.3246581651525,-56.3246441712688,-56.3246304975502,-56.3246171706772,-56.3246048576604,-56.3245894497142,-56.324577803708,-56.3245790843685,-56.3245851808459,-56.32459231786,-56.324597387141,-56.3245918642927,-56.3245785107393,-56.3245668914136,-56.3245538980459,-56.3245399041622,-56.3245248830822,-56.3245091816512,-56.3244920928381,-56.3244743503545,-56.3244565678502,-56.3244391055111,-56.3244223502033,-56.3244072891026,-56.3243928950125,-56.3243795414591,-56.3243668682565,-56.324354195054,-56.3243408281603,-56.32432579374,-56.3243086915867,-56.3242892148754,-56.3242687243078,-56.3242584923643,-56.3242383486423,-56.3242202593132,-56.3242035573663,-56.32418752243,-56.324171820999,-56.3241560928876,-56.3241413919726,-56.324128398605,-56.3241150450515,-56.3241088418524,-56.3241070542638,-56.3241110963484,-56.3241189137134,-56.3241322139059,-56.3241434730459,-56.324157120084,-56.3241721678445,-56.3241885496264,-56.3242052649136,-56.3242233675829,-56.3242428176138,-56.3242533964029,-56.3242649890482,-56.3242772753845,-56.3242909491031,-56.3243049429867,-56.3243199507266,-56.324335305312,-56.3243506732377,-56.3243663746686,-56.3243817292541,-56.3243967369939,-56.3244114379089,-56.324425458473,-56.3244387720058,-56.3244517520333,-56.3244640917305,-56.3244757110562,-56.3244972555006,-56.324516425387,-56.324533194035,-56.3245482951564,-56.3245619688749,-56.3245746420775,-56.3245866082487,-56.3245989212655,-56.3246115677877,-56.3246248946607,-56.3246392620703,-56.3246539629853,-56.3246693442511,-56.324685099043,-56.3247008138141,-56.3247158882551,-56.3247299354996,-56.3247425820217,-56.3247542280279,-56.3247662208796,-56.3247782137312,-56.3247912337794,-56.3248052676837,-56.3248203421246,-56.3248360969164,-56.3248525053787,-56.3248685669954,-56.3248832679104,-56.3249010504146,-56.324908520934,-56.3248951540404,-56.3248824808378,-56.324866726046,-56.3248496372328,-56.3248321748937,-56.3248164201019,-56.3248030665485,-56.3247921008932,-56.3247790541647,-56.3247663809621,-56.3247615117843,-56.32476624756,-56.324771316841,-56.3247702229435,-56.3247612716605,-56.3247499724999,-56.3247348980589,-56.3247171022145,-56.3246975854825,-56.3246774150801,-56.3246572446778,-56.3246381014718,-56.3246200121426,-56.3246036303608,-56.3245889294458,-56.3245752824077,-56.3245623157205,-56.3245496691983,-56.3245369826555,-56.3245236557825,-56.3245099553836,-56.3244945474373,-56.3244787926455,-56.3244627176885,-56.3244466293914,-56.3244308745996,-56.3244165205301,-56.3244031669767,-56.324391174125,-56.3243767533545,-56.3243702166501,-56.3243660278231,-56.3243741786934,-56.3243854111529,-56.3243986980053,-56.324407876072,-56.3244170407985,-56.3244262188652,-56.3244350634265,-56.3244438946477,-56.3244575150054,-56.3244721892399,-56.3244872370004,-56.324500910719,-56.3245128502098,-56.3245244428551,-56.3245284982799,-56.324533567561,-56.324540010884,-56.324550589673,-56.3245645968969,-56.3245813255243,-56.3245936118607,-56.3246068853728,-56.324621226102,-56.324636554007,-56.3246525622629,-56.3246689307045,-56.3246767347293,-56.3246920626343,-56.3246991996483,-56.3247124731605,-56.3247185696379,-56.3247294685921,-56.3247386199784,-56.3247464240031,-56.3247528673261,-56.3247589638036,-56.3247650736212,-56.3247715169442,-56.3247782937725,-56.3247891793865,-56.3247993846496,-56.3248095899128,-56.3248187679795,-56.3248279460461,-56.3248343893691,-56.3248452749831,-56.3248582416704,-56.324872235554,-56.3248855090662,-56.3248960878553,-56.324900823631,-56.32489700833,-56.3248908051309,-56.3248842550862,-56.3248787322379,-56.3248759174529,-56.3248778918045,-56.324883307931,-56.3248907784504,-56.3249027179413,-56.3249149909374,-56.3249207272291,-56.3249101084194,-56.3248981422481,-56.3248848287153,-56.3248728625441,-56.3248605361871,-56.3248642180859,-56.3248696342125,-56.3248760775355,-56.3248821740129,-56.324886562943,-56.324889564491,-56.3248901648006,-56.324886309479,-56.3248817871467,-56.3248755706074,-56.3248686603769,-56.3248610831358,-56.3248538260598,-56.3248469158293,-56.3248413929811,-56.3248372308346,-56.3248334021934,-56.3248302405628,-56.3248257182305,-56.3248222230947,-56.3248184077937,-56.3248142589874,-56.3248100701604,-56.3248059213541,-56.3248021060531,-56.3247986109173,-56.324796343081,-56.3248268521487,-56.3248950873393,-56.3249904965443,-56.3250252344595,-56.3250969381056,-56.3251967896015,-56.3252766974787,-56.3253452394943,-56.3254328179941,-56.3255041481142,-56.3255560815643,-56.325579026731,-56.3255816680932,-56.3255726767895,-56.3255435017432,-56.3255578558126,-56.3255928338517,-56.3256077482101,-56.3256748628228,-56.3257215802495,-56.3257266361903,-56.3257892684914,-56.3258854380885,-56.3259985646507,-56.3260410763377,-56.3260902750307,-56.3261431843482,-56.3262416084414,-56.3263253449597,-56.326385482641,-56.3264495957057,-56.3264987944121,-56.3265363678733,-56.3265752744397,-56.3265998322936,-56.3266642930973,-56.3266861843872,-56.3267265652126,-56.3267578480126,-56.3267605960966,-56.3267076087696,-56.3266579164754,-56.3265968983401,-56.3266021277037,-56.3266708031214,-56.3266685352851,-56.3266016607962,-56.3265738731321,-56.3266680016766,-56.3267512712875,-56.3268228948923,-56.3269224395634,-56.3269782950361,-56.3270553881284,-56.3271224093596,-56.3271944865316,-56.3272878680242,-56.3273766604834,-56.327458782836,-56.3275106229046,-56.3275789781571,-56.3276431579229,-56.3276538034131,-56.3277157020025,-56.3277871388443,-56.3278481569795,-56.3279087749084,-56.3279886827856,-56.3280693910756,-56.3281190700297,-56.3281967767717,-56.3282986826605,-56.328375669031,-56.3284627539429,-56.3285792273446,-56.3286736360335,-56.328770766126,-56.3288773010688,-56.3289658267238,-56.3290544857808,-56.3290977480923,-56.3291540037715,-56.3292163025672,-56.3292730384941,-56.3293507318959,-56.3294507301342,-56.3295453255862,-56.3295989532433,-56.3296528076841,-56.3296860781759,-56.3297137057574,-56.3297195621111,-56.3297545001295,-56.3297748973155,-56.3298412782165,-56.3298724943154,-56.3299239074972,-56.32998727351,-56.3300208508267,-56.3300613783945,-56.3300961029695,-56.3301511446892,-56.3301945137224,-56.3302466205953,-56.3302728474545,-56.3302672312247,-56.3302605477779,-56.33025317064,-56.3302649233678,-56.3303347460438,-56.3303810232435,-56.3304220310589,-56.3304561019635,-56.3304936546637,-56.3305249908246,-56.3305669457952,-56.3306271901981,-56.3307185039576,-56.3307365132454,-56.3307364332042,-56.3306761888012,-56.3306335801602,-56.3305747231395,-56.3305331950557,-56.3304890522902,-56.3304469772577,-56.3304722836421,-56.3305016854721,-56.3305595686573,-56.3305769776355,-56.3306290711681,-56.3306580861319,-56.3306901293241,-56.330724973961,-56.3307886734791,-56.330834897318,-56.3308840960243,-56.3309042664267,-56.330897649681,-56.330915605608,-56.3309642707058,-56.3310145499694,-56.3310571185898,-56.3311094389061,-56.3311589044167,-56.3311986849325,-56.3312308348464,-56.3312549005911,-56.3312939326061,-56.3313247099269,-56.3313680389394,-56.3314259221246,-56.3314549504285,-56.3314835251653,-56.3314654625166,-56.3314416235555,-56.3314455188978,-56.3314771618836,-56.3315178762143,-56.3315612452475,-56.3316130853161,-56.3316538263273,-56.3317060932827,-56.3317609482394,-56.3318076523259,-56.3318512481428,-56.3318890809875,-56.3319292083488,-56.3319769129513,-56.3320103168452,-56.3320333553935,-56.3319666143067,-56.3319335315935,-56.3319039805883,-56.3318673716454,-56.3318268488928,-56.3317567060516,-56.3317380164129,-56.331717312402,-56.3316725293062,-56.3316289564424,-56.3315993489366,-56.331568969231,-56.331616725652,-56.3316451271698,-56.3317047325809,-56.3317430856939,-56.3317564392474,-56.3317725809054,-56.3317893628936,-56.3318041838705,-56.3318185112595,-56.3318366406093,-56.3318463256041,-56.3318638946649,-56.3318884940181,-56.3319066767287,-56.3319232586137,-56.3319391468077,-56.3319545013931,-56.3319654537082,-56.3319806215306,-56.3319972167558,-56.3320166267661,-56.3320295534327,-56.3320398920979,-56.3320540460642,-56.3320683601129,-56.3320836880179,-56.3321008702126,-56.3321149174571,-56.3321292581863,-56.3321448128749,-56.3321576194796,-56.332170466105,-56.3321860874946,-56.3322028828231,-56.3322185042128,-56.3322365935419,-56.3322507341679,-56.3322661821348,-56.3322814966996,-56.3322947035107,-56.3323114454783,-56.332332136149,-56.332351532819,-56.3323692219418,-56.3323876047556,-56.3324044534449,-56.3324138716354,-56.3324237700736,-56.3324208619071,-56.3324068280028,-56.3323927940985,-56.3323926740366,-56.3323926073355,-56.3323685015703,-56.3323488781166,-56.3323322028501,-56.3323121525096,-56.3322955706246,-56.3322732657881,-56.3322498670541,-56.332231030673,-56.3322074051554,-56.3321837662975,-56.332162275214,-56.332129925197,-56.3321022175741,-56.3320698942375,-56.3320479362465,-56.3320207088713,-56.3319983373337,-56.3319727508048,-56.3319409477365,-56.3319151877847,-56.3318849455214,-56.3318613066635,-56.3318333322364,-56.3318181910944,-56.3318202454872,-56.3318309043176,-56.331856770991,-56.3318826243243,-56.3319081574924,-56.3319317963502,-56.3319550750223,-56.3319789940246,-56.3320104769278,-56.3320367304674,-56.3320583416128,-56.3320847685752,-56.3321116491049,-56.3321379159847,-56.3321625420183,-56.3321853404427,-56.3322133682307,-56.3322338321178,-56.332257430955,-56.3322918086844,-56.3323207169265,-56.332339393225,-56.3323572157499,-56.3323748781922,-56.3323896858288,-56.3324075216939,-56.3324260245697,-56.3324457013842,-56.3324560000288,-56.3324557332245,-56.3324878164373,-56.3324973813702,-56.3325036646106,-56.3325026640946,-56.3325017569601,-56.3325159109264,-56.3325300782328,-56.3325433917656,-56.3325548376685,-56.3325717263785,-56.3325960856078,-56.3326238199111,-56.3326477389134,-56.3326666553358,-56.3326821433233,-56.3327079299555,-56.3327302748126,-56.3327494980599,-56.3327672538837,-56.3327834489025,-56.3327715360921,-56.3327483641418,-56.3327213368698,-56.3326972444447,-56.3326731253392,-56.3326523679674,-56.3326419626011,-56.3326452976544,-56.3326617594775,-56.3326761535676,-56.332691508153,-56.3326914814726,-56.3326774475683,-56.3326583443829,-56.3326395880431,-56.3326222724464,-56.3326097860068,-56.332596285711,-56.3325763020716,-56.33255430406,-56.3325359345864,-56.3325153639776,-56.3324876430145,-56.332464711188,-56.3324438070739,-56.3324194878652,-56.3323980634827,-56.3323655267027,-56.3323360848521,-56.332301853865,-56.3322774012542,-56.3322579912439,-56.3322341522829,-56.3322098063937,-56.3321689720011,-56.332147881124,-56.332126483422,-56.332103898441,-56.3320809932949,-56.3320367304674,-56.3320216160058,-56.3320117575882,-56.3319998847985,-56.3319903598862,-56.3319851171824,-56.3319780735499,-56.3319720704539,-56.3319640796662,-56.3319610514378,-56.3319569026315,-56.3319534741967,-56.3319653736669,-56.3319911736392,-56.3319875984621,-56.3319583433745,-56.3319290616065,-56.3318947238976,-56.3318723923807,-56.3318482332546,-56.3318311044208,-56.3318205122915,-56.3318083326768,-56.3317781170939,-56.331758293537,-56.3317311195227,-56.3317151779679,-56.3317077874898,-56.3317001035269,-56.331693726905,-56.331682214301,-56.3316671131796,-56.3316526790689,-56.331632975574,-56.3316130052748,-56.3315959564823,-56.3316076825297,-56.3316251448688,-56.3316426072079,-56.3316608566196,-56.3316836283636,-56.3316967818138,-56.331702985013,-56.331708614583,-56.331709428336,-56.3317100686662,-56.331712309822,-56.3317142041323,-56.331699169712,-56.3316868700354,-56.3316741301318,-56.3316596960211,-56.3316492239537,-56.3316332290381,-56.3316143259559,-56.3315917009543,-56.3315765064514,-56.3315612452475,-56.3315466243738,-56.331534871646,-56.3315209711438,-56.3315102989732,-56.3315016011542,-56.3314875805901,-56.3314813507105,-56.3314740936345,-56.3314670633422,-56.3314594327402,-56.3314531361595,-56.3314455989391,-56.3314409698851,-56.3314357405215,-56.3314335127059,-56.3314316050554,-56.3314284167444,-56.3314257353616,-56.3314181314401,-56.3314099672296,-56.3314046178041,-56.3313947727267,-56.3313877290941,-56.3313757629229,-56.3313755895001,-56.3314062719905,-56.3314210396065,-56.3314321520041,-56.3314744271399,-56.3314839520521,-56.3314914225715,-56.3314968386981,-56.3315001737514,-56.3314987196681,-56.3314955713778,-56.3314930900981,-56.3314926765515,-56.3314884877246,-56.3314846724236,-56.3314777888736,-56.3314719191798,-56.3314674235279,-56.3314636082269,-56.3314607934419,-56.3314566179552,-56.331450414756,-56.3314411299677,-56.3314304711373,-56.3314198523276,-56.3314078594759,-56.3314026834731,-56.3314015762354,-56.3314049112888,-56.3314092735385,-56.3314149831497,-56.331418691729,-56.3314224003083,-56.3314308580035,-56.3314355937792,-56.3314403295549,-56.3314453988359,-56.3314504814571,-56.3314555507381,-56.3314602865138,-56.3314684107037,-56.3314744805007,-56.3314788427504,-56.3314835518457,-56.3314876072705,-56.3314933569024,-56.3315045893619,-56.3315127402322,-56.3315208911025,-56.3315290419728,-56.3315365124922,-56.3315439830116,-56.33155452178,-56.331560965103,-56.3315680887769,-56.3315710903249,-56.3315720241398,-56.3315760528842,-56.3315807886599,-56.3315858312605,-56.3315909138817,-56.3316019862587,-56.3316068998326,-56.3316414530756,-56.3317045858837,-56.331727464431,-56.331721175774,-56.3316996905823,-56.3316524938753,-56.3316450299804,-56.3317668810873,-56.3317918975341,-56.3318058247167,-56.3318126148853,-56.3318252080465,-56.331836747331,-56.3318469792745,-56.3318564908465,-56.3318796894773,-56.3318936967012,-56.331906009718,-56.3319190030857,-56.3319206305917,-56.331914080547,-56.3319102385656,-56.3319204438287,-56.3319320631545,-56.3319453900275,-56.3319573028379,-56.3319664809046,-56.3319766861677,-56.3319878919468,-56.3320001115821,-56.3320167601682,-56.3320310075159,-56.332036770488,-56.3320421866146,-56.3320472558956,-56.3320519916713,-56.3320563806015,-56.3320607695316,-56.3320695740724,-56.3320739630025,-56.3320790456237,-56.3320902380626,-56.3320963478803,-56.3321089410416,-56.3321153843646,-56.3321283110312,-56.3321405973676,-56.3321521633324,-56.3321637559777,-56.3321753352828,-56.3321869012476,-56.3321926642198,-56.33220456369,-56.332217143511,-56.3322297366723,-56.3322361799953,-56.332249800353,-56.332263754216,-56.3322784284506,-56.3322934228502,-56.3323087507552,-56.3323234249898,-56.3323373788528,-56.3323499986945,-56.3323615779996,-56.3323721434485,-56.332382375392,-56.332391886964,-56.3324055340021,-56.3324177936581,-56.3324283324265,-56.332434428904,-56.3324395115252,-56.3324452611571,-56.3324503437784,-56.3324567737611,-56.3324690600975,-56.3324806527428,-56.332485735364,-56.3324901242942,-56.3324969011225,-56.3325088406133,-56.3325242218792,-56.3325365615764,-56.3325495682843,-56.3325625883324,-56.3325749280297,-56.3325855468394,-56.332597846516,-56.3326098126872,-56.3326162560102,-56.332620311435,-56.3326202313938,-56.3326160692472,-56.3326119204409,-56.3326063975926,-56.3326025556112,-56.3326038362717,-56.332607544851,-56.3326163894123,-56.3326228193951,-56.3326313171109,-56.3326367332375,-56.3326349456489,-56.3326297696462,-56.3326358661237,-56.3326474587689,-56.3326618128384,-56.3326768605989,-56.3326929222156,-56.332708650327,-56.3327212701687,-56.3327263127693,-56.3327303681941,-56.3327467232955,-56.3327654662951,-56.3327852631715,-56.3328047265426,-56.3328238697486,-56.3328419857582,-56.3328590745713,-56.3328748026827,-56.3328888232468,-56.3329004158921,-56.3329092471132,-56.332917744829,-56.3329224672645,-56.3329285770822,-56.3329384354998,-56.3329517356923,-56.3329670635973,-56.3329827383479,-56.332997385902,-56.3330106327337,-56.3330225455441,-56.3330337513232,-56.3330446369372,-56.333055882737,-56.3330671418769,-56.3330794148731,-56.3330924082408,-56.3331061086398,-56.3331201292038,-56.3331338296028,-56.3331464494445,-56.3331587491211,-56.3331710354575,-56.3331833084537,-56.3331969554918,-56.3332110027363,-56.3332257303317,-56.333239764236,-56.3332524374386,-56.3332640967849,-56.3332747155947,-56.3332850008991,-56.3332952862035,-56.3333130553675,-56.3333294905102,-56.3333510216143,-56.3333643618275,-56.3333787425774,-56.3333944706888,-56.3334105323055,-56.3334262604169,-56.3334419751881,-56.333456676103,-56.3334703498216,-56.3334819824875,-56.3335096367495,-56.3334726581435,-56.3335696920365,-56.3336661162191,-56.3337583912133,-56.3339173514977,-56.3339899181164,-56.3339920670286,-56.3340093477966,-56.3340171518214,-56.3340232482988,-56.3340252226504,-56.3340128696129,-56.3340042651754,-56.3339987423271,-56.3339880701565,-56.3339787853681,-56.3339742897163,-56.3339660054439,-56.3339607894205,-56.3339590018319,-56.3339626570503,-56.3339687268474,-56.3339768777176,-56.3339870829808,-56.3339928326127,-56.334006119465,-56.334020446854,-56.334035774759,-56.334050102148,-56.3340620149584,-56.3340708461796,-56.3340755552749,-56.3340778631317,-56.3340784767815,-56.3340794239367,-56.3340807045972,-56.3340819985978,-56.3340839596092,-56.3340835460626,-56.3340790237303,-56.3340748349033,-56.3340754352129,-56.3340780899154,-56.3340817718142,-56.3340854537131,-56.3340887887664,-56.3340914434688,-56.3340930709748,-56.3340936846246,-56.3340918836958,-56.3340873613636,-56.3340828657117,-56.3340773428634,-56.334068058075,-56.3340625352267,-56.3340563320276,-56.3340531703971,-56.3340548112433,-56.3340609077207,-56.3340670041982,-56.3340737810265,-56.3340788369673,-56.3340849334447,-56.3340913500873,-56.3340981269156,-56.3341042100529,-56.3341089058079,-56.3341119073559,-56.3341077185289,-56.3340994342565,-56.3340867343735,-56.3340709662415,-56.3340545044184,-56.334039403297,-56.3340273837649,-56.3340191261729,-56.3340139501702,-56.3340196864619,-56.3340254360938,-56.3340298250239,-56.3340314525299,-56.3340299851065,-56.3340264632902,-56.3340222477828,-56.3340190461316,-56.3340165381716,-56.3340140435517,-56.3340112020863,-56.3340094144977,-56.334004491959,-56.3339985422239,-56.333991912138,-56.3339856555779,-56.3339800793688,-56.3339759038821,-56.333973769448,-56.3339750501084,-56.3339866560939,-56.3340023441847,-56.3340160445837,-56.3340303986531,-56.3340440723717,-56.3340567055536,-56.3340364284295,-56.3340203001117,-56.3340042118145,-56.3339901378896,-56.3339778115326,-56.3339674728673,-56.33395888177,-56.333955066469,-56.3339484630635,-56.3339422065035,-56.3339359099228,-56.333928973012,-56.3339251310306,-56.3339213157296,-56.3339174737482,-56.3339112171882,-56.3339066681755,-56.3339052140922,-56.3339061612474,-56.3339088159498,-56.3339124978486,-56.3339168867788,-56.3339209422036,-56.3339253044533,-56.3339290130326,-56.3339330284368,-56.3339312408482,-56.3339243572982,-56.3339123377661,-56.3338965829743,-56.3338790939547,-56.3338622986263,-56.3338543745396,-56.3338416746566,-56.3338323631878,-56.3338275340306,-56.3338277874947,-56.3338321497444,-56.333838566387,-56.3338422749662,-56.3338487182892,-56.3338527336934,-56.3338557352414,-56.3338597506456,-56.3338641395757,-56.3338702493934,-56.3338790806145,-56.3338834695447,-56.3338810016052,-56.3338747850659,-56.333865847123,-56.333853520766,-56.333839446841,-56.3338250660912,-56.3338117125377,-56.3338000531914,-56.3337863527924,-56.3337753604567,-56.3337691305771,-56.333762927378,-56.3337566974984,-56.3337497739277,-56.3337418365009,-56.333732898558,-56.3337229334187,-56.333711247392,-56.333698547509,-56.333685847626,-56.3336738280939,-56.3336645566457,-56.3336579799206,-56.3336534842687,-56.3336492954418,-56.3336430655622,-56.3336348079702,-56.3336251763362,-56.3336172655898,-56.3336131167835,-56.3336233087064,-56.3336345678464,-56.3336413446747,-56.3336286447917,-56.3336163451151,-56.3336012706742,-56.333585555903,-56.333570854988,-56.3335578349399,-56.3335420801481,-56.3335307809875,-56.33352217655,-56.3335142658035,-56.3335032734678,-56.3334888660375,-56.333477193351,-56.3334641466224,-56.3334493923466,-56.3334336108744,-56.3334253532824,-56.3334075040771,-56.3333886543558,-56.3333790227219,-56.3333594659693,-56.3333498343353,-56.3333309579336,-56.3333220199908,-56.3333130687077,-56.3332965802041,-56.3332886694577,-56.3332810922166,-56.3332742086666,-56.3332673117763,-56.3332604282263,-56.3332542250272,-56.3332480084878,-56.3332356287699,-56.3332294255708,-56.3332228755261,-56.3332159786359,-56.3332012110198,-56.3331936337787,-56.3331857230323,-56.3331692345287,-56.3331613104421,-56.3331455156296,-56.3331303878278,-56.3331163005627,-56.3331032271537,-56.3330911809412,-56.3330798150795,-56.3330674353616,-56.3330526810858,-56.3330444234938,-56.3330245465761,-56.3330135809208,-56.3330022817602,-56.3329793499337,-56.332957471984,-56.3329376484272,-56.3329202394489,-56.3329055652144,-56.3328929453727,-56.3328786179837,-56.3328649175847,-56.3328542854347,-56.3328501366284,-56.3328473218434,-56.3328489493495,-56.3328546856411,-56.3328597549222,-56.3328658247192,-56.3328712408458,-56.3328759766214,-56.3328793116748,-56.3328744825176,-56.3328641705327,-56.3328456276364,-56.3328333012793,-56.3328185470035,-56.3328027922117,-56.3327856500377,-56.3327674806673,-56.3327493112969,-56.332731488772,-56.3327139997525,-56.3326971910838,-56.3326814229518,-56.3326663218304,-56.3326522612457,-56.3326388676716,-56.3326258342833,-56.3326131210601,-56.3326014483735,-56.332589775687,-56.3325784365057,-56.3325671106647,-56.332556118329,-56.3325451259933,-56.3325341336576,-56.3325227944764,-56.3325111217898,-56.3324994757837,-56.3324871227462,-56.3324751032141,-56.3324627368364,-56.3324507306445,-56.332438684432,-56.3324270117454,-56.3324156725642,-56.332405027074,-56.3323950619348,-56.3323854303008,-56.3323764656775,-56.3323685549311,-56.33236097769,-56.3323544276453,-56.3323485579515,-56.3323437021139,-56.3323398868129,-56.3323349909546,-56.3323345507276,-56.3323395933282,-56.3323501320966,-56.3323644594856,-56.3323812147934,-56.3323983036066,-56.3324147387493,-56.3324301466955,-56.3324442206205,-56.3324572273284,-56.3324688866747,-56.3324795054845,-56.3324921520066,-56.332504064817,-56.3325073998703,-56.3325052654362,-56.3325004095986,-56.3324928323575,-56.3324828672182,-56.3324701673352,-56.3324400051131,-56.3324125776347,-56.332395702265,-56.3323961958529,-56.332488483448,-56.3326214880226,-56.332709877851,-56.3327717889883,-56.3328253107919,-56.3328546322803,-56.3328912630196,-56.3328993681725,-56.3328188521148,-56.332731027938,-56.3327047806725,-56.3327247223532,-56.3327913561655,-56.3329923068903,-56.3329463750385,-56.3329282840975,-56.3328863406719,-56.3329060507363,-56.3329758348969,-56.3329104759334,-56.3326015057919,-56.332422487356,-56.3323215826256,-56.3325123356291,-56.3328571754026,-56.3329465730298,-56.3329567649527,-56.3329741205701,-56.3329880610929,-56.3330006275738,-56.3330135542404,-56.3330292023105,-56.3330472916397,-56.3330660346392,-56.3330834702979,-56.3330971440165,-56.333110817735,-56.3331218100707,-56.3331341097473,-56.3331484638167,-56.3331617773495,-56.3331709554162,-56.333173943624,-56.3331673935793,-56.3331536664999,-56.3331416869884,-56.3331276397439,-56.3331129121485,-56.3330985313986,-56.3330848043192,-56.3330735051586,-56.3330649007211,-56.3330590443675,-56.3330569099334,-56.3330598714607,-56.3330656077524,-56.3330733850967,-56.333082536483,-56.3330923949006,-56.3330974775218,-56.3331069624134,-56.333111004498,-56.3331150599228,-56.3331187685021,-56.3331244647731,-56.333128773662,-56.3331331225715,-56.3331374581408,-56.333142847587,-56.333153733201,-56.3331683940953,-56.3331807337925,-56.3331937405004,-56.3332074408994,-56.333220114102,-56.3332317734483,-56.3332454871875,-56.3332537447795,-56.3332541716663,-56.3332470479925,-56.3332378699258,-56.3332324537992,-56.3332294655914,-56.3332339879237,-56.3332429258666,-56.3332552522236,-56.333269606293,-56.3332836001767,-56.3332958464924,-56.3333043442082,-56.3333090533035,-56.3333116813255,-56.3333112544387,-56.3333057315904,-56.333295446286,-56.3332848007959,-56.3332765432039,-56.3332696596539,-56.3332658443529,-56.333270233283,-56.3332817992479,-56.3332927115423,-56.3333063319,-56.3333216864854,-56.3333387486181,-56.3333574916177,-56.3333776353397,-56.3333882007886,-56.3334100520578,-56.3334213111978,-56.3334434959724,-56.3334544082668,-56.3334756058656,-56.3334957362473,-56.3335152262989,-56.3335347030102,-56.3335538195357,-56.3335729360613,-56.33359099871,-56.3336066734605,-56.3336199469727,-56.3336294718849,-56.3336352215168,-56.3336358218264,-56.3336214143961,-56.3336094215444,-56.333595067475,-56.3335790058583,-56.3335615435192,-56.3335434275096,-56.3335239507983,-56.3335041539219,-56.333484330365,-56.3334652138395,-56.3334478048612,-56.3334327971214,-56.3334191767637,-56.3334075707782,-56.3333921895123,-56.3333805435062,-56.3333767282052,-56.3333797297532,-56.3333834383324,-56.3333939504205,-56.3334082244486,-56.3334252599009,-56.3334436693951,-56.3334634395911,-56.3334835833131,-56.3334938152566,-56.3335142924839,-56.3335245244275,-56.3335439744584,-56.3335613567562,-56.3335756574648,-56.3335865430788,-56.3335909320089,-56.3335976821568,-56.3336030716029,-56.3336077540178,-56.3336120895871,-56.33361539796,-56.3336170121258,-56.3336162383934,-56.3336106888647,-56.3336034584691,-56.3335941736807,-56.3335828745201,-56.3335701746371,-56.3335571279086,-56.3335447748712,-56.3335392520229,-56.3335289133576,-56.3335240708602,-56.3335144258861,-56.3335095833887,-56.3335044073859,-56.3334988845377,-56.3334933616894,-56.3334874653151,-56.3334816089615,-56.3334757392677,-56.3334695360686,-56.333463679715,-56.3334574631756,-56.3334461106542,-56.3334409213112,-56.3334309294915,-56.3334261003343,-56.3334181495672,-56.3334118930072,-56.3334093983874,-56.3334123599147,-56.3334225384974,-56.3334306893677,-56.3334409213112,-56.3334525139565,-56.3334657874687,-56.3334797813523,-56.3334944422467,-56.3335094900072,-56.3335244977471,-56.3335395188271,-56.3335538728966,-56.33356785344,-56.3335815271586,-56.3335948273512,-56.333608140884,-56.3336207874061,-56.3336330604023,-56.3336453467386,-56.3336569393839,-56.3336685320292,-56.3336794443236,-56.3336903299376,-56.3337008953865,-56.3337107538041,-56.3337206122216,-56.3337396753863,-56.333748853453,-56.3337580181795,-56.3337675430918,-56.3337774015093,-56.333787580092,-56.333798465706,-56.3338096848253,-56.3338212241098,-56.3338324565693,-56.3338433155029,-56.333852773714,-56.3338608979039,-56.3338669410205,-56.3338705695585,-56.3338449563491,-56.3338264134527,-56.333805722782,-56.3338295217224,-56.3339186210065,-56.3340146171809,-56.3341122408612,-56.3341832774966,-56.3342093042526,-56.3342476840461,-56.3343331147715,-56.3344076999037,-56.3344789499825,-56.3345498532158,-56.3346225840583,-56.3346438216777,-56.3346172879936,-56.3345974510965,-56.334596850787,-56.3346171946121,-56.3346475035766,-56.3347242898439,-56.3347919380651,-56.3348804637201,-56.3349692294989,-56.3350702149129,-56.3351202407125,-56.3352742500023,-56.3352877518576,-56.3353047052597,-56.3352559108593,-56.335183833509,-56.3351258302619,-56.335056394452,-56.334931890242,-56.3348308514671,-56.3346445661524,-56.3344838551172,-56.3343331292586,-56.3342571956181,-56.3342269941045,-56.3342545214979,-56.3343347730254,-56.3344242254504,-56.3345759295302,-56.3346547216151,-56.3347178440389,-56.3348165841986,-56.3348135024796,-56.3346617109036,-56.3346266818694,-56.3346274871989,-56.3346557752414,-56.3347484821132,-56.3348277522185,-56.3348316251995,-56.3348035555813,-56.3349022946345,-56.3350515666681,-56.3351182261001,-56.3350536764969,-56.3350541985122,-56.335035425315,-56.3350525740585,-56.3350376004132,-56.3349962112393,-56.334988010226,-56.3350274061687,-56.3351047794054,-56.3351590874134,-56.3352530025145,-56.3353430089331,-56.3354524448502,-56.3355956592314,-56.3356492068472,-56.3357240054228,-56.3357232316904,-56.3357415744836,-56.3357823688556,-56.3359191460618,-56.3359616346409,-56.336010496078,-56.3361224775917,-56.3361900991326,-56.3362880296378,-56.336367243824,-56.3364616791933,-56.3365297142808,-56.3365498980234,-56.3365351971084,-56.336560654026,-56.3366715178965,-56.3368340682689,-56.3370017402572,-56.3371393539841,-56.3373836453309,-56.3375740565971,-56.3379099843948,-56.3381212074986,-56.3383817443235,-56.3385045814863,-56.3387519774982,-56.3388898812082,-56.3388470291114,-56.3386308609412,-56.3385485564711,-56.3383817894908,-56.3383210864026,-56.3390302972287,-56.3391292015696,-56.3391297751987,-56.3391303488279,-56.3391305756115,-56.339129481714,-56.3391263200835,-56.3391201168844,-56.3391104852504,-56.339096758171,-56.3390786288212,-56.3390570576965,-56.3390464388867,-56.339026561969,-56.3390118210334,-56.3390048974628,-56.339004790741,-56.3390094731559,-56.3390131683949,-56.3390175573251,-56.3390219462553,-56.3390270021961,-56.3390317246315,-56.3390364604072,-56.3390408493374,-56.339044891422,-56.3390506010333,-56.3390522285393,-56.339053149014,-56.3390520150959,-56.3390512413635,-56.3390494537749,-56.3390486667023,-56.3390489201664,-56.3390505476724,-56.3390532023748,-56.3390572044388,-56.3390611931626,-56.3390645015354,-56.339066102361,-56.3390649684429,-56.3390631274935,-56.3390629940913,-56.3390646215973,-56.3390676098051,-56.3390719453744,-56.3390776816661,-56.3390851121649,-56.3390935565198,-56.3391030414114,-56.3391132199941,-56.3391240655875,-56.3391356048719,-56.3391471708368,-56.3391594304927,-56.3391717034889,-56.3391843233306,-56.3391969431723,-56.3392102700453,-56.3392232500728,-56.3392369237913,-56.3392502506643,-56.3392642979089,-56.3392783318132,-56.339292712563,-56.3393074401584,-56.3393225279396,-56.3393382827314,-56.339354397709,-56.3393708595321,-56.3393880017061,-56.3394054907256,-56.3394229664049,-56.3394407889298,-56.3394582779493,-56.3394757669689,-56.3394929091429,-56.339509370966,-56.3395258194489,-56.3395422545916,-56.3395583695691,-56.3395744978869,-56.3395906128645,-56.3396073815125,-56.3396241901812,-56.3396416658605,-56.3396595017256,-56.33967729757,-56.3396951200949,-56.3397126091144,-56.3397297512884,-56.3397458395856,-56.3397616210578,-56.3397760018077,-56.339789035196,-56.3398010280477,-56.3398116468574,-56.3398209316458,-56.3398346587252,-56.3398388075315,-56.3398409419656,-56.339835899365,-56.3398318572804,-56.3398223323682,-56.3398118202802,-56.3398070845045,-56.3398026955743,-56.3397973194684,-56.339798106541,-56.3398012681715,-56.3398064441742,-56.3398126740538,-56.3398205848003,-56.3398288690727,-56.3398378203557,-56.3398471184844,-56.3398564032728,-56.3398650343907,-56.339873625488,-56.33988188308,-56.3398898071667,-56.3398973710676,-56.3399124721889,-56.3399272131245,-56.3399419140395,-56.3399565882741,-56.339971222488,-56.3399858700421,-56.340000504256,-56.3400148049646,-56.3400284253223,-56.340041045164,-56.3400523043039,-56.3400673120438,-56.3400799318855,-56.3400904973344,-56.3401017164537,-56.3401088401276,-56.3401169909978,-56.340127196261,-56.3401394692571,-56.340151408748,-56.3401623077022,-56.3401660162814,-56.3401655893946,-56.3401604133919,-56.3401548905436,-56.340143217857,-56.3401291839527,-56.3401154835538,-56.3401034907021,-56.3401106143759,-56.3401228873721,-56.3401396426799,-56.3401587458652,-56.3401795966185,-56.3402011010422,-56.3402222719606,-56.3402324905639,-56.3402427225075,-56.340261465507,-56.3402702967282,-56.3402855979528,-56.3402923747811,-56.3402980977326,-56.3403028335083,-56.34030919679,-56.3403111578013,-56.3403117581109,-56.3403116780696,-56.3403105441515,-56.3403084230576,-56.3403055815922,-56.3403023932812,-56.3402981777738,-56.3402936020807,-56.3402887062224,-56.3402841305293,-56.3402795548362,-56.3402756861743,-56.3402728180285,-56.3402706302335,-56.3402698164805,-56.3402700432641,-56.340271283904,-56.3402732182349,-56.3402761931024,-56.3402798349807,-56.3402838370446,-56.3402881726139,-56.3402928416885,-56.3402975241034,-56.340302566704,-56.3403075826242,-56.3403126252248,-56.3403176811656,-56.3403227237662,-56.3403273928408,-56.3403321019361,-56.3403361173402,-56.3403397992391,-56.3403428007871,-56.3403450552831,-56.3403421871373,-56.3403380249907,-56.3403321686371,-56.3403163604845,-56.3403067421907,-56.3402961100408,-56.3402844373542,-56.3402717641517,-56.3402590909491,-56.3402457107152,-56.3402319836358,-56.3402179230511,-56.3402038491261,-56.3401901220467,-56.3401764083075,-56.340162988053,-56.3401502614896,-56.3401378817718,-56.3401261557243,-56.3401154702135,-56.3401054517134,-56.3400968072552,-56.3400888298077,-56.3400825999282,-56.3400777040699,-56.3400741822536,-56.3400720478195,-56.3400709139014,-56.3400711807056,-56.3400724613661,-56.3400747825632,-56.3400780909361,-56.3400821063403,-56.3400874957864,-56.3400935655834,-56.3401006625769,-56.3401084666016,-56.3401172711423,-56.3401267560339,-56.3401372681219,-56.3401484739011,-56.3401607202168,-56.3401739670485,-56.3401882410767,-56.3402038758066,-56.3402208845784,-56.3402396008976,-56.3402596912587,-56.3402814758269,-56.3403042742513,-56.3403284600579,-56.3403529526893,-56.3403777921664,-56.3404026583238,-56.3404268174499,-56.3404503229056,-56.3404724543194,-56.3404935318563,-56.3405139690629,-56.3405336992383,-56.3405524155574,-56.3405711318766,-56.3405895146904,-56.340607884164,-56.3406262536376,-56.3406449432763,-56.340664006441,-56.3406830696057,-56.3407024662758,-56.3407225166162,-56.3407429404827,-56.3407637111947,-56.3407855357835,-56.3408076671972,-56.340829798611,-56.340852637056,-56.3408754621608,-56.3408983006059,-56.3409208055456,-56.3409433104853,-56.3409654685794,-56.3409872931683,-56.341008424066,-56.3410299018093,-56.3410506992017,-56.3410715099344,-56.3410919738214,-56.3411124243683,-56.3412208536214,-56.3413289760495,-56.341343330119,-56.3413566436518,-56.3413695969988,-56.3413818966754,-56.3413938361662,-56.3414167012917,-56.3414388994065,-56.3414504920518,-56.3414624448828,-56.3414747312192,-56.3414873777414,-56.3415010114393,-56.3415150320034,-56.3415290125468,-56.3415437134618,-56.3415583743561,-56.3415734221166,-56.341588083011,-56.3416031174313,-56.3416178183462,-56.3416328260861,-56.3416478605064,-56.3416628815865,-56.3416782361719,-56.3416935774171,-56.3417092788481,-56.3418484839731,-56.3418697215925,-56.3418909725522,-56.3419121834912,-56.3419330876053,-56.3419536181935,-56.3419734951112,-56.3419926649976,-56.3420108076876,-56.3420282700267,-56.3420450653551,-56.3420608201469,-56.342076214753,-56.3420906355235,-56.3421050162734,-56.3421187300125,-56.3421321235866,-56.3421455305009,-56.3421585638892,-56.3421716372982,-56.342185391058,-56.3421991181374,-56.3422132054026,-56.3422279863588,-56.3422437945115,-56.3422599094891,-56.3422770783435,-56.3422949008684,-56.3423130702388,-56.3423319199601,-56.342351436692,-56.3423713136097,-56.3423918441978,-56.3424126949511,-56.3424335590446,-56.3424544097979,-56.3424745535198,-56.342494710582,-56.3425138271076,-56.3425322232616,-56.3425492853943,-56.3425656404957,-56.3425806215552,-56.3425945754182,-56.342607515425,-56.3426193882148,-56.3426302738288,-56.3426404524115,-56.3426492569522,-56.3426573678018,-56.3426644647953,-56.3426712282834,-56.3426772714,-56.342683341197,-56.3426887173029,-56.3426940800686,-56.3426991226692,-56.3427045121154,-56.3427102083864,-56.3427159446781,-56.3427223213,-56.3427294182935,-56.3427371689573,-56.3427459734981,-56.3427554717299,-56.3427663173232,-56.3427775231023,-56.3427900895832,-56.3428030162498,-56.3428166099271,-56.3428309106356,-56.3428455181691,-56.3428608460741,-56.3428765074844,-56.3428918353894,-56.3429075368204,-56.3429228513852,-56.3429378724653,-56.3429521865141,-56.3429658335522,-56.3429788269199,-56.3429907797509,-56.3430023990766,-56.3430236233559,-56.343043526954,-56.3430534920933,-56.343063110387,-56.343072742021,-56.3430820268094,-56.3430909914326,-56.34309958253,-56.343107533297,-56.3431147636926,-56.3431216739231,-56.3431272234518,-56.3431324127947,-56.343136935127,-56.343140750428,-56.3431442455638,-56.3431501686185,-56.3431557448276,-56.3431623215527,-56.343171286176,-56.3431771558698,-56.3431929240019,-56.3432032359867,-56.3432148819928,-56.3432275551954,-56.3432409354293,-56.3432546358282,-56.343268696413,-56.3432827703379,-56.3432961505718,-56.3433088504548,-56.3433208966673,-56.343331889003,-56.3433425611736,-56.3433525529933,-56.343360688252,-56.3434513505087,-56.3435777003283,-56.3435468273692,-56.3436283540298,-56.3438066734127,-56.3439407051966,-56.3440891262661,-56.344132878588,-56.3441469759178,-56.3442801806179,-56.3447184949308,-56.3450527246964,-56.3452832583531,-56.3453136426292,-56.3454781559837,-56.3462655779292,-56.3465413224441,-56.3467063893192,-56.3467117254045,-56.3467143801069,-56.3467170348093,-56.3467223842348,-56.3467273734746,-56.3467323893947,-56.34673709849,-56.3467411138942,-56.3467441154422,-56.3467471036499,-56.3467477039595,-56.3467462498763,-56.3467451426386,-56.346744729092,-56.3467476906193,-56.3467531067459,-56.3467605639251,-56.3467693951462,-56.3467789067182,-56.3467891119814,-56.3467993039043,-56.346809482487,-56.3468193409045,-56.34682406334,-56.3468346021085,-56.346846835084,-56.3468624698139,-56.3468719813859,-56.3468822133294,-56.3468927520979,-56.3469036510521,-56.3469142298412,-56.3469244484445,-56.3469424844128,-56.3469554110794,-56.3469639087952,-56.3469699785922,-56.3469664701162,-56.3469575321733,-56.3469482473849,-56.3469369482243,-56.3469235813306,-56.3469095741068,-56.346894513006,-56.3468795052662,-56.3468634303092,-56.3468467150221,-56.3468282921876,-56.3468084953112,-56.3467886984348,-56.3467695819092,-56.3467518394256,-56.3467364848402,-56.3467225042967,-56.3467098577746,-56.3466927689615,-56.3466818033062,-56.3466705041456,-56.3466588848199,-56.3466465451227,-56.3466335384148,-56.3466205183667,-56.3466075116588,-56.3465951719615,-56.3465807645313,-56.3465758953534,-56.3465850734201,-56.346595638869,-56.3466086055562,-56.3466222392542,-56.3466358862923,-56.3466536554563,-56.3466649145963,-56.346669276846,-56.3466681696083,-56.3466776811803,-56.3466909546925,-56.3467093508465,-56.3467202631409,-56.3467318557862,-56.3467444756279,-56.346757428975,-56.3467707291675,-56.3467840293601,-56.3467976763983,-56.3468116702819,-56.3468256508254,-56.3468396313688,-56.3468539587578,-56.346868606312,-56.3468832672063,-56.3468979414408,-56.3469129491807,-56.3469276234153,-56.3469419107836,-56.3469562381726,-56.3469698852107,-56.3469828252176,-56.3469950982137,-56.3470063173331,-56.3470168827819,-56.3470366262975,-56.3470461378695,-56.3470556494416,-56.3470750861322,-56.3470856515811,-56.3470965638755,-56.3471078096753,-56.3471194023205,-56.3471309949658,-56.347143267962,-56.3471552341333,-56.3471675071294,-56.3471794466203,-56.3471913727709,-56.3472036591073,-56.3472155852579,-56.3472271779032,-56.347239117394,-56.3472507100393,-56.3472623026846,-56.3472735484843,-56.3472848076243,-56.347296053424,-56.3473072992238,-56.3473189185495,-56.3473305111948,-56.3473424773661,-56.3473544435373,-56.3473670900594,-56.3473800967673,-56.347393090135,-56.3474060968429,-56.347419116891,-56.3474321235989,-56.3474447968015,-56.3474574433236,-56.3474694361753,-56.3474810821814,-56.3474930750331,-56.3475050678848,-56.3475177410874,-56.3475310946408,-56.3475454753907,-56.3475608833369,-56.347577651985,-56.3475958213554,-56.3476146443962,-56.347633840963,-56.3476530108494,-56.3476718605707,-56.3476900299411,-56.3477067985892,-56.347722553381,-56.3477372809764,-56.3477506345298,-56.3477629875673,-56.3477746335734,-56.3477855992287,-56.3477958845331,-56.3478160949561,-56.3478359985542,-56.3478459770337,-56.3478562756783,-56.3478669078283,-56.3478778868237,-56.3478895728505,-56.347901552362,-56.3479139187397,-56.3479272989735,-56.347940652527,-56.3479547264519,-56.3479691072018,-56.3479838614776,-56.3479985757328,-56.3480136501737,-56.3480287112744,-56.3480437723752,-56.3480588334759,-56.3480731875453,-56.3480875816354,-56.3481009085084,-56.348113581711,-56.348125534542,-56.3481470656462,-56.3481651816557,-56.3481808830867,-56.3481941832793,-56.348209497844,-56.3482166215179,-56.3482213572936,-56.3482232916245,-56.3482228780779,-56.3482227846964,-56.3482237318515,-56.3482267200593,-56.3482314291546,-56.3482381793025,-56.3482466369976,-56.3482568155803,-56.3482673276684,-56.3482771594055,-56.3482815483356,-56.3482889788344,-56.3482937146101,-56.3482953020955,-56.3482894457419,-56.3482771060446,-56.3482664872349,-56.3482548945896,-56.3482432752639,-56.3482313090926,-56.3482196897669,-56.3482042818207,-56.3481922756288,-56.3481856989036,-56.3481849251713,-56.3481872330282,-56.3481916219583,-56.3481980386009,-56.3482058426256,-56.3482102315558,-56.3482204368189,-56.3482330166399,-56.3482480243798,-56.3482647530072,-56.3482821219648,-56.3482985037467,-56.3483128311357,-56.3483288393915,-56.3483325079502,-56.348318794211,-56.348305093812,-56.3482896325049,-56.3482759054255,-56.348271062928,-56.3482672476271,-56.3482729705785,-56.3482866176167,-56.3483050137707,-56.3483248106471,-56.3483439004923,-56.3483616429758,-56.3483783315826,-56.3483943398384,-56.3484099745683,-56.3484174450877,-56.3484249022669,-56.3484323727863,-56.3484391496147,-56.348445926443,-56.348452369766,-56.3484581327381,-56.3484641891949,-56.348469952167,-56.3484760486444,-56.3484824919674,-56.3484896023011,-56.348497419666,-56.3485154422941,-56.3485259810625,-56.3485372402025,-56.3485484860022,-56.3485600786475,-56.3485716712928,-56.3485829170926,-56.3485934825414,-56.348612225541,-56.3486272466211,-56.34863781207,-56.3486432148563,-56.3486417741133,-56.3486359044195,-56.3486276468275,-56.3486228043301,-56.3486128391908,-56.348603527722,-56.3485993789157,-56.348592828871,-56.3485893337351,-56.3485930022938,-56.3486015000096,-56.3486116919325,-56.3486205231536,-56.3486245652382,-56.3486234580005,-56.3486209900611,-56.3486212435251,-56.3486242450731,-56.3486296478595,-56.3486374518842,-56.3486476571473,-56.3486602503086,-56.3486748845225,-56.3486909194588,-56.3487079549111,-56.3487246701983,-56.3487396512577,-56.3487515907485,-56.3487600751242,-56.3487658114158,-56.3487660648799,-56.3487642772913,-56.3487604353099,-56.3487569268338,-56.3487558195961,-56.3487547123584,-56.3487539519663,-56.3487504568304,-56.3487472951999,-56.3487424260221,-56.3487389308862,-56.3487378236485,-56.3487404650107,-56.3487469083337,-56.3487451207451,-56.3487423059601,-56.3487429062697,-56.3487472951999,-56.3487513372845,-56.3487567534111,-56.3487573537207,-56.3487528180482,-56.3487476420454,-56.3487417456712,-56.3487351689461,-56.3487275783647,-56.3487234162182,-56.3487192540717,-56.348709262252,-56.3487040862493,-56.348698563401,-56.3486926937072,-56.3486813411857,-56.3486754714919,-56.3486699486436,-56.3486644257953,-56.3486592497926,-56.3486540604497,-56.3486488844469,-56.3486433615987,-56.3486381722557,-56.3486326494075,-56.3486271265592,-56.3486212702056,-56.3486150536662,-56.3486091706322,-56.3486036477839,-56.3485980982552,-56.3485935892631,-56.3485859319808,-56.3485834640413,-56.3485820099581,-56.3485805158542,-56.3485807693182,-56.3485819966178,-56.3485825969274,-56.3485838509075,-56.3485847713822,-56.3485853716918,-56.3485856251558,-56.3485858919601,-56.3485861454242,-56.3485867457338,-56.3485887200853,-56.3485920551386,-56.3485967508937,-56.3486021403398,-56.3486078632913,-56.3486136262634,-56.3486241650318,-56.3486333430985,-56.3486456160947,-56.3486599434837,-56.3486752847289,-56.3486906393143,-56.348704633198,-56.3487213484852,-56.3487353023482,-56.348747241839,-56.3487588344843,-56.3487707606349,-56.3487834338375,-56.3487971609169,-56.3488064457053,-56.3488205062901,-56.3488297910785,-56.3488435181579,-56.3488524561007,-56.3488607136927,-56.3488720528739,-56.3488786029186,-56.3488868605106,-56.3488951181026,-56.3489050832419,-56.3489143546901,-56.348928802141,-56.3489394476311,-56.3489494127704,-56.3489689428426,-56.348979228147,-56.3489898469567,-56.3490011594575,-56.3490128054637,-56.3490251318207,-56.3490384586937,-56.3490525059382,-56.3490668600076,-56.3490818944279,-56.3490976091991,-56.3491133373105,-56.3491290520817,-56.3491451136984,-56.3491608151294,-56.3491765299005,-56.349191884486,-56.3492069189063,-56.3492212462953,-56.3492349200138,-56.3492478733609,-56.3492594660061,-56.349280663605,-56.3493004604814,-56.34932164474,-56.3493339444166,-56.3493476181351,-56.3493626525554,-56.349379768049,-56.349397537213,-56.3494163602539,-56.3494355034598,-56.3494546733462,-56.349473803212,-56.349491945902,-56.3495093815607,-56.3495258167033,-56.349541184629,-56.349555578719,-56.3495689055921,-56.3495815787946,-56.3495931981203,-56.3496140355334,-56.3496321782234,-56.3496482398401,-56.3496625672291,-56.3496765877932,-56.3496902214911,-56.3497038685292,-56.3497178490727,-56.3497325499877,-56.3497476110884,-56.3497623386838,-56.3497767194336,-56.349790446513,-56.3498034532209,-56.349816473269,-56.3498308540189,-56.349846942316,-56.3498643779747,-56.3498824806441,-56.3498992092715,-56.3499138701658,-56.349926143162,-56.3499370287759,-56.349946540348,-56.3499563987655,-56.3499662305027,-56.3499760889203,-56.3499808113557,-56.3499903229278,-56.3499991541489,-56.3500083322156,-56.3500185241385,-56.3500297832785,-56.3500434169764,-56.3500584380565,-56.3500748331785,-56.3500919219917,-56.3501093843308,-56.3501264998243,-56.3501436153179,-56.3501600237802,-56.3501757385513,-56.3501904394663,-56.3502033928134,-56.3502146386131,-56.3502275786199,-56.3502347022938,-56.3502411055961,-56.3502475489191,-56.3502539522215,-56.3502610492149,-56.3502684930539,-56.3502762703982,-56.3502840744229,-56.3502929056441,-56.350307539858,-56.3503184521524,-56.3503355142851,-56.3503508555303,-56.3503631418667,-56.3503747078316,-56.3503835257125,-56.3503944380069,-56.3504066843227,-56.3504196510099,-56.3504325776765,-56.3504451975182,-56.350456443318,-56.3504714510579,-56.3504830703836,-56.3504947030495,-56.3505087102734,-56.3505216903008,-56.3505367380614,-56.3505494112639,-56.3505634184878,-56.3505781460832,-56.3505935140088,-56.3506095889658,-56.3506201544146,-56.350630373018,-56.3506395510847,-56.3506480087799,-56.3506551057733,-56.3506597748479,-56.3506617491995,-56.3506606419618,-56.3506568266608,-56.3506509302866,-56.3506430195401,-56.3506333879062,-56.3506230759213,-56.3506131107821,-56.3505990501973,-56.3505911261107,-56.3505835622098,-56.3505756381231,-56.3505673805311,-56.3505625513739,-56.3505525728945,-56.3505419274043,-56.3505306282437,-56.350518635392,-56.350505308519,-56.35049098113,-56.3504745993482,-56.3504561765137,-56.3504367531633,-56.3504169562868,-56.3503978664417,-56.3503808176492,-56.3503654630638,-56.3503511089944,-56.3503374352758,-56.3503241084028,-56.3503118087262,-56.3503001627201,-56.3502850615987,-56.3502771508523,-56.3502712811584,-56.3502677860226,-56.3502714545812,-56.3502823401952,-56.3502929056441,-56.3503948784548,-56.3504009749118,-56.3504659813123,-56.3504723848764,-56.3504812164382,-56.3504934354882,-56.3505091104852,-56.3505278800938,-56.350549037525,-56.3505599497623,-56.3505715695141,-56.3505831885702,-56.3505951416377,-56.3506071080087,-56.3506194076863,-56.3506320539923,-56.3506443536836,-56.350656999976,-56.3506696731723,-56.350682319479,-56.3506949664769,-56.350707639676,-56.3507199393641,-56.35073193193,-56.3507435516837,-56.3507551707372,-56.3507767016682,-56.3507961518976,-56.3508128669898,-56.350826860967,-56.3508415222608,-56.3508493258317,-56.3508499264664,-56.3508471113325,-56.3508480585819,-56.3508459240883,-56.3508349318729,-56.3508229124247,-56.3508146546323,-56.3508063968552,-56.3507981128873,-56.3507936174842,-56.3507887747723,-56.3507839320524,-56.350778382508,-56.350772859866,-56.3507669770235,-56.3507614141762,-56.3507558646387,-56.350750315112,-56.3507454455111,-56.3507412967382,-56.3507374812809,-56.3507315582392,-56.3507273430881,-56.3507241946679,-56.350721032959,-56.3507185518698,-56.3507177650652,-56.3507200728865,-56.3507261692546,-56.3507360272933,-56.3507475932114,-56.3507587856048,-56.3507676170961,-56.350773993686,-56.3507790366024,-56.3507833720024,-56.3507887346535,-56.3507947646117,-56.3508018351096,-56.350805543675,-56.3508092389316,-56.350815975423,-56.3508220315685,-56.3508263938471,-56.3508283414355,-56.3508272348865,-56.350823365647,-56.3508188300703,-56.3508149615161,-56.3508138542879,-56.3508165086864,-56.3508218982093,-56.3508303830451,-56.3508409216607,-56.350853194331,-56.3508661616373,-56.3508791411451,-56.3508910804992,-56.3509137845546,-56.3509045590301,-56.3510007325323,-56.3510879141198,-56.3512221989612,-56.3512927279498,-56.3513811528453,-56.3515302816033,-56.3516367826735,-56.3516874117323,-56.3516977502487,-56.3517073948334,-56.3517167068095,-56.3517249639019,-56.3517332486406,-56.3517408520633,-56.3517481095777,-56.3517553401489,-56.3517625969493,-56.3517694935117,-56.3517764177224,-56.3517833009803,-56.3517901975475,-56.3518049657442,-56.3518125429395,-56.3518276703674,-56.3518427852061,-56.3518500150927,-56.3518572456719,-56.3518641429491,-56.3518710531805,-56.3518776031448,-56.3518841793673,-56.3518904229793,-56.3518970261682,-56.3519036293508,-56.3519105665631,-56.3519175170682,-56.351924827153,-56.3519321512407,-56.3519394613332,-56.3519464381071,-56.3519534155985,-56.35196037909,-56.3519666752574,-56.3519726255111,-56.3519782014884,-56.3519834308552,-56.3519883269055,-56.3519932222578,-56.3519980920585,-56.352002654114,-56.3520075099099,-56.3520124059746,-56.3520172750773,-56.3520224907996,-56.3520276939112,-56.3520329096368,-56.3520384593789,-56.352043661809,-56.3520491845798,-56.3520547476304,-56.3520602704085,-56.3520719696303,-56.3520853767324,-56.3520926073974,-56.3521087352748,-56.3521269313042,-56.352145434393,-56.3521629497993,-56.3521712077349,-56.3521787850244,-56.3521856683869,-56.3521918718167,-56.3521977412368,-56.3522032910179,-56.3522088138174,-56.3522136559969,-56.352218872458,-56.3522237013365,-56.3522288908252,-56.3522337599804,-56.3522392828009,-56.3522448325852,-56.3522503554084,-56.3522565581543,-56.3522631351984,-56.3521979055268,-56.3520876574935,-56.3519562946009,-56.3520068327843,-56.3521132154944,-56.3522574521644,-56.3524494880576,-56.3524986832533,-56.3525076212251,-56.352520641234,-56.3525373833576,-56.3525568599275,-56.3525773637596,-56.3525988948494,-56.352619438977,-56.3526389425545,-56.3526553776553,-56.3526683843716,-56.3526790428581,-56.3526873002179,-56.3527093385416,-56.3527525112019,-56.3526739419855,-56.3525502755191,-56.3526480636473,-56.3526215260042,-56.3526764691664,-56.3527540910769,-56.3528565679061,-56.3531440660926,-56.3532393471616,-56.3531557368567,-56.3529450787514,-56.3529161279584,-56.3530422433834,-56.3530464057781,-56.3530529560226,-56.3530615600879,-56.3530715517653,-56.3530828777009,-56.3530942439738,-56.3531048892744,-56.3531141739962,-56.3531217778375,-56.3531269542025,-56.3531304622987,-56.3531267802322,-56.353125846641,-56.353132730221,-56.3531406543723,-56.3531519533115,-56.3531660007294,-56.353181742048,-56.3531985239429,-56.3532156661892,-56.3532324618099,-56.3532492700468,-56.3532664123043,-56.3532753504302,-56.3532935199611,-56.3533110088495,-56.353326070248,-56.3533374088476,-56.3533480549087,-56.3533590205475,-56.353370666134,-56.3533857005128,-56.3534017621454,-56.3534164632028,-56.3534280561134,-56.3534407026307,-56.3534529754813,-56.3534621401916,-56.3534719988501,-56.3534826304808,-56.3534942767718,-56.3535018403433,-56.3535094442602,-56.353517395514,-56.3535218905872,-56.3535380590179,-56.3535531871446,-56.3535723569455,-56.3535833093068,-56.3535949418707,-56.3536079217252,-56.3536212488919,-56.3536359499614,-56.353651304617,-56.3536669925926,-56.3533645738557,-56.3529572414941,-56.3526012028351,-56.3523944680784,-56.3522178693578,-56.3519721475943,-56.351912941125,-56.3519677190442,-56.3522601454036,-56.3523957424031,-56.3524811077128,-56.3525261109047,-56.3530885994771,-56.353392696441,-56.353555727735,-56.3537259783128,-56.3538074577768,-56.3538448121377,-56.3538617191997,-56.3538780747316,-56.3538954705888,-56.3539131859981,-56.3539316224213,-56.3539503517868,-56.353968788205,-56.3539871842423,-56.3540045800804,-56.3540212815108,-56.3540366228202,-56.3540502702193,-56.3540628896504,-56.3540741358935,-56.3540942795025,-56.3541130755956,-56.3541318987672,-56.3541514289663,-56.3541709724735,-56.3541901686643,-56.3541994402165,-56.3542165958847,-56.3542241595283,-56.3542382604857,-56.3542492796457,-56.3542537748064,-56.3542600182673,-56.3542631666184,-56.3542635931047,-56.3542620061398,-56.3542583506333,-56.3542529879136,-56.3542462646007,-56.3542422223066,-56.3542381800071,-56.3542337910809,-56.3542294021537,-56.3542250132256,-56.3542209716181,-56.3542169293139,-56.3542102059908,-56.3542065504665,-56.3542059503694,-56.3542070845691,-56.3542113262681,-56.3542148352506,-56.3542193304227,-56.354224172918,-56.354230042681,-56.3542366194831,-56.3542435032213,-56.3542586308104,-56.3542668884514,-56.3542751460852,-56.3542919683033,-56.3543091371537,-56.3543180880539,-56.3543362577921,-56.3543547872476,-56.3543733300175,-56.3543911795348,-56.3544069871196,-56.3544196872005,-56.3544344147272,-56.3544474350406,-56.3544628425256,-56.3544779304776,-56.3544841336098,-56.3544722344629,-56.3544606415363,-56.3544541980608,-56.3544405916869,-56.3544341482168,-56.3544277047363,-56.354416178597,-56.3544114430389,-56.3544043460038,-56.3544003571838,-56.3544028382399,-56.3544073341415,-56.3544145645513,-56.3544259040602,-56.3544419922181,-56.3544522773605,-56.3544642571236,-56.3544775969986,-56.3544922848653,-56.3545076923817,-56.3545241007762,-56.3545408695908,-56.3545579586386,-56.3545750476819,-56.3545918291084,-56.3546085715292,-56.3546246597069,-56.3546407214807,-56.3546564763324,-56.3546718574592,-56.3546868919489,-56.3547012458042,-56.3547155732363,-56.3547292471387,-56.3547428806168,-56.3547562071902,-56.3547688273989,-56.3547814469059,-56.3547937204839,-56.3548056329259,-56.3548172258574,-56.3548288180829,-56.3548400643795,-56.3548509766597,-56.3548615416061,-56.3548721072517,-56.3548823255726,-56.3549017893595,-56.3549192117202,-56.3549335655549,-56.3549415163945,-56.3549323384688,-56.3549200920228,-56.3549057910184,-56.3548908371873,-56.3548755493315,-56.3548680786118,-56.3548602745753,-56.3548528171607,-56.3548453464451,-56.3548382230518,-56.3548317929135,-56.3548256967938,-56.3548202806212,-56.3548125029839,-56.3548091677818,-56.3548133304209,-56.3548273640733,-56.3548410379952,-56.3548577533141,-56.3548765231947,-56.3548962932307,-56.3549163965779,-56.354936167301,-56.3549556171185,-56.3549737063281,-56.3549907682725,-56.3550068036295,-56.3550221847584,-56.3550372456997,-56.3550523066337,-56.3550680886599,-56.3550842033048,-56.3550924610732,-56.3551092696815,-56.3551182074076,-56.3551271591353,-56.3551450081551,-56.3551539458885,-56.3551628969232,-56.3551718353607,-56.3551893510806,-56.3552061728439,-56.3552233419462,-56.3552411778693,-56.3552600270708,-56.3552798778151,-56.3553000744859,-56.3553206051797,-56.3553308904033,-56.3553503938265,-56.3553688832813,-56.355385305567,-56.3553986990763,-56.3554093440847,-56.3554179485316,-56.3554258597308,-56.3554347975068,-56.3554457633993,-56.3554587831434,-56.355473164199,-56.3554885982876,-56.355504740183,-56.3555129980173,-56.3555216024919,-56.355538437649,-56.35554737545,-56.3555648912714,-56.3555823534848,-56.3555987751197,-56.3556141298532,-56.3556270967067,-56.3556372885824,-56.3556437319628,-56.3556446658585,-56.3556340201223,-56.3556220276379,-56.3556072999392,-56.3555912381028,-56.3555751762619,-56.3555601424014,-56.35554199955,-56.3555313538279,-56.3555257907367,-56.3555240034498,-56.3555208415455,-56.355518026976,-56.3555135316316,-56.3555032192424,-56.3554888388956,-56.3554778730123,-56.3554669071257,-56.3554559419495,-56.3554463235237,-56.3554356645219,-56.3554318226855,-56.3554351577946,-56.3554464033896,-56.3554579963169,-56.3554716695455,-56.3554856901031,-56.3554989902505,-56.3555112902716,-56.3555225358652,-56.3555382643532,-56.3555485362725,-56.355563610559,-56.3555776714263,-56.3555903709975,-56.3555982948072,-56.3556092871553,-56.3556192529271,-56.3556322726687,-56.3556462799264,-56.355652376674,-56.3556577927659,-56.3556553115013,-56.3556501354871,-56.3556432382515,-56.3556343004653,-56.3556243353939,-56.3556140230048,-56.3555985882422,-56.3555838341229,-56.3555745497149,-56.3555608493437,-56.355548829736,-56.3555436537477,-56.3555442536358,-56.3555506836994,-56.3555605422206,-56.3555724552932,-56.3555847281402,-56.3555973476141,-56.3556096476172,-56.3556216136046,-56.3556332601192,-56.3556449059394,-56.3556565252953,-56.3556688517614,-56.3556883413039,-56.3557019754512,-56.3557156221917,-56.3557282423588,-56.3557401414064,-56.3557514009692,-56.3557636473407,-56.3557776274014,-56.3557939828685,-56.3558130859932,-56.3558236516003,-56.3558349104535,-56.3558465298057,-56.3558588026291,-56.3558717561035,-56.3558854028326,-56.3558986764534,-56.3559123238745,-56.3559256239614,-56.3559382434128,-56.3559505169215,-56.3559716209239,-56.3559893369492,-56.3560049984204,-56.3560124690092,-56.3560277831465,-56.3560451386561,-56.3560638421501,-56.3560737005965,-56.3560838923554,-56.3560944712286,-56.3561053429345,-56.3561162558331,-56.3561271408343,-56.3561380404215,-56.3561492727505,-56.3561605182574,-56.356171390651,-56.3561819695169,-56.3561925350689,-56.3562027533058,-56.3562224973287,-56.3562402125915,-56.3562558740044,-56.3562688009264,-56.3562831017456,-56.3562898783288,-56.3562874102728,-56.3562767519377,-56.3562657993845,-56.3562524588553,-56.3562377717346,-56.3562227372913,-56.3562080626534,-56.3561954432638,-56.3561845310955,-56.3561719507918,-56.3561638002963,-56.3561577036447,-56.3561492191224,-56.3561355989414,-56.3561236992806,-56.3561097457614,-56.3560937105204,-56.3560766751794,-56.3560585860824,-56.3560404962786,-56.356022420486,-56.3560046780103,-56.3559879230145,-56.3559715544327,-56.3559561998193,-56.3559418724781,-56.355928905733,-56.3559166329325,-56.3559012511379,-56.3558902588065,-56.3558857634396,-56.3558894450857,-56.3558958750988,-56.3559053869219,-56.3559172999168,-56.3559312534471,-56.3559455543016,-56.3559602282578,-56.35597348853,-56.3559857746133,-56.3559970208278,-56.3560075863817,-56.3560178179201,-56.356027329722,-56.3560406297716,-56.3560521961144,-56.3560575988295,-56.3560606004875,-56.3560526759709,-56.3560376150514,-56.356025288618,-56.3560126420445,-56.3559955265896,-56.3559811323078,-56.3559684327746,-56.3559659647781,-56.3559765303248,-56.3559898038831,-56.3560007160533,-56.3560116149184,-56.3560225270862,-56.3560361472532,-56.3560418972849,-56.3560469666662,-56.3560462058737,-56.3560420438305,-56.356034120028,-56.3560221402391,-56.3560118550579,-56.3559995021697,-56.3559861351852,-56.3559720743832,-56.3559580002805,-56.3559459814254,-56.3559408047257,-56.3559332010902,-56.3559279853135,-56.3559241434336,-56.3559195944313,-56.3559147252852,-56.355911909978,-56.3559142177016,-56.3559203143572,-56.355926411007,-56.3559335349237,-56.3559413387813,-56.3559491426417,-56.3559593343487,-56.35596508437,-56.355970500364,-56.3559793314853,-56.355990217135,-56.3560010894785,-56.3560099205845,-56.3560139362064,-56.3560077329511,-56.3559950327751,-56.3559840676944,-56.3559717413268,-56.3559594016569,-56.3559470752965,-56.3559354288745,-56.3559200207173,-56.3559090284688,-56.3559045066572,-56.3559140177096,-56.3559259437892,-56.3559392172812,-56.3559508100366,-56.3559572532875,-56.3559462610426,-56.3559342687115,-56.3559226487776,-56.3559096954464,-56.3558953417399,-56.3558810145073,-56.3558670205939,-56.3558530128193,-56.3558396863816,-56.3558263327683,-56.3558146465891,-56.355805028247,-56.3558001856054,-56.3557963437609,-56.3557983048748,-56.3558078299317,-56.3558190753672,-56.3558334297584,-56.3558491447305,-56.3558662335917,-56.3558781994414,-56.3558904993074,-56.355903492413,-56.3559168195438,-56.3559304661177,-56.3559448205081,-56.3559595082146,-56.3559745425499,-56.3559888962446,-56.356002569999,-56.3560145365393,-56.356031305262,-56.3560426176496,-56.3560549175163,-56.3560679371067,-56.3560822914995,-56.3560973258373,-56.3561130408112,-56.3561284217733,-56.3561424421499,-56.3561584639554,-56.3561638799128,-56.3561648270139,-56.3561596377081,-56.3561513806276,-56.3561400808386,-56.356125380535,-56.356113760615,-56.3561017947755,-56.35608949492,-56.3560768484358,-56.3560642019562,-56.3560512221607,-56.3560372150963,-56.3560218069662,-56.3559981947279,-56.3559831604053,-56.3559697935045,-56.3559540255779,-56.355950863657,-56.3559634836526,-56.3559743824351,-56.3559852945246,-56.3559999690437,-56.3560135758125,-56.3560138296892,-56.3560083063902,-56.3559959800628,-56.3559812261118,-56.3559671918899,-56.3559558795267,-56.3559431794043,-56.3559417253859,-56.3559502231474,-56.3559624965036,-56.3559757964254,-56.3559880962587,-56.3559990083382,-56.3560116283132,-56.3560225270775,-56.3560248480755,-56.3560186315441,-56.3560073324973,-56.3559966736017,-56.3559846946151,-56.3559709672467,-56.3559565466349,-56.3559428325763,-56.355930466489,-56.3559205015545,-56.3559129237636,-56.3559077478106,-56.3559045865971,-56.3559058670509,-56.3559061202392,-56.3558988904783,-56.3558913126823,-56.3558851094801,-56.3558744910983,-56.3558624716572,-56.3558494779124,-56.3558347902696,-56.355819409386,-56.3558091905679,-56.3557947964658,-56.3557804421466,-56.3557762934735,-56.3557823900872,-56.3557891666365,-56.3558007328597,-56.3558075094055,-56.3558170211099,-56.3558265328077,-56.355833656671,-56.3558445687229,-56.3558561349285,-56.35586017701,-56.3558597502732,-56.355852519821,-56.3558428882402,-56.3558299078145,-56.3558152068905,-56.3558025604789,-56.3557902342293,-56.3557891268588,-56.3557931424753,-56.355796824072,-56.3557936621945,-56.3557881396494,-56.3557754667888,-56.355764501109,-56.3557521608645,-56.3557388073634,-56.3557251072419,-56.3557107264953,-56.3556960124368,-56.3556809112731,-56.3556651692523,-56.3556490813118,-56.3556322994432,-56.3556151835447,-56.3555984149789,-56.3555830069851,-56.3555696535064,-56.3555589947171,-56.3555469753513,-56.3555400915698,-56.3555335418077,-56.3555269913469,-56.3555200949664,-56.3555135445039,-56.3555076886902,-56.3555004582962,-56.3554969498433,-56.3555040730251,-56.3555146119754,-56.3555292731002,-56.3555453478456,-56.3555603820412,-56.3555733624265,-56.3555860087986,-56.3556003630557,-56.3556164244976,-56.3556277367575,-56.3556393565707,-56.3556560979656,-56.3556663300388,-56.3556789631074,-56.3556902224385,-56.3556942645273,-56.3556921299295,-56.3556876074921,-56.3556824183004,-56.3556745079529,-56.355666930242,-56.3556535767847,-56.3556391960745,-56.3556255224687,-56.3556111417563,-56.3555947330093,-56.3555824068168,-56.3555693866841,-56.3555560332357,-56.3555427062446,-56.3555300334363,-56.3555170133085,-56.355503325848,-56.3554892791785,-56.3554742178421,-56.3554584632933,-56.3554426948767,-56.3554269131734,-56.3554111321693,-56.3553956970798,-56.3553802627073,-56.3553654818155,-56.3553507142366,-56.3553438171969,-56.355330063579,-56.3553235131635,-56.355311133416,-56.355299087689,-56.3552866946459,-56.3552729674845,-56.3552568525063,-56.3552383364132,-56.3552174722511,-56.3552058127304,-56.3551941936606,-56.3551815202074,-56.3551688871859,-56.3551555197905,-56.3551418595274,-56.3551278393274,-56.3551134586965,-56.3550991044944,-56.3550847502969,-56.3550700627787,-56.3550557085631,-56.3550413814989,-56.3550270272961,-56.355013006396,-56.3549993725547,-56.3549860463118,-56.3549733992866,-56.3549607529616,-56.3549491603162,-56.3549375412465,-56.3549153296539,-56.3548927714415,-56.3548811516717,-56.3548691859867,-56.3548562056447,-56.3548428786964,-56.3548292051148,-56.3548151842267,-56.3548008307227,-56.3547861432022,-56.3547714416779,-56.3547567277489,-56.3547420269257,-56.3547273261025,-56.3547129454793,-56.3546985912766,-56.3546845572756,-56.3546708837098,-56.3546575296469,-56.3546448833241,-56.3546322370148,-56.3546202442177,-56.354608291135,-56.3545966720686,-56.3545846792831,-56.3545727128885,-56.3545603867889,-56.3545473667512,-56.3545337057926,-56.3545196585016,-56.3545056252294,-56.3544912439253,-56.3544768369386,-56.3544631362741,-56.354449435611,-56.3544364155851,-56.3544244361191,-56.3544127906615,-56.3544018244358,-56.3543065089872,-56.3542455373602,-56.3542042297022,-56.354107379551,-56.3540748690879,-56.3540357693858,-56.3539785795729,-56.3539561149068,-56.3539520060653,-56.353969348344,-56.3539711494803,-56.3539592228599,-56.3539162273974,-56.3538535822442,-56.35380292932,-56.3537648294854,-56.3537258761381,-56.353692498808,-56.3536600422329,-56.3536225294182,-56.353598903707,-56.353606708243,-56.3536761438203,-56.3537496216379,-56.353733787012,-56.3537956057352,-56.3538363061159,-56.3538962975157,-56.3539542870279,-56.3539108916245,-56.3538822231608,-56.3538805693161,-56.3538804625723,-56.3538773673748,-56.3538727787781,-56.3538636675212,-56.353863320299,-56.3538580374569,-56.3538526879815,-56.3538470984517,-56.3538426294895,-56.3538258343454,-56.3538063439774,-56.3537997809877,-56.35379307042,-56.3537874278128,-56.3537055320049,-56.3536163259571,-56.3533687853632,-56.3533282042537,-56.353221802792,-56.3530721119543,-56.3530473261009,-56.3529788510632,-56.352944606765,-56.3529239956094,-56.3528828414008,-56.3527942759662,-56.3527836966573,-56.3527188370253,-56.3526084865268,-56.3525555923274,-56.3525272846253,-56.3524998036545,-56.3525126107093,-56.3525319535487,-56.3525647307134,-56.3525705737789,-56.3525158786396,-56.3524769119572,-56.3524673735994,-56.3524630783421,-56.3524607172543,-56.3524526458717,-56.3524447753487,-56.352427126544,-56.3524379184642,-56.3524693748022,-56.3525086083931,-56.3525242561863,-56.3525418389975,-56.3525551255254,-56.3525534582811,-56.3525447739218,-56.3525509365815,-56.3525614753529,-56.3525794317906,-56.3525817796758,-56.3525712006802,-56.3525590740524,-56.3525555924556,-56.3525835403027,-56.352633019131,-56.3526504546961,-56.3526630076602,-56.3526701847404,-56.3526801767981,-56.3526832584501,-56.3526757345917,-56.3526725595723,-56.3526611801151,-56.3526677438918,-56.3526716127442,-56.3526704519582,-56.3526675038066,-56.3526204396719,-56.3525666652536,-56.3525580073442,-56.3525410118093,-56.3525185600216,-56.3524978294589,-56.3524820080154,-56.3524716691304,-56.3523967372633,-56.3523640007704,-56.3523471253101,-56.3523742992258,-56.3524124252699,-56.3524170814429,-56.352360598623,-56.3523264479696,-56.3523426160999,-56.3524417202854,-56.3525467348883,-56.3525961068071,-56.3526481071106,-56.3527009208146,-56.352807895909,-56.3528781854026,-56.3529059468348,-56.3528773453256,-56.3528847759462,-56.3528931532495,-56.3529343215085,-56.3529869350265,-56.3530198989895,-56.352986254555,-56.352985774268,-56.3530072656909,-56.3529778234104,-56.3529381096592,-56.3529509965659,-56.3529612953185,-56.3529648569191,-56.3529853338924,-56.3530179242243,-56.3530361473217,-56.3530452714731,-56.3530454452535,-56.3530424436919,-56.3530411365154,-56.3530147761538,-56.3529652035724,-56.3529259704354,-56.3529132566867,-56.352893099731,-56.3528813740283,-56.3528755311322,-56.3528161669147,-56.3527697297952,-56.3527376998551,-56.352697812855,-56.3526811375716,-56.3526698383313,-56.3526603402243,-56.3526559376001,-56.3526530158899,-56.3526342331404,-56.352637048049,-56.3526396892326,-56.3526275094678,-56.3525881290297,-56.3525740153156,-56.3525288318278,-56.3525194675244,-56.3525046728005,-56.3525069274163,-56.3525429063769,-56.3526006024579,-56.3526199724206,-56.3526376214387,-56.3526841920229,-56.352706923927,-56.3526824445284,-56.3526728932819,-56.352715902208,-56.3527602984442,-56.3528131920898,-56.3528250645281,-56.3528403128866,-56.3528455023989,-56.3528497044423,-56.3528525187989,-56.3528110711037,-56.3527522005853,-56.352699026274,-56.3526779892899,-56.3526572315726,-56.3526337531512,-56.3526199458995,-56.3526030303603,-56.3525295256328,-56.3524571554758,-56.3524415874012,-56.3524051550307,-56.3523889734422,-56.3523738322512,-56.3523597181507,-56.352326314247,-56.3522497548912,-56.3522373214855,-56.3522022767798,-56.3521294664445,-56.3521115503955,-56.3520908596977,-56.352057615496,-56.3520438884739,-56.3520283206768,-56.3520158740784,-56.3520000262706,-56.35197553362,-56.3519561764229,-56.3519076985157,-56.3518884485202,-56.3518719465108,-56.351823201636,-56.351786382355,-56.3517324748149,-56.3517141718283,-56.3516715903296,-56.351646763998,-56.3516243923233,-56.3516013005544,-56.3515564638083,-56.351538921608,-56.3514888955293,-56.351500528175,-56.3514741411661,-56.3513895114746,-56.3513910723351,-56.3513960079457,-56.3513576281875,-56.3512874851492,-56.3511927965483,-56.3511274825874,-56.3510068068091,-56.3509399329634,-56.3508494729197,-56.3508066242495,-56.350719805932,-56.3506979010706,-56.3506743026325,-56.3506039460723,-56.3505727697068,-56.3505339899416,-56.3504632734243,-56.3504443705742,-56.3503983064624,-56.3503808041374,-56.3503543510054,-56.3503347669863,-56.3503193062281,-56.3502996960594,-56.3502739227612,-56.350239931994,-56.350206994485,-56.3501647729533,-56.3501005661348,-56.3500741264533,-56.3500425500704,-56.3500081853263,-56.349987548218,-56.3499727136477,-56.3499461271468,-56.3499147369466,-56.3498937533555,-56.3498703279657,-56.3498579076969,-56.3498341089527,-56.3498089230513,-56.3497624855405,-56.3497346173745,-56.3497211310939,-56.3497083776954,-56.3496848319799,-56.3496451713478,-56.3496208787984,-56.3495860076102,-56.3495548847797,-56.3495224152083,-56.3494783123994,-56.3494498973968,-56.3493804481586,-56.3493147613554,-56.3492768083236,-56.3492210329559,-56.3491645637935,-56.3491207814828,-56.3490916727147,-56.3490588155946,-56.3489256006249,-56.3488399832679,-56.3486643992565,-56.3489192236574,-56.3503863942002,-56.3507791427567,-56.3510477711131,-56.3513985808748,-56.3534063514307,-56.3534686768488,-56.3555535119054,-56.3574679125988,-56.3610145415638,-56.3615042875287,-56.3654281646177,-56.3655630341734,-56.3589233566804,-56.3579527895947,-56.3556231747956],&#34;lat&#34;:[-34.8298377704057,-34.8319233727812,-34.8352491575989,-34.8355717210029,-34.8377205255193,-34.8381066785113,-34.8411323822666,-34.8412187263663,-34.8430777580857,-34.8433946987243,-34.8442895769026,-34.8474768086504,-34.8485319581404,-34.8495400847238,-34.8505366525149,-34.8507237748787,-34.851609111578,-34.852269172184,-34.8524871145824,-34.8532090635767,-34.8548391092329,-34.8579536154635,-34.8568491758757,-34.8525755162867,-34.852177611893,-34.8519742533473,-34.8519290332438,-34.8518897431932,-34.8518293575065,-34.8517468580521,-34.8516242461239,-34.8513405118312,-34.8515773063372,-34.85171360615,-34.8518349317304,-34.8519017503106,-34.8519047875164,-34.8520047190058,-34.8521314418941,-34.8523537900238,-34.8524318381102,-34.8548781583242,-34.8558810300455,-34.861068153377,-34.8615191743134,-34.8652806758827,-34.8671704454852,-34.8690917872036,-34.8691143363328,-34.8696375670095,-34.8709410484149,-34.8729165630717,-34.8748244211696,-34.874865052124,-34.87486065569,-34.8746348392307,-34.8745911248504,-34.874497805871,-34.8744506897784,-34.8744049749888,-34.8743707260345,-34.8743672331403,-34.8743178614137,-34.8742827687993,-34.874195228657,-34.8741844982687,-34.8741840384953,-34.8741459414408,-34.873924875466,-34.873816654772,-34.8736256804191,-34.873561137114,-34.8735373390101,-34.8732728823902,-34.8730780599995,-34.8730684421257,-34.8730356138241,-34.8729754393754,-34.8729520352277,-34.8729216300891,-34.8728710308969,-34.8728313166485,-34.8728101598926,-34.8727628731349,-34.8727183226588,-34.8726973888449,-34.8726748027539,-34.8726657136157,-34.8726567282798,-34.8726240102643,-34.8726065746929,-34.8725635764436,-34.8725258220243,-34.8725084400922,-34.8724883396863,-34.8724666693834,-34.8723173623819,-34.8723940344236,-34.8728405213551,-34.8742702211878,-34.8747392664198,-34.8751155355658,-34.8751452374561,-34.8761672741307,-34.8769018604082,-34.8770639901718,-34.8778433865619,-34.8778985554273,-34.8779502208958,-34.8786332168998,-34.8788366282611,-34.8789125897887,-34.8797472301076,-34.8798127572979,-34.8803690265873,-34.8807248538811,-34.8807301010465,-34.8807311710938,-34.8807682703722,-34.8815720238413,-34.8816253887391,-34.8820072668663,-34.8824259388105,-34.8824334385637,-34.8824695181344,-34.8829834963572,-34.8834281839752,-34.8851100327274,-34.8854295393165,-34.8857246251774,-34.8859729270105,-34.8868689115559,-34.886891446575,-34.8873384695678,-34.8880451131687,-34.8885114471761,-34.8884998397176,-34.8885070234993,-34.8885242036021,-34.8885586261228,-34.8885817169492,-34.888619164436,-34.8886428720405,-34.8886814278822,-34.8887047886404,-34.8888168476915,-34.8888716062681,-34.8889204874637,-34.8890466239082,-34.8891951996901,-34.8891992781737,-34.8893875495622,-34.889406392418,-34.8899554281895,-34.8898564672714,-34.8892636591969,-34.8894255483305,-34.8895767930428,-34.8896418918093,-34.8900161490894,-34.8902132835142,-34.8903369919345,-34.8903850656063,-34.8904143209018,-34.8906186750037,-34.8906501893255,-34.8906804230511,-34.8908295559031,-34.8910998564947,-34.891272273748,-34.891303982601,-34.8912055318275,-34.891201376351,-34.8912422265852,-34.891531716716,-34.8918480006651,-34.8921865294197,-34.8925203640867,-34.8928494663132,-34.8932098696825,-34.8934441630135,-34.8937642314143,-34.894021368193,-34.8943194377484,-34.8945151362571,-34.894569097855,-34.8947041453876,-34.8948457169086,-34.8948872389113,-34.89483788846,-34.8947930946803,-34.894700407508,-34.8945257395123,-34.8942658271101,-34.8941558150837,-34.894092016758,-34.8939028466085,-34.8937268842822,-34.8934415527219,-34.8932309791724,-34.8931719557479,-34.8931305786176,-34.8930921713761,-34.8929946705689,-34.8929302392815,-34.8929844735923,-34.8930042377105,-34.8930076203894,-34.8930031467097,-34.8929871385982,-34.892932328197,-34.8928772127059,-34.8927010904615,-34.8925700607837,-34.8925244498376,-34.8924157002269,-34.8923339081492,-34.89216238232,-34.8921329919598,-34.8920858622421,-34.8920782204309,-34.8920558511124,-34.8920381458022,-34.8920171839879,-34.8920048605386,-34.8921145450868,-34.8921558243657,-34.8924843507055,-34.8924806379949,-34.8924795849994,-34.8925019933794,-34.8925962741257,-34.8928869392571,-34.8928342729195,-34.892959165,-34.8933015811508,-34.8933655225789,-34.8936463077893,-34.8937154780336,-34.8937453624522,-34.8946113008556,-34.8954837106938,-34.8954354066154,-34.8954716700861,-34.8955686283082,-34.8967270766825,-34.8967652703309,-34.8967552147743,-34.8967773928788,-34.8968089024624,-34.8968764706424,-34.8969746312663,-34.8970011516102,-34.8970523380083,-34.8971359111091,-34.8973696266422,-34.897372928345,-34.897401804904,-34.8974325374202,-34.8975633865691,-34.8976014295222,-34.8976270877548,-34.8976307479758,-34.8976663746827,-34.897706900583,-34.8977360656242,-34.897765020557,-34.8977971854785,-34.8978238575674,-34.8977902185522,-34.8977830131695,-34.8978157583904,-34.8978866682938,-34.897918274594,-34.8979088864189,-34.8979375645423,-34.8979898648483,-34.8980149227712,-34.8980665427263,-34.8981027597377,-34.8981273807687,-34.8981113074793,-34.8981075622144,-34.8980657072955,-34.8980516783937,-34.8980376845101,-34.8980192733483,-34.8980282313015,-34.8980575497551,-34.8980961946853,-34.8981229318076,-34.8981819455758,-34.8982908867596,-34.8983003316306,-34.8983261882988,-34.8983616565908,-34.898399427737,-34.8984451596554,-34.8984756320375,-34.8985158411076,-34.8985538590478,-34.8985651265254,-34.8986018654726,-34.898637272066,-34.8985836910996,-34.8985833025659,-34.8986027375891,-34.8986606341144,-34.8987154056949,-34.898723609926,-34.8987144707323,-34.8987368317448,-34.8987474055314,-34.8987734056069,-34.8988184354967,-34.8988440553762,-34.8988361479647,-34.8988538887808,-34.8988446740285,-34.8988988169514,-34.8989351223417,-34.8989498265051,-34.8989401999604,-34.8989633819159,-34.8990034875994,-34.8990696033637,-34.8991295376066,-34.8991819012786,-34.8992298960307,-34.8992504749772,-34.8992485523189,-34.8992289989014,-34.899186493647,-34.8991579361739,-34.8991231343043,-34.8990974268947,-34.8990799842127,-34.8990685811699,-34.8990691489702,-34.8991363077648,-34.8991509936721,-34.8991825788497,-34.8992084733158,-34.8992474403403,-34.899244171269,-34.8992704269335,-34.8993058818852,-34.8993442049828,-34.8993798517,-34.8994296273706,-34.8994341080147,-34.8994156985205,-34.8993790196042,-34.8993734327525,-34.899356790071,-34.8993883143978,-34.8994151232238,-34.8994139742249,-34.899427717275,-34.8994730283221,-34.8995149555768,-34.8995183757839,-34.8994866313437,-34.8994638089742,-34.8994595761493,-34.8994337502498,-34.8993832234389,-34.8993726090079,-34.8993737446411,-34.8993873305571,-34.8993964379406,-34.8993799070092,-34.8993420972291,-34.8993057618233,-34.8992648608458,-34.8992291673216,-34.8991967727085,-34.8991730514842,-34.8991702969606,-34.899147358464,-34.8991381940231,-34.8991424526006,-34.8992012746032,-34.8992353855284,-34.8992828816901,-34.8993090327128,-34.8993279766134,-34.8993709214677,-34.8993684041296,-34.8993793327315,-34.899372686338,-34.8993549494049,-34.8993499079239,-34.8993633474364,-34.8993586524337,-34.8993453146325,-34.8993448002898,-34.8993453345396,-34.8993307813932,-34.8993529678353,-34.8993440098237,-34.8993167691667,-34.8993022491827,-34.8993074977186,-34.8993173236798,-34.8993612821232,-34.8993700761702,-34.899365429262,-34.8993918345772,-34.8994011293401,-34.8994201606072,-34.8994464443769,-34.8994656255469,-34.8994779472904,-34.8994879997763,-34.8994596745334,-34.8994627349063,-34.8994549671056,-34.8994861832046,-34.8994593366029,-34.8994272778256,-34.8994194718414,-34.8993911025023,-34.8993899340685,-34.899340921014,-34.8993782942368,-34.8997169383081,-34.8999205275871,-34.9000576702869,-34.900147281598,-34.9002431724163,-34.9003546690001,-34.9004205516301,-34.9004894356075,-34.9005929606647,-34.900665026164,-34.9007325659961,-34.9008226524559,-34.9010659862828,-34.9011331017812,-34.9011336958566,-34.9011372930575,-34.9012864905521,-34.9024529681348,-34.9025532245158,-34.902668877712,-34.9026790238525,-34.9027232103263,-34.9026880939907,-34.9027563672626,-34.9028908512141,-34.9029843413267,-34.903033764783,-34.9028950887566,-34.9029189826184,-34.9035099823148,-34.9033925457943,-34.9031463095336,-34.9031980039725,-34.9034702516913,-34.9035199316606,-34.9036005648474,-34.9041299728865,-34.9041245622522,-34.9041504771112,-34.9041607581586,-34.9041867501933,-34.9041996304409,-34.9042020752802,-34.9042200381479,-34.9041883969897,-34.9042191819034,-34.9043046731994,-34.9043751798055,-34.9047566257052,-34.9047900485652,-34.9047439417234,-34.9047722430807,-34.9048112504437,-34.9048296960831,-34.9049549758075,-34.9050306614862,-34.9052777980519,-34.9054034667154,-34.905492109729,-34.905489684162,-34.9054767653165,-34.9054846208016,-34.9053877027289,-34.9054137333288,-34.9053578041332,-34.905336894834,-34.9053136755112,-34.9048975175056,-34.904898845283,-34.9050083004637,-34.9051140404789,-34.9055297563842,-34.9055139876691,-34.905565200563,-34.9055807186578,-34.9056119476584,-34.9059258229357,-34.9058709886978,-34.9058991358392,-34.9059328482338,-34.9060188343112,-34.9060294435097,-34.9057513404644,-34.9057881342809,-34.9058453745983,-34.9059186729068,-34.905919810359,-34.9059358941033,-34.9059389877735,-34.9059143060649,-34.9059095700349,-34.9060305202447,-34.9060358245745,-34.9060363156386,-34.9060759006009,-34.9060914961003,-34.9061101330653,-34.906186241489,-34.9061994877367,-34.9062581520651,-34.9062352594848,-34.9062263630986,-34.9061981564992,-34.9061990795131,-34.9061761288859,-34.9061198691252,-34.9061308617735,-34.9060870788812,-34.9061084297853,-34.9060776428275,-34.9060753126002,-34.9060446216314,-34.9060401723472,-34.9060357421416,-34.9060153325559,-34.9060337574054,-34.9060235909902,-34.9059977909358,-34.9059308451296,-34.9058270304968,-34.9057853280417,-34.9057229279245,-34.9054163368929,-34.9053886669155,-34.9052923427854,-34.9053097886737,-34.9047224066471,-34.9046936234367,-34.9047105700018,-34.9046712746996,-34.9046660378847,-34.9046676768798,-34.9045856031835,-34.9044526594526,-34.9044032361256,-34.9042426425768,-34.9041670158627,-34.9041048078457,-34.9040650782175,-34.9039673189178,-34.9039441758012,-34.9039182413748,-34.9038976398205,-34.9038665069792,-34.9038254574898,-34.9037473852898,-34.9036982884674,-34.9036112020248,-34.9036011699774,-34.9036327443914,-34.903631008938,-34.9035563612231,-34.90350439629,-34.9034862977928,-34.9034659454674,-34.9034401836438,-34.9034484800724,-34.903418037707,-34.9033325324173,-34.903215357148,-34.9031644809934,-34.9031145840263,-34.9031004520824,-34.9031153239282,-34.9031050622949,-34.9031053088916,-34.9031119158938,-34.9031060486003,-34.903062327012,-34.9030182356052,-34.9029495808792,-34.9029187957767,-34.9028691913358,-34.9028820045202,-34.90294958662,-34.9029519069511,-34.9029522457483,-34.9029378669019,-34.902939181714,-34.9027623179648,-34.9027605058107,-34.9027674050208,-34.9027327640564,-34.9026915163842,-34.9026624352157,-34.9026484870879,-34.9026925012656,-34.9026471516945,-34.9026726696605,-34.9026540965368,-34.9025917707584,-34.9026003126063,-34.9026609797554,-34.9026113282514,-34.9025362204211,-34.9024946493343,-34.9024632480393,-34.9024361791586,-34.9023848072374,-34.9023623935463,-34.9023440508252,-34.9023782484111,-34.9024096496717,-34.9024450912566,-34.9024702552959,-34.9025187091889,-34.9025087082052,-34.9024712387433,-34.9024173312689,-34.9023516251405,-34.9023736087058,-34.9024935750945,-34.9026175971574,-34.9026223897539,-34.9025814167244,-34.9025963641965,-34.9025886820001,-34.9025432692289,-34.9024998076649,-34.9024290775436,-34.9024630127587,-34.902482506678,-34.9025060104904,-34.902498113124,-34.9024114499513,-34.9024160117214,-34.9024561378711,-34.9024084665663,-34.9023963136712,-34.9023011629388,-34.9022159202498,-34.9020325212099,-34.9019411588691,-34.9019347428103,-34.9018774337906,-34.9018131092345,-34.9017796050474,-34.9017869699691,-34.9018624667772,-34.9019307235326,-34.9020063450537,-34.9019968951001,-34.9019302599972,-34.9018018342798,-34.9018020337738,-34.9018024826022,-34.901768778127,-34.9016807973611,-34.9016612475944,-34.9015088663697,-34.9014924749341,-34.9014826998134,-34.901503296359,-34.901530534225,-34.9015609308259,-34.9015740390329,-34.9016757013578,-34.9017776128104,-34.9017946271235,-34.9018287803502,-34.901778958291,-34.9018002772242,-34.9017905019972,-34.9017637372936,-34.9016794623989,-34.9016051370301,-34.9015537454862,-34.9015534716359,-34.9015158359354,-34.9014878759846,-34.9014349961342,-34.901412181159,-34.9013648697591,-34.9013417867433,-34.9012508453565,-34.9012172895845,-34.9012689050557,-34.9012256481391,-34.9011749533678,-34.9010964733518,-34.9010458282975,-34.9009072257879,-34.9008255369046,-34.9007671558243,-34.9006913336188,-34.9005595009066,-34.9004606733004,-34.9003073698539,-34.9002573462311,-34.9002300088514,-34.9002032399887,-34.9001435692912,-34.9000685220085,-34.8999555904339,-34.8999011394732,-34.8998293507889,-34.8998354948377,-34.8998520613776,-34.8997698500235,-34.8996707486951,-34.8994528952127,-34.899337600614,-34.8992764086061,-34.8991952172692,-34.8990661915985,-34.8988757789814,-34.8988741323774,-34.8987387878031,-34.8985661305864,-34.8983378491682,-34.8983369127598,-34.8982440180198,-34.8981748350684,-34.8981897561376,-34.8981906239666,-34.8981751959333,-34.8981726554174,-34.8981975757289,-34.898220374425,-34.8982224710154,-34.8982503281911,-34.8982948036081,-34.8983189061894,-34.8985218756515,-34.898559535275,-34.8986139371618,-34.8986266279644,-34.8986674231659,-34.8987291605822,-34.898737430781,-34.8986953357547,-34.8987412192578,-34.8987684209703,-34.8989085089212,-34.899006956835,-34.8990409425722,-34.8990504969729,-34.8990533493949,-34.8991008867179,-34.8991525690919,-34.8992159029351,-34.8992183777136,-34.8992529872732,-34.8992419268173,-34.8991923907961,-34.8991651070288,-34.8991157679612,-34.8991888200218,-34.8992387663495,-34.8992847806727,-34.8993752013312,-34.8994244420995,-34.8996010396705,-34.8997026521445,-34.8997643481244,-34.8998303698346,-34.8999241810844,-34.8999489737399,-34.9000556995884,-34.9000163407608,-34.8999785048945,-34.8999991029238,-34.9000892939914,-34.9001248521128,-34.900117772841,-34.9001983114553,-34.9002326416668,-34.9002353787456,-34.9002812287847,-34.9002516361904,-34.9001911702352,-34.9001847304343,-34.9002119320372,-34.9001989540174,-34.9002084909716,-34.9002535374607,-34.9003744860377,-34.9004525180798,-34.9005422664828,-34.9005605867429,-34.9005569986131,-34.9005933767198,-34.9005941143424,-34.9005431688293,-34.9005727792229,-34.9005776951277,-34.9006187923869,-34.9006547607996,-34.9007522440255,-34.9008264421761,-34.9010857414929,-34.9011242333982,-34.9011426355917,-34.9010738946699,-34.9010794333474,-34.9009873739024,-34.9010126417739,-34.9010737142471,-34.9012662885515,-34.9013886301554,-34.9015016642021,-34.9016332313939,-34.9017215873752,-34.9017016122063,-34.901627528755,-34.9016797033151,-34.9017542127449,-34.9018511225534,-34.9018963492811,-34.9019303512439,-34.9019349885981,-34.9019238293593,-34.9019195032694,-34.9019535379849,-34.9020123327314,-34.902053200595,-34.902062504235,-34.9020199520993,-34.9019249923453,-34.9018527769751,-34.9019710542679,-34.9019535693985,-34.9019479967797,-34.9018848266594,-34.9018940684091,-34.9020119034113,-34.9020889034182,-34.9020881474245,-34.902064106976,-34.9019892702194,-34.9019144661682,-34.901894981011,-34.9019832058633,-34.9019904968318,-34.901903383814,-34.9017810917714,-34.901711006667,-34.9016053286803,-34.9014631423086,-34.9013930735399,-34.9014006093661,-34.901358101515,-34.9013317497411,-34.9012147973013,-34.9012221366728,-34.9013694992693,-34.9013516208739,-34.9011591948576,-34.9011099190139,-34.9012117608648,-34.9013432613642,-34.9013597927868,-34.9013443388939,-34.9012037604726,-34.9011565172513,-34.901029425215,-34.9010028278898,-34.9010850848321,-34.9010041336228,-34.9009294441871,-34.9009356011049,-34.9008855401641,-34.900753067502,-34.9006440285872,-34.9004459379615,-34.9004004193844,-34.9004781197007,-34.9004900613539,-34.900218447232,-34.9000553100842,-34.8998994036776,-34.8992809311267,-34.8991848586806,-34.8996224438501,-34.8989329331328,-34.8988595148944,-34.8988117519687,-34.8983182353644,-34.898277678577,-34.8981478430102,-34.8980256562486,-34.8979371151702,-34.8978665647851,-34.8978224294429,-34.8977673128998,-34.8977063423841,-34.8976886713097,-34.8975658943925,-34.8975192131599,-34.8974779433654,-34.8974738977586,-34.8972798820686,-34.8971165237163,-34.8968938415485,-34.8967592081621,-34.8966235181697,-34.8964404391031,-34.8963006370035,-34.8960881924405,-34.8960833341016,-34.8960172776867,-34.8960503518974,-34.8961106378076,-34.8961603962281,-34.8961560450089,-34.8960832913737,-34.8961598688053,-34.8962176059077,-34.8963158075605,-34.8964241838272,-34.896503643268,-34.8965230524127,-34.8965344039065,-34.8964971937789,-34.89640457961,-34.8963385693539,-34.8962290750963,-34.8961477535551,-34.8961134841,-34.896119679217,-34.8961831600948,-34.896189531289,-34.8960242223173,-34.8960055778332,-34.8960226535595,-34.8960290246892,-34.8961058172665,-34.8960872900488,-34.8960277491607,-34.8959024533065,-34.895705991473,-34.8956163961123,-34.8955422700002,-34.8954905850724,-34.8954859018238,-34.8954812185752,-34.8954383408695,-34.8953866422606,-34.8953909361809,-34.895395819649,-34.8953547081311,-34.8952927162277,-34.8952142952921,-34.8951785165527,-34.895096646049,-34.8949394516672,-34.8949438964644,-34.8948873568956,-34.8949183307361,-34.8948806487564,-34.8948281999061,-34.8947960655799,-34.8947106686391,-34.8946413092207,-34.8946076563901,-34.8946219327193,-34.8946207904923,-34.8945997515911,-34.8947306541544,-34.894809877446,-34.8948922555228,-34.8948245482468,-34.8948413667882,-34.8948396865567,-34.8947700830915,-34.8949288473112,-34.8951869370218,-34.8953149583693,-34.8954050037018,-34.8954563128352,-34.8954769828881,-34.895553675708,-34.8956116826603,-34.8958889022808,-34.8960632308299,-34.8961129260337,-34.8963165918986,-34.8962889559794,-34.8963779851508,-34.8964327989838,-34.8963604325523,-34.896235377935,-34.8962425259605,-34.8963523558771,-34.8963525620022,-34.8963502459215,-34.8964237051487,-34.8963841926058,-34.8963739616739,-34.8964471387431,-34.8964616274531,-34.8965345347937,-34.8965410159731,-34.8965712379577,-34.8965533762476,-34.8966572159004,-34.8966927392207,-34.8966745448326,-34.8967264112973,-34.8968772359611,-34.8973932934636,-34.8975144078868,-34.8976447114043,-34.897893778127,-34.8980612489083,-34.8981253328828,-34.8981417874299,-34.898218318058,-34.8982991909358,-34.8983864764442,-34.8984669435514,-34.8985303943167,-34.8985653464671,-34.8986467413671,-34.8987597039311,-34.8989356341542,-34.8989520598133,-34.8990678435082,-34.899052020393,-34.8990597510231,-34.899135230092,-34.8991586197303,-34.8991698537209,-34.8992663020588,-34.8993886150544,-34.8994999998905,-34.8995933597368,-34.8995975494407,-34.8996526004456,-34.8997576761995,-34.8998659457245,-34.8999323520476,-34.900048397006,-34.900138171843,-34.9000932586726,-34.899896287052,-34.9000030474213,-34.9001238121152,-34.9000799564963,-34.9000257287849,-34.899857468019,-34.8998616785238,-34.8998408059475,-34.8997702663802,-34.8997429873117,-34.8997563091821,-34.8997539278403,-34.8998316732727,-34.8998608137238,-34.9000009109479,-34.9001250274232,-34.9001328239803,-34.9001105919824,-34.8999421462492,-34.8998929115887,-34.8998689696311,-34.8998847220746,-34.9000047596204,-34.9001078715173,-34.9001115025964,-34.9000436394377,-34.8999320620514,-34.8998746952368,-34.8998516033277,-34.8997837566708,-34.8997297880397,-34.8997157598782,-34.899778672382,-34.8998699051758,-34.8999632600591,-34.8999844684458,-34.8997993105016,-34.8997916390693,-34.899826102797,-34.8997974858871,-34.8998994317976,-34.8999302043362,-34.8999491934815,-34.8999603313344,-34.8998810595186,-34.8998376008607,-34.899797574048,-34.8997685611131,-34.8997929938586,-34.8997049281974,-34.8996545214398,-34.899681579967,-34.8996225586556,-34.8995555167461,-34.8995425532025,-34.8995952302213,-34.8995908099367,-34.8996204137111,-34.8995397968256,-34.8994821792083,-34.899488137849,-34.8994816235595,-34.8995978007921,-34.8996238241895,-34.8996011691724,-34.899538048286,-34.8995152331864,-34.8995241694617,-34.8995376597523,-34.8995510800068,-34.8995690792895,-34.8996231788567,-34.8996502661597,-34.8996637447776,-34.8996681937387,-34.8996681287052,-34.8996770833233,-34.8996770383001,-34.8996769549238,-34.8996768265242,-34.8996722491635,-34.8996631311278,-34.899654009757,-34.8996359454408,-34.8996179044699,-34.8995954028653,-34.8995774602785,-34.8995460274011,-34.899528033121,-34.8995100755264,-34.8995010175217,-34.8994875122233,-34.8994874672001,-34.8994873021149,-34.8994917027178,-34.899496126666,-34.8994915743182,-34.8994643802936,-34.8994553089486,-34.8994372879881,-34.8994371729287,-34.8994326222485,-34.8994190569191,-34.8994054915898,-34.899391924593,-34.8993738686144,-34.8993693162666,-34.8993647272333,-34.8993489290858,-34.8992592738893,-34.8992402464959,-34.8992091784026,-34.8991310246367,-34.8990685900136,-34.8989783809299,-34.8987993138118,-34.898707869671,-34.8986527654584,-34.8986117613012,-34.8985641714461,-34.8984731016144,-34.8984238192568,-34.898322585391,-34.8982238851849,-34.8981802312423,-34.8981115491046,-34.8980835033908,-34.8980693836998,-34.8979313412611,-34.897843955893,-34.8976700971384,-34.8976489542207,-34.8975783331295,-34.8975947454651,-34.8975064717383,-34.8974147442261,-34.8973893907013,-34.8973471884035,-34.897301513181,-34.8971475671766,-34.8969662087213,-34.8968654482726,-34.8967725084093,-34.8966347721038,-34.8965534467024,-34.8964353191814,-34.8962380547283,-34.8962059848557,-34.8961752240737,-34.8961880248243,-34.8961605452288,-34.8960442494303,-34.8959473759332,-34.8959237711923,-34.8958466845553,-34.8958421080284,-34.8958375323353,-34.8958374531278,-34.8958284193021,-34.8958058234822,-34.8957967921579,-34.8957832501739,-34.89576517085,-34.8957561278529,-34.8957380768769,-34.8957064972571,-34.8956929661121,-34.8956794349671,-34.8956704036427,-34.8956523810147,-34.8956388923916,-34.8956253604128,-34.8956163666078,-34.8956073703015,-34.8955938391565,-34.8955848386814,-34.8955713233779,-34.8955622945548,-34.8955622311888,-34.8955487108827,-34.8955396437065,-34.8955215960655,-34.8955126489513,-34.8954991444867,-34.8954901473466,-34.8954811843909,-34.8954676740899,-34.8954451766541,-34.8954316838622,-34.8954137020885,-34.8953280745949,-34.8953010473229,-34.8952740075445,-34.8952604755657,-34.8952469227428,-34.8952288467539,-34.8952152989336,-34.8952017536146,-34.8951881966229,-34.8951746296261,-34.8950840795938,-34.8950930467184,-34.8950929941913,-34.8950929291577,-34.8950973414332,-34.8950927715764,-34.895097187187,-34.8950926406756,-34.8950835684969,-34.895078977796,-34.8950699373002,-34.8950473606569,-34.895038630157,-34.8949158294895,-34.8948795974704,-34.8948569374508,-34.894834274096,-34.8947980279029,-34.8947753612131,-34.8947526853519,-34.894730885776,-34.8947205904665,-34.8947160239447,-34.894711471597,-34.8947068942363,-34.8947067841795,-34.8946931087935,-34.8946885105887,-34.8946929628849,-34.8946928978513,-34.8946882796363,-34.8946881970937,-34.8946881203875,-34.8946924793022,-34.8946921883188,-34.8946966114332,-34.8947098074054,-34.8947141671538,-34.894718559419,-34.8947139803908,-34.8947093996951,-34.8947138361497,-34.8947317087004,-34.8947406424745,-34.8947496070978,-34.8947495453993,-34.8947494853683,-34.8947584183086,-34.8947673379086,-34.8947807206438,-34.8947985673478,-34.8948119267376,-34.8948163573559,-34.8948162789822,-34.8948252102549,-34.8948610854233,-34.8948745023428,-34.894895402225,-34.8949338995422,-34.8950089016897,-34.8950925566292,-34.8951414397714,-34.8952083697863,-34.895306173128,-34.8954040382343,-34.8954844741902,-34.89555081118,-34.8956226066697,-34.8955862870757,-34.8955988617468,-34.8955989809749,-34.8956034382737,-34.8956168985488,-34.8956348219591,-34.8956572476912,-34.8956707012963,-34.8956796600832,-34.8956931045168,-34.8957065839685,-34.8957200417424,-34.8957289930255,-34.8957379267995,-34.8957378450907,-34.8957377758883,-34.8957331201539,-34.8957330201023,-34.8957374640609,-34.8957464245153,-34.8957598522737,-34.8957643187438,-34.8957642637154,-34.8957765495536,-34.8957723020277,-34.8957947744506,-34.8957710363006,-34.8957731024191,-34.8958080347996,-34.8958111554935,-34.8958505961199,-34.8958748711107,-34.8959314634587,-34.8959435228307,-34.8959659252175,-34.8959658443424,-34.8959656984338,-34.8959700615173,-34.8959699823098,-34.8959743770763,-34.8959832666609,-34.8959921845934,-34.8960011150324,-34.8960010483313,-34.8960054881211,-34.8960008765761,-34.8960007381714,-34.8960005680837,-34.8960049561801,-34.8960094076425,-34.8960137899025,-34.8960047068848,-34.8959936063523,-34.8959337751716,-34.8959088549515,-34.8958907789626,-34.8958817276279,-34.8958816667632,-34.8958770743948,-34.8958724778576,-34.8958562802816,-34.8958774343721,-34.8958745842395,-34.8958435491662,-34.8958855862384,-34.8958841241438,-34.8958566290274,-34.8957623905032,-34.895735951087,-34.8957067967637,-34.895660237765,-34.8956303815085,-34.8956008823276,-34.8955520607689,-34.8955151737175,-34.8954734568333,-34.8954331036332,-34.89539953494,-34.8953559002886,-34.8953416785884,-34.8952910008162,-34.8951440602579,-34.8951317512247,-34.8951434047774,-34.8951268955278,-34.8951133405554,-34.895120049082,-34.8950696446493,-34.8950605766394,-34.895042569019,-34.8950245897467,-34.8950065554459,-34.8949794056107,-34.8949658994786,-34.8949523133052,-34.8949384786834,-34.8949125251738,-34.8949556619369,-34.8949477760145,-34.8949067222928,-34.8949066480878,-34.8949065547063,-34.8949337118724,-34.8950293005434,-34.8950444343215,-34.8950151153286,-34.894976615142,-34.8949444708346,-34.8949302264967,-34.8949657876436,-34.8949242910984,-34.8949517593049,-34.894948956419,-34.89492999038,-34.8948755200291,-34.8948194139322,-34.8948206997959,-34.8948159756808,-34.894780812369,-34.8947380447564,-34.8946999191581,-34.8946840400963,-34.8945880354378,-34.894573681597,-34.894536007698,-34.8945264507094,-34.8944827194709,-34.8944509363248,-34.8944269756716,-34.8943967837397,-34.8943775674917,-34.8943490781076,-34.894349293853,-34.8943887768417,-34.8944059099939,-34.89439978084,-34.8943726079008,-34.8943145730209,-34.8942568105953,-34.8942343821103,-34.8942210453383,-34.894215812764,-34.894245607562,-34.8942699088513,-34.8943699362269,-34.8943923348919,-34.8944070563643,-34.8943765576435,-34.8943591912919,-34.894359599697,-34.8943405421094,-34.8943164110092,-34.8942838580936,-34.8943058101814,-34.8942854468851,-34.8942656295161,-34.8942270492667,-34.8942079917044,-34.8941853022079,-34.894166312696,-34.894132408915,-34.8940729777954,-34.8940437164702,-34.8940670080292,-34.8941232609473,-34.8941395828322,-34.8941652235662,-34.8941843491526,-34.8941595031404,-34.8941592988521,-34.8941735209841,-34.894169820709,-34.8941230681805,-34.8940474401052,-34.8940185532028,-34.8939866357233,-34.893937249829,-34.8939392814668,-34.8939122559087,-34.8938716059568,-34.8938774789856,-34.8938804180014,-34.893854698904,-34.8938414729164,-34.8938144940027,-34.8937915304931,-34.8938027712903,-34.8937821456531,-34.8937461362488,-34.8937162816854,-34.8937058779866,-34.8936743959172,-34.8936471743783,-34.8936184595694,-34.8936244293148,-34.8936363396239,-34.8936105863423,-34.8936044531793,-34.8935701529898,-34.8935743259752,-34.8935516025895,-34.8935199004066,-34.8934991313621,-34.8934422228463,-34.8934193735623,-34.893387675627,-34.8933619139289,-34.8933569030113,-34.8933226836969,-34.8932932376775,-34.8932533375774,-34.8932306267427,-34.8932221356361,-34.8932242637725,-34.8932457790351,-34.8932417061013,-34.893187300543,-34.8931611562532,-34.8931421321028,-34.8931506608136,-34.8931830639091,-34.8931877307648,-34.8931666007009,-34.8931677879798,-34.8931454046992,-34.8931391568068,-34.8931458120831,-34.8931627554934,-34.8931617195324,-34.89312689634,-34.8931520835085,-34.8931884595529,-34.8933023665118,-34.8933868051054,-34.8933902170914,-34.8934568533123,-34.8935593223441,-34.8935362186822,-34.8935636926758,-34.8935671041901,-34.8935265315546,-34.8935783472119,-34.893552242086,-34.8935386921903,-34.8935506979563,-34.8935291793586,-34.8935017760539,-34.8935064701469,-34.8935185938994,-34.8934881948885,-34.8934551243749,-34.8934343355404,-34.8934248256423,-34.893433560879,-34.8933653200806,-34.8933093560899,-34.8932978347188,-34.8932864380873,-34.8933046768125,-34.8933412090842,-34.8934117146124,-34.8934486486602,-34.8934523013773,-34.8934958229892,-34.8935042783471,-34.8935396772727,-34.8935441304026,-34.8935485835325,-34.8935530358287,-34.8935574881248,-34.8935574355977,-34.8935618878939,-34.8935663435251,-34.8935707999901,-34.8935707524656,-34.8935752122656,-34.8935796737332,-34.8935841368683,-34.8935840935126,-34.8935885566477,-34.8935930197827,-34.8935929764271,-34.8935974378946,-34.8936018985284,-34.8936018510039,-34.8936063099702,-34.8936062624457,-34.8936107205782,-34.8936106722199,-34.8936151311862,-34.8936195893187,-34.8936240474512,-34.8936239982591,-34.8936284563916,-34.8936329128566,-34.8936373701554,-34.893637318462,-34.8936417740933,-34.893646228057,-34.8936461738623,-34.8936506253247,-34.8936550776209,-34.8936595274158,-34.8936594707199,-34.8936639188472,-34.8936683678083,-34.8936728151019,-34.8936817688863,-34.8936862136786,-34.8936906584709,-34.8936951015956,-34.8937040495436,-34.8937084884996,-34.8937174322788,-34.8937218670659,-34.8937263010193,-34.8937307316376,-34.8937396679129,-34.8937440976975,-34.893748527482,-34.8937529572666,-34.8937618935419,-34.893766324994,-34.8937707556123,-34.8937751878982,-34.8937841266748,-34.8937885589606,-34.8937929912465,-34.8938019300231,-34.8938063614752,-34.8938152985843,-34.8938242340258,-34.8938286638104,-34.8938375975845,-34.893846533026,-34.8938554668001,-34.8938644005741,-34.8938733351819,-34.8938822689559,-34.8938912035638,-34.8939001381715,-34.8939090719456,-34.8939180073872,-34.8939269411612,-34.8939358749353,-34.8939448087093,-34.8939537424833,-34.8939626762574,-34.893971611699,-34.8939805463068,-34.8939894825821,-34.8939984230262,-34.8940073643041,-34.8940118015926,-34.8940207512081,-34.8940297024912,-34.8940341531198,-34.8940431135743,-34.8940475733743,-34.894056543834,-34.894065491782,-34.8940789695661,-34.8940879567011,-34.8941014561631,-34.89411495229,-34.8941284367443,-34.894137428048,-34.8941464176842,-34.8941554056529,-34.894164391954,-34.8941733757538,-34.8941868385303,-34.8942002971379,-34.8942092434184,-34.8942182197144,-34.8942226853507,-34.8942271484858,-34.8942316074521,-34.8942360639171,-34.894240517047,-34.8942449685094,-34.8942494183043,-34.8942538672654,-34.8942628243848,-34.8942672741796,-34.8942717256421,-34.8942761771045,-34.8942806268993,-34.8942895798499,-34.8943030359562,-34.8943119797354,-34.8943299289924,-34.8943478699116,-34.894361329353,-34.8943657949893,-34.8943792210802,-34.8943881790334,-34.8943880881532,-34.8943924995949,-34.8944059373585,-34.8944238649375,-34.8944417349869,-34.8944595700182,-34.8944684354237,-34.8944773266758,-34.8944952609249,-34.8945176733169,-34.8945310468806,-34.8945399748184,-34.8945534634415,-34.8945669178802,-34.8945848446255,-34.8946207489757,-34.8946431788767,-34.8946566091363,-34.8946745250427,-34.8946879653075,-34.8947059062268,-34.8947148400008,-34.8947237787774,-34.894737269068,-34.8947462545354,-34.8947552083198,-34.8947685418629,-34.8947818829099,-34.8947863201983,-34.8947997829747,-34.8948266960211,-34.8948580697014,-34.8948759997817,-34.8948803778729,-34.8948892499485,-34.8949026852107,-34.8949251201143,-34.8949474683065,-34.894965345026,-34.8949787969635,-34.8949967570593,-34.8950056891658,-34.8950101289555,-34.8950191144229,-34.895028100724,-34.895041533485,-34.8950504480825,-34.8950863257522,-34.8951311505361,-34.8951714846708,-34.8951894197537,-34.8951938453695,-34.8952028016551,-34.8952477131504,-34.8952788767223,-34.895301223247,-34.8953235814444,-34.8953772241092,-34.8953906510338,-34.8954085894518,-34.8954489694435,-34.8954803614665,-34.8954937975625,-34.8954982148406,-34.8955071327731,-34.8955206030534,-34.8955385664843,-34.8955565207438,-34.8955699134841,-34.8955788347517,-34.895592354224,-34.8956058161667,-34.8956237487483,-34.8956596997892,-34.8956866553575,-34.8957135834117,-34.8957360083101,-34.8957449929437,-34.8957539767435,-34.8957583948554,-34.8957718126086,-34.8957808089149,-34.8957987456654,-34.8958256028496,-34.8958300067875,-34.895834461585,-34.8958434420497,-34.8958614188208,-34.895897312332,-34.8959242295473,-34.895951222635,-34.8959647029204,-34.8959781623618,-34.8959916284733,-34.8960050995873,-34.896023067187,-34.8960410147764,-34.8960499860698,-34.8960679961914,-34.8960814881496,-34.8960994607518,-34.8961219265046,-34.8961398765953,-34.896166873018,-34.896184857293,-34.8961938202487,-34.8962118111938,-34.8962433357852,-34.896283866688,-34.896301882646,-34.8963154029521,-34.8963469675641,-34.8963695408724,-34.8963830745187,-34.8963920658224,-34.8964100450948,-34.896423540388,-34.8964326017278,-34.8964416447248,-34.896459674023,-34.8964866646094,-34.8965136068375,-34.8965360934344,-34.8965451330965,-34.8965586917557,-34.8965721987215,-34.896590213012,-34.896608295671,-34.8966218426575,-34.8966308289587,-34.8966398069222,-34.8966758021525,-34.8966848318093,-34.8966938597986,-34.8967073717671,-34.8967254144055,-34.8967434420361,-34.8967704276199,-34.8967883718742,-34.8968018454896,-34.8968198931306,-34.8968288827667,-34.8968378523926,-34.8968693286257,-34.8968824506774,-34.8969981042295,-34.8970850047769,-34.8971644361733,-34.897207003067,-34.8972434202477,-34.8972861559409,-34.8972827716341,-34.897312192323,-34.8973552058717,-34.8973731467909,-34.8973821247545,-34.89739561171,-34.8974135392891,-34.897440404811,-34.8974673153561,-34.8974852546078,-34.8974986631896,-34.8975165557506,-34.8975434662957,-34.8975748458123,-34.8975972323576,-34.897606140285,-34.8976150815629,-34.8976240411836,-34.8976420171209,-34.8976554907363,-34.8976644370168,-34.8976778656089,-34.8976868135569,-34.8976958115307,-34.8977138191511,-34.89776333302,-34.8977723076484,-34.8977946925262,-34.897817109087,-34.8978350433361,-34.8978484319077,-34.8978572848066,-34.8978527057785,-34.8978526390774,-34.8978570513529,-34.8978660409891,-34.8978885509314,-34.8978975255598,-34.8979110108479,-34.8979289434295,-34.8979468843487,-34.8979558756525,-34.8979693742807,-34.8979738315795,-34.8979782688679,-34.8979917324781,-34.8980051960883,-34.898014124026,-34.8980185496417,-34.8980275192676,-34.8980454935374,-34.898067995142,-34.8980904950792,-34.8981039286739,-34.8981173922841,-34.8981308975824,-34.8981534041896,-34.8981624004959,-34.8981757723922,-34.8981845886056,-34.8981980722261,-34.8982070585272,-34.8982114758053,-34.8982158897484,-34.8982248393639,-34.8982337406212,-34.8982336839253,-34.8982201402738,-34.8982111423,-34.8981931847055,-34.8981841984043,-34.8981616867945,-34.8981256382034,-34.898116571861,-34.89809852422,-34.898089421192,-34.8980848188185,-34.8980757708188,-34.8980667278218,-34.8980531458172,-34.8980395738178,-34.8980260318338,-34.898030487465,-34.8980349447638,-34.8980259151069,-34.8980078891438,-34.8979853908742,-34.8979628709268,-34.8979493556232,-34.8979358403197,-34.8979268089954,-34.8979043023882,-34.8978818174588,-34.8978547284883,-34.8978321651851,-34.8978186915698,-34.8978052179544,-34.8977781706721,-34.8977466110627,-34.897733114102,-34.8977241227983,-34.8977151631776,-34.8977152282111,-34.8977287852028,-34.8977378798931,-34.8977379265839,-34.8977335059707,-34.8977155100231,-34.8976929683978,-34.8976568814535,-34.8976388271424,-34.8976252734858,-34.897616215481,-34.8976071458036,-34.8976025834506,-34.8976025250872,-34.8976024383758,-34.897593281987,-34.8975842039719,-34.8975616923621,-34.8975392207729,-34.8975211898072,-34.8975121484777,-34.8974895868421,-34.8974760748736,-34.8974670118662,-34.8974579321836,-34.8974308532183,-34.8974218835924,-34.8973993186218,-34.8973948663256,-34.8973858866946,-34.8973678674016,-34.8973317721196,-34.8973182101254,-34.8973136477724,-34.8973001257988,-34.8972866705263,-34.8972731502202,-34.8972595832233,-34.8972549991925,-34.8972504518474,-34.8972414605437,-34.8972279869283,-34.8972009796666,-34.8971874360152,-34.8971783429923,-34.8971737806394,-34.8971692266241,-34.8971556779701,-34.8971421426562,-34.8971286090099,-34.8971285623192,-34.8971330162828,-34.8971104463096,-34.8970924420243,-34.897078905043,-34.8970608457293,-34.8970562800413,-34.8970652496672,-34.8970742109554,-34.8970786349036,-34.8970830821972,-34.8970920468205,-34.8971010031062,-34.8971144800566,-34.8971189340203,-34.8971098760155,-34.8970963423692,-34.8970873443954,-34.8970738474346,-34.8970468551807,-34.8970243385683,-34.8970107348859,-34.8969970278168,-34.8969744178229,-34.896965353148,-34.8969607391018,-34.8969605523388,-34.8969648829055,-34.8969693118563,-34.8969780997217,-34.8969869826362,-34.8969913198731,-34.8969956487722,-34.8969955287103,-34.8969998859575,-34.897004269885,-34.8970086971683,-34.8970041348154,-34.8970040597767,-34.8970084453718,-34.8970128076215,-34.8970126392013,-34.8970124274254,-34.8970122673429,-34.8970165812343,-34.8970299214475,-34.897043341702,-34.8970568219875,-34.8970747995923,-34.8971017368179,-34.8971151687451,-34.897124046657,-34.8971329012235,-34.8971508338051,-34.8971597784181,-34.8971641923611,-34.8971730535978,-34.8971953601018,-34.8972087470058,-34.8972267096029,-34.8972446738675,-34.8972535984702,-34.8972580107457,-34.8972669803715,-34.8972759533325,-34.8972803639405,-34.8972712425697,-34.8972621862324,-34.8972621328716,-34.8972485075113,-34.8972483941195,-34.8972573704154,-34.8972617976987,-34.8972616993146,-34.8972795718653,-34.8972975311274,-34.8973241324667,-34.8973852935023,-34.8974799217668,-34.8975253815058,-34.8975630228075,-34.8975807324333,-34.8976359625605,-34.8977617430969,-34.8978089039126,-34.8978633999399,-34.8978646237598,-34.8979327537279,-34.8979417416966,-34.8979777052439,-34.8980136604536,-34.8980226217418,-34.8980314829784,-34.8980538361732,-34.8980672931133,-34.8980896980014,-34.8981165868687,-34.8981255048012,-34.8981344477467,-34.898165908972,-34.8981928828832,-34.8982063898491,-34.8982199168253,-34.8982199618485,-34.898202130986,-34.898179799469,-34.898170816503,-34.8981618201967,-34.8981528689136,-34.8981394720045,-34.8981260267371,-34.8981215611007,-34.8981216261342,-34.8981126615109,-34.8980947255943,-34.8980813420253,-34.8980634094437,-34.8980544431529,-34.8980499775165,-34.8980455252204,-34.8980456019266,-34.8980591038899,-34.898068086856,-34.8980770514793,-34.8980815037755,-34.8980859494015,-34.8981039303414,-34.8981219112813,-34.8981263452347,-34.8981307875257,-34.8981397321386,-34.8981441644245,-34.8981530973647,-34.8981620853334,-34.8981710599619,-34.8981800329228,-34.8981889892084,-34.8981979171461,-34.8982203587198,-34.8982383863505,-34.8982564339914,-34.8982743782457,-34.8982922774768,-34.8983057827752,-34.8983147674088,-34.898323697014,-34.8983191496688,-34.8983281276323,-34.8983371139335,-34.8983506275695,-34.8983551782497,-34.8983642429246,-34.8983777548931,-34.898400213142,-34.8984226780611,-34.8984361833594,-34.8984496869903,-34.8984675428657,-34.8984719918268,-34.8984809731253,-34.898507983722,-34.898516960018,-34.8985259479867,-34.8985349809786,-34.8985485396378,-34.8985620299284,-34.8985845482083,-34.8985935945404,-34.8986071932203,-34.8986117622433,-34.8986163279313,-34.8986253859361,-34.8986344172604,-34.8986434035615,-34.8986432968398,-34.8986296864873,-34.8986205801242,-34.8986160111012,-34.8986159494027,-34.8986113553668,-34.8986158009928,-34.8986247839589,-34.8986428616154,-34.898642929984,-34.8986429916824,-34.898656542004,-34.8986655883361,-34.8986836993431,-34.8986972613374,-34.8987062909942,-34.8987288509623,-34.8987559015796,-34.8987738875221,-34.8988188206953,-34.8988457812662,-34.8988592598842,-34.8989221056287,-34.8989355575662,-34.8989535151607,-34.8989759934199,-34.8989895304013,-34.8989985800685,-34.8990122137664,-34.8990213167944,-34.8990258924875,-34.8990439968244,-34.8990710807923,-34.8990936090774,-34.8991071493938,-34.8991071960846,-34.8991117467648,-34.8991163024476,-34.8991163558084,-34.8991119068473,-34.8991119618757,-34.8991075729456,-34.8991076196363,-34.8991121736516,-34.8991212933549,-34.899125869048,-34.8991259190738,-34.8991439767199,-34.8991574686781,-34.8991619293119,-34.8991618742835,-34.899166318242,-34.8991706888294,-34.8991751578008,-34.8991930687046,-34.8992199709121,-34.8992379618571,-34.8992515205163,-34.8992561529054,-34.8992517222871,-34.8992517806505,-34.8992563363333,-34.8992653726602,-34.8992788946339,-34.8992924516256,-34.8992970023058,-34.8993015546536,-34.8993105993181,-34.8993196906734,-34.8993377233067,-34.8993421906106,-34.8993465912134,-34.8993419721646,-34.8993284118378,-34.8993283418017,-34.8993282901084,-34.8993327290643,-34.8993371630177,-34.8993595945862,-34.899377565521,-34.8993955481284,-34.8994000037596,-34.8994044493857,-34.8994179330062,-34.8994313816086,-34.899435812227,-34.89944022617,-34.8994446567883,-34.8994536064039,-34.8994760829956,-34.8994896016342,-34.8995031169377,-34.8995120932337,-34.8995210695297,-34.8995435811395,-34.8995616254454,-34.8995796747539,-34.8995932150703,-34.8996067420465,-34.899624759672,-34.8996337459731,-34.8996336642643,-34.8996426405603,-34.8996561125081,-34.8996650554536,-34.8996740234119,-34.8996875220402,-34.8996919426533,-34.8997009189493,-34.8997099002478,-34.8997278461697,-34.8997457887564,-34.8997592623718,-34.8997682219925,-34.8997771816132,-34.8997861462365,-34.8998041488542,-34.8998221431344,-34.89983109942,-34.8998445029992,-34.8998579632744,-34.8998624305783,-34.8998623655448,-34.8998668295136,-34.8998757707915,-34.8998892093888,-34.8999026863392,-34.8999252346346,-34.8999342109306,-34.899947716229,-34.8999612515428,-34.8999792791734,-34.9000017240822,-34.9000286412974,-34.900037594248,-34.9000465405285,-34.9000555018167,-34.90006446644,-34.9000643780611,-34.9000733726999,-34.9000868579879,-34.9001003366058,-34.900109322907,-34.9001272905067,-34.9001407391091,-34.9001496870571,-34.9001451247042,-34.900145076346,-34.9001585116082,-34.9001764158418,-34.9002032830313,-34.9002077219872,-34.9002211322366,-34.9002345591612,-34.9002435187819,-34.9002524967454,-34.9002704743502,-34.9002839696434,-34.9002929676173,-34.9003109902453,-34.9003245055488,-34.9003425098341,-34.9003559984572,-34.9003739843997,-34.9003874563475,-34.9004009316304,-34.9004143919055,-34.9004553318557,-34.9004878311371,-34.9004919612808,-34.9004765625957,-34.9004723001036,-34.9004806971505,-34.9004721033355,-34.9005306313006,-34.900562388231,-34.9007410521042,-34.9007578289806,-34.900580144255,-34.9006435029333,-34.900692832171,-34.9007108297861,-34.9007333580712,-34.9007468783773,-34.9007604003509,-34.9007739006467,-34.9007873909373,-34.900805450251,-34.9008235179023,-34.9008369998553,-34.9008504918134,-34.9008595348105,-34.9008730884671,-34.900895603412,-34.9009181233594,-34.9009271580188,-34.9009361876756,-34.900949692974,-34.9009677072644,-34.9009767402563,-34.9009857682456,-34.9010083098709,-34.9010218285095,-34.9010850644552,-34.9011095231945,-34.9011480764999,-34.9011845860431,-34.9012156254775,-34.9012127061237,-34.9012777943317,-34.901259949648,-34.9012652740606,-34.9012966029201,-34.9013000851626,-34.9013281148025,-34.9013419836216,-34.9013686223599,-34.901382139331,-34.901395687985,-34.9014047393197,-34.9014138423477,-34.9014274660405,-34.9014366207618,-34.9014366741226,-34.9014322318316,-34.9014278212236,-34.9014233605898,-34.9014144243145,-34.9014055213897,-34.9014010841013,-34.9013921728388,-34.9013832082155,-34.9013742586,-34.9013743436439,-34.901387867285,-34.9014014226092,-34.901405974957,-34.9014015593464,-34.9013881057413,-34.9013746137832,-34.9013656274821,-34.9013566928743,-34.9013674000629,-34.901361963926,-34.901357148109,-34.9013528175423,-34.9013528725707,-34.9013529926326,-34.901357553318,-34.9013576200191,-34.9013531760605,-34.9013397641437,-34.9013398508551,-34.901340005935,-34.9013446149787,-34.9013582219962,-34.9013627993569,-34.9013673767175,-34.9013764297197,-34.9013945657396,-34.9014081760921,-34.9014262103929,-34.9014487887037,-34.9014533343814,-34.9014713886925,-34.9014849390141,-34.9014894863592,-34.9014941604365,-34.9014987611425,-34.9014943188515,-34.9014898865656,-34.9014944589237,-34.9015080375933,-34.9015170705851,-34.901599614822,-34.9016554738669,-34.9017403589673,-34.9018034442335,-34.9018989347196,-34.9019086472593,-34.9019456717311,-34.9019975178848,-34.9020480265903,-34.9020806906679,-34.9021766419026,-34.9022502752591,-34.902305876646,-34.9024139003393,-34.9024912025433,-34.9025917878848,-34.9026025806749,-34.9025256242367,-34.9024531433101,-34.9024642384265,-34.9025949692427,-34.9027284778876,-34.902687669174,-34.9026941591436,-34.9027440772902,-34.9027973331354,-34.9028327608082,-34.9028977886937,-34.9028845205371,-34.9028984202562,-34.902969390838,-34.903038620675,-34.9029828175817,-34.9029609172442,-34.9030150516234,-34.9030628832246,-34.9030988581477,-34.9030453428988,-34.9030539625321,-34.9031700015146,-34.9032079044946,-34.9032187978247,-34.9032005373623,-34.903263017884,-34.9033086622619,-34.9033774887163,-34.9033904828988,-34.9034866932458,-34.9035957249544,-34.9035213584391,-34.9035467995838,-34.903651974497,-34.9037610777847,-34.9037632489968,-34.9037292032725,-34.9036831847526,-34.9036711400329,-34.9036225897886,-34.9035515877125,-34.9036228599943,-34.9036086566381,-34.9036195920778,-34.9036260958529,-34.903607503879,-34.9035697884552,-34.9034966308602,-34.9033422425034,-34.9033111170269,-34.9033512205946,-34.9034388258491,-34.9035286325254,-34.9036543122114,-34.9038027138455,-34.9038361843747,-34.9038969807267,-34.9038998425263,-34.9039251535519,-34.9039754741314,-34.9040506463847,-34.9041192432804,-34.9041185797874,-34.9041433484045,-34.904189223198,-34.9042125051745,-34.9041785856737,-34.904192314657,-34.9042525223759,-34.9043150750041,-34.9043762234568,-34.9045071069098,-34.9045653142165,-34.904623794287,-34.9046570350908,-34.9046842173166,-34.9046922831235,-34.9047266081228,-34.9048243876111,-34.904836582382,-34.9049552786609,-34.905047085668,-34.9051448650823,-34.9051989710871,-34.9052326139069,-34.9052826760955,-34.9052800726423,-34.9053188692334,-34.9053705582823,-34.9054061871788,-34.9054049006386,-34.9054593412686,-34.9054619016708,-34.9054474252418,-34.9054041682104,-34.9053434436959,-34.90534384568,-34.905406656696,-34.9053341307915,-34.9053658018,-34.9053922463023,-34.9054346653426,-34.9054935469742,-34.9054774141073,-34.9054966230048,-34.9055863865145,-34.9056471681111,-34.9056435972054,-34.9055083459053,-34.9054650592433,-34.9054765666227,-34.9054411960217,-34.905410123332,-34.9053328384743,-34.9053260483057,-34.9053297799457,-34.9053383453311,-34.9053527138942,-34.9053511938717,-34.9054100749738,-34.9053805378178,-34.9053832969916,-34.905349926922,-34.9053180422957,-34.9052657217614,-34.9052039418079,-34.9051920379481,-34.9051236833987,-34.9050159934025,-34.9048846540007,-34.9047575565579,-34.9047022642823,-34.9047780225019,-34.9048211965575,-34.9048100633031,-34.904931838755,-34.9049887033243,-34.9049955197907,-34.904941798411,-34.9048831472946,-34.9047905691726,-34.9047575417599,-34.9047436213977,-34.9048238371685,-34.9048520322907,-34.904926829576,-34.9048859261947,-34.904795264567,-34.9047402754639,-34.9045578519066,-34.9044240434747,-34.9043061146107,-34.9041534044294,-34.9039780010746,-34.903837067205,-34.903683809718,-34.903449855379,-34.9032229723838,-34.9030091617456,-34.9029722907603,-34.9030765699256,-34.903058711017,-34.9029560677704,-34.9028350282811,-34.9027530947611,-34.9026264699965,-34.9025533966568,-34.902530150338,-34.9022175199103,-34.9020270944644,-34.9020506235631,-34.9021194801763,-34.902025522687,-34.9018325320267,-34.9015625637027,-34.9015036905442,-34.9012467375547,-34.9012833006174,-34.9012673004986,-34.9011211749463,-34.9008754615156,-34.900728135234,-34.9006720297631,-34.9006899439158,-34.9006918940731,-34.9005918784399,-34.9004919185547,-34.9003973597883,-34.900392283833,-34.9003852172847,-34.9003239791194,-34.9002080662756,-34.9001657353842,-34.9001018987419,-34.9001663024653,-34.9001356670943,-34.9000359011843,-34.9000224591706,-34.8998714479463,-34.8997843992678,-34.8997206429722,-34.8997361024348,-34.8997291717995,-34.899657505257,-34.8995779543678,-34.8993936157484,-34.8993622626289,-34.8995385206446,-34.8994973602891,-34.8993037975358,-34.8992350810086,-34.8990687650428,-34.8989181403701,-34.8988510729916,-34.8988932122943,-34.8989051028889,-34.8988561098731,-34.8988309336089,-34.898575292594,-34.8984809781931,-34.8984324489377,-34.8982742748065,-34.8983062396775,-34.8982981588433,-34.8982301896327,-34.898191438845,-34.8981540273006,-34.8981442226426,-34.8980918153505,-34.8980462880094,-34.8979635291398,-34.8979600633877,-34.8979796314816,-34.8979003898127,-34.8978555316151,-34.897844722297,-34.8978107248226,-34.8977839678714,-34.8977646572362,-34.8977117350975,-34.8977161787584,-34.8977695639775,-34.8977967349951,-34.8977250657306,-34.8976489298936,-34.8975778290993,-34.8975364881112,-34.8975524867334,-34.8975153301185,-34.8974480308704,-34.897445027297,-34.8973693803103,-34.8972905497673,-34.8972606353141,-34.8971896879523,-34.8972015513314,-34.8971410800347,-34.8971188688538,-34.8971571289034,-34.8971575654529,-34.8970819442625,-34.8970784520779,-34.8969847022686,-34.8969515006057,-34.8968609605727,-34.8968163065067,-34.8967195257228,-34.8967096381155,-34.8967667449281,-34.896736881111,-34.8966648039813,-34.8966212827775,-34.8965498464565,-34.8964859340722,-34.8964026529491,-34.8962110777637,-34.8961926661439,-34.8960387263049,-34.8959480836358,-34.895857774231,-34.8956918950685,-34.8956922282853,-34.8956970843452,-34.8956477014327,-34.8955832249992,-34.8955459142256,-34.8954248181717,-34.8953314001867,-34.8952980688576,-34.8953788473878,-34.8953298794565,-34.8953027655602,-34.8952268117093,-34.89509105264,-34.8950167062938,-34.8949599132648,-34.8949603741274,-34.8948781125379,-34.8948162081123,-34.8947203327715,-34.8946517883168,-34.8943618204396,-34.8943332782196,-34.894280416791,-34.8942751482405,-34.8942196421146,-34.8942111570348,-34.894275583465,-34.8942344972758,-34.8942293621274,-34.894224565487,-34.8941960849656,-34.8942363807471,-34.8942549561603,-34.8943034628431,-34.894324822192,-34.8942897866232,-34.8942851258862,-34.8943270016493,-34.8943052812809,-34.8942996350357,-34.8942808028234,-34.8942400609784,-34.8942002371069,-34.8941869210728,-34.8941871145059,-34.8941568714088,-34.8941478434195,-34.8941387904173,-34.8941297382489,-34.8941206744077,-34.8941116005615,-34.8941025142087,-34.8940979668635,-34.8940934170171,-34.8940933694926,-34.894088812976,-34.8940842539581,-34.8940796932727,-34.8940796390781,-34.8940750783927,-34.8940750258656,-34.8940749624996,-34.8940704443361,-34.8940110753847,-34.8940065247045,-34.8939974525257,-34.8939884136975,-34.8939793623628,-34.8939703085269,-34.8939657461739,-34.8939656986494,-34.8939656461223,-34.8939655860914,-34.893965516889,-34.8939699500086,-34.8939698733024,-34.893974303087,-34.8939742313833,-34.8939786736743,-34.8939786169784,-34.8939785644513,-34.8939830209163,-34.8939829742256,-34.8939829283686,-34.8939873948387,-34.8939873406441,-34.8939827841275,-34.8939738053303,-34.8939648415407,-34.8939603900784,-34.8939559386159,-34.8939469739926,-34.8939380060343,-34.893924489897,-34.8939199408843,-34.8939153885366,-34.8939198408327,-34.8939197791342,-34.8939242439368,-34.8939287062382,-34.8939331677057,-34.8939331185137,-34.8939375741449,-34.8939375216178,-34.8939419747477,-34.8939419222206,-34.8939418696936,-34.8939418171665,-34.8939417613043,-34.8939416996059,-34.893946137728,-34.8939460643568,-34.893950495809,-34.8939504232715,-34.8939548613937,-34.8939547946927,-34.8939547304929,-34.8939591711164,-34.8939591035815,-34.8939635458725,-34.8939634850078,-34.8939679389715,-34.8939723862651,-34.893976839395,-34.8939858382026,-34.8939993743502,-34.8939993276595,-34.8939992818025,-34.8939992359455,-34.893994682764,-34.8939946235668,-34.8939990833668,-34.8939990275047,-34.894003493141,-34.894003447284,-34.8940079062503,-34.894007857892,-34.8940033022092,-34.8940032555185,-34.894003207994,-34.89399865648,-34.8939985906127,-34.8939940407662,-34.8939894892522,-34.8939849360707,-34.8939713799127,-34.8939669267828,-34.8939669893151,-34.8939579971776,-34.8939534389935,-34.8939488766406,-34.8939488074382,-34.893948730732,-34.8939441833868,-34.8939441025118,-34.8939440216367,-34.8939439449305,-34.8939438707256,-34.8939438015232,-34.8939437389909,-34.8939391799731,-34.8939346159526,-34.8939210906439,-34.893916637514,-34.8939121860516,-34.8939122502514,-34.8939123169525,-34.8939123794847,-34.8939124361806,-34.8939124903752,-34.8939125429023,-34.893912597097,-34.8939171586161,-34.8939172128107,-34.8939172653378,-34.8939173145299,-34.89391286807,-34.8939084074362,-34.8938948812938,-34.8938858432993,-34.8938768019698,-34.8938677681442,-34.8938587760067,-34.893854322043,-34.8938543679,-34.8938544187595,-34.8938589811125,-34.8938635476342,-34.8938681158235,-34.8938681833583,-34.893872760719,-34.8938728307551,-34.8938683926329,-34.893868459334,-34.8938640112066,-34.8938595614118,-34.8938551074481,-34.8938506501493,-34.8938461936843,-34.8938417397207,-34.8938417989179,-34.8938418664527,-34.8938419431589,-34.8938465305247,-34.8938510778699,-34.893855664402,-34.8938602425964,-34.893869322279,-34.8938738929696,-34.8938784611588,-34.8938785236911,-34.8938785812207,-34.8938786329141,-34.8938741789504,-34.8938651893142,-34.8938516756782,-34.8938426460214,-34.8938336013568,-34.8938290415052,-34.8938244908249,-34.8938199301395,-34.8938198701086,-34.8938152985843,-34.8938107262262,-34.8938061480318,-34.893801564001,-34.8937970158221,-34.8937924626405,-34.8937879077915,-34.8937878535969,-34.8937832912439,-34.893778725556,-34.8937741573667,-34.8937695900112,-34.8937650209882,-34.8937604536327,-34.8937558879447,-34.8937558295813,-34.8937557745529,-34.8937512147012,-34.8937511638417,-34.8937556219742,-34.8937555761172,-34.8937554910734,-34.8937599216917,-34.8937643623152,-34.8937733169333,-34.8937732627386,-34.8937777200374,-34.8937776725129,-34.8937776241546,-34.8937775741288,-34.8937775216017,-34.8937774649058,-34.8937774065424,-34.8937773456776,-34.89378179047,-34.8937817279377,-34.8937861760651,-34.8937906275274,-34.8937905775016,-34.8937950381354,-34.8937994979355,-34.8938039569017,-34.8938084125329,-34.8938128639954,-34.8938173112889,-34.8938217560812,-34.8938216910477,-34.8938216276817,-34.8938215693182,-34.8938214992821,-34.8938124562851,-34.8938080023214,-34.8938035450227,-34.8937991002304,-34.8937991677652,-34.8937947304768,-34.8937902856845,-34.8937858317208,-34.8937813677519,-34.89377240563,-34.8937679483312,-34.8937544472017,-34.8937454150435,-34.8937363812179,-34.8937228642469,-34.8937138862834,-34.893709423982,-34.8937049766884,-34.8937005402338,-34.8936961104492,-34.8936961896568,-34.893696269698,-34.8936963447367,-34.8937009229312,-34.8937054952892,-34.8937055528189,-34.8937101135043,-34.8937146716884,-34.8937147217142,-34.8937102652492,-34.8937103177763,-34.8937058646464,-34.8937014190203,-34.893696974228,-34.8936970375941,-34.8936925944693,-34.893688149677,-34.8936882063729,-34.8936837515755,-34.8936792926092,-34.8936703354898,-34.8936613475211,-34.8936478430565,-34.8936387975582,-34.8936297395534,-34.893620673211,-34.8936116227101,-34.8936025730429,-34.893593522542,-34.8935844745424,-34.893575425709,-34.8935663576991,-34.8935617928449,-34.8935617336477,-34.8935616794531,-34.8935571254378,-34.89355257309,-34.8935435434332,-34.8935345096076,-34.8935254699456,-34.8935209217666,-34.8935208659045,-34.8935162935464,-34.8935117378636,-34.8935026715212,-34.8934981083345,-34.8934890336544,-34.8934799564731,-34.893470878458,-34.8934618337934,-34.8934527591134,-34.8934437177839,-34.8934346514415,-34.893425613447,-34.893416556276,-34.8934029992843,-34.8933939546198,-34.8933849157915,-34.8933758777971,-34.8933668398026,-34.8933578009744,-34.8933487604786,-34.8933397033076,-34.8933306494717,-34.893321594802,-34.8933125451348,-34.8933034946339,-34.8932944558057,-34.8932853986346,-34.8932808404505,-34.8932762789314,-34.893267212589,-34.8932626635763,-34.8932536314181,-34.8932446326106,-34.8932356429744,-34.8932266550057,-34.8932176628683,-34.8932041534011,-34.8931906247573,-34.8931815900979,-34.8931725462671,-34.8931679922519,-34.8931634374028,-34.8931498937513,-34.8931454289487,-34.8931454764732,-34.8931500354911,-34.8931500830156,-34.8931456248831,-34.8931320895692,-34.8931230540761,-34.8931140152479,-34.8931049772534,-34.893095945929,-34.8930824131165,-34.8930688903091,-34.8930508776862,-34.8930373748891,-34.8930283860867,-34.893014892461,-34.8930059086612,-34.892992416703,-34.8929789230774,-34.8929699309399,-34.8929609337998,-34.8929474285015,-34.892933919868,-34.892920417071,-34.8929069101051,-34.8928979121313,-34.8928889141575,-34.8928754105266,-34.8928664125528,-34.8928574137452,-34.8928439067793,-34.8925682212679,-34.8925019112368,-34.8924296397979,-34.8923043927048,-34.8922567347931,-34.8921952639243,-34.8921294966731,-34.8921222437659,-34.8920893468001,-34.8920311876393,-34.8920386348133,-34.8920098107814,-34.8919739464519,-34.8919310076406,-34.8918785756,-34.8918381472501,-34.891819011548,-34.8918594165525,-34.8919356742139,-34.8920284195451,-34.8920302096349,-34.8919733619838,-34.8919156046969,-34.8918953909388,-34.8918990815512,-34.8918862143834,-34.8919199722748,-34.8919287848275,-34.8919307791894,-34.8918970584655,-34.8918907768925,-34.8918607930958,-34.8918582125983,-34.8918190774444,-34.8918149253661,-34.89183689954,-34.8918322216941,-34.8918176450099,-34.8918099927301,-34.8917932107418,-34.8917605964218,-34.8917221666026,-34.891756699412,-34.8917615143952,-34.8917066185841,-34.8916933325654,-34.8916743452732,-34.8916477207089,-34.8916198463334,-34.8915828897739,-34.8915871319617,-34.8914953904816,-34.8914355479527,-34.8914180372553,-34.8913938647889,-34.8913632790151,-34.8913303803817,-34.8912877650706,-34.8912874123887,-34.8913086308316,-34.8913220277407,-34.8913396926843,-34.8913046454429,-34.8912268636622,-34.8912372323429,-34.8912491985141,-34.8912443826972,-34.8911709756726,-34.8911433597637,-34.8911154620428,-34.8910695358575,-34.8910692265313,-34.8910425394348,-34.8910223790376,-34.8909995747768,-34.89100016925,-34.8910006511653,-34.8910011472544,-34.8909501501206,-34.8909273208469,-34.8909269673313,-34.8909399065044,-34.8909698877998,-34.8910030999282,-34.8910033483896,-34.891003688565,-34.8910041262908,-34.8910045406712,-34.8909707615838,-34.8909753414457,-34.8909416432334,-34.8909403342249,-34.8909463048041,-34.8909497615869,-34.8909556738026,-34.8909705764883,-34.8909756632783,-34.8909483700359,-34.8909500308924,-34.8909223165994,-34.8909221548494,-34.8909220156109,-34.8909289508542,-34.8909216229084,-34.8909214144675,-34.8909523137364,-34.8909809551742,-34.8910150144061,-34.8910525579349,-34.8910811301703,-34.8910992753616,-34.8911112990625,-34.8911219562254,-34.8911308099581,-34.8911405658228,-34.891148710023,-34.8911596123123,-34.8911752645512,-34.8911757047782,-34.8911667810093,-34.8911535041621,-34.8911247993583,-34.891111674256,-34.8910965864749,-34.8910750495344,-34.8910521485571,-34.8910303197995,-34.891008155869,-34.8909824025873,-34.8909821716349,-34.8909892561219,-34.8909866631179,-34.891000856271,-34.8910341117551,-34.8910530573591,-34.8910575721876,-34.8910430780459,-34.8910404958809,-34.8910261059596,-34.8910017625718,-34.8909855175271,-34.8909910462117,-34.8909967599918,-34.8910015974866,-34.8910075413854,-34.8910131626177,-34.8910314812318,-34.8910630483451,-34.891086676364,-34.8911117268272,-34.8911266069572,-34.8911387248734,-34.8911361085241,-34.8911144598593,-34.8910881796393,-34.8910720087995,-34.8910506661259,-34.8910239398425,-34.8910218562679,-34.8910191765526,-34.8910163209132,-34.8910324700751,-34.8910345444782,-34.891037205017,-34.8910600109453,-34.8910797261129,-34.8910770147146,-34.8910746618345,-34.8910792517016,-34.8910847061813,-34.8910884531136,-34.8910692815597,-34.8910409302716,-34.891027891085,-34.8910114228647,-34.8909937511438,-34.8910003710208,-34.8910051985104,-34.890984556198,-34.890961675231,-34.8909458570732,-34.8909353701601,-34.8909258897594,-34.8909092740397,-34.8908747384749,-34.8908585888253,-34.8908613901781,-34.8908692233846,-34.890875992709,-34.8908841810987,-34.8908926846508,-34.890900201861,-34.8909109607429,-34.8909245677604,-34.8909309593901,-34.8909425645418,-34.8909488561199,-34.8909550042907,-34.8909579508102,-34.8909607756004,-34.8909635028403,-34.8909659165851,-34.8909716270301,-34.890972916862,-34.890976034303,-34.890978112875,-34.8909792059387,-34.8909807025439,-34.8909822174919,-34.8909835590171,-34.8909850614586,-34.8909862912595,-34.890989093538,-34.8909921342729,-34.8909946397317,-34.8909954951728,-34.8909965348757,-34.8909976537861,-34.8909986342918,-34.8909997698774,-34.8910006570016,-34.891002092742,-34.8910035143085,-34.8910047407744,-34.8909950882963,-34.8909961046538,-34.8909970576453,-34.8909927145721,-34.8909882005775,-34.8909840642776,-34.8909777918761,-34.8909712059796,-34.890957669832,-34.8909462172589,-34.8909347655197,-34.8909152896421,-34.8909028957503,-34.8908874486171,-34.8908748704636,-34.8908641857866,-34.8908545716617,-34.8908466275647,-34.8908424329014,-34.8908380339661,-34.8908344921395,-34.890834663061,-34.8908348348162,-34.8908349898962,-34.8908352241837,-34.8908360020849,-34.8908369092194,-34.8908309978374,-34.8908288267177,-34.8908235406582,-34.890818538912,-34.8908188265603,-34.8908169272475,-34.8908146994319,-34.8908129577003,-34.8908059874389,-34.8907901134189,-34.8907723992832,-34.8907581919562,-34.8907494974722,-34.8907408021545,-34.8907404286285,-34.890740081783,-34.8907338727475,-34.8907274986268,-34.8907155349569,-34.8907055639812,-34.890700622266,-34.8906854602799,-34.8906700398272,-34.8906549728901,-34.8906383159664,-34.8906228921786,-34.8906039257305,-34.890590082758,-34.890574113689,-34.8905722052047,-34.8905935128603,-34.8905805303315,-34.8905681331046,-34.8905558509371,-34.890545557295,-34.8905331600681,-34.8905202925987,-34.8905066080412,-34.8904811757585,-34.8904584090171,-34.8904547554662,-34.8904371889067,-34.8904256379496,-34.890408554139,-34.890393067819,-34.8903835662521,-34.8903740646853,-34.8903651250749,-34.8903574436134,-34.8903555584745,-34.8903558611305,-34.8903648507667,-34.890368372583,-34.8903711590201,-34.890371169859,-34.890371187368,-34.8903712032095,-34.8903712165497,-34.8903613081064,-34.8903522759482,-34.8903308457294,-34.8903190771601,-34.8903156979173,-34.8903101283783,-34.8903017265453,-34.8902805631308,-34.8902650242837,-34.8902465972804,-34.8902397320731,-34.8902337248084,-34.890213832883,-34.8901867364086,-34.8901614808837,-34.8901486325908,-34.8901360269231,-34.8901243867533,-34.8901124130782,-34.8900994830765,-34.890088771719,-34.890076991477,-34.8900671472334,-34.8900563683411,-34.8900418450177,-34.890034601282,-34.8900280012115,-34.8900182286715,-34.8900096259015,-34.8900008330335,-34.8899928772638,-34.8899887651431,-34.889991886753,-34.8899943663651,-34.8899974112688,-34.8900005195385,-34.8900057347281,-34.8900103162575,-34.8900149653218,-34.8900202730592,-34.8900297304366,-34.8900226209367,-34.8900125524108,-34.8899960614059,-34.8899762044986,-34.8899602696139,-34.889941552461,-34.8899164086603,-34.8898988220905,-34.8898753875047,-34.8898616629265,-34.8898428523921,-34.8898272710231,-34.8898045601439,-34.8898058733211,-34.8897846407042,-34.8897790920093,-34.8897787268209,-34.8897782991004,-34.8897780206234,-34.8897639525348,-34.8897412608321,-34.8897272360992,-34.8897003722448,-34.8896825347122,-34.8896708278413,-34.889654870445,-34.8896455039478,-34.889629044626,-34.8896119049533,-34.88959769846,-34.8895733333943,-34.8895574968937,-34.8895423540841,-34.889532603222,-34.8895227197916,-34.889514287943,-34.8894915420458,-34.8894849594843,-34.8894783760891,-34.8894714983754,-34.8894534532357,-34.8894430261915,-34.8894244549472,-34.889407567071,-34.8893820038874,-34.889362235359,-34.8893397337543,-34.8893207047739,-34.889300060794,-34.8892831854242,-34.8892657005735,-34.8892458870218,-34.8892415047618,-34.8892348138111,-34.8892269013971,-34.8892142315296,-34.8892155930651,-34.8892097458829,-34.8892041404921,-34.8891996356688,-34.88918828815,-34.8891788591205,-34.8891711743239,-34.8891587745957,-34.8891471248376,-34.8891335611759,-34.889120413562,-34.889106142452,-34.8890943676294,-34.8890802628552,-34.8890663777777,-34.8890506550857,-34.8890390103302,-34.8890289876613,-34.889012283213,-34.8889982418049,-34.8889859738113,-34.8889728074377,-34.8889641738185,-34.8889482881258,-34.8889369264329,-34.8889176243951,-34.888888476446,-34.8888409873714,-34.8887785668462,-34.888731576362,-34.8886935388284,-34.88868448666,-34.8886754432461,-34.8886664077529,-34.8886528736897,-34.888639358803,-34.8886258505865,-34.8886123398687,-34.8885988208132,-34.8885853167655,-34.8885763183748,-34.8885673320737,-34.8885583416037,-34.8885493461312,-34.8885403473236,-34.8885268378564,-34.8885133342256,-34.8885043450063,-34.8884953682934,-34.888486397417,-34.8884819330312,-34.8884774740649,-34.8884684810937,-34.8884549649564,-34.8884414308932,-34.8884278926612,-34.8884098421021,-34.888400813279,-34.8883917848728,-34.8883782303824,-34.8883691973906,-34.8883601648156,-34.888351130573,-34.8883420963305,-34.8883330625049,-34.888324029513,-34.8883104762733,-34.8882969313711,-34.8882833931391,-34.8882698536565,-34.8882608235827,-34.8882517868389,-34.8882427280004,-34.8882336816683,-34.8882246349193,-34.8882155885872,-34.8882065447564,-34.8881975013425,-34.8881884450053,-34.8881794053433,-34.88817036318,-34.8881568303674,-34.8881433058926,-34.8881297693281,-34.8881207363362,-34.8881071956029,-34.8880981613603,-34.8880521805635,-34.8880380347403,-34.8880242753504,-34.8880135591464,-34.8879997355497,-34.887983346546,-34.8879692790632,-34.8879584373085,-34.887943003865,-34.8878253582935,-34.8878044073639,-34.8877908307788,-34.8877817898661,-34.8877727256081,-34.8877591586113,-34.8877546108492,-34.8877455586808,-34.8877364519008,-34.8877363960387,-34.8877363464298,-34.8877362943196,-34.8877227673434,-34.8877137797916,-34.8877002744932,-34.8876912198235,-34.8876911731328,-34.8876911197719,-34.8876820580152,-34.8876730075143,-34.8876639528446,-34.8876503870984,-34.8876368176002,-34.8876187232685,-34.8876006385251,-34.8875916013644,-34.8875825658712,-34.8875735316287,-34.8875644990537,-34.8875554677294,-34.887546436405,-34.8875328802471,-34.8875238489227,-34.8875148146802,-34.887501248934,-34.8874922109395,-34.8874831462647,-34.8874741070196,-34.887465041094,-34.8874604849943,-34.8874514249051,-34.8874468713067,-34.8874378112176,-34.8874287511284,-34.8874197139677,-34.8874106526278,-34.8873970814622,-34.8873880172042,-34.8873789775422,-34.8873699091154,-34.887360839021,-34.887356273333,-34.8873471994867,-34.887338123973,-34.887333558285,-34.8873244886075,-34.8873199308403,-34.8873108707511,-34.8873063213215,-34.8873017735594,-34.887292721391,-34.8872881598719,-34.8872790968645,-34.8872700409441,-34.8872610025328,-34.8872519682903,-34.8872429315465,-34.8872338973039,-34.8872248576419,-34.8872203015422,-34.8872157479438,-34.8872067137013,-34.887197682377,-34.8871886414643,-34.8871840866153,-34.8871840249168,-34.8871884822155,-34.887192937013,-34.8871973913936,-34.8872018491092,-34.887206313078,-34.887206263886,-34.8872062159446,-34.8871971762826,-34.8871881462089,-34.8871746254859,-34.8871656287628,-34.8871566316227,-34.8871476399021,-34.8871341346037,-34.8871206084613,-34.8871115800551,-34.8871025308049,-34.8870934911429,-34.8870844431433,-34.8870754076501,-34.8870618940141,-34.8870529010428,-34.8870438626315,-34.88703930945,-34.8870392515034,-34.8870391914725,-34.8870391268558,-34.8870390634898,-34.8870345061395,-34.8870209649893,-34.8870119349156,-34.8870028556498,-34.8869937663789,-34.8869891802638,-34.8869845949823,-34.8869845182761,-34.8869844453218,-34.8869843769532,-34.8869843135872,-34.8869842573082,-34.8869797037098,-34.8869706544595,-34.8869616064599,-34.8869525738849,-34.8869435354736,-34.8869344820545,-34.886929921786,-34.8869208462722,-34.8869117695077,-34.8869026969121,-34.8868891228283,-34.8868800614884,-34.8868664957422,-34.8868574381543,-34.8868528858066,-34.8868483338757,-34.886843777776,-34.8868437252489,-34.8868481771282,-34.8868481208492,-34.8868525727284,-34.8868480153781,-34.8868479657692,-34.8868434096695,-34.8868388531529,-34.8868342916337,-34.8868387418455,-34.8868431895559,-34.8868476401846,-34.8868520962327,-34.8868565560327,-34.8868610204184,-34.8868654860548,-34.8868699512743,-34.8868698799875,-34.886874320611,-34.8868742343165,-34.8868741805388,-34.8868786294999,-34.8868785665508,-34.8868785019341,-34.8868784385681,-34.8868783756189,-34.8868783164218,-34.8868782613934,-34.8868782147026,-34.8868735964876,-34.8868042396281,-34.8867332361233,-34.8867377388822,-34.8866587607517,-34.8866834769943,-34.8866560552211,-34.8865936018925,-34.886515540579,-34.8865064950807,-34.8864974570862,-34.8864839284425,-34.8864749642361,-34.8864659850219,-34.8864569933013,-34.886443515934,-34.8864345392212,-34.8864255437487,-34.8864120563762,-34.8863985564973,-34.8863850428613,-34.8863670006398,-34.8863534557377,-34.8863444089887,-34.8863353539021,-34.8863263171583,-34.8863172499821,-34.8863126851279,-34.8863036096141,-34.8862990451768,-34.8862899834201,-34.8862809341698,-34.8862673942702,-34.8862538643759,-34.8862403411516,-34.8862268166767,-34.8862132909511,-34.8861997648087,-34.886186236165,-34.8861727171095,-34.8861592147293,-34.8861457110985,-34.8861321878742,-34.8861186563123,-34.8861051209984,-34.8860915852677,-34.8860780512045,-34.8860645196426,-34.8860509926664,-34.8860374694421,-34.8860239558061,-34.8860104534259,-34.8860014579534,-34.8859924662328,-34.8859834899368,-34.8859744982163,-34.8859655094138,-34.8859520011973,-34.8859384742211,-34.8859294358098,-34.8859203973984,-34.8859113564858,-34.8858978153356,-34.8858887769243,-34.8858752303546,-34.885866189442,-34.885852644123,-34.8858391046403,-34.8858255718278,-34.8858120677801,-34.8857985804076,-34.8857896178688,-34.8857806674194,-34.8857717198883,-34.8857627669377,-34.8857538014806,-34.8857448210158,-34.8857358280446,-34.8857222843931,-34.8857132472324,-34.8857042159081,-34.885690688515,-34.8856726667207,-34.8856546534725,-34.8856366427255,-34.885614121319,-34.8855961036935,-34.885578086068,-34.8855600699017,-34.8855465564741,-34.8855240417377,-34.8855015311701,-34.8854790233122,-34.8854610209029,-34.8854430157838,-34.8854295119446,-34.8854159997677,-34.8854024738337,-34.8853979202352,-34.88539335017,-34.8853978020493,-34.8853977441027,-34.8853976890744,-34.8853931315156,-34.8853751853853,-34.8853662366035,-34.885361794521,-34.8853528371931,-34.8853483801028,-34.8853349008595,-34.8853259216454,-34.8853169232547,-34.8852989223045,-34.8852809198952,-34.8852584105782,-34.8852404108786,-34.8852269057887,-34.8852179071896,-34.8852044020997,-34.8851863996903,-34.8851683904025,-34.8851548755159,-34.8851413508325,-34.885127819479,-34.8851142839568,-34.885105252424,-34.8850962223503,-34.8850826841183,-34.8850736555036,-34.8850601185223,-34.8850466050947,-34.885037619002,-34.885028653545,-34.8850242100033,-34.885015266641,-34.8850063203605,-34.8849973384366,-34.8849883756893,-34.8849748924857,-34.8849658982638,-34.8849523764986,-34.8849388382666,-34.8849252916969,-34.8849162628739,-34.8849072232119,-34.8848936862305,-34.8848801536264,-34.8848666166451,-34.8848575851123,-34.8848485469094,-34.8848394974507,-34.8848304659179,-34.8848169552,-34.8848079663976,-34.8847989886426,-34.8847945313438,-34.8847855742244,-34.8847811250549,-34.8847766719249,-34.8847722119165,-34.8847677602456,-34.8847587906197,-34.8847452949097,-34.8847363061073,-34.8847228106056,-34.8847093176053,-34.8846958289822,-34.8846868510187,-34.8846778774324,-34.8846689105163,-34.884659947769,-34.8846509852301,-34.884642019773,-34.8846330432686,-34.8846195490176,-34.8846105533366,-34.8845970492889,-34.8845835537873,-34.8845745731141,-34.8845655980687,-34.8845566161449,-34.8845476190048,-34.8845385641267,-34.8845340119873,-34.8845249708663,-34.8845160081189,-34.8845160577279,-34.8845116114765,-34.884511674634,-34.8845117338312,-34.8845072792422,-34.8845028357006,-34.884498374233,-34.8844893950189,-34.884480413095,-34.8844714434691,-34.8844624876004,-34.8844535206842,-34.884444559396,-34.8844356049863,-34.884426654537,-34.8844176738638,-34.8844042250529,-34.88439528711,-34.8843863118563,-34.8843728699239,-34.8843638946701,-34.8843504500281,-34.8843414720646,-34.8843324943095,-34.8843190398707,-34.8843100577384,-34.8843010743554,-34.8842920882627,-34.8842831021701,-34.8842741160774,-34.8842651272749,-34.8842561384725,-34.8842426675669,-34.884233678556,-34.8842246912127,-34.8842157049116,-34.8842022435942,-34.8841932604197,-34.8841842782874,-34.8841708238486,-34.8841618419247,-34.8841483847761,-34.8841349247095,-34.8841214606824,-34.8841079924865,-34.8840945201218,-34.8840810450474,-34.8840675741417,-34.8840586197321,-34.8840496390588,-34.8840407050763,-34.8840362421497,-34.8840317806821,-34.8840273659053,-34.8840274538673,-34.8840275334917,-34.8840321102271,-34.8840366761235,-34.8840412336823,-34.8840457981196,-34.8840413462403,-34.884036882063,-34.884027884923,-34.8840143756642,-34.8840008482712,-34.8839873046197,-34.8839782703772,-34.8839647252666,-34.8839556897734,-34.88394665699,-34.8839331227184,-34.8839241284965,-34.8839151559525,-34.8839017097471,-34.8838972524483,-34.8838882978302,-34.8838838541843,-34.8838749092587,-34.8838659683977,-34.8838570275366,-34.8838480853207,-34.88383914175,-34.8838301953652,-34.8838212449159,-34.8838122917569,-34.8838033344291,-34.8837943742872,-34.8837854128948,-34.8837764500432,-34.8837674831271,-34.883758516211,-34.8837495478358,-34.8837405795648,-34.8837316098347,-34.8837226402088,-34.8837136704787,-34.8837047021035,-34.8836957351874,-34.8836912750747,-34.8836823108683,-34.883673345307,-34.8836643811006,-34.8836554154351,-34.8836419430704,-34.8836329761543,-34.883624007779,-34.8836150366941,-34.8836060628994,-34.8835970877498,-34.8835836029829,-34.8835746209548,-34.8835656374676,-34.8835566500201,-34.8835476596544,-34.8835341585248,-34.8835251600299,-34.8835071519927,-34.883489126238,-34.883475585192,-34.8834665291675,-34.8834619647301,-34.883461897508,-34.8834618289309,-34.8834662698671,-34.883470714972,-34.8834796722999,-34.8834841269931,-34.88348858721,-34.8834930514915,-34.8834930007362,-34.8834839390837,-34.8834704050205,-34.8834568928436,-34.8834433916098,-34.8834344082269,-34.8834254344322,-34.8834164715806,-34.8834030718576,-34.8833896611914,-34.8833671945005,-34.8833356441667,-34.883276684072,-34.8832581031843,-34.8833062999412,-34.8832875551241,-34.883321700793,-34.8833428176579,-34.8833104761808,-34.8832628090935,-34.8831955710597,-34.8830774005256,-34.8829818333302,-34.8829024235112,-34.88283081741,-34.8827480341338,-34.8827000705508,-34.8825504750383,-34.88248662946,-34.8824358452742,-34.882398058919,-34.8823658925866,-34.881998704124,-34.881941377422,-34.8817365769683,-34.8813995615236,-34.8812962204531,-34.8812602585247,-34.8812512037508,-34.8812376133044,-34.881224036615,-34.8812104654493,-34.881201399628,-34.8811878160602,-34.8811832365109,-34.8811741473442,-34.8811740773081,-34.8811740223839,-34.8811739674597,-34.8811829370856,-34.8811828876851,-34.881182829947,-34.8811782695743,-34.8811692189692,-34.8811556861566,-34.881146698709,-34.8811377400263,-34.8811332812685,-34.8811288308483,-34.8811243830336,-34.8811199339683,-34.8811109752856,-34.881106513818,-34.8810975346039,-34.8810885443423,-34.8810750321654,-34.8810569926537,-34.881043448898,-34.8810298969089,-34.8810163393961,-34.881007285977,-34.8809982518387,-34.880984692971,-34.8809756628973,-34.8809666328236,-34.8809576041048,-34.8809395535457,-34.8809170017068,-34.8808989566713,-34.8808809116358,-34.880867369235,-34.8808583116471,-34.8808537458549,-34.8808582031537,-34.8808626577427,-34.880867109622,-34.8808715655658,-34.8808760256785,-34.8808849843613,-34.8808939649303,-34.8809074839857,-34.8809165263574,-34.8809255770668,-34.8809346126642,-34.8809481454767,-34.8809616479611,-34.8809706258204,-34.8809750832234,-34.8809750254853,-34.8809704622986,-34.8809613992912,-34.8809523512916,-34.8809388117047,-34.8809207735478,-34.8809072544924,-34.880898262876,-34.8808937973438,-34.8808848263631,-34.8808758456899,-34.8808668595972,-34.8808578611023,-34.8808488296737,-34.8808397692719,-34.8808352185916,-34.8808261499564,-34.8808215813502,-34.8808170058655,-34.8808079166988,-34.8808033288119,-34.8807987793823,-34.8807941847211,-34.8807896324775,-34.8807850363572,-34.8807804855727,-34.8807804004247,-34.8807758125377,-34.880775734164,-34.8807756557902,-34.8807710719679,-34.8807664882498,-34.8807574017928,-34.8807483249242,-34.880739257748,-34.8807302055795,-34.8807211686273,-34.8807076455073,-34.8806986896385,-34.8806942309849,-34.880694288723,-34.8806943533396,-34.8806899166765,-34.8806899895266,-34.8806900679004,-34.8806946544324,-34.880694734161,-34.8806993178791,-34.8807038948229,-34.8807084620742,-34.8807175306052,-34.8807220840994,-34.8807221460063,-34.8807176858937,-34.8807086873988,-34.8806951546904,-34.8806861259716,-34.8806725629351,-34.8806589848909,-34.8806499024985,-34.8806408146867,-34.8806317214555,-34.8806271335685,-34.8806225854938,-34.880617996252,-34.8806134481773,-34.8806088630001,-34.8805997793571,-34.8805907080121,-34.8805816504242,-34.8805726188914,-34.8805590710711,-34.8805455286703,-34.8805274821757,-34.8805094371403,-34.8804913961694,-34.8804733621813,-34.8804598444807,-34.8804463460609,-34.8804373613231,-34.8804283849229,-34.8804239234553,-34.880414960708,-34.8804059993156,-34.8803970353176,-34.880388043597,-34.8803745645622,-34.8803655701319,-34.8803520881789,-34.880343093957,-34.8803341009858,-34.8803251092652,-34.880316117753,-34.8803026205839,-34.8802936305308,-34.8802846402693,-34.8802756514669,-34.8802666612054,-34.8802576721945,-34.8802441973285,-34.8802352043573,-34.8802217236549,-34.880212729433,-34.8801992406015,-34.8801812381922,-34.8801632205667,-34.8801451810549,-34.8801316192691,-34.8801225727286,-34.8801180247581,-34.8801134711597,-34.8801044039835,-34.8800998407968,-34.8800952749004,-34.8800952144526,-34.8800906473055,-34.88008607995,-34.8800860222119,-34.8800814590252,-34.8800814039968,-34.8800768437283,-34.8800722832514,-34.8800722323918,-34.8800676760836,-34.8800631197755,-34.8800585661771,-34.8800540125787,-34.8800494618985,-34.8800404043106,-34.880035854881,-34.8800268014619,-34.8800177478344,-34.8800041504051,-34.8799950996958,-34.8799860489865,-34.879976996818,-34.8799679433989,-34.8799543818216,-34.8799453242337,-34.8799362651867,-34.8799226979814,-34.8799136391428,-34.8799000746473,-34.879882008872,-34.8798684554238,-34.879850403614,-34.8798278544848,-34.8797738745627,-34.8797604284615,-34.8797289634842,-34.8797063332716,-34.8796879469143,-34.8796785468581,-34.8796556192004,-34.8795877296046,-34.8795380487746,-34.879497332151,-34.8794924811075,-34.8794471116677,-34.8794152760826,-34.879383442165,-34.8793696281658,-34.8793199667208,-34.8792840183897,-34.8792255086313,-34.8791804418476,-34.8791533184844,-34.8790765789078,-34.8789996519429,-34.8789362825951,-34.8788773357363,-34.8788589502128,-34.8788269945658,-34.8787907373253,-34.8787484092452,-34.8786998623976,-34.8786297252324,-34.8785835389322,-34.878506545552,-34.8784662176706,-34.8784574839997,-34.8783858758195,-34.8783502278516,-34.8783857121237,-34.8783983382457,-34.8783921107888,-34.8782759220302,-34.8781403228472,-34.8779784046866,-34.8777816602687,-34.8776632994667,-34.8775479804717,-34.8775322047947,-34.8774272054176,-34.8773764238547,-34.8773520966556,-34.8773819247229,-34.8773510743841,-34.8772511362888,-34.8769946819611,-34.8768790398562,-34.8768038413998,-34.8766961898219,-34.8765525021576,-34.8765017205055,-34.8762810427547,-34.8761436486924,-34.8760190428109,-34.8759542180808,-34.875843368281,-34.8757489218392,-34.8755732652274,-34.8754217744778,-34.8752191433974,-34.8751315028728,-34.8750951357841,-34.8750318197971,-34.8749593299122,-34.8749229119638,-34.8748546397278,-34.8747596427617,-34.8747413991864,-34.8746734933323,-34.8746013861448,-34.8745246940927,-34.87448847458,-34.8743657137691,-34.8742833329499,-34.8743238549007,-34.8743203445377,-34.874311057248,-34.8742836197645,-34.8742697784595,-34.8742288340101,-34.8741744759762,-34.8741203113755,-34.87406178119,-34.8739651878087,-34.8739184429682,-34.8740395251363,-34.8740732201374,-34.8739974824395,-34.8738458379779,-34.8737995258,-34.87379407097,-34.8739081318905,-34.8739350459118,-34.8740486251771,-34.8740608977649,-34.8739487367813,-34.8737809585578,-34.873732433164,-34.8735243750646,-34.8733777762136,-34.8732317543835,-34.872866343839,-34.8724873608878,-34.8724693307559,-34.872451300624,-34.8724332721596,-34.8724197560223,-34.8724062482226,-34.8723972594202,-34.8723882847918,-34.8723793268386,-34.872374893719,-34.8723704747733,-34.8723660108045,-34.8723570778642,-34.8723481240798,-34.8723346312879,-34.872316604491,-34.8722985576839,-34.8722895288608,-34.8722804967027,-34.8722714653783,-34.8722579242281,-34.8722488912363,-34.8722398582444,-34.8722308260863,-34.8722217955957,-34.8722037454534,-34.8721902176434,-34.8721721866777,-34.8721541632159,-34.8721406454111,-34.8721271326089,-34.8721091083133,-34.8720955863397,-34.8720820585297,-34.8720685273847,-34.8720504830788,-34.8720324396066,-34.8720143986358,-34.871996364335,-34.8719783408732,-34.8719558142556,-34.8719332801342,-34.871919753158,-34.8719062195117,-34.871888174372,-34.8718746307205,-34.8718610795652,-34.8718430177502,-34.8718294582573,-34.871815896263,-34.8718023317674,-34.8717887639368,-34.871779702597,-34.8717706395896,-34.8717660822393,-34.8717615240552,-34.8717569658711,-34.8717569116765,-34.8717568591494,-34.8717568032872,-34.8717567490926,-34.8717611988875,-34.8717656486824,-34.8717700968097,-34.8717745441033,-34.8717834962201,-34.8717879393449,-34.8717968872929,-34.8718058344072,-34.8718147781864,-34.8718237211318,-34.8718326640773,-34.8718416053552,-34.8718505474669,-34.8718594904123,-34.8718684341915,-34.8718773813058,-34.87188632842,-34.8718907682097,-34.8718997161577,-34.8719086641057,-34.8719176128875,-34.8719220510097,-34.8719309964564,-34.8719399394019,-34.8719488806798,-34.8719533146332,-34.8719622559111,-34.8719711988565,-34.8719801426357,-34.871984584093,-34.8719935337085,-34.8719979818359,-34.8720069431241,-34.8720114012566,-34.8720158643917,-34.8720248406876,-34.8720337986408,-34.8720427957809,-34.8720563077494,-34.8720698488995,-34.8720788793901,-34.8720879315586,-34.8721014952204,-34.8721105282122,-34.8721195603703,-34.8721331023543,-34.8721511274836,-34.8721646352833,-34.8721736274208,-34.872187122714,-34.8721961048463,-34.8722095918019,-34.8722185689316,-34.8722320517184,-34.8722410280143,-34.8722545133024,-34.8722634920996,-34.8722724725644,-34.872281453863,-34.8722904368291,-34.8722993889459,-34.8723083427303,-34.8723082835331,-34.8723037161776,-34.872294643165,-34.8722855693187,-34.8722764963062,-34.8722674241275,-34.87225835445,-34.8722537962659,-34.8722492439181,-34.8722446757289,-34.8722401175448,-34.8722355668645,-34.872226508026,-34.872217465029,-34.8722084178631,-34.8721993623596,-34.872194805843,-34.8721902501602,-34.8721856986462,-34.8721766698232,-34.8721631503508,-34.8721541582133,-34.8721451669096,-34.8721362006188,-34.872131750824,-34.8721272993616,-34.872122841229,-34.8721137990658,-34.8721092417154,-34.8721091733468,-34.8721045884823,-34.8721045034384,-34.8720999094025,-34.8720953162003,-34.8720907671877,-34.8720862190087,-34.8720771284871,-34.87206807882,-34.8720544959817,-34.8720454538184,-34.8720319101669,-34.872022877175,-34.8720003163732,-34.8719867877294,-34.871973264922,-34.8719597437822,-34.8719417211541,-34.8719282091857,-34.8719101932277,-34.8718921781035,-34.8718741679819,-34.8718516522033,-34.8718336445829,-34.8718111288043,-34.8717886121919,-34.8717706004028,-34.871748077954,-34.8717255521702,-34.8717030213839,-34.8716849920857,-34.8716624529617,-34.8716444169934,-34.8716263776901,-34.8716083350517,-34.8715902907458,-34.8715722456061,-34.8715541987989,-34.8715361519917,-34.8715226108416,-34.8715045632006,-34.8714910220504,-34.8714774800664,-34.8714639389163,-34.8714458921091,-34.8714323526264,-34.871418815645,-34.8714052794974,-34.8713917466849,-34.8713692025583,-34.8713466801096,-34.8713376829695,-34.8713286933333,-34.871315237227,-34.8713062625986,-34.8713017986297,-34.8712928323389,-34.8712883775414,-34.8712839219102,-34.8712749631233,-34.8712660051701,-34.8712570480507,-34.871248091765,-34.8712391338119,-34.8712301758587,-34.8712167097472,-34.8712032411344,-34.8711897708541,-34.871171790748,-34.8711583137976,-34.8711403270213,-34.8711223344088,-34.8711043392949,-34.8710908440017,-34.8710728363814,-34.8710548229247,-34.8710413109562,-34.8710232883282,-34.8710097663545,-34.8709962402121,-34.8709827099008,-34.8709646689299,-34.8709511319486,-34.8709375891309,-34.8709240438119,-34.8709104943241,-34.8709014488257,-34.8708878918341,-34.8708743323411,-34.8708607686793,-34.8708472025162,-34.8708381386751,-34.8708245641744,-34.8708109855048,-34.8707974009989,-34.8707838106567,-34.8707702136444,-34.8707566107957,-34.8707430012769,-34.8707248810986,-34.8707112615746,-34.8706931338924,-34.8706750053764,-34.8706613833512,-34.8706432565027,-34.8706296403138,-34.8706160291275,-34.8705979156192,-34.8705843119368,-34.8705707107557,-34.8705571137433,-34.8705435158972,-34.8705299205524,-34.8705163252076,-34.8705027290291,-34.870484625526,-34.8704710268461,-34.8704574281663,-34.8704438286526,-34.8704257193132,-34.870412114797,-34.870398509447,-34.870389406419,-34.8703757952327,-34.8703621848802,-34.8703530776834,-34.8703394639958,-34.870330356799,-34.8703212512697,-34.8703121449066,-34.8703030410449,-34.8702939380169,-34.8702848383239,-34.8702757361297,-34.8702666381043,-34.8702620457359,-34.8702529485442,-34.8702438513525,-34.8702028460384,-34.8701663488826,-34.8701662905191,-34.870161729,-34.8701571691483,-34.8701571191225,-34.8701525634397,-34.8701479627337,-34.8701433653627,-34.8701388113474,-34.8701387621554,-34.8701342056388,-34.8701341539455,-34.8701295907588,-34.8701295340629,-34.8701249700424,-34.8701249091777,-34.870120342656,-34.8701202809575,-34.8701157144358,-34.8701156527372,-34.8701155927063,-34.870111024517,-34.8701109628185,-34.8701063946293,-34.8701018247725,-34.8700972557495,-34.8700926842251,-34.8701101432292,-34.8701190694994,-34.8701279966033,-34.8701324172165,-34.8701413451541,-34.8701457682686,-34.8701547003751,-34.8701591293259,-34.8701635616117,-34.8701679972326,-34.8701769426794,-34.8701813849704,-34.8701858289289,-34.870194783547,-34.8701992316744,-34.8702081896276,-34.8702171484145,-34.870230614526,-34.8702395749805,-34.8702530419257,-34.8702665063697,-34.8702754643229,-34.8702889270993,-34.8703023873744,-34.8703158434808,-34.8703247914288,-34.8703382416987,-34.8703471829766,-34.870356122587,-34.8703650588624,-34.8703694861456,-34.8703784182522,-34.8703828413666,-34.870382755489,-34.8703871769359,-34.870387091892,-34.8703825028587,-34.8703824203161,-34.8703778346178,-34.8703687457638,-34.8703641692369,-34.8703550878867,-34.8703460132067,-34.8703369418617,-34.8703278755193,-34.8703143060212,-34.8703052471826,-34.8702916851884,-34.8702781281967,-34.87026457454,-34.8702510242185,-34.8702374763982,-34.8702194237546,-34.8702058776019,-34.8701923356179,-34.8701742854757,-34.8701607443255,-34.8701472015078,-34.8701291505317,-34.8701156060465,-34.8700975525692,-34.8700840022476,-34.8700659429339,-34.870052386776,-34.8700388264493,-34.8700252619537,-34.8700116949569,-34.8699981229575,-34.8699890557813,-34.869975479613,-34.8699664074343,-34.8699528262635,-34.8699437499159,-34.8699346719008,-34.8699255955532,-34.8699210240289,-34.8699119476813,-34.8699073786583,-34.8699028138041,-34.8698982506174,-34.8698981972565,-34.8698981480645,-34.86989810054,-34.8699025203194,-34.8699159597505,-34.8699249327114,-34.8699339073398,-34.8699428811345,-34.8699518574305,-34.869965341051,-34.8699743198483,-34.8699878076376,-34.8699967922712,-34.8700102842294,-34.8700237828576,-34.8700327749951,-34.8700462769584,-34.870055275766,-34.8700687818981,-34.8700867853496,-34.8701047896349,-34.8701182840943,-34.8701317677148,-34.870140757351,-34.8701497069665,-34.8701586782599,-34.8701631372262,-34.8701675920236,-34.8701765508106,-34.870181002273,-34.8701899577249,-34.8701989140106,-34.8702078727975,-34.8702168349195,-34.8702303060336,-34.8702392748257,-34.8702527517761,-34.8702662312278,-34.8702813412669,-34.8702293270398,-34.8702422702343,-34.870383105264,-34.8704203284402,-34.8704458129462,-34.8704281446779,-34.8704718589735,-34.8705824441436,-34.8706806083255,-34.8707671538735,-34.8708369524443,-34.870900058322,-34.870907430383,-34.8708278973686,-34.8707184338891,-34.8708514107267,-34.8707854573552,-34.8706580507991,-34.8706354941661,-34.8706219621873,-34.8706084302085,-34.8705903809,-34.8705678259345,-34.8705497774598,-34.8705362371434,-34.870522700162,-34.8705091665157,-34.8704956337032,-34.870482110062,-34.8704685955922,-34.870455079455,-34.8704415608164,-34.8704235206793,-34.8704144843524,-34.8704054396878,-34.8703963891869,-34.8703873361847,-34.8703782806812,-34.870369224344,-34.8703556615159,-34.87034660768,-34.8703375738543,-34.8703285166833,-34.8703149455176,-34.870301360178,-34.8702923071758,-34.8702877581631,-34.8702787001583,-34.8702741486443,-34.8702695979641,-34.8702650489514,-34.8702514536066,-34.8702423864304,-34.870233337597,-34.8702197914443,-34.8702062853121,-34.8701973081824,-34.8701883327202,-34.8701838729201,-34.8701794214577,-34.8701794789874,-34.8701750341951,-34.8701796032181,-34.8701796699192,-34.8701842456124,-34.8701888288094,-34.8701934170089,-34.8701980060423,-34.8702025917406,-34.8702071716025,-34.8702117422931,-34.8702163071473,-34.8702163588406,-34.8702164297105,-34.8702119682429,-34.8702075076092,-34.8702075559674,-34.8702030995025,-34.8701986463725,-34.8701941932426,-34.8701897401127,-34.8701852844815,-34.8701763298633,-34.8701628295676,-34.8701537773991,-34.8701492267189,-34.8701446668672,-34.8701401036806,-34.8701355404939,-34.8701354671227,-34.8701309131074,-34.8701173744585,-34.8701038583212,-34.870094805319,-34.8700857364753,-34.8700766467876,-34.8700720952735,-34.8700675404245,-34.8700629814066,-34.8700584207212,-34.8700538592021,-34.8700492968492,-34.8700447336625,-34.8700401688083,-34.8700356047878,-34.8700310399336,-34.8700264734119,-34.8700173995656,-34.8700128322101,-34.8700082648546,-34.8700036958315,-34.8699991276423,-34.8699900554635,-34.8699854889418,-34.8699809257551,-34.8699718585789,-34.8699673012286,-34.8699582407225,-34.8699536900423,-34.8699400880274,-34.8699310350252,-34.8699219811892,-34.8699128873326,-34.8699083366524,-34.8699037851384,-34.8698992311231,-34.869894676274,-34.8698901222587,-34.8698855640747,-34.8698855148826,-34.8698809566985,-34.8698764010157,-34.8698718444991,-34.8698672871488,-34.8698627306322,-34.8698581757831,-34.8698536192666,-34.8698490652513,-34.8698445104022,-34.8698399563869,-34.8698354032054,-34.8698308500239,-34.8698262960086,-34.8698262484841,-34.869821693635,-34.8698216436092,-34.8698215944172,-34.8698215418901,-34.86982599502,-34.8698259416592,-34.8698303947891,-34.869834847919,-34.8698393010489,-34.8698437550126,-34.8698437033193,-34.8698481606181,-34.8698526195843,-34.8698570768831,-34.8698615341818,-34.8698659881455,-34.8698704396079,-34.8698748877353,-34.86987933086,-34.8698837681484,-34.8698927069251,-34.8698971358759,-34.8699060704836,-34.8699104977669,-34.8699194340422,-34.8699283719851,-34.8699328101073,-34.8699372515645,-34.8699416971906,-34.8699461494868,-34.8699551116088,-34.869959570575,-34.8699640320426,-34.8699684968452,-34.8699774264504,-34.8699908650477,-34.8699998380087,-34.8700088084683,-34.8700132716033,-34.8700222403954,-34.8700312058525,-34.8700356631512,-34.8700446252732,-34.8700535840602,-34.8700580355226,-34.8700669909745,-34.8700714382681,-34.8700803912187,-34.8700848368447,-34.870089281637,-34.8700937264293,-34.8700981703878,-34.8701026151801,-34.8701025559829,-34.8701070032765,-34.8701069482481,-34.8701114022118,-34.8701113530198,-34.8701112638071,-34.8701111887684,-34.8701066172441,-34.8701020548912,-34.8700929777098,-34.870083933879,-34.8700749008871,-34.8700568649189,-34.8700433462803,-34.8700298259742,-34.8700163014993,-34.8700027678529,-34.8699892275365,-34.8699756788825,-34.8699621235583,-34.8699485607303,-34.8699349962347,-34.8699214350742,-34.8699124029161,-34.869898850927,-34.8698898179351,-34.8698717836344,-34.8698627939982,-34.869858338367,-34.8698538752319,-34.8698584300809,-34.8698584784392,-34.8698585276313,-34.8698585759895,-34.8698541328648,-34.8698451690752,-34.8698316754496,-34.8698181576448,-34.8698046273335,-34.8697955960091,-34.8697820481889,-34.8697730018567,-34.8697639705324,-34.8697549141952,-34.8697458478527,-34.8697412788297,-34.8697367031366,-34.8697276167838,-34.8697230427582,-34.8697184762365,-34.8697093957201,-34.8696958604063,-34.8696869032869,-34.8696824526582,-34.8696689965519,-34.8696600394325,-34.8696510456275,-34.8696420476537,-34.8696285031684,-34.8696239399817,-34.8696148494602,-34.8696102604268,-34.869601167404,-34.8695965875421,-34.8695875045244,-34.869578424008,-34.8695648386683,-34.8695557940038,-34.8695467493392,-34.8695377046746,-34.8695286625114,-34.8695196203481,-34.8695105798524,-34.8695015426917,-34.8694879965389,-34.8694789585444,-34.8694699197162,-34.8694608792205,-34.8694518362234,-34.8694427898913,-34.8694291945465,-34.8694201365418,-34.8694155833602,-34.8694110301787,-34.8694064744959,-34.8694019196468,-34.8693973664653,-34.8693928157851,-34.8693837244298,-34.8693791554067,-34.8693746047265,-34.8693655683996,-34.869352053096,-34.8693430634599,-34.8693340846626,-34.8693250908576,-34.8693161178967,-34.8693026359437,-34.8692936396374,-34.8692846525025,-34.8692711463704,-34.8692576102228,-34.8692485613894,-34.8692395050521,-34.8692304545512,-34.8692214240606,-34.8692079079233,-34.8691943976224,-34.8691808756488,-34.8691673428362,-34.8691583065093,-34.8691492601772,-34.86914020384,-34.8691311383313,-34.8691220636513,-34.8691174904594,-34.8691084057742,-34.8691038300811,-34.8690947537335,-34.8690901972169,-34.8690811483836,-34.8690676038983,-34.8690540819247,-34.8690405691225,-34.8690270638241,-34.869013557692,-34.8690000415547,-34.8689865254174,-34.8689730076126,-34.8689595014805,-34.8689459936808,-34.868932493385,-34.8689189872529,-34.8689054711156,-34.8688919391369,-34.8688828986411,-34.8688693858389,-34.8688558763717,-34.8688423535643,-34.8688333214062,-34.8688242909156,-34.8688152545887,-34.8688017309475,-34.8687882289842,-34.8687792368467,-34.8687657407198,-34.8687522470941,-34.8687387576372,-34.8687297613309,-34.8687207650246,-34.8687072855729,-34.8686982934355,-34.8686893021318,-34.8686803124956,-34.8686668388802,-34.868657849244,-34.8686488587741,-34.8686398674704,-34.8686308753329,-34.8686218831954,-34.8686128910579,-34.8686038997542,-34.8685949076168,-34.8685859163131,-34.8685769258431,-34.8685679362069,-34.8685589482383,-34.8685454512775,-34.8685364608076,-34.8685229630131,-34.8685139675406,-34.8684914651021,-34.8684779548012,-34.8684644394977,-34.8684419112126,-34.8684283900727,-34.868405850115,-34.8683923264738,-34.8683742938406,-34.8683562628749,-34.8683427392337,-34.8683292172601,-34.8683156961203,-34.8683021741466,-34.8682886505055,-34.8682751218617,-34.8682615873816,-34.8682480470652,-34.8682345042475,-34.8682209597623,-34.8682119217678,-34.8682028645968,-34.8681938124284,-34.868189255078,-34.8681846885563,-34.8681801178657,-34.8681755471752,-34.8681709831547,-34.8681664057941,-34.8681573344491,-34.8681527787663,-34.8681482230835,-34.8681436674006,-34.8681481213643,-34.86815707765,-34.8681660539459,-34.8681750085641,-34.8681839840263,-34.8681929411457,-34.8682019174417,-34.8682108970727,-34.8682198641973,-34.8682288504984,-34.8682378301294,-34.8682468097604,-34.8682557827214,-34.8682647581836,-34.8682782184587,-34.8682871880846,-34.8682961610455,-34.8683050939858,-34.8683095579546,-34.8683140210897,-34.8683184808898,-34.8683229390223,-34.8683273954872,-34.8683273396251,-34.8683317885862,-34.8683317285553,-34.8683316668568,-34.8683316009895,-34.8683315359559,-34.8683314709224,-34.8683314042213,-34.8683268318632,-34.8683267668297,-34.8683221961391,-34.8683221336069,-34.8683175679189,-34.868317511223,-34.8683129505376,-34.8683083948548,-34.8683083073097,-34.8683037182763,-34.8683036298974,-34.8683035790378,-34.8683035223419,-34.8683034598097,-34.8683078954306,-34.8683078220594,-34.8683122510102,-34.8683121709689,-34.8683165990859,-34.8683165190446,-34.8683209504967,-34.8683208787931,-34.8683253169153,-34.8683252535493,-34.8683297008428,-34.8683296449807,-34.8683340997782,-34.8683340514199,-34.8683339647085,-34.8683383961606,-34.8683383294595,-34.8683337629378,-34.8683337045743,-34.8683291413877,-34.8683245773672,-34.868320012513,-34.8683199516483,-34.8683243956068,-34.8683288420666,-34.8683332885264,-34.8683422456458,-34.8683466987758,-34.8683511510719,-34.8683555983655,-34.8683600381552,-34.8683599664516,-34.8683598905791,-34.8683553140522,-34.8683507466967,-34.8683461885126,-34.8683371296741,-34.8683280766719,-34.8683190211684,-34.8683054600079,-34.8682964053382,-34.8682873715125,-34.8682783185103,-34.8682692680094,-34.868260215841,-34.8682511595037,-34.8682466063222,-34.8682420423017,-34.8682374732787,-34.8682374049101,-34.8682373340403,-34.8682417679936,-34.8682462036145,-34.8682506392354,-34.8682505717006,-34.8682505058333,-34.8682504449686,-34.8682458842832,-34.8682413302679,-34.8682322630917,-34.8682232192609,-34.8682096722744,-34.8682006317786,-34.8681870839583,-34.8681735336367,-34.8681599824814,-34.8681464288248,-34.8681373824927,-34.8681283328255,-34.8681192581455,-34.8681147057978,-34.8681101267695,-34.868105556079,-34.8681009987287,-34.8680919373888,-34.8680828860541,-34.8680783337064,-34.8680692690315,-34.8680647083461,-34.8680556403361,-34.8680510813183,-34.868046527303,-34.86804195828,-34.8680419099217,-34.8680418615634,-34.8680418032,-34.8680417498391,-34.8680416864731,-34.8680461404368,-34.8680460820734,-34.8680505276994,-34.8680504643334,-34.8680503976324,-34.8680458469521,-34.8680412962719,-34.8680322449372,-34.8680186896131,-34.8680051392915,-34.8679870916505,-34.8679735630068,-34.8679600460357,-34.8679510480619,-34.8679375527687,-34.8679285714702,-34.8679195985092,-34.8679106272158,-34.8679016542549,-34.8678926996368,-34.8678837183382,-34.8678747370397,-34.8678657557411,-34.8678567761101,-34.8678477814714,-34.867838810178,-34.8678298405521,-34.8678253799183,-34.8678209242871,-34.8678209793155,-34.8678255450034,-34.8678301206966,-34.8678347047273,-34.8678437994177,-34.8678483884511,-34.8678574814739,-34.8678620588345,-34.8678666295251,-34.8678666895561,-34.867866746252,-34.8678668012804,-34.8678668529737,-34.8678623940074,-34.8678534427243,-34.8678444630933,-34.8678354734571,-34.8678219664912,-34.8678084311774,-34.8677993715051,-34.8677948208248,-34.8677583422621,-34.8677493025695,-34.8676498791928,-34.8676363327074,-34.8676272828046,-34.8676137108247,-34.8676046311057,-34.8676000469103,-34.8675954512268,-34.8675908989303,-34.8675908507615,-34.8675908020107,-34.8675907521571,-34.8675907023734,-34.86759065206,-34.8675905989797,-34.8675905469325,-34.8675904955808,-34.8675949493383,-34.8675948962527,-34.8675948443237,-34.8675992980773,-34.8675992465996,-34.8676037036418,-34.8676036554565,-34.8676036072664,-34.8676035173501,-34.8675989298219,-34.8675943542352,-34.8675897883577,-34.8675852208471,-34.867576174663,-34.8675626508493,-34.8675491422728,-34.8675356174239,-34.8675221049785,-34.867513137356,-34.8675041723279,-34.8674951944862,-34.8674862149126,-34.8674727279231,-34.8674637332319,-34.8674547389947,-34.8674457459114,-34.867432248704,-34.8674232577612,-34.867409760505,-34.8673962638028,-34.8673827665944,-34.8673692682314,-34.8673557677275,-34.8673467714223,-34.8673377734341,-34.8673197709943,-34.8673017597831,-34.8672882528865,-34.8672747441874,-34.8672612339285,-34.8672432098587,-34.8672296795786,-34.8672206415993,-34.8672115867699,-34.8672025237452,-34.8671889566434,-34.8671799055641,-34.8671618510644,-34.8671483105702,-34.8671302647936,-34.8671122135362,-34.8670941612243,-34.8670761052336,-34.8670670752778,-34.867058045828,-34.8670399897844,-34.8670264443094,-34.8670129059502,-34.8669948699311,-34.8669813548926,-34.8669633420677,-34.8669498398865,-34.8669318293734,-34.8669183120225,-34.8669047818587,-34.8668912380184,-34.8668821885459,-34.8668731304151,-34.8668685732345,-34.8668640122584,-34.8668639574677,-34.8668594019667,-34.8668550802,-34.8668304472828,-34.8667779116534,-34.8666709851077,-34.8665630159458,-34.8665377376964,-34.8665121088339,-34.8665129042181,-34.866544525195,-34.8665856691252,-34.866599145657,-34.8666126259907,-34.8666261080131,-34.8666350875226,-34.8666485744552,-34.8666620635262,-34.8666755536382,-34.8666845363297,-34.8666980287455,-34.8667070131183,-34.8667205049144,-34.8667294897925,-34.8667384741642,-34.8667519344794,-34.8667609161297,-34.8667743743172,-34.8667878312816,-34.8667968145409,-34.8668057989578,-34.8668147839061,-34.8668282756222,-34.8668372621811,-34.8668507555789,-34.8668642506661,-34.8668822503289,-34.8669002511454,-34.8669182485479,-34.866936247752,-34.8669587515315,-34.8669812559623,-34.8670037597408,-34.8670262663593,-34.8670487712499,-34.8670712760653,-34.8670937842493,-34.8671162940521,-34.8671342986236,-34.8671523042333,-34.8671703121062,-34.8671883199751,-34.8672018198545,-34.8672198276782,-34.8672333280596,-34.8672513353543,-34.8672648358062,-34.8672783346423,-34.8672918345653,-34.8673053334009,-34.8673188305535,-34.8673323287407,-34.8673413202044,-34.8673548174272,-34.8673638083133,-34.8673772805208,-34.8673907456683,-34.867399728917,-34.8674086747358,-34.8674221203801,-34.8674310563419,-34.8674445052798,-34.8674534830317,-34.8674624658134,-34.8674714506689,-34.867480438827,-34.8674894280909,-34.867502925236,-34.8675119166926,-34.867520909717,-34.8675344097026,-34.8675434026557,-34.8675523957984,-34.8675658962416,-34.8675748859655,-34.8675883842628,-34.8675973739862,-34.8676063621373,-34.8676198555179,-34.8679856172633,-34.8684749522336,-34.8688492544772,-34.8689553712277,-34.868958962325,-34.8688145686055,-34.8681895795429,-34.8681867431362,-34.868195719292,-34.8682001718184,-34.8682001016833,-34.8682000207127,-34.8681999348205,-34.8681998445832,-34.8682042661739,-34.8682086908781,-34.8682131298304,-34.8682175822703,-34.8682265519908,-34.8682355308584,-34.8682624806066,-34.868384742495,-34.868577873824,-34.8689068545116,-34.8690706826079,-34.8691794129472,-34.8691918023068,-34.869119634432,-34.8691534462077,-34.8694573971758,-34.8694730250789,-34.8693727813315,-34.8690964572216,-34.8690448915548,-34.8687117797537,-34.8687207760527,-34.8687297619715,-34.8687387403496,-34.8687522189572,-34.868761185845,-34.8687746584902,-34.8687836281031,-34.8687926031733,-34.8688060921579,-34.8688150846144,-34.8688285898988,-34.8688421261859,-34.8688556511244,-34.8688646359266,-34.8688736164531,-34.8688780759157,-34.8688825240279,-34.8688869655671,-34.8688914022514,-34.8689003440856,-34.8689092881134,-34.8689182310518,-34.8689271728789,-34.868936150133,-34.8689450876091,-34.8689540283879,-34.8689584726407,-34.868967438995,-34.8689764074365,-34.8689808691471,-34.8689853275473,-34.8689852637968,-34.8689851974273,-34.8689851353631,-34.8689805800816,-34.8689805272886,-34.8689759692719,-34.8689669168851,-34.8689578612621,-34.8689623234941,-34.8689667818863,-34.8689757639349,-34.8689892534728,-34.8690027402399,-34.8690117359828,-34.8690296958013,-34.8690431531998,-34.8690475800203,-34.8690520410631,-34.8690519926746,-34.8690519375964,-34.8690518826318,-34.8690518205412,-34.8690472494538,-34.8690426766736,-34.8694132068676,-34.869885841205,-34.8703678198666,-34.8705270021464,-34.8705865456579,-34.8705701152599,-34.8706333081307,-34.8706668664084,-34.8708105624913,-34.870832454247,-34.8707089162306,-34.8705851632282,-34.8699802907027,-34.8695706154357,-34.8693688601024,-34.8691822639706,-34.8690859222243,-34.8690014427939,-34.868974257423,-34.8689651751161,-34.8689605952222,-34.8689515074399,-34.8689469232589,-34.8689378310476,-34.8689332468609,-34.8689241563356,-34.868919577003,-34.8689104930517,-34.8689059212672,-34.8689013572185,-34.8688967975185,-34.868892243219,-34.8688876519227,-34.8688875734373,-34.8688920017912,-34.8689009336705,-34.8689098656173,-34.868918798602,-34.8689277735199,-34.8689367152848,-34.8689456978665,-34.8689591595362,-34.8689726342706,-34.8689816288331,-34.8689951232192,-34.8690086311781,-34.8690221494981,-34.8690401840227,-34.8690582271838,-34.8690762774376,-34.8690943337389,-34.8691033637573,-34.8691123943526,-34.8691214265695,-34.8691304587863,-34.8691394910029,-34.8691485221783,-34.8691575527728,-34.8691756084947,-34.8691936516537,-34.8692071749092,-34.8692251979146,-34.8692477141122,-34.8692612205244,-34.8692702150879,-34.8692792086104,-34.8692881983545,-34.8693016910488,-34.8693106757893,-34.8693241336745,-34.8693331124363,-34.8693420923517,-34.8693555424959,-34.8693689910157,-34.8693779671071,-34.8693869050061,-34.8694003480479,-34.8694137905803,-34.8694272369316,-34.8694406914836,-34.8694496516924,-34.8694540974984,-34.8694585498209,-34.8694629917309,-34.8694719426805,-34.8694809301423,-34.8694899934818,-34.8694945488624,-34.8695035903781,-34.8695126608099,-34.8695217011704,-34.8695307426846,-34.8695443112342,-34.8695533450792,-34.8695668955913,-34.869584939871,-34.8695984500534,-34.8696074457678,-34.8696164288763,-34.8696253951342,-34.8696298348897,-34.8696342986603,-34.8696387552677,-34.8696386991229,-34.8696386374364,-34.8696430799181,-34.8696430112022,-34.8696474482096,-34.8696473761769,-34.8696473047188,-34.8696517412091,-34.869651670792,-34.8696561099464,-34.8696560422605,-34.8696604836814,-34.8696604187272,-34.8696603565483,-34.8696602953724,-34.8696557290879,-34.8696556712256,-34.8696511076034,-34.8696510513576,-34.8696464915893,-34.869641931816,-34.8696373736685,-34.869628309791,-34.8696237538006,-34.8696191983825,-34.8696146445904,-34.8696100913336,-34.8696055402727,-34.8696009892145,-34.8695964391983,-34.869591851088,-34.8695917773101,-34.8695917172608,-34.8696052045101,-34.8696142569378,-34.8696233219414,-34.8696323962426,-34.8696459795477,-34.8696595639643,-34.8696686098627,-34.8696776563006,-34.8696867016915,-34.8696957464343,-34.8697047901338,-34.8697138305859,-34.8697228699245,-34.8697319065222,-34.869745460372,-34.86975899451,-34.8697679907496,-34.8697724391747,-34.8697723813,-34.8697678051613,-34.8697632191449,-34.8697541219229,-34.8697450241575,-34.8697359275097,-34.8697313387399,-34.8697267565999,-34.8697221770875,-34.8697176030924,-34.8697175392482,-34.869721982133,-34.8697264261702,-34.8697353732258,-34.869744319735,-34.8697532990186,-34.8697622422799,-34.8697712182426,-34.8697801948561,-34.8697936410944,-34.8698026170546,-34.8698115936618,-34.8698205696244,-34.8698340163971,-34.8698474669898,-34.8698609153822,-34.8698698542619,-34.8698787887009,-34.8698832119385,-34.8698876341215,-34.8698920551865,-34.8698965188836,-34.869900943731,-34.8699053724335,-34.8699098109503,-34.8699187689622,-34.8699277372181,-34.8699367154319,-34.8699456957413,-34.8699546722582,-34.8699591326284,-34.8699635854172,-34.8699680315696,-34.8699769801891,-34.8699904329081,-34.8699994127407,-34.8700083897931,-34.8700218404109,-34.8700308163426,-34.870044263639,-34.8700486972529,-34.8700531345833,-34.8700485638268,-34.8700440023442,-34.8700349454268,-34.8700259050023,-34.8700123800464,-34.8700034106529,-34.8699989540931,-34.8699945095837,-34.8699945768195,-34.8699946446301,-34.8699947080761,-34.8699902771998,-34.8699813077974,-34.8699678107351,-34.8699542967501,-34.869940789907,-34.869927280865,-34.8699182857713,-34.8699093152477,-34.8699048691025,-34.8699004081591,-34.8698959477918,-34.8698914862731,-34.8698825130749,-34.8698735435938,-34.8698600394922,-34.8698465047592,-34.8698419509075,-34.8698373948561,-34.8698373374839,-34.8698372784886,-34.8698327159005,-34.8698326645188,-34.8698281100829,-34.8698280433978,-34.869832507583,-34.8698369516279,-34.8698459062318,-34.8698548663161,-34.8698638472584,-34.8698728144522,-34.8698817860156,-34.8698862387858,-34.8698861802786,-34.869877140325,-34.8698681036894,-34.8698545929539,-34.8698456017607,-34.8698366164509,-34.869827639949,-34.8698186689676,-34.8698096984532,-34.8698007486917,-34.8697917973414,-34.8697828230379,-34.8697783730026,-34.8697694101707,-34.8697604178188,-34.8697468939785,-34.8697378534879,-34.8697287982722,-34.8697197343227,-34.8697151760913,-34.869710616233,-34.8697105648412,-34.8697105139866,-34.8697149721757,-34.8697194297829,-34.8697193811277,-34.8697238365684,-34.8697237545898,-34.8697191897092,-34.8697146260481,-34.8697100661798,-34.8697010021394,-34.8696964483332,-34.869687382668,-34.869682816726,-34.8696737341618,-34.8696691474573,-34.869664595739,-34.8696600419212,-34.8696599926707,-34.8696554344113,-34.869650872831,-34.8696463079964,-34.8696372385252,-34.8696326742682,-34.8696281122098,-34.8696235511615,-34.8696189934735,-34.8696053837464,-34.8695962956653,-34.8695872163219,-34.8695781703521,-34.8695690926289,-34.8695554988173,-34.8695418994453,-34.8695328436098,-34.8695237872301,-34.8695192361353,-34.869510176429,-34.8695056230613,-34.8694965640006,-34.8694920111375,-34.8694829498742,-34.8694783959552,-34.8694693362466,-34.8694647845669,-34.86946023397,-34.8694556832646,-34.8694420795661,-34.8694329914438,-34.8694239120672,-34.869414843605,-34.8694057691411,-34.8693967269821,-34.8693832169049,-34.8693742480772,-34.8693697872752,-34.8693698430358,-34.8693699049393,-34.8693699678876,-34.8693745371292,-34.8693790970521,-34.8693836492767,-34.8693927166798,-34.869401764831,-34.8694108042349,-34.869419854079,-34.8694289246287,-34.8694379881283,-34.8694470615268,-34.8694516350918,-34.8694607210221,-34.8694653039048,-34.8694698873581,-34.8694744697287,-34.8694790509764,-34.8694791220964,-34.8694836979195,-34.8694882693001,-34.869492836309,-34.8694973972497,-34.8695019560936,-34.8695020206248,-34.869493053457,-34.8694840589534,-34.8694705225796,-34.8694614809155,-34.8694524272972,-34.8694433633126,-34.8694342910906,-34.869425217244,-34.8694206486077,-34.8694115790571,-34.8694070208547,-34.8694024658003,-34.8693979152195,-34.8693933651772,-34.869384311549,-34.869379748323,-34.8693706859518,-34.8693616486494,-34.8693481161713,-34.8693391358317,-34.8693346919184,-34.8693302370923,-34.8693302901536,-34.8693258543985,-34.8693214088149,-34.8693124487711,-34.8692989381107,-34.8692943869553,-34.8692853168958,-34.8692807641114,-34.8692762112556,-34.8692716584692,-34.8692625879318,-34.8692535495837,-34.869244514556,-34.8692309967791,-34.8692220000063,-34.8692130196693,-34.8692085632161,-34.8692041001546,-34.86919513791,-34.8691906873799,-34.869181732823,-34.869172778194,-34.8691638142506,-34.869154822488,-34.8691413336788,-34.86912783501,-34.8691143303447,-34.8690963221603,-34.8690828218643,-34.8690693128254,-34.8690557830228,-34.8690467430535,-34.8690377036609,-34.8690286598984,-34.8690196133887,-34.8690105663014,-34.8690015099307,-34.8689924715858,-34.8689834355111,-34.8689743840517,-34.8689653244285,-34.8689562647338,-34.8689472144263,-34.8689336763534,-34.8689246883903,-34.8689157283456,-34.868911267452,-34.8689068126209,-34.8689023577181,-34.8688979023075,-34.868893444726,-34.8688890024216,-34.8688800346784,-34.8688665333358,-34.8688574797115,-34.868852922493,-34.8688438524376,-34.8688392969138,-34.8688302564695,-34.8688212887297,-34.8688168322014,-34.868816881458,-34.8688214418916,-34.8688215026347,-34.8688260702153,-34.8688306360973,-34.868830694051,-34.8688307498415,-34.8688262993647,-34.8688173348621,-34.8688083616917,-34.86879936823,-34.8687858635603,-34.8687723348086,-34.8687632812667,-34.8687587262237,-34.8687586660702,-34.8687586004263,-34.8687585287847,-34.8687584779033,-34.8687584259044,-34.8687583718053,-34.8687583154344,-34.8687537511694,-34.8687536910028,-34.8687536297144,-34.8687535662203,-34.8687535054677,-34.8687534474605,-34.8687533977235,-34.8687578339478,-34.8687622932138,-34.8687622411984,-34.868766693921,-34.8687666337382,-34.8687665702289,-34.8687665045509,-34.8687664394106,-34.8687663803376,-34.8687618061167,-34.8687527700326,-34.8687392445622,-34.8687302533187,-34.8687212735325,-34.8687168149204,-34.868716876164,-34.8687169254389,-34.8687169757666,-34.8687170272097,-34.8687170808559,-34.8687171339236,-34.8687171881104,-34.8687172472435,-34.8687128049522,-34.8687083976954,-34.8687084606154,-34.8687040095069,-34.8686950626421,-34.868681554653,-34.8686769947576,-34.8686724424809,-34.8686678896966,-34.8686633210572,-34.8686542498728,-34.8686407276574,-34.8686317375241,-34.8686272826957,-34.8686183308167,-34.8686138825217,-34.8686094232488,-34.8686004631988,-34.8685869486735,-34.8685778989124,-34.8685733406437,-34.8685687774228,-34.8685687259908,-34.868564172628,-34.8685596127273,-34.868555060446,-34.8685415301332,-34.8685325421,-34.8685280823253,-34.8685191134697,-34.8685146570171,-34.8685057007631,-34.868496747761,-34.8684877915743,-34.8684788304066,-34.8684698582947,-34.8684608757421,-34.8684518839814,-34.8684383771486,-34.8684248505599,-34.8684113289177,-34.8684023447451,-34.8683933639224,-34.8683843759529,-34.8683799134233,-34.8683709506223,-34.868371004714,-34.8683710665669,-34.8683711310938,-34.8683756811882,-34.8683712350066,-34.8683712945792,-34.8683622984445,-34.8683532590577,-34.8683442169247,-34.8683351545746,-34.8683261124405,-34.868317058249,-34.8683080046339,-34.8682989608755,-34.868294407526,-34.8682853457475,-34.8682763150948,-34.8682627956217,-34.8682538125968,-34.8682448387817,-34.868244893519,-34.8682449552994,-34.8682450089178,-34.8682405529149,-34.8682270373381,-34.868213499848,-34.8681999640508,-34.8681864560569,-34.8681774659173,-34.8681730115392,-34.8681685517769,-34.8681640962731,-34.8681596457875,-34.8681551969265,-34.8681507496516,-34.8681463034944,-34.8681373543561,-34.8681329137133,-34.8681284746982,-34.8681240371976,-34.8681196031187,-34.868115166261,-34.8681107239152,-34.8681062728341,-34.8680973033635,-34.8680883405317,-34.8680793558628,-34.8680703695012,-34.8680613831355,-34.8680523983987,-34.8680434126095,-34.8680344229991,-34.8680254399535,-34.8680119347319,-34.8680028898346,-34.8679938318772,-34.8679892626454,-34.8679891960612,-34.8679891326168,-34.8679890779078,-34.8679890243128,-34.8679889641854,-34.8679888975212,-34.867993356825,-34.8679933081725,-34.8679932364496,-34.867988687592,-34.8679886339169,-34.8679840801125,-34.8679750488878,-34.8679615365234,-34.8679480363221,-34.8679390433269,-34.867930064191,-34.867921081046,-34.8679166305513,-34.8679121844225,-34.8679122412362,-34.8679077956811,-34.8679078639668,-34.8679034085203,-34.8678989563202,-34.8678945058148,-34.8678945621478,-34.8678901083216,-34.867885656116,-34.8678812072972,-34.8678767583043,-34.8678723160509,-34.8678678735838,-34.8678589272272,-34.8678499790669,-34.8678410314853,-34.8678320834269,-34.8678231336391,-34.8678096754201,-34.8677962166929,-34.8677872319424,-34.8677737682002,-34.8677647818236,-34.8677513132438,-34.867737842971,-34.8677243743182,-34.8677154179865,-34.8677064720768,-34.8676975359406,-34.8676931165576,-34.8676886594142,-34.8676887080294,-34.8676842535865,-34.8676843072105,-34.8676798565874,-34.8676799134177,-34.8676799735315,-34.8676755261869,-34.8676755862575,-34.8676756457492,-34.8676757075111,-34.8676757693078,-34.8676803350608,-34.8676803951228,-34.8676804552197,-34.8676850194507,-34.8676850739954,-34.8676851275248,-34.8676851810566,-34.8676897364881,-34.8676897850789,-34.8676898784692,-34.8676899734792,-34.8676900220609,-34.8676900716917,-34.8676901269032,-34.8676901820056,-34.8676902404614,-34.8676902988042,-34.8676903588432,-34.8676904205708,-34.8676904822224,-34.8676860365298,-34.8676860981815,-34.8676861598314,-34.867681714171,-34.8676817741942,-34.8676773269072,-34.8676773836139,-34.867672933007,-34.8676729865059,-34.8676730382723,-34.8676685821896,-34.8676686324388,-34.867668680997,-34.8676642237566,-34.8676642750859,-34.8676598195366,-34.8676553672279,-34.8676554239862,-34.8676509766096,-34.8676465275746,-34.8676420818843,-34.8676331276253,-34.8676286786198,-34.8676242296127,-34.8676197772922,-34.8676153201068,-34.8676108623851,-34.8676064019203,-34.8675572247332,-34.8675702708577,-34.8675791094547,-34.8675582268872,-34.8675455336608,-34.8675146932108,-34.8674967573329,-34.8674724545079,-34.8674356571104,-34.8674131759321,-34.867389158428,-34.86734599084,-34.8673013527381,-34.8672215833004,-34.8671945861499,-34.8671911714426,-34.8672067243009,-34.8672382651981,-34.8672489557367,-34.8672289537492,-34.8671762315305,-34.8671365062584,-34.8671054802356,-34.8670523513336,-34.8670059992016,-34.8669513193439,-34.8669383439122,-34.8669044783725,-34.8668601303946,-34.8667448176774,-34.8666920704466,-34.8666650301161,-34.8666490463175,-34.8666293883002,-34.8666109654555,-34.8665520846671,-34.8665509106992,-34.8665329799075,-34.8665147954074,-34.8664957907036,-34.8664806049605,-34.8664234972127,-34.8663695423528,-34.8663513681375,-34.8663328151265,-34.8663171972322,-34.8660904903129,-34.8659885077609,-34.865783353634,-34.8657053985433,-34.8655946663552,-34.8654254537032,-34.8653557527836,-34.8652277401529,-34.8651609442952,-34.8651108251865,-34.8650217458631,-34.8649272853594,-34.8648504391163,-34.8647658302918,-34.8645897694858,-34.8644908384977,-34.8644319350275,-34.8643651104144,-34.8642479149244,-34.8640916424806,-34.8639185782182,-34.8637679421401,-34.8636789181266,-34.8635897839309,-34.8634562980625,-34.863396045593,-34.8633464783443,-34.8632438038694,-34.863143733834,-34.8631077518658,-34.8629725003516,-34.8628642028661,-34.8627423516492,-34.8626746838036,-34.8625819407366,-34.8625258268812,-34.8624762581272,-34.8624537597499,-34.8623996498019,-34.8623365093489,-34.8622553105898,-34.8621922032812,-34.8621381652117,-34.8620570902262,-34.8619895017334,-34.8619217822034,-34.8617998873589,-34.8617457329526,-34.8616735690228,-34.8616194558044,-34.861520261681,-34.8614661670579,-34.8614154856049,-34.861394099808,-34.8613220375903,-34.8612769408592,-34.8612408691592,-34.8612183392735,-34.8611822970762,-34.8610878484083,-34.8610114560246,-34.860993463334,-34.8609529723753,-34.860858420396,-34.8608224514516,-34.8608044910204,-34.8607884556089,-34.8606651324773,-34.8606201992797,-34.8605059967079,-34.8604003923025,-34.8602672236767,-34.8601204346042,-34.859983075519,-34.8598593814306,-34.8597721699795,-34.8596020541399,-34.8594869527481,-34.8593720819584,-34.8593075000885,-34.8592248760829,-34.8591469292804,-34.8590957114012,-34.8589902132766,-34.858958118243,-34.8588912474363,-34.8588158703468,-34.8587573146712,-34.8586824695774,-34.858613532326,-34.8585723947678,-34.8584944260328,-34.8583704989131,-34.8582669737108,-34.8581750527638,-34.8580773023254,-34.8579991872131,-34.8579676228625,-34.8579089472573,-34.857872755354,-34.8578366249405,-34.8578185589339,-34.8577374339535,-34.8576923774709,-34.8576473126884,-34.8575843267237,-34.8575568559575,-34.8575351213253,-34.8574881052125,-34.8574135717993,-34.8573955945403,-34.8573915803854,-34.8573507962631,-34.8573014156983,-34.8572609867017,-34.8572205909013,-34.8571755908996,-34.8571193616908,-34.8570720192815,-34.8569683791073,-34.8569368425787,-34.8568828381366,-34.8568245181338,-34.8567701418004,-34.8567113016368,-34.8566666984265,-34.8566487292001,-34.8565813145364,-34.8565588194447,-34.8564867707183,-34.8564642255259,-34.8564235127555,-34.8563601754426,-34.8563420676271,-34.8563239650756,-34.8562832088006,-34.8562560731327,-34.8561660366547,-34.8561119942046,-34.856048716585,-34.8559899409204,-34.855922116248,-34.855908545614,-34.8558318644116,-34.8557867747425,-34.8557461934512,-34.8557056192031,-34.855633682603,-34.8555618188957,-34.8554719020898,-34.8554404411143,-34.8553999653204,-34.8553595010106,-34.855337024402,-34.8553100539704,-34.8551931802169,-34.8550943306339,-34.8550628479495,-34.8550269442525,-34.8550089836123,-34.8549910192764,-34.8549730517514,-34.8549326274401,-34.8548743573471,-34.8548518741609,-34.8547901754619,-34.8546495129278,-34.8546270530388,-34.8545955920733,-34.854538317293,-34.854514663726,-34.8544831792573,-34.8544606971317,-34.8544382292009,-34.8544022758763,-34.8543663002794,-34.8543169263901,-34.854298978764,-34.8542810215409,-34.8542451680514,-34.8542047605914,-34.8541058329544,-34.8540743598351,-34.8539844003482,-34.853948448063,-34.8539214974603,-34.8538900478481,-34.8538226300376,-34.8538046741481,-34.8537823494009,-34.8537282178118,-34.8536607229046,-34.853568018815,-34.8535438897868,-34.8535123200929,-34.8534944538822,-34.8534780087724,-34.8534185217012,-34.8534097802297,-34.8534012696373,-34.8533609854766,-34.8533208010401,-34.8532984427608,-34.8532942972875,-34.8532898819728,-34.8532854731943,-34.8532361908876,-34.8532228009251,-34.8531959200562,-34.8531421290372,-34.8531241795739,-34.8530793033295,-34.8530658565033,-34.8530434315498,-34.8530254853562,-34.8530120286506,-34.8529895738715,-34.8529671490696,-34.8529402480991,-34.8529178502215,-34.8528864770328,-34.8528371684286,-34.8528147434862,-34.85279233841,-34.8527609327071,-34.8527384845085,-34.8527160124937,-34.8526710526169,-34.8526216070947,-34.8525991587594,-34.8525677093427,-34.8525497332668,-34.8525137751381,-34.8524733173077,-34.8524239355792,-34.8523925022037,-34.8523655185381,-34.8522716399274,-34.8521853925408,-34.8521810500353,-34.8521766413818,-34.8521722788769,-34.8521679035133,-34.8521680368819,-34.852163714424,-34.8521548167981,-34.8521415865394,-34.8521283359728,-34.8521239874782,-34.8521106969756,-34.8520974102373,-34.8520885791933,-34.852079687582,-34.8520708099516,-34.8520217846554,-34.8519905919026,-34.8518931016941,-34.8517604098621,-34.8510196913381,-34.8508197511918,-34.8506818426511,-34.8505285268009,-34.8495288221531,-34.8494970161025,-34.848420134042,-34.8474746359723,-34.8457199576485,-34.8454654902474,-34.8434206387689,-34.8433524569391,-34.83432629204,-34.8330053504779,-34.8298377704057]}]],[[{&#34;lng&#34;:[-56.2557900853087,-56.2559504770825,-56.2560651880033,-56.2564297460446,-56.2567545337139,-56.2570296674057,-56.2571414984131,-56.2574045340673,-56.2575188071968,-56.2578686500683,-56.2581503086332,-56.2585130624811,-56.2588281946112,-56.259238682322,-56.2593409627728,-56.2598468389914,-56.2604617925674,-56.2615279581489,-56.2617481364544,-56.2620931308182,-56.2622408961686,-56.262519205574,-56.2626110795582,-56.2626868512282,-56.2629211287977,-56.263832315014,-56.2641892284863,-56.2645993581202,-56.265301893393,-56.2663385266008,-56.2665042003314,-56.2670820572822,-56.2670828787707,-56.2680638780304,-56.2682362602198,-56.2683961560614,-56.268534953971,-56.2688079651153,-56.2691327717003,-56.2693094631937,-56.2695373983192,-56.2696099357731,-56.2696997620726,-56.2698324629532,-56.2699878784084,-56.2703186323076,-56.2706453104601,-56.2707914729084,-56.2710802173262,-56.2714568515104,-56.2716481669088,-56.2718626740872,-56.2723076745701,-56.2726187203774,-56.2727474639901,-56.2742034760941,-56.2760540473589,-56.2762312436901,-56.2767037582764,-56.2777602787124,-56.2788351599156,-56.280469961421,-56.2807216636504,-56.2807321208345,-56.2808868529889,-56.2814774955979,-56.2817075530625,-56.2820934944316,-56.2821187745512,-56.2823666564034,-56.2825936703958,-56.2830934688189,-56.283855867529,-56.2842130198895,-56.285728247998,-56.2857586903646,-56.2857776134571,-56.2861714165514,-56.286579186849,-56.2868487125169,-56.286966213115,-56.2869701951686,-56.2873522522052,-56.2877276191249,-56.2884739707042,-56.2885634768648,-56.2896050736959,-56.2897876790965,-56.2903334817669,-56.2903596921627,-56.2903980872565,-56.2903298521415,-56.2902511314466,-56.2902139555942,-56.2902089053901,-56.2900978009922,-56.2899237115777,-56.2897606970584,-56.2904158236594,-56.2903312005925,-56.2902345413721,-56.2901979867119,-56.2901166287583,-56.2899642726243,-56.2897790897681,-56.2896299979563,-56.2891890061329,-56.2880816483735,-56.2861374657087,-56.2854424939607,-56.2848030241698,-56.28411107398,-56.2821665177893,-56.2799772087066,-56.2784375180326,-56.2769256026869,-56.2759452166281,-56.2749366532648,-56.2736654885798,-56.2725019535262,-56.272395018377,-56.2721959023544,-56.2718424560537,-56.271598320833,-56.2715698127974,-56.2715470010328,-56.2715339247018,-56.2707437867946,-56.2705026733721,-56.2703027726857,-56.2698350249174,-56.2682054510433,-56.2682051775689,-56.2664713867866,-56.2664037460524,-56.2657879275855,-56.2652074715144,-56.2652302699396,-56.2652691153674,-56.2652906043621,-56.2653366952145,-56.265356757886,-56.265458967945,-56.2655667301874,-56.2656075045491,-56.2656693897982,-56.2657314884908,-56.2657322021922,-56.2657343833171,-56.2657495111189,-56.2657516122024,-56.265753146327,-56.2656507468503,-56.2656348319759,-56.2657608636403,-56.2656978044524,-56.2658080479745,-56.2658585406815,-56.265912315081,-56.2658431327353,-56.2658465745103,-56.2658129038121,-56.2658017047031,-56.265844933664,-56.2659800833642,-56.2660780739004,-56.2661270658335,-56.2661297472163,-56.2660987779114,-56.2660366325281,-56.2659640484279,-56.2657066690241,-56.2656843708577,-56.2654787648214,-56.2648616265474,-56.2641567763715,-56.2634824552735,-56.2631118641502,-56.2620166526549,-56.2619671137731,-56.262189214983,-56.2619986300268,-56.2617348073,-56.2612204887195,-56.260852705711,-56.2609129100933,-56.2613262832804,-56.2608404060344,-56.2606644953128,-56.2604143729849,-56.2599574306614,-56.2595149357888,-56.2591459855117,-56.25905891394,-56.2591729260723,-56.2590319200186,-56.2589306477899,-56.2587398026995,-56.2587558909967,-56.2586558927584,-56.2586130573337,-56.2584824099555,-56.2583400765505,-56.2581489112951,-56.2582446406651,-56.2583785497255,-56.2583788899009,-56.258317705013,-56.2581540139266,-56.2580518412335,-56.2580629136105,-56.2580123742127,-56.2578692604053,-56.2579520831191,-56.2579733807695,-56.2579432919185,-56.2579237751866,-56.2578625436079,-56.257770642879,-56.2577613047298,-56.2577002865945,-56.257649707176,-56.2575578464678,-56.2575173189,-56.2574280390006,-56.2574150594956,-56.2572183513815,-56.257029247189,-56.2565592247864,-56.2562171550389,-56.2561251742688,-56.2560682248985,-56.2561023291536,-56.2561361465941,-56.2561905346434,-56.2562493316332,-56.2562747914302,-56.2562642459916,-56.2561857254966,-56.2560345675405,-56.2558845168222,-56.2558384864165,-56.2557783887559,-56.2558403140257,-56.2557230202009,-56.2555811403632,-56.2555303404829,-56.2553996467623,-56.2552356288407,-56.2551540867874,-56.255069409784,-56.2550063505961,-56.2549668702351,-56.2548920593249,-56.2547276401913,-56.254601361733,-56.2545602872164,-56.2545297181179,-56.2544865091672,-56.2544573074405,-56.2544442540418,-56.254426371486,-56.2544095161266,-56.2543930276231,-56.2543724836947,-56.2543109319509,-56.2542927759207,-56.254263887689,-56.2542067382155,-56.2541740747034,-56.254148268061,-56.2541197200047,-56.2540789256326,-56.2540255447694,-56.2540033733351,-56.2539835831287,-56.2539631192416,-56.2539419616635,-56.2539255598713,-56.2538992463007,-56.253885939438,-56.2538606797443,-56.2538323851521,-56.2538102137177,-56.2537876887677,-56.253766497839,-56.2537552453691,-56.2537210944233,-56.2536876104881,-56.2536725960781,-56.25365894904,-56.253634803254,-56.2536205158857,-56.2536099437667,-56.2535891663846,-56.2535728112832,-56.2535414217615,-56.2535045560822,-56.2534874739392,-56.2534451254323,-56.2534164439739,-56.2533826332035,-56.2533362092615,-56.2533146781573,-56.2532829017694,-56.253246336245,-56.253149613029,-56.2529594482895,-56.2527299832819,-56.2526959190474,-56.2526730472518,-56.2526475541044,-56.2526305386624,-56.2526182990168,-56.2525856088243,-56.2525727155082,-56.2525553932413,-56.2525428200904,-56.2525268251747,-56.252508075505,-56.2524855905756,-56.25246959566,-56.2524460635239,-56.252427994205,-56.2524075636685,-56.2523860792551,-56.2523503074733,-56.2523332720211,-56.2523053376146,-56.2522927644636,-56.2522774699092,-56.2522471942952,-56.2522257365623,-56.2522001967241,-56.2521692074087,-56.2521556070614,-56.2521293868723,-56.2521174940722,-56.2520987644128,-56.252083136353,-56.252066114241,-56.2520330571926,-56.2520085445508,-56.2519867399723,-56.2519652822393,-56.2519513350464,-56.2519357069866,-56.2519169773272,-56.2518955195943,-56.2518784774719,-56.2518607549986,-56.2518423455044,-56.2518198338945,-56.2517884443728,-56.251757048181,-56.2517225837402,-56.2516522341257,-56.2516286352885,-56.2516060836581,-56.2515828249963,-56.2515534098262,-56.2515157570744,-56.2514829067993,-56.2514555526921,-56.2514377368373,-56.2514161390321,-56.2514000173844,-56.2513852297581,-56.2513783128575,-56.251359449796,-56.2513378786712,-56.2513084034701,-56.2512919082965,-56.2512699503055,-56.2512541421528,-56.2512366531333,-56.2512078582831,-56.2511848997761,-56.2511617478361,-56.2511421177123,-56.2511202064121,-56.2510863289406,-56.2510214021229,-56.2509657801038,-56.2509564753051,-56.2509529201383,-56.2509267733204,-56.2508948101695,-56.2508665155772,-56.2508565971287,-56.2508653883292,-56.2508245672768,-56.2507619616561,-56.250750442382,-56.2507006100155,-56.2506758705901,-56.2506455749658,-56.2506297601431,-56.2504176440827,-56.2502226635263,-56.2500687841667,-56.2498065956161,-56.2496801103844,-56.249562089518,-56.2494162076163,-56.2493788683595,-56.2493368200074,-56.2492547510157,-56.249180632791,-56.249159421852,-56.2490986505106,-56.2490644128534,-56.2489928492796,-56.2489692571125,-56.2489401154167,-56.2488952389394,-56.2488400438072,-56.2488457534185,-56.2488325132569,-56.2488406641271,-56.248819506549,-56.2488249960467,-56.248809187894,-56.2487995896106,-56.2487647116232,-56.2487649117264,-56.2486886724078,-56.2485834047852,-56.2485438777335,-56.2484712269323,-56.2483888978064,-56.2483294004554,-56.2482633130391,-56.248240474594,-56.2482415017905,-56.2482320969401,-56.2482988046764,-56.248378739234,-56.2484418851333,-56.248498300895,-56.2485953642864,-56.2487031598793,-56.2488489017088,-56.2489543294139,-56.248992689197,-56.2490457965859,-56.2490541475593,-56.249102239028,-56.2491303601975,-56.2491568872115,-56.2491818467504,-56.2492399500491,-56.2492747213149,-56.2492930174173,-56.2493277286521,-56.2493675425185,-56.249399232195,-56.2494391194325,-56.2494951816786,-56.2495818997346,-56.2496379353003,-56.2496240214579,-56.2496140363083,-56.2495468950151,-56.249457982494,-56.2493623398353,-56.2493516943452,-56.2493273217756,-56.2493009748545,-56.2492020505033,-56.2491317475797,-56.2490932210439,-56.2490835093686,-56.2490593969332,-56.24898912069,-56.2489104267722,-56.2488381628372,-56.2487732493596,-56.2487277325521,-56.2486914271618,-56.2486117260579,-56.248602661383,-56.2485504277782,-56.2484547050782,-56.248350084456,-56.2482723243531,-56.2481934436723,-56.2481332059395,-56.2481007958915,-56.2480123369376,-56.2479347569276,-56.2478230726625,-56.2477920900173,-56.2473297915982,-56.2471857506459,-56.2469251896012,-56.2467646668155,-56.2465986345218,-56.2465048594929,-56.2464387120457,-56.2464226037382,-56.2464257053378,-56.2464358505699,-56.2465468077934,-56.246674913861,-56.2467919342114,-56.2468479230863,-56.2469926510595,-56.2471155870905,-56.2472933461357,-56.2473338937137,-56.2473678045358,-56.2474907679511,-56.2475802674416,-56.2476918049644,-56.2477758282974,-56.247824920282,-56.2479331961227,-56.2479003591878,-56.2479062155414,-56.2478346719779,-56.2476686196738,-56.2476040863924,-56.2475235181746,-56.2474410889971,-56.2473589066135,-56.2472910983097,-56.2472188610551,-56.2471353112997,-56.2469741348436,-56.2468352565538,-56.2465911706725,-56.2465225486157,-56.2464195221489,-56.2462643154382,-56.2462201126417,-56.2460559813283,-56.2459264278476,-56.2458265430011,-56.2456864307416,-56.2454878349874,-56.2454269902748,-56.2454131964944,-56.245395340619,-56.2453550865256,-56.2452901196872,-56.245176801246,-56.2449078291969,-56.2447713254651,-56.2447077460088,-56.2446505431745,-56.2445235843653,-56.2443742340082,-56.2442947796982,-56.2441138797368,-56.2438660986164,-56.2437685149567,-56.2436585515791,-56.2435659371488,-56.2434034800322,-56.2432728459942,-56.2431963298662,-56.2431720540132,-56.2431672148508,-56.2432214228073,-56.2432946372325,-56.2434089695299,-56.2435494886659,-56.2436043102721,-56.2436364801963,-56.2436216191988,-56.2434749435544,-56.2434067083638,-56.2434001849995,-56.243394835574,-56.2433724773766,-56.2433624121858,-56.2433415747727,-56.2433307158392,-56.2433859043012,-56.2435990208776,-56.2436603058171,-56.2438101831127,-56.243874329528,-56.243890851382,-56.2439353876839,-56.2440008080895,-56.2440886000328,-56.2441299546937,-56.2441626248759,-56.2441899950329,-56.2441912663137,-56.2442914179645,-56.2443192467367,-56.2443823315176,-56.2444775339493,-56.2445249050464,-56.2446372629923,-56.2446940596159,-56.2448765205337,-56.2449561158339,-56.2449812819468,-56.2450153288161,-56.2450348215905,-56.2450390902249,-56.2450895429113,-56.2450936516969,-56.2451105070564,-56.2451242608162,-56.2451441710844,-56.2451733528008,-56.245206336478,-56.245207837252,-56.2452334304511,-56.2452554151225,-56.2452617183732,-56.2452625588067,-56.245260637816,-56.2452577563299,-56.2452540277403,-56.2453175204851,-56.2453610962916,-56.2453792990126,-56.2454184125177,-56.2455137083309,-56.2455548095278,-56.2456003530158,-56.2456342504976,-56.2456606107589,-56.2456702223825,-56.2456825687499,-56.2457164528915,-56.2457540923031,-56.2457990154711,-56.24585525781,-56.2458922368811,-56.2462985731057,-56.2463499729473,-56.2463996385611,-56.246424971626,-56.2464585089221,-56.2465060801224,-56.2465403044394,-56.2466180178516,-56.246708077631,-56.2467282880541,-56.2467787007199,-56.2468171338741,-56.2468318481293,-56.2468996097424,-56.2469454267047,-56.2470111339249,-56.2470734727413,-56.2471042752937,-56.2471295883482,-56.2471491784514,-56.2471687885648,-56.247211597309,-56.2472585081688,-56.2473050988635,-56.2473294114021,-56.2473482277729,-56.2474122741365,-56.2474561967886,-56.2474799290279,-56.2474927289625,-56.2475034344836,-56.2475195828117,-56.2475535536647,-56.2475929673246,-56.2476310136127,-56.2476660716931,-56.2476973278127,-56.2477257824875,-56.2477659031787,-56.2477792767425,-56.2478132409254,-56.247964625665,-56.2480621693041,-56.2481572383336,-56.2482548686841,-56.2483523723025,-56.2484218347928,-56.2484481416933,-56.2484498492406,-56.2484510898804,-56.2484382565953,-56.2484151246655,-56.2483595893579,-56.2483449351337,-56.2483288935273,-56.2482866384019,-56.2481070391113,-56.2479665533258,-56.2478405083212,-56.2476216287727,-56.2474978155725,-56.2473223736235,-56.247700448993,-56.2476757099971,-56.2478371399174,-56.2497965370953,-56.251273045235,-56.2517083497327,-56.2522040349325,-56.2527655057167,-56.2527707677607,-56.2528673395895,-56.2530424607926,-56.2529342819773,-56.2530457661392,-56.2534787761202,-56.254386831094,-56.2549558445488,-56.2550613307946,-56.2552794514412,-56.2552938855519,-56.2556138368053,-56.2557900853087],&#34;lat&#34;:[-34.8727814956005,-34.8728038243139,-34.8728173344883,-34.8728685221583,-34.8729161715784,-34.8729512993194,-34.872964441097,-34.8729997701504,-34.8730136143138,-34.8730559970021,-34.8730982508585,-34.8731337106598,-34.873163136427,-34.8731922356351,-34.8732040926163,-34.8732627355972,-34.8733934207394,-34.8735350613146,-34.8735490286866,-34.8736034818578,-34.873603878745,-34.8736554039874,-34.8736821587002,-34.8737365933595,-34.8740656326161,-34.8736756959071,-34.8735113440245,-34.8733450030605,-34.8730384934344,-34.8726120581153,-34.8725383221699,-34.8723213823549,-34.8723173623819,-34.8724666693834,-34.8724883396863,-34.8725084400922,-34.8725258220243,-34.8725635764436,-34.8726065746929,-34.8726240102643,-34.8726567282798,-34.8726657136157,-34.8726748027539,-34.8726973888449,-34.8727183226588,-34.8727628731349,-34.8728101598926,-34.8728313166485,-34.8728710308969,-34.8729216300891,-34.8729520352277,-34.8729754393754,-34.8730356138241,-34.8730684421257,-34.8730780599995,-34.8732728823902,-34.8735373390101,-34.873561137114,-34.8736256804191,-34.873816654772,-34.873924875466,-34.8741459414408,-34.8741840384953,-34.8741844982687,-34.874195228657,-34.8742827687993,-34.8743178614137,-34.8743672331403,-34.8743707260345,-34.8744049749888,-34.8744506897784,-34.874497805871,-34.8745911248504,-34.8746348392307,-34.87486065569,-34.874865052124,-34.8748244211696,-34.8729165630717,-34.8709410484149,-34.8696375670095,-34.8691143363328,-34.8690917872036,-34.8671704454852,-34.8652806758827,-34.8615191743134,-34.861068153377,-34.8558810300455,-34.8548781583242,-34.8524318381102,-34.8523537900238,-34.8521314418941,-34.8520047190058,-34.8519166286922,-34.8519047875164,-34.8519017503106,-34.8518349317304,-34.85171360615,-34.8515773063372,-34.8513405118312,-34.851256188707,-34.8512071137938,-34.8512059372733,-34.8512033187086,-34.8511744976323,-34.851135277119,-34.8510772594691,-34.850641679511,-34.8497138109855,-34.8480834868523,-34.8474790351211,-34.8469457967831,-34.8463163454923,-34.8446738484145,-34.8428055448826,-34.8414613082354,-34.8401412598564,-34.8392852555834,-34.8384078446753,-34.8373343956721,-34.8362924625861,-34.8362252345816,-34.8363025511224,-34.8364329039567,-34.8365229414499,-34.836533456873,-34.8365418678775,-34.8365433119025,-34.8368352591869,-34.8369111913097,-34.8369652095389,-34.8370669394058,-34.8374526242445,-34.8374521806824,-34.8378450882057,-34.8378629476903,-34.8379894527353,-34.8381331211843,-34.8382057436168,-34.8382930923079,-34.8383414128551,-34.838431089051,-34.8384613601984,-34.8386155773425,-34.8387774541598,-34.8389350554389,-34.8390790663756,-34.8391960300301,-34.839263528174,-34.8393627793603,-34.8394483568282,-34.8395633961569,-34.8396469825979,-34.8400838712459,-34.8401983302753,-34.8403819383,-34.840662416283,-34.8408134741875,-34.8410045927522,-34.8410940155365,-34.8412712202588,-34.8414697960027,-34.8416120293561,-34.8418109219301,-34.8419064211815,-34.8420670473539,-34.8421246037038,-34.8421521212287,-34.8426290071709,-34.8426784493362,-34.8427365793153,-34.8427883093271,-34.8430924461783,-34.8431454168299,-34.8434086025616,-34.8434188144948,-34.8435181690678,-34.8438435602137,-34.844175984987,-34.8445755076977,-34.8447959147006,-34.844977505018,-34.845196978206,-34.8455139583474,-34.8458682677405,-34.8460397228309,-34.8462826514487,-34.8463784908756,-34.8465260336339,-34.8467333005267,-34.8468435673941,-34.846881597007,-34.8468587952475,-34.8467992678811,-34.8470791722349,-34.8472063745031,-34.8475776893329,-34.8479670501363,-34.8481378949119,-34.8484052894808,-34.8490499352745,-34.8493296895509,-34.8497434629445,-34.8501141407792,-34.8504192514659,-34.8505910100462,-34.8506752034669,-34.8507429183892,-34.8508277721505,-34.8509468368885,-34.8510487594526,-34.8512095523776,-34.8513705520759,-34.8514980078081,-34.8516331641784,-34.8517854560525,-34.8519294569842,-34.8521326751223,-34.8522090645183,-34.8523109537318,-34.8524972097888,-34.8526159243463,-34.8527684596793,-34.8528788132582,-34.8529889900792,-34.8530631958937,-34.8530739839127,-34.8530285971722,-34.8530795934723,-34.853146644719,-34.8531478053176,-34.8532073993851,-34.8532759880914,-34.8533949327675,-34.8534272060784,-34.8534396191468,-34.8534750007273,-34.8535790744007,-34.8538585918884,-34.8539119994321,-34.8538918690503,-34.8538846453248,-34.8540548397651,-34.8542250792286,-34.8544219574304,-34.8546417574536,-34.8547336131593,-34.8547483950072,-34.8547872524891,-34.8548219720615,-34.8548392326299,-34.8548792015763,-34.8548802004247,-34.8549199676004,-34.8548851069585,-34.8548084901085,-34.8547920449607,-34.8547786613918,-34.8547472168417,-34.8547158139798,-34.8546843627596,-34.8546708858091,-34.8546484125525,-34.8546259342932,-34.8546079616909,-34.8545990170779,-34.8545902108697,-34.8545812579191,-34.8545714445248,-34.8545425479554,-34.8545247571135,-34.8545203698509,-34.854510396374,-34.8544948700333,-34.8545100461934,-34.8545191358812,-34.8545237082393,-34.8545327912569,-34.8545373702851,-34.8545374253135,-34.8545375136924,-34.8545420643727,-34.854546656741,-34.8545602737637,-34.854569361784,-34.8545739441472,-34.8545740158509,-34.854578559861,-34.8545831822449,-34.8545832956367,-34.854587852987,-34.8545924053348,-34.8546150203312,-34.8546285906631,-34.8546331330057,-34.854646723348,-34.8546557913579,-34.8546649110612,-34.8546740491072,-34.8546741074707,-34.854678756535,-34.8546833589085,-34.8546879796249,-34.8546971493539,-34.8546972227251,-34.8546973294468,-34.8546974511763,-34.8546932706869,-34.854694743113,-34.8548298878106,-34.8548525361576,-34.8548571201883,-34.8548842475119,-34.8548978245139,-34.8549113865082,-34.8549340315202,-34.8549521025065,-34.8549746958251,-34.8549882578193,-34.8550018331538,-34.8550109095014,-34.8550245065138,-34.8550380801807,-34.8550471732035,-34.8550562478836,-34.8550698365583,-34.855078922911,-34.8551015779281,-34.8551106476056,-34.8551287702852,-34.8551423322795,-34.8551604116035,-34.8551875556023,-34.8552011476121,-34.8552192619541,-34.8552419002959,-34.8552554656253,-34.8552735816348,-34.8552871419616,-34.8553007256337,-34.8553188066252,-34.8553323836272,-34.8553505229821,-34.8553686323215,-34.8553822259988,-34.8553958196761,-34.8554093866729,-34.8554274659969,-34.855441049669,-34.8554546433463,-34.8554637146913,-34.8554727877038,-34.8554818623839,-34.8554909520717,-34.8555000717749,-34.8555091898106,-34.855518319519,-34.8555275692894,-34.8555231403386,-34.8555232153773,-34.8555187864265,-34.8555143791536,-34.855500983912,-34.8554920793197,-34.8554876637091,-34.8554787090909,-34.8554652604885,-34.8554517935433,-34.8554338159384,-34.8554158116531,-34.8554023530455,-34.8553934117676,-34.855375482521,-34.8553575099188,-34.8553395556593,-34.8553215813895,-34.8553081177793,-34.8552901868652,-34.8552767432653,-34.855266866505,-34.855263364699,-34.8552544250886,-34.8552455238313,-34.8552267858344,-34.8551918428133,-34.8551811422948,-34.8551303044097,-34.8551089283856,-34.8550804153473,-34.8550618107525,-34.8550343649313,-34.8549803470729,-34.8549160906009,-34.8548815444512,-34.854809238828,-34.8547870473833,-34.8547150919407,-34.8546269931726,-34.8546001543311,-34.8542402036954,-34.8541178789427,-34.8540811299903,-34.8540820037743,-34.8541158078746,-34.8541462969319,-34.8541686617994,-34.8542095895735,-34.8542170617605,-34.8542610961368,-34.8543029143702,-34.8543073616638,-34.8543644511063,-34.8544192660424,-34.854439196321,-34.8545005396239,-34.8545115769829,-34.8545620496796,-34.8546738223236,-34.8547547607323,-34.8547613674729,-34.8548007261044,-34.8548161123729,-34.8548532898796,-34.8548774106526,-34.8549361159284,-34.8550088401008,-34.8550504115403,-34.8552002704931,-34.8553647686623,-34.8554441679439,-34.8555400807419,-34.8556416047671,-34.8556882971809,-34.8557432171712,-34.8558226081152,-34.8560332017237,-34.8561453695715,-34.856216257797,-34.8562788984357,-34.8563005696121,-34.8563031175928,-34.8562507422482,-34.8561273953017,-34.8560776796621,-34.8560326097517,-34.8560399568741,-34.8560657101558,-34.8560806945503,-34.8560969129145,-34.8560927240875,-34.8560994592277,-34.8561253075583,-34.8561578676837,-34.8561577526244,-34.8561609909612,-34.8561630353488,-34.856179278726,-34.8562269399728,-34.8562581960923,-34.8563608156825,-34.856460510431,-34.856626365967,-34.8567620359354,-34.8568593978141,-34.8570276996117,-34.8571341511781,-34.8573261385242,-34.8573438660001,-34.8573857025763,-34.857432888578,-34.8575472358831,-34.8576434404983,-34.8577000213452,-34.8577249025104,-34.8577866960456,-34.8578866659359,-34.8579614928594,-34.8580163961744,-34.8580924970883,-34.8581208750569,-34.8581661600782,-34.8582078232316,-34.8582181485566,-34.8582776525777,-34.8583099609066,-34.8583280785837,-34.8583613757559,-34.8583749160723,-34.8583900638844,-34.858390819274,-34.8584130840899,-34.8584245933588,-34.8584607186562,-34.8584663298834,-34.8584465446797,-34.8584881778176,-34.8585256237962,-34.8585993218041,-34.858682182871,-34.8587922446327,-34.8588793478874,-34.85898915285,-34.8591095999676,-34.8592798160858,-34.8594323164007,-34.859537070425,-34.859641861135,-34.8597468536156,-34.8598469802535,-34.860056468805,-34.8603593761758,-34.860426612518,-34.8605545434953,-34.8607416266455,-34.8608922359853,-34.8610107637798,-34.8611751102041,-34.861304768739,-34.8615907262146,-34.8616822934381,-34.8617462947786,-34.8618654278852,-34.8619437182616,-34.8619392242773,-34.8619650075744,-34.8619307532419,-34.861917373008,-34.8618900939395,-34.8618674689379,-34.8617991520384,-34.8617402366542,-34.8617041130244,-34.8617094924653,-34.861738127233,-34.8617786531333,-34.861806604215,-34.8618433331571,-34.8618847661918,-34.8619174697245,-34.8619132275367,-34.8619623995627,-34.8619986782725,-34.8620045796494,-34.8620137493784,-34.8620141012265,-34.8620262091376,-34.8620255588022,-34.8620533014431,-34.8620570583806,-34.8620810774346,-34.8620734301573,-34.862071000571,-34.8620976059587,-34.8620928585104,-34.8620878826108,-34.8621151833572,-34.8621364293143,-34.8621739303212,-34.8622378065971,-34.8623340145474,-34.8624240576516,-34.8626802280985,-34.8628978603371,-34.8632066362473,-34.8632943581545,-34.8633543907815,-34.8634354759325,-34.8635620945663,-34.863747048285,-34.8638555592469,-34.8640920161938,-34.8642263287956,-34.8643738632162,-34.8647001581615,-34.8648953204784,-34.8650555614521,-34.8653336615421,-34.8654789464692,-34.8657511468499,-34.8659941254936,-34.8662120979075,-34.8663809649966,-34.8663946403827,-34.8665482829534,-34.8665968496672,-34.8666429667843,-34.8667359980962,-34.866807149791,-34.8668497851124,-34.8669111484257,-34.8669822150766,-34.8670618858847,-34.8670655864067,-34.8673521025037,-34.8674711693883,-34.8676735366088,-34.8679096783932,-34.8679792959634,-34.8680485950361,-34.8681239684494,-34.868223031623,-34.8682535307598,-34.8683038101889,-34.8683803896724,-34.8684200584582,-34.8684528960444,-34.8684943774374,-34.8684977858619,-34.868520264955,-34.8685382475624,-34.8685562093257,-34.8685831548889,-34.868619101761,-34.8686461382044,-34.8687091515353,-34.868731613953,-34.8687631410457,-34.8687946873149,-34.868821735431,-34.8688623071882,-34.8689389375418,-34.8689928111591,-34.8690287230131,-34.8690466906128,-34.86907811015,-34.8691363868715,-34.8691542785987,-34.8691721561519,-34.8691855655675,-34.8691944926715,-34.8692034748038,-34.8692124477647,-34.8692213498557,-34.8692302394403,-34.8692616398009,-34.8693020164575,-34.8693154150342,-34.8694492815726,-34.8694761537646,-34.8694985244684,-34.8695074540737,-34.8695163569985,-34.869529720557,-34.8695386218143,-34.8695654064612,-34.869601164069,-34.8696101111832,-34.8696459996918,-34.8696774217303,-34.8696818798628,-34.8696996832111,-34.8697040387907,-34.8697218488092,-34.8697486843156,-34.8697575964118,-34.8697620195262,-34.8697844886141,-34.8698114658603,-34.8698293517512,-34.8698472243019,-34.8698696041771,-34.8698785379511,-34.8698829827434,-34.8699098115797,-34.8699457217662,-34.8699771921629,-34.8700086975778,-34.8700311975149,-34.8700491709509,-34.8700761006726,-34.8700985047269,-34.8701209129501,-34.8701613596428,-34.8701928041929,-34.8702107376083,-34.8702376464859,-34.8702466161118,-34.8702735449997,-34.870408250304,-34.8705070796061,-34.8705878887815,-34.8706326343579,-34.8707224490109,-34.8708799610773,-34.8709474775639,-34.8710126820249,-34.8710601415009,-34.8710917327934,-34.8711143444548,-34.8711505839778,-34.8711596461514,-34.8711642068368,-34.8711894231748,-34.8712544058547,-34.8713052345684,-34.8714134462092,-34.8715184887157,-34.871570021165,-34.8715972969521,-34.871648625231,-34.8717162198573,-34.8717382195365,-34.8720066279616,-34.8722135246635,-34.8722571371556,-34.8723155805061,-34.8723479538099,-34.8723503015188,-34.8716820826369,-34.8716958963433,-34.8723837274414,-34.8723968742216,-34.8724585160118,-34.8725816528499,-34.8726636968288,-34.8726785786298,-34.8727093503735,-34.8727092936776,-34.8727536351127,-34.8727814956005]}]],[[{&#34;lng&#34;:[-56.2028584020419,-56.2025870788383,-56.2026580565747,-56.2026986758564,-56.2027036000626,-56.2026055720265,-56.202498942849,-56.2023864131479,-56.2021283917463,-56.2018108446458,-56.2014849515744,-56.2010456910213,-56.2008235184431,-56.2006708283769,-56.2005229396069,-56.2003267184106,-56.2001544028764,-56.2001127822449,-56.2000889811927,-56.1997928247818,-56.1997390685154,-56.1992011663592,-56.1990134377848,-56.1969940079799,-56.1968646541104,-56.1967163129219,-56.1964829825515,-56.1962965495387,-56.1962120609832,-56.1962419204883,-56.1963072169036,-56.1963593009637,-56.196423699938,-56.1964952807941,-56.1965255283822,-56.1965233073598,-56.1964924336706,-56.1964896195205,-56.1964269398696,-56.1963838633343,-56.1963192992352,-56.1962182229878,-56.1961133700342,-56.1960064854006,-56.1959670639528,-56.1958934406219,-56.1952552220768,-56.1952062993461,-56.1946790057407,-56.19465487663,-56.194268896737,-56.1936511191284,-56.1933965443441,-56.1933849087584,-56.1931710401275,-56.192915569208,-56.1928687308856,-56.1923490353653,-56.1922487844967,-56.1920967356646,-56.1918709073558,-56.191817866011,-56.1917320980283,-56.1915985362304,-56.1914756478537,-56.1912726306525,-56.1912376546979,-56.1907859488249,-56.190254475152,-56.1915919138165,-56.1926027697275,-56.1936375573149,-56.1936376649916,-56.1939361450934,-56.1942356948783,-56.1953635322178,-56.1964534136386,-56.1965670060771,-56.1966543354636,-56.1980809545258,-56.1980814544197,-56.1990657512827,-56.2002420047216,-56.2014919301735,-56.2018553609373,-56.2022321606094,-56.2022728128384,-56.2023174296123,-56.2025646994356,-56.2028727556338,-56.2031834508673,-56.2035261125867,-56.2036364319801,-56.205102198748,-56.2064927242109,-56.2074235109081,-56.2074749557729,-56.2077619221021,-56.2083384794474,-56.2085565052223,-56.2091512669561,-56.2098932679583,-56.2102105232417,-56.2104081918511,-56.2109365576762,-56.2105802339109,-56.2121896756079,-56.2126007842938,-56.2125454190739,-56.2122116015126,-56.2119044082195,-56.2111131092131,-56.2112665695384,-56.2120348641009,-56.2125834520218,-56.2132810384516,-56.213346132022,-56.2142435531784,-56.2149456435977,-56.2156285801868,-56.2156790885207,-56.2160205879741,-56.2159031407368,-56.2155240985884,-56.2152644046576,-56.2149566742865,-56.215946072878,-56.2161440049567,-56.2170717901059,-56.2172037081394,-56.2175445139017,-56.218096605296,-56.217954772149,-56.2184751805369,-56.2195252053949,-56.2187949454479,-56.2198772302765,-56.2209659684333,-56.2215384636837,-56.2218536729119,-56.221820899343,-56.2217906003838,-56.2214181816512,-56.2209852617167,-56.2208093643352,-56.2202360186462,-56.219229179138,-56.2190606470183,-56.2189667487213,-56.2185384164826,-56.2183346380556,-56.2180595761991,-56.2174104547639,-56.2172815033798,-56.2173551695853,-56.2177917847589,-56.2181936886977,-56.2175218822299,-56.2172055824394,-56.2167474528369,-56.2162851810982,-56.2162408615748,-56.2162109237645,-56.2160464026699,-56.2160134585459,-56.2158175513276,-56.2153220143684,-56.2147247096564,-56.2143984030384,-56.2136097846611,-56.2126917945634,-56.2117665920006,-56.2109678704917,-56.210519647665,-56.2097417814996,-56.2095432243409,-56.2085101889277,-56.2084583003915,-56.2082945203184,-56.2076265920587,-56.2059830280142,-56.2059131553124,-56.2040296089193,-56.2037684625728,-56.2032565536871,-56.2030662113669,-56.202970595973,-56.2029436203061,-56.2028584020419],&#34;lat&#34;:[-34.856840795657,-34.8568890495076,-34.856664437268,-34.8564772007053,-34.8562358962584,-34.8557980478871,-34.8556018676069,-34.8554300856813,-34.8551874688909,-34.8550081230644,-34.8548738704936,-34.8547708232915,-34.8546582576812,-34.854557010414,-34.8544575424492,-34.8542012202573,-34.8537825760184,-34.8536859328437,-34.8536326136348,-34.8537154701447,-34.853783507404,-34.853904156994,-34.853943652423,-34.8543641592891,-34.8548162420183,-34.8554031558298,-34.8564761453292,-34.857204854543,-34.857327609937,-34.8573178764023,-34.8573093410879,-34.8573105186858,-34.8573398632524,-34.8574198635033,-34.8574661530244,-34.8575818143829,-34.8577126496471,-34.8577105501085,-34.8578532639482,-34.8579181360004,-34.8579591628689,-34.8580227592562,-34.8581697728454,-34.8583400913165,-34.8584124631233,-34.8585476240235,-34.8598856985548,-34.8599534451602,-34.8606805834973,-34.8607122014702,-34.8612406256588,-34.8620898615546,-34.8624330100372,-34.8624780688399,-34.8633034545124,-34.8643137438778,-34.8644716202987,-34.8664471524645,-34.8668260228576,-34.8674033472653,-34.8682688735447,-34.8684632772316,-34.8687925295354,-34.8692976883921,-34.8694963450111,-34.8698214243295,-34.869875607273,-34.8705574430798,-34.8713642542073,-34.8714504918829,-34.871532191198,-34.8715947385303,-34.8715974042785,-34.8716148618501,-34.8716357837478,-34.8717145502487,-34.8717783126229,-34.8717845319399,-34.8717889733583,-34.8719031476928,-34.8719031717168,-34.8719504711327,-34.8720715289327,-34.8721534987066,-34.8721794729355,-34.8722225333259,-34.8721682324301,-34.8721189182229,-34.8718609306068,-34.871446354014,-34.8711344589951,-34.8707864136658,-34.8706608778,-34.8710521673885,-34.8713995790576,-34.8716582074388,-34.8716986166122,-34.8715129750388,-34.8708847868994,-34.870645266706,-34.8699629364776,-34.8691134041854,-34.8687473879214,-34.868543980519,-34.8680015574442,-34.8674933453463,-34.8655099407871,-34.8657340446966,-34.8658108309639,-34.8662738393008,-34.8666961896162,-34.8678201890197,-34.8676625409381,-34.8668174234227,-34.8662163400953,-34.8656914227153,-34.8656506616938,-34.8651071047009,-34.8646768077858,-34.8642592655882,-34.8642283848559,-34.8640200223981,-34.8638941858343,-34.8636564749073,-34.8634364264227,-34.8632813030883,-34.8624202840388,-34.8625864363944,-34.8620427643422,-34.8621955964949,-34.8619872323696,-34.8616475171698,-34.8614947150325,-34.8611776298369,-34.8605434244276,-34.8597209018983,-34.8590460321841,-34.8583666251298,-34.8580133095826,-34.8578185341319,-34.8577510309855,-34.8577015487996,-34.8578649530714,-34.8581006562962,-34.8581958453877,-34.858513104006,-34.8573932475996,-34.8572057941389,-34.8570813151744,-34.8564992220623,-34.8562474588882,-34.8558742264027,-34.8549973625149,-34.8548693506916,-34.8548623228715,-34.8546897205227,-34.8545487711648,-34.8536404293764,-34.8532132357284,-34.852628734286,-34.8528690182066,-34.8528916865639,-34.8529071598321,-34.8529958295334,-34.8530134107263,-34.8531181416941,-34.8525114004406,-34.8518236557531,-34.8514460643529,-34.8504569275631,-34.8509509690196,-34.851446188104,-34.851873451434,-34.8521158097577,-34.8525463084436,-34.8526153117714,-34.8531873195184,-34.8532168350975,-34.8533099972711,-34.8537011571622,-34.8546577757146,-34.8546985467413,-34.8557948104459,-34.8559352978988,-34.8562026916778,-34.8563872875577,-34.8565209632866,-34.8565978633361,-34.856840795657]}]],[[{&#34;lng&#34;:[-56.1936941299814,-56.1932365326368,-56.1936602361249,-56.1936772113028,-56.193718217264,-56.1946992153299,-56.1952637581458,-56.1959550122886,-56.1959629450012,-56.1959603544116,-56.1954684299627,-56.1952758421815,-56.1958340801268,-56.19583354895,-56.1957749334766,-56.195933524899,-56.1979603165028,-56.197953555343,-56.1980760432179,-56.1980834180562,-56.1984189379647,-56.1984430061911,-56.1984488295257,-56.1985586449137,-56.1988332734078,-56.198950796608,-56.1989920975404,-56.1988438854539,-56.1988252955875,-56.1987685215544,-56.198700288595,-56.1986440247841,-56.1985890211512,-56.1984148914493,-56.1985000865248,-56.198958147378,-56.1989508960379,-56.2000904930319,-56.200100563615,-56.1989728314889,-56.1989614956828,-56.1985003565149,-56.1985135608797,-56.198518577215,-56.1986432053213,-56.1988289977382,-56.199188691938,-56.1994011080191,-56.199654730949,-56.1998472608559,-56.1999784032511,-56.2000920683906,-56.2001397775812,-56.2001982220519,-56.2003054979483,-56.2004025800939,-56.2004527343713,-56.2005191785365,-56.2011485147092,-56.2015985451575,-56.2017750064185,-56.2020261552073,-56.2021395212547,-56.2022061385279,-56.2021517446836,-56.2019333979331,-56.2017163108202,-56.2017159477229,-56.2017600265075,-56.2020676047067,-56.2020160690558,-56.2020639020962,-56.202644485811,-56.2027117541834,-56.2021012356059,-56.2021860674442,-56.2022626755021,-56.202487892857,-56.2028787939993,-56.2030108298344,-56.2032746919807,-56.2034587229418,-56.203611088795,-56.203617726501,-56.2036817728647,-56.2037274197393,-56.204073744139,-56.2041794790146,-56.2042543891339,-56.2049979658997,-56.2056792029905,-56.2058455721247,-56.2059672848951,-56.2069395029595,-56.2075271576947,-56.2077508140979,-56.2084729037735,-56.2088384723066,-56.2089620777197,-56.2091396226175,-56.209275419318,-56.2104754371526,-56.2107117423932,-56.2108277664639,-56.2108964632519,-56.2109924816381,-56.2110156699423,-56.2124828310691,-56.2126871828913,-56.2127864249085,-56.2128816960813,-56.2127938187799,-56.2129001243346,-56.2130800608947,-56.2134811580226,-56.2140057858343,-56.2140049811927,-56.2146003609209,-56.2151611508141,-56.215833728902,-56.216162678566,-56.2166552231818,-56.2168058951165,-56.2176725090228,-56.217925647124,-56.2181414603693,-56.2181097268999,-56.2181195893952,-56.2181941657278,-56.2183834649671,-56.218798960969,-56.2188615345029,-56.2189216069556,-56.2194149687184,-56.2205302064012,-56.2205688231293,-56.22080329086,-56.2209544330839,-56.2213907797356,-56.2215777160969,-56.2217852619729,-56.2220758501465,-56.2225686802691,-56.2227970766142,-56.2233210014597,-56.2241300889643,-56.2247963977546,-56.2250585114469,-56.2252396570414,-56.2254017498937,-56.225448686446,-56.2254374254029,-56.2254140236897,-56.2253966590977,-56.2253680599622,-56.2253069656089,-56.2252188217386,-56.2251229856468,-56.2250518089391,-56.2249898136332,-56.2248276133157,-56.2247173831339,-56.2246697585727,-56.2246947914828,-56.2247616759768,-56.2248261659026,-56.2248673171253,-56.2249006876687,-56.2249005409263,-56.2248797602092,-56.2248434915045,-56.224767632382,-56.2247425294358,-56.2248042179168,-56.2247884697951,-56.224808486785,-56.2248163575108,-56.2247878761556,-56.2248134460093,-56.2248080799085,-56.2247736121326,-56.2247229993636,-56.2246387892677,-56.2244985135906,-56.2242659069627,-56.2241384979213,-56.2239514447865,-56.2237888842832,-56.223650849762,-56.2234325838633,-56.2233458691423,-56.2232122068759,-56.2230273515413,-56.2228235230884,-56.22258493671,-56.2223407707874,-56.2221547014934,-56.222073723064,-56.2220024696502,-56.2218230337772,-56.2215817993664,-56.2213284408073,-56.2212912155933,-56.2211668759349,-56.2210874710953,-56.2209645143501,-56.2208641533542,-56.2208022906872,-56.2207627809795,-56.2206628821239,-56.2206124394427,-56.2204461231099,-56.2203231650149,-56.2202088465668,-56.2200376250809,-56.2198623550834,-56.2197263585772,-56.219533390909,-56.2192349196101,-56.2190770744713,-56.2189232433081,-56.2188353348704,-56.218769822786,-56.2187128517374,-56.2186867153912,-56.2187134678322,-56.2186875711057,-56.218630497461,-56.2185821359117,-56.2184638037665,-56.2183674915629,-56.2183194382211,-56.2183197121772,-56.2182149620693,-56.2181099381007,-56.2180317011691,-56.2179919011646,-56.2179620050964,-56.2179317871847,-56.2178971105316,-56.2178360581331,-56.2177271242769,-56.217648682447,-56.2176195376706,-56.2175395090417,-56.2174696765438,-56.217433836993,-56.2173741198283,-56.2173506222818,-56.217241636492,-56.2172900426643,-56.2172483044722,-56.2172309531391,-56.2172232282064,-56.2171835777576,-56.2171020256992,-56.2169794891706,-56.2168918186677,-56.2167720198934,-56.2167181733997,-56.2167152829127,-56.2166692024811,-56.2166386834083,-56.2165992197226,-56.2164841637186,-56.2164539814862,-56.2164393639475,-56.2164199439321,-56.2164023315156,-56.2163796131325,-56.2163555473879,-56.2163291304306,-56.2163064720785,-56.2162872321559,-56.2162284685167,-56.2161887413617,-56.2161730365957,-56.2161579187991,-56.2161447286633,-56.216113806049,-56.2160877892982,-56.2160641871259,-56.2160649275078,-56.2159983064829,-56.2159863036261,-56.2159765519302,-56.2159853764813,-56.2160534048986,-56.2161155002561,-56.2161263958752,-56.216171989389,-56.2162223453588,-56.2162468113099,-56.2162587107801,-56.2162729848082,-56.2162916977923,-56.2163809704992,-56.2163917460564,-56.2164225419387,-56.216434074553,-56.2164569496836,-56.2164647270279,-56.2164474914724,-56.2164159251929,-56.2163643385884,-56.2163039474431,-56.2161833052248,-56.2161010828206,-56.2160205879741,-56.2156790885207,-56.2156285801868,-56.2149456435977,-56.2142435531784,-56.213346132022,-56.2132810384516,-56.2125834520218,-56.2120348641009,-56.2112665695384,-56.2111131092131,-56.2119044082195,-56.2122116015126,-56.2125454190739,-56.2126007842938,-56.2121896756079,-56.2105802339109,-56.2109365576762,-56.2104081918511,-56.2102105232417,-56.2098932679583,-56.2091512669561,-56.2085565052223,-56.2083384794474,-56.2077619221021,-56.2074749557729,-56.2074235109081,-56.2064927242109,-56.205102198748,-56.2036364319801,-56.2035261125867,-56.2031834508673,-56.2028727556338,-56.2025646994356,-56.2023174296123,-56.2022728128384,-56.2022321606094,-56.2018553609373,-56.2014919301735,-56.2002420047216,-56.1990657512827,-56.1980814544197,-56.1980809545258,-56.1966543354636,-56.1965670060771,-56.1964534136386,-56.1953635322178,-56.1942356948783,-56.1939361450934,-56.1939148887854,-56.1939140999907,-56.1939139677215,-56.1937329895193,-56.1936469942257,-56.1936629388651,-56.1936654379823,-56.1936373417667,-56.1935952383198,-56.1935187589298,-56.1935026675515,-56.1935196344899,-56.1934205633964,-56.1933431351313,-56.1932926107413,-56.1931871534376,-56.1931980911618,-56.1934059091722,-56.1935810657549,-56.1939972358011,-56.1940649515572,-56.1937839307943,-56.1937548591346,-56.1933758382472,-56.192813234348,-56.1937737584648,-56.1938627276819,-56.1938505555711,-56.1933721621847,-56.1932851877464,-56.1927872255179,-56.1931359208202,-56.1937833275777,-56.1936941299814],&#34;lat&#34;:[-34.8842116360473,-34.8849020953751,-34.8849623727462,-34.8849644169784,-34.8849661376847,-34.8850405619781,-34.8850794972664,-34.8851093359172,-34.8851096783175,-34.8851131520396,-34.8857727671915,-34.8860393180216,-34.886102977774,-34.8861097251633,-34.8868542932705,-34.8869421503336,-34.8870348593441,-34.8869764299381,-34.8870073286826,-34.8870274668216,-34.8871158289613,-34.8866450899255,-34.8866122401065,-34.8865380517316,-34.8863432168912,-34.8861773112366,-34.8859316822215,-34.8857584830064,-34.8856356239718,-34.885610318933,-34.8856865795164,-34.8857228171945,-34.8857606386058,-34.8858371597367,-34.8849728125496,-34.8850161046669,-34.8850438643808,-34.8851252020334,-34.8850466401991,-34.8849532100701,-34.8849827263867,-34.8849450068345,-34.8847430458818,-34.8845109033217,-34.8841930524687,-34.8841191613959,-34.8837732678681,-34.8835174527032,-34.883280135368,-34.883085629671,-34.8829499188108,-34.8829074183452,-34.8829880012605,-34.8830474428958,-34.8830707292782,-34.8830583405522,-34.8829944023838,-34.8829896284401,-34.883476020005,-34.8837180950523,-34.8837596213492,-34.8837114081526,-34.8836088666592,-34.8834241021254,-34.8832385434186,-34.8830234159134,-34.8828524338076,-34.8827156930312,-34.8826269431639,-34.8823572135401,-34.8822573699617,-34.8821971154766,-34.8827370231738,-34.8826968551813,-34.8821367920608,-34.8820508224443,-34.8820461446985,-34.8817845710843,-34.8815362083104,-34.8814548739173,-34.8813138349139,-34.8812847565961,-34.8812727758484,-34.8810890096865,-34.8810392442295,-34.8810030538986,-34.8806868095077,-34.8805921571136,-34.8804376822458,-34.879859448381,-34.8794333656202,-34.8793337188131,-34.8792612460204,-34.8787536959305,-34.8783973742496,-34.8782540932869,-34.8778099200344,-34.8775886263243,-34.8775227035762,-34.8774063264742,-34.8773235166838,-34.8766105091277,-34.8766033907943,-34.8765479017382,-34.8765007580542,-34.8763413071849,-34.8761121624221,-34.8752996726197,-34.8753399330343,-34.8753924915664,-34.8753109081848,-34.875167570453,-34.8750298162469,-34.8749769488155,-34.8748701438704,-34.8746311095277,-34.8746292804309,-34.874352902016,-34.8740895512972,-34.8741506935981,-34.8741073727088,-34.8740139827494,-34.8741153046142,-34.8740659747859,-34.8741136572571,-34.8740619856996,-34.8739193965141,-34.8738842459958,-34.873736656529,-34.8737378736107,-34.8743085697226,-34.8742998833458,-34.8740260875759,-34.873922469629,-34.8738271095484,-34.8735796126013,-34.8734487002863,-34.873359968211,-34.8732559768549,-34.8732187307037,-34.8731944305523,-34.8731578470218,-34.8731097417538,-34.8730727588148,-34.8730248492514,-34.8729659430903,-34.8729121432106,-34.8729018174723,-34.8728373520331,-34.8727780399193,-34.8726883641105,-34.8726528098832,-34.8726254919977,-34.8726161120157,-34.8726053819236,-34.8725858146932,-34.8725412486791,-34.8724378895409,-34.8723730719461,-34.872316618665,-34.8721999451602,-34.872087616396,-34.8720743995798,-34.8720249724223,-34.8720493808436,-34.8720979083705,-34.8721020171562,-34.872091319139,-34.8720595402498,-34.8720129945783,-34.8719717266287,-34.8718951688126,-34.8718486406501,-34.8717971282505,-34.8717272613851,-34.8716885472525,-34.8716424276342,-34.8715980247344,-34.8715682835628,-34.8715195717742,-34.8714331405328,-34.8713033919514,-34.8711999952938,-34.8710201558793,-34.8706062440811,-34.8705480515697,-34.8703773718792,-34.8702561910498,-34.8701169067173,-34.8698471701072,-34.8697933573546,-34.8697126482308,-34.8695735089732,-34.8694704833402,-34.8693901002179,-34.869359310172,-34.8693283391995,-34.8693330974868,-34.8692972631728,-34.8692212022796,-34.8691588534581,-34.8691025750623,-34.8690943061955,-34.8690434313059,-34.8690567249544,-34.8690751336149,-34.8690447733215,-34.8690260591393,-34.8690070217086,-34.8689588861632,-34.8689139730003,-34.8689123476947,-34.8689111459559,-34.8689285060147,-34.8689274078134,-34.8688900970883,-34.8688783685578,-34.868855418312,-34.8688462648665,-34.8688235394222,-34.8688406444937,-34.8688509356484,-34.8688143284434,-34.8688031064972,-34.8687812267724,-34.8687379751078,-34.8686907665094,-34.8686903997572,-34.8686973262284,-34.8686748539174,-34.8686452857844,-34.8686196464587,-34.8685906991765,-34.8685248903736,-34.8684880287635,-34.8684042971399,-34.8683773753024,-34.8683459508114,-34.8682914769994,-34.8682442117614,-34.8682003954802,-34.8681128475629,-34.868050826158,-34.8680342162246,-34.8679886069459,-34.8679447339804,-34.8678979863124,-34.8678355600547,-34.8677855675925,-34.8679097382597,-34.8676216948727,-34.8675361907761,-34.8674645170364,-34.8674326073555,-34.8672794933907,-34.8670814379151,-34.8669646326756,-34.8669160288146,-34.8668829801721,-34.8668197608432,-34.8668076984072,-34.8667447409385,-34.8667223010323,-34.8666863658329,-34.866560522599,-34.8664614631782,-34.8664029163174,-34.8663398788074,-34.8662993695824,-34.8662633843572,-34.8662319097917,-34.8662094548778,-34.8661869899587,-34.8661645133669,-34.8660925829373,-34.8659980575214,-34.8659259953571,-34.8659080127497,-34.8658629845275,-34.8657504048006,-34.8656648523456,-34.8655837988776,-34.8655206996691,-34.8655254104319,-34.8655164324684,-34.8654995971193,-34.8654623529115,-34.8653900339481,-34.8653673088949,-34.8653582625628,-34.8653130525801,-34.8652633236003,-34.8652316989573,-34.8652181419657,-34.8652000709793,-34.8651819866528,-34.8650465051148,-34.865010416503,-34.8649427182559,-34.8648480360926,-34.8647668425523,-34.8646721720617,-34.864487440124,-34.8643838767137,-34.8643119229387,-34.8642580251422,-34.8641817758185,-34.8641369577046,-34.8640200223981,-34.8642283848559,-34.8642592655882,-34.8646768077858,-34.8651071047009,-34.8656506616938,-34.8656914227153,-34.8662163400953,-34.8668174234227,-34.8676625409381,-34.8678201890197,-34.8666961896162,-34.8662738393008,-34.8658108309639,-34.8657340446966,-34.8655099407871,-34.8674933453463,-34.8680015574442,-34.868543980519,-34.8687473879214,-34.8691134041854,-34.8699629364776,-34.870645266706,-34.8708847868994,-34.8715129750388,-34.8716986166122,-34.8716582074388,-34.8713995790576,-34.8710521673885,-34.8706608778,-34.8707864136658,-34.8711344589951,-34.871446354014,-34.8718609306068,-34.8721189182229,-34.8721682324301,-34.8722225333259,-34.8721794729355,-34.8721534987066,-34.8720715289327,-34.8719504711327,-34.8719031717168,-34.8719031476928,-34.8717889733583,-34.8717845319399,-34.8717783126229,-34.8717145502487,-34.8716357837478,-34.8716148618501,-34.8717047640413,-34.8717087532029,-34.8717128712771,-34.8726969849222,-34.8732706367394,-34.8735369714652,-34.873537200081,-34.8735774583285,-34.8736380684589,-34.8742882438955,-34.8744966483811,-34.8745517972371,-34.8755345949244,-34.876300997261,-34.8768014128381,-34.8777301455593,-34.8777301138764,-34.8777295181524,-34.8777650710713,-34.8778900701199,-34.8778988892515,-34.8791796679068,-34.8792563693387,-34.8802399701484,-34.8817063381628,-34.8819469578554,-34.8819692369756,-34.8820008205166,-34.8826872484704,-34.8828136922224,-34.8835632711431,-34.8837401589323,-34.8840235696998,-34.8842116360473]}]],[[{&#34;lng&#34;:[-56.1815726181079,-56.1813875968543,-56.1811741634851,-56.1811742105556,-56.1810418527119,-56.1810178078113,-56.1809011822479,-56.1808815396177,-56.1812289089496,-56.1805937041217,-56.1806581890134,-56.1795941664749,-56.1803138631024,-56.1803882718935,-56.1806403031225,-56.1819138019818,-56.1819648170416,-56.1823511812995,-56.1826923468306,-56.1834950816548,-56.1842940639188,-56.1850872231796,-56.1851767212937,-56.1852137826437,-56.1863193590403,-56.1869651481319,-56.1867935263266,-56.1867640476995,-56.1869074730783,-56.1873947253399,-56.1876167926139,-56.1880714331813,-56.1886868898282,-56.1896347538464,-56.1897621957314,-56.1898429571001,-56.1908862376733,-56.1911028298076,-56.1912075752748,-56.1913702137959,-56.19198180717,-56.1921798847217,-56.1930933510572,-56.1932185855745,-56.1943038582987,-56.1946226121794,-56.1954239749404,-56.1956729350184,-56.1957127442462,-56.1957878464699,-56.1958754454511,-56.1958452963437,-56.1955358593658,-56.1954889095707,-56.1950553083132,-56.1947208731661,-56.1946397283454,-56.194683173347,-56.1947090747786,-56.1953001084021,-56.1953679718666,-56.1954723304519,-56.1954852830087,-56.1954930627981,-56.1956888584978,-56.1958372874744,-56.195933524899,-56.1957749334766,-56.19583354895,-56.1958340801268,-56.1952758421815,-56.1954684299627,-56.1959629450012,-56.1959550122886,-56.1952637581458,-56.1946992153299,-56.193718217264,-56.1936772113028,-56.1936602361249,-56.1932365326368,-56.1923296657926,-56.1920217695026,-56.1908424992844,-56.1908093550628,-56.1893815320313,-56.1891068403657,-56.1882663438794,-56.1872693235446,-56.1875187484555,-56.1865852068556,-56.1864414671396,-56.1864047513854,-56.1856931145075,-56.1848640653831,-56.1844033044236,-56.1840172905547,-56.1831623237931,-56.1836452276987,-56.1841244574901,-56.1845687949953,-56.1838043430238,-56.1836911864685,-56.1836770436119,-56.1836598929032,-56.1825446362133,-56.1815505289716,-56.1813269779704,-56.1806332391294,-56.1806478711257,-56.1812153384329,-56.1812346175423,-56.1816960443243,-56.1815916249935,-56.1815625560142,-56.181566922991,-56.1815726181079],&#34;lat&#34;:[-34.8894944552148,-34.8906487430106,-34.89193839066,-34.8919743725049,-34.8927995080484,-34.8929392893039,-34.8936433007139,-34.8937283795913,-34.8943973225623,-34.8951619815627,-34.8952974096135,-34.8960772824572,-34.8967135366131,-34.8967674143993,-34.8968658701755,-34.8973581057006,-34.8973759915914,-34.8967980318561,-34.8962878003834,-34.8967002014025,-34.8971126090917,-34.8975205194615,-34.8975894916074,-34.8976083390094,-34.898170566374,-34.8986024107538,-34.8989214105647,-34.8989765128746,-34.8989860026886,-34.8990193474454,-34.8990407283473,-34.8990801632281,-34.899132875995,-34.8992150471802,-34.8992264056485,-34.8992286954696,-34.8992829348516,-34.8992950297938,-34.8992835089143,-34.8992656202332,-34.8993078072242,-34.8993251615881,-34.899398484023,-34.8994089962199,-34.8995097767629,-34.8995565838248,-34.8996093784061,-34.8996160744185,-34.8996171450772,-34.899576609227,-34.8994802984816,-34.8994704862788,-34.8993697776452,-34.8993442108843,-34.899108089413,-34.8987628168127,-34.8983134033652,-34.897944395965,-34.8978419855548,-34.8924593940266,-34.8915275709786,-34.8906202041608,-34.8900451866899,-34.889995961977,-34.8887570917345,-34.8878500157315,-34.8869421503336,-34.8868542932705,-34.8861097251633,-34.886102977774,-34.8860393180216,-34.8857727671915,-34.8851096783175,-34.8851093359172,-34.8850794972664,-34.8850405619781,-34.8849661376847,-34.8849644169784,-34.8849623727462,-34.8849020953751,-34.8844930097998,-34.8843541750742,-34.8838226023483,-34.8838032806513,-34.8831538323809,-34.8830239099078,-34.882629678207,-34.8821592639357,-34.8817213874866,-34.8820434710047,-34.8820947630978,-34.8821111156931,-34.882398057374,-34.8827023455793,-34.8828748980065,-34.8830201984104,-34.883342575137,-34.884206661015,-34.8850570354739,-34.8858855033468,-34.8861846636873,-34.8862272168104,-34.886232477106,-34.8862394706956,-34.8866618110543,-34.8870296242198,-34.8871170844575,-34.8873836675667,-34.8874091082685,-34.8883957523356,-34.8884310071841,-34.8892678291036,-34.889377221421,-34.8894108573351,-34.8894471390681,-34.8894944552148]}]],[[{&#34;lng&#34;:[-56.1813273074282,-56.1805095039994,-56.1800990706617,-56.179574638532,-56.1796893256607,-56.1797640809297,-56.1800621983124,-56.1800885708212,-56.1804935178382,-56.1808953346365,-56.1809117656227,-56.1813010671295,-56.1813206105511,-56.1817312086471,-56.1817477630179,-56.1821867890182,-56.182673705967,-56.1827394744689,-56.1831623237931,-56.1840172905547,-56.1844033044236,-56.1848640653831,-56.1856931145075,-56.1864047513854,-56.1864414671396,-56.1865852068556,-56.1875187484555,-56.1872693235446,-56.1882663438794,-56.1891068403657,-56.1893815320313,-56.1908093550628,-56.1908424992844,-56.1920217695026,-56.1923296657926,-56.1932365326368,-56.1936941299814,-56.1937833275777,-56.1931359208202,-56.1927872255179,-56.1932851877464,-56.1933721621847,-56.1938505555711,-56.1938627276819,-56.1937737584648,-56.192813234348,-56.1933758382472,-56.1937548591346,-56.1937839307943,-56.1940649515572,-56.1939972358011,-56.1935810657549,-56.1934059091722,-56.1931980911618,-56.1931871534376,-56.1932926107413,-56.1933431351313,-56.1934205633964,-56.1935196344899,-56.1935026675515,-56.1935187589298,-56.1935952383198,-56.1936373417667,-56.1936654379823,-56.1936629388651,-56.1936469942257,-56.1937329895193,-56.1939139677215,-56.1939140999907,-56.1939148887854,-56.1939361450934,-56.1936376909409,-56.1936376649916,-56.1936375573149,-56.1926027697275,-56.1915919138165,-56.190254475152,-56.1902297127095,-56.1902061092551,-56.1900988907415,-56.18987772689,-56.1897730389414,-56.1896613269537,-56.1891759453494,-56.1887714914802,-56.1884801947927,-56.1873246356382,-56.1860692207667,-56.1857236261085,-56.184609773003,-56.1840495152698,-56.1838043365622,-56.1834757641577,-56.1830503946467,-56.182023171303,-56.1819624480281,-56.1821332481029,-56.1824904097698,-56.1828089294553,-56.1828236184091,-56.1830683315689,-56.1831106121241,-56.1827192940613,-56.1820993764373,-56.1813273074282],&#34;lat&#34;:[-34.8756182647417,-34.8759855895972,-34.8761715075632,-34.8763983007762,-34.8765688766344,-34.876686328513,-34.8772758108307,-34.8773513950253,-34.8781895295587,-34.8790477431685,-34.8790807483498,-34.8798816582065,-34.8799225955994,-34.8807821029693,-34.8808181125821,-34.881601102119,-34.8824740955211,-34.8825910930733,-34.883342575137,-34.8830201984104,-34.8828748980065,-34.8827023455793,-34.882398057374,-34.8821111156931,-34.8820947630978,-34.8820434710047,-34.8817213874866,-34.8821592639357,-34.882629678207,-34.8830239099078,-34.8831538323809,-34.8838032806513,-34.8838226023483,-34.8843541750742,-34.8844930097998,-34.8849020953751,-34.8842116360473,-34.8840235696998,-34.8837401589323,-34.8835632711431,-34.8828136922224,-34.8826872484704,-34.8820008205166,-34.8819692369756,-34.8819469578554,-34.8817063381628,-34.8802399701484,-34.8792563693387,-34.8791796679068,-34.8778988892515,-34.8778900701199,-34.8777650710713,-34.8777295181524,-34.8777301138764,-34.8777301455593,-34.8768014128381,-34.876300997261,-34.8755345949244,-34.8745517972371,-34.8744966483811,-34.8742882438955,-34.8736380684589,-34.8735774583285,-34.873537200081,-34.8735369714652,-34.8732706367394,-34.8726969849222,-34.8717128712771,-34.8717087532029,-34.8717047640413,-34.8716148618501,-34.8715947466067,-34.8715974042785,-34.8715947385303,-34.871532191198,-34.8714504918829,-34.8713642542073,-34.8714018549222,-34.8714376957256,-34.8716005018453,-34.8720022490366,-34.872204440812,-34.8723994738956,-34.8732751359078,-34.8732628233137,-34.8732411121166,-34.8731677567854,-34.8730811504536,-34.873049986536,-34.8729478569728,-34.872892125587,-34.872871156321,-34.8728344448361,-34.8728037448728,-34.872763438268,-34.8733620625252,-34.8735925490403,-34.8740195794255,-34.8744288254841,-34.8744474151051,-34.8747571106225,-34.8748155832783,-34.8749924436564,-34.8752690892463,-34.8756182647417]}]],[[{&#34;lng&#34;:[-56.1861785696608,-56.1851240192396,-56.1847978191349,-56.1835497567614,-56.1838096136122,-56.1837822943294,-56.1837632470297,-56.1837314589773,-56.1835863391098,-56.1834757641577,-56.1838043365622,-56.1840495152698,-56.184609773003,-56.1857236261085,-56.1860692207667,-56.1873246356382,-56.1884801947927,-56.1887714914802,-56.1891759453494,-56.1896613269537,-56.1897730389414,-56.18987772689,-56.1900988907415,-56.1902061092551,-56.1902297127095,-56.190254475152,-56.1907859488249,-56.1912376546979,-56.1912726306525,-56.1914756478537,-56.1915985362304,-56.1917320980283,-56.191817866011,-56.1918709073558,-56.1920967356646,-56.1922487844967,-56.1923490353653,-56.1928687308856,-56.192915569208,-56.1931710401275,-56.1933849087584,-56.1933965443441,-56.1936511191284,-56.194268896737,-56.19465487663,-56.1946790057407,-56.1952062993461,-56.1952552220768,-56.1958934406219,-56.1959670639528,-56.1960064854006,-56.1961133700342,-56.1962182229878,-56.1963192992352,-56.1963838633343,-56.1964269398696,-56.1964896195205,-56.1964924336706,-56.1965233073598,-56.1965255283822,-56.1964952807941,-56.196423699938,-56.1963593009637,-56.1963072169036,-56.1962419204883,-56.1962120609832,-56.1961075675166,-56.1960115276817,-56.1957174022057,-56.1951549889955,-56.1950562329385,-56.1950553658965,-56.1948182437204,-56.1946746167829,-56.1940528944127,-56.1933159989213,-56.1927113359054,-56.1924776187715,-56.1924303258158,-56.191839848631,-56.1910403237626,-56.1900478804759,-56.1899812763347,-56.1896926087115,-56.1884180754788,-56.1884130945245,-56.1871911476669,-56.186290909168,-56.1863211565979,-56.1863389634665,-56.1867350028776,-56.1869220996026,-56.1868845299665,-56.1868806344158,-56.1868387580014,-56.1867908876363,-56.1866423053014,-56.1865982404968,-56.1865886357951,-56.1863564830819,-56.1863359087212,-56.1863000604417,-56.1861785696608],&#34;lat&#34;:[-34.8699349937335,-34.8698117568437,-34.8697766145533,-34.8700780355211,-34.8707767712825,-34.8709002686585,-34.8709768424301,-34.8711046361146,-34.8719793677419,-34.8728344448361,-34.872871156321,-34.872892125587,-34.8729478569728,-34.873049986536,-34.8730811504536,-34.8731677567854,-34.8732411121166,-34.8732628233137,-34.8732751359078,-34.8723994738956,-34.872204440812,-34.8720022490366,-34.8716005018453,-34.8714376957256,-34.8714018549222,-34.8713642542073,-34.8705574430798,-34.869875607273,-34.8698214243295,-34.8694963450111,-34.8692976883921,-34.8687925295354,-34.8684632772316,-34.8682688735447,-34.8674033472653,-34.8668260228576,-34.8664471524645,-34.8644716202987,-34.8643137438778,-34.8633034545124,-34.8624780688399,-34.8624330100372,-34.8620898615546,-34.8612406256588,-34.8607122014702,-34.8606805834973,-34.8599534451602,-34.8598856985548,-34.8585476240235,-34.8584124631233,-34.8583400913165,-34.8581697728454,-34.8580227592562,-34.8579591628689,-34.8579181360004,-34.8578532639482,-34.8577105501085,-34.8577126496471,-34.8575818143829,-34.8574661530244,-34.8574198635033,-34.8573398632524,-34.8573105186858,-34.8573093410879,-34.8573178764023,-34.857327609937,-34.8573638052711,-34.8573976864921,-34.8575017554115,-34.8576385555664,-34.8576625764559,-34.8576627873501,-34.8577217059627,-34.8577542014302,-34.8579050930735,-34.8580844398548,-34.8582090250074,-34.8582736694935,-34.8582889269148,-34.8584856947252,-34.8587620257147,-34.8590758292178,-34.8591123513866,-34.8592706363515,-34.8600286846592,-34.860031894243,-34.8606064914695,-34.8610580752891,-34.8612386630479,-34.8613275083287,-34.8621003473726,-34.8624693910311,-34.8629697690889,-34.863019356329,-34.8634701688245,-34.8643716954315,-34.8661841727138,-34.8666611585721,-34.8667448378195,-34.8686590273516,-34.8688078140848,-34.8690648107912,-34.8699349937335]}]],[[{&#34;lng&#34;:[-56.1682641387512,-56.1683083560016,-56.1689252265851,-56.1684501680246,-56.1677539695296,-56.167402692189,-56.1673587597289,-56.1670276727048,-56.1666893029887,-56.1671061376862,-56.167428633557,-56.1674724471355,-56.1675607594089,-56.1675909102888,-56.1676228296749,-56.1675865142829,-56.1675609477643,-56.1674740229349,-56.1673626518179,-56.1672570745578,-56.1671833697043,-56.1670970852051,-56.1670741100229,-56.1669970219333,-56.1669205641687,-56.16683289729,-56.1667251183723,-56.166464517307,-56.1664122486841,-56.1649950761453,-56.164940688096,-56.1647496045493,-56.1657590701565,-56.1659619931425,-56.16621272245,-56.1662912630183,-56.1663240149776,-56.1663497462158,-56.1669376535317,-56.1669937771527,-56.1670173023924,-56.1671565475381,-56.1676176603457,-56.167755913313,-56.1681591195901,-56.168813635474,-56.16895461985,-56.1693905946933,-56.1696720898676,-56.17018699375,-56.1703688429662,-56.1704081500131,-56.1704689341539,-56.1705411830812,-56.1705438644641,-56.1706372876448,-56.1707234570846,-56.1720332643317,-56.1727912751779,-56.1732351656295,-56.1732607456292,-56.1733049150752,-56.1733080114792,-56.1733101240613,-56.1731758705703,-56.1723976925259,-56.172364477867,-56.1721663274463,-56.1722339851193,-56.1731171349112,-56.1733663819817,-56.1735449288564,-56.1739396570411,-56.1739674268252,-56.1741698678201,-56.1743438066915,-56.1748056807251,-56.1751327569067,-56.1751342880103,-56.1753824965371,-56.1756532697415,-56.1763282142679,-56.1773547603507,-56.1778651293944,-56.1773685937945,-56.1770384071993,-56.1767972045161,-56.1766952935801,-56.1771482880343,-56.1774757035575,-56.1777843919227,-56.1779719494843,-56.1782912649968,-56.1786798023555,-56.1786726718592,-56.1786726945097,-56.1786817508584,-56.1775456740361,-56.1771107125017,-56.1769822243492,-56.1768492417032,-56.176651195864,-56.1764620640489,-56.176449598089,-56.1764494601261,-56.1753302378483,-56.1751194409587,-56.1748562827822,-56.174759887585,-56.1745505488748,-56.1742894551923,-56.1738446457931,-56.1734195378294,-56.173097756126,-56.1734642643561,-56.1735062946987,-56.1737843107862,-56.1738432578672,-56.1742197538036,-56.1742631027844,-56.1743775212621,-56.1743865191893,-56.1741003258169,-56.1738392660065,-56.1737975649807,-56.173770902897,-56.173732909136,-56.1725205689011,-56.171215931066,-56.1712328698017,-56.1712741210761,-56.1699363311436,-56.1700054118491,-56.1700121505595,-56.1693203587637,-56.1691143993718,-56.1690323168887,-56.1689043587124,-56.1687894636535,-56.1687514471461,-56.1682641387512],&#34;lat&#34;:[-34.8691997879023,-34.8690675993026,-34.8686431529051,-34.868831853149,-34.8691265580119,-34.8692880847305,-34.8693082859339,-34.8694380338731,-34.8695890864622,-34.8698326769544,-34.8698542997193,-34.8699477872443,-34.8700668177022,-34.8701136178827,-34.870218672362,-34.8705401549973,-34.8708196541421,-34.8717528237349,-34.8729516295552,-34.8739106829711,-34.8748678977583,-34.8757920510344,-34.8760354869972,-34.8766891991333,-34.877329388462,-34.8781634056693,-34.8791867682353,-34.8812561462998,-34.8817024721065,-34.8816250902195,-34.8821435321457,-34.8823198063148,-34.8830337477419,-34.8831774337194,-34.8833074720335,-34.8834486650705,-34.8834608603681,-34.8834726559098,-34.8838988462313,-34.8839263420194,-34.8838957503195,-34.8837511587707,-34.8833082541035,-34.8831726783502,-34.8827840088409,-34.8821512930451,-34.8820157086766,-34.8816179337162,-34.8814292053946,-34.8810839840739,-34.8810123072752,-34.8808663302904,-34.8804612704245,-34.8800599587703,-34.8800464307519,-34.8792078885025,-34.87843696967,-34.8785222604244,-34.8785711205217,-34.8786021663909,-34.8783535191324,-34.8779432675552,-34.8778671658792,-34.8777950085433,-34.8777826397537,-34.877713859554,-34.8777122664598,-34.8776935291225,-34.8769097507113,-34.87695644158,-34.8766902431999,-34.8765003959294,-34.8760805115132,-34.876053372879,-34.8758451963595,-34.8756644468924,-34.8751764427161,-34.8748285191164,-34.8748267741956,-34.8745439023322,-34.8742658425465,-34.8742799228579,-34.8743131733394,-34.8743298035827,-34.8737312884728,-34.8733315237442,-34.8730391468535,-34.8729178228881,-34.8724388475349,-34.8720954237558,-34.8717700776332,-34.8715802722457,-34.8712639099229,-34.8708540151586,-34.8706294127166,-34.870629202887,-34.8705453068398,-34.8704574985526,-34.8704359665674,-34.8704296056939,-34.8704142201192,-34.8703913067065,-34.8703694243119,-34.8703672388601,-34.8703685502512,-34.8702909287977,-34.8702731189669,-34.8702508847071,-34.8702448712385,-34.8702318116937,-34.8702172905248,-34.8701845228398,-34.8701635442182,-34.8701495267482,-34.8702018717024,-34.8701996686564,-34.8702144613007,-34.8702190341042,-34.8702526746972,-34.8702565479306,-34.8703274662361,-34.870333043278,-34.8703115869209,-34.8702909328306,-34.8712806660644,-34.8718801627402,-34.8722092724705,-34.8721179020151,-34.8720222610239,-34.87172475676,-34.8710936729606,-34.8709935996836,-34.8699958924883,-34.8699117217861,-34.8698696139263,-34.869857076859,-34.8698521466006,-34.8698153117967,-34.8697449192523,-34.8697216276986,-34.8691997879023]}]],[[{&#34;lng&#34;:[-56.172364477867,-56.1723976925259,-56.1731758705703,-56.1733101240613,-56.1733080114792,-56.1733049150752,-56.1732607456292,-56.1732351656295,-56.1727912751779,-56.1720332643317,-56.1707234570846,-56.1706372876448,-56.1705438644641,-56.1705411830812,-56.1704689341539,-56.1704081500131,-56.1703688429662,-56.1702553990284,-56.1715780795019,-56.172806262109,-56.1731120272647,-56.1743632683951,-56.1754684436074,-56.1756439958106,-56.1761972350519,-56.176707501807,-56.1778273715884,-56.1778520551517,-56.1778073195804,-56.1786713729871,-56.17967312613,-56.1808368551914,-56.1811141187313,-56.1817312086471,-56.1813206105511,-56.1813010671295,-56.1809117656227,-56.1808953346365,-56.1804935178382,-56.1800885708212,-56.1800621983124,-56.1797640809297,-56.1796893256607,-56.179574638532,-56.1800990706617,-56.1805095039994,-56.1813273074282,-56.1820993764373,-56.1827192940613,-56.1831106121241,-56.1830683315689,-56.1828236184091,-56.1828089294553,-56.1824904097698,-56.1821332481029,-56.1819624480281,-56.182023171303,-56.1830503946467,-56.1834757641577,-56.1835863391098,-56.1837314589773,-56.1837632470297,-56.1832215895602,-56.182726990116,-56.1822833065683,-56.1822827021401,-56.1811154241931,-56.1803449132592,-56.1799960102032,-56.1787797145191,-56.1786877433385,-56.1786726945097,-56.1786726718592,-56.1786798023555,-56.1782912649968,-56.1779719494843,-56.1777843919227,-56.1774757035575,-56.1771482880343,-56.1766952935801,-56.1767972045161,-56.1770384071993,-56.1773685937945,-56.1778651293944,-56.1773547603507,-56.1763282142679,-56.1756532697415,-56.1753824965371,-56.1751342880103,-56.1751327569067,-56.1748056807251,-56.1743438066915,-56.1741698678201,-56.1739674268252,-56.1739396570411,-56.1735449288564,-56.1733663819817,-56.1731171349112,-56.1722339851193,-56.1721663274463,-56.172364477867],&#34;lat&#34;:[-34.8777122664598,-34.877713859554,-34.8777826397537,-34.8777950085433,-34.8778671658792,-34.8779432675552,-34.8783535191324,-34.8786021663909,-34.8785711205217,-34.8785222604244,-34.87843696967,-34.8792078885025,-34.8800464307519,-34.8800599587703,-34.8804612704245,-34.8808663302904,-34.8810123072752,-34.8821339187014,-34.882170930917,-34.8821937314135,-34.8822118649761,-34.8822490399034,-34.8822932092346,-34.8822974143166,-34.8823477110967,-34.8824010867303,-34.8825055037244,-34.8823653765744,-34.882280211611,-34.8819311170965,-34.881553094418,-34.8811099725973,-34.8810091597559,-34.8807821029693,-34.8799225955994,-34.8798816582065,-34.8790807483498,-34.8790477431685,-34.8781895295587,-34.8773513950253,-34.8772758108307,-34.876686328513,-34.8765688766344,-34.8763983007762,-34.8761715075632,-34.8759855895972,-34.8756182647417,-34.8752690892463,-34.8749924436564,-34.8748155832783,-34.8747571106225,-34.8744474151051,-34.8744288254841,-34.8740195794255,-34.8735925490403,-34.8733620625252,-34.872763438268,-34.8728037448728,-34.8728344448361,-34.8719793677419,-34.8711046361146,-34.8709768424301,-34.8709397346367,-34.8709064182495,-34.8708764415745,-34.8708764375095,-34.8708027777979,-34.8707464176894,-34.8707233001686,-34.8706366589279,-34.8706304329803,-34.870629202887,-34.8706294127166,-34.8708540151586,-34.8712639099229,-34.8715802722457,-34.8717700776332,-34.8720954237558,-34.8724388475349,-34.8729178228881,-34.8730391468535,-34.8733315237442,-34.8737312884728,-34.8743298035827,-34.8743131733394,-34.8742799228579,-34.8742658425465,-34.8745439023322,-34.8748267741956,-34.8748285191164,-34.8751764427161,-34.8756644468924,-34.8758451963595,-34.876053372879,-34.8760805115132,-34.8765003959294,-34.8766902431999,-34.87695644158,-34.8769097507113,-34.8776935291225,-34.8777122664598]}]],[[{&#34;lng&#34;:[-56.1647141648486,-56.1657402776866,-56.1659614912169,-56.1660992589339,-56.1661968229387,-56.166196803379,-56.1668733064634,-56.1669937771527,-56.1669376535317,-56.1663497462158,-56.1663240149776,-56.1662912630183,-56.16621272245,-56.1661471003102,-56.1659619931425,-56.1657590701565,-56.1647496045493,-56.164940688096,-56.1649950761453,-56.1664122486841,-56.166464517307,-56.1667251183723,-56.16683289729,-56.1669205641687,-56.1669970219333,-56.1670741100229,-56.1670970852051,-56.1671833697043,-56.1672570745578,-56.1673626518179,-56.1674740229349,-56.1675609477643,-56.1675865142829,-56.1676228296749,-56.1675909102888,-56.1675607594089,-56.1674724471355,-56.167428633557,-56.1671061376862,-56.1666893029887,-56.1663367896346,-56.1662499464727,-56.1655570058091,-56.164517341074,-56.1644721261384,-56.1637576113627,-56.1631951720123,-56.1630502154265,-56.1627940693631,-56.1622291630264,-56.162065123427,-56.1612954998458,-56.1610876993444,-56.1600954859679,-56.1592498231713,-56.1585602885748,-56.1577924395273,-56.1571610592757,-56.1570135347651,-56.1569899710411,-56.1563684006017,-56.156130659982,-56.1553817095978,-56.1553454686586,-56.1552214881461,-56.1548913484326,-56.1546574070797,-56.1545822226369,-56.1544333391873,-56.1541279083354,-56.1538395887221,-56.1534670486114,-56.1533704543637,-56.152865582492,-56.1528220796073,-56.1524908347617,-56.1525483441534,-56.1526129989692,-56.1526974439417,-56.1529027113462,-56.1533328245537,-56.1541312332914,-56.155382082913,-56.1555613175813,-56.1565169315938,-56.157150255414,-56.1583054831273,-56.1583661827754,-56.1586793178631,-56.1590781199193,-56.1591053085973,-56.1602285097039,-56.1602525734055,-56.1603460955479,-56.1610072423958,-56.1618273508016,-56.1621182675014,-56.1626081784944,-56.1633702615201,-56.1637535291811,-56.1637802681861,-56.1640663718464,-56.1641156059133,-56.1642444890483,-56.1645353290419,-56.1647141648486],&#34;lat&#34;:[-34.8856202386946,-34.8849479717633,-34.8848044412463,-34.8847184450209,-34.8846528808518,-34.8846548172317,-34.8840493680857,-34.8839263420194,-34.8838988462313,-34.8834726559098,-34.8834608603681,-34.8834486650705,-34.8833074720335,-34.8832734378387,-34.8831774337194,-34.8830337477419,-34.8823198063148,-34.8821435321457,-34.8816250902195,-34.8817024721065,-34.8812561462998,-34.8791867682353,-34.8781634056693,-34.877329388462,-34.8766891991333,-34.8760354869972,-34.8757920510344,-34.8748678977583,-34.8739106829711,-34.8729516295552,-34.8717528237349,-34.8708196541421,-34.8705401549973,-34.870218672362,-34.8701136178827,-34.8700668177022,-34.8699477872443,-34.8698542997193,-34.8698326769544,-34.8695890864622,-34.8697762630192,-34.8698219012021,-34.8702161608822,-34.8708953778591,-34.8709528723945,-34.8714104021033,-34.8717516121469,-34.8718326863377,-34.8719567322291,-34.8722876862439,-34.8723750829833,-34.8727717925765,-34.8728785351264,-34.8733989568545,-34.8740417475248,-34.8749111760303,-34.8758649599417,-34.8767141282399,-34.8769227929462,-34.8769659035035,-34.8777881263967,-34.8780793216337,-34.8790837602943,-34.8791301318735,-34.8792986150613,-34.8797628667774,-34.8800951470463,-34.8802233843031,-34.880404604638,-34.8806094354828,-34.8808205981486,-34.8810425280542,-34.8811509507978,-34.8816473539287,-34.8816908406366,-34.8820419064168,-34.882072086078,-34.8821102565198,-34.8821526417973,-34.8822849923599,-34.8825499299793,-34.8830390766885,-34.8836925587333,-34.8838850310413,-34.8850507671674,-34.8858746314136,-34.8871993931998,-34.8872636820414,-34.8876327288533,-34.88811876629,-34.8881502375739,-34.8894555857304,-34.8894917438932,-34.8893722945213,-34.8887474497768,-34.8880242419883,-34.8877575727935,-34.8873236260794,-34.8866410819906,-34.8863020558962,-34.8862754748139,-34.8860774824374,-34.8860532229833,-34.8859672519792,-34.8857726887213,-34.8856202386946]},{&#34;lng&#34;:[-56.166196803379,-56.166197052992,-56.1662272273767,-56.166196803379],&#34;lat&#34;:[-34.8846548172317,-34.884652675616,-34.884625756347,-34.8846548172317]}]],[[{&#34;lng&#34;:[-56.1455993332644,-56.1451708823013,-56.144690304455,-56.1446242298494,-56.1447669507077,-56.1456077402379,-56.1459662582786,-56.1460313612916,-56.1471066339512,-56.1471670050862,-56.1476609547477,-56.1486642734815,-56.1494681517048,-56.1496403958322,-56.1499513269907,-56.1501859745037,-56.1506465377142,-56.1506968783914,-56.1519394989671,-56.1552167154332,-56.1553938552487,-56.1557032411238,-56.1568847059539,-56.1574512389287,-56.1574508473465,-56.1580039172924,-56.1588257878188,-56.1590032693505,-56.1593785362186,-56.1595688960587,-56.1599795783408,-56.1600307764999,-56.1600669132348,-56.1602525734055,-56.1602285097039,-56.1591053085973,-56.1590781199193,-56.1586793178631,-56.1583661827754,-56.1583054831273,-56.157150255414,-56.1565169315938,-56.1555613175813,-56.155382082913,-56.1541312332914,-56.1533328245537,-56.1529027113462,-56.1526974439417,-56.1526129989692,-56.1525483441534,-56.1524908347617,-56.1523736351886,-56.1522882206343,-56.1518939761871,-56.1518307464378,-56.1511441428646,-56.1510732902759,-56.1505072866416,-56.1501436182991,-56.1495702711787,-56.1492245395427,-56.1482709577562,-56.1481252059215,-56.1479765647942,-56.1471783509375,-56.146785474988,-56.1464277071446,-56.1463816567286,-56.1460980037749,-56.1457489737711,-56.1455993332644],&#34;lat&#34;:[-34.8867359596714,-34.887079547285,-34.8874728388656,-34.8875020596085,-34.8875513073248,-34.8878963987117,-34.8880342378664,-34.8880574228051,-34.8884403495022,-34.8884643552159,-34.888686588259,-34.8891481596437,-34.8895142590147,-34.8895969653303,-34.8897318717964,-34.8898331691882,-34.8900027736823,-34.8900160449383,-34.8903436276693,-34.8911286069328,-34.8911648583085,-34.8912267483497,-34.8915278500633,-34.89162768621,-34.8916314943264,-34.8917659058267,-34.8919701011354,-34.8913351653495,-34.8907708268056,-34.8904863967845,-34.88989842074,-34.8898251193583,-34.8897661959009,-34.8894917438932,-34.8894555857304,-34.8881502375739,-34.88811876629,-34.8876327288533,-34.8872636820414,-34.8871993931998,-34.8858746314136,-34.8850507671674,-34.8838850310413,-34.8836925587333,-34.8830390766885,-34.8825499299793,-34.8822849923599,-34.8821526417973,-34.8821102565198,-34.882072086078,-34.8820419064168,-34.8821939535827,-34.8823005615193,-34.8828293201962,-34.8828025574547,-34.8837885495124,-34.8838899822248,-34.8841679631601,-34.8843459501058,-34.884616812398,-34.8847664082984,-34.8851789262528,-34.885237880407,-34.8852950592591,-34.8856233312772,-34.8858766973612,-34.8861029332035,-34.8861300892919,-34.886338112825,-34.8866184082138,-34.8867359596714]}]],[[{&#34;lng&#34;:[-56.1738094897716,-56.1737028322008,-56.1736518309218,-56.173642861729,-56.1735766924064,-56.1735616743646,-56.1734790672457,-56.1733998273572,-56.1732897853175,-56.1733003631771,-56.1731949083419,-56.1730781931489,-56.1730165596963,-56.1729765924175,-56.1739105407452,-56.17506133007,-56.1761871473495,-56.1773550354926,-56.1784532102298,-56.1784271675852,-56.1785248194423,-56.1791039334564,-56.1792111650523,-56.179626994658,-56.1798244323571,-56.1805937041217,-56.1812289089496,-56.1808815396177,-56.1809011822479,-56.1810178078113,-56.1810418527119,-56.1811742105556,-56.1811741634851,-56.1813875968543,-56.1815726181079,-56.181566922991,-56.1815625560142,-56.1815916249935,-56.1816960443243,-56.1812346175423,-56.1812153384329,-56.1806478711257,-56.1806332391294,-56.1813269779704,-56.1815505289716,-56.1825446362133,-56.1836598929032,-56.1836770436119,-56.1836911864685,-56.1838043430238,-56.1845687949953,-56.1841244574901,-56.1836452276987,-56.1831623237931,-56.1827394744689,-56.182673705967,-56.1821867890182,-56.1817477630179,-56.1817312086471,-56.1811141187313,-56.1808368551914,-56.17967312613,-56.1786713729871,-56.1778073195804,-56.1778520551517,-56.1778273715884,-56.176707501807,-56.1761972350519,-56.1756439958106,-56.1754684436074,-56.1743632683951,-56.1742138563395,-56.1741472536574,-56.174010546035,-56.1740003220264,-56.1739447777831,-56.1738742958046,-56.1738094897716],&#34;lat&#34;:[-34.8866764941756,-34.8876005849473,-34.8880133839182,-34.8880847421843,-34.8886651903417,-34.888768768425,-34.8894982195393,-34.8904452647383,-34.8912705596202,-34.8913256543806,-34.8922981694953,-34.8933801491666,-34.8939572034349,-34.8943088522892,-34.8943784365089,-34.8944699587092,-34.8945570311148,-34.8946484849465,-34.8947497158028,-34.8949431177295,-34.8948796441061,-34.894913131568,-34.894933657832,-34.8946079173143,-34.8947318387675,-34.8951619815627,-34.8943973225623,-34.8937283795913,-34.8936433007139,-34.8929392893039,-34.8927995080484,-34.8919743725049,-34.89193839066,-34.8906487430106,-34.8894944552148,-34.8894471390681,-34.8894108573351,-34.889377221421,-34.8892678291036,-34.8884310071841,-34.8883957523356,-34.8874091082685,-34.8873836675667,-34.8871170844575,-34.8870296242198,-34.8866618110543,-34.8862394706956,-34.886232477106,-34.8862272168104,-34.8861846636873,-34.8858855033468,-34.8850570354739,-34.884206661015,-34.883342575137,-34.8825910930733,-34.8824740955211,-34.881601102119,-34.8808181125821,-34.8807821029693,-34.8810091597559,-34.8811099725973,-34.881553094418,-34.8819311170965,-34.882280211611,-34.8823653765744,-34.8825055037244,-34.8824010867303,-34.8823477110967,-34.8822974143166,-34.8822932092346,-34.8822490399034,-34.8834392777174,-34.8839667702796,-34.8849141370837,-34.8849812368604,-34.8855532089239,-34.8861443623959,-34.8866764941756]}]],[[{&#34;lng&#34;:[-56.1662272273767,-56.166197052992,-56.166196803379,-56.1662272273767],&#34;lat&#34;:[-34.884625756347,-34.884652675616,-34.8846548172317,-34.884625756347]}],[{&#34;lng&#34;:[-56.1702419237455,-56.171296202464,-56.1715810777148,-56.1729485879749,-56.1730781931489,-56.1731949083419,-56.1733003631771,-56.1732897853175,-56.1733998273572,-56.1734790672457,-56.1735616743646,-56.1735766924064,-56.173642861729,-56.1736518309218,-56.1737028322008,-56.1738094897716,-56.1738742958046,-56.1739447777831,-56.1740003220264,-56.174010546035,-56.1741472536574,-56.1742138563395,-56.1743632683951,-56.1731120272647,-56.172806262109,-56.1715780795019,-56.1702553990284,-56.1703688429662,-56.17018699375,-56.1696720898676,-56.1693905946933,-56.16895461985,-56.168813635474,-56.1681591195901,-56.167755913313,-56.1676176603457,-56.1671565475381,-56.1670173023924,-56.1669937771527,-56.1668733064634,-56.166196803379,-56.1661968229387,-56.1660992589339,-56.1659614912169,-56.1657402776866,-56.1647141648486,-56.1645353290419,-56.1642444890483,-56.1641156059133,-56.1640663718464,-56.1637802681861,-56.1638003241211,-56.1638298964777,-56.1638411643887,-56.1647314251737,-56.1651652188922,-56.1654466306902,-56.1654307908545,-56.1656722103607,-56.1668443065074,-56.1666892700885,-56.1669624349218,-56.1678249555865,-56.1677128356702,-56.1676744254106,-56.1683792311125,-56.1690501484457,-56.1690456793026,-56.1689368664245,-56.1698517141711,-56.1702419237455],&#34;lat&#34;:[-34.8931811582085,-34.8932587582289,-34.893278555939,-34.8933714855319,-34.8933801491666,-34.8922981694953,-34.8913256543806,-34.8912705596202,-34.8904452647383,-34.8894982195393,-34.888768768425,-34.8886651903417,-34.8880847421843,-34.8880133839182,-34.8876005849473,-34.8866764941756,-34.8861443623959,-34.8855532089239,-34.8849812368604,-34.8849141370837,-34.8839667702796,-34.8834392777174,-34.8822490399034,-34.8822118649761,-34.8821937314135,-34.882170930917,-34.8821339187014,-34.8810123072752,-34.8810839840739,-34.8814292053946,-34.8816179337162,-34.8820157086766,-34.8821512930451,-34.8827840088409,-34.8831726783502,-34.8833082541035,-34.8837511587707,-34.8838957503195,-34.8839263420194,-34.8840493680857,-34.8846548172317,-34.8846528808518,-34.8847184450209,-34.8848044412463,-34.8849479717633,-34.8856202386946,-34.8857726887213,-34.8859672519792,-34.8860532229833,-34.8860774824374,-34.8862754748139,-34.8863001668401,-34.8863255805306,-34.8863458262552,-34.887944517539,-34.8887449803581,-34.8892766862391,-34.8896868594426,-34.8897042534131,-34.8898349341419,-34.8907437136998,-34.890768114114,-34.8908523205007,-34.8915310171146,-34.8918891553783,-34.8919356396988,-34.8919957003617,-34.8920966580296,-34.8930928752012,-34.8931544652757,-34.8931811582085]}]],[[{&#34;lng&#34;:[-56.1602525734055,-56.1600669132348,-56.1600307764999,-56.1599795783408,-56.1595688960587,-56.1593785362186,-56.1590032693505,-56.1588257878188,-56.1593828453302,-56.1594603558386,-56.1604710391828,-56.1606275807152,-56.1626099810907,-56.1626613492493,-56.1625358695362,-56.1628887682017,-56.1636811559386,-56.1641278799412,-56.1644314271237,-56.1646856165491,-56.1648513753684,-56.1647979161315,-56.1647012956471,-56.1648296167523,-56.1649241572343,-56.1649245380863,-56.1649238118544,-56.1648992066553,-56.1648979643956,-56.1648724652036,-56.1648649043879,-56.1648556542418,-56.164752218534,-56.1647450372139,-56.1646776059909,-56.1646515180262,-56.1645435094378,-56.1644040013129,-56.1643433450309,-56.1642708159591,-56.1652240659078,-56.1654528722424,-56.16660296871,-56.1679596517194,-56.1691178740443,-56.1692175189852,-56.1692728143467,-56.1693236718462,-56.1696070096374,-56.1698361127918,-56.1699415921902,-56.170377438634,-56.1709955257307,-56.1710610111699,-56.1711149439844,-56.1712493308539,-56.1713676109579,-56.1714540371968,-56.1714790384239,-56.1715810777148,-56.171296202464,-56.1702419237455,-56.1698517141711,-56.1689368664245,-56.1690456793026,-56.1690501484457,-56.1683792311125,-56.1676744254106,-56.1677128356702,-56.1678249555865,-56.1669624349218,-56.1666892700885,-56.1668443065074,-56.1656722103607,-56.1654307908545,-56.1654466306902,-56.1651652188922,-56.1647314251737,-56.1638411643887,-56.1638298964777,-56.1638003241211,-56.1637802681861,-56.1637535291811,-56.1633702615201,-56.1626081784944,-56.1621182675014,-56.1618273508016,-56.1610072423958,-56.1603460955479,-56.1602525734055],&#34;lat&#34;:[-34.8894917438932,-34.8897661959009,-34.8898251193583,-34.88989842074,-34.8904863967845,-34.8907708268056,-34.8913351653495,-34.8919701011354,-34.8921703436198,-34.8922047058051,-34.8927211526529,-34.8928005108552,-34.8939127646834,-34.8939351654027,-34.8940211255679,-34.8941504155794,-34.8944797506137,-34.8947040435088,-34.8948634558125,-34.8950080378771,-34.8951033461967,-34.8953898022628,-34.8962766495253,-34.8962914461133,-34.8963068467811,-34.8963069088218,-34.8963105109136,-34.8964325518703,-34.896502751239,-34.8967282647211,-34.8967951319065,-34.8968769392174,-34.8975803971984,-34.8976497402279,-34.8983134304901,-34.8988912593473,-34.8998734894961,-34.900929859412,-34.9015114126672,-34.9022056707139,-34.9019417579406,-34.9019591819266,-34.902023743556,-34.9021057741947,-34.9021834992795,-34.9012426186969,-34.9006259541185,-34.900425902842,-34.8999079390482,-34.8994913258568,-34.8993016813856,-34.8985262531441,-34.8974510136156,-34.8973246434432,-34.8972163325845,-34.8961352470189,-34.8951469711953,-34.8944391503206,-34.8941912016138,-34.893278555939,-34.8932587582289,-34.8931811582085,-34.8931544652757,-34.8930928752012,-34.8920966580296,-34.8919957003617,-34.8919356396988,-34.8918891553783,-34.8915310171146,-34.8908523205007,-34.890768114114,-34.8907437136998,-34.8898349341419,-34.8897042534131,-34.8896868594426,-34.8892766862391,-34.8887449803581,-34.887944517539,-34.8863458262552,-34.8863255805306,-34.8863001668401,-34.8862754748139,-34.8863020558962,-34.8866410819906,-34.8873236260794,-34.8877575727935,-34.8880242419883,-34.8887474497768,-34.8893722945213,-34.8894917438932]}]],[[{&#34;lng&#34;:[-56.1822827021401,-56.1822833065683,-56.182726990116,-56.1832215895602,-56.1837632470297,-56.1837822943294,-56.1838096136122,-56.1835497567614,-56.1847978191349,-56.1851240192396,-56.1861785696608,-56.1863000604417,-56.1863359087212,-56.1863564830819,-56.1865886357951,-56.1865982404968,-56.1866423053014,-56.1867908876363,-56.1868387580014,-56.1868806344158,-56.1868845299665,-56.1869220996026,-56.1867350028776,-56.1863389634665,-56.1863211565979,-56.186290909168,-56.1862659354433,-56.185798687651,-56.1854328126132,-56.1852173405078,-56.1851371173721,-56.1849738107316,-56.1847681926489,-56.1845628904762,-56.1843525307383,-56.1843304754054,-56.1841095064461,-56.1836403403184,-56.1834698886622,-56.1833488295622,-56.182930123208,-56.1820796662722,-56.1810200093634,-56.1807190399791,-56.1796659556266,-56.1795963372226,-56.1793932299619,-56.1784264356097,-56.1783647440519,-56.1773241663225,-56.1765264929171,-56.1764580230552,-56.1764251304897,-56.1761916794222,-56.1760688356797,-56.1759896136121,-56.1759241672981,-56.1754659691445,-56.1746744713904,-56.1738953345696,-56.1741063884155,-56.174193023929,-56.174461816719,-56.1746032136635,-56.1746186962728,-56.1745267452042,-56.1737629604676,-56.1736818764537,-56.1735911854432,-56.172977788183,-56.172895953203,-56.1728452665145,-56.1727952271031,-56.172695034079,-56.1718509486548,-56.1717811685021,-56.1714094694705,-56.1710666378508,-56.170959044416,-56.1708795000687,-56.1698767470812,-56.1698025770337,-56.1694968194762,-56.1694195446236,-56.1694466135837,-56.1694863807593,-56.1695059491846,-56.1699185549977,-56.1700576887308,-56.1709588835,-56.1714042548561,-56.1714310169913,-56.1722654389908,-56.1724782737551,-56.1725091868572,-56.1734933485155,-56.173985134785,-56.1747312973637,-56.1754692513141,-56.1749453219083,-56.1745218401746,-56.1743798636203,-56.1735949541814,-56.1740131603354,-56.1742217437102,-56.1745505488748,-56.174759887585,-56.1748562827822,-56.1751194409587,-56.1753302378483,-56.1764494601261,-56.1764620640489,-56.176651195864,-56.1768492417032,-56.1769822243492,-56.1771107125017,-56.1775456740361,-56.1786817508584,-56.1786726945097,-56.1786877433385,-56.1787797145191,-56.1799960102032,-56.1803449132592,-56.1811154241931,-56.1822827021401],&#34;lat&#34;:[-34.8708764375095,-34.8708764415745,-34.8709064182495,-34.8709397346367,-34.8709768424301,-34.8709002686585,-34.8707767712825,-34.8700780355211,-34.8697766145533,-34.8698117568437,-34.8699349937335,-34.8690648107912,-34.8688078140848,-34.8686590273516,-34.8667448378195,-34.8666611585721,-34.8661841727138,-34.8643716954315,-34.8634701688245,-34.863019356329,-34.8629697690889,-34.8624693910311,-34.8621003473726,-34.8613275083287,-34.8612386630479,-34.8610580752891,-34.8609743149566,-34.8602189654054,-34.8596991355887,-34.8594576706142,-34.8592811173404,-34.8587385936301,-34.8582611528329,-34.8577031429551,-34.8572395138497,-34.8571945056378,-34.8567263992233,-34.8557316695491,-34.8553310245929,-34.8551420704778,-34.8546159207956,-34.8548841941511,-34.8552206460012,-34.8553251382239,-34.8556840933462,-34.855706820067,-34.8551658412556,-34.8559286619041,-34.8559775059909,-34.8568013663423,-34.8574617535209,-34.8575149907369,-34.857546988509,-34.8577187843895,-34.8578115451029,-34.8577296898521,-34.8576663396312,-34.8572181684201,-34.8564549108765,-34.8566237813007,-34.8572767180368,-34.8574928178183,-34.8583979879711,-34.8587200970878,-34.8587570685136,-34.8588259736943,-34.8594229615762,-34.8594817618525,-34.8595490481164,-34.8600168541591,-34.860079679514,-34.8601178377975,-34.8601559412269,-34.8602291854726,-34.860855932632,-34.8609207674415,-34.861228619551,-34.8614887900333,-34.861572947169,-34.861633749154,-34.8623719541138,-34.8624275837726,-34.8626569094058,-34.8627337340263,-34.8627516882857,-34.8627831311683,-34.8628056144301,-34.862511284236,-34.8624120331169,-34.8632794604714,-34.8637289606234,-34.8637559311995,-34.8645829643883,-34.8648212606171,-34.8648509574479,-34.8658710820772,-34.8655683083887,-34.8664016123116,-34.8672189647961,-34.8677891729121,-34.8682094688361,-34.8683450629321,-34.8691179144565,-34.8696350448755,-34.8698632279831,-34.8702318116937,-34.8702448712385,-34.8702508847071,-34.8702731189669,-34.8702909287977,-34.8703685502512,-34.8703694243119,-34.8703913067065,-34.8704142201192,-34.8704296056939,-34.8704359665674,-34.8704574985526,-34.8705453068398,-34.870629202887,-34.8706304329803,-34.8706366589279,-34.8707233001686,-34.8707464176894,-34.8708027777979,-34.8708764375095]}]],[[{&#34;lng&#34;:[-56.2205938665659,-56.2206681322173,-56.2217896298229,-56.2222824908102,-56.2234305400484,-56.2235514118126,-56.2234351660758,-56.2230044178812,-56.2230055622794,-56.2227489032972,-56.2227571495434,-56.2226013072991,-56.2224549229919,-56.2220693007834,-56.2211411554484,-56.2216756744468,-56.2220472860965,-56.2235894514306,-56.2231819012466,-56.2229834455645,-56.2225446559362,-56.2224472590394,-56.2224019856908,-56.2218362072377,-56.2212557111944,-56.2207256144766,-56.2201454441548,-56.2200334826945,-56.2193472440348,-56.2192968761959,-56.219307763564,-56.2191171682931,-56.2190984019481,-56.2189823621034,-56.2189575245888,-56.218865088289,-56.216512281553,-56.2148276334851,-56.2147989061534,-56.2147355285694,-56.2147898615903,-56.2148544632403,-56.2149190849007,-56.2149830045324,-56.2150469425068,-56.2151108821488,-56.2151245458622,-56.2151747801026,-56.2152370505504,-56.215299966331,-56.2153625586115,-56.215424467206,-56.2154863758005,-56.2155476040441,-56.2155667739305,-56.2156085087876,-56.2156690500103,-56.2157289308924,-56.2157888117745,-56.2158476654602,-56.2159062023158,-56.2159643723155,-56.2160218819747,-56.2160790514585,-56.2160848677915,-56.2161355339213,-56.2161913360332,-56.2162464744695,-56.2163009092096,-56.2163550237845,-56.2164259170126,-56.2164964667302,-56.2165673599584,-56.2166372693457,-56.2167061348615,-56.2167739731807,-56.216840807649,-56.2169066182559,-56.2169714016663,-56.2170351812257,-56.217097576738,-56.2171593085747,-56.2172196730396,-56.217279013643,-56.217337006885,-56.2173939562552,-56.2174495582639,-56.2175041364113,-56.2175573505218,-56.2176091939255,-56.2176600168028,-56.2177094923186,-56.2177576004625,-56.2178043212243,-56.21785004147,-56.217869311408,-56.2178930436474,-56.2179525276581,-56.2179471795718,-56.2176033208966,-56.2173454764758,-56.2169476994425,-56.2168578797869,-56.2166166320359,-56.2163965218528,-56.2159443653307,-56.2156560933282,-56.215114650759,-56.2148243243636,-56.2144699582746,-56.2141907428371,-56.2140510910004,-56.2136216504233,-56.2126461810394,-56.2123689780787,-56.2120671174014,-56.2116673995901,-56.2111311013407,-56.2107371948597,-56.2102005597699,-56.2101374188131,-56.2092882275902,-56.2084271468422,-56.2075381216825,-56.2067894094922,-56.2066670885218,-56.2054238796471,-56.2036349670591,-56.202457306376,-56.201064247123,-56.2008696463817,-56.2009367233813,-56.2009396712669,-56.200977337906,-56.2009981970521,-56.2010112098063,-56.2010420266923,-56.2009909268572,-56.2010338130991,-56.2010238929024,-56.2010423180061,-56.2010825912929,-56.201165599357,-56.201203405441,-56.2012471900888,-56.2013809696149,-56.2033329529694,-56.2038690261027,-56.2048671975519,-56.2052849996898,-56.2058782573146,-56.20590675201,-56.2070257257601,-56.2072071992613,-56.2083752136867,-56.208654570501,-56.2087051670365,-56.2087658000257,-56.2087921517512,-56.2093762277085,-56.2101162524611,-56.2103845211583,-56.2105911278625,-56.2111917342773,-56.2124734402859,-56.2128615521118,-56.2141093991546,-56.2141958028036,-56.2166535344007,-56.2170712345706,-56.2179146614629,-56.2196155253086,-56.2217072793803,-56.2214888203298,-56.2214849073622,-56.221481875282,-56.2214771214409,-56.2213857145869,-56.221371410052,-56.2211805589774,-56.2211693347585,-56.2211411289698,-56.2211329918258,-56.2208687209421,-56.2208213098312,-56.2208499019082,-56.2209123913346,-56.2208803915695,-56.2206638638106,-56.2204972867221,-56.2204274480029,-56.2203954493866,-56.2201146311462,-56.2201048824792,-56.2200858737417,-56.2201358203047,-56.2203656282923,-56.2205367060604,-56.2205938665659],&#34;lat&#34;:[-34.8271595494539,-34.8270947310078,-34.8264473875844,-34.8261591202473,-34.8254892946988,-34.8254713018367,-34.8253797983061,-34.8247810585958,-34.8247143825554,-34.8243507413518,-34.8243090522797,-34.8241011363751,-34.8239062813822,-34.8241373338752,-34.8229999472959,-34.8226873060588,-34.8224563002566,-34.8215456039205,-34.821087160823,-34.820862431591,-34.8203680232787,-34.8202826992749,-34.8202422717587,-34.8196130539217,-34.8189748581211,-34.8192784680338,-34.8196361866287,-34.8197005166431,-34.8201164085214,-34.8206479835708,-34.8206936107889,-34.8225239418077,-34.8227251322334,-34.8239846217844,-34.8242819153427,-34.8243346089484,-34.8257183625855,-34.8267063705704,-34.8267232180888,-34.8267603866507,-34.8267647288901,-34.826773546771,-34.826786870309,-34.826795691525,-34.8268090150629,-34.8268223419359,-34.8268223019153,-34.8268266541599,-34.826848999017,-34.8268623292251,-34.8268801684252,-34.8268980076253,-34.8269158468255,-34.8269336860256,-34.8269426406437,-34.8269560342178,-34.826973880088,-34.8269962316153,-34.8270185831426,-34.8270409380049,-34.8270678018592,-34.8270901600566,-34.827117027246,-34.8271438944355,-34.8271466591946,-34.8271707616249,-34.8271976321494,-34.827229015001,-34.8272558888605,-34.8272872717121,-34.827327619187,-34.8273679666619,-34.8274083141368,-34.8274576762608,-34.8275025360628,-34.8275473958648,-34.8275967679939,-34.8276461434581,-34.8276955222574,-34.8277494100487,-34.8277987988531,-34.8278526933145,-34.827906591111,-34.8279604922425,-34.8280189057011,-34.8280728135028,-34.8281312336316,-34.8281896570953,-34.8282480872293,-34.8283065173632,-34.8283649541672,-34.8284278999633,-34.8284908490944,-34.8285492959036,-34.8286122550399,-34.8286437446132,-34.8286797265034,-34.8287651772392,-34.8287657571274,-34.828973568045,-34.8291271344617,-34.829364039421,-34.8294175336761,-34.8295534804539,-34.8296803492168,-34.8299386257499,-34.8301017565473,-34.8304098821222,-34.8305730162546,-34.8307769080735,-34.8309318021367,-34.8310095198944,-34.8308278539514,-34.8304173726519,-34.8303055383094,-34.830180253697,-34.8300192106429,-34.8297954785919,-34.8296344121925,-34.8294106768064,-34.829368327365,-34.8299001692502,-34.8303940072685,-34.8309059512911,-34.8313672241383,-34.8314434367922,-34.8322417968875,-34.8333017201837,-34.8339947542658,-34.8348485357512,-34.8349650028437,-34.8361277039349,-34.8362032613148,-34.8371686874177,-34.8377405547796,-34.8380100024964,-34.8386481046635,-34.8387202518293,-34.8387901824504,-34.838872301193,-34.8391135645409,-34.8400377680957,-34.8414289720048,-34.8420048500811,-34.8426717875661,-34.8425791848096,-34.8414106488324,-34.8410980843015,-34.8405137362716,-34.8402691201168,-34.8399113089178,-34.8399427751457,-34.8408137976876,-34.8409708510138,-34.8418700163823,-34.8420801833707,-34.8421470983588,-34.8421786095064,-34.8422237081479,-34.8426850876278,-34.8432819958951,-34.8436356707288,-34.8438723650691,-34.844708853134,-34.8439613342861,-34.8437257961464,-34.8429598486536,-34.8429059693997,-34.8414788039817,-34.8412429729341,-34.840735800796,-34.839702981478,-34.8384464976629,-34.8347267578522,-34.8346731349227,-34.8345929788704,-34.834494598923,-34.8335320547035,-34.8334796433505,-34.8326144559539,-34.8325684796827,-34.8324665055955,-34.8324298485916,-34.831197167395,-34.8310802394093,-34.8310638193744,-34.8310268868723,-34.83088165129,-34.8299646928831,-34.8292440942289,-34.8289498726371,-34.8288130179486,-34.8276212523103,-34.8275798792979,-34.8274963898046,-34.8274681483282,-34.827314225073,-34.8272166633581,-34.8271595494539]}]],[[{&#34;lng&#34;:[-56.2572348392905,-56.2571291587159,-56.2570921596345,-56.2570580420392,-56.2570247181866,-56.2570006457718,-56.2569692896006,-56.2568851595459,-56.2568359341591,-56.2568072660409,-56.2567222221816,-56.2566166944249,-56.256482245086,-56.2564127692555,-56.2564013033422,-56.2562158210176,-56.2561793221942,-56.2560815584416,-56.2559445211013,-56.2558224581503,-56.2556998615908,-56.2555695877385,-56.2554595376496,-56.2553335726862,-56.2552596745751,-56.2550995986865,-56.2549815111191,-56.2548650377174,-56.2547418141679,-56.2546221191047,-56.2544928057479,-56.2543114788996,-56.2542197582636,-56.2541055126776,-56.2539862111507,-56.2538561507419,-56.2537308127686,-56.2536189017199,-56.2535362124082,-56.2534313516622,-56.2532506251235,-56.2531287089149,-56.2529814596413,-56.2528806076294,-56.2527559900276,-56.2521644890477,-56.2521576124073,-56.2521145325449,-56.2520710234394,-56.2520522137388,-56.2519687506948,-56.2519402026385,-56.2518762696666,-56.2517729630554,-56.251666201329,-56.2515429711093,-56.2514437265931,-56.251333796566,-56.2512276751698,-56.251114009883,-56.2510017586589,-56.2508986921715,-56.2508021290381,-56.2506830276145,-56.250577266404,-56.2504847120047,-56.2504091997277,-56.250318432917,-56.250218581421,-56.2500936169736,-56.2499751225297,-56.2498505316083,-56.2497488124825,-56.2496070593768,-56.2495897771305,-56.2495606821255,-56.2495441202508,-56.2495118369348,-56.2494678008909,-56.2494355375853,-56.2492669973314,-56.2492567787281,-56.2492443523195,-56.2492119622818,-56.2492009566058,-56.2491804860487,-56.2491534921272,-56.249104113328,-56.2490553481785,-56.2490191495099,-56.2489789754578,-56.2489443375942,-56.2489270286675,-56.2489112805458,-56.2489056576459,-56.2488924041441,-56.2488818653757,-56.2488727406698,-56.2488626421284,-56.2488348811447,-56.2488137635872,-56.2487909718329,-56.2487318746883,-56.2487106770895,-56.2487005318573,-56.2486825425798,-56.2486705563982,-56.2486627056827,-56.2485798429483,-56.2485589321641,-56.2485445914349,-56.2485276360239,-56.2485076523845,-56.2484950525531,-56.2484856276924,-56.2484528974793,-56.2483887577341,-56.2483714488074,-56.2483667530524,-56.2483443748447,-56.2483219499463,-56.2482991115012,-56.2482802284294,-56.2482715906414,-56.2482156751377,-56.2482030953166,-56.2481849859771,-56.2481582521898,-56.2481488473395,-56.2480735951967,-56.2480591744262,-56.2480402713441,-56.247996408723,-56.2479443685512,-56.247927213037,-56.2479176614444,-56.2478995721152,-56.2478797752388,-56.2478184702889,-56.2478059038081,-56.2477736071519,-56.2477599334333,-56.2477311052325,-56.247687836251,-56.2476657848785,-56.2476387442663,-56.2475130994681,-56.2474642809578,-56.2474345522926,-56.2473937779309,-56.2473134698473,-56.2473016570885,-56.2472584214574,-56.2472482161943,-56.247221482407,-56.2471845433566,-56.2471704761018,-56.2471237186544,-56.2471146406393,-56.2471068099342,-56.2470813167867,-56.2470588985584,-56.2470495070483,-56.2470314443996,-56.2470181108564,-56.2469946054007,-56.2469750086275,-56.246921921249,-56.2469122829449,-56.2469102485624,-56.2468915455835,-56.2468641781361,-56.2468536993986,-56.2468057480022,-56.2468073888484,-56.2467873118275,-56.2466723191895,-56.2465938653955,-56.2465592808928,-56.2465102822896,-56.2464131855476,-56.2463515470925,-56.2462921031023,-56.2462108078429,-56.2461752828551,-56.2461311867803,-56.2461025987034,-56.2460261526115,-56.2459373134616,-56.2458620079579,-56.2458264362794,-56.2458064392997,-56.245778678316,-56.2457659184021,-56.2457456812986,-56.2457093358877,-56.2456851234007,-56.2456713362903,-56.2456497718357,-56.2456359180242,-56.2456132463319,-56.2455829773881,-56.245564767997,-56.2455569372918,-56.2455318176703,-56.2455197914681,-56.2455017755102,-56.2454862741824,-56.2454447994595,-56.2453323014414,-56.2452899129139,-56.2452724905954,-56.245244809653,-56.2452136269046,-56.2451841917241,-56.2451357333996,-56.245096159657,-56.2450795310812,-56.2450632893717,-56.2450485551061,-56.2450325735307,-56.2450128633657,-56.2449918658701,-56.2449511648795,-56.2449068020004,-56.2448661210202,-56.2448389870265,-56.2447797231293,-56.2446944258059,-56.244653764836,-56.2445723495147,-56.2445347701341,-56.2444599848988,-56.2444014613834,-56.2443538835129,-56.2442348954811,-56.2442124505723,-56.2441420876177,-56.244039127852,-56.2439739675805,-56.2439147770545,-56.2438359230541,-56.2438026258819,-56.2437737109697,-56.243673312525,-56.2435532706163,-56.2434699009538,-56.2434271389003,-56.2433785871943,-56.2433156680786,-56.2432384082337,-56.2431441329469,-56.2430608099751,-56.2429292154418,-56.2428865400997,-56.2428272928777,-56.24278520784,-56.2427157320096,-56.2426777224071,-56.2426579888966,-56.2426016098205,-56.2425432630629,-56.2425001541639,-56.2424579824149,-56.2423657781961,-56.2422494115162,-56.2421779813445,-56.2420891288543,-56.2420299916891,-56.2419500871469,-56.2418821120905,-56.2418536707559,-56.2417815568982,-56.2417305739384,-56.2417561004364,-56.2417502040621,-56.2417326516766,-56.2417256647399,-56.2417009153093,-56.241700268309,-56.2416697659114,-56.2416416647523,-56.2415178442282,-56.2415052077112,-56.2414927279418,-56.2414895763164,-56.2414929013645,-56.2414606413939,-56.2414468642887,-56.2414149911843,-56.2413646485546,-56.2412997083966,-56.2412142543258,-56.2411336460874,-56.2410745322675,-56.2410075443868,-56.2409490275415,-56.240901443001,-56.2408525311092,-56.2408667017507,-56.2408784144579,-56.2408095222618,-56.2407968323839,-56.2408645139557,-56.2408640603885,-56.2408068909047,-56.2408629831663,-56.2408965971685,-56.240873475244,-56.2408728916096,-56.2408607820311,-56.2408888831902,-56.2408518343402,-56.2400332309943,-56.2383726821877,-56.2379769340888,-56.2374299093089,-56.2367516295026,-56.2361779269629,-56.235638251972,-56.2335459996106,-56.2328040136161,-56.2322308880406,-56.2320370807093,-56.2320012479441,-56.231637361944,-56.2313332962704,-56.231210418425,-56.2310520178977,-56.2306501594581,-56.2305654349785,-56.2304207939783,-56.229926872185,-56.2296468453837,-56.2288724226607,-56.2283032191079,-56.228063665564,-56.2277758487957,-56.2272847004984,-56.2269914559314,-56.226477460851,-56.2256994165198,-56.2256994162601,-56.2249073077495,-56.2241357398322,-56.223622761943,-56.2228395747305,-56.2220702679488,-56.2212557111944,-56.2218362072377,-56.2224019856908,-56.2224472590394,-56.2225446559362,-56.2229834455645,-56.2231819012466,-56.2235894514306,-56.2220472860965,-56.2216756744468,-56.2211411554484,-56.2220693007834,-56.2224549229919,-56.2226013072991,-56.2227571495434,-56.2227489032972,-56.2230055622794,-56.2230044178812,-56.2234351660758,-56.2235514118126,-56.2234305400484,-56.2222824908102,-56.2217896298229,-56.2206681322173,-56.2205938665659,-56.2205930729142,-56.2205367060604,-56.2203656282923,-56.2201358203047,-56.2200858737417,-56.2201048824792,-56.2201146311462,-56.2203954493866,-56.2204274480029,-56.2204972867221,-56.2206638638106,-56.2208803915695,-56.2209123913346,-56.2208499019082,-56.2208213098312,-56.2208687209421,-56.2211329918258,-56.2211411289698,-56.2211693347585,-56.2211805589774,-56.221371410052,-56.2213857145869,-56.2214771214409,-56.221481875282,-56.2214849073622,-56.2214888203298,-56.2217072793803,-56.2217911236585,-56.2221860451609,-56.2235408096781,-56.2245585912408,-56.2252012702671,-56.2260181212107,-56.2261731510007,-56.2262954563245,-56.2263614787671,-56.2264176849991,-56.2265772224342,-56.2268938739704,-56.2269310822874,-56.2276595523832,-56.2286232446787,-56.2291692473536,-56.2295598402353,-56.2308111072886,-56.2308893981976,-56.2310365144169,-56.2312513648969,-56.2317035952553,-56.2317304503699,-56.2324084921384,-56.2325541860672,-56.2327488707084,-56.2333078806575,-56.2336185019818,-56.2342111230164,-56.2345696762216,-56.2354230439783,-56.2364450027147,-56.2380273730327,-56.2381547719108,-56.2400567106842,-56.2403928545017,-56.2406263536708,-56.2405675366405,-56.2409960499128,-56.2410924014832,-56.2416440083584,-56.2422441187866,-56.2426981862941,-56.2431954381287,-56.244857385843,-56.2449489827926,-56.2450314713483,-56.2459741341358,-56.246009398826,-56.2447475422246,-56.2444025849782,-56.2447116671764,-56.2448023609599,-56.245077234448,-56.2452891888692,-56.2455370087234,-56.2462632282108,-56.2465806402419,-56.2466945907678,-56.2470741916835,-56.2472017332707,-56.2479407976656,-56.248219638858,-56.248598011722,-56.2494520674265,-56.2497455365222,-56.2499763188417,-56.2500076259592,-56.2501930749649,-56.2506132911558,-56.2506987626128,-56.2507847734207,-56.2510796993057,-56.2510712968665,-56.2510892132093,-56.2512219434351,-56.2514664581489,-56.2528802407735,-56.2553509149634,-56.2595130348084,-56.262364391993,-56.2622396876798,-56.2621171044605,-56.2619969358198,-56.261890841104,-56.2618059840077,-56.2617657432545,-56.2617359478883,-56.2616843412734,-56.261650590534,-56.2616185139913,-56.2615644461071,-56.2615070431696,-56.2614262815187,-56.2613985605557,-56.2613192930087,-56.2612782518427,-56.2612118109108,-56.2611543346021,-56.2611161882624,-56.2610853590296,-56.2609840401102,-56.2609562791265,-56.2609130635057,-56.2607694627805,-56.260643737941,-56.2605612487325,-56.2605351219249,-56.260484635888,-56.2603930486541,-56.2602124688578,-56.2600979497974,-56.2599891670287,-56.2599092391412,-56.2597885969229,-56.259680427804,-56.2595691637556,-56.2594452665253,-56.259327692556,-56.259227587596,-56.2591657223572,-56.2591065651817,-56.2590555588764,-56.2590413982401,-56.2590829196537,-56.2591409429111,-56.2591907019065,-56.2592540145584,-56.2592942619817,-56.259296156292,-56.2593294734745,-56.2593802596662,-56.2594166717782,-56.2594602609249,-56.2594987674504,-56.2595218660296,-56.2595357331812,-56.2595276556821,-56.2594653568864,-56.2593731159821,-56.2592747652601,-56.2591712718859,-56.2590640499221,-56.2589653590247,-56.2588701099023,-56.2587742004393,-56.2586431795352,-56.2584883396803,-56.2583283771835,-56.2582425929424,-56.258165239716,-56.2580938028742,-56.2580183439581,-56.2579454063423,-56.2578520582003,-56.2577111655384,-56.2576909284349,-56.2576609729861,-56.2575986608501,-56.2575436724912,-56.2575424318514,-56.2574877970082,-56.2575348012494,-56.2575693990924,-56.2576110739185,-56.2575295918962,-56.2574801063752,-56.2574296803692,-56.2573854975831,-56.2573386134037,-56.2573190633212,-56.257356776104,-56.2573372460318,-56.2573232321378,-56.2572988045463,-56.2572348392905],&#34;lat&#34;:[-34.8174636968343,-34.8172912498412,-34.8172306986134,-34.8172101413449,-34.8172010032988,-34.8171904044994,-34.8171853418885,-34.817189317272,-34.8171909647883,-34.817186629219,-34.8171869160336,-34.8172079468798,-34.8172430116302,-34.8172564852456,-34.8172610942893,-34.8172605406704,-34.8172665704468,-34.8172664970756,-34.8172625750529,-34.8172742343993,-34.8172859404364,-34.8172983868553,-34.8173088989433,-34.8173209251456,-34.8173279821183,-34.8173620063322,-34.8173870992732,-34.8174118520389,-34.8174380388774,-34.8174634719939,-34.8174909528332,-34.8175294860391,-34.8175393911474,-34.8175517308446,-34.8175646174906,-34.8175786647351,-34.8175922050516,-34.8176042912847,-34.8176132225575,-34.8176168377553,-34.8176148433934,-34.8176074529153,-34.8176015632111,-34.8175877560904,-34.8175706872876,-34.8174187577864,-34.8173953323836,-34.8173836241477,-34.8173657349218,-34.8173298897688,-34.8172579193185,-34.8172254559096,-34.817204144919,-34.8171729421603,-34.8171327347576,-34.8170790670798,-34.8170388329967,-34.8169806096361,-34.8169313909195,-34.816877683221,-34.8168329935067,-34.8167792524578,-34.8167299937204,-34.8166808150244,-34.8166360986297,-34.8165688039241,-34.8164924378735,-34.8164062134053,-34.816416452019,-34.8164258835497,-34.8164307860781,-34.8164474746848,-34.8164218281249,-34.8164223017025,-34.8164321000891,-34.8164318266147,-34.8164361488438,-34.8164369092359,-34.8164500426759,-34.8164553454106,-34.8164546116989,-34.8164585403917,-34.8164648970033,-34.8164729811725,-34.8164769098653,-34.8164782772371,-34.816482526095,-34.8164830797139,-34.8164955794937,-34.8164984076189,-34.8165015492391,-34.8165017960331,-34.8165051044059,-34.8165064517675,-34.8165106606047,-34.8165110608111,-34.8165168571338,-34.8165156765249,-34.8165218597137,-34.8165290834392,-34.8165340593387,-34.816538768434,-34.8165510014095,-34.8165506345536,-34.8165573847016,-34.8165610465901,-34.8165605129815,-34.8165650820046,-34.8165661292113,-34.816570491461,-34.8165693708831,-34.8165770281655,-34.8165844319838,-34.8165838250042,-34.8165890543677,-34.8165890877183,-34.8165887275325,-34.8165933299061,-34.8165991929298,-34.8166074705321,-34.8166168753824,-34.8166163017532,-34.8166209107969,-34.8166248394897,-34.8166250195826,-34.8166296086159,-34.8166303223173,-34.816639500384,-34.8166486250899,-34.8166715235659,-34.8166703562972,-34.8166813419628,-34.8166942619593,-34.8167064615843,-34.8167158797748,-34.8167214893345,-34.8167254447077,-34.8167307007517,-34.8167289598539,-34.8167354965584,-34.8167343026093,-34.8167401122722,-34.8167402923651,-34.8167495237926,-34.8167489501634,-34.8167540327847,-34.8167634643154,-34.8167717018971,-34.8167933930838,-34.8168089277621,-34.8168527370223,-34.8168534240433,-34.8168691588248,-34.8168763358595,-34.8168855139262,-34.8169087725879,-34.8169227064406,-34.8169396618517,-34.8169397752435,-34.8169482462789,-34.8169632006579,-34.8169756870975,-34.8169867594744,-34.8169972115315,-34.817008944249,-34.8170343506851,-34.8170526000968,-34.8171064278572,-34.8171979684003,-34.817319577784,-34.8173930023176,-34.8174280270474,-34.8174353574946,-34.8174688947906,-34.8175103161527,-34.8175410653442,-34.8176546972804,-34.8177264876378,-34.8177556826945,-34.8177837971938,-34.817850251466,-34.8178961151191,-34.8179286385589,-34.8179811389681,-34.8179905571586,-34.8180122216649,-34.8180294305399,-34.818079109494,-34.8181342846158,-34.8181525740482,-34.8181519737386,-34.8181434560124,-34.8181435493939,-34.818148371881,-34.8181578234221,-34.8181566561534,-34.8181724776463,-34.8181925546672,-34.8182176676186,-34.8182241509622,-34.8182302007489,-34.8182200355064,-34.8182215229402,-34.8182165403706,-34.8182259252106,-34.81825029111,-34.8182918525443,-34.8183155114125,-34.8183499891935,-34.8184097466787,-34.8184356467027,-34.8184397154677,-34.8184379412193,-34.8184473460696,-34.818460319427,-34.8184862394613,-34.8185111322992,-34.8185250594818,-34.8185600508611,-34.8185733243732,-34.8185855840292,-34.8185917538778,-34.8185867379576,-34.8185878852159,-34.818598210541,-34.8186054609469,-34.8186065681846,-34.8185965897051,-34.8185602442941,-34.8185666742769,-34.8185718369394,-34.8185400205309,-34.8184726657943,-34.8184401356844,-34.8184279427295,-34.8183852873977,-34.8183858210063,-34.818352016906,-34.8183208074771,-34.8183062266241,-34.8183167120317,-34.8183331338341,-34.8183352749384,-34.818317172269,-34.8182498975737,-34.8182187415058,-34.8181423954655,-34.8180569047091,-34.8179759362849,-34.8178905122295,-34.8178051348649,-34.8177333311672,-34.817665996441,-34.8175720346491,-34.8175088220488,-34.8174136529677,-34.8173842844883,-34.8173606523005,-34.8173510606872,-34.8173521479146,-34.8173520145125,-34.8173535352968,-34.8173679227167,-34.8173164294937,-34.8172491214479,-34.8171999294116,-34.8171190343586,-34.8170381993366,-34.816957264263,-34.8168899228667,-34.8168180324576,-34.8167279860183,-34.8166470976355,-34.8165571245674,-34.8164668980353,-34.8163767782248,-34.816277687121,-34.8161740470045,-34.8160704669189,-34.8159352571878,-34.8158737921554,-34.81582277918,-34.8157250287676,-34.8157150569583,-34.8156143383484,-34.815588911902,-34.8154987587411,-34.8153952053359,-34.8153006032138,-34.8152060611228,-34.8151070700705,-34.8150261550072,-34.814940804323,-34.8148689539346,-34.8147925278531,-34.8147116194599,-34.8146171640801,-34.8145226753499,-34.8144371979337,-34.8143289887941,-34.8142072593484,-34.814085796707,-34.8138604871758,-34.8137295663233,-34.8136349175104,-34.8135359531386,-34.8134095746287,-34.813296789796,-34.8131751804123,-34.8130534909873,-34.812949870881,-34.8128882991269,-34.8128079989916,-34.813255228224,-34.8141733418563,-34.8143817484241,-34.8146813638563,-34.8150464788221,-34.8153613211943,-34.8156478689744,-34.8168043987597,-34.8160495961553,-34.8153934044071,-34.8151783521494,-34.8151368773693,-34.8147553019881,-34.8144195381421,-34.814285186204,-34.8141208385855,-34.8136811233526,-34.8135862412841,-34.813449453669,-34.8137877680841,-34.8139662217058,-34.8144300075587,-34.8147525405639,-34.8148883039139,-34.8150678730211,-34.8153549712528,-34.8155310820777,-34.8158397546013,-34.8162883858223,-34.816288385972,-34.8167689404729,-34.817248754592,-34.8175568268061,-34.8180098775053,-34.818508117411,-34.8189748581211,-34.8196130539217,-34.8202422717587,-34.8202826992749,-34.8203680232787,-34.820862431591,-34.821087160823,-34.8215456039205,-34.8224563002566,-34.8226873060588,-34.8229999472959,-34.8241373338752,-34.8239062813822,-34.8241011363751,-34.8243090522797,-34.8243507413518,-34.8247143825554,-34.8247810585958,-34.8253797983061,-34.8254713018367,-34.8254892946988,-34.8261591202473,-34.8264473875844,-34.8270947310078,-34.8271595494539,-34.8271600221217,-34.8272166633581,-34.827314225073,-34.8274681483282,-34.8274963898046,-34.8275798792979,-34.8276212523103,-34.8288130179486,-34.8289498726371,-34.8292440942289,-34.8299646928831,-34.83088165129,-34.8310268868723,-34.8310638193744,-34.8310802394093,-34.831197167395,-34.8324298485916,-34.8324665055955,-34.8325684796827,-34.8326144559539,-34.8334796433505,-34.8335320547035,-34.834494598923,-34.8345929788704,-34.8346731349227,-34.8347267578522,-34.8384464976629,-34.8383914185356,-34.8381682106988,-34.8374012777638,-34.8368122006283,-34.8364243873668,-34.8359314628757,-34.8358379096497,-34.8357623643688,-34.8357194993575,-34.8356875103209,-34.8355967114118,-34.8354164915817,-34.8354030390916,-34.8349709214647,-34.8343733004396,-34.8340389130384,-34.8338127748193,-34.8330780658117,-34.833041009601,-34.8329487837172,-34.8328244894587,-34.8325655777334,-34.8325498033129,-34.8321515244877,-34.8320461470605,-34.8319493078716,-34.8316131598141,-34.8314294870815,-34.8310790612765,-34.8308661807695,-34.8303595097937,-34.8297527248726,-34.8288131623481,-34.8287385936475,-34.8275866294319,-34.8274153118089,-34.8273870809047,-34.8273144284194,-34.8270590745343,-34.8270063668423,-34.8266860650463,-34.82633428023,-34.8260681829969,-34.8257278189397,-34.8247766877336,-34.8247209207836,-34.8246650972414,-34.8257561000288,-34.8258109517551,-34.8263293266335,-34.8264736141463,-34.8263985341404,-34.82636779043,-34.8263139239463,-34.8262973764208,-34.826306852452,-34.8263809676412,-34.8264105718802,-34.8265839491144,-34.8270658606555,-34.8271755091986,-34.8280394954292,-34.8283363367105,-34.8286891025952,-34.82803450494,-34.8278529731979,-34.8276882425859,-34.8276592535527,-34.8275377486685,-34.8272379410099,-34.8271739201903,-34.8271043773888,-34.8269070622566,-34.8266759459911,-34.8264699512095,-34.8264968679409,-34.8266326765159,-34.8256783886366,-34.8240115156543,-34.8274313293397,-34.8237457786069,-34.8237401823874,-34.8237496139182,-34.8237635477709,-34.8237909552389,-34.8237752471379,-34.8237120745581,-34.8236923310426,-34.8237085527418,-34.8237149960649,-34.8237062582252,-34.8236836398937,-34.823684100131,-34.8236904434024,-34.8236439127387,-34.8235720690204,-34.8235681203173,-34.8235949741665,-34.8236584535711,-34.8236674115243,-34.8236827460994,-34.8236768764056,-34.8236641965329,-34.8236200204168,-34.8235964882807,-34.8235924128456,-34.8235845020991,-34.8235795261996,-34.8235388718998,-34.8234625658801,-34.8234181162897,-34.8234004738577,-34.8233692977794,-34.8233019697233,-34.8232888562937,-34.8233117614398,-34.823330170934,-34.8233486204489,-34.8233355003492,-34.8232637300021,-34.8231873239308,-34.8231063955273,-34.8230164291294,-34.8229173246853,-34.8228180334783,-34.8227412138604,-34.822650907287,-34.8224704142021,-34.8223215440927,-34.8222223862878,-34.8221231217612,-34.8220328085177,-34.821938039643,-34.8218432440878,-34.821757479857,-34.8216627510029,-34.8215680621694,-34.8214554107389,-34.8213609753695,-34.8212891783419,-34.8212264193088,-34.8211591646239,-34.8210964322712,-34.8210336732381,-34.8209754098568,-34.8209216487975,-34.8208139265758,-34.8207919218941,-34.8207023223519,-34.8206100881177,-34.8205269118883,-34.8204500989405,-34.8203689570936,-34.8202905299801,-34.8201901515457,-34.8199517552653,-34.8198428057439,-34.8196815092258,-34.8195572251294,-34.8194475485663,-34.8191996673944,-34.8189970362256,-34.8188748665529,-34.8187849335055,-34.8186495837021,-34.8184921558459,-34.8183965465377,-34.8182991229605,-34.8182137722763,-34.8181231922286,-34.8180376281009,-34.8178617240494,-34.8177332177754,-34.8176409968814,-34.8175632866033,-34.8174636968343]}]],[[{&#34;lng&#34;:[-56.2565989786218,-56.2554597110723,-56.2540375311512,-56.2537897083175,-56.2537859104379,-56.2537580942408,-56.2537372457599,-56.2536576346084,-56.253650764779,-56.2536043699238,-56.2534524492094,-56.2533764566847,-56.2533569933137,-56.2530279998618,-56.252986495324,-56.2528729329389,-56.252789987561,-56.252605459216,-56.2526055991338,-56.2525211841283,-56.2512738184075,-56.2504675149989,-56.2497779591815,-56.2493535193632,-56.2490888065171,-56.2488135053534,-56.2486951870034,-56.248598011722,-56.248219638858,-56.2479407976656,-56.2472017332707,-56.2470741916835,-56.2466945907678,-56.2465806402419,-56.2462632282108,-56.2455370087234,-56.2452891888692,-56.245077234448,-56.2448023609599,-56.2447116671764,-56.2444025849782,-56.2447475422246,-56.246009398826,-56.2459741341358,-56.2450314713483,-56.2449489827926,-56.244857385843,-56.2431954381287,-56.2426981862941,-56.2422441187866,-56.2416440083584,-56.2410924014832,-56.2409960499128,-56.2405675366405,-56.2406263536708,-56.2403928545017,-56.2400567106842,-56.2381547719108,-56.2380273730327,-56.2364450027147,-56.2354230439783,-56.2345696762216,-56.2342111230164,-56.2336185019818,-56.2333078806575,-56.2327488707084,-56.2325541860672,-56.2324084921384,-56.2317304503699,-56.2317035952553,-56.2317031889421,-56.2312513648969,-56.2310365144169,-56.2308893981976,-56.2308111072886,-56.2295598402353,-56.2291692473536,-56.2286232446787,-56.2276595523832,-56.2269310822874,-56.2268938739704,-56.2265772224342,-56.2264176849991,-56.2263614787671,-56.2262954563245,-56.2261731510007,-56.2260181212107,-56.2252012702671,-56.2245585912408,-56.2235408096781,-56.2221860451609,-56.2217911236585,-56.2217938598282,-56.2217860048534,-56.2217874786601,-56.2217943439517,-56.2217989611667,-56.2219855876103,-56.2239629707307,-56.2246967224786,-56.2259285611027,-56.2266100492302,-56.2267355506211,-56.2271894613812,-56.2279690759626,-56.228127616465,-56.2278789865725,-56.2285412591748,-56.2286413373071,-56.2302353166443,-56.2302950235665,-56.2308925336698,-56.2319041662084,-56.2315327105625,-56.2313854482996,-56.2313845966193,-56.2314263593581,-56.2314805095563,-56.231557404041,-56.2322617306136,-56.2325204373686,-56.2334888801526,-56.2325042308876,-56.2320821175655,-56.230721649014,-56.2312824489063,-56.2318472968795,-56.2322004890297,-56.2325139707002,-56.232707424142,-56.2327737709287,-56.2327740022103,-56.232953847556,-56.2326464490227,-56.2330371505174,-56.2338958700478,-56.2345150560445,-56.2345222730998,-56.2353678625253,-56.236103168408,-56.236742814325,-56.2368444008352,-56.2376360777212,-56.2380967441114,-56.2381904869122,-56.2386203482447,-56.2390495561756,-56.2391679899399,-56.239676802766,-56.240189582019,-56.2403597917851,-56.2404319660055,-56.2411094130984,-56.2414471916994,-56.2416372758221,-56.2417486363778,-56.2418786302948,-56.2419442847871,-56.2421001578756,-56.242940427891,-56.2436836645305,-56.2444455241076,-56.244787840649,-56.2450818656186,-56.2452494392396,-56.2453547930409,-56.2455408623349,-56.247499392399,-56.2476961472038,-56.2479033407255,-56.2497100124723,-56.2498139594137,-56.2498488507414,-56.2498677138029,-56.2498852028225,-56.2499010109751,-56.2499154450858,-56.2499285184948,-56.2499409315632,-56.249953684807,-56.2499667782263,-56.2499802318314,-56.2499936921065,-56.2500074925571,-56.2500202658112,-56.2500268492065,-56.2500385952642,-56.2500496876515,-56.250059726162,-56.2500687441461,-56.2500763947584,-56.2500836785148,-56.2500906421061,-56.2500972455116,-56.2501031885766,-56.2501084246103,-56.2501133137985,-56.25011716245,-56.2501203507609,-56.250123172216,-56.2501249931551,-56.2501264672487,-56.2501276011668,-56.2501283949095,-56.2501285083013,-56.2501289818789,-56.2501290952707,-56.2501288818273,-56.2501286550437,-56.2501281014248,-56.2501275277957,-56.2501269808469,-56.2501260870526,-56.2501248264025,-56.2501232522573,-56.2501216581018,-56.2501193769254,-56.2501170957489,-56.2501141275515,-56.2501111393437,-56.2501078109605,-56.2501044825773,-56.2501008140187,-56.25009714546,-56.2500934969117,-56.2500898283531,-56.2500861998151,-56.2500825512668,-56.2500792695743,-56.250075621026,-56.2500716523126,-56.2500670032483,-56.250061667163,-56.2500556507268,-56.2500492674348,-56.2500429108232,-56.2500372145521,-56.2500315382914,-56.250029137053,-56.250019498749,-56.2500019763789,-56.249990470445,-56.2499772569638,-56.2499620091001,-56.2499457206997,-56.249928405103,-56.2499107693411,-56.2498941607756,-56.2498785794066,-56.2498640185639,-56.249850138072,-56.2498376316221,-56.2498257855128,-56.2498146197543,-56.2498048213677,-56.249795703332,-56.2497808690149,-56.2497744857228,-56.2497691296272,-56.249764800728,-56.2497614923551,-56.2497586885602,-56.2497594779829,-56.2497613189324,-56.2497638402327,-56.2497663682031,-56.2497688895034,-56.2497717576492,-56.2497739187638,-56.2497760998886,-56.2497779408381,-56.249779441612,-56.2497805755302,-56.2497813892832,-56.249781502675,-56.2497816160668,-56.2497813626027,-56.249781129149,-56.249780875685,-56.2497806222209,-56.2497803687569,-56.2497794349419,-56.2497784944569,-56.2497772137964,-56.2497742522691,-56.2497706037208,-56.249767615513,-56.2497622394071,-56.2497561962905,-56.2497494528127,-56.2497423891698,-56.2497346184956,-56.249726507646,-56.2497177097754,-56.2497092587503,-56.2497011412305,-56.2496947379282,-56.2496897019977,-56.2496850062426,-56.2496806573331,-56.2496742540308,-56.249665135995,-56.2496580523418,-56.2496502816676,-56.249640483281,-56.249635100505,-56.2496283770375,-56.2496219937455,-56.2496156171236,-56.2496112615439,-56.2496052184273,-56.2495991819809,-56.2495955134222,-56.2495911578426,-56.2495881896452,-56.2495865954897,-56.2495870490569,-56.2495888633259,-56.2495927119775,-56.2495982681763,-56.2496103143888,-56.2496237079629,-56.2496405166315,-56.2496525428338,-56.2496700318533,-56.2496851329747,-56.2496927368962,-56.2497006876633,-56.249701481406,-56.2497009077768,-56.2497006543127,-56.249702108396,-56.2497052700265,-56.2497115332566,-56.2497201843849,-56.2497312100711,-56.2497436231395,-56.2497566698681,-56.2497693764212,-56.2497861917599,-56.2497999455198,-56.2498034473257,-56.2498042210581,-56.2498022800571,-56.2497935088669,-56.2497819762525,-56.2497690629261,-56.2497544553927,-56.2497394876734,-56.249726574347,-56.2497126271541,-56.2497034891081,-56.2496998405597,-56.2497016614988,-56.2497048498098,-56.2497052766966,-56.2497033156853,-56.2497006943334,-56.2496977061256,-56.2496954249492,-56.2496934839481,-56.2496918631122,-56.2496919498236,-56.2496930904118,-56.2496945444951,-56.2496966789292,-56.2496988200334,-56.2497020083444,-56.2497062171817,-56.2497141879591,-56.2497276215538,-56.2497444569029,-56.2497609454064,-56.2497760665381,-56.2497918480103,-56.2498107110718,-56.2498319620315,-56.249845695781,-56.249864211997,-56.2498810406759,-56.2498999037374,-56.249922522069,-56.2499478484638,-56.2499731548482,-56.2499967536854,-56.2500182847896,-56.2500439313495,-56.2500692177237,-56.2500911290239,-56.2501140475102,-56.2501335642421,-56.2501544950367,-56.2501528808709,-56.2501451101967,-56.2501318900454,-56.2501186298734,-56.2501060567225,-56.250093136726,-56.2500750940876,-56.2500611735751,-56.250048280259,-56.2500360406134,-56.2500193653469,-56.2500023499049,-56.2499853277928,-56.2499690594028,-56.2499561660867,-56.2499429259251,-56.2499183265719,-56.2498985296955,-56.2498811473976,-56.249865839503,-56.2498550139199,-56.2498547604559,-56.2498527994445,-56.2498474166685,-56.2498396459943,-56.2498277798746,-56.2498152000536,-56.2498138193415,-56.2498112980412,-56.2498134391454,-56.2498220902737,-56.2498252585744,-56.2498284202049,-56.2498363643019,-56.2498515588047,-56.2498653325749,-56.2498736235174,-56.2498890648142,-56.2499048529565,-56.2499128170638,-56.2499201074904,-56.2499266842155,-56.2499322404143,-56.2499412117077,-56.2499614154606,-56.2499833334309,-56.2500083196503,-56.2500322586629,-56.2500551971596,-56.2500713254774,-56.2500816841529,-56.2500886744246,-56.2500911557043,-56.2500950043558,-56.2501087581157,-56.2501207843179,-56.2501321701899,-56.2501530609638,-56.25017597278,-56.2501903935505,-56.2502167871623,-56.2502414398764,-56.2502712285725,-56.2502959012968,-56.2503253298072,-56.2503445063637,-56.2503636895903,-56.2503845736941,-56.2504054844784,-56.2504158231436,-56.2504128616163,-56.2504109006049,-56.2504106671512,-56.2504083659644,-56.2504019826724,-56.2504007020119,-56.250402522951,-56.2504043172097,-56.2504081658612,-56.2504195517332,-56.2504322649564,-56.2504388416815,-56.2504351731229,-56.2504168103194,-56.2504008154037,-56.2503855275194,-56.2503702863258,-56.2503604679288,-56.2503530374301,-56.250347654654,-56.2503333739558,-56.2503204539593,-56.2503120029342,-56.2503066201582,-56.2503029515995,-56.2503013307636,-56.2502939002649,-56.2502823743206,-56.2502736031304,-56.2502654856107,-56.2502546666978,-56.2502646585175,-56.2502750038528,-56.2502867098899,-56.2502867966013,-56.2502944005229,-56.2503197335878,-56.2503419450428,-56.2503634894871,-56.2503843335703,-56.2504072053659,-56.2504328585959,-56.2504469525312,-56.2504545631228,-56.2504601193216,-56.2504704579869,-56.2504855791186,-56.2504911353174,-56.2504925894006,-56.2505046356131,-56.2505234786643,-56.2505392601366,-56.2505410810757,-56.2505394602398,-56.2505313694004,-56.250535218052,-56.2505526870612,-56.2505606378283,-56.2505614048905,-56.250548171399,-56.2505283745226,-56.2505281677493,-56.2505296618532,-56.250534217536,-56.2505716234938,-56.2506074352962,-56.2506375374874,-56.2506705211646,-56.2506835078621,-56.2507036849346,-56.2506900779171,-56.2507053791417,-56.2507212139748,-56.2507370021172,-56.2507570657978,-56.2507757420964,-56.2508029628014,-56.2508287160831,-56.2508538823953,-56.2508832908954,-56.2509062027116,-56.2509257261136,-56.2509575825428,-56.2509848699489,-56.2510063610324,-56.2510321610048,-56.2510622298454,-56.251086602415,-56.2511024172378,-56.2511210535156,-56.2511439853422,-56.2511655097762,-56.2511898556653,-56.2512196577017,-56.251244330426,-56.2512655613754,-56.2512970842992,-56.2513169478767,-56.2513392060225,-56.2513754247014,-56.2513918931946,-56.2514206813747,-56.2514442802119,-56.2514692931117,-56.2515076328845,-56.2515281768129,-56.2515490675868,-56.2515702985361,-56.2515932370328,-56.2516161755294,-56.2516373797983,-56.2516569032004,-56.2516784543148,-56.2517085698462,-56.2517359506338,-56.2517574950782,-56.2517790662029,-56.2518256302172,-56.2518485887242,-56.2518763363677,-56.2518972204714,-56.2519301841383,-56.2519538696869,-56.2519706783556,-56.2519871468488,-56.2519998800823,-56.2520071438284,-56.2520225917953,-56.252037712927,-56.2520504461605,-56.2520570295558,-56.2520595108354,-56.2520609649187,-56.2520617586613,-56.2520612317229,-56.252059610887,-56.2520501526758,-56.2520454569208,-56.2520458904777,-56.2520411947227,-56.2520337642239,-56.252001801073,-56.2519840785997,-56.2519673966631,-56.2519465992707,-56.2519216997627,-56.2519084395908,-56.2518886627247,-56.2518644235572,-56.2518525774479,-56.2518445799901,-56.2518412516069,-56.251862469216,-56.2519124016341,-56.2519339527486,-56.2519770749878,-56.2520030483829,-56.252028014592,-56.2520522737697,-56.2520785873403,-56.2521056012721,-56.2521271323762,-56.2521483166348,-56.2521732628336,-56.2521982290426,-56.2522423317875,-56.2522642230774,-56.2522877952342,-56.2523117209066,-56.2523339056812,-56.2523581648589,-56.2523773480856,-56.2524002665719,-56.2524217910059,-56.2524436422752,-56.2524692688248,-56.2524901329182,-56.2525130714149,-56.2525377174588,-56.2525585882224,-56.2525832542766,-56.252600729956,-56.2526154909019,-56.2526343472933,-56.2526614079158,-56.2526843730929,-56.252710406519,-56.252738127482,-56.2527552629859,-56.2527499936017,-56.2527456647025,-56.2527430166702,-56.2527427898866,-56.2527299832819,-56.2529594482895,-56.253149613029,-56.253246336245,-56.2532829017694,-56.2533146781573,-56.2533362092615,-56.2533826332035,-56.2534164439739,-56.2534451254323,-56.2534874739392,-56.2535045560822,-56.2535414217615,-56.2535728112832,-56.2535891663846,-56.2536099437667,-56.2536205158857,-56.253634803254,-56.25365894904,-56.2536725960781,-56.2536876104881,-56.2537210944233,-56.2537552453691,-56.253766497839,-56.2537876887677,-56.2538102137177,-56.2538323851521,-56.2538606797443,-56.253885939438,-56.2538992463007,-56.2539255598713,-56.2539419616635,-56.2539631192416,-56.2539835831287,-56.2540033733351,-56.2540255447694,-56.2540789256326,-56.2541197200047,-56.254148268061,-56.2541740747034,-56.2542067382155,-56.254263887689,-56.2542927759207,-56.2543109319509,-56.2543724836947,-56.2543930276231,-56.2544095161266,-56.254426371486,-56.2544442540418,-56.2544573074405,-56.2544865091672,-56.2545297181179,-56.2545602872164,-56.254601361733,-56.2547276401913,-56.2548920593249,-56.2549668702351,-56.2550063505961,-56.255069409784,-56.2551540867874,-56.2552356288407,-56.2553996467623,-56.2555303404829,-56.2555811403632,-56.2557230202009,-56.2558403140257,-56.2557783887559,-56.2558384864165,-56.2558845168222,-56.2560345675405,-56.2561857254966,-56.2562642459916,-56.2562747914302,-56.2562493316332,-56.2561905346434,-56.2561361465941,-56.2561023291536,-56.2560682248985,-56.2561251742688,-56.2562171550389,-56.2565592247864,-56.257029247189,-56.2572183513815,-56.2574150594956,-56.2574280390006,-56.2575173189,-56.2575578464678,-56.257649707176,-56.2577002865945,-56.2577613047298,-56.257770642879,-56.2578625436079,-56.2579237751866,-56.2579432919185,-56.2579733807695,-56.2579520831191,-56.2578692604053,-56.2580123742127,-56.2580629136105,-56.2580518412335,-56.2581540139266,-56.258317705013,-56.2583788899009,-56.2583785497255,-56.2582446406651,-56.2581489112951,-56.2583400765505,-56.2584824099555,-56.2586130573337,-56.2586558927584,-56.2587558909967,-56.2587398026995,-56.2589306477899,-56.2590319200186,-56.2591729260723,-56.25905891394,-56.2591459855117,-56.2595149357888,-56.2599574306614,-56.2604143729849,-56.2606644953128,-56.2608404060344,-56.2613262832804,-56.2609129100933,-56.260852705711,-56.2612204887195,-56.2617348073,-56.2619986300268,-56.262189214983,-56.2619671137731,-56.2620166526549,-56.2631118641502,-56.2634824552735,-56.2641567763715,-56.2648616265474,-56.2654787648214,-56.2656843708577,-56.2657066690241,-56.2659640484279,-56.2660366325281,-56.2660987779114,-56.2661297472163,-56.2661270658335,-56.2660780739004,-56.2659800833642,-56.265844933664,-56.2658017047031,-56.2658129038121,-56.2658465745103,-56.2658431327353,-56.265912315081,-56.2658585406815,-56.2658080479745,-56.2656978044524,-56.2657608636403,-56.2656348319759,-56.2656507468503,-56.265753146327,-56.2657516122024,-56.2657495111189,-56.2657343833171,-56.2657322021922,-56.2657314884908,-56.2656693897982,-56.2656075045491,-56.2655667301874,-56.265458967945,-56.265356757886,-56.2653366952145,-56.2652906043621,-56.2652691153674,-56.2652302699396,-56.2652074715144,-56.264791757472,-56.2638273316586,-56.2637724841248,-56.2636905184141,-56.2636188986955,-56.2632699684827,-56.2630908304205,-56.2624224816832,-56.2612248100546,-56.2589038206211,-56.25805997106,-56.257766515094,-56.2565989786218],&#34;lat&#34;:[-34.8362031331833,-34.8358779788262,-34.8359680407015,-34.8359820318563,-34.8357079782093,-34.8350641907627,-34.8345816612927,-34.83414343784,-34.8341056223199,-34.8339293613941,-34.8334697001486,-34.8332305268008,-34.8331615679036,-34.8323170327736,-34.8324849640465,-34.8326338004049,-34.832470564869,-34.8321005208318,-34.8321004373181,-34.8320289282263,-34.8309678865039,-34.8303184887335,-34.8297208219573,-34.8293445537537,-34.8291082029488,-34.8288694782247,-34.828747892328,-34.8286891025952,-34.8283363367105,-34.8280394954292,-34.8271755091986,-34.8270658606555,-34.8265839491144,-34.8264105718802,-34.8263809676412,-34.826306852452,-34.8262973764208,-34.8263139239463,-34.82636779043,-34.8263985341404,-34.8264736141463,-34.8263293266335,-34.8258109517551,-34.8257561000288,-34.8246650972414,-34.8247209207836,-34.8247766877336,-34.8257278189397,-34.8260681829969,-34.82633428023,-34.8266860650463,-34.8270063668423,-34.8270590745343,-34.8273144284194,-34.8273870809047,-34.8274153118089,-34.8275866294319,-34.8287385936475,-34.8288131623481,-34.8297527248726,-34.8303595097937,-34.8308661807695,-34.8310790612765,-34.8314294870815,-34.8316131598141,-34.8319493078716,-34.8320461470605,-34.8321515244877,-34.8325498033129,-34.8325655777334,-34.8325651227961,-34.8328244894587,-34.8329487837172,-34.833041009601,-34.8330780658117,-34.8338127748193,-34.8340389130384,-34.8343733004396,-34.8349709214647,-34.8354030390916,-34.8354164915817,-34.8355967114118,-34.8356875103209,-34.8357194993575,-34.8357623643688,-34.8358379096497,-34.8359314628757,-34.8364243873668,-34.8368122006283,-34.8374012777638,-34.8381682106988,-34.8383914185356,-34.8385222961986,-34.8397785033182,-34.8400435045045,-34.8414382496194,-34.8416631264572,-34.8415795626122,-34.8405052619012,-34.8414449265102,-34.8407379852559,-34.840362855125,-34.8402937694958,-34.840039955264,-34.840985653775,-34.8411779654657,-34.8413246472554,-34.8421368654129,-34.8422466194034,-34.8413323202951,-34.841298071875,-34.8409553315666,-34.8403750314046,-34.841887063989,-34.84248648755,-34.8425780984922,-34.8426394399394,-34.8426732667302,-34.8427213014361,-34.8437015769893,-34.8440793351422,-34.8454914267273,-34.8460189622886,-34.8462498648148,-34.8470271513291,-34.8477068692877,-34.8483721023654,-34.8487856189598,-34.8485998331453,-34.8488362128039,-34.8489165924415,-34.8489168726405,-34.8491347556852,-34.8493070011833,-34.8497744789402,-34.8492759685123,-34.8508784616257,-34.8508874495943,-34.8504295334352,-34.8513496979876,-34.8521720058387,-34.8522532382466,-34.8529728602189,-34.8527438735982,-34.852695021611,-34.8524792777947,-34.8522569606199,-34.8521957619178,-34.8519380146255,-34.8516690184273,-34.851579728098,-34.8515386322252,-34.8511468446822,-34.8509680672394,-34.8508598987189,-34.8508042103751,-34.8507237985286,-34.8506884953811,-34.8506046804297,-34.8501220815411,-34.8497137476195,-34.8492842527847,-34.849097263016,-34.8489331783933,-34.8488391594867,-34.8487800494208,-34.8486756555822,-34.8475728568407,-34.8474642908504,-34.8473509323886,-34.8463443832854,-34.8464296706037,-34.8464385685258,-34.8464520254659,-34.8464654890761,-34.8464834650135,-34.8465014442858,-34.8465194268933,-34.8465419218278,-34.8465644134273,-34.8465869050268,-34.8466139022833,-34.8466408995398,-34.8466678934613,-34.8466948940528,-34.8467129000056,-34.8467399005972,-34.8467714135159,-34.8467984207775,-34.8468254347093,-34.8468524486411,-34.8468749602509,-34.8469019775177,-34.8469244924626,-34.8469515130645,-34.8469740313444,-34.8469965496243,-34.8470145622472,-34.8470370871973,-34.8470551064902,-34.8470776347753,-34.8471001663955,-34.8471226946806,-34.8471452296357,-34.8471677612559,-34.8471948018681,-34.8472173368232,-34.8472443807705,-34.8472669157257,-34.847293959673,-34.8473164946281,-34.8473435385754,-34.8473705825226,-34.8473931208129,-34.8474201680952,-34.8474427097205,-34.8474652513458,-34.8474877929711,-34.8475103379314,-34.8475283772348,-34.8475464165381,-34.8475644558414,-34.8475824951447,-34.8476005344481,-34.8476230827435,-34.8476411220468,-34.8476681759992,-34.8476907209596,-34.847717774912,-34.8477403198723,-34.8477673771598,-34.8477944344473,-34.8478214917347,-34.8478485556923,-34.8478711106578,-34.8478981746154,-34.8479207262458,-34.8479477868684,-34.8479592261012,-34.8480019114485,-34.8480515470468,-34.8480741186876,-34.8480966969985,-34.8481237909715,-34.8481463792875,-34.8481689709386,-34.8481960715818,-34.8482231688899,-34.848250262863,-34.848277353501,-34.8483044408039,-34.8483315247718,-34.8483540997477,-34.8483766713884,-34.8483992396941,-34.8484218046648,-34.8484624156089,-34.8484849705744,-34.8485075255399,-34.8485300738353,-34.8485526187957,-34.8486030128518,-34.8486292449804,-34.8486562789225,-34.8486833128646,-34.8487103468067,-34.8487373807488,-34.8487644113558,-34.8487869396409,-34.848813973583,-34.8488410108601,-34.8488680448023,-34.8488905764224,-34.8489176170346,-34.8489401519898,-34.8489626836099,-34.8489807129081,-34.8490032478633,-34.8490212771614,-34.8490393064596,-34.8490573357578,-34.849075365056,-34.8490933976892,-34.8491114303224,-34.8491339719477,-34.8491565202431,-34.8491745595464,-34.8491926055198,-34.8492151571503,-34.8492332097939,-34.8492557680944,-34.8492738207379,-34.8492918767165,-34.8493099326951,-34.8493279886738,-34.8493460446523,-34.8493640939608,-34.8493821365992,-34.8494001792376,-34.849418221876,-34.8494362711845,-34.8494588361551,-34.8494768887987,-34.8494949414422,-34.8495175097479,-34.8495355557214,-34.8495581140219,-34.8495806689874,-34.8496032239529,-34.8496212665913,-34.8496438215568,-34.8496663765223,-34.8496844158257,-34.849702458464,-34.8497250034244,-34.8497475450497,-34.8497700766698,-34.8497926049549,-34.8498106209129,-34.8498286302007,-34.8498466161432,-34.8498600930936,-34.8498735600389,-34.8498870403243,-34.8499005005995,-34.8499139742148,-34.8499319734975,-34.8499499761152,-34.8499725077354,-34.8499950460256,-34.8500130753238,-34.8500310979518,-34.8500491139098,-34.8500716288547,-34.8500941337944,-34.850112126407,-34.8501346180065,-34.8501480949569,-34.8501615752423,-34.8501750388525,-34.8501930214599,-34.8502110374179,-34.850229063381,-34.8502516050063,-34.8502741666419,-34.8502922326257,-34.8503057962875,-34.8503238756115,-34.8503374459433,-34.8503510096051,-34.850364576602,-34.8503826359156,-34.850405180876,-34.8504277091611,-34.8504502341111,-34.8504682600742,-34.8504862960425,-34.8505088376678,-34.8505268769711,-34.8505494185964,-34.8505719602217,-34.8505899928549,-34.8506080188181,-34.8506305504382,-34.8506485730662,-34.8506665956943,-34.8506846149873,-34.8507071399373,-34.8507296615523,-34.8507521698271,-34.8507746580915,-34.8507926306938,-34.8508106032961,-34.8508285792334,-34.8508420495137,-34.8508555064537,-34.8508689567237,-34.8508824303391,-34.8508958906142,-34.8509138632165,-34.8509273201566,-34.8509407670915,-34.8509496950292,-34.8509541173099,-34.8509585462607,-34.8509584762246,-34.8509628951702,-34.8509628117938,-34.8509717530718,-34.8509761820226,-34.8509851333056,-34.8510030892326,-34.8510211218659,-34.8510391778444,-34.8510617561553,-34.8510753198171,-34.8510888834789,-34.8511024471407,-34.8511160274778,-34.8511341034667,-34.8511521727855,-34.8511657364473,-34.8511793101142,-34.8511928904513,-34.8512064674533,-34.8512335614264,-34.8512516340802,-34.8512697067341,-34.8512697867754,-34.8512743591335,-34.8512834338135,-34.8512970041454,-34.8513195757862,-34.8513376050843,-34.8513556377176,-34.851373683691,-34.8513917363345,-34.8514098056533,-34.8514233659801,-34.8514377700753,-34.8514639435737,-34.8514819628667,-34.8515044678064,-34.8515224870994,-34.8515405030573,-34.8515585056751,-34.8515900019185,-34.851612493518,-34.8516304928007,-34.851643963081,-34.8516574300263,-34.851679938301,-34.8517024499108,-34.8517204558636,-34.8517384651515,-34.8517564610991,-34.8517654090471,-34.851774350325,-34.8517832782627,-34.8517877072135,-34.8517966451564,-34.8518101121016,-34.8518326103712,-34.8518641366301,-34.8518821559231,-34.8519001718811,-34.8519181544885,-34.851931634774,-34.8519541297085,-34.8519630743215,-34.8519675066073,-34.8519809768876,-34.8519989194744,-34.8520078507472,-34.8520212710017,-34.8520347112665,-34.852043625864,-34.8520525771471,-34.8520615250951,-34.8520704697081,-34.852083919978,-34.8521019125906,-34.852124457551,-34.8521424935192,-34.8521650284744,-34.8521830644427,-34.8522056194082,-34.8522236520414,-34.8522461803265,-34.8522642029546,-34.8522822189125,-34.8523047138471,-34.8523181941325,-34.8523362000853,-34.8523542393887,-34.8523723287178,-34.8523859023848,-34.8524039817087,-34.8524310723467,-34.8524491349954,-34.852467187639,-34.8524852336124,-34.8524988006092,-34.852512364271,-34.8525304202496,-34.8525484662231,-34.8525665055264,-34.8525845381596,-34.8526025908032,-34.8526206567869,-34.8526432217576,-34.8526612777362,-34.852683849377,-34.8527018419895,-34.8527198346021,-34.8527378238797,-34.8527558531778,-34.8527738557956,-34.8527827837333,-34.8527827103621,-34.852787145983,-34.8527870759469,-34.8527824902486,-34.8527869125293,-34.8528048951367,-34.8528228977544,-34.8528409070423,-34.8528588996549,-34.8528768755922,-34.85289488488,-34.8529129075081,-34.8529308967856,-34.8529398480687,-34.852953315014,-34.852975843299,-34.8529938759323,-34.8530164375679,-34.8530344535258,-34.853043408144,-34.8530614107617,-34.8530794367248,-34.8530975093787,-34.8531020817368,-34.853129122349,-34.8531561596261,-34.853178677906,-34.8531859383171,-34.8531987849424,-34.8532140061257,-34.8532327557954,-34.8532574652053,-34.8533133206781,-34.8533268876749,-34.8533434395445,-34.8533646037928,-34.8533775171192,-34.85338570134,-34.8534033204266,-34.8534138391847,-34.8534172909649,-34.853420986204,-34.8534253951444,-34.8534298274303,-34.8534387753783,-34.853453399587,-34.8534768816974,-34.8534862398569,-34.853497942559,-34.8535060934293,-34.8535189767402,-34.853536605832,-34.8535471512705,-34.8535576833688,-34.8535729345676,-34.8535799281744,-34.8535910272318,-34.8536044674966,-34.8536134087745,-34.853631331351,-34.853640279299,-34.8536492205769,-34.85364909718,-34.8536625641252,-34.8536804967068,-34.8536849223226,-34.8536983592523,-34.8537117528264,-34.8537206974394,-34.8537296420523,-34.8537385866653,-34.8537475212731,-34.853756459216,-34.8537608948369,-34.8537698427849,-34.8537742784058,-34.8537831930033,-34.8537921142709,-34.8537965498918,-34.8538054911697,-34.8538233637204,-34.8538368073202,-34.8538502342448,-34.8538591788578,-34.8538906184053,-34.8539130733192,-34.8539265369294,-34.8539400038746,-34.8539579864821,-34.8539759924349,-34.8539894593801,-34.8540074386525,-34.8540254212599,-34.8540434272127,-34.8540614465057,-34.8540794691338,-34.854102004089,-34.8541335536932,-34.8541515863265,-34.8541741512971,-34.854192195603,-34.8542102215662,-34.8542282658721,-34.8542463185156,-34.8542779748416,-34.8542870478541,-34.8543006248561,-34.8543097078738,-34.8543188042317,-34.854332369561,-34.8543414509112,-34.854346038277,-34.8543686132528,-34.8544092025191,-34.8544272418224,-34.8545037879659,-34.8545126341948,-34.8545170698157,-34.8545304467145,-34.8545303583355,-34.8545347822837,-34.8545347005749,-34.854534612196,-34.8545390294741,-34.8545389577705,-34.8545388860668,-34.8545388026905,-34.8545432266387,-34.8545475855534,-34.8545520178392,-34.8545519394655,-34.8545518594242,-34.8545472787285,-34.8545471970197,-34.8545561466352,-34.8545605772535,-34.8545605038824,-34.8545559248542,-34.8545558381428,-34.8545602754312,-34.8545692117065,-34.8545781429793,-34.8545825802677,-34.854596018865,-34.8546049734832,-34.854618445431,-34.8546319023711,-34.8546453326307,-34.8546587762306,-34.8546722098253,-34.8546811310929,-34.8546900873786,-34.8547306666397,-34.8547532166026,-34.8547712525709,-34.8547937891936,-34.8548298878106,-34.854694743113,-34.8546932706869,-34.8546974511763,-34.8546973294468,-34.8546972227251,-34.8546971493539,-34.8546879796249,-34.8546833589085,-34.854678756535,-34.8546741074707,-34.8546740491072,-34.8546649110612,-34.8546557913579,-34.854646723348,-34.8546331330057,-34.8546285906631,-34.8546150203312,-34.8545924053348,-34.854587852987,-34.8545832956367,-34.8545831822449,-34.854578559861,-34.8545740158509,-34.8545739441472,-34.854569361784,-34.8545602737637,-34.854546656741,-34.8545420643727,-34.8545375136924,-34.8545374253135,-34.8545373702851,-34.8545327912569,-34.8545237082393,-34.8545191358812,-34.8545100461934,-34.8544948700333,-34.854510396374,-34.8545203698509,-34.8545247571135,-34.8545425479554,-34.8545714445248,-34.8545812579191,-34.8545902108697,-34.8545990170779,-34.8546079616909,-34.8546259342932,-34.8546484125525,-34.8546708858091,-34.8546843627596,-34.8547158139798,-34.8547472168417,-34.8547786613918,-34.8547920449607,-34.8548084901085,-34.8548851069585,-34.8549199676004,-34.8548802004247,-34.8548792015763,-34.8548392326299,-34.8548219720615,-34.8547872524891,-34.8547483950072,-34.8547336131593,-34.8546417574536,-34.8544219574304,-34.8542250792286,-34.8540548397651,-34.8538846453248,-34.8538918690503,-34.8539119994321,-34.8538585918884,-34.8535790744007,-34.8534750007273,-34.8534396191468,-34.8534272060784,-34.8533949327675,-34.8532759880914,-34.8532073993851,-34.8531478053176,-34.853146644719,-34.8530795934723,-34.8530285971722,-34.8530739839127,-34.8530631958937,-34.8529889900792,-34.8528788132582,-34.8527684596793,-34.8526159243463,-34.8524972097888,-34.8523109537318,-34.8522090645183,-34.8521326751223,-34.8519294569842,-34.8517854560525,-34.8516331641784,-34.8514980078081,-34.8513705520759,-34.8512095523776,-34.8510487594526,-34.8509468368885,-34.8508277721505,-34.8507429183892,-34.8506752034669,-34.8505910100462,-34.8504192514659,-34.8501141407792,-34.8497434629445,-34.8493296895509,-34.8490499352745,-34.8484052894808,-34.8481378949119,-34.8479670501363,-34.8475776893329,-34.8472063745031,-34.8470791722349,-34.8467992678811,-34.8468587952475,-34.846881597007,-34.8468435673941,-34.8467333005267,-34.8465260336339,-34.8463784908756,-34.8462826514487,-34.8460397228309,-34.8458682677405,-34.8455139583474,-34.845196978206,-34.844977505018,-34.8447959147006,-34.8445755076977,-34.844175984987,-34.8438435602137,-34.8435181690678,-34.8434188144948,-34.8434086025616,-34.8431454168299,-34.8430924461783,-34.8427883093271,-34.8427365793153,-34.8426784493362,-34.8426290071709,-34.8421521212287,-34.8421246037038,-34.8420670473539,-34.8419064211815,-34.8418109219301,-34.8416120293561,-34.8414697960027,-34.8412712202588,-34.8410940155365,-34.8410045927522,-34.8408134741875,-34.840662416283,-34.8403819383,-34.8401983302753,-34.8400838712459,-34.8396469825979,-34.8395633961569,-34.8394483568282,-34.8393627793603,-34.839263528174,-34.8391960300301,-34.8390790663756,-34.8389350554389,-34.8387774541598,-34.8386155773425,-34.8384613601984,-34.838431089051,-34.8383414128551,-34.8382930923079,-34.8382057436168,-34.8381331211843,-34.8382297673654,-34.8383400465422,-34.8382236024648,-34.8381401691062,-34.8381045431299,-34.8380041743137,-34.837957761798,-34.8377891072769,-34.837457865668,-34.8368488161786,-34.8365925644207,-34.8365233199871,-34.8362031331833]}]],[[{&#34;lng&#34;:[-56.2411393325173,-56.2413974080961,-56.2415658536485,-56.2416189689985,-56.2417647903079,-56.2418798562392,-56.2421771847962,-56.2423166042883,-56.2425209684929,-56.2426486112419,-56.2426848036265,-56.2427183342359,-56.2430484720125,-56.2433824334321,-56.2435850880583,-56.2438222781249,-56.244069501715,-56.2441059222996,-56.2441474650792,-56.2441649327328,-56.2441803471721,-56.24425604151,-56.2443250953328,-56.2444025886314,-56.2444384871452,-56.244531448421,-56.2446194204571,-56.2446811789742,-56.2448103255784,-56.2449601561832,-56.2449951475625,-56.2451280160862,-56.245302119209,-56.2454073268006,-56.2455657551728,-56.2457416681649,-56.2458410971737,-56.2458829320824,-56.2459464719065,-56.2459691561381,-56.2459825966087,-56.2460002872684,-56.2460115114838,-56.2460456840385,-56.2460705745218,-56.2460822066491,-56.2461744357516,-56.2462731599996,-56.2464003819521,-56.246484969235,-56.2465621957294,-56.2466968251612,-56.2467844436816,-56.2468419199903,-56.2469293183972,-56.2470582582281,-56.2471590921426,-56.2472441196895,-56.2473223736235,-56.2474978155725,-56.2476216287727,-56.2478405083212,-56.2479665533258,-56.2481070391113,-56.2482866384019,-56.2483288935273,-56.2483449351337,-56.2483595893579,-56.2484151246655,-56.2484382565953,-56.2484510898804,-56.2484498492406,-56.2484481416933,-56.2484218347928,-56.2483523723025,-56.2482548686841,-56.2481572383336,-56.2480621693041,-56.247964625665,-56.2478132409254,-56.2477792767425,-56.2477659031787,-56.2477257824875,-56.2476973278127,-56.2476660716931,-56.2476310136127,-56.2475929673246,-56.2475535536647,-56.2475195828117,-56.2475034344836,-56.2474927289625,-56.2474799290279,-56.2474561967886,-56.2474122741365,-56.2473482277729,-56.2473294114021,-56.2473050988635,-56.2472585081688,-56.247211597309,-56.2471687885648,-56.2471491784514,-56.2471295883482,-56.2471042752937,-56.2470734727413,-56.2470111339249,-56.2469454267047,-56.2468996097424,-56.2468318481293,-56.2468171338741,-56.2467787007199,-56.2467282880541,-56.246708077631,-56.2466180178516,-56.2465403044394,-56.2465060801224,-56.2464585089221,-56.246424971626,-56.2463996385611,-56.2463499729473,-56.2462985731057,-56.2458922368811,-56.24585525781,-56.2457990154711,-56.2457540923031,-56.2457164528915,-56.2456825687499,-56.2456702223825,-56.2456606107589,-56.2456342504976,-56.2456003530158,-56.2455548095278,-56.2455137083309,-56.2454184125177,-56.2453792990126,-56.2453610962916,-56.2453175204851,-56.2452540277403,-56.2452577563299,-56.245260637816,-56.2452625588067,-56.2452617183732,-56.2452554151225,-56.2452334304511,-56.245207837252,-56.245206336478,-56.2451733528008,-56.2451441710844,-56.2451242608162,-56.2451105070564,-56.2450936516969,-56.2450895429113,-56.2450390902249,-56.2450348215905,-56.2450153288161,-56.2449812819468,-56.2449561158339,-56.2448765205337,-56.2446940596159,-56.2446372629923,-56.2445249050464,-56.2444775339493,-56.2443823315176,-56.2443192467367,-56.2442914179645,-56.2441912663137,-56.2441899950329,-56.2441626248759,-56.2441299546937,-56.2440886000328,-56.2440008080895,-56.2439353876839,-56.243890851382,-56.243874329528,-56.2438101831127,-56.2436603058171,-56.2435990208776,-56.2433859043012,-56.2433307158392,-56.2433415747727,-56.2433624121858,-56.2433724773766,-56.243394835574,-56.2434001849995,-56.2434067083638,-56.2434749435544,-56.2436216191988,-56.2436364801963,-56.2436043102721,-56.2435494886659,-56.2434089695299,-56.2432946372325,-56.2432214228073,-56.2431672148508,-56.2431720540132,-56.2431963298662,-56.2432728459942,-56.2434034800322,-56.2435659371488,-56.2436585515791,-56.2437685149567,-56.2438660986164,-56.2441138797368,-56.2442947796982,-56.2443742340082,-56.2445235843653,-56.2446505431745,-56.2447077460088,-56.2447713254651,-56.2449078291969,-56.245176801246,-56.2452901196872,-56.2453550865256,-56.245395340619,-56.2454131964944,-56.2454269902748,-56.2454878349874,-56.2456864307416,-56.2458265430011,-56.2459264278476,-56.2460559813283,-56.2462201126417,-56.2462643154382,-56.2464195221489,-56.2465225486157,-56.2465911706725,-56.2468352565538,-56.2469741348436,-56.2471353112997,-56.2472188610551,-56.2472910983097,-56.2473589066135,-56.2474410889971,-56.2475235181746,-56.2476040863924,-56.2476686196738,-56.2478346719779,-56.2479062155414,-56.2479003591878,-56.2479331961227,-56.247824920282,-56.2477758282974,-56.2476918049644,-56.2475802674416,-56.2474907679511,-56.2473678045358,-56.2473338937137,-56.2472933461357,-56.2471155870905,-56.2469926510595,-56.2468479230863,-56.2467919342114,-56.246674913861,-56.2465468077934,-56.2464358505699,-56.2464257053378,-56.2464226037382,-56.2464387120457,-56.2465048594929,-56.2465986345218,-56.2467646668155,-56.2469251896012,-56.2471857506459,-56.2473297915982,-56.2477920900173,-56.2478230726625,-56.2479347569276,-56.2480123369376,-56.2481007958915,-56.2481332059395,-56.2481934436723,-56.2482723243531,-56.248350084456,-56.2484547050782,-56.2485504277782,-56.248602661383,-56.2486117260579,-56.2486914271618,-56.2487277325521,-56.2487732493596,-56.2488381628372,-56.2489104267722,-56.24898912069,-56.2490593969332,-56.2490835093686,-56.2490932210439,-56.2491317475797,-56.2492020505033,-56.2493009748545,-56.2493273217756,-56.2493516943452,-56.2493623398353,-56.249457982494,-56.2495468950151,-56.2496140363083,-56.2496240214579,-56.2496379353003,-56.2495818997346,-56.2494951816786,-56.2494391194325,-56.249399232195,-56.2493675425185,-56.2493277286521,-56.2492930174173,-56.2492747213149,-56.2492399500491,-56.2491818467504,-56.2491568872115,-56.2491303601975,-56.249102239028,-56.2490541475593,-56.2490457965859,-56.248992689197,-56.2489543294139,-56.2488489017088,-56.2487031598793,-56.2485953642864,-56.248498300895,-56.2484418851333,-56.248378739234,-56.2482988046764,-56.2482320969401,-56.2482415017905,-56.248240474594,-56.2482633130391,-56.2483294004554,-56.2483888978064,-56.2484712269323,-56.2485438777335,-56.2485834047852,-56.2486886724078,-56.2487649117264,-56.2487647116232,-56.2487995896106,-56.248809187894,-56.2488249960467,-56.248819506549,-56.2488406641271,-56.2488325132569,-56.2488457534185,-56.2488400438072,-56.2488952389394,-56.2489401154167,-56.2489692571125,-56.2489928492796,-56.2490644128534,-56.2490986505106,-56.249159421852,-56.249180632791,-56.2492547510157,-56.2493368200074,-56.2493788683595,-56.2494162076163,-56.249562089518,-56.2496801103844,-56.2498065956161,-56.2500687841667,-56.2502226635263,-56.2504176440827,-56.2506297601431,-56.2506455749658,-56.2506758705901,-56.2507006100155,-56.250750442382,-56.2507619616561,-56.2508245672768,-56.2508653883292,-56.2508565971287,-56.2508665155772,-56.2508948101695,-56.2509267733204,-56.2509529201383,-56.2509564753051,-56.2509657801038,-56.2510214021229,-56.2510863289406,-56.2511202064121,-56.2511421177123,-56.2511617478361,-56.2511848997761,-56.2512078582831,-56.2512366531333,-56.2512541421528,-56.2512699503055,-56.2512919082965,-56.2513084034701,-56.2513378786712,-56.251359449796,-56.2513783128575,-56.2513852297581,-56.2514000173844,-56.2514161390321,-56.2514377368373,-56.2514555526921,-56.2514829067993,-56.2515157570744,-56.2515534098262,-56.2515828249963,-56.2516060836581,-56.2516286352885,-56.2516522341257,-56.2517225837402,-56.251757048181,-56.2517884443728,-56.2518198338945,-56.2518423455044,-56.2518607549986,-56.2518784774719,-56.2518955195943,-56.2519169773272,-56.2519357069866,-56.2519513350464,-56.2519652822393,-56.2519867399723,-56.2520085445508,-56.2520330571926,-56.252066114241,-56.252083136353,-56.2520987644128,-56.2521174940722,-56.2521293868723,-56.2521556070614,-56.2521692074087,-56.2522001967241,-56.2522257365623,-56.2522471942952,-56.2522774699092,-56.2522927644636,-56.2523053376146,-56.2523332720211,-56.2523503074733,-56.2523860792551,-56.2524075636685,-56.252427994205,-56.2524460635239,-56.25246959566,-56.2524855905756,-56.252508075505,-56.2525268251747,-56.2525428200904,-56.2525553932413,-56.2525727155082,-56.2525856088243,-56.2526182990168,-56.2526305386624,-56.2526475541044,-56.2526730472518,-56.2526959190474,-56.2527299832819,-56.2527427898866,-56.2527430166702,-56.2527456647025,-56.2527499936017,-56.2527552629859,-56.252738127482,-56.252710406519,-56.2526843730929,-56.2526614079158,-56.2526343472933,-56.2526154909019,-56.252600729956,-56.2525832542766,-56.2525585882224,-56.2525377174588,-56.2525130714149,-56.2524901329182,-56.2524692688248,-56.2524436422752,-56.2524217910059,-56.2524002665719,-56.2523773480856,-56.2523581648589,-56.2523339056812,-56.2523117209066,-56.2522877952342,-56.2522642230774,-56.2522423317875,-56.2521982290426,-56.2521732628336,-56.2521483166348,-56.2521271323762,-56.2521056012721,-56.2520785873403,-56.2520522737697,-56.252028014592,-56.2520030483829,-56.2519770749878,-56.2519339527486,-56.2519124016341,-56.251862469216,-56.2518412516069,-56.2518445799901,-56.2518525774479,-56.2518644235572,-56.2518886627247,-56.2519084395908,-56.2519216997627,-56.2519465992707,-56.2519673966631,-56.2519840785997,-56.252001801073,-56.2520337642239,-56.2520411947227,-56.2520458904777,-56.2520454569208,-56.2520501526758,-56.252059610887,-56.2520612317229,-56.2520617586613,-56.2520609649187,-56.2520595108354,-56.2520570295558,-56.2520504461605,-56.252037712927,-56.2520225917953,-56.2520071438284,-56.2519998800823,-56.2519871468488,-56.2519706783556,-56.2519538696869,-56.2519301841383,-56.2518972204714,-56.2518763363677,-56.2518485887242,-56.2518256302172,-56.2517790662029,-56.2517574950782,-56.2517359506338,-56.2517085698462,-56.2516784543148,-56.2516569032004,-56.2516373797983,-56.2516161755294,-56.2515932370328,-56.2515702985361,-56.2515490675868,-56.2515281768129,-56.2515076328845,-56.2514692931117,-56.2514442802119,-56.2514206813747,-56.2513918931946,-56.2513754247014,-56.2513392060225,-56.2513169478767,-56.2512970842992,-56.2512655613754,-56.251244330426,-56.2512196577017,-56.2511898556653,-56.2511655097762,-56.2511439853422,-56.2511210535156,-56.2511024172378,-56.251086602415,-56.2510622298454,-56.2510321610048,-56.2510063610324,-56.2509848699489,-56.2509575825428,-56.2509257261136,-56.2509062027116,-56.2508832908954,-56.2508538823953,-56.2508287160831,-56.2508029628014,-56.2507757420964,-56.2507570657978,-56.2507370021172,-56.2507212139748,-56.2507053791417,-56.2506900779171,-56.2507036849346,-56.2506835078621,-56.2506705211646,-56.2506375374874,-56.2506074352962,-56.2505716234938,-56.250534217536,-56.2505296618532,-56.2505281677493,-56.2505283745226,-56.250548171399,-56.2505614048905,-56.2505606378283,-56.2505526870612,-56.250535218052,-56.2505313694004,-56.2505394602398,-56.2505410810757,-56.2505392601366,-56.2505234786643,-56.2505046356131,-56.2504925894006,-56.2504911353174,-56.2504855791186,-56.2504704579869,-56.2504601193216,-56.2504545631228,-56.2504469525312,-56.2504328585959,-56.2504072053659,-56.2503843335703,-56.2503634894871,-56.2503419450428,-56.2503197335878,-56.2502944005229,-56.2502867966013,-56.2502867098899,-56.2502750038528,-56.2502646585175,-56.2502546666978,-56.2502654856107,-56.2502736031304,-56.2502823743206,-56.2502939002649,-56.2503013307636,-56.2503029515995,-56.2503066201582,-56.2503120029342,-56.2503204539593,-56.2503333739558,-56.250347654654,-56.2503530374301,-56.2503604679288,-56.2503702863258,-56.2503855275194,-56.2504008154037,-56.2504168103194,-56.2504351731229,-56.2504388416815,-56.2504322649564,-56.2504195517332,-56.2504081658612,-56.2504043172097,-56.250402522951,-56.2504007020119,-56.2504019826724,-56.2504083659644,-56.2504106671512,-56.2504109006049,-56.2504128616163,-56.2504158231436,-56.2504054844784,-56.2503845736941,-56.2503636895903,-56.2503445063637,-56.2503253298072,-56.2502959012968,-56.2502712285725,-56.2502414398764,-56.2502167871623,-56.2501903935505,-56.25017597278,-56.2501530609638,-56.2501321701899,-56.2501207843179,-56.2501087581157,-56.2500950043558,-56.2500911557043,-56.2500886744246,-56.2500816841529,-56.2500713254774,-56.2500551971596,-56.2500322586629,-56.2500083196503,-56.2499833334309,-56.2499614154606,-56.2499412117077,-56.2499322404143,-56.2499266842155,-56.2499201074904,-56.2499128170638,-56.2499048529565,-56.2498890648142,-56.2498736235174,-56.2498653325749,-56.2498515588047,-56.2498363643019,-56.2498284202049,-56.2498252585744,-56.2498220902737,-56.2498134391454,-56.2498112980412,-56.2498138193415,-56.2498152000536,-56.2498277798746,-56.2498396459943,-56.2498474166685,-56.2498527994445,-56.2498547604559,-56.2498550139199,-56.249865839503,-56.2498811473976,-56.2498985296955,-56.2499183265719,-56.2499429259251,-56.2499561660867,-56.2499690594028,-56.2499853277928,-56.2500023499049,-56.2500193653469,-56.2500360406134,-56.250048280259,-56.2500611735751,-56.2500750940876,-56.250093136726,-56.2501060567225,-56.2501186298734,-56.2501318900454,-56.2501451101967,-56.2501528808709,-56.2501544950367,-56.2501335642421,-56.2501140475102,-56.2500911290239,-56.2500692177237,-56.2500439313495,-56.2500182847896,-56.2499967536854,-56.2499731548482,-56.2499478484638,-56.249922522069,-56.2498999037374,-56.2498810406759,-56.249864211997,-56.249845695781,-56.2498319620315,-56.2498107110718,-56.2497918480103,-56.2497760665381,-56.2497609454064,-56.2497444569029,-56.2497276215538,-56.2497141879591,-56.2497062171817,-56.2497020083444,-56.2496988200334,-56.2496966789292,-56.2496945444951,-56.2496930904118,-56.2496919498236,-56.2496918631122,-56.2496934839481,-56.2496954249492,-56.2496977061256,-56.2497006943334,-56.2497033156853,-56.2497052766966,-56.2497048498098,-56.2497016614988,-56.2496998405597,-56.2497034891081,-56.2497126271541,-56.249726574347,-56.2497394876734,-56.2497544553927,-56.2497690629261,-56.2497819762525,-56.2497935088669,-56.2498022800571,-56.2498042210581,-56.2498034473257,-56.2497999455198,-56.2497861917599,-56.2497693764212,-56.2497566698681,-56.2497436231395,-56.2497312100711,-56.2497201843849,-56.2497115332566,-56.2497052700265,-56.249702108396,-56.2497006543127,-56.2497009077768,-56.249701481406,-56.2497006876633,-56.2496927368962,-56.2496851329747,-56.2496700318533,-56.2496525428338,-56.2496405166315,-56.2496237079629,-56.2496103143888,-56.2495982681763,-56.2495927119775,-56.2495888633259,-56.2495870490569,-56.2495865954897,-56.2495881896452,-56.2495911578426,-56.2495955134222,-56.2495991819809,-56.2496052184273,-56.2496112615439,-56.2496156171236,-56.2496219937455,-56.2496283770375,-56.249635100505,-56.249640483281,-56.2496502816676,-56.2496580523418,-56.249665135995,-56.2496742540308,-56.2496806573331,-56.2496850062426,-56.2496897019977,-56.2496947379282,-56.2497011412305,-56.2497092587503,-56.2497177097754,-56.249726507646,-56.2497346184956,-56.2497423891698,-56.2497494528127,-56.2497561962905,-56.2497622394071,-56.249767615513,-56.2497706037208,-56.2497742522691,-56.2497772137964,-56.2497784944569,-56.2497794349419,-56.2497803687569,-56.2497806222209,-56.249780875685,-56.249781129149,-56.2497813626027,-56.2497816160668,-56.249781502675,-56.2497813892832,-56.2497805755302,-56.249779441612,-56.2497779408381,-56.2497760998886,-56.2497739187638,-56.2497717576492,-56.2497688895034,-56.2497663682031,-56.2497638402327,-56.2497613189324,-56.2497594779829,-56.2497614923551,-56.249764800728,-56.2497691296272,-56.2497744857228,-56.2497808690149,-56.249795703332,-56.2498048213677,-56.2498146197543,-56.2498257855128,-56.2498376316221,-56.249850138072,-56.2498640185639,-56.2498785794066,-56.2498941607756,-56.2499107693411,-56.249928405103,-56.2499457206997,-56.2499620091001,-56.2499772569638,-56.249990470445,-56.2500019763789,-56.250019498749,-56.250029137053,-56.2500315382914,-56.2500372145521,-56.2500429108232,-56.2500492674348,-56.2500556507268,-56.250061667163,-56.2500670032483,-56.2500716523126,-56.250075621026,-56.2500792695743,-56.2500825512668,-56.2500861998151,-56.2500898283531,-56.2500934969117,-56.25009714546,-56.2501008140187,-56.2501044825773,-56.2501078109605,-56.2501111393437,-56.2501141275515,-56.2501170957489,-56.2501193769254,-56.2501216581018,-56.2501232522573,-56.2501248264025,-56.2501260870526,-56.2501269808469,-56.2501275277957,-56.2501281014248,-56.2501286550437,-56.2501288818273,-56.2501290952707,-56.2501289818789,-56.2501285083013,-56.2501283949095,-56.2501276011668,-56.2501264672487,-56.2501249931551,-56.250123172216,-56.2501203507609,-56.25011716245,-56.2501133137985,-56.2501084246103,-56.2501031885766,-56.2500972455116,-56.2500906421061,-56.2500836785148,-56.2500763947584,-56.2500687441461,-56.250059726162,-56.2500496876515,-56.2500385952642,-56.2500268492065,-56.2500202658112,-56.2500074925571,-56.2499936921065,-56.2499802318314,-56.2499667782263,-56.249953684807,-56.2499409315632,-56.2499285184948,-56.2499154450858,-56.2499010109751,-56.2498852028225,-56.2498677138029,-56.2498488507414,-56.2498139594137,-56.2497100124723,-56.2479033407255,-56.2476961472038,-56.247499392399,-56.2455408623349,-56.2453547930409,-56.2452494392396,-56.2450818656186,-56.244787840649,-56.2444455241076,-56.2443766926197,-56.2436836645305,-56.242940427891,-56.2421001578756,-56.2419442847871,-56.2418786302948,-56.2417486363778,-56.2416372758221,-56.2414471916994,-56.2411094130984,-56.2404319660055,-56.2403597917851,-56.240189582019,-56.239676802766,-56.2391679899399,-56.2390495561756,-56.2386203482447,-56.2381904869122,-56.2381229445163,-56.2378532657645,-56.2370723309504,-56.2362807966821,-56.2354731234777,-56.2347042402783,-56.2339125386442,-56.2331081638075,-56.2339012328135,-56.2341669832011,-56.2331838861928,-56.2331586631846,-56.2322317451493,-56.2321676921155,-56.2311904181103,-56.2309123780513,-56.2301526262278,-56.2298373465536,-56.2289848506427,-56.2279090191422,-56.2270365469979,-56.2274771397443,-56.228071489599,-56.2283077981361,-56.2291210375445,-56.2299316856164,-56.2307006288468,-56.2315234325506,-56.2323135063198,-56.2331333096738,-56.2339256815881,-56.2347254115305,-56.2355177509853,-56.2363249088697,-56.237116989126,-56.2379413321541,-56.2387287724992,-56.2395243065416,-56.2403074660579,-56.240500391038,-56.2405789964598,-56.2406573293594,-56.2411393325173],&#34;lat&#34;:[-34.8702124764038,-34.8704474558975,-34.870605197385,-34.8706944311925,-34.8708198041321,-34.8709172031062,-34.8711493150397,-34.8712908458741,-34.8714983037737,-34.8716279276118,-34.8716678362142,-34.8717048096879,-34.8720438020376,-34.8724050087897,-34.872552227803,-34.8727055017796,-34.872908068472,-34.8728669066293,-34.8728347626814,-34.872769363824,-34.8727251005003,-34.8726873565515,-34.8727091169198,-34.8726790022222,-34.8726106327956,-34.8725676698052,-34.8725631141224,-34.8724903941188,-34.8724387800001,-34.8723828319796,-34.872322360793,-34.8723069361715,-34.8722986852497,-34.872301019787,-34.8722720340049,-34.8722601527174,-34.8722351082947,-34.8722221057556,-34.8721948028851,-34.8721657588006,-34.8721446359559,-34.8721323578848,-34.8721307477907,-34.8721269704136,-34.8721353132871,-34.8721448337199,-34.8721089407269,-34.8720372437509,-34.8719881418705,-34.8719554949243,-34.8718699249603,-34.871882277164,-34.8718052040821,-34.8718205695065,-34.8717961936018,-34.8717019208163,-34.87166332285,-34.8716019691787,-34.8715972969521,-34.871570021165,-34.8715184887157,-34.8714134462092,-34.8713052345684,-34.8712544058547,-34.8711894231748,-34.8711642068368,-34.8711596461514,-34.8711505839778,-34.8711143444548,-34.8710917327934,-34.8710601415009,-34.8710126820249,-34.8709474775639,-34.8708799610773,-34.8707224490109,-34.8706326343579,-34.8705878887815,-34.8705070796061,-34.870408250304,-34.8702735449997,-34.8702466161118,-34.8702376464859,-34.8702107376083,-34.8701928041929,-34.8701613596428,-34.8701209129501,-34.8700985047269,-34.8700761006726,-34.8700491709509,-34.8700311975149,-34.8700086975778,-34.8699771921629,-34.8699457217662,-34.8699098115797,-34.8698829827434,-34.8698785379511,-34.8698696041771,-34.8698472243019,-34.8698293517512,-34.8698114658603,-34.8697844886141,-34.8697620195262,-34.8697575964118,-34.8697486843156,-34.8697218488092,-34.8697040387907,-34.8696996832111,-34.8696818798628,-34.8696774217303,-34.8696459996918,-34.8696101111832,-34.869601164069,-34.8695654064612,-34.8695386218143,-34.869529720557,-34.8695163569985,-34.8695074540737,-34.8694985244684,-34.8694761537646,-34.8694492815726,-34.8693154150342,-34.8693020164575,-34.8692616398009,-34.8692302394403,-34.8692213498557,-34.8692124477647,-34.8692034748038,-34.8691944926715,-34.8691855655675,-34.8691721561519,-34.8691542785987,-34.8691363868715,-34.86907811015,-34.8690466906128,-34.8690287230131,-34.8689928111591,-34.8689389375418,-34.8688623071882,-34.868821735431,-34.8687946873149,-34.8687631410457,-34.868731613953,-34.8687091515353,-34.8686461382044,-34.868619101761,-34.8685831548889,-34.8685562093257,-34.8685382475624,-34.868520264955,-34.8684977858619,-34.8684943774374,-34.8684528960444,-34.8684200584582,-34.8683803896724,-34.8683038101889,-34.8682535307598,-34.868223031623,-34.8681239684494,-34.8680485950361,-34.8679792959634,-34.8679096783932,-34.8676735366088,-34.8674711693883,-34.8673521025037,-34.8670655864067,-34.8670618858847,-34.8669822150766,-34.8669111484257,-34.8668497851124,-34.866807149791,-34.8667359980962,-34.8666429667843,-34.8665968496672,-34.8665482829534,-34.8663946403827,-34.8663809649966,-34.8662120979075,-34.8659941254936,-34.8657511468499,-34.8654789464692,-34.8653336615421,-34.8650555614521,-34.8648953204784,-34.8647001581615,-34.8643738632162,-34.8642263287956,-34.8640920161938,-34.8638555592469,-34.863747048285,-34.8635620945663,-34.8634354759325,-34.8633543907815,-34.8632943581545,-34.8632066362473,-34.8628978603371,-34.8626802280985,-34.8624240576516,-34.8623340145474,-34.8622378065971,-34.8621739303212,-34.8621364293143,-34.8621151833572,-34.8620878826108,-34.8620928585104,-34.8620976059587,-34.862071000571,-34.8620734301573,-34.8620810774346,-34.8620570583806,-34.8620533014431,-34.8620255588022,-34.8620262091376,-34.8620141012265,-34.8620137493784,-34.8620045796494,-34.8619986782725,-34.8619623995627,-34.8619132275367,-34.8619174697245,-34.8618847661918,-34.8618433331571,-34.861806604215,-34.8617786531333,-34.861738127233,-34.8617094924653,-34.8617041130244,-34.8617402366542,-34.8617991520384,-34.8618674689379,-34.8618900939395,-34.861917373008,-34.8619307532419,-34.8619650075744,-34.8619392242773,-34.8619437182616,-34.8618654278852,-34.8617462947786,-34.8616822934381,-34.8615907262146,-34.861304768739,-34.8611751102041,-34.8610107637798,-34.8608922359853,-34.8607416266455,-34.8605545434953,-34.860426612518,-34.8603593761758,-34.860056468805,-34.8598469802535,-34.8597468536156,-34.859641861135,-34.859537070425,-34.8594323164007,-34.8592798160858,-34.8591095999676,-34.85898915285,-34.8588793478874,-34.8587922446327,-34.858682182871,-34.8585993218041,-34.8585256237962,-34.8584881778176,-34.8584465446797,-34.8584663298834,-34.8584607186562,-34.8584245933588,-34.8584130840899,-34.858390819274,-34.8583900638844,-34.8583749160723,-34.8583613757559,-34.8583280785837,-34.8583099609066,-34.8582776525777,-34.8582181485566,-34.8582078232316,-34.8581661600782,-34.8581208750569,-34.8580924970883,-34.8580163961744,-34.8579614928594,-34.8578866659359,-34.8577866960456,-34.8577249025104,-34.8577000213452,-34.8576434404983,-34.8575472358831,-34.857432888578,-34.8573857025763,-34.8573438660001,-34.8573261385242,-34.8571341511781,-34.8570276996117,-34.8568593978141,-34.8567620359354,-34.856626365967,-34.856460510431,-34.8563608156825,-34.8562581960923,-34.8562269399728,-34.856179278726,-34.8561630353488,-34.8561609909612,-34.8561577526244,-34.8561578676837,-34.8561253075583,-34.8560994592277,-34.8560927240875,-34.8560969129145,-34.8560806945503,-34.8560657101558,-34.8560399568741,-34.8560326097517,-34.8560776796621,-34.8561273953017,-34.8562507422482,-34.8563031175928,-34.8563005696121,-34.8562788984357,-34.856216257797,-34.8561453695715,-34.8560332017237,-34.8558226081152,-34.8557432171712,-34.8556882971809,-34.8556416047671,-34.8555400807419,-34.8554441679439,-34.8553647686623,-34.8552002704931,-34.8550504115403,-34.8550088401008,-34.8549361159284,-34.8548774106526,-34.8548532898796,-34.8548161123729,-34.8548007261044,-34.8547613674729,-34.8547547607323,-34.8546738223236,-34.8545620496796,-34.8545115769829,-34.8545005396239,-34.854439196321,-34.8544192660424,-34.8543644511063,-34.8543073616638,-34.8543029143702,-34.8542610961368,-34.8542170617605,-34.8542095895735,-34.8541686617994,-34.8541462969319,-34.8541158078746,-34.8540820037743,-34.8540811299903,-34.8541178789427,-34.8542402036954,-34.8546001543311,-34.8546269931726,-34.8547150919407,-34.8547870473833,-34.854809238828,-34.8548815444512,-34.8549160906009,-34.8549803470729,-34.8550343649313,-34.8550618107525,-34.8550804153473,-34.8551089283856,-34.8551303044097,-34.8551811422948,-34.8551918428133,-34.8552267858344,-34.8552455238313,-34.8552544250886,-34.855263364699,-34.855266866505,-34.8552767432653,-34.8552901868652,-34.8553081177793,-34.8553215813895,-34.8553395556593,-34.8553575099188,-34.855375482521,-34.8553934117676,-34.8554023530455,-34.8554158116531,-34.8554338159384,-34.8554517935433,-34.8554652604885,-34.8554787090909,-34.8554876637091,-34.8554920793197,-34.855500983912,-34.8555143791536,-34.8555187864265,-34.8555232153773,-34.8555231403386,-34.8555275692894,-34.855518319519,-34.8555091898106,-34.8555000717749,-34.8554909520717,-34.8554818623839,-34.8554727877038,-34.8554637146913,-34.8554546433463,-34.855441049669,-34.8554274659969,-34.8554093866729,-34.8553958196761,-34.8553822259988,-34.8553686323215,-34.8553505229821,-34.8553323836272,-34.8553188066252,-34.8553007256337,-34.8552871419616,-34.8552735816348,-34.8552554656253,-34.8552419002959,-34.8552192619541,-34.8552011476121,-34.8551875556023,-34.8551604116035,-34.8551423322795,-34.8551287702852,-34.8551106476056,-34.8551015779281,-34.855078922911,-34.8550698365583,-34.8550562478836,-34.8550471732035,-34.8550380801807,-34.8550245065138,-34.8550109095014,-34.8550018331538,-34.8549882578193,-34.8549746958251,-34.8549521025065,-34.8549340315202,-34.8549113865082,-34.8548978245139,-34.8548842475119,-34.8548571201883,-34.8548525361576,-34.8548298878106,-34.8547937891936,-34.8547712525709,-34.8547532166026,-34.8547306666397,-34.8546900873786,-34.8546811310929,-34.8546722098253,-34.8546587762306,-34.8546453326307,-34.8546319023711,-34.854618445431,-34.8546049734832,-34.854596018865,-34.8545825802677,-34.8545781429793,-34.8545692117065,-34.8545602754312,-34.8545558381428,-34.8545559248542,-34.8545605038824,-34.8545605772535,-34.8545561466352,-34.8545471970197,-34.8545472787285,-34.8545518594242,-34.8545519394655,-34.8545520178392,-34.8545475855534,-34.8545432266387,-34.8545388026905,-34.8545388860668,-34.8545389577705,-34.8545390294741,-34.854534612196,-34.8545347005749,-34.8545347822837,-34.8545303583355,-34.8545304467145,-34.8545170698157,-34.8545126341948,-34.8545037879659,-34.8544272418224,-34.8544092025191,-34.8543686132528,-34.854346038277,-34.8543414509112,-34.854332369561,-34.8543188042317,-34.8543097078738,-34.8543006248561,-34.8542870478541,-34.8542779748416,-34.8542463185156,-34.8542282658721,-34.8542102215662,-34.854192195603,-34.8541741512971,-34.8541515863265,-34.8541335536932,-34.854102004089,-34.8540794691338,-34.8540614465057,-34.8540434272127,-34.8540254212599,-34.8540074386525,-34.8539894593801,-34.8539759924349,-34.8539579864821,-34.8539400038746,-34.8539265369294,-34.8539130733192,-34.8538906184053,-34.8538591788578,-34.8538502342448,-34.8538368073202,-34.8538233637204,-34.8538054911697,-34.8537965498918,-34.8537921142709,-34.8537831930033,-34.8537742784058,-34.8537698427849,-34.8537608948369,-34.853756459216,-34.8537475212731,-34.8537385866653,-34.8537296420523,-34.8537206974394,-34.8537117528264,-34.8536983592523,-34.8536849223226,-34.8536804967068,-34.8536625641252,-34.85364909718,-34.8536492205769,-34.853640279299,-34.853631331351,-34.8536134087745,-34.8536044674966,-34.8535910272318,-34.8535799281744,-34.8535729345676,-34.8535576833688,-34.8535471512705,-34.853536605832,-34.8535189767402,-34.8535060934293,-34.853497942559,-34.8534862398569,-34.8534768816974,-34.853453399587,-34.8534387753783,-34.8534298274303,-34.8534253951444,-34.853420986204,-34.8534172909649,-34.8534138391847,-34.8534033204266,-34.85338570134,-34.8533775171192,-34.8533646037928,-34.8533434395445,-34.8533268876749,-34.8533133206781,-34.8532574652053,-34.8532327557954,-34.8532140061257,-34.8531987849424,-34.8531859383171,-34.853178677906,-34.8531561596261,-34.853129122349,-34.8531020817368,-34.8530975093787,-34.8530794367248,-34.8530614107617,-34.853043408144,-34.8530344535258,-34.8530164375679,-34.8529938759323,-34.852975843299,-34.852953315014,-34.8529398480687,-34.8529308967856,-34.8529129075081,-34.85289488488,-34.8528768755922,-34.8528588996549,-34.8528409070423,-34.8528228977544,-34.8528048951367,-34.8527869125293,-34.8527824902486,-34.8527870759469,-34.852787145983,-34.8527827103621,-34.8527827837333,-34.8527738557956,-34.8527558531778,-34.8527378238797,-34.8527198346021,-34.8527018419895,-34.852683849377,-34.8526612777362,-34.8526432217576,-34.8526206567869,-34.8526025908032,-34.8525845381596,-34.8525665055264,-34.8525484662231,-34.8525304202496,-34.852512364271,-34.8524988006092,-34.8524852336124,-34.852467187639,-34.8524491349954,-34.8524310723467,-34.8524039817087,-34.8523859023848,-34.8523723287178,-34.8523542393887,-34.8523362000853,-34.8523181941325,-34.8523047138471,-34.8522822189125,-34.8522642029546,-34.8522461803265,-34.8522236520414,-34.8522056194082,-34.8521830644427,-34.8521650284744,-34.8521424935192,-34.852124457551,-34.8521019125906,-34.852083919978,-34.8520704697081,-34.8520615250951,-34.8520525771471,-34.852043625864,-34.8520347112665,-34.8520212710017,-34.8520078507472,-34.8519989194744,-34.8519809768876,-34.8519675066073,-34.8519630743215,-34.8519541297085,-34.851931634774,-34.8519181544885,-34.8519001718811,-34.8518821559231,-34.8518641366301,-34.8518326103712,-34.8518101121016,-34.8517966451564,-34.8517877072135,-34.8517832782627,-34.851774350325,-34.8517654090471,-34.8517564610991,-34.8517384651515,-34.8517204558636,-34.8517024499108,-34.851679938301,-34.8516574300263,-34.851643963081,-34.8516304928007,-34.851612493518,-34.8515900019185,-34.8515585056751,-34.8515405030573,-34.8515224870994,-34.8515044678064,-34.8514819628667,-34.8514639435737,-34.8514377700753,-34.8514233659801,-34.8514098056533,-34.8513917363345,-34.851373683691,-34.8513556377176,-34.8513376050843,-34.8513195757862,-34.8512970041454,-34.8512834338135,-34.8512743591335,-34.8512697867754,-34.8512697067341,-34.8512516340802,-34.8512335614264,-34.8512064674533,-34.8511928904513,-34.8511793101142,-34.8511657364473,-34.8511521727855,-34.8511341034667,-34.8511160274778,-34.8511024471407,-34.8510888834789,-34.8510753198171,-34.8510617561553,-34.8510391778444,-34.8510211218659,-34.8510030892326,-34.8509851333056,-34.8509761820226,-34.8509717530718,-34.8509628117938,-34.8509628951702,-34.8509584762246,-34.8509585462607,-34.8509541173099,-34.8509496950292,-34.8509407670915,-34.8509273201566,-34.8509138632165,-34.8508958906142,-34.8508824303391,-34.8508689567237,-34.8508555064537,-34.8508420495137,-34.8508285792334,-34.8508106032961,-34.8507926306938,-34.8507746580915,-34.8507521698271,-34.8507296615523,-34.8507071399373,-34.8506846149873,-34.8506665956943,-34.8506485730662,-34.8506305504382,-34.8506080188181,-34.8505899928549,-34.8505719602217,-34.8505494185964,-34.8505268769711,-34.8505088376678,-34.8504862960425,-34.8504682600742,-34.8504502341111,-34.8504277091611,-34.850405180876,-34.8503826359156,-34.850364576602,-34.8503510096051,-34.8503374459433,-34.8503238756115,-34.8503057962875,-34.8502922326257,-34.8502741666419,-34.8502516050063,-34.850229063381,-34.8502110374179,-34.8501930214599,-34.8501750388525,-34.8501615752423,-34.8501480949569,-34.8501346180065,-34.850112126407,-34.8500941337944,-34.8500716288547,-34.8500491139098,-34.8500310979518,-34.8500130753238,-34.8499950460256,-34.8499725077354,-34.8499499761152,-34.8499319734975,-34.8499139742148,-34.8499005005995,-34.8498870403243,-34.8498735600389,-34.8498600930936,-34.8498466161432,-34.8498286302007,-34.8498106209129,-34.8497926049549,-34.8497700766698,-34.8497475450497,-34.8497250034244,-34.849702458464,-34.8496844158257,-34.8496663765223,-34.8496438215568,-34.8496212665913,-34.8496032239529,-34.8495806689874,-34.8495581140219,-34.8495355557214,-34.8495175097479,-34.8494949414422,-34.8494768887987,-34.8494588361551,-34.8494362711845,-34.849418221876,-34.8494001792376,-34.8493821365992,-34.8493640939608,-34.8493460446523,-34.8493279886738,-34.8493099326951,-34.8492918767165,-34.8492738207379,-34.8492557680944,-34.8492332097939,-34.8492151571503,-34.8491926055198,-34.8491745595464,-34.8491565202431,-34.8491339719477,-34.8491114303224,-34.8490933976892,-34.849075365056,-34.8490573357578,-34.8490393064596,-34.8490212771614,-34.8490032478633,-34.8489807129081,-34.8489626836099,-34.8489401519898,-34.8489176170346,-34.8488905764224,-34.8488680448023,-34.8488410108601,-34.848813973583,-34.8487869396409,-34.8487644113558,-34.8487373807488,-34.8487103468067,-34.8486833128646,-34.8486562789225,-34.8486292449804,-34.8485526187957,-34.8485300738353,-34.8485075255399,-34.8484849705744,-34.8484624156089,-34.8484218046648,-34.8483992396941,-34.8483766713884,-34.8483540997477,-34.8483315247718,-34.8483044408039,-34.848277353501,-34.848250262863,-34.8482231688899,-34.8481960715818,-34.8481689709386,-34.8481463792875,-34.8481237909715,-34.8480966969985,-34.8480741186876,-34.8480515470468,-34.8480019114485,-34.8479592261012,-34.8479477868684,-34.8479207262458,-34.8478981746154,-34.8478711106578,-34.8478485556923,-34.8478214917347,-34.8477944344473,-34.8477673771598,-34.8477403198723,-34.847717774912,-34.8476907209596,-34.8476681759992,-34.8476411220468,-34.8476230827435,-34.8476005344481,-34.8475824951447,-34.8475644558414,-34.8475464165381,-34.8475283772348,-34.8475103379314,-34.8474877929711,-34.8474652513458,-34.8474427097205,-34.8474201680952,-34.8473931208129,-34.8473705825226,-34.8473435385754,-34.8473164946281,-34.847293959673,-34.8472669157257,-34.8472443807705,-34.8472173368232,-34.8471948018681,-34.8471677612559,-34.8471452296357,-34.8471226946806,-34.8471001663955,-34.8470776347753,-34.8470551064902,-34.8470370871973,-34.8470145622472,-34.8469965496243,-34.8469740313444,-34.8469515130645,-34.8469244924626,-34.8469019775177,-34.8468749602509,-34.8468524486411,-34.8468254347093,-34.8467984207775,-34.8467714135159,-34.8467399005972,-34.8467129000056,-34.8466948940528,-34.8466678934613,-34.8466408995398,-34.8466139022833,-34.8465869050268,-34.8465644134273,-34.8465419218278,-34.8465194268933,-34.8465014442858,-34.8464834650135,-34.8464654890761,-34.8464520254659,-34.8464385685258,-34.8464296706037,-34.8463443832854,-34.8473509323886,-34.8474642908504,-34.8475728568407,-34.8486756555822,-34.8487800494208,-34.8488391594867,-34.8489331783933,-34.849097263016,-34.8492842527847,-34.8493230566035,-34.8497137476195,-34.8501220815411,-34.8506046804297,-34.8506884953811,-34.8507237985286,-34.8508042103751,-34.8508598987189,-34.8509680672394,-34.8511468446822,-34.8515386322252,-34.851579728098,-34.8516690184273,-34.8519380146255,-34.8521957619178,-34.8522569606199,-34.8524792777947,-34.852695021611,-34.8529044200721,-34.8531349179131,-34.8537678763218,-34.8544513058995,-34.8551299458915,-34.8557769078797,-34.8564419675346,-34.855795539155,-34.8551304811676,-34.8548907625386,-34.8554031918114,-34.8554167938263,-34.855960584273,-34.8560013519646,-34.8565948730586,-34.8567670201726,-34.857184070256,-34.8573566391606,-34.8578232465622,-34.858322405658,-34.8587194132767,-34.8591485383825,-34.8596063745003,-34.8597904127469,-34.8604323388045,-34.861101307142,-34.8617658965544,-34.8624060347454,-34.8630462712218,-34.8637023358326,-34.8643345201377,-34.8649790434417,-34.8656173661189,-34.866268074553,-34.8669371298042,-34.8675858860327,-34.868266193924,-34.8689103553624,-34.8695714265384,-34.8697399874414,-34.8697957629344,-34.8698578816909,-34.8702124764038]}]],[[{&#34;lng&#34;:[-56.3574679125988,-56.3555535119054,-56.3534686768488,-56.3534063514307,-56.3513985808748,-56.3510477711131,-56.3507791427567,-56.3503863942002,-56.3489192236574,-56.3486643992565,-56.3488399832679,-56.3489256006249,-56.3490588155946,-56.3490916727147,-56.3491207814828,-56.3491645637935,-56.3492210329559,-56.3492768083236,-56.3493147613554,-56.3493804481586,-56.3494498973968,-56.3494783123994,-56.3495224152083,-56.3495548847797,-56.3495860076102,-56.3496208787984,-56.3496451713478,-56.3496848319799,-56.3497083776954,-56.3497211310939,-56.3497346173745,-56.3497624855405,-56.3498089230513,-56.3498341089527,-56.3498579076969,-56.3498703279657,-56.3498937533555,-56.3499147369466,-56.3499461271468,-56.3499727136477,-56.349987548218,-56.3500081853263,-56.3500425500704,-56.3500741264533,-56.3501005661348,-56.3501647729533,-56.350206994485,-56.350239931994,-56.3502739227612,-56.3502996960594,-56.3503193062281,-56.3503347669863,-56.3503543510054,-56.3503808041374,-56.3503983064624,-56.3504443705742,-56.3504632734243,-56.3505339899416,-56.3505727697068,-56.3506039460723,-56.3506743026325,-56.3506979010706,-56.350719805932,-56.3508066242495,-56.3508494729197,-56.3509399329634,-56.3510068068091,-56.3511274825874,-56.3511927965483,-56.3512874851492,-56.3513576281875,-56.3513960079457,-56.3513910723351,-56.3513895114746,-56.3514741411661,-56.351500528175,-56.3514888955293,-56.351538921608,-56.3515564638083,-56.3516013005544,-56.3516243923233,-56.351646763998,-56.3516715903296,-56.3517141718283,-56.3517324748149,-56.351786382355,-56.351823201636,-56.3518719465108,-56.3518884485202,-56.3519076985157,-56.3519561764229,-56.35197553362,-56.3520000262706,-56.3520158740784,-56.3520283206768,-56.3520438884739,-56.352057615496,-56.3520908596977,-56.3521115503955,-56.3521294664445,-56.3522022767798,-56.3522373214855,-56.3522497548912,-56.352326314247,-56.3523597181507,-56.3523738322512,-56.3523889734422,-56.3524051550307,-56.3524415874012,-56.3524571554758,-56.3525295256328,-56.3526030303603,-56.3526199458995,-56.3526337531512,-56.3526572315726,-56.3526779892899,-56.352699026274,-56.3527522005853,-56.3528110711037,-56.3528525187989,-56.3528497044423,-56.3528455023989,-56.3528403128866,-56.3528250645281,-56.3528131920898,-56.3527602984442,-56.352715902208,-56.3526728932819,-56.3526824445284,-56.352706923927,-56.3526841920229,-56.3526376214387,-56.3526199724206,-56.3526006024579,-56.3525429063769,-56.3525069274163,-56.3525046728005,-56.3525194675244,-56.3525288318278,-56.3525740153156,-56.3525881290297,-56.3526275094678,-56.3526396892326,-56.352637048049,-56.3526342331404,-56.3526530158899,-56.3526559376001,-56.3526603402243,-56.3526698383313,-56.3526811375716,-56.352697812855,-56.3527376998551,-56.3527697297952,-56.3528161669147,-56.3528755311322,-56.3528813740283,-56.352893099731,-56.3529132566867,-56.3529259704354,-56.3529652035724,-56.3530147761538,-56.3530411365154,-56.3530424436919,-56.3530454452535,-56.3530452714731,-56.3530361473217,-56.3530179242243,-56.3529853338924,-56.3529648569191,-56.3529612953185,-56.3529509965659,-56.3529381096592,-56.3529778234104,-56.3530072656909,-56.352985774268,-56.352986254555,-56.3530198989895,-56.3529869350265,-56.3529343215085,-56.3528931532495,-56.3528847759462,-56.3528773453256,-56.3529059468348,-56.3528781854026,-56.352807895909,-56.3527009208146,-56.3526481071106,-56.3525961068071,-56.3525467348883,-56.3524417202854,-56.3523426160999,-56.3523264479696,-56.352360598623,-56.3524170814429,-56.3524124252699,-56.3523742992258,-56.3523471253101,-56.3523640007704,-56.3523967372633,-56.3524716691304,-56.3524820080154,-56.3524978294589,-56.3525185600216,-56.3525410118093,-56.3525580073442,-56.3525666652536,-56.3526204396719,-56.3526675038066,-56.3526704519582,-56.3526716127442,-56.3526677438918,-56.3526611801151,-56.3526725595723,-56.3526757345917,-56.3526832584501,-56.3526801767981,-56.3526701847404,-56.3526630076602,-56.3526504546961,-56.352633019131,-56.3525835403027,-56.3525555924556,-56.3525590740524,-56.3525712006802,-56.3525817796758,-56.3525794317906,-56.3525614753529,-56.3525509365815,-56.3525447739218,-56.3525534582811,-56.3525551255254,-56.3525418389975,-56.3525242561863,-56.3525086083931,-56.3524693748022,-56.3524379184642,-56.352427126544,-56.3524447753487,-56.3524526458717,-56.3524607172543,-56.3524630783421,-56.3524673735994,-56.3524769119572,-56.3525158786396,-56.3525705737789,-56.3525647307134,-56.3525319535487,-56.3525126107093,-56.3524998036545,-56.3525272846253,-56.3525555923274,-56.3526084865268,-56.3527188370253,-56.3527836966573,-56.3527942759662,-56.3528828414008,-56.3529239956094,-56.352944606765,-56.3529788510632,-56.3530473261009,-56.3530721119543,-56.353221802792,-56.3533282042537,-56.3533687853632,-56.3536163259571,-56.3537055320049,-56.3537874278128,-56.35379307042,-56.3537997809877,-56.3538063439774,-56.3538258343454,-56.3538426294895,-56.3538470984517,-56.3538526879815,-56.3538580374569,-56.353863320299,-56.3538636675212,-56.3538727787781,-56.3538773673748,-56.3538804625723,-56.3538805693161,-56.3538822231608,-56.3539108916245,-56.3539542870279,-56.3538962975157,-56.3538363061159,-56.3537956057352,-56.353733787012,-56.3537496216379,-56.3536761438203,-56.353606708243,-56.353598903707,-56.3536225294182,-56.3536600422329,-56.353692498808,-56.3537258761381,-56.3537648294854,-56.35380292932,-56.3538535822442,-56.3539162273974,-56.3539592228599,-56.3539711494803,-56.353969348344,-56.3539520060653,-56.3539561149068,-56.3539785795729,-56.3540357693858,-56.3540748690879,-56.354107379551,-56.3542042297022,-56.3542455373602,-56.3543065089872,-56.3542598045713,-56.3542401678275,-56.3542240264635,-56.3541951714736,-56.3541273099881,-56.354083633733,-56.3540579409608,-56.3540568070235,-56.3540597149517,-56.3540674654011,-56.3540782578911,-56.3540918251788,-56.3541077398701,-56.354118710259,-56.3541467731822,-56.3541695315859,-56.3541933171861,-56.3542051899759,-56.3542286287305,-56.3542503599379,-56.354269703247,-56.3542863384929,-56.3543002389951,-56.3543107244027,-56.3543188085719,-56.3543255320394,-56.3543329491979,-56.354341713718,-56.354353226322,-56.3543674469893,-56.3543840555548,-56.3544030520184,-56.3544251300713,-56.3544370028611,-56.3544495693419,-56.354463149679,-56.3544770768616,-56.3544916577146,-56.3545073057847,-56.35452327402,-56.3545395757605,-56.3545562376868,-56.3545725260872,-56.354588841168,-56.3546044625576,-56.354619750442,-56.3546479783332,-56.3546608783194,-56.354685691116,-56.3547087963653,-56.3547319149548,-56.354754700039,-56.3547778319687,-56.3548012974037,-56.3548131835337,-56.3548376761652,-56.3548625156422,-56.3548750687829,-56.3549005886108,-56.3549134885969,-56.3549390084248,-56.3549519217512,-56.35497812193,-56.3550039485828,-56.3550171954145,-56.3550434089335,-56.3550695824319,-56.3550960894355,-56.3551226364598,-56.3551491568037,-56.3551750234772,-56.355199849614,-56.3552233283893,-56.355245086277,-56.3552655101435,-56.3552859340099,-56.3553070382272,-56.3553295031463,-56.3553529952618,-56.355375847047,-56.3553980051412,-56.3554273402701,-56.3554553280374,-56.3554847165271,-56.3555059141259,-56.355528125581,-56.3555510173869,-56.3555739492134,-56.3555968410193,-56.3556190524743,-56.3556413039499,-56.355663515405,-56.3556846996636,-56.3557144349988,-56.3557403817135,-56.3557622196426,-56.3557833772208,-56.3558072828829,-56.3558328560716,-56.3558560146818,-56.3558740373098,-56.3558889916888,-56.355903265717,-56.3559189004469,-56.3559372966009,-56.3559598015406,-56.3559771704982,-56.3560058252762,-56.3560262624829,-56.3560474067209,-56.3560681907731,-56.3560879609691,-56.3561056767722,-56.3561288620628,-56.3561506999919,-56.3561746189942,-56.3561999387189,-56.3562259387944,-56.3562512851995,-56.3562759512538,-56.3563012976589,-56.3563187733382,-56.3563451469398,-56.3563626359593,-56.3563797781333,-56.3564037771769,-56.3564233472697,-56.3564418901661,-56.3564556439259,-56.3564738399767,-56.3564968118239,-56.3565197970113,-56.3565465974997,-56.3565634195085,-56.3565782271452,-56.3565920075855,-56.3565924611527,-56.3565758259068,-56.3565519602654,-56.35653911364,-56.356546744242,-56.3565618987242,-56.3565753056385,-56.3565904334403,-56.3566069486243,-56.3566224366118,-56.3566351631752,-56.3566445013245,-56.3566535059684,-56.3566597625284,-56.3566677399759,-56.3566815204162,-56.3566949273305,-56.3567130967009,-56.3567339474542,-56.3567585201269,-56.3567855473989,-56.3568108671236,-56.3568304238762,-56.3568434972851,-56.3568576245709,-56.3568717785372,-56.3568828242337,-56.3568952039516,-56.3569140936935,-56.3569325965693,-56.3569527936521,-56.3569792472949,-56.3569598239444,-56.3569441892145,-56.3569357581998,-56.3569508726614,-56.3569728039719,-56.3569936814056,-56.3570186276043,-56.3570463352272,-56.3570743896956,-56.3571014169676,-56.3571264165272,-56.3571503622099,-56.3571739743873,-56.3571979334103,-56.3572221859179,-56.3572461182604,-56.3572686365403,-56.3572986920407,-56.3573232913939,-56.3573485577578,-56.3573759185351,-56.3573944614315,-56.3574092423877,-56.3574267580877,-56.357440165002,-56.3574580275475,-56.3574819999106,-56.3574994889302,-56.357522127272,-56.3575365613827,-56.3575465798828,-56.3575576389196,-56.3575809576123,-56.3576045697897,-56.3576319038866,-56.3576606120255,-56.3576879594626,-56.3577142930435,-56.3577385855717,-56.3577611705527,-56.3577820746669,-56.3578080747424,-56.3578347551689,-56.3578552724168,-56.3578764566754,-56.3578965870572,-56.3579215599363,-56.3579431310611,-56.3579620074628,-56.3579768150995,-56.3579919562415,-56.3580067638782,-56.3580195304622,-56.3580339645729,-56.358059310978,-56.3580893798186,-56.3581115912737,-56.3581327888725,-56.3581533194606,-56.3581701814901,-56.3581809070216,-56.3581940337914,-56.3582132570386,-56.3582389236089,-56.3582517969146,-56.3582469010564,-56.3582488087069,-56.3582695927591,-56.3582895096974,-56.3583144825766,-56.3583356401547,-56.3583602261677,-56.3583817172512,-56.3584052760678,-56.3584315963084,-56.358457222858,-56.3584828227272,-56.3585043271509,-56.3585282461532,-56.3585514581242,-56.3585736695793,-56.3585952006834,-56.3586167051071,-56.3586402639237,-56.3586603943054,-56.3586750018389,-56.3586885955162,-56.3586918772086,-56.3587078454439,-56.3587272421139,-56.3587473458152,-56.3587664089799,-56.3587861658357,-56.3588096979718,-56.3588319094268,-56.3588564820996,-56.3588811214734,-56.3589047336508,-56.3589262914354,-56.3589523181914,-56.3589715147582,-56.3589822136092,-56.3589806261238,-56.3589749565332,-56.3589610293506,-56.3589399251333,-56.3589222093301,-56.3588949285941,-56.3588751583981,-56.3588533738299,-56.3588521198499,-56.3588757186871,-56.3589040933206,-56.3589249307336,-56.3589454079609,-56.3589730622229,-56.3589993291028,-56.3590115487381,-56.359017551834,-56.3590269833648,-56.3590384959688,-56.3590530768218,-56.3590771959274,-56.3591014084144,-56.3591165228759,-56.3591098394291,-56.3590979532991,-56.3590847064674,-56.3590787033714,-56.359098260124,-56.359122846137,-56.3591443772411,-56.3591665620157,-56.3591884266252,-56.3592092773785,-56.3592359311245,-56.3592571554037,-56.3592810477256,-56.3593060206048,-56.3593302864526,-56.3593515374123,-56.3593710941649,-56.359378044416,-56.3593802055305,-56.3593929587743,-56.3594067125342,-56.3594337798268,-56.3594549640854,-56.359475774818,-56.3594938374667,-56.3595135809823,-56.3595292157122,-56.3595438232457,-56.3595577504283,-56.3595767735723,-56.3595913544254,-56.3595984247384,-56.3596175012433,-56.3596386988421,-56.3596598831007,-56.3596816676689,-56.3596949145006,-56.359711202901,-56.3597196072353,-56.3597259838572,-56.3597457273728,-56.3597696730555,-56.3597936587589,-56.3598108542937,-56.3598348133167,-56.3598614403823,-56.3598822777953,-56.3599031285486,-56.3599280747473,-56.3599478716238,-56.3599734714929,-56.3599956562675,-56.3600192150841,-56.3600438544579,-56.3600657457478,-56.360084968995,-56.3600843953659,-56.360068760636,-56.3600603296212,-56.3600717221633,-56.3600892111829,-56.3601165452797,-56.3601387300543,-56.3601595541272,-56.3601847804704,-56.3601928779798,-56.3601855542027,-56.3601796311481,-56.3601723473917,-56.3601759625894,-56.3601946522282,-56.3602188913956,-56.3602410761702,-56.3602635677697,-56.360280603222,-56.3602979721796,-56.36031739553,-56.3603402339751,-56.3603634192656,-56.3603862310302,-56.3603840699157,-56.3603659005453,-56.3603497588873,-56.3603475710923,-56.3603666475972,-56.3603939550137,-56.3604243706999,-56.3604493168986,-56.3604760106652,-56.3604968480783,-56.3605211139261,-56.3605453530936,-56.3605665106717,-56.3605968996775,-56.360615642677,-56.3606270826639,-56.3606804627731,-56.3607043284145,-56.3607288744069,-56.3607510058206,-56.360767294221,-56.3607729638116,-56.360756475308,-56.3607389996287,-56.360718749185,-56.3606998327627,-56.3606847183011,-56.3606726720886,-56.3606582112974,-56.3606481794571,-56.3606655217343,-56.3606897609017,-56.3607109451603,-56.3607376122465,-56.3607724702237,-56.3607943081527,-56.3608192543515,-56.3608479358099,-56.3608967209696,-56.3609814713442,-56.3610452375635,-56.3610629533666,-56.3610928888051,-56.3611297211338,-56.3612820263481,-56.3613371481092,-56.3615063420335,-56.3615966152564,-56.3616400243102,-56.3616907304607,-56.3618056964182,-56.3619105504941,-56.3619417132322,-56.3619587486845,-56.3620926310644,-56.3621715250854,-56.3623313408398,-56.3624103415825,-56.3625244537664,-56.3625637006737,-56.3626527732774,-56.3627154322589,-56.3628204864381,-56.3628751946525,-56.3628765686944,-56.3629340650134,-56.3630809941219,-56.3631439465881,-56.3631412385248,-56.3631710005405,-56.3631096222194,-56.3630972024809,-56.363173975408,-56.3632755878121,-56.3633153416475,-56.3634951010207,-56.363689134422,-56.3638423200905,-56.3640310841076,-56.3641603107531,-56.3642560668036,-56.3643471938001,-56.364517615024,-56.3645951083226,-56.3646782712119,-56.3647884213525,-56.3647524294572,-56.364679658594,-56.3646012314805,-56.3645972427568,-56.3646474819998,-56.364783952381,-56.3649060686929,-56.36493404312,-56.3650081480044,-56.3650860948703,-56.3650735950905,-56.3650209279287,-56.3650142444819,-56.3648543429887,-56.3648218018986,-56.3648500461928,-56.3649537933151,-56.3650160114002,-56.3650789492212,-56.3651589106511,-56.3651705076315,-56.3651580386099,-56.3650461689669,-56.3650568379092,-56.3652197288608,-56.3652578887461,-56.3653017065446,-56.3653459167695,-56.3654170182431,-56.3654326408567,-56.3655138103382,-56.3655796054115,-56.3656017477596,-56.3656140736041,-56.3655560436076,-56.3654714793566,-56.3655128346037,-56.3655772547094,-56.365630108733,-56.3657521983501,-56.3658306658704,-56.365915669457,-56.3659665355114,-56.3660683478086,-56.366137410328,-56.366212049034,-56.3663115003899,-56.3663073377231,-56.3662542303318,-56.3663485991246,-56.3663994122293,-56.3665792518792,-56.3666389489972,-56.3667289955347,-56.3668033540889,-56.3668542202069,-56.3669613286887,-56.3670319520055,-56.3671424617416,-56.3672018128259,-56.3672721555652,-56.367430891069,-56.3675739377092,-56.3676666392716,-56.3677260696755,-56.3677932911231,-56.3678275754953,-56.3678722516699,-56.367861979634,-56.3678602056778,-56.3678631669736,-56.3679153675468,-56.3678281090306,-56.3678503735944,-56.3679207165391,-56.3681540234958,-56.3681732869604,-56.3681196327962,-56.3682002876132,-56.3682260344615,-56.3680997023952,-56.3677872344473,-56.3672665262312,-56.3670472926617,-56.3669683591859,-56.3670371481472,-56.3671331765954,-56.3672728494534,-56.367299996341,-56.3674188714049,-56.3674378617582,-56.3675053256209,-56.3675808321941,-56.3676567002988,-56.3677082563964,-56.3678164011256,-56.3679938648715,-56.3681067147807,-56.3681963519774,-56.368195687125,-56.3682956931608,-56.3683384017679,-56.3683990828087,-56.3683774809963,-56.3683880686813,-56.3684675400535,-56.3685283983863,-56.3685614391859,-56.3686140579516,-56.3686054747765,-56.3686656971582,-56.3687241784827,-56.3687511850511,-56.3687658761403,-56.3688073740292,-56.3688380698598,-56.3688562139745,-56.3689025317895,-56.3689399470201,-56.3689821174822,-56.3690217108436,-56.3691290332504,-56.3691674695675,-56.3691739096346,-56.3692382895967,-56.369333550153,-56.3693939327697,-56.3695463951613,-56.3696152306615,-56.3696044917899,-56.3697366190618,-56.369761973007,-56.3697994456659,-56.3699077894225,-56.3699662140589,-56.3701008983363,-56.3701627927351,-56.3702605101153,-56.3702973856493,-56.3703513537075,-56.370364131023,-56.3703773229511,-56.3704028811093,-56.3704196455188,-56.3704531296205,-56.3704801168199,-56.3705353456307,-56.3705776813827,-56.3706039207543,-56.3706325376271,-56.3706344338348,-56.3705911250041,-56.3705689491852,-56.370590997894,-56.3706363326381,-56.3707582998653,-56.3710783852478,-56.3710937574138,-56.37114140449,-56.3712134572566,-56.3712134959995,-56.3711911503447,-56.3711232377713,-56.3709420173278,-56.370807992466,-56.3707406377294,-56.3707414127269,-56.3707571381779,-56.3708291365141,-56.3708745473361,-56.3709798014873,-56.3710160369271,-56.3710931928845,-56.3711201911784,-56.3712268147203,-56.3712768074598,-56.3712861857491,-56.3713192483947,-56.3713317442341,-56.3713416627844,-56.3713550746102,-56.3713597673113,-56.3713333723219,-56.3713466586151,-56.3713765310116,-56.3715879413722,-56.3716537319167,-56.3716845337632,-56.3717802582659,-56.3718035809525,-56.3719007561303,-56.3719793045788,-56.3720042057764,-56.3719978327637,-56.3720144882698,-56.3720305380138,-56.3720854688871,-56.3721296207301,-56.3721299500856,-56.3720895887783,-56.3720351186597,-56.3720493552795,-56.3720994819288,-56.3721168446998,-56.3721187493678,-56.3721344334609,-56.3721431610466,-56.3722884893294,-56.372299353252,-56.3722894626911,-56.372290147909,-56.3723130886826,-56.3724814784942,-56.3726884068155,-56.3727529454352,-56.3728519932762,-56.3731760667407,-56.3732660986183,-56.3736601486941,-56.3738859533825,-56.3739727034582,-56.3741992880835,-56.3743315797155,-56.3744933461563,-56.3745481033633,-56.3745832096105,-56.3746212963959,-56.3747927084868,-56.3748266425425,-56.3749145766927,-56.3750038020204,-56.3750335228399,-56.3750538553833,-56.3750675823008,-56.3750630623505,-56.3750665418138,-56.3751107360589,-56.3751555681767,-56.375200605021,-56.3752852206348,-56.3754040617034,-56.3754947465273,-56.375526079181,-56.3756645740665,-56.3759029915278,-56.3759593157471,-56.3759771231079,-56.3759804262885,-56.3759593027441,-56.3759055541727,-56.3757397727455,-56.375718105671,-56.3757168399391,-56.3757358192158,-56.3757613871561,-56.375812982469,-56.3758867740905,-56.3759088497039,-56.3759668693119,-56.3761166165977,-56.3761956507156,-56.3762303058114,-56.3762635262322,-56.3762978131364,-56.3764200059169,-56.3765138473011,-56.3766014242143,-56.3766453736526,-56.3766799603931,-56.3766927626162,-56.3767359964553,-56.3768215029367,-56.3769764312822,-56.3770987608331,-56.3770329906488,-56.3769618895895,-56.3769208254119,-56.3768820307041,-56.3767510812728,-56.3765939740264,-56.3765098185247,-56.3764144784057,-56.3762606313243,-56.3760752680457,-56.3760773345012,-56.3758610259851,-56.3758404435387,-56.3759005361298,-56.3760750468838,-56.3761138804648,-56.3761759988514,-56.3762691470474,-56.3763242796532,-56.3764452121902,-56.376583291136,-56.3768238604612,-56.376827104767,-56.3768569652054,-56.3768948924968,-56.3769326345195,-56.3770126322193,-56.3771588330285,-56.3772513855208,-56.3774048613931,-56.3774549328582,-56.3774990433747,-56.3775581923568,-56.3775490831457,-56.3775539640222,-56.3775766563484,-56.3776121454012,-56.377665426437,-56.3776826022733,-56.3777360156744,-56.377778330774,-56.3778408379975,-56.3778687142056,-56.3778990485311,-56.3779133404358,-56.3779621105926,-56.378076754812,-56.3781267566447,-56.3781391004779,-56.3781830385441,-56.3782068488487,-56.3782517421837,-56.3782897371082,-56.3785764521197,-56.3788256472467,-56.3789706919606,-56.3790701802236,-56.3792210304298,-56.3793239177434,-56.3793543749014,-56.3793918876735,-56.3794422512767,-56.3795364868495,-56.3795323720248,-56.3795605769014,-56.3795582303636,-56.3795897172629,-56.3795986407625,-56.379626394257,-56.3796585566433,-56.3796778028699,-56.3796889486795,-56.3796859809217,-56.3797246628422,-56.3797351828094,-56.3797448719094,-56.3797315111283,-56.3797289164464,-56.3797518369932,-56.3797408386897,-56.3797528723476,-56.3798368256695,-56.3798420001818,-56.3798232167944,-56.3798084462736,-56.3798323731102,-56.3798679982427,-56.3799514561339,-56.3799620599961,-56.3799598905636,-56.3799216717761,-56.3799200133428,-56.3799410657898,-56.3799773157588,-56.3800103057453,-56.380021816385,-56.3800107325874,-56.3800365428447,-56.3800258931655,-56.3800547543275,-56.3800805480626,-56.3800882074712,-56.3801231032443,-56.3801469741923,-56.3801734571737,-56.380210028089,-56.3802125813722,-56.3801838758486,-56.3801481162966,-56.3801955486681,-56.3801693415437,-56.380170980465,-56.3802060795203,-56.3802439640218,-56.3802737252987,-56.3803245139125,-56.3803451993977,-56.3803575915011,-56.3803771415704,-56.3803952600501,-56.3804210837781,-56.3804370938543,-56.3804594189909,-56.3805250821466,-56.3805318170402,-56.3805608616054,-56.3805901996971,-56.3806540702899,-56.3807004028208,-56.3807283438688,-56.3807450641301,-56.3806942115979,-56.3806808713565,-56.3806619007503,-56.3806454924782,-56.3806584678009,-56.3806586749508,-56.3806700153066,-56.3807105296204,-56.3807319635293,-56.3807434718641,-56.3807206099242,-56.3807474248275,-56.3807648839634,-56.380781726215,-56.3808139101079,-56.3808714479467,-56.3808715946279,-56.3808425241182,-56.3808582367743,-56.3808208357989,-56.380818153885,-56.3808810122929,-56.3809022009236,-56.3809101223557,-56.3809136619945,-56.3809334535513,-56.380950243956,-56.3809544385136,-56.3809184139196,-56.3808850056836,-56.3808795383067,-56.3809007441473,-56.3809230450503,-56.3809271153919,-56.380928365768,-56.3809520637275,-56.3809681386327,-56.3809905602665,-56.3810411815184,-56.3810288151805,-56.3810638705543,-56.3810922432561,-56.3810785999706,-56.3810464729185,-56.3810297036523,-56.3810264696527,-56.3809785390064,-56.3809568528413,-56.3809324366997,-56.3809050135689,-56.3809163365438,-56.3809165090938,-56.380939163648,-56.3810008058035,-56.3810286861553,-56.3810842256424,-56.3810718460837,-56.3810952783822,-56.3811372670433,-56.3811893195146,-56.3811992712204,-56.381228876236,-56.3812361114652,-56.3812293940623,-56.3812576791548,-56.3812953644995,-56.3813091882367,-56.3812989520493,-56.3813666307311,-56.3813269275009,-56.3813167516469,-56.3813053684276,-56.3813295522958,-56.3813908031912,-56.3814289455665,-56.3814752977031,-56.3815076708409,-56.3815135347892,-56.3815405941905,-56.38152793607,-56.3815282291114,-56.3815064282251,-56.3815238217729,-56.3814534557671,-56.3814717345296,-56.3815179022036,-56.3815139939457,-56.3814500889237,-56.3814436640902,-56.3814457076031,-56.3815202152232,-56.381495404978,-56.3815264827073,-56.3815449829525,-56.3815966799017,-56.3816373313386,-56.3816708167145,-56.3816931604059,-56.3817368729411,-56.3817342081403,-56.3817105536098,-56.3816713337113,-56.3816249563636,-56.3815398203597,-56.3815301573224,-56.3815348137758,-56.3815125821648,-56.3815171007267,-56.3815242237051,-56.381546601813,-56.3815898231249,-56.3816150038818,-56.3816206867353,-56.3816254112101,-56.3815610804376,-56.3814944977811,-56.3814937040962,-56.3814548549604,-56.3814538285874,-56.3814194463776,-56.3814225741187,-56.3813994998002,-56.3813998149684,-56.3814112533983,-56.3814280174689,-56.3814586395472,-56.3814682203485,-56.3815058102466,-56.3815365357804,-56.3815215565353,-56.3814877578759,-56.3814816122143,-56.3814987727338,-56.3814823620647,-56.3814428064791,-56.3814093208174,-56.3813786038365,-56.3812828314585,-56.3812402229751,-56.3811971317132,-56.381186507626,-56.3811101300914,-56.381084406554,-56.3810207315283,-56.3809597384605,-56.3808643212075,-56.3808226100909,-56.3808034404462,-56.3807861889396,-56.3807659069786,-56.3807615802135,-56.3807689812649,-56.380760504454,-56.3807464782502,-56.380645628145,-56.380623480837,-56.3806156496549,-56.3805612552241,-56.3805129811698,-56.3804511137974,-56.3803993187211,-56.3803132120342,-56.3802417198537,-56.3801549179955,-56.3800583808954,-56.3798970469836,-56.3798250756164,-56.3798608714122,-56.3799847096871,-56.3800569023608,-56.3801684340213,-56.3802096605774,-56.3802373987476,-56.3802982947453,-56.3803438972522,-56.3803577894019,-56.3803803565443,-56.3803915992039,-56.3804078636543,-56.3804375390579,-56.3804342777341,-56.3804531525211,-56.380477717642,-56.3806042514016,-56.3806355541429,-56.3806973838766,-56.3807931259458,-56.380852665765,-56.3810460429757,-56.3810846282823,-56.381282697893,-56.3813419372804,-56.3813720274799,-56.3814922260494,-56.3816712798353,-56.3819972698914,-56.3820831187644,-56.3821687417025,-56.3823028088283,-56.3823487262583,-56.3823757315331,-56.382624667088,-56.3826732009256,-56.3828209877483,-56.3829684562394,-56.383035316013,-56.3831086304902,-56.3831491387699,-56.3831727692722,-56.3831605263917,-56.3831075972512,-56.3830966231539,-56.3830979455568,-56.3831323753671,-56.3834171011026,-56.3834602093779,-56.3835519238118,-56.3835963440857,-56.3836678553332,-56.3837473512557,-56.3838780532544,-56.3838895946542,-56.3839719727743,-56.3839966255719,-56.3840319028884,-56.3840382610875,-56.3841004080401,-56.3841595786093,-56.3842026074162,-56.3842214010937,-56.3842220701827,-56.3842126848586,-56.3841748319508,-56.3840982494776,-56.3840866838093,-56.3840382790881,-56.384012842275,-56.3839796045887,-56.3839954929381,-56.384028396164,-56.3840690581653,-56.3840936442623,-56.3841820217813,-56.3842070713285,-56.3842372117785,-56.3842987932581,-56.3843787882025,-56.3844353867733,-56.3844863348484,-56.3845047019727,-56.3845390136875,-56.3845483583169,-56.3846026930638,-56.3846044575368,-56.3845886176524,-56.3845938090322,-56.384648910416,-56.384681604186,-56.3847155857515,-56.3847114406003,-56.3847692459635,-56.3848124518302,-56.3848428704716,-56.3848468327799,-56.3848410696059,-56.3848349598967,-56.3848327717728,-56.3848315980921,-56.3848713651031,-56.3848951642483,-56.3849193365991,-56.3849615582346,-56.3849902667749,-56.3850319145532,-56.3850674266342,-56.385102591445,-56.3851282181161,-56.3852092196616,-56.3852781322529,-56.3853261465158,-56.3853510526895,-56.3853756522956,-56.3854042934295,-56.3854326012919,-56.385460215363,-56.3854823334885,-56.385495580595,-56.385500249922,-56.3854977284614,-56.3855301986012,-56.3855537704396,-56.3855797443045,-56.3856053969378,-56.385642643212,-56.385710491212,-56.3857240315102,-56.3857345172278,-56.3857429348552,-56.3857489644261,-56.3857525798996,-56.3857445490734,-56.3857316888033,-56.3857223244062,-56.3857116116952,-56.3857066761317,-56.3857031408918,-56.3857009532418,-56.3856998060517,-56.3857068359379,-56.3857203761871,-56.3857418143608,-56.3857649994146,-56.3857987369727,-56.3858331543174,-56.3858635034963,-56.3859211332503,-56.3859784164407,-56.3860128737679,-56.3860469852237,-56.386073918557,-56.3861023402009,-56.3861398996279,-56.3861644188491,-56.3861828151326,-56.3862015446277,-56.3862233559772,-56.3862671116656,-56.3863064117952,-56.3863405766632,-56.3863894415621,-56.3864147214572,-56.3864414017348,-56.3864841704377,-56.3865067818886,-56.3865457622041,-56.3865956809254,-56.3866235435012,-56.3866316317469,-56.386602257666,-56.3865796061716,-56.3865634648944,-56.3865486839443,-56.3865266988073,-56.3865067551712,-56.3864929752149,-56.3864829161348,-56.3864855311053,-56.3864936152411,-56.3865064887609,-56.3865221103045,-56.3865460024033,-56.3865708814901,-56.386619746971,-56.386668599121,-56.3867003751696,-56.3867485601516,-56.3867704249177,-56.3867919825,-56.3868131935475,-56.3868340706611,-56.3868542814327,-56.3868738250403,-56.3868933546256,-56.386917953992,-56.386939858856,-56.3869659913794,-56.3869815469399,-56.3869978488829,-56.3870049058633,-56.386996247742,-56.3869814399636,-56.3869656319222,-56.3869617631674,-56.3869585348503,-56.3869573880917,-56.3869586151736,-56.3869687399773,-56.3869857357063,-56.3870266400053,-56.3870238620997,-56.3870111219011,-56.3869905646265,-56.3869689802714,-56.3869873495816,-56.3870101751644,-56.3870340003054,-56.3870479013909,-56.3870658840461,-56.3870978600227,-56.3871134814075,-56.3872430052234,-56.3875181171558,-56.3876168632271,-56.3876377416529,-56.3876498651021,-56.3876486645682,-56.3876348972883,-56.3876172744417,-56.3876014262723,-56.3875738922338,-56.3875468381053,-56.3875326627787,-56.3875911811678,-56.3876294813511,-56.3876675541624,-56.3876935544153,-56.3877212353853,-56.3877536387676,-56.3877733018676,-56.3878018229996,-56.3878243151266,-56.387857091816,-56.3878834253171,-56.3879528744647,-56.3879841172502,-56.3880088102188,-56.388032169054,-56.3880534999727,-56.3880746042853,-56.3881019648916,-56.3881371564846,-56.3881589405626,-56.3881662245071,-56.3881711741158,-56.3881812724342,-56.3882149830246,-56.3882415967926,-56.388263128138,-56.3883071769946,-56.3883338577803,-56.3883669013773,-56.3883688354164,-56.3883452103039,-56.3883051094346,-56.3882814971956,-56.3882585787228,-56.3882025496718,-56.3881728146677,-56.3881481618561,-56.3881647570199,-56.3881964933342,-56.3882307247982,-56.3882539629335,-56.3882830316987,-56.3883143810499,-56.3883296689073,-56.3883507597974,-56.3883745852454,-56.388389499682,-56.3884085229386,-56.388417167,-56.3884382317077,-56.3884696340184,-56.3884534657779,-56.3884226501082,-56.3884271993426,-56.3884274125502,-56.3884091895921,-56.388391927354,-56.388385978126,-56.3883943956849,-56.3884133787115,-56.3884474362986,-56.3884336421281,-56.3884754643082,-56.388537562739,-56.3885761691054,-56.3886147492894,-56.3886511948171,-56.3886770748366,-56.3887023274544,-56.3887368389731,-56.3887675211718,-56.3887807017336,-56.3887808618095,-56.388788612076,-56.3887962557907,-56.3888183473208,-56.3888524853644,-56.3888947337599,-56.3889493483417,-56.3889574325137,-56.3889419314466,-56.3889285246396,-56.3889161046852,-56.3889248693443,-56.3889564589828,-56.3889966658546,-56.3890458381514,-56.3890765872935,-56.3891176216918,-56.3891753584205,-56.3892073878481,-56.3892035060735,-56.3891833223138,-56.3891477577065,-56.3891230379204,-56.3890843377482,-56.3890518549316,-56.3890370738663,-56.3890037764215,-56.3889995607405,-56.3890123939632,-56.3890327516551,-56.3890346191448,-56.3890402750575,-56.3890244670062,-56.3890147822856,-56.3890152357362,-56.3889976000327,-56.389008072128,-56.3890281087155,-56.3890262817412,-56.3890412360196,-56.3890636874685,-56.3890874862979,-56.3891453159824,-56.3891716229374,-56.3891924601607,-56.3892153259169,-56.3892185675997,-56.3892355625716,-56.3892573603881,-56.3892558530032,-56.3892536787329,-56.3892247703022,-56.3891870711864,-56.389171209387,-56.3892087889705,-56.3891984237989,-56.3891846296348,-56.3891496919595,-56.3891154609865,-56.3890691968494,-56.3890502540607,-56.3890309371278,-56.3890570707396,-56.3890654349155,-56.3890701039769,-56.3890881535095,-56.389122997804,-56.38915818933,-56.3891810811967,-56.3892125506883,-56.3892378305176,-56.3892623767609,-56.3892762636931,-56.38924995687,-56.3892253575282,-56.3891997311588,-56.3891682347651,-56.3891602568918,-56.3891539602985,-56.3891176485043,-56.3891164743895,-56.3891413276311,-56.3891642194641,-56.3891885117346,-56.3892202211452,-56.3892499300107,-56.3892806794924,-56.3893092009112,-56.3893353874401,-56.3893591867276,-56.3893623881224,-56.3893323324284,-56.389301890017,-56.3892836672177,-56.3892651509987,-56.3892398981664,-56.3892246100982,-56.3891955688379,-56.3891637392798,-56.3891601639001,-56.3891590299887,-56.3891766389128,-56.3892254772829,-56.3892606291602,-56.3892889899152,-56.3893518630132,-56.3893857203703,-56.3894079585694,-56.389447338768,-56.3894695500711,-56.3894827833573,-56.389477847644,-56.389447405243,-56.3894203911464,-56.3893923769206,-56.3893574656525,-56.3893314390492,-56.3893071461166,-56.3892740094714,-56.3892466086282,-56.3892591083385,-56.3892956606693,-56.3893208865371,-56.3893368281119,-56.3893904423087,-56.3894160423299,-56.3894467917207,-56.3894753129539,-56.3894819963886,-56.3894681760477,-56.3894446702984,-56.3894194706689,-56.389396859043,-56.3893991005325,-56.3894285956532,-56.3894390674858,-56.3894477122932,-56.3894498334883,-56.3894207512109,-56.3894413752648,-56.3894503665766,-56.3894378936095,-56.3894241397745,-56.3894375866374,-56.3894083715017,-56.3894147216968,-56.3894227922568,-56.3894377067153,-56.3894317573541,-56.3894040227428,-56.3893675507215,-56.3893407101676,-56.3893106945655,-56.3892779577733,-56.3892515041045,-56.3892315337882,-56.3892525445628,-56.3892650711135,-56.3892683396129,-56.3892504502103,-56.3892306001457,-56.3892134045272,-56.3892066674561,-56.3892152507547,-56.389246594764,-56.38928993749,-56.3893260890981,-56.3893492345258,-56.3894539820636,-56.3895226983579,-56.3895302610195,-56.3895231370217,-56.3895377801249,-56.389568867677,-56.389571351651,-56.3895540470128,-56.3895248851487,-56.3895000063426,-56.3894736587139,-56.3894271945544,-56.3893816647435,-56.3893517962341,-56.3893312650622,-56.3892949799793,-56.3892480623667,-56.3892219689835,-56.3892037464439,-56.3891965715551,-56.3891639657602,-56.3891427679361,-56.3891183158769,-56.3891188761381,-56.3891043218012,-56.3890925288146,-56.3890844315969,-56.389111952481,-56.3891336698074,-56.3891340836716,-56.3891175417762,-56.3890979720016,-56.3890505872134,-56.3890489866292,-56.3890563505358,-56.3890675160605,-56.3890675558309,-56.3890721314841,-56.3890709843082,-56.3890585116269,-56.3890481460467,-56.3890380211027,-56.3890580979884,-56.3890958909892,-56.3891069760709,-56.3891235185315,-56.3891575754758,-56.3891971026436,-56.3892269049351,-56.3892549326505,-56.3892746097568,-56.3893214871083,-56.3893632420589,-56.3894213384885,-56.3894777407186,-56.3895208033004,-56.3895628381603,-56.3895973889841,-56.3896302592754,-56.3896962267441,-56.3897724926215,-56.3898814023571,-56.3899587226713,-56.3900220085879,-56.3900617352311,-56.3900851345087,-56.3901395089515,-56.3902362386054,-56.3903506843417,-56.390456646026,-56.3905493333009,-56.3906014536918,-56.3906682751227,-56.3907582681026,-56.3908234083092,-56.3908732342857,-56.3909124004952,-56.3909531951976,-56.3910163477518,-56.3910621177328,-56.3911016047415,-56.3911710942736,-56.3911959738531,-56.3912430382536,-56.3912569518671,-56.3912793769176,-56.3913338717259,-56.3913700900852,-56.3913987580058,-56.3914398863185,-56.3915490357771,-56.3915708740145,-56.391597807448,-56.3916294909683,-56.3916649358204,-56.3916853457732,-56.391715975254,-56.3917445500767,-56.391767695067,-56.3918445881137,-56.3919083278182,-56.3919540177088,-56.3920293503456,-56.3920845785625,-56.3921169687325,-56.392153134211,-56.3921964632693,-56.3922651383385,-56.3923081248596,-56.392649464815,-56.3929647191237,-56.3931415902193,-56.3931675639982,-56.3931914163002,-56.3932230723474,-56.3932572102335,-56.3932889198327,-56.3933260988629,-56.3933724829234,-56.3933965619812,-56.3934087684701,-56.3935305377803,-56.3935557370562,-56.3936110724727,-56.3936508666493,-56.3937062820278,-56.3937511049923,-56.3937932333077,-56.3938088677719,-56.3938670716383,-56.3939229002459,-56.3939862660008,-56.3940270868863,-56.3940760460061,-56.3941315278961,-56.394182220803,-56.3942319529526,-56.3942646626651,-56.3942785770139,-56.3943218790167,-56.3944039212749,-56.3944686217705,-56.3945595752389,-56.3945837478821,-56.3946161109574,-56.3946516093113,-56.3946774627985,-56.3947099193628,-56.3947406950582,-56.3947601052012,-56.394786265373,-56.3948178684181,-56.3948783397705,-56.3949203440091,-56.3949250835467,-56.3949513902617,-56.3949899973261,-56.3950730797298,-56.3951434629229,-56.3952187287084,-56.3952529590338,-56.3953030916678,-56.3954426841887,-56.3955053561298,-56.3955144540172,-56.3955304695452,-56.3955145608383,-56.3954963383846,-56.3955307823809,-56.3956066620649,-56.3956775251031,-56.3957457601418,-56.3957738679032,-56.3958590587433,-56.3958943698705,-56.396003599976,-56.3960412724199,-56.3960711059728,-56.3960860541753,-56.3960828008447,-56.3960653118564,-56.3960484893461,-56.3959980238604,-56.3959671145747,-56.3959395130908,-56.3959598975565,-56.3959929407386,-56.3960342889748,-56.39608329429,-56.3961398663319,-56.3962199917452,-56.3962652414636,-56.3962768278711,-56.3963372122136,-56.3963949217608,-56.3964356468357,-56.396489624012,-56.396547613601,-56.3965933574226,-56.396658310956,-56.3966821366489,-56.3967121653615,-56.3967378181718,-56.396767954062,-56.3967916062231,-56.396798596157,-56.3967987166405,-56.3967956515518,-56.3967630755351,-56.3966996187927,-56.3966792104249,-56.3966586623736,-56.396661392507,-56.3966854764466,-56.3967376048327,-56.3967850172325,-56.3968148179281,-56.3968914445069,-56.3969221936304,-56.3969990597871,-56.3970451901244,-56.3971219763425,-56.3971681872892,-56.3972450534462,-56.3973062852671,-56.3973828174544,-56.397460124045,-56.3975520248498,-56.3975827739635,-56.3976906298401,-56.3977522214065,-56.3978293682632,-56.3979063944665,-56.3981079013442,-56.3982841429137,-56.3984922637858,-56.3987409662882,-56.3989858345695,-56.399120407144,-56.3992941475806,-56.399414073001,-56.3995409434962,-56.3995524033781,-56.3995575098416,-56.3995521687766,-56.3994651020567,-56.3994911363009,-56.3996115138185,-56.3996111801002,-56.3996513475074,-56.3996833510523,-56.3997013871037,-56.399722170793,-56.3997618181351,-56.399894729044,-56.3999297714837,-56.4000028860341,-56.4000544488223,-56.4000791415728,-56.4001132790826,-56.4001339963615,-56.4001299010944,-56.4001168274339,-56.4001289541472,-56.4001627844696,-56.4001848358865,-56.400202098452,-56.4002326473725,-56.4002699868875,-56.4003040044785,-56.4003219204804,-56.4003343536336,-56.4003559779215,-56.4003827779445,-56.4004128201698,-56.400454909133,-56.4005004389578,-56.4005674601668,-56.4006004506981,-56.4006316930101,-56.4006582266785,-56.4006622026233,-56.4006497825212,-56.40060083728,-56.40057453023,-56.4005708505115,-56.4005736897578,-56.4005960410663,-56.4006203137628,-56.4006378963756,-56.400644459867,-56.400649342129,-56.4006689123403,-56.4007167663943,-56.4007518488802,-56.4008099985806,-56.4008883992832,-56.4009494038444,-56.4009980419619,-56.4010676922203,-56.4011629408562,-56.4012699959871,-56.4015501007427,-56.4016051817127,-56.4016636257058,-56.4017598888036,-56.4017929990097,-56.4018383153647,-56.4019050966622,-56.4019313633807,-56.4019655675986,-56.4020078299769,-56.4020589627615,-56.4020803605838,-56.4021287590233,-56.4021751559916,-56.4022229271194,-56.402281317187,-56.4023369729756,-56.4024671735679,-56.4025475611112,-56.4025786705303,-56.4025992945865,-56.402624361002,-56.4026622869256,-56.4026871522376,-56.4026855523411,-56.4027486647814,-56.4027706896522,-56.4028530519914,-56.4029231551847,-56.4029549583136,-56.4029816386974,-56.4029961925841,-56.4030157897797,-56.403109717989,-56.4031524597541,-56.4031893191639,-56.4032419059986,-56.4032862892773,-56.4033462668607,-56.4034654033414,-56.4034803492841,-56.4034999728734,-56.4035005327483,-56.4034898208519,-56.4034403756432,-56.4034411479038,-56.4034481193581,-56.4035069008113,-56.4035157874973,-56.4035401266013,-56.4036079793584,-56.40367700022,-56.4036784910401,-56.4037210331038,-56.4037633348961,-56.4039612688483,-56.4039998889974,-56.404040389203,-56.4040966135051,-56.4041285103125,-56.4041672635545,-56.4041961448403,-56.4042165156668,-56.4042361657704,-56.4042639931465,-56.4043016128362,-56.4043252784415,-56.4043516783273,-56.4043878572255,-56.4044314265297,-56.4044868923883,-56.4044702495043,-56.4044861696222,-56.4045673754027,-56.4046020206886,-56.4046223112975,-56.4046773934183,-56.4046946018578,-56.4047319015055,-56.4047592354157,-56.4048517264574,-56.4048605207489,-56.4048808830609,-56.4048813252224,-56.404861634649,-56.4048691629469,-56.4048816849549,-56.404922345975,-56.4049328075304,-56.404920256513,-56.4049258008966,-56.4049708643594,-56.4049835376339,-56.4049861733123,-56.4049235001625,-56.404920652252,-56.4049379543457,-56.4049429569632,-56.4049537780972,-56.4050007601358,-56.4050262587995,-56.4051041024317,-56.405118593731,-56.4051411387616,-56.4051684462643,-56.4052001828189,-56.4052295308943,-56.4052595330009,-56.4052758220553,-56.4052780492305,-56.4052738074765,-56.40529977758,-56.4053156422297,-56.4053631332813,-56.4053837843174,-56.4054190955211,-56.4054527264384,-56.4054753646121,-56.4055175998767,-56.4055415190322,-56.405570533889,-56.4056079932165,-56.4056502283462,-56.4056824317067,-56.4057176894934,-56.4057358589798,-56.405745010066,-56.4057805085553,-56.4057861386063,-56.4057903674092,-56.4057762395663,-56.4057560162308,-56.4057388737026,-56.4057124735316,-56.4056922495109,-56.4056706653439,-56.4056462295007,-56.4056500149,-56.4056673836049,-56.4057001741423,-56.4057252134453,-56.4057491589971,-56.4057706770355,-56.4058072024103,-56.4058510470407,-56.4058758325741,-56.4058810936434,-56.4059039587308,-56.4059237958693,-56.4059518769926,-56.4059764494343,-56.4060006356392,-56.4060217662369,-56.4060470462273,-56.4062269338966,-56.4062589553455,-56.4063112889016,-56.4063324068821,-56.4063586469399,-56.406373631206,-56.4063813250202,-56.4064101130889,-56.4064283097757,-56.4064479063533,-56.4064643949994,-56.4065165016458,-56.4065784002507,-56.4065992776938,-56.40662219644,-56.4066671394079,-56.4067854794855,-56.4068698558322,-56.4067446057593,-56.406711868901,-56.4066895505537,-56.4066696736087,-56.406594776454,-56.4066768350708,-56.4067406840493,-56.4067605874264,-56.4068092351433,-56.4069352990693,-56.407068805667,-56.4071507171292,-56.4071500724878,-56.4071258394453,-56.407167652515,-56.407256602968,-56.4074370146164,-56.4074891973485,-56.4075156119617,-56.4075517019881,-56.4075729133155,-56.4075974723527,-56.4076172558196,-56.4076359696751,-56.407641308562,-56.4076263407602,-56.4077177857643,-56.4076984971536,-56.4077398255418,-56.4077818207252,-56.4078380180881,-56.4078446799974,-56.4078582799208,-56.4078613281728,-56.4078451732847,-56.4078331275166,-56.4078263024477,-56.4077914063131,-56.4077699610863,-56.4077578483093,-56.407819933538,-56.4078394639902,-56.4078607151124,-56.4078854612074,-56.4078965198648,-56.4079120312547,-56.4079262154976,-56.4079725661284,-56.4080317230917,-56.4080452238768,-56.4080448249071,-56.4080260666108,-56.4080114544204,-56.4079705049204,-56.4079471141407,-56.407920251912,-56.4079997195797,-56.4080201840642,-56.4080644068919,-56.4080890056147,-56.4081115910162,-56.4081474628799,-56.408178091825,-56.4081908850594,-56.4084213774204,-56.4084576761467,-56.4084919601685,-56.4085155990696,-56.4085419729645,-56.4085727751923,-56.4086005497922,-56.4086255761367,-56.408661847659,-56.4086898093458,-56.4087842332387,-56.4087609390491,-56.408731430509,-56.4086928240705,-56.4087087391729,-56.4088971975569,-56.4091498885322,-56.4092157447362,-56.4092161757303,-56.4091319167409,-56.4091862331299,-56.409440189559,-56.4095176771655,-56.4097442716371,-56.4098561196022,-56.4099869711722,-56.4102710115167,-56.4103829465228,-56.410410443891,-56.410303397594,-56.4103347908201,-56.4104537735855,-56.4106270492235,-56.4107221374634,-56.4108845850162,-56.411141849901,-56.4112344446241,-56.4112967093676,-56.4110703170253,-56.4110304697054,-56.4110138927756,-56.411062459304,-56.4111569286657,-56.4112300439977,-56.4113836594083,-56.4114799911513,-56.4113613737329,-56.4113002129214,-56.4112813896489,-56.4113703590384,-56.4114628398942,-56.4115898852551,-56.4117629564803,-56.4118742510424,-56.4119540259145,-56.4120648828477,-56.4121186174457,-56.4121432969071,-56.4121808625579,-56.412258262766,-56.4123633839348,-56.4123773373682,-56.4123628768361,-56.4123731216977,-56.4123323809362,-56.412335716385,-56.4124986003728,-56.4125743991676,-56.4127663355484,-56.4129366368939,-56.4130673736575,-56.4131516340843,-56.4134086945735,-56.4137317158082,-56.4138375035557,-56.4139849662772,-56.4141341101207,-56.4142802390621,-56.4143534767804,-56.4144613959146,-56.414607102922,-56.4147383347464,-56.4148769978583,-56.4150653581877,-56.4153225789333,-56.4155420357013,-56.4157101795627,-56.4159488894623,-56.4163150219037,-56.4164840422793,-56.4165799270523,-56.41652687098,-56.416631282967,-56.4168812307285,-56.4170269237358,-56.4170849277733,-56.4171126647093,-56.4176371175759,-56.4181688009961,-56.418462109616,-56.4186398132387,-56.4189403309142,-56.4191251911234,-56.4191059811101,-56.4191468286895,-56.4192516024317,-56.4193473756704,-56.4194133019954,-56.4194642943611,-56.4196274501878,-56.4196941507292,-56.4197323303387,-56.4197363590954,-56.4198657330359,-56.4200184512385,-56.420002672357,-56.4199436399745,-56.4199842662725,-56.42032889235,-56.4205329654549,-56.4206872053066,-56.4208341444096,-56.4211506353145,-56.4212127309785,-56.4217142406111,-56.422014684083,-56.4223533211499,-56.4231768677873,-56.4235079819352,-56.4237849468807,-56.4240510462734,-56.4241169677256,-56.4244304984264,-56.4246049771241,-56.4247829085539,-56.4248512642806,-56.4249145431383,-56.4249138849493,-56.4250527275389,-56.4250365598514,-56.4250792218619,-56.4251638781822,-56.425244560169,-56.4252626758957,-56.4252258836143,-56.4253924233079,-56.4254915676731,-56.4255135254685,-56.4254615251646,-56.4255872968465,-56.4256641366782,-56.4256547184509,-56.4257456719845,-56.4259124778054,-56.4259142664749,-56.4259311706288,-56.4262784254296,-56.4266563906111,-56.4270494303501,-56.4272986671515,-56.4279315699908,-56.4283507960891,-56.4286865513101,-56.4289145928577,-56.4288592777794,-56.4288467112421,-56.4288039956124,-56.4288984670859,-56.4289153398552,-56.4286034760501,-56.4285965794858,-56.4285927917857,-56.4286819050517,-56.4288168350908,-56.4290643697804,-56.4290237360026,-56.4290608217627,-56.4290006302376,-56.4290020374045,-56.4290926709365,-56.4290677208159,-56.4292160218769,-56.4290800045856,-56.4293754023608,-56.4293038403979,-56.4289283078121,-56.4287031705991,-56.4287074810611,-56.4287092485472,-56.4288544016542,-56.4291287484613,-56.429527028311,-56.4297959083366,-56.4301681202938,-56.4303337274354,-56.4306847788663,-56.4308445414322,-56.4309096684603,-56.4308486501486,-56.431424695441,-56.4315137698824,-56.4307286419448,-56.430631124758,-56.4305841674894,-56.4305930519112,-56.4306896305008,-56.4309815956047,-56.4314244189306,-56.4314305587403,-56.4308502246355,-56.4308131654074,-56.4307237856062,-56.4306195186194,-56.4306837936231,-56.4308358173638,-56.4308046064131,-56.4311054813158,-56.4312355434919,-56.4312028596336,-56.4310571310352,-56.4308463826714,-56.4307039354893,-56.4305075945175,-56.4301908018714,-56.4298032937042,-56.4293898365982,-56.42906445547,-56.4282755630891,-56.4281505388495,-56.4280203386552,-56.4278480893712,-56.4275590334748,-56.4270890695217,-56.4267429331698,-56.4265690300674,-56.4262928071459,-56.4259280151003,-56.4256664254048,-56.4253789177934,-56.4251623105415,-56.4251166801476,-56.424783575529,-56.4247770995791,-56.4246332595446,-56.4243756934911,-56.4242630948616,-56.4240059758854,-56.4236247291444,-56.4235533308599,-56.4231049696249,-56.4230341971671,-56.4229052539873,-56.4225028796757,-56.4222968337797,-56.4221825278318,-56.4221803930366,-56.4219990193959,-56.4218836532011,-56.4216083196515,-56.4210505852933,-56.4208493275843,-56.4206736610702,-56.4205239439263,-56.420307410241,-56.4200543747287,-56.4198008610495,-56.4195470480999,-56.4192609160471,-56.4189548133918,-56.4185525222178,-56.4183027132571,-56.4182495394211,-56.4180666450051,-56.4179118511422,-56.4177395314551,-56.4172975142954,-56.4174416753964,-56.417470427437,-56.4173300935482,-56.4171358958495,-56.4169181267615,-56.4169831394424,-56.4172018585729,-56.4172038123649,-56.4173044497329,-56.4172243181986,-56.4167892606976,-56.4166523113294,-56.4162605960903,-56.4160522387807,-56.4159627025367,-56.4160727490687,-56.4160642398698,-56.4159650308236,-56.4156572023994,-56.4149924370016,-56.4147475063626,-56.4146524996105,-56.4142948069173,-56.4141457374176,-56.4141111113153,-56.4140051903602,-56.4139328596019,-56.4139839257465,-56.4137949138326,-56.4137129221557,-56.4137554740473,-56.4138551255699,-56.413757377578,-56.4136806185673,-56.4137724834529,-56.4137645131552,-56.4136771693675,-56.4135323937258,-56.4133413454885,-56.4133110716063,-56.4134204920448,-56.4133848651248,-56.4128932590504,-56.4125057207752,-56.4122152004777,-56.4120464773603,-56.411896803912,-56.4115601342283,-56.4113534520068,-56.41130790878,-56.4110438235271,-56.410381555136,-56.4100672428841,-56.4099750969287,-56.4097419803215,-56.4095505708457,-56.4093750109243,-56.4092469087552,-56.4091028223518,-56.4090129755319,-56.4090021031883,-56.4089866820834,-56.4091444517504,-56.4091245267893,-56.4089800887281,-56.4089085399418,-56.4089351087308,-56.4089963802306,-56.4089722878728,-56.408899851075,-56.4088417922858,-56.4089582970511,-56.4090186135487,-56.4089493424601,-56.4088237860081,-56.4088607587831,-56.4100599202054,-56.4100470898763,-56.4099878649807,-56.4088154361037,-56.4085416262038,-56.408499123958,-56.4084601569961,-56.4084149562165,-56.4082069103522,-56.4080622771134,-56.408033309438,-56.4080882187161,-56.4083891430025,-56.4083848085216,-56.408173035628,-56.4080733754403,-56.4079839225957,-56.4079260154954,-56.4078890763171,-56.4079156446334,-56.4078346249959,-56.4078047524055,-56.4077943872923,-56.4077574747101,-56.4076898517705,-56.407603378601,-56.407491646923,-56.4073150199477,-56.4072439692545,-56.4071813001195,-56.4070573060063,-56.4066251711633,-56.4066060097601,-56.4064888833709,-56.4064913905768,-56.4064722290021,-56.4064381869857,-56.4064238879522,-56.4064267853269,-56.40644917566,-56.4064867369692,-56.4067046745964,-56.4067222876963,-56.4067214876417,-56.4067333466453,-56.4067393367124,-56.4067344407712,-56.406741057389,-56.4067739679663,-56.4067954188589,-56.4068216591413,-56.4068554095103,-56.4068802489248,-56.4069095312477,-56.4069456163473,-56.4069956950954,-56.4070381709672,-56.4070755501035,-56.4071180649395,-56.4071513753853,-56.407180284037,-56.4072037357165,-56.4072117802337,-56.4072102858167,-56.4072012548439,-56.4071799236382,-56.4071426377565,-56.4071142900434,-56.4070841406763,-56.4070683062862,-56.4070616630049,-56.4070543793265,-56.4070419856763,-56.4070148784332,-56.40697721902,-56.4069354379879,-56.4069001662885,-56.4068577175391,-56.4068369865506,-56.4068593049229,-56.4068919755297,-56.4069236446432,-56.4069453762086,-56.4069831022351,-56.4069927740708,-56.4070004443464,-56.4070059407821,-56.4070135447086,-56.4070194545055,-56.4070280857591,-56.4070435203721,-56.407058047634,-56.4070752831606,-56.4070761234973,-56.4070620364621,-56.4070321674719,-56.4069964693829,-56.4069703219589,-56.4069442820016,-56.4068758466473,-56.4068330115012,-56.4067963127442,-56.4067804513553,-56.4067749280584,-56.4067701791051,-56.4067524499469,-56.4067210067343,-56.4066885105593,-56.406653985611,-56.4066075085223,-56.4065706894604,-56.4065376324061,-56.4065031083332,-56.4064795894619,-56.4064501871482,-56.4064296434609,-56.4064401955178,-56.4064682765527,-56.4064981457959,-56.4065180490675,-56.4065266532133,-56.406558883587,-56.4065979436386,-56.4066384045643,-56.406686068744,-56.4067217138831,-56.4067501556209,-56.4067447795012,-56.4067431786182,-56.406741590951,-56.4067369082873,-56.4067186860163,-56.4066704741627,-56.4066410058062,-56.4066176340709,-56.4065869914059,-56.4065648602072,-56.4065446496887,-56.4065275202799,-56.4065302954223,-56.4065441827891,-56.406568928678,-56.406582989502,-56.4066148459598,-56.4066156592155,-56.406600104877,-56.4065876315635,-56.4065509594335,-56.4065099783926,-56.4064350996801,-56.4063844601655,-56.4063321132537,-56.4062899579899,-56.4062576744907,-56.4062233100426,-56.4061885992485,-56.4061594776049,-56.4061242726153,-56.4060985658682,-56.4060768614873,-56.4060586124152,-56.4060128151558,-56.4059766762392,-56.4059438331733,-56.4059164190133,-56.4058247312561,-56.405758977639,-56.4057154616228,-56.4056510153925,-56.4056265494439,-56.4055951598864,-56.4055685992511,-56.4055528845947,-56.4055329010852,-56.4055048201403,-56.4054767523345,-56.405338333814,-56.4052576787398,-56.4051503569774,-56.4050289344971,-56.404978081772,-56.4049421693514,-56.4049075782566,-56.4048692656734,-56.4048245623054,-56.4048082872184,-56.4047631176098,-56.4047368769928,-56.40464833824,-56.4046386267787,-56.4046072637075,-56.4045648018233,-56.404539975444,-56.4045334385492,-56.4045219931567,-56.4045043302529,-56.4045030768384,-56.4045351067237,-56.4045676561989,-56.4045917624647,-56.4046244725349,-56.404669055628,-56.4047030064442,-56.4047317675924,-56.4047335954706,-56.4047416794359,-56.4047636644652,-56.4047764043324,-56.4047893841881,-56.404804765508,-56.4048219339991,-56.4048468674793,-56.4048623015107,-56.4048785101763,-56.404909632599,-56.4049358599755,-56.404969677068,-56.4050123257516,-56.4050648064022,-56.40510665466,-56.4051528913858,-56.4052002094698,-56.405261121059,-56.4053069841851,-56.4054063958875,-56.4054088236918,-56.4054238846213,-56.40549532176,-56.4055050734846,-56.4055420922595,-56.4055419321864,-56.4055312199503,-56.4055161054382,-56.405505740274,-56.4054912795461,-56.4054663464971,-56.4054352371369,-56.4054146799424,-56.405394109654,-56.4053769003875,-56.4053539286048,-56.4053264613881,-56.4053022085349,-56.4052800505117,-56.4052421645687,-56.4052151904352,-56.4051789583265,-56.4051263710512,-56.4051045064103,-56.4050519859678,-56.4050106581479,-56.4049683164425,-56.4049335120545,-56.4048989609427,-56.404872880503,-56.4047342088538,-56.4044896164096,-56.4044459671579,-56.4043665529235,-56.4043144195706,-56.4042506129221,-56.4041909158697,-56.4041172377852,-56.4040206277597,-56.4039352237707,-56.4037644822684,-56.4037295842014,-56.4036237295547,-56.4036037058234,-56.4035592967161,-56.403575571547,-56.4035884579853,-56.4036226760675,-56.4036529177983,-56.403679424775,-56.4037284237881,-56.4037600264421,-56.403767697169,-56.4037593195032,-56.403721327012,-56.4036744223059,-56.4036545186188,-56.4036277848487,-56.4036062140761,-56.403602331694,-56.4035953554017,-56.4037156303689,-56.403749514442,-56.4037308652997,-56.4034076051938,-56.4029709399757,-56.4028957810852,-56.4028379377493,-56.4023332374584,-56.4022356272874,-56.4019921681166,-56.4018570453444,-56.4017137982524,-56.4015656418051,-56.4015505268947,-56.4014544641783,-56.4015831971485,-56.4015024092824,-56.4010740547263,-56.4009040868111,-56.4005133258135,-56.4001620374663,-56.3997856037988,-56.3993262333864,-56.3988799768489,-56.398266060612,-56.3979376908331,-56.3978388794333,-56.3977018490957,-56.3974660739197,-56.3971613571302,-56.3970424820241,-56.3969032102624,-56.3965574718405,-56.3965270564156,-56.3964477485403,-56.3964111165818,-56.3963707895241,-56.3963304617712,-56.3962774342761,-56.396216255922,-56.3961795974334,-56.3961464998481,-56.3961028506625,-56.3960639510818,-56.396009029559,-56.3959697822232,-56.3959301352893,-56.3958943165074,-56.3958481861434,-56.3958171302641,-56.3957625284808,-56.3957226016815,-56.3956638912334,-56.3956062079183,-56.3955615049064,-56.3955106787085,-56.3954567577293,-56.3954147891667,-56.3953874284671,-56.3953412715183,-56.3952855495404,-56.3952376447985,-56.3952062285934,-56.3951693560461,-56.3951242395651,-56.3950719056579,-56.3950366475204,-56.3950140092636,-56.3949961333244,-56.3949653176181,-56.3949176664191,-56.3948723761105,-56.3948418942475,-56.3948069692068,-56.3947545426226,-56.3947196574151,-56.3946796371397,-56.394644712146,-56.3946022772222,-56.3945639370022,-56.3945071344537,-56.3944632988477,-56.3943652751853,-56.3940307690036,-56.3939922289007,-56.3939492471189,-56.3939145355342,-56.3938771433261,-56.3938388436931,-56.393815297837,-56.3937628439031,-56.3937341491309,-56.3937132987259,-56.3937002788176,-56.3936935151976,-56.3937039602296,-56.3937367773115,-56.3937395925402,-56.3937064686626,-56.3936605111993,-56.3936476913221,-56.3936296291443,-56.3936369125937,-56.393633537734,-56.3935998266203,-56.3935556037195,-56.3935075259274,-56.393471853943,-56.3934364225513,-56.3934289517795,-56.3934040322121,-56.3933816212396,-56.3933454958376,-56.3933009261406,-56.3932321441189,-56.393158199231,-56.3930897239127,-56.3930530383614,-56.3929979694221,-56.392941380239,-56.3928772805562,-56.3928092457361,-56.3927520029657,-56.3926876496356,-56.3926297930094,-56.3925627721712,-56.3925200033491,-56.392505849504,-56.3924962979209,-56.3925049954692,-56.3925317960974,-56.3925614110362,-56.3926027660496,-56.3926598485903,-56.3927033114407,-56.3927494683063,-56.392757405687,-56.3927530967771,-56.3927167445314,-56.3926714945454,-56.3926425728651,-56.3926113166947,-56.3925892789352,-56.3925662801621,-56.3924959376753,-56.3924536224218,-56.3923831859866,-56.3923526504306,-56.3923030382173,-56.3922521318668,-56.3921760125716,-56.392123919183,-56.3920723057192,-56.3920264286614,-56.3919818855055,-56.3919418117519,-56.3918647984291,-56.3918331955645,-56.3918252318828,-56.3918109845172,-56.3918111446481,-56.3918188014504,-56.3918289268055,-56.391847496576,-56.3918462554574,-56.3918434142117,-56.3918538198264,-56.3918348235035,-56.3918115176861,-56.3918109977482,-56.391790333876,-56.3917720573592,-56.3917619720284,-56.3917325173989,-56.3917076909332,-56.391672739841,-56.3916434581057,-56.3916230338961,-56.3915661249185,-56.3914917126206,-56.3914612039095,-56.3914263055323,-56.3913644740994,-56.3913241466698,-56.3912567784225,-56.39121403665,-56.391175336106,-56.3911311938547,-56.3910903190994,-56.3910553681836,-56.3909927623243,-56.3909452043179,-56.3909202718832,-56.3908749151427,-56.3908545178864,-56.3908177519603,-56.3907837877206,-56.3907187677832,-56.3906413407272,-56.3905776551729,-56.3905555636035,-56.3905225331865,-56.3904748949669,-56.3904466006655,-56.3903862624935,-56.3903104907124,-56.3902436957034,-56.3901874806083,-56.3900916976449,-56.3900148310923,-56.389952999273,-56.3898723442848,-56.3897748672103,-56.3897115548509,-56.3896433597837,-56.3895898786748,-56.3895199225962,-56.3894504200246,-56.3893898019608,-56.3892919383473,-56.389210109336,-56.3891358047148,-56.3890788819308,-56.3890355927236,-56.388980230751,-56.3888965476858,-56.3888442277147,-56.3887947886516,-56.3887382394232,-56.3887027676858,-56.388679502253,-56.3887108921204,-56.3887444162111,-56.388797470261,-56.3888674925463,-56.3889517097096,-56.3889882749776,-56.3890508010446,-56.3891105780389,-56.3891323764276,-56.3891486778302,-56.389119756208,-56.389074879587,-56.3890132611694,-56.3889151177065,-56.3888649846404,-56.3888310342263,-56.3887857837904,-56.388738146086,-56.3887065165744,-56.3886851324387,-56.3886695377628,-56.3886649215669,-56.3886572247208,-56.3886573314094,-56.3886670825674,-56.3887113854784,-56.3887686955133,-56.3888127446847,-56.3888755771775,-56.3889489348906,-56.3889877547436,-56.3889318991216,-56.3889245492829,-56.3889429449973,-56.3888958942124,-56.3888325818785,-56.3887717898872,-56.3886791289879,-56.3886444714192,-56.3885866412616,-56.3885605078109,-56.3885652434842,-56.3884249445389,-56.3884444482059,-56.3884382982769,-56.3884084426659,-56.3883797213944,-56.388355775622,-56.3883578835935,-56.3883802682426,-56.388406561951,-56.3884969816565,-56.3885713534142,-56.3886850521571,-56.3887445094774,-56.3887736175919,-56.388851351215,-56.3888692274415,-56.3888948804863,-56.3889229213587,-56.3889378759152,-56.3888836615461,-56.3888347827255,-56.3888344624299,-56.3889440256443,-56.3891226512832,-56.3891349643053,-56.3892413789941,-56.3893311186754,-56.3893932037594,-56.3895014466987,-56.3895102243075,-56.3894994455784,-56.3893480070924,-56.3892643372126,-56.3892061206462,-56.3891999841675,-56.389162351497,-56.3890958376386,-56.3890603524652,-56.3890034165103,-56.3890199712085,-56.3889841933678,-56.3889645160845,-56.3889237882347,-56.3888045802628,-56.3887731109055,-56.3887448565678,-56.3886747537346,-56.38861321512,-56.3885851340266,-56.388547434823,-56.3885269307847,-56.3885076137318,-56.3884511715865,-56.3883675952935,-56.388257084787,-56.3880498313071,-56.387932757806,-56.3878192186158,-56.3875852179706,-56.3874121956718,-56.3871893341271,-56.3870526104878,-56.386754189388,-56.3865318880156,-56.3863905887638,-56.3862644840008,-56.3861407798174,-56.3859024440244,-56.3855875610268,-56.3853701422082,-56.3851471740941,-56.3847668582712,-56.3845342714317,-56.3844029770453,-56.3841890137213,-56.3830358986465,-56.382574860773,-56.3822120207743,-56.3819923606092,-56.3816003714551,-56.3811353053807,-56.380838792151,-56.3796327703608,-56.3793857228329,-56.378947683435,-56.3785596968873,-56.3784277352295,-56.3783838196089,-56.3782569405241,-56.3781903732074,-56.3780978452237,-56.3780406027815,-56.3779651768273,-56.3779017977286,-56.3778450476291,-56.3771195139275,-56.37702980118,-56.3769259211596,-56.376804578714,-56.3766776198175,-56.3764570391237,-56.3763169005377,-56.3762129401105,-56.3760625557095,-56.3758941085915,-56.3757929902835,-56.3757064517457,-56.3755545201623,-56.375439594467,-56.3753383687096,-56.3753001182551,-56.3751864545605,-56.3745528203799,-56.3742952433814,-56.3734294609401,-56.3733440459722,-56.3732336968835,-56.3726517968563,-56.3726205269462,-56.3725829343973,-56.3725052544269,-56.3724619813671,-56.3723381279771,-56.3722570195904,-56.3718966874001,-56.3716816961107,-56.3716325778226,-56.3715669171952,-56.3714593150515,-56.3714306739348,-56.3713874379124,-56.3713409871412,-56.3712943633612,-56.3712737529222,-56.3712646282927,-56.3711973401181,-56.3711420444119,-56.3710782917047,-56.370843530648,-56.3707194804375,-56.370650484461,-56.370566494911,-56.370502101707,-56.3704863463146,-56.3704201389892,-56.3703763695741,-56.3701134211753,-56.3700672238465,-56.3699277120925,-56.3698875445439,-56.3697936825251,-56.3696592267633,-56.3695043336715,-56.369434510793,-56.369411966172,-56.369365021556,-56.3692161448719,-56.3691517116379,-56.3688628290561,-56.368755520595,-56.3684958670219,-56.3683595029329,-56.3682498199251,-56.3681434716576,-56.3680566266159,-56.3678456780524,-56.3675915336199,-56.3675192427762,-56.3672928865379,-56.3672183144113,-56.3671344582229,-56.3669669713068,-56.3665304664871,-56.3664348839322,-56.3663363532631,-56.3662855133631,-56.3662410237991,-56.3661836210318,-56.3661396113962,-56.3660412808634,-56.3659121205792,-56.365824648861,-56.3656302291268,-56.3655992128741,-56.3655324981811,-56.3654716001971,-56.3654165587746,-56.3653181344399,-56.3652608248578,-56.3652056634179,-56.3651565842105,-56.3650610952072,-56.365017846542,-56.3648472649341,-56.3644912550107,-56.364397526501,-56.3644094792909,-56.3643833459028,-56.364235723229,-56.364114393716,-56.3640592853598,-56.3640417562983,-56.3640127410328,-56.3639765892388,-56.3639375422973,-56.3639145036406,-56.3638822474167,-56.3638388515981,-56.3637328633575,-56.3629141079392,-56.3627264916277,-56.362671809855,-56.3626847898075,-56.3627451946183,-56.3628893485336,-56.3629521813259,-56.362904543256,-56.3627187940194,-56.3627175534064,-56.3625038694736,-56.3615109844502,-56.3613568915353,-56.3612372836077,-56.3610889532951,-56.361006177548,-56.360997932999,-56.3610010950077,-56.3608481627679,-56.3607209233478,-56.3606915486085,-56.3606086658178,-56.3605641897749,-56.360570472896,-56.3605301855615,-56.3605226478796,-56.3604441810101,-56.360405320763,-56.3603802142802,-56.3603561220815,-56.3603406477463,-56.3603096583708,-56.360289007876,-56.3602748936557,-56.3602566577712,-56.3602387281194,-56.3602253347128,-56.3602115542257,-56.3601957462459,-56.3601819925068,-56.360169599403,-56.3601558189391,-56.3601441058582,-56.3601327272407,-56.3601189467981,-56.3601038188727,-56.3600880236819,-56.3600667728504,-56.3600462287655,-56.3600247111719,-56.3599994716828,-56.359972551134,-56.3599493390517,-56.3599264873474,-56.359901620919,-56.3598805305184,-56.35986114714,-56.3598438178891,-56.3598261156184,-56.3598060247958,-56.3597814792766,-56.3597514234082,-56.3597267844642,-56.3597062136933,-56.3596951814763,-56.3596837889216,-56.3596765185744,-56.3596681805187,-56.359661577597,-56.3596542932637,-56.3596377386872,-56.3596249854364,-56.3596129254978,-56.3595991584852,-56.3595833367042,-56.3595580170894,-56.3595402079331,-56.3595128342542,-56.3594844328626,-56.3594396497949,-56.3594119283824,-56.3593859815192,-56.3593579538468,-56.3593234961526,-56.3592869576983,-56.3592664804585,-56.3592432818247,-56.3592204034562,-56.3591869461373,-56.3591640937944,-56.3591412421531,-56.3591088392179,-56.3590689118807,-56.3590385224007,-56.3590166710912,-56.35899105793,-56.3589613498589,-56.3589285458794,-56.3588841632532,-56.3588547875425,-56.3588161815879,-56.3587834042753,-56.358761886677,-56.3587335786802,-56.3587048969752,-56.3586840867885,-56.3586605277061,-56.3586274440279,-56.3585970552462,-56.3585748835792,-56.3585526852626,-56.35852881981,-56.3585069552545,-56.3584841435014,-56.3584602913871,-56.3584463774982,-56.3584265403201,-56.3584077042731,-56.358387533396,-56.3583636013144,-56.358339988959,-56.3582965934091,-56.3582607216122,-56.3582248365274,-56.3581892711245,-56.3581660457536,-56.3581448485848,-56.3581144324336,-56.3580877655976,-56.3580649005229,-56.3580451433347,-56.3580326174724,-56.3580153152847,-56.3579953182092,-56.3579679705963,-56.3579361271517,-56.3578967740091,-56.3577426342021,-56.3577527903902,-56.3572034949322,-56.3567628028661,-56.3567103505217,-56.3566193451854,-56.35636115991,-56.3560937279447,-56.356134593855,-56.3562948032794,-56.3563637407378,-56.3568484988335,-56.3574047588612,-56.357664962822,-56.3577446781596,-56.3574902203139,-56.3571816370643,-56.356886839438,-56.3565074707517,-56.3564139687576,-56.3560709210076,-56.355587973472,-56.3552834128872,-56.355218592498,-56.3552031182483,-56.3550814817705,-56.3549625337417,-56.3549642868762,-56.3550149942751,-56.3549877932393,-56.3550464104815,-56.3551116174437,-56.3551382968041,-56.3553143548185,-56.3553602389975,-56.3554101980961,-56.355588316284,-56.3560841884576,-56.3563158413633,-56.3563417020586,-56.356340090999,-56.3562135323961,-56.3561967596207,-56.3561225254615,-56.3559931654139,-56.3559500834847,-56.3557710420697,-56.3558183801202,-56.3559213550461,-56.3558829797935,-56.3557323108845,-56.3554840542959,-56.3554342661468,-56.355352839846,-56.3551374841079,-56.3550675058917,-56.3548857781183,-56.3548010367973,-56.3546538442467,-56.3543287981889,-56.354173081943,-56.3540916249897,-56.3542557286168,-56.3538723377702,-56.3535565628451,-56.3526080356308,-56.35124822988,-56.35088050655,-56.3506099169446,-56.3503109446644,-56.3501086246757,-56.34981577363,-56.3494037380163,-56.3490334424885,-56.3487511518379,-56.3485697402328,-56.3484727599331,-56.3483270387666,-56.3481769926632,-56.3481282618859,-56.3474580103145,-56.3472870180115,-56.3470845660622,-56.346895672091,-56.3464492877949,-56.3456985441206,-56.3454795620339,-56.3453828437558,-56.3451865787961,-56.3446989874379,-56.3441129848307,-56.3436638601934,-56.3434858883436,-56.3433279673144,-56.3431864276134,-56.3430686332264,-56.3429665672827,-56.3424721125499,-56.3424082658832,-56.34217422527,-56.3421088445781,-56.3420313380022,-56.3418678404577,-56.3415686995773,-56.3414481308276,-56.340998952362,-56.3408067203323,-56.3406395936227,-56.3404017110948,-56.340042645834,-56.3398918748859,-56.3398309370507,-56.3397986938308,-56.3396478291997,-56.3394960037672,-56.3397043116611,-56.3398836973408,-56.3402004608905,-56.3399288142464,-56.3398000406903,-56.3396972815402,-56.3396808729412,-56.3396720682354,-56.3396355157858,-56.3395928672338,-56.3395367852287,-56.3394523283839,-56.339381197878,-56.339289670955,-56.3390927695283,-56.3389645433766,-56.3388231772538,-56.338578224165,-56.3384332694912,-56.3382449323473,-56.3380757783721,-56.3377256913047,-56.3375452645808,-56.3374224015186,-56.3371406427333,-56.336701509225,-56.3362972478896,-56.3361965828197,-56.3360699835127,-56.3359152909601,-56.3357691623718,-56.3356462856119,-56.3354820941658,-56.3353911938422,-56.3352751204702,-56.3351884761956,-56.3351163056887,-56.3350551672519,-56.3350356507384,-56.3349980176137,-56.3349597313483,-56.334934091402,-56.3348944310902,-56.3348855866416,-56.3348582523997,-56.3347806658748,-56.3346709687153,-56.3346422874168,-56.3345787350063,-56.3344902893998,-56.3344390495821,-56.3343667052268,-56.3343092624923,-56.3342440286163,-56.3341791422423,-56.3341308637019,-56.3340530901892,-56.3339325483331,-56.3338543614781,-56.333765595754,-56.3336768293261,-56.3335926130779,-56.3335384112875,-56.3334463773553,-56.3333543299211,-56.3333256885781,-56.3333018362968,-56.3332265172897,-56.3331515719115,-56.3330827634086,-56.3330544816997,-56.3330340451578,-56.3330132742438,-56.3329631680075,-56.3329359005572,-56.3328499230686,-56.3328301531035,-56.3328110764156,-56.3327797272112,-56.3327524597231,-56.3327265927574,-56.332701046101,-56.3326693499109,-56.3326086786432,-56.332530998409,-56.3325033712711,-56.3324737154977,-56.3324440737632,-56.3323902059776,-56.3323366851335,-56.3322835111706,-56.3322306702622,-56.3322071381081,-56.3321583935497,-56.3320488569789,-56.3320283663466,-56.332007889009,-56.3319860111249,-56.331963479276,-56.3318434042952,-56.3318177910032,-56.3317956327001,-56.3317669512026,-56.3317382697609,-56.3316186478531,-56.3315902335727,-56.331562178901,-56.3315419820238,-56.3315108325857,-56.3314296842498,-56.3314108207205,-56.3313923314295,-56.3313742418582,-56.3313591010815,-56.3313439462719,-56.3313288055609,-56.3313035523604,-56.3312455093371,-56.3312201362995,-56.3311859052658,-56.3311466050801,-56.3311009279199,-56.3310844794735,-56.3310642288539,-56.3310351073433,-56.3310136164882,-56.3309868958878,-56.330969126258,-56.3309539589248,-56.3309438332451,-56.330917286799,-56.3308983299245,-56.3308907261991,-56.330839019288,-56.3307884998592,-56.3307443975082,-56.330712901057,-56.3306877146689,-56.3306670907629,-56.3306361947403,-56.3305959876597,-56.3305633441233,-56.3305269519485,-56.3304980839274,-56.3304680151007,-56.3304367053916,-56.3303892009645,-56.3303380007622,-56.3303043437102,-56.330229585082,-56.3302096951487,-56.33019482081,-56.3301749434809,-56.3301588550225,-56.330139005074,-56.3301267053514,-56.3301131520746,-56.3301033066115,-56.3300935152994,-56.3300849642322,-56.3300777467989,-56.3300717836855,-56.3300707433709,-56.3300722775997,-56.3300712765975,-56.3300778137703,-56.3300817756635,-56.3300844572394,-56.3300871114495,-56.3301001985689,-56.3300991581575,-56.3300994248262,-56.3301007987032,-56.3301009323876,-56.3301010786998,-56.3301037870481,-56.3301077489346,-56.3301093099985,-56.3301107774114,-56.3301160731557,-56.3301176207393,-56.3301231570618,-56.3301124583249,-56.3301076423763,-56.3301104302476,-56.330108349471,-56.3301099632664,-56.3301103635884,-56.3301092965092,-56.3301106970491,-56.3301034669374,-56.3300800944781,-56.3299847925352,-56.3299352332139,-56.3299153299986,-56.3298929449674,-56.3298469078382,-56.3297946139991,-56.3297510185859,-56.3297298475907,-56.3297024066007,-56.3296799820377,-56.3296475513061,-56.3296089186816,-56.3295802900943,-56.3295429376953,-56.3295030641047,-56.3294781708812,-56.3294557462231,-56.3294307995628,-56.3294058670133,-56.3293746777092,-56.3293472631937,-56.3293010659425,-56.3292586174608,-56.3292186368267,-56.3291736404591,-56.3291148903749,-56.3290823665865,-56.3290311134175,-56.3289723232556,-56.3289010329622,-56.3288447239807,-56.3287670842419,-56.3287307722319,-56.3287057061315,-56.3286768777707,-56.3286505440254,-56.3286129510801,-56.3285477707897,-56.3284825905588,-56.3284023496791,-56.3283529775639,-56.3283070736015,-56.3282699345136,-56.3282283661148,-56.3281802351948,-56.3281211779737,-56.3280795827831,-56.3280511282565,-56.328009573307,-56.3279679789491,-56.3279198206091,-56.3278694480119,-56.3278278663858,-56.3277797081201,-56.3277205046345,-56.3276882345004,-56.3276617939922,-56.3276347801086,-56.327580779303,-56.3274639057207,-56.327425632567,-56.3274053420305,-56.3273063177357,-56.327254650709,-56.3271984221773,-56.3271548794102,-56.3271036933105,-56.3270519997899,-56.3269845784927,-56.3269418093707,-56.3269170500789,-56.3268900360851,-56.3268517097698,-56.3267909719953,-56.3267122781268,-56.3266313563175,-56.3265774351009,-56.3265324784662,-56.3264696326436,-56.3264247562367,-56.3263731432351,-56.3263148193037,-56.326238553264,-56.3261847122901,-56.3261241215245,-56.3260815389643,-56.3260008973365,-56.3259740301644,-56.3258890533945,-56.3257660698504,-56.3256877892829,-56.3256319742749,-56.3255896189988,-56.3255360976088,-56.3254915152675,-56.3254514542559,-56.3254337915411,-56.3254026692348,-56.3253837927901,-56.3253721734302,-56.3253639021354,-56.3253453597359,-56.3253299783596,-56.3252966676606,-56.325283341116,-56.3252814468153,-56.3252685199832,-56.3252645581399,-56.3252380373057,-56.3252337951291,-56.3252318344293,-56.3252544196431,-56.3252435469867,-56.3252349694138,-56.3252284861897,-56.3252310874373,-56.325231300417,-56.3252271115826,-56.3252340485852,-56.3252320345019,-56.3252322344948,-56.3252324746298,-56.3252327811767,-56.3252309670226,-56.3252313143408,-56.3252296730319,-56.3252278987085,-56.3252282328006,-56.3252151189286,-56.3251932280626,-56.3251690552308,-56.3251539006466,-56.3251430821408,-56.3251344240307,-56.3251235654308,-56.32511941665,-56.3250972582145,-56.3250751667308,-56.3250373739585,-56.3250085324186,-56.3249841066323,-56.3249663638555,-56.3249397367739,-56.3249041988109,-56.3248619505587,-56.3248064146409,-56.3247729975832,-56.3247417946982,-56.3247062164353,-56.3246683705097,-56.3246171040317,-56.3245524175707,-56.32449890989,-56.3244140390892,-56.3243514202395,-56.3242776358022,-56.3241926581347,-56.3240875644407,-56.3240294143724,-56.3239756930981,-56.3239130207672,-56.3238100874837,-56.3236847963021,-56.323624365249,-56.3235593452989,-56.3235055571146,-56.323447220408,-56.3233911383132,-56.3233506908397,-56.3232967567135,-56.323247317202,-56.3231888742061,-56.3231371808734,-56.3230922242397,-56.3230607680695,-56.3230315660147,-56.3230023379699,-56.3229619306484,-56.3229215098119,-56.3228608783788,-56.3227621606986,-56.3226881892127,-56.3226209547866,-56.3225402864287,-56.3224663551174,-56.3223969056605,-56.3223050580133,-56.3222422792734,-56.3221683476954,-56.3221123719936,-56.3220474322464,-56.3219780094158,-56.3218952333432,-56.3218257976065,-56.3218258243882,-56.321821929191,-56.3217341903402,-56.3216500538541,-56.3215694922774,-56.3214714016372,-56.3213908399719,-56.3213208171593,-56.3212508476652,-56.3212019161075,-56.3211180462854,-56.3209922080048,-56.3209119534104,-56.3208649954281,-56.3208267090446,-56.3208130084716,-56.3207993352143,-56.3207996421418,-56.3208070989156,-56.3208214000687,-56.3208499211179,-56.3208607265274,-56.3209757990599,-56.3209823630792,-56.3209953427046,-56.3210128318769,-56.3210299873628,-56.3210536392779,-56.3210799466544,-56.3210861229744,-56.3212138420541,-56.321315454774,-56.3216225730271,-56.3219291845888,-56.3220492600129,-56.3221274467349,-56.3222084749231,-56.3223069527024,-56.3224170890267,-56.3225475032107,-56.3227071059446,-56.3227226071735,-56.3227305445014,-56.3227541968526,-56.3228734577963,-56.322936236883,-56.3230161981362,-56.3230281912537,-56.3230401575006,-56.3230351284524,-56.3230017372882,-56.323002084637,-56.3229742297574,-56.3229295539766,-56.3228680285879,-56.3228009403623,-56.3227113078188,-56.3226214750167,-56.3225033869846,-56.3224414888626,-56.3223375819499,-56.322230766315,-56.3221633581959,-56.3220565303677,-56.3219778629702,-56.3219047982863,-56.3218319345273,-56.3217817083638,-56.3217594170835,-56.3217104314833,-56.3217050290954,-56.3216790422133,-56.3216484395461,-56.3216077520791,-56.3215874612601,-56.3215418781786,-56.3213576231729,-56.3211777036695,-56.320931883183,-56.320707648078,-56.320643547933,-56.3205272479363,-56.3204081735788,-56.3203613489677,-56.320347781925,-56.3203439269293,-56.3203486223584,-56.3202649125524,-56.3202644195074,-56.3202910993965,-56.3203042529839,-56.3203241833605,-56.3203512242968,-56.3203783715982,-56.3203847079888,-56.3203842140607,-56.3203837208837,-56.3203280652704,-56.3203070548048,-56.320224105317,-56.320204121726,-56.320188420207,-56.3201690364189,-56.3201481190321,-56.3201065245292,-56.3200693184455,-56.3200155174294,-56.3199687465752,-56.3198968427394,-56.3198440421022,-56.3197718855005,-56.3197205121215,-56.319669258971,-56.319621861281,-56.3195565611337,-56.3194581902283,-56.3193509878714,-56.3192761226551,-56.3192241494474,-56.3191815539201,-56.3191132918432,-56.3190500865286,-56.3189834920102,-56.3188878295643,-56.3188117233642,-56.318764872837,-56.318717127995,-56.3186881795747,-56.31866309998,-56.3186223855176,-56.3186036293009,-56.3185995468976,-56.3185749479694,-56.3185449993291,-56.3185258294546,-56.3184996556939,-56.3184835943906,-56.3184752564277,-56.3184490962703,-56.3184295398852,-56.3184208019125,-56.3184107034595,-56.3184026854034,-56.3184238168064,-56.3184351155929,-56.3184589812527,-56.3185018836028,-56.3185216539365,-56.3185579923018,-56.318575174569,-56.3185977996379,-56.3185978933476,-56.3186019887172,-56.3186221854598,-56.3186444635467,-56.318674212667,-56.3186971441827,-56.3187204226971,-56.3187460763939,-56.3188371365537,-56.3189131357722,-56.318932652589,-56.3189593857997,-56.3190512333526,-56.3191029803007,-56.3191608901812,-56.3192321933755,-56.3192966131605,-56.3193394753438,-56.3193826579406,-56.3194618452876,-56.3194773067275,-56.3194931411384,-56.3195062281578,-56.3195182741427,-56.3195272790314,-56.3195328551211,-56.3195418333427,-56.3195542263947,-56.3195696744975,-56.3195820409396,-56.3195940736332,-56.3196050926151,-56.3196161249454,-56.3196261568664,-56.3196389502549,-56.3196795975443,-56.3197025827318,-56.3197154426759,-56.3197281561688,-56.3197429503356,-56.319751247942,-56.3197612799208,-56.3197730456419,-56.3197937896853,-56.319803101063,-56.3198175222883,-56.3198289010108,-56.3198453099235,-56.3198546612561,-56.3198946548379,-56.3199019520925,-56.3199099561002,-56.319918280412,-56.3199286595354,-56.3199362765149,-56.3199459615973,-56.3199525781793,-56.3199537125519,-56.3199520981302,-56.3199518710496,-56.3199546991854,-56.3199617161105,-56.3199690668012,-56.3199823540404,-56.3199917721547,-56.3200026176685,-56.3200078468775,-56.3200193197687,-56.3200304716182,-56.3200395167073,-56.3200482275166,-56.3200531104477,-56.320054577852,-56.3200530033839,-56.3200527897283,-56.3200535770787,-56.3200557518939,-56.3200592733666,-56.3200621148378,-56.3200615281835,-56.3200578729957,-56.3200505219215,-56.3200424781847,-56.320034433743,-56.3200264032871,-56.3200189862517,-56.3200037784141,-56.3199882235637,-56.3199780849709,-56.3199679463783,-56.3199547925761,-56.3199334883466,-56.3199165600885,-56.3198986440339,-56.3198851171969,-56.3198783934623,-56.3198747382204,-56.3198697488373,-56.319862678738,-56.3198417481117,-56.3198295546746,-56.319817682299,-56.3197996595226,-56.3197173904577,-56.3197010754779,-56.319683773349,-56.3196650698189,-56.319592672839,-56.3195722621974,-56.3195508245302,-56.3195283464078,-56.3195055346605,-56.3194680881841,-56.3194411548726,-56.3193666362396,-56.3193482803141,-56.3192801651964,-56.319257340001,-56.3192014443557,-56.3191711352958,-56.3191278727105,-56.3190873456121,-56.3190563425082,-56.3190141076459,-56.3189895753109,-56.3189534495189,-56.3189313182596,-56.3189047311141,-56.3188788247358,-56.3188532513045,-56.3188205410435,-56.3187874711288,-56.3187523597103,-56.3187243851703,-56.3186953836042,-56.3186660748469,-56.3185841926834,-56.3185521225319,-56.3185289508919,-56.3185054189716,-56.3184706677666,-56.3184131178059,-56.3183923339942,-56.3183664673554,-56.3183422679022,-56.3183198161324,-56.3182959909707,-56.3182741926514,-56.3182568236362,-56.318223806734,-56.3181385364089,-56.3181273701927,-56.3181168848043,-56.3181064126461,-56.3180959271915,-56.3180799860334,-56.3180681132358,-56.3180497967998,-56.3180318007656,-56.3180134983021,-56.3180005984065,-56.3179876985637,-56.3179380107713,-56.3179085243396,-56.3178891144499,-56.3178659418992,-56.3178383280645,-56.3178062848939,-56.3177803914946,-56.317715584533,-56.3176896380282,-56.3176568875374,-56.3175660006682,-56.3175434160423,-56.3175122930727,-56.3174938033181,-56.3174715789281,-56.3174452316647,-56.3174079324947,-56.3173165920021,-56.3172960747347,-56.317278265797,-56.3172474501055,-56.3171488388329,-56.3171303359154,-56.3171101126571,-56.3170895550468,-56.3170487343748,-56.3170339529487,-56.3170307512033,-56.3170289108916,-56.3170281102517,-56.3170286835844,-56.3170275631216,-56.3170243885607,-56.3170190790083,-56.3169630367091,-56.3169452007088,-56.3169219089813,-56.3168800203863,-56.3168591430164,-56.3168252053488,-56.3167628533641,-56.3167340648679,-56.316710426265,-56.3166785699267,-56.3166045318998,-56.3165849881673,-56.3165264784432,-56.3165073082417,-56.3164717165693,-56.3164457167049,-56.3164255194515,-56.3163994790984,-56.3162940916488,-56.3162701326167,-56.3162438121749,-56.3162171587317,-56.3161757902863,-56.3161552732688,-56.3161350760702,-56.316109783417,-56.316087558632,-56.3160633194834,-56.316036345483,-56.3160145206109,-56.3159937101587,-56.315952861928,-56.3159313980788,-56.3159157897615,-56.3158297852893,-56.3157261585421,-56.3157008922564,-56.3156807222232,-56.3156540945132,-56.3156281349262,-56.3156066305175,-56.3155810172322,-56.3154644901796,-56.3154375696401,-56.3154154247562,-56.3153816744605,-56.3153585024906,-56.3152469248998,-56.3152124403329,-56.3151653364296,-56.3150871490474,-56.3150485562444,-56.3150222622131,-56.3149993837549,-56.3149563352855,-56.3149256125989,-56.3148976114822,-56.3148703174441,-56.3147371950158,-56.3147143172025,-56.3146914380473,-56.3146535385971,-56.3146248574644,-56.314603659686,-56.3145770326436,-56.3145554885718,-56.3145298615005,-56.3145049018562,-56.3144823704073,-56.3144336523392,-56.3144190580854,-56.3144030630585,-56.3143894029329,-56.3143722868432,-56.3142870031284,-56.3142610698997,-56.3142358570087,-56.3142051743835,-56.3141291886436,-56.314104655794,-56.3140674897417,-56.3140398756567,-56.3140064451567,-56.3139720006561,-56.3139416380217,-56.313910596014,-56.3138099171524,-56.3137836237362,-56.3137512069945,-56.3136433242803,-56.3136214465209,-56.3135999421166,-56.3135763702722,-56.3135384707848,-56.3134299213396,-56.3133998923767,-56.313367448567,-56.3133445707816,-56.3133162621983,-56.3131922388063,-56.3131716948851,-56.3131080618564,-56.3130501249735,-56.3130022869032,-56.312952634761,-56.3129317571967,-56.3129033565327,-56.3128801173752,-56.3128527700483,-56.3128278238113,-56.3128015305139,-56.312780413072,-56.3126851906606,-56.312650359124,-56.3125807233906,-56.3125339254025,-56.3125219061296,-56.312506431757,-56.3124885958299,-56.3124646766963,-56.3124239219691,-56.3124294853566,-56.3124312995796,-56.31241056901,-56.3123983623313,-56.3123612898977,-56.3123349965632,-56.3123101035334,-56.3122886127824,-56.3122715901995,-56.312249445651,-56.3122231522505,-56.3122023016585,-56.3121824109635,-56.3121679238244,-56.312164068158,-56.3121622540503,-56.312169297507,-56.3121722723436,-56.3121627476729,-56.3121175508624,-56.312093938559,-56.3120757826176,-56.3120133909157,-56.3119834282456,-56.311980560205,-56.3119801201561,-56.311971795766,-56.3119587488513,-56.3119439949144,-56.3119233442156,-56.311897050308,-56.3118741852534,-56.3118379535763,-56.311816809206,-56.31179530493,-56.3117659560674,-56.3117448386407,-56.3117250682785,-56.3116940662159,-56.3116701869836,-56.3116480155806,-56.3116248565869,-56.3116009511561,-56.3115801935919,-56.311559423135,-56.3115351975785,-56.3115027941594,-56.3114775408838,-56.3114563964712,-56.3114195779895,-56.311395725649,-56.3113165645746,-56.3112724614789,-56.311215325826,-56.3111383257737,-56.3111141403296,-56.3110892608252,-56.311051774402,-56.3110238270096,-56.3109798839747,-56.3109628619642,-56.3109451465796,-56.3109179322862,-56.310889384041,-56.3108693069838,-56.3108540457785,-56.310818414628,-56.3107935214043,-56.3107630523039,-56.3107339841047,-56.3106799294613,-56.3106494336923,-56.3106147493331,-56.3105911640473,-56.3105759024489,-56.3105523567555,-56.3105385500815,-56.3105262371353,-56.3105088679548,-56.3104874039216,-56.3104628712501,-56.3104410197926,-56.3104081495563,-56.3103817491031,-56.3103609247485,-56.3103415150807,-56.3102819239572,-56.3102694779134,-56.3102305778921,-56.310188596382,-56.3101599144373,-56.3101353287432,-56.3100776721576,-56.3099548626016,-56.3099105193094,-56.3098976463362,-56.3098844524496,-56.3098732865652,-56.3098600665134,-56.3098441249851,-56.3098288240328,-56.3098083868799,-56.3097831471916,-56.3097661249253,-56.3097471282653,-56.3097335751583,-56.3097199945645,-56.3097020249621,-56.3096843897039,-56.3096725168919,-56.3096575622462,-56.3096398866455,-56.3096239181928,-56.3096011595469,-56.3095818029565,-56.3095678760027,-56.3095539490492,-56.3095407154007,-56.3095278154605,-56.3094999608175,-56.3094710662944,-56.3094530436744,-56.3094339939673,-56.309417678387,-56.3094020568693,-56.309384394707,-56.3092543012769,-56.3102548304581,-56.3108384179671,-56.3066787634524,-56.297398506649,-56.2972817797833,-56.2971890091999,-56.2958529762461,-56.2942762697649,-56.2930463621367,-56.2929298020237,-56.2896957941631,-56.2888181081846,-56.2856870734299,-56.2808541943238,-56.2780265026776,-56.2756014780485,-56.2727789497325,-56.2715574474539,-56.2713844607785,-56.2713946581736,-56.2702770473668,-56.2691063275253,-56.2690409552675,-56.2689921901181,-56.2688819265857,-56.2688318074046,-56.2687498051139,-56.2687075833391,-56.2685675377807,-56.2684782117129,-56.268363099013,-56.2683047088997,-56.2682462854359,-56.268124789444,-56.2680925928394,-56.2678195120046,-56.2676512185447,-56.2673509303451,-56.2671367799022,-56.2670456462356,-56.2669087889881,-56.2668265999345,-56.2667582580221,-56.2667462451601,-56.2667240203649,-56.2667017955697,-56.2666837662715,-56.2666537441216,-56.2666183058452,-56.2665918788828,-56.2665624036817,-56.2665419598049,-56.2665162332037,-56.2664902264581,-56.2664673613326,-56.2664306290555,-56.2663811902253,-56.2663221664519,-56.2662962797681,-56.266286014474,-56.2662721273121,-56.2662594741198,-56.2662497824549,-56.2662346679933,-56.2662291985059,-56.2662099619185,-56.2661865031535,-56.2661606831708,-56.2661414665937,-56.2661259786061,-56.2661242777289,-56.2659631879842,-56.2658275246858,-56.2656760932554,-56.2656415087526,-56.2655940509441,-56.265520906555,-56.2655157972533,-56.2653270732568,-56.2652519745265,-56.2651950184862,-56.2651278238322,-56.2650575075683,-56.2649683749336,-56.2648637409712,-56.2647510828705,-56.2646167069027,-56.26450892465,-56.2644067652972,-56.2642950009908,-56.2641670216552,-56.2640392891136,-56.2639466946936,-56.2638725030978,-56.2637660415262,-56.2636386091394,-56.2635335349499,-56.2634317891437,-56.2633208385903,-56.2632183857527,-56.2631260447968,-56.2630597572773,-56.2630012537722,-56.2629618601226,-56.2629629940407,-56.2629945169645,-56.2629130549525,-56.2628856341442,-56.2629000282343,-56.2627943670755,-56.2627220497796,-56.262502596602,-56.262364391993,-56.2595130348084,-56.2553509149634,-56.2528802407735,-56.2514664581489,-56.2512219434351,-56.2510892132093,-56.2510712968665,-56.2510796993057,-56.2507847734207,-56.2506966533732,-56.2506132911558,-56.2501930749649,-56.2500076259592,-56.2499763188417,-56.2497455365222,-56.2494520674265,-56.248598011722,-56.2486951870034,-56.2488135053534,-56.2490888065171,-56.2493535193632,-56.2497779591815,-56.2504675149989,-56.2512738184075,-56.2525211841283,-56.2526055991338,-56.252605459216,-56.252789987561,-56.2528729329389,-56.252986495324,-56.2530279998618,-56.2533569933137,-56.2533764566847,-56.2534524492094,-56.2536043699238,-56.253650764779,-56.2536576346084,-56.2537372457599,-56.2537580942408,-56.2537859104379,-56.2537897083175,-56.2540375311512,-56.2554597110723,-56.2565989786218,-56.257766515094,-56.25805997106,-56.2589038206211,-56.2612248100546,-56.2624224816832,-56.2630908304205,-56.2632699684827,-56.2636188986955,-56.2636905184141,-56.2637724841248,-56.2638273316586,-56.264791757472,-56.2652074715144,-56.2657879275855,-56.2664037460524,-56.2664713867866,-56.2682051775689,-56.2682054510433,-56.2698350249174,-56.2703027726857,-56.2705026733721,-56.2707437867946,-56.2715339247018,-56.2715470010328,-56.2715698127974,-56.271598320833,-56.2718424560537,-56.2721959023544,-56.272395018377,-56.2725019535262,-56.2736654885798,-56.2749366532648,-56.2759452166281,-56.2769256026869,-56.2784375180326,-56.2799772087066,-56.2821665177893,-56.28411107398,-56.2848030241698,-56.2854424939607,-56.2861374657087,-56.2880816483735,-56.2891890061329,-56.2896299979563,-56.2897790897681,-56.2898202255262,-56.2899642726243,-56.2901166287583,-56.2901979867119,-56.2902345413721,-56.2903312005925,-56.2904158236594,-56.2905885190044,-56.2906381346846,-56.2906889186399,-56.2907285347879,-56.2907610348562,-56.2907788897276,-56.2910945723533,-56.2917625039077,-56.2989870725798,-56.3008085586334,-56.3068342262244,-56.3099961369026,-56.3113910162776,-56.3118104192411,-56.3131270555737,-56.314870272716,-56.3152571370977,-56.3170963319883,-56.3190460441714,-56.3211747130629,-56.3274086503147,-56.3291718796572,-56.3297962329481,-56.3334581832313,-56.3336360216468,-56.3395910799038,-56.3403431075348,-56.344503613043,-56.3451289094162,-56.3515790088226,-56.3556231747956,-56.3579527895947,-56.358923356479,-56.3589233566804,-56.3655630341734,-56.3654281646177,-56.3615042875287,-56.3610145415638,-56.3574679125988],&#34;lat&#34;:[-34.8474746359723,-34.848420134042,-34.8494970161025,-34.8495288221531,-34.8505285268009,-34.8506818426511,-34.8508197511918,-34.8510196913381,-34.8517604098621,-34.8518931016941,-34.8519905919026,-34.8520217846554,-34.8520708099516,-34.852079687582,-34.8520885791933,-34.8520974102373,-34.8521106969756,-34.8521239874782,-34.8521283359728,-34.8521415865394,-34.8521548167981,-34.852163714424,-34.8521680368819,-34.8521679035133,-34.8521722788769,-34.8521766413818,-34.8521810500353,-34.8521853925408,-34.8522716399274,-34.8523655185381,-34.8523925022037,-34.8524239355792,-34.8524733173077,-34.8525137751381,-34.8525497332668,-34.8525677093427,-34.8525991587594,-34.8526216070947,-34.8526710526169,-34.8527160124937,-34.8527384845085,-34.8527609327071,-34.85279233841,-34.8528147434862,-34.8528371684286,-34.8528864770328,-34.8529178502215,-34.8529402480991,-34.8529671490696,-34.8529895738715,-34.8530120286506,-34.8530254853562,-34.8530434315498,-34.8530658565033,-34.8530793033295,-34.8531241795739,-34.8531421290372,-34.8531959200562,-34.8532228009251,-34.8532361908876,-34.8532854731943,-34.8532898819728,-34.8532942972875,-34.8532984427608,-34.8533208010401,-34.8533609854766,-34.8534012696373,-34.8534097802297,-34.8534185217012,-34.8534780087724,-34.8534944538822,-34.8535123200929,-34.8535438897868,-34.853568018815,-34.8536607229046,-34.8537282178118,-34.8537823494009,-34.8538046741481,-34.8538226300376,-34.8538900478481,-34.8539214974603,-34.853948448063,-34.8539844003482,-34.8540743598351,-34.8541058329544,-34.8542047605914,-34.8542451680514,-34.8542810215409,-34.854298978764,-34.8543169263901,-34.8543663002794,-34.8544022758763,-34.8544382292009,-34.8544606971317,-34.8544831792573,-34.854514663726,-34.854538317293,-34.8545955920733,-34.8546270530388,-34.8546495129278,-34.8547901754619,-34.8548518741609,-34.8548743573471,-34.8549326274401,-34.8549730517514,-34.8549910192764,-34.8550089836123,-34.8550269442525,-34.8550628479495,-34.8550943306339,-34.8551931802169,-34.8553100539704,-34.855337024402,-34.8553595010106,-34.8553999653204,-34.8554404411143,-34.8554719020898,-34.8555618188957,-34.855633682603,-34.8557056192031,-34.8557461934512,-34.8557867747425,-34.8558318644116,-34.855908545614,-34.855922116248,-34.8559899409204,-34.856048716585,-34.8561119942046,-34.8561660366547,-34.8562560731327,-34.8562832088006,-34.8563239650756,-34.8563420676271,-34.8563601754426,-34.8564235127555,-34.8564642255259,-34.8564867707183,-34.8565588194447,-34.8565813145364,-34.8566487292001,-34.8566666984265,-34.8567113016368,-34.8567701418004,-34.8568245181338,-34.8568828381366,-34.8569368425787,-34.8569683791073,-34.8570720192815,-34.8571193616908,-34.8571755908996,-34.8572205909013,-34.8572609867017,-34.8573014156983,-34.8573507962631,-34.8573915803854,-34.8573955945403,-34.8574135717993,-34.8574881052125,-34.8575351213253,-34.8575568559575,-34.8575843267237,-34.8576473126884,-34.8576923774709,-34.8577374339535,-34.8578185589339,-34.8578366249405,-34.857872755354,-34.8579089472573,-34.8579676228625,-34.8579991872131,-34.8580773023254,-34.8581750527638,-34.8582669737108,-34.8583704989131,-34.8584944260328,-34.8585723947678,-34.858613532326,-34.8586824695774,-34.8587573146712,-34.8588158703468,-34.8588912474363,-34.858958118243,-34.8589902132766,-34.8590957114012,-34.8591469292804,-34.8592248760829,-34.8593075000885,-34.8593720819584,-34.8594869527481,-34.8596020541399,-34.8597721699795,-34.8598593814306,-34.859983075519,-34.8601204346042,-34.8602672236767,-34.8604003923025,-34.8605059967079,-34.8606201992797,-34.8606651324773,-34.8607884556089,-34.8608044910204,-34.8608224514516,-34.860858420396,-34.8609529723753,-34.860993463334,-34.8610114560246,-34.8610878484083,-34.8611822970762,-34.8612183392735,-34.8612408691592,-34.8612769408592,-34.8613220375903,-34.861394099808,-34.8614154856049,-34.8614661670579,-34.861520261681,-34.8616194558044,-34.8616735690228,-34.8617457329526,-34.8617998873589,-34.8619217822034,-34.8619895017334,-34.8620570902262,-34.8621381652117,-34.8621922032812,-34.8622553105898,-34.8623365093489,-34.8623996498019,-34.8624537597499,-34.8624762581272,-34.8625258268812,-34.8625819407366,-34.8626746838036,-34.8627423516492,-34.8628642028661,-34.8629725003516,-34.8631077518658,-34.863143733834,-34.8632438038694,-34.8633464783443,-34.863396045593,-34.8634562980625,-34.8635897839309,-34.8636789181266,-34.8637679421401,-34.8639185782182,-34.8640916424806,-34.8642479149244,-34.8643651104144,-34.8644319350275,-34.8644908384977,-34.8645897694858,-34.8647658302918,-34.8648504391163,-34.8649272853594,-34.8650217458631,-34.8651108251865,-34.8651609442952,-34.8652277401529,-34.8653557527836,-34.8654254537032,-34.8655946663552,-34.8657053985433,-34.865783353634,-34.8659885077609,-34.8660904903129,-34.8663171972322,-34.8663328151265,-34.8663513681375,-34.8663695423528,-34.8664234972127,-34.8664806049605,-34.8664957907036,-34.8665147954074,-34.8665329799075,-34.8665509106992,-34.8665520846671,-34.8666109654555,-34.8666293883002,-34.8666490463175,-34.8666650301161,-34.8666920704466,-34.8667448176774,-34.8668601303946,-34.8669044783725,-34.8669383439122,-34.8669513193439,-34.8670059992016,-34.8670523513336,-34.8671054802356,-34.8671365062584,-34.8671762315305,-34.8672289537492,-34.8672489557367,-34.8672382651981,-34.8672067243009,-34.8671911714426,-34.8671945861499,-34.8672215833004,-34.8673013527381,-34.86734599084,-34.867389158428,-34.8674131759321,-34.8674356571104,-34.8674724545079,-34.8674967573329,-34.8675146932108,-34.8675455336608,-34.8675582268872,-34.8675791094547,-34.8675702708577,-34.8675572247332,-34.8675186285075,-34.8675024065265,-34.867489063293,-34.8674652205849,-34.8674245012674,-34.8673742286869,-34.8673305112839,-34.8672887330211,-34.8672743240291,-34.8672562628003,-34.8672336833293,-34.8672155987489,-34.8671929985829,-34.8671794553825,-34.8671477654552,-34.867125135451,-34.8671025021117,-34.8670889301123,-34.8670662984406,-34.8670436717714,-34.8670210567749,-34.8670029591082,-34.8669848731141,-34.8669668021278,-34.8669487411466,-34.866930685168,-34.8669126258544,-34.8668945615381,-34.8668764855492,-34.8668538922306,-34.8668312872393,-34.8668086739103,-34.8667860455736,-34.8667724752418,-34.8667589015748,-34.8667453245728,-34.8667317459033,-34.8667136565741,-34.866700069567,-34.8666864825598,-34.8666683865606,-34.8666547962183,-34.8666367002191,-34.8666231115444,-34.8666050172127,-34.8665914335406,-34.866568780191,-34.8665552048565,-34.8665325665147,-34.866509934843,-34.8664918104958,-34.8664736878161,-34.8664555618014,-34.8664374357867,-34.8664238654548,-34.8664057344375,-34.8663876034202,-34.8663740297532,-34.8663558954009,-34.8663423200664,-34.866324185714,-34.8663106103796,-34.8662924726922,-34.8662698293477,-34.8662562540133,-34.8662381163259,-34.8662154713139,-34.866192826302,-34.866174686947,-34.8661520402676,-34.8661339042477,-34.8661157732304,-34.8660976472157,-34.8660795278711,-34.8660659208536,-34.8660523138361,-34.8660387051511,-34.866025089796,-34.8660114711058,-34.8660023614077,-34.8659932533771,-34.8659841169986,-34.8659794929472,-34.8659793695502,-34.8659792795038,-34.8659791861222,-34.8659790910733,-34.8659835016812,-34.8659834049647,-34.8659833115832,-34.8659877255262,-34.8659876321448,-34.8659875420983,-34.8659874170338,-34.86598280132,-34.8659782022815,-34.8659736065781,-34.865968999202,-34.8659598778311,-34.8659462608085,-34.8659326637962,-34.865919080124,-34.865905499787,-34.8658919127798,-34.8658828214245,-34.8658737133939,-34.8658646270412,-34.8658554923302,-34.8658463926373,-34.8658372896093,-34.8658281882488,-34.8658190918909,-34.8658100022031,-34.8658008908375,-34.8657962934665,-34.8657961917474,-34.8658005923502,-34.865804989618,-34.8658138975454,-34.8658228071403,-34.8658317150677,-34.865840654678,-34.8658495576029,-34.8658584972132,-34.8658674401587,-34.8658808587457,-34.8658942973429,-34.8659077409428,-34.8659212028855,-34.8659346464854,-34.8659480717425,-34.865961495332,-34.8659839168954,-34.8659973671654,-34.86601533143,-34.8660333023647,-34.8660513266603,-34.8660694243271,-34.8660785390278,-34.8661011273438,-34.8661191232914,-34.8661370875561,-34.8661505511663,-34.8661640081064,-34.8661819673684,-34.8661999299655,-34.8662133969108,-34.8662313845208,-34.8662493737983,-34.866267376416,-34.8662853690286,-34.8663033399633,-34.8663168035736,-34.8663257415164,-34.8663256531375,-34.8663210424263,-34.866325436359,-34.8663298352943,-34.8663432738916,-34.8663567408369,-34.8663747084366,-34.8663971833608,-34.8664151643007,-34.8664286329135,-34.8664420731783,-34.8664510094536,-34.8664554317343,-34.8664778549652,-34.8664869496556,-34.8665005366627,-34.866518600979,-34.8665320579191,-34.8665409791866,-34.8665453981323,-34.8665452930781,-34.8665496820082,-34.8665540709384,-34.8665584648711,-34.8665673727985,-34.8665717784039,-34.8665761856769,-34.8665805912823,-34.8665804895632,-34.8665803895116,-34.866575787138,-34.8665711530814,-34.8665710496948,-34.8665664356485,-34.8665708279137,-34.8665842698461,-34.8665977284537,-34.8666111753886,-34.8666246389988,-34.8666380859338,-34.8666469971962,-34.8666559384741,-34.8666693637312,-34.8666828223388,-34.8667008082813,-34.8667187892212,-34.8667322111432,-34.8667366184161,-34.8667365033568,-34.8667363832949,-34.866736266568,-34.8667406621683,-34.8667450677737,-34.8667494783817,-34.8667584046519,-34.8667628019196,-34.8667671958524,-34.866767109141,-34.8667670207621,-34.8667624283937,-34.8667668289965,-34.8667712462746,-34.8667846865394,-34.8668026508041,-34.8668206150687,-34.8668385810009,-34.8668565536031,-34.8668700138783,-34.8668789201381,-34.8668787934061,-34.8668787000246,-34.8668786099781,-34.8668830305913,-34.8669009865183,-34.8669234764503,-34.8669459547096,-34.8669593949744,-34.8669637939097,-34.8669457112507,-34.8669277052979,-34.866905162005,-34.8668960606446,-34.8669094975743,-34.8669138981772,-34.8669093024737,-34.8669046917625,-34.866900092724,-34.8668954870154,-34.8668953752911,-34.8668952669019,-34.8668906528556,-34.8668860554846,-34.8668859537655,-34.8668813480569,-34.8668812546754,-34.8668811629615,-34.8668765655905,-34.8668719598819,-34.8668673675134,-34.8668537855089,-34.8668402068393,-34.8668176585439,-34.8668040698692,-34.8667904678543,-34.8667813681614,-34.866767767814,-34.8667586697886,-34.8667495567554,-34.8667494617064,-34.8667448509952,-34.8667492549331,-34.8667536622061,-34.8667580778166,-34.8667669807414,-34.8667759136817,-34.8667938962891,-34.8668119305899,-34.8668344888904,-34.8668480692275,-34.8668616779125,-34.8668707676003,-34.8668798956412,-34.8668889936666,-34.8669026073542,-34.8669206399874,-34.8669250472604,-34.8669249271985,-34.8669248388195,-34.8669202447836,-34.8669156207322,-34.8669064960264,-34.8668929240269,-34.8668703640589,-34.866847789083,-34.8668297130941,-34.866811623765,-34.8667889870907,-34.8667798707225,-34.8667933276626,-34.8668158909657,-34.8668294612976,-34.8668430382996,-34.8668655982677,-34.866879036865,-34.8668744244862,-34.8668743344398,-34.8668697337338,-34.8668696403523,-34.8668695519734,-34.8668694402491,-34.8668738575272,-34.8668692484835,-34.8668736507539,-34.8668735473672,-34.8668824719699,-34.8668959088996,-34.8669139081823,-34.8669319258078,-34.8669499000776,-34.8669633620203,-34.86697226161,-34.8669721715636,-34.8669675758601,-34.8669584861724,-34.8669448824899,-34.8669312954827,-34.8669177118106,-34.8669041331411,-34.8668860238017,-34.8668679344725,-34.8668498768264,-34.866840782136,-34.8668406937571,-34.8668406037107,-34.8668269900231,-34.8668134130211,-34.8667953170218,-34.8667727470486,-34.8667546927375,-34.8667410873875,-34.866745492993,-34.866754405923,-34.8667723601824,-34.8667767657878,-34.8667721450715,-34.8667720583601,-34.8667719699812,-34.8667718632595,-34.8667672725586,-34.8667626568448,-34.8667580561388,-34.8667534504302,-34.8667578527005,-34.8667622666436,-34.8667757052409,-34.8667937362066,-34.8668073232137,-34.8668253858625,-34.8668433651348,-34.8668523047452,-34.8668521896859,-34.8668475873123,-34.8668429932764,-34.8668338719056,-34.8668158109244,-34.8667933059847,-34.8667753033669,-34.8667573074193,-34.8667347574564,-34.8667166497845,-34.8667120407408,-34.8667074400348,-34.8666983303367,-34.8666892439839,-34.8666801576312,-34.8666710612733,-34.8666619499077,-34.8666528385421,-34.8666392215194,-34.8666212022264,-34.8666122659511,-34.8665988140135,-34.866576287396,-34.8665671927056,-34.8665625703217,-34.8665624419222,-34.8665623352005,-34.8665667291332,-34.8665666407543,-34.8665665373677,-34.866561928324,-34.866557330953,-34.8665526952289,-34.8665436022061,-34.8665409923885,-34.8665252994335,-34.8665161847328,-34.8665070666971,-34.866493451342,-34.8664753553428,-34.8664527970422,-34.8664393451047,-34.8664304054943,-34.8664169718996,-34.8663990243102,-34.8663855673701,-34.8663720970898,-34.8663541311577,-34.8663361468827,-34.8663225515379,-34.8663179424943,-34.8663178524478,-34.866317739056,-34.8663175906461,-34.8663129916076,-34.8663128865535,-34.8663082574994,-34.8663486116445,-34.8663482531262,-34.8663254463642,-34.866262275452,-34.8661855308729,-34.8661177709273,-34.8660990962963,-34.8660042156973,-34.8660080043179,-34.8659084679844,-34.8658542016646,-34.8657638467329,-34.8657318102108,-34.8657223503321,-34.8656771486872,-34.8656139794425,-34.8655458059503,-34.8654823732365,-34.865463665255,-34.8655264259556,-34.8656295991646,-34.8656204177629,-34.8656560928281,-34.8657279365464,-34.8658041074964,-34.8657542984753,-34.8657002089132,-34.865659401201,-34.865654268554,-34.8657216032802,-34.8658342880613,-34.8658927515458,-34.865969629527,-34.8660598210411,-34.8661496323591,-34.8662213093247,-34.8662932497596,-34.8663465655893,-34.8663322165224,-34.8663450831581,-34.8664704711572,-34.8665330150794,-34.8665416211844,-34.8664691204606,-34.8665044470127,-34.8665446777608,-34.8665623502082,-34.8665799059288,-34.8665079504862,-34.8664586850788,-34.8664319796394,-34.8663959410534,-34.8663957259425,-34.8664131699388,-34.8664306756336,-34.8664215409226,-34.866412211111,-34.8663623003707,-34.8663308057949,-34.866272442362,-34.8661327569893,-34.8661391084544,-34.8660951627085,-34.8660400693895,-34.8660333152907,-34.8660002872404,-34.8660381379732,-34.865999991093,-34.8659719100709,-34.8659489148073,-34.8658607791633,-34.8657889175335,-34.8658199941092,-34.8657910094605,-34.865848563597,-34.8658550480313,-34.8658178970163,-34.8657596108468,-34.8657287659957,-34.8657238978861,-34.8657020849764,-34.8656524560718,-34.8656076345317,-34.8655841339828,-34.8655312031294,-34.8655038861236,-34.8654315484674,-34.865444545443,-34.8654757583003,-34.865515955693,-34.8655067238931,-34.8654476968439,-34.8654519073898,-34.8654741224153,-34.8655277781719,-34.865572866808,-34.8656046413677,-34.8656673336455,-34.865703170165,-34.8657159201034,-34.8656976357791,-34.8657242914348,-34.8657555209342,-34.8657462876096,-34.8657142797164,-34.8656959481985,-34.8657135010138,-34.8656952180742,-34.8656859012513,-34.8657663444087,-34.8657972774453,-34.8657563162124,-34.8656974707771,-34.8656791546,-34.8656429508249,-34.8655751560168,-34.8655166106768,-34.8654535214348,-34.8653813978062,-34.8653135693772,-34.8652418343395,-34.8651966695008,-34.8651332701052,-34.8650601557401,-34.86481219254,-34.864758341717,-34.864703909883,-34.8645054958205,-34.8643618188655,-34.8642369710289,-34.8641490704511,-34.8639066403919,-34.8636365647001,-34.8635489395452,-34.8635187583209,-34.8634189240453,-34.8633160011712,-34.8631659104029,-34.8631158844583,-34.8630182092799,-34.863006647587,-34.8630522150875,-34.8630336098988,-34.862926582541,-34.8629341396064,-34.8628946191322,-34.8629507408355,-34.8629960100265,-34.8629988998306,-34.8630274624301,-34.863047207025,-34.863087833899,-34.8630954099524,-34.8630444287948,-34.863040984311,-34.8629960295231,-34.8629762465805,-34.8629053786975,-34.8628856352115,-34.8628947133886,-34.8628717335295,-34.862802407352,-34.86273177635,-34.8627226299662,-34.8627478859979,-34.8627600807907,-34.8627985290549,-34.8628031331505,-34.8627272269164,-34.8626357451576,-34.8626323479103,-34.8625487004876,-34.8625135871575,-34.862535183241,-34.8626048319317,-34.8626519718594,-34.8626201254354,-34.862543554279,-34.8625516182709,-34.8625879438385,-34.8625697544578,-34.8625920814107,-34.8625468137895,-34.8625341626328,-34.8624732624702,-34.8624686106287,-34.8624725785891,-34.8624990955074,-34.8625079074883,-34.8625355941785,-34.8625527578453,-34.8625580600934,-34.8625543989132,-34.862530602689,-34.8625382534886,-34.8625522818194,-34.8625533382447,-34.8625355344051,-34.862506544913,-34.862473639001,-34.8624447416522,-34.8624170206499,-34.8624039064019,-34.8624478063911,-34.8625371826597,-34.8625279945511,-34.8625190024264,-34.8625191864751,-34.8625140960542,-34.8625047419729,-34.8625015626578,-34.8624496775143,-34.8624166655059,-34.8623583687741,-34.862342934575,-34.8623378440441,-34.8623589041939,-34.862369482945,-34.8623493398231,-34.8623288396377,-34.8623388136891,-34.862372807285,-34.8624592272721,-34.8624868525228,-34.8624867066279,-34.8624870719459,-34.8624817503727,-34.8624770610818,-34.8624638731854,-34.8624463141422,-34.8623923218311,-34.8623770964262,-34.8623682000214,-34.8623772335031,-34.8624278165935,-34.8625029683524,-34.8624982910101,-34.8625255639905,-34.862536409759,-34.8625212997348,-34.8625472878532,-34.8625602395507,-34.8626391422468,-34.8625913850198,-34.8625877897461,-34.8625416399584,-34.8625143197914,-34.8624585134224,-34.8624068437739,-34.862385899012,-34.8623952086824,-34.8623810755975,-34.862351428866,-34.8623372052287,-34.8623072223966,-34.8623201123776,-34.8623096111567,-34.8622979868621,-34.8622824111432,-34.862265922764,-34.8622885705277,-34.8623064468599,-34.8622770413242,-34.8622635832241,-34.8623322351111,-34.8623417793186,-34.8624161869052,-34.8624528843683,-34.862364784341,-34.8622728563187,-34.8622037163306,-34.8620446184339,-34.8619901961154,-34.8619115051183,-34.8618535170591,-34.8617043675535,-34.8616657983713,-34.8615965976333,-34.8614714695806,-34.8613930318246,-34.8613582343608,-34.8613347418598,-34.8613101520786,-34.8612649157826,-34.8612289395471,-34.8611809114988,-34.861168631422,-34.8611807029278,-34.8612304464888,-34.861269701529,-34.8612750343395,-34.8612149755659,-34.8611897098579,-34.8611774011414,-34.8611635677779,-34.8611416041261,-34.8611233182381,-34.8610856219043,-34.8610201221554,-34.8609812216284,-34.8609411328556,-34.860920542661,-34.8609033452094,-34.8608808564769,-34.8608721843789,-34.8608756588471,-34.8608596656536,-34.8607634607503,-34.8606837016408,-34.8606644847548,-34.8606577785501,-34.8606570731476,-34.8606783874214,-34.8607150719373,-34.8607504312905,-34.8607467776526,-34.860736611125,-34.8607030593494,-34.860687260303,-34.860688203431,-34.860736837409,-34.8607400500279,-34.8601009825596,-34.8599609767984,-34.8597900934493,-34.8597342966627,-34.8596263085218,-34.8594509513451,-34.859378113195,-34.8593323701521,-34.8591975521882,-34.8589685967108,-34.8589026654823,-34.858673991544,-34.8584915761325,-34.8584272356828,-34.8581669497451,-34.8581639488711,-34.858092474958,-34.8580127881515,-34.8579820394539,-34.8579619719532,-34.8579562149816,-34.8578798693374,-34.8578656632113,-34.8578580583575,-34.8578207563496,-34.8578080199505,-34.8577971211666,-34.8577652174216,-34.8577643984232,-34.8577863893818,-34.857813280745,-34.8578716080025,-34.8578487196916,-34.8578085907673,-34.8577853421555,-34.8577721153887,-34.857766245271,-34.8577729828306,-34.8577834145447,-34.8577763224192,-34.8577774394879,-34.8578087907478,-34.8578068916423,-34.8577858149425,-34.8577626144573,-34.8577434692625,-34.8577428816607,-34.8577507761972,-34.8577779918455,-34.8577756305604,-34.8577982503341,-34.8578173571128,-34.8578168641917,-34.8579164580691,-34.8579288845629,-34.8578917565528,-34.857844682993,-34.8578092497472,-34.8578108092859,-34.8577928775399,-34.8577832278538,-34.8577607284536,-34.8577446591683,-34.8577229662317,-34.8577116818466,-34.8576899478508,-34.8576745927561,-34.8576560194017,-34.8576365077228,-34.8576322729661,-34.8576419418718,-34.8576616519846,-34.8577226653914,-34.8577518253925,-34.8577491164107,-34.8577343439707,-34.8577125333408,-34.8576866810148,-34.8576423194861,-34.8576029568708,-34.8575777766203,-34.8575206958264,-34.8575000345708,-34.8574947668729,-34.8574564194078,-34.8574451632228,-34.8574150208701,-34.8574623205508,-34.8574822107056,-34.8575089107516,-34.8575852601657,-34.857639039581,-34.8576763846795,-34.8576951883797,-34.8576467406105,-34.8576178365924,-34.8575898517685,-34.8574948201903,-34.8574188332784,-34.8574090593083,-34.8574140857743,-34.857466120859,-34.8574950224591,-34.8574943487248,-34.8574768992081,-34.8574630909097,-34.8574471015251,-34.857426267582,-34.8574002665555,-34.8573564818167,-34.8573114344075,-34.8572791969268,-34.8572563430748,-34.8572346550446,-34.8571783764987,-34.8571471025741,-34.8571487981428,-34.8571730456603,-34.8571742969077,-34.8571801474061,-34.8571782257254,-34.8571907252714,-34.8571842719904,-34.8571946284135,-34.857228060192,-34.8572673637925,-34.8572675132243,-34.8573259266163,-34.8572899555767,-34.8572900978609,-34.8572353882884,-34.8571839734463,-34.8571800088632,-34.8571636428063,-34.8569518919532,-34.8569200665421,-34.8568924283082,-34.8568706049572,-34.8568708112753,-34.8569019348915,-34.8569492903417,-34.8570171205102,-34.8570731279806,-34.8570749278068,-34.857064648831,-34.8570579028765,-34.8570236467041,-34.8570040696213,-34.856968220872,-34.8569222353859,-34.8568794343974,-34.856864449461,-34.8568659211204,-34.856834934787,-34.8568155170742,-34.8567969891083,-34.856765995657,-34.8567626262155,-34.8567477183294,-34.856722156888,-34.8567058638966,-34.8566897131436,-34.8566564236228,-34.8566634469712,-34.8566795906108,-34.8566991748065,-34.8567062052613,-34.8566980814595,-34.8566027538746,-34.8565592493147,-34.8565315470836,-34.8565144509416,-34.8564451475984,-34.8564131818349,-34.8563957736245,-34.8564129329796,-34.8564716500143,-34.85652898791,-34.8565403899658,-34.8565287532369,-34.8564595154095,-34.8564399952192,-34.8564169633547,-34.8563767713771,-34.856354052401,-34.8563622557657,-34.8563685647686,-34.8562514408487,-34.8562382178633,-34.8562280668057,-34.8561799629141,-34.8561569808069,-34.8561214306867,-34.8560880700196,-34.8560434267669,-34.8560064135084,-34.8560112117852,-34.8560308599451,-34.8560918446438,-34.8561958362856,-34.8562739456446,-34.8563268691887,-34.8563544505711,-34.8563629770728,-34.8563260942503,-34.856269858039,-34.8562366963143,-34.8562046151166,-34.8561677925472,-34.8561321926888,-34.856110283924,-34.8560711297476,-34.8559973140916,-34.8559133330273,-34.8558170937073,-34.8557794781972,-34.8557942732608,-34.8557717567391,-34.8556849338462,-34.8556100447418,-34.8555236823344,-34.8554618728524,-34.8554168328184,-34.8553751172183,-34.8553344494632,-34.8553252168441,-34.855306997348,-34.8553129257896,-34.8553141910272,-34.8552602863004,-34.8552429981918,-34.8552302099233,-34.8552438301731,-34.8552804467653,-34.85527588264,-34.8552534770449,-34.8551913123044,-34.8551750763214,-34.8551313370785,-34.8551129471037,-34.8551096059932,-34.855121342154,-34.8551168636447,-34.8551042245286,-34.8550907224006,-34.8550417330112,-34.8549780543473,-34.854897435688,-34.8548615373435,-34.8548120117115,-34.8547392836745,-34.8546863365994,-34.854604440629,-34.8545553943953,-34.8545273406983,-34.8545274259658,-34.8545425530016,-34.8545690893926,-34.8545865551293,-34.8545878630212,-34.854535963156,-34.8544749332876,-34.8544597519349,-34.8544068638808,-34.8543595632801,-34.8543231639018,-34.8542256018256,-34.8540777551071,-34.8539531719095,-34.8538596724861,-34.8538306622995,-34.8537569034323,-34.8536954779886,-34.8535859415039,-34.8535073060807,-34.8534436555654,-34.8533130347893,-34.8532863347711,-34.8532239812853,-34.8532136652613,-34.8531759725392,-34.8531567872569,-34.8531236577729,-34.8530617025663,-34.8530304350669,-34.8529999426046,-34.8529725590331,-34.8529437742716,-34.8529243339853,-34.8529233510544,-34.852946621448,-34.8529382500535,-34.8529746637512,-34.8529698771658,-34.8529797534748,-34.8529763132309,-34.8529098934534,-34.8528498255692,-34.8528455858094,-34.8529044440056,-34.8529350309979,-34.8529658184452,-34.8529527616829,-34.8529499548455,-34.8529369982858,-34.8529150286801,-34.8528724411838,-34.8528438112812,-34.8527753230784,-34.8527525574453,-34.8527298601298,-34.8526878317685,-34.8526746610534,-34.8526180334774,-34.8524671495236,-34.8523933752949,-34.8523493299669,-34.8522251864516,-34.852173652889,-34.8519856614045,-34.8519289161799,-34.8517590400605,-34.8517323028179,-34.8516981345453,-34.8516357282673,-34.8515522783003,-34.8514249599881,-34.851393221376,-34.8513471499786,-34.8513143030976,-34.8513145362967,-34.8512970942831,-34.8512575339675,-34.8512656669001,-34.8512500530707,-34.8512506262722,-34.8512574547224,-34.8512783759478,-34.8513002122881,-34.8513296211908,-34.8513565103322,-34.8514168083377,-34.851442632454,-34.851479488932,-34.8515281067451,-34.8517850212264,-34.8518101152761,-34.8518268033346,-34.8518519039862,-34.8519387899166,-34.8520105746485,-34.8520772110268,-34.8521129604435,-34.8521501502243,-34.8521870475855,-34.8522066940495,-34.8522337648492,-34.8523125247049,-34.8523273919937,-34.8523165764879,-34.8523060741473,-34.8522624085643,-34.852243300469,-34.8522171517522,-34.852106446472,-34.8520739415835,-34.8520553101943,-34.8520379931465,-34.8520063435387,-34.851986956223,-34.8519730628013,-34.8519743502794,-34.8519565074958,-34.8519565360692,-34.8519473515181,-34.8519449185243,-34.8519595791879,-34.8519607768568,-34.8519361878241,-34.8519656473672,-34.8519657403207,-34.8519388753605,-34.8519172917688,-34.8519452352205,-34.8519597558575,-34.851972654235,-34.8519802513117,-34.8519805301152,-34.8519947556001,-34.8520122322233,-34.8520403313963,-34.8520706899097,-34.8520419239234,-34.8519396622058,-34.8519171105569,-34.8518720673006,-34.8518270240224,-34.8518044989759,-34.8517819709808,-34.8517502447566,-34.8517321120131,-34.8517184849869,-34.8516957632336,-34.851695633124,-34.8516909439822,-34.8516862780525,-34.8516816155507,-34.8516814992601,-34.8516856479003,-34.8516992660125,-34.8516941425478,-34.851689523351,-34.85168941336,-34.8516802716797,-34.8516711335025,-34.8516619958529,-34.8516483785334,-34.8516347983391,-34.8516167488798,-34.8515987329197,-34.8515985899467,-34.8515984828066,-34.851598369329,-34.8516027620978,-34.8516025953216,-34.8515797597858,-34.8515616708638,-34.8515435982541,-34.8515255319348,-34.8515074760617,-34.8514849278225,-34.8514579202326,-34.8514264311618,-34.851403935675,-34.8513859568345,-34.8513634450486,-34.8513454326282,-34.8513229075968,-34.8513048847303,-34.8512823196876,-34.8512642307646,-34.8512506168874,-34.8512414989275,-34.8512278282695,-34.8512141546866,-34.8512050036308,-34.8511867206299,-34.8511684375832,-34.8511592697175,-34.8511501052902,-34.851140970411,-34.8511312922277,-34.8510956100698,-34.8510819799264,-34.8510728821549,-34.8510637872164,-34.8510546760864,-34.8510589880913,-34.8510588112755,-34.8510586610542,-34.8510584412866,-34.8510583310539,-34.8510627167111,-34.8510715413453,-34.8510804524284,-34.8510847881458,-34.8510890705211,-34.8510841708974,-34.8510550099928,-34.8510484791396,-34.8510350588425,-34.8510216119344,-34.851008155149,-34.8509902257107,-34.8509722869442,-34.8509543209775,-34.8509318324306,-34.8509137933432,-34.8508957304807,-34.8508776444528,-34.8508640541901,-34.8508594417506,-34.8508503171749,-34.85085009674,-34.850849880258,-34.8508497403961,-34.8508495234033,-34.8508494264635,-34.8508538387324,-34.8508582509816,-34.850862663275,-34.8508715881608,-34.8508805125655,-34.8508894403592,-34.8508893306308,-34.85089373943,-34.8509041980383,-34.850893552502,-34.8508799621445,-34.8508619033041,-34.8508439135761,-34.8508259511403,-34.8508125007705,-34.8507944918966,-34.8507719702953,-34.8507539474398,-34.8507314090518,-34.8507133362434,-34.850699739573,-34.850687113304,-34.8506770345425,-34.8506635707843,-34.8506546459093,-34.8506457314361,-34.8506321278379,-34.8506230130202,-34.8506093861261,-34.8505912971383,-34.8505731877432,-34.8505505094045,-34.8505369190634,-34.8505248903785,-34.8504018985173,-34.8503548077961,-34.8503700545419,-34.8503677715571,-34.8503407344142,-34.8503272742059,-34.8502958046303,-34.850277848572,-34.8502464225779,-34.8502375308734,-34.8502094568481,-34.8501742352922,-34.8501785706988,-34.8502009353002,-34.8502053276466,-34.8502052044128,-34.8501960430228,-34.8501734214068,-34.8501462539706,-34.8501371390511,-34.8501324868116,-34.8501368756006,-34.8501500862075,-34.8501724809765,-34.8501858910871,-34.8502038138987,-34.8502262516924,-34.8502667227339,-34.8502711051011,-34.8502709485735,-34.8502573313877,-34.8502212426891,-34.8501941787764,-34.8501716001623,-34.8501534208148,-34.8501487951829,-34.8501486986051,-34.8501439961731,-34.8501483819944,-34.8501347146292,-34.8501166789977,-34.8501077706646,-34.8500899218417,-34.8500855191292,-34.8500811170159,-34.850081367292,-34.8500815005019,-34.8500725961946,-34.8500499879361,-34.8500453384508,-34.8500541997447,-34.8500540967486,-34.8500584720844,-34.850044811794,-34.850031221348,-34.8500176075659,-34.8500039804073,-34.8499858848158,-34.8499677717941,-34.8499316801064,-34.849913557146,-34.849908908218,-34.8498909558538,-34.8498820777487,-34.8498460024047,-34.8498279731234,-34.8498100271577,-34.8497830633411,-34.8497605552141,-34.8497424892787,-34.8497198710615,-34.8497016916605,-34.8496837252603,-34.8496519891228,-34.8496381919299,-34.8496380183915,-34.8496333397176,-34.8496151468694,-34.8496015132406,-34.8495968904758,-34.8495967372804,-34.849587586012,-34.8495649939787,-34.8495379504054,-34.8495198874364,-34.8494883049165,-34.8494701783912,-34.8494655194485,-34.8494473037439,-34.8494380452906,-34.8494199793708,-34.8494020234965,-34.8493885635121,-34.849370590796,-34.8493525213718,-34.8493253407958,-34.8493071315347,-34.849302405515,-34.8493022685274,-34.8493065912278,-34.8493063340986,-34.8492926671784,-34.8492746577267,-34.8492702423972,-34.8492658935186,-34.8492479773569,-34.8492346304288,-34.849230268146,-34.8492168145437,-34.8491944264568,-34.8491764205152,-34.8491538255554,-34.8491312002926,-34.8491041497113,-34.8490815914109,-34.8490681413048,-34.8490501586764,-34.8490141002413,-34.8489826307931,-34.8489645543568,-34.8489464388211,-34.8489284194859,-34.8489148324646,-34.848901212115,-34.848883075646,-34.8488422550212,-34.8488421378276,-34.8488420445229,-34.848837435633,-34.8488103786745,-34.8487967811004,-34.848787669927,-34.8487651420129,-34.8487471255533,-34.8487157062967,-34.8486978467395,-34.8486753823574,-34.8486752155785,-34.8486572330091,-34.8486392666911,-34.8486259034753,-34.8486170418659,-34.8485947173656,-34.8485722657705,-34.8485453119175,-34.848518151226,-34.8484910738317,-34.8484730242196,-34.8484639294522,-34.8484637731992,-34.8484636163717,-34.8484635126111,-34.8484678818891,-34.8484677681793,-34.8484586436809,-34.8484405543565,-34.8484406709969,-34.8484407812011,-34.8484408977851,-34.8484320233761,-34.848414030862,-34.8483915256393,-34.848378165324,-34.8483556373495,-34.8483420071162,-34.8483419033584,-34.8483463023881,-34.8483371446172,-34.8483325054467,-34.8483323684072,-34.8483051977191,-34.8482870552967,-34.8482689193509,-34.8482373560364,-34.8482374931175,-34.8482331209482,-34.8482151745334,-34.8482062435535,-34.8482108623977,-34.8482244529638,-34.8482245829858,-34.8482157115197,-34.8481931934157,-34.8481751706355,-34.8481525557773,-34.8481478303119,-34.848143167685,-34.8481430411557,-34.848142757211,-34.8481471130392,-34.8481515219119,-34.8481648652251,-34.8481647654959,-34.8481511853608,-34.8481286737109,-34.8481243044637,-34.8481199154839,-34.8481200426293,-34.8481111845984,-34.8481022863299,-34.8480978907884,-34.8480980377789,-34.8480891464427,-34.8480665578565,-34.848066391085,-34.8480572665234,-34.8480391673074,-34.8480344213154,-34.8480297989883,-34.8480296590201,-34.8480024917526,-34.847979927042,-34.8479574550529,-34.8479665732752,-34.8479802070274,-34.8479712959062,-34.8479487504527,-34.8479125619395,-34.8478944895003,-34.8478583942646,-34.8478178230393,-34.8477593631834,-34.8477277199615,-34.8476916247327,-34.8476646406589,-34.8476511807157,-34.8476195741806,-34.8475926636113,-34.8475700989611,-34.8475520358207,-34.84753394009,-34.8475114320045,-34.8475025436453,-34.8475162275652,-34.847538882673,-34.8475480305151,-34.8475571918105,-34.8475347740925,-34.8475123289055,-34.8474851949581,-34.8474671091882,-34.8474445608127,-34.8474266149115,-34.8474221960724,-34.8474042467243,-34.8473682214233,-34.8473357489467,-34.8473094507187,-34.8473002428435,-34.8472910681019,-34.8472774442522,-34.8472544392212,-34.8472549815737,-34.8472676191455,-34.8472857131823,-34.8472857866784,-34.8472674458645,-34.8472464459351,-34.847195402391,-34.8471775026801,-34.8471731055029,-34.8471822422529,-34.8471824487765,-34.8471691317188,-34.8471467303508,-34.8471423150342,-34.8471334633623,-34.8471156475667,-34.8470977349128,-34.8470797890626,-34.8470711627511,-34.8470574342498,-34.8470560765791,-34.8470260884368,-34.8470080591569,-34.8469765757591,-34.8469495887149,-34.8469135704242,-34.8468909118615,-34.8468682801253,-34.8468277159071,-34.8468052544457,-34.8467918206574,-34.8467559790016,-34.8467199304344,-34.8466973622351,-34.8466792858057,-34.846634215868,-34.8466026467591,-34.8465846239071,-34.8465576397925,-34.8465396572037,-34.8465081544926,-34.8464945441379,-34.8464222633523,-34.8463951730634,-34.8463635497853,-34.8462957950295,-34.8462280134846,-34.8461873186702,-34.8461376164911,-34.8461149952574,-34.8460742205211,-34.8460334731446,-34.8459836373601,-34.8459338080482,-34.8458840392997,-34.8458342734571,-34.8457890500609,-34.8457483393751,-34.8456984702365,-34.8456575657629,-34.8455939797167,-34.8455575773291,-34.8455167328296,-34.84548049792,-34.8454533503998,-34.8454080404154,-34.8453625370349,-34.8453079386727,-34.8452623953973,-34.84522592305,-34.8452031548167,-34.8451803193918,-34.8451483666606,-34.845130046769,-34.8451208090379,-34.8451026060255,-34.8450708765461,-34.8450120027915,-34.8449577114546,-34.8449349997965,-34.8449031397559,-34.8448940153695,-34.8448802817519,-34.8448666978916,-34.8448485719882,-34.844821284354,-34.8448211210511,-34.8448164853708,-34.8447847522,-34.8447572213877,-34.8447526155619,-34.8447434811671,-34.8447298170512,-34.8447161371118,-34.8447025233636,-34.8446843570369,-34.8446662012038,-34.8446525774569,-34.8446026549992,-34.8445798334879,-34.8445661094576,-34.8445387288782,-34.8445204528309,-34.8445112913435,-34.8445021163955,-34.8444929050938,-34.8444925984111,-34.8445050124644,-34.8444603590352,-34.8445097865608,-34.8445562509852,-34.844556134143,-34.8445470128778,-34.8445288437878,-34.8445241812834,-34.8445150230137,-34.8445058418066,-34.8444921149329,-34.8444649638059,-34.8444513867647,-34.8443697151693,-34.8443560776604,-34.8443017464712,-34.844274525895,-34.844233711205,-34.8441929469987,-34.8441567014673,-34.8441431114591,-34.8441113015405,-34.844079498803,-34.8440521710664,-34.8440249468233,-34.8439886682766,-34.8439568717944,-34.8439250924096,-34.8439023337954,-34.8438886665952,-34.8438750829643,-34.8438613663463,-34.8438159261432,-34.8437840830637,-34.8437431118946,-34.8437294811788,-34.8437158144661,-34.8437111450648,-34.8436930026926,-34.8436928560299,-34.8436972215743,-34.843688120023,-34.8436654683845,-34.8436382845742,-34.8436380106201,-34.8436382497855,-34.8436287858958,-34.8436286662875,-34.8436284924326,-34.8436371301945,-34.8436368101785,-34.8436004149725,-34.8435596973758,-34.8435459503066,-34.8435227849134,-34.8435450327238,-34.8435269638755,-34.8435157150742,-34.8434909082628,-34.8434729656508,-34.8434637944106,-34.8434679562295,-34.8434901713581,-34.8435259166633,-34.8435393098531,-34.8435569525431,-34.843574821844,-34.8436103798938,-34.8436237299093,-34.8436248274206,-34.8436126510718,-34.8436010082868,-34.8435920736263,-34.8435786268863,-34.8435428020487,-34.8435204069324,-34.8434799695758,-34.8434618499774,-34.8434481799251,-34.8434523710006,-34.8434703046149,-34.8434927095394,-34.8434741931871,-34.8434469457308,-34.8434321365761,-34.8434285898248,-34.8434238235353,-34.8434306277797,-34.8434324083394,-34.8434186212506,-34.8434139086172,-34.8434181206125,-34.8434044906411,-34.8433998483331,-34.8434042404814,-34.8434131148408,-34.8434265284061,-34.8434490332363,-34.8434670595987,-34.843476056291,-34.8434858483234,-34.8435276449259,-34.8435244810571,-34.8435404580053,-34.8435481281529,-34.8435566698797,-34.8435400838983,-34.8435334280937,-34.8435751520637,-34.8435387498695,-34.8435386097322,-34.8435382596104,-34.843538049105,-34.8435241823595,-34.8435374923966,-34.8435371421193,-34.8434963009229,-34.8434959540976,-34.8435091243247,-34.8435087075125,-34.843508567208,-34.8435441325225,-34.843557372488,-34.8435975832243,-34.8436197681259,-34.8437797561606,-34.8438862604829,-34.8440137706928,-34.8441248023691,-34.8440676367982,-34.8441086087505,-34.8440955679309,-34.8440641924635,-34.8440050531786,-34.8438556433187,-34.8438529159913,-34.8438522196782,-34.8437697857831,-34.8436670617719,-34.8434993262795,-34.8434497540583,-34.8433774596896,-34.8433592836944,-34.8433501889969,-34.8433410813091,-34.843291322029,-34.8431103141006,-34.8428128218804,-34.8427220482979,-34.8427581707162,-34.8427715806983,-34.842766915106,-34.8427487958643,-34.8426992368277,-34.8426857762382,-34.8426091033017,-34.8426089469514,-34.8426358906282,-34.8426628510851,-34.8426852462413,-34.8426985961943,-34.8426759082255,-34.8426487841849,-34.8426171777433,-34.8425810256204,-34.8425538616844,-34.8425492162175,-34.8425580372015,-34.8425713506969,-34.84258005848,-34.8425573734454,-34.8425301897921,-34.8425120402538,-34.8424939942511,-34.8424760215501,-34.842462724753,-34.8424628450065,-34.8424490224185,-34.8424403164404,-34.8424271538656,-34.842413059116,-34.8423859385781,-34.8423453474281,-34.8423092691531,-34.8422731235868,-34.8422388136253,-34.8422096473079,-34.8421688197274,-34.8421414193031,-34.8421186072509,-34.8420868344981,-34.8420787319534,-34.8420680543592,-34.8420855902525,-34.8421343931181,-34.8421381405302,-34.8421423795769,-34.8421284192859,-34.8421237597096,-34.8421055239524,-34.8420781765369,-34.8420735507956,-34.8420778996277,-34.8420641861114,-34.8420459228855,-34.8420277968413,-34.8420095478464,-34.8420003226592,-34.8419910880482,-34.8419863159534,-34.8419815534805,-34.8419854619642,-34.8419986152366,-34.8420029775513,-34.8420209101318,-34.8420388229733,-34.8420386491048,-34.8420255112072,-34.8419934726845,-34.841979662189,-34.841952521596,-34.8419566506984,-34.8419653417257,-34.8419697038867,-34.8419740859114,-34.8420055688496,-34.8420235084395,-34.8420185692829,-34.8420228777253,-34.8420182021147,-34.8420134564884,-34.8420087438895,-34.8419859354036,-34.8420121329291,-34.8420078535709,-34.8419807195365,-34.8419626901567,-34.8419447111131,-34.8419038699318,-34.8418948377413,-34.841890819979,-34.8418957431711,-34.8418890826374,-34.8418543441367,-34.8418516418837,-34.8418406124344,-34.841853707288,-34.8418805545646,-34.8419209220015,-34.8419361547939,-34.8418264548761,-34.8417992538953,-34.8417931959825,-34.8418110756094,-34.8418334337955,-34.8418603409554,-34.8418917968396,-34.8419187476513,-34.8419411527111,-34.8419454881814,-34.8419588980463,-34.8419722982116,-34.8419676258302,-34.8419944663469,-34.842048482318,-34.8420716868818,-34.8420747934939,-34.8420938313302,-34.8420612842594,-34.8420792171753,-34.8421420627843,-34.8421600088819,-34.8421688534262,-34.8421687263326,-34.8421497998512,-34.8421559640268,-34.8421758845097,-34.8421861923843,-34.8422043082321,-34.8422323749031,-34.8422402732095,-34.8422400866252,-34.8422315203489,-34.8422069743595,-34.8421949998385,-34.8421999348583,-34.8421947334461,-34.8421851441049,-34.8421492765592,-34.842140942331,-34.8421228326793,-34.8421047834735,-34.842068683842,-34.8420639556448,-34.8420681639476,-34.8421084778849,-34.8421084820129,-34.8421083752737,-34.8421037429571,-34.8420990907398,-34.8420944481886,-34.8420852969009,-34.8420671943667,-34.8420446490822,-34.8420221339204,-34.8420051389754,-34.8419949004234,-34.8419946801372,-34.8420171214224,-34.8420349839303,-34.8420573657246,-34.8420707824642,-34.842102135503,-34.8421020255943,-34.8420973830636,-34.8420924971414,-34.8421105366724,-34.8421239100807,-34.842132761083,-34.8421416890293,-34.8421822100778,-34.8421775408837,-34.8421504737383,-34.8421189039792,-34.8421009413431,-34.8420920201054,-34.8420830856369,-34.8420696886559,-34.8420607674042,-34.8420518527771,-34.8420409778817,-34.8420294144288,-34.8420203201957,-34.8420201699199,-34.8420335735286,-34.8420379692872,-34.842037872419,-34.8420331966909,-34.8420263691243,-34.8420352704715,-34.8420463766259,-34.842041764575,-34.8420461765915,-34.842055061152,-34.8420504418436,-34.8420413173733,-34.8420322062559,-34.8420320890421,-34.8420828374771,-34.8420942077741,-34.8421029792072,-34.8420938679742,-34.8420847332576,-34.8420874558462,-34.8421026556034,-34.8421160427394,-34.8421294797575,-34.8421474187951,-34.8421608624781,-34.8422372383356,-34.8422955420922,-34.84229995388,-34.8423043531147,-34.8423311868383,-34.8424094575952,-34.8423591385524,-34.8422181587921,-34.8421777478545,-34.8421598221307,-34.8421509004255,-34.8421060954733,-34.8420489361457,-34.8420424047547,-34.8420558350423,-34.8420671424648,-34.8421438529595,-34.8421727958476,-34.8421361228068,-34.8420609994742,-34.8419750297134,-34.8419196250552,-34.8418957989546,-34.8418585439842,-34.8419055976905,-34.8419210346066,-34.8419304903188,-34.8419348989488,-34.8419302769384,-34.8419256778352,-34.8419303683737,-34.8418940181399,-34.8418535271893,-34.8418397920473,-34.8418663782162,-34.8418620152176,-34.8418573124332,-34.841866620146,-34.8418570222976,-34.8418522852922,-34.8418434255873,-34.8418299785229,-34.8418165151023,-34.8417987694331,-34.8417824165335,-34.8417717381262,-34.8417492603264,-34.8417354496945,-34.8417443741425,-34.8417532890732,-34.8417757106286,-34.8417936863614,-34.8418284911274,-34.8418386160404,-34.8418204755838,-34.8418291147869,-34.8418234534719,-34.8418050816304,-34.8418021005252,-34.8417979211684,-34.8417708081483,-34.8417446852093,-34.8417169565516,-34.8415949037563,-34.8415903015529,-34.8415630539087,-34.841562940457,-34.8415673429828,-34.8415671764525,-34.841549007097,-34.8415219060079,-34.8415028129942,-34.8415161634579,-34.8415340322016,-34.8415429372763,-34.8415518285205,-34.841560699738,-34.8415740929723,-34.8415874965008,-34.8415963411912,-34.8415871999105,-34.8415829603074,-34.8414967299752,-34.8414788406591,-34.8414294419175,-34.84140683325,-34.8414073192008,-34.8415023555405,-34.8414770269827,-34.841416708492,-34.8413528038708,-34.8412959218895,-34.8413225532753,-34.8412562593372,-34.8413399030777,-34.8413150476357,-34.8413252067164,-34.8413905651857,-34.8414160202849,-34.8413399591423,-34.8412314981223,-34.8411491063456,-34.8412036541377,-34.8412044938366,-34.8412622720411,-34.8412692367671,-34.8413720750585,-34.8413471251389,-34.8412553582309,-34.8411431454403,-34.8410354922092,-34.840955560919,-34.8409181649416,-34.8408768842259,-34.8408835876875,-34.8409414769706,-34.8409324187846,-34.8408131140124,-34.8407632861125,-34.8407028744121,-34.8406461591517,-34.8406370823419,-34.8406408717417,-34.840670281744,-34.8406710076543,-34.8406481024786,-34.840670120519,-34.8406338115496,-34.8405480673684,-34.8404938091048,-34.8404709107199,-34.8404073247214,-34.8402990954063,-34.8402315572373,-34.8401819350931,-34.8401190260123,-34.8400604222305,-34.8399469875933,-34.8398925525768,-34.8398179422857,-34.8396949483219,-34.839720977372,-34.8397848792979,-34.8399162847468,-34.8400629138457,-34.8400443907968,-34.8400752466419,-34.8400520145538,-34.8399386595654,-34.8399067667197,-34.8399062628197,-34.8397950672301,-34.8397512519399,-34.8397455694889,-34.8397909221847,-34.8399001009877,-34.8399043304073,-34.840086100062,-34.8400904212301,-34.8402220627377,-34.8402077450137,-34.8401569449112,-34.8400360491763,-34.8399730545725,-34.8400218745822,-34.8401114664775,-34.8400768219874,-34.8399658379578,-34.8398572330108,-34.8398153305537,-34.839721490053,-34.8396397954608,-34.839615833203,-34.8394516620231,-34.8393886560014,-34.8393208575319,-34.8392527594435,-34.8392272801335,-34.8391609246288,-34.8390278276273,-34.8390121185025,-34.8389261709532,-34.8388178248635,-34.8387592149123,-34.8386909993183,-34.8386947845783,-34.8385795783649,-34.8384968359659,-34.8384588492952,-34.838184286947,-34.8381852592592,-34.8381542461967,-34.8380660522885,-34.8379596165166,-34.8378900670099,-34.8377559370074,-34.83774149107,-34.837771672575,-34.8378390760065,-34.8378438204489,-34.8378832299965,-34.837824169526,-34.8377578114086,-34.8377550411259,-34.8376138806419,-34.83750937324,-34.8374639768864,-34.8373495568807,-34.8373468927526,-34.8371565483972,-34.837093525906,-34.8370392409181,-34.8370298230024,-34.8369888748329,-34.8369392125437,-34.8369078400874,-34.8367853600481,-34.8366947469947,-34.8365639427695,-34.8364560235919,-34.8363157109898,-34.836071968642,-34.8358466695292,-34.8357155347933,-34.8356786828132,-34.8356787446814,-34.8354249573344,-34.8353284961876,-34.8352790958953,-34.835293743298,-34.8351584308055,-34.8348969669006,-34.8348648161219,-34.8349346365183,-34.8348717294106,-34.8347902244777,-34.834560432851,-34.8344614849892,-34.8342105488858,-34.8340144292331,-34.8337318834713,-34.8337314296642,-34.8335309478046,-34.8333607586264,-34.8332974143394,-34.8329233785027,-34.8327793539529,-34.832612418255,-34.8325090478791,-34.8325088585872,-34.8323049190364,-34.8321725809288,-34.8320483107193,-34.8318957283003,-34.8318114830245,-34.8316874566957,-34.8313871308074,-34.8312124857775,-34.8311557734799,-34.8308998700933,-34.830853634506,-34.8308250658444,-34.8308269341515,-34.8308409903,-34.83087259069,-34.8308605707012,-34.830864936675,-34.8307514947904,-34.8305889343726,-34.8303683872632,-34.8301747127311,-34.8300087863523,-34.8297740544792,-34.8297024141042,-34.8296801055419,-34.8295358411102,-34.8293881259178,-34.8293574750378,-34.8294624236522,-34.8293217008585,-34.8291424987537,-34.8290705682645,-34.8290394488691,-34.8289813617833,-34.8288490368799,-34.8287504664459,-34.8285808947778,-34.8284543461846,-34.828369959829,-34.8282439250356,-34.8281635037324,-34.8280698718974,-34.8279263381171,-34.827841650992,-34.8275799652939,-34.8275184369586,-34.8274695812797,-34.8273998115745,-34.8273070418005,-34.827258066508,-34.8272992542817,-34.8273361333256,-34.8273240004352,-34.8273308124915,-34.8272738245942,-34.8271214197592,-34.8267531731455,-34.8261907969819,-34.8258739377491,-34.8255654859332,-34.8254748935347,-34.8253424567986,-34.8252325323175,-34.8250849398617,-34.8249435081699,-34.8247930078944,-34.8246218671856,-34.8244073902716,-34.8241923248313,-34.8240469698266,-34.8238145239599,-34.823579602448,-34.823527808519,-34.823376617329,-34.8232562135816,-34.8230996185525,-34.8230410350662,-34.8228931653627,-34.8228576603314,-34.8226046321964,-34.8224825539427,-34.8224176181161,-34.8223911906026,-34.8223520908342,-34.8222529597669,-34.8221963063161,-34.8222078932377,-34.8222621301876,-34.8224996158721,-34.8226346407411,-34.8226525812952,-34.8225365749819,-34.8223565487458,-34.8223348774828,-34.8223780087096,-34.8220773643165,-34.8216932233208,-34.821475886797,-34.8212660921638,-34.8211426586534,-34.8210020746482,-34.8209410505589,-34.8207464249613,-34.8206724969963,-34.8203950957865,-34.8203056067961,-34.8200653003414,-34.8198757761492,-34.8199575930447,-34.8200681780931,-34.8199622121167,-34.8197668452007,-34.8196324168869,-34.8195499026301,-34.8194369627032,-34.819255542702,-34.8194097975287,-34.8193336438036,-34.8191478438618,-34.8190690500242,-34.8190291942008,-34.8189957956288,-34.8189917870225,-34.8189019874803,-34.8187800576775,-34.8187200285071,-34.8186130034678,-34.8184468657172,-34.8182511466312,-34.8181781673091,-34.8180626370536,-34.8179833198928,-34.8179009636978,-34.8178195040376,-34.8178145411074,-34.8177709681087,-34.8176641921386,-34.8175495592901,-34.817468348729,-34.8175086296171,-34.8174598418441,-34.8175173664058,-34.817312606771,-34.8172692314331,-34.8173401121067,-34.8173135211835,-34.817172549251,-34.8172181884568,-34.817257633005,-34.8170940319099,-34.8169613639265,-34.8170156808751,-34.8170232825791,-34.8169840437248,-34.8168170790578,-34.816900875051,-34.8168472077597,-34.8168066997893,-34.8167481831101,-34.8166800951862,-34.8165733684393,-34.8165214845472,-34.8164017114003,-34.8162977241791,-34.8162163156162,-34.816090236886,-34.8160860615733,-34.8159428781453,-34.8158506333652,-34.8157471966673,-34.8157141034637,-34.8156834664965,-34.815604484009,-34.8150015744632,-34.8149441879551,-34.8148947656759,-34.8154623179466,-34.8154928089783,-34.8154704708596,-34.8154661486489,-34.8154603715132,-34.8153938463625,-34.8152539267024,-34.8151391371933,-34.8150667494485,-34.8150097862552,-34.8149049436114,-34.8148815736675,-34.8148517170168,-34.8148009674726,-34.8147204707677,-34.814711626095,-34.8146329207417,-34.8145878026067,-34.814567791989,-34.8145498161,-34.8144959016665,-34.8144529263532,-34.8144594934936,-34.8144435756454,-34.8144834352925,-34.8144801051111,-34.8144756069419,-34.8145155337887,-34.8147524203928,-34.8148250032311,-34.814852384397,-34.8149753872536,-34.8150479700665,-34.8150687683212,-34.8149359245979,-34.8147682242393,-34.8147180191129,-34.8146790689488,-34.8145361768396,-34.8145006906256,-34.8144826614404,-34.8144690876149,-34.8144465293781,-34.8144285200443,-34.8143969438514,-34.8143652407639,-34.8143561292636,-34.814346991475,-34.8143378268063,-34.8143241863874,-34.8143105324146,-34.8142923367362,-34.8142740805472,-34.8142423305088,-34.8142151166237,-34.8141878827348,-34.81416519096,-34.8141470283462,-34.8141288922358,-34.8141063208975,-34.8140883044905,-34.814065806365,-34.8140433747031,-34.8140345304242,-34.8140346635511,-34.8140212832117,-34.8140033273569,-34.8139808223879,-34.8139628268236,-34.8139493662072,-34.8139314639103,-34.8139181167774,-34.81390028088,-34.8138869205445,-34.813873600817,-34.8138376419465,-34.8138059858847,-34.8137878099341,-34.8137741427733,-34.8137560133326,-34.813728799432,-34.8136927007687,-34.8136656202873,-34.8136205235463,-34.8135844378879,-34.8135483526296,-34.8135122540853,-34.8134716201865,-34.8134490215799,-34.8134219011343,-34.8133948537348,-34.8133813998734,-34.8133590016063,-34.8133321281903,-34.8133052072396,-34.8132918070717,-34.8132740911359,-34.8132517531213,-34.8132293884491,-34.813206930286,-34.8131483663319,-34.8131033166059,-34.8130583271006,-34.8130043922649,-34.8129459489944,-34.8128920279707,-34.8128381600366,-34.8127977659575,-34.8127573584734,-34.8127034374104,-34.8126584738741,-34.8126045258365,-34.8125460294121,-34.8124919011333,-34.8124512072161,-34.8124240261206,-34.8123878810111,-34.8123472802254,-34.8123155773268,-34.812283854053,-34.8122566201137,-34.8122338680181,-34.8122021517149,-34.8121659668208,-34.8121299344661,-34.8120938893523,-34.8120623464415,-34.8120263145811,-34.8120083718516,-34.8119995809265,-34.8119861939866,-34.8119637690086,-34.8119278569785,-34.8118873960116,-34.8118288994938,-34.8117208102114,-34.8116757273309,-34.8116080586746,-34.8115809050876,-34.8115402772307,-34.8115040720802,-34.8114725224049,-34.811445548567,-34.8114185678214,-34.8114007116904,-34.8114008984931,-34.8113877251659,-34.8113744386155,-34.8113611581422,-34.8113388197897,-34.8113119258781,-34.8112805364011,-34.8112491469556,-34.811235760437,-34.8112314177552,-34.8112180109523,-34.8111910705146,-34.8111686190671,-34.8111643233399,-34.8111735078676,-34.81116464336,-34.811151250114,-34.8111291383891,-34.811102398327,-34.8110800664047,-34.810994729257,-34.8109632927336,-34.8109183696398,-34.8108779289821,-34.8108284233311,-34.8107518972612,-34.8106889315394,-34.8106304749399,-34.8105139277931,-34.810455711047,-34.8103931058763,-34.8103170464452,-34.810272216745,-34.8102633652386,-34.8102500053471,-34.8102411674749,-34.8102458763148,-34.8102639789831,-34.8103002443575,-34.8103093822893,-34.8102962691652,-34.8102737773232,-34.8102333568199,-34.810165948229,-34.8100804309529,-34.8100218740363,-34.8099453082024,-34.8098597572934,-34.8096749752869,-34.8095621572296,-34.8094268004162,-34.8093049975761,-34.8092417519502,-34.8091694343081,-34.8090881526948,-34.8089978858418,-34.8089663295907,-34.8088986881306,-34.8088174599244,-34.8087813475615,-34.8087317085955,-34.8086820634827,-34.8086459312221,-34.8085962387512,-34.8085556045174,-34.8085284908803,-34.8084832742449,-34.8084741425536,-34.8084739824187,-34.8084692802094,-34.8084510105549,-34.8084282854472,-34.8083965226684,-34.8083737705935,-34.8083419409912,-34.8083056759172,-34.8082601453287,-34.8082150688335,-34.8081699259429,-34.8081290377526,-34.8081064598397,-34.8080747367135,-34.8080522050256,-34.8080342226189,-34.8080207756731,-34.8080027926511,-34.8079848300182,-34.8079849505982,-34.8079805815621,-34.8079716632478,-34.8079582363764,-34.8079402874247,-34.8079268736281,-34.8079044687808,-34.807904582263,-34.8079091913831,-34.8079138667565,-34.8079139934687,-34.8079096512697,-34.8079098980396,-34.8079099983407,-34.8079192496877,-34.807919442956,-34.8079196364467,-34.8079243060154,-34.8079154478813,-34.8078975455068,-34.8078440979526,-34.807885786141,-34.8078949975328,-34.8079179027124,-34.8079361651114,-34.8079454768659,-34.8079547613838,-34.8079686221021,-34.8079735710645,-34.8079694626367,-34.8078710917239,-34.8078622402153,-34.8077635695068,-34.8077321133637,-34.807628659843,-34.8076105573315,-34.8075969767108,-34.8075562557821,-34.8075335839427,-34.8075154346026,-34.8074881672613,-34.8074654893664,-34.8074384084889,-34.8074114076893,-34.8073980608064,-34.8073802517807,-34.8073668180716,-34.8073534178334,-34.807344506944,-34.8073264972424,-34.8073039927439,-34.8072628780447,-34.8072221635201,-34.807141121897,-34.8070119020267,-34.8070319387662,-34.8070277765716,-34.8068567749524,-34.8065616297748,-34.8065710947579,-34.8063739062725,-34.8064421282429,-34.8063165899165,-34.8063262813975,-34.8063128281872,-34.8061465088729,-34.8060918408377,-34.8059119280716,-34.8058462873887,-34.8058110091662,-34.8058488486335,-34.8058684786748,-34.8057530192847,-34.8055928632303,-34.805455178781,-34.8056137552487,-34.8054955200669,-34.8054779442719,-34.8054650438199,-34.805394007202,-34.8052782080053,-34.8051705857337,-34.8050269917259,-34.8048527882673,-34.8047988472166,-34.8047856804326,-34.8047723270565,-34.8047680046388,-34.8047636822044,-34.8047504021255,-34.8047416645218,-34.8047238018781,-34.8047284577869,-34.8047376690805,-34.8047423515787,-34.8047516159727,-34.8047562984461,-34.8047519763727,-34.8047566452529,-34.8047523434864,-34.8047569921278,-34.8047617477772,-34.8047664371853,-34.8047712064388,-34.8047759755712,-34.8047806844895,-34.8047899291774,-34.80479467826,-34.8047993741606,-34.8047949917527,-34.8047861875212,-34.8047774292368,-34.8047641227971,-34.804764262734,-34.8047644292169,-34.804760127021,-34.8047468469796,-34.8047334803979,-34.8047200663138,-34.8047021172027,-34.8046887369042,-34.804661910172,-34.8046305670496,-34.8046171803001,-34.8046038199254,-34.8045770126655,-34.8045681615301,-34.8045593235099,-34.8045459636661,-34.8045326362846,-34.8045192894383,-34.8045015136384,-34.8044836846014,-34.8044300437315,-34.8043008567523,-34.8042559602727,-34.8042110837909,-34.8041796943071,-34.8041528207278,-34.8040944039693,-34.8040449316565,-34.8039640433168,-34.8039100887896,-34.8038561011958,-34.8037975708265,-34.803757036328,-34.803734451848,-34.8036892349584,-34.8036486604583,-34.8035992350544,-34.8035678921971,-34.8035409118552,-34.8034959216429,-34.803459829996,-34.8034147802253,-34.8033788750258,-34.8033520342563,-34.8033116868804,-34.803289315233,-34.8032489079299,-34.8032038781363,-34.8031544121663,-34.8031229626442,-34.803082562243,-34.8030557213835,-34.8030334968208,-34.8030067899263,-34.8029800560145,-34.8029576843838,-34.8029444175158,-34.802908612133,-34.8028728471675,-34.8028596338399,-34.8028283445635,-34.8028060996623,-34.8027838213592,-34.8027706014123,-34.8027572745265,-34.8027348028199,-34.8026852702508,-34.8026581900112,-34.8026310293073,-34.8026173752183,-34.8026216976754,-34.8026304489669,-34.8026437758042,-34.802652580454,-34.802611985938,-34.8025804563716,-34.8025580851484,-34.8025312441267,-34.8024953192781,-34.8024684187965,-34.802441478326,-34.8024235558062,-34.8024238689532,-34.8024285649947,-34.8024153648342,-34.8023929665632,-34.8023796660298,-34.8023753904216,-34.8023802395829,-34.8023534328563,-34.8023446480365,-34.8023268321657,-34.8023044942527,-34.8022866450145,-34.8022599508615,-34.8022330507568,-34.8022150612595,-34.8021790693055,-34.8021520289767,-34.8021204460589,-34.8021023697822,-34.8020707404011,-34.802039197276,-34.8020211814361,-34.8019940941942,-34.801962630862,-34.8019492111156,-34.8019221702729,-34.8018952232497,-34.801868262761,-34.8018412687596,-34.8018278817504,-34.8017919361717,-34.8017740674341,-34.8017877206667,-34.8017968254213,-34.8018151081413,-34.8018199509836,-34.8018020547653,-34.8017932037783,-34.8017889683929,-34.8017846460393,-34.8017714259474,-34.8017626078069,-34.8017447519126,-34.8017314320977,-34.8016955532688,-34.8016776843554,-34.801659941944,-34.8016466349792,-34.8016467416265,-34.8016559598227,-34.8016695730732,-34.8016877692762,-34.8017149635771,-34.801746800022,-34.801760666739,-34.8017339132708,-34.8016979546068,-34.801662049656,-34.8016352224073,-34.8015902791607,-34.8015544942138,-34.8015097644136,-34.8014785149823,-34.8014472186865,-34.801420604808,-34.8014164428626,-34.8014122136852,-34.8014035628367,-34.8013814648656,-34.8013592132271,-34.8013234612303,-34.8012921518234,-34.8012473958756,-34.8012206616949,-34.801193894717,-34.8011627855207,-34.8011316026297,-34.8011003864661,-34.8010645810803,-34.8010242138496,-34.8009658703404,-34.8009121626051,-34.8008493038881,-34.8008089558978,-34.800777660142,-34.8007327502721,-34.8006742665825,-34.8006696173913,-34.8006784824513,-34.8006962715392,-34.8007004668274,-34.8007316365453,-34.8007359852326,-34.8007402074175,-34.8007444498215,-34.8007353379566,-34.8007217442563,-34.8006858191489,-34.8006634813866,-34.8006412228843,-34.8006191318477,-34.8005787907885,-34.8005564056524,-34.8005295654959,-34.8005027381486,-34.8004713355346,-34.8004398793397,-34.8004038940998,-34.8003768730646,-34.8003498659873,-34.8003138072566,-34.8002912289498,-34.8002775087534,-34.8002682440485,-34.8002680439723,-34.800267763911,-34.8002584186861,-34.800240222966,-34.8001593477726,-34.8001323337965,-34.8000821881171,-34.8000333095707,-34.8000160605627,-34.7999947092876,-34.7999736584502,-34.7999785815135,-34.7999490591015,-34.7998858066292,-34.7998024504672,-34.7995576775715,-34.799459560077,-34.7994023506341,-34.7993497567884,-34.7992881383797,-34.7991642278669,-34.7990449729388,-34.7989945138056,-34.7989732029059,-34.7989681670779,-34.7989724692209,-34.7989257248839,-34.7989239972412,-34.7989057349138,-34.7989020525246,-34.7988841568031,-34.7988412748838,-34.7987944106738,-34.79873061777,-34.7986787177826,-34.7986319267177,-34.798532461848,-34.7984866585595,-34.798477400206,-34.7984277681778,-34.7984209381534,-34.798437159534,-34.7984401344663,-34.7984396473219,-34.7984149679406,-34.7983945910302,-34.7983679905569,-34.7983685974174,-34.7983352406778,-34.7982922718609,-34.7982734286108,-34.7982713408782,-34.7982320672238,-34.7982075144931,-34.7981643589003,-34.7981474103706,-34.7980858986678,-34.7980479254594,-34.7980187771172,-34.7979961320186,-34.7980041696937,-34.7979870273197,-34.7980154624292,-34.7979874278062,-34.7979709058018,-34.7979304514356,-34.7978987551141,-34.79784016526,-34.7978014582945,-34.7977837894148,-34.7977115055829,-34.7977041547044,-34.7977361115109,-34.797731608868,-34.7977999843171,-34.7977728167653,-34.7978129776627,-34.797802912716,-34.7977870445609,-34.7977098910337,-34.7977430348146,-34.7977225313272,-34.7977345970483,-34.7976774013516,-34.7976918887774,-34.7977469634458,-34.7979694918712,-34.7980155956043,-34.7979716530609,-34.797958532974,-34.7980718112298,-34.7980701501574,-34.798015955679,-34.7980218721337,-34.7979744879251,-34.7978844011729,-34.7978020790059,-34.7974898646284,-34.7974704476431,-34.7974646246009,-34.7975236483942,-34.7975573058636,-34.7976280821984,-34.7976690037239,-34.7976573710631,-34.797655389688,-34.7976746530028,-34.7977060560667,-34.7977421076396,-34.7977987028454,-34.7979315524919,-34.7979176382551,-34.7979467602393,-34.7979639357163,-34.798002648834,-34.7980781943769,-34.7981091638481,-34.7981124856586,-34.7981198158634,-34.7981572754798,-34.7982026053144,-34.7982413989044,-34.79830950722,-34.798361027125,-34.798354310462,-34.7983379271755,-34.7984635297468,-34.7985001233186,-34.7984921579633,-34.7987068689334,-34.7987325398597,-34.7988261472039,-34.7988126800389,-34.7987882675511,-34.7987884275326,-34.7988483918263,-34.7988834149456,-34.7989373575156,-34.7989114707391,-34.7988957693176,-34.7989055146797,-34.7989213362756,-34.798910716949,-34.7989554735307,-34.7989961414916,-34.7990177923019,-34.7989869896565,-34.7989299535428,-34.7988728042146,-34.7988012942203,-34.7986775703403,-34.7986205672732,-34.7985969953555,-34.7985762913616,-34.798548463469,-34.7985496176077,-34.7985872837735,-34.7986746890291,-34.7987140360128,-34.7987596325396,-34.7987806569384,-34.7987228138437,-34.7987301506322,-34.7986819594881,-34.7986641498507,-34.7986524705462,-34.7986770568423,-34.7987438575524,-34.7988044290446,-34.7988951560298,-34.7989067086028,-34.7989073487132,-34.7988891193074,-34.7989000314191,-34.7988741316775,-34.7988924276018,-34.7989155932198,-34.7989144721846,-34.7989522855027,-34.7989963879126,-34.7990139905872,-34.7990580130589,-34.7990583201266,-34.799010268474,-34.7990190662566,-34.7990170454463,-34.7990487685603,-34.799060180899,-34.7990319727895,-34.7989966217866,-34.7990071602358,-34.7990089542694,-34.7989879902929,-34.7989736094548,-34.7989692605708,-34.7989994031784,-34.7990035782426,-34.7990669776877,-34.7990164718471,-34.7989809801632,-34.7989526254618,-34.7989337822432,-34.7989151196372,-34.7989409124822,-34.7989609164189,-34.7989563273762,-34.7989534993908,-34.7989784120702,-34.7989791459691,-34.7989366372466,-34.7989099966085,-34.7987854460749,-34.7987664826874,-34.7987408762819,-34.7987557041097,-34.7987273223961,-34.7986987746,-34.7986822061394,-34.7986852606458,-34.7986777571291,-34.7986536780386,-34.7986207542582,-34.7986161655349,-34.7985612903562,-34.7985242179055,-34.7984753529081,-34.7983918096653,-34.7983023901149,-34.7982183535549,-34.7981141861727,-34.7979516694559,-34.7977150074444,-34.7973261933062,-34.7962535470763,-34.7960471337706,-34.7956276972252,-34.7956036047144,-34.7956100952693,-34.7956645629564,-34.7957636272979,-34.7958191696203,-34.7961616862443,-34.7960095678975,-34.795956266584,-34.7958965693485,-34.7958208234342,-34.7957184972803,-34.7956697524267,-34.7956041186649,-34.795559282191,-34.7954423752852,-34.7953529559265,-34.7953260218127,-34.7952945787675,-34.7952766164359,-34.795236181913,-34.7952092284933,-34.7951912588741,-34.7951688006556,-34.7951418401753,-34.7951283730138,-34.7951104039872,-34.7950924416145,-34.7950789812108,-34.7950610050447,-34.7950430360118,-34.7950250599553,-34.7950070775763,-34.7949891079622,-34.7949711456901,-34.7949576918563,-34.7949442583908,-34.7949353336608,-34.7949354202028,-34.794940036054,-34.794949167705,-34.7949492609051,-34.794953869676,-34.7949629878747,-34.7949765951694,-34.7949902022046,-34.7950037958016,-34.7950128801028,-34.7950219783851,-34.7950265938012,-34.7950267207953,-34.795017809675,-34.7950043756848,-34.7949863933563,-34.7949684172109,-34.7949504211989,-34.7949279162775,-34.7949099203133,-34.7948919248033,-34.794864950693,-34.7948469748853,-34.7948289986843,-34.7948110296594,-34.7947930671347,-34.79478416221,-34.7947752246614,-34.794766326232,-34.7947574287364,-34.794748604304,-34.7947397126787,-34.794739819657,-34.7947354302761,-34.7947400863422,-34.7947402396957,-34.7947403263865,-34.7947449285859,-34.7947450285983,-34.7947451687101,-34.7947497715634,-34.7947543738389,-34.7947590227725,-34.7947636984428,-34.7947638252358,-34.7947639184992,-34.7947640254193,-34.7947641523191,-34.7947597832755,-34.7947599696396,-34.7947600901844,-34.7947557476818,-34.7947558878022,-34.7947559810466,-34.7947606035535,-34.7947607236789,-34.7947653193113,-34.7947654190943,-34.7947700683523,-34.7947701950388,-34.7947747973284,-34.7947748909882,-34.7947794999249,-34.7947795866786,-34.7947886981032,-34.7947978161593,-34.7948113963946,-34.7948069743698,-34.7947980364371,-34.7947936138011,-34.7947892117318,-34.7947802936242,-34.7947759712984,-34.7947716159104,-34.7947672604419,-34.7947583958548,-34.7947584955706,-34.7947540732535,-34.7947496981153,-34.7947453023455,-34.7947454022108,-34.794754493882,-34.7947725766024,-34.7947906791432,-34.794813297305,-34.794808908306,-34.7947955213204,-34.794782161077,-34.7947528385583,-34.7947044791129,-34.7946990529972,-34.794514362106,-34.7941704648169,-34.7939238841595,-34.7937934176375,-34.7935943165081,-34.7932999869404,-34.7932057430969,-34.7931742936559,-34.7933844829554,-34.7933655527746,-34.793417035543,-34.7932278384374,-34.7927111561531,-34.7923365121871,-34.7922039319375,-34.7920928476494,-34.7919895808989,-34.7918111993595,-34.7917571027931,-34.7916563092986,-34.791444753253,-34.7912600316571,-34.7911929366652,-34.7909996698771,-34.7907745282342,-34.7905982968421,-34.7904496802202,-34.790264651533,-34.7900976187233,-34.7895411889768,-34.7893115452901,-34.7891095491505,-34.78896061234,-34.7887541874996,-34.7884123035577,-34.7882209297302,-34.7878548569308,-34.787658700911,-34.7875105044823,-34.7874661795053,-34.7872044132899,-34.7871012934417,-34.7870525496684,-34.7868210257784,-34.7866530911539,-34.7865292117378,-34.7863794539541,-34.7862145161079,-34.7860952252571,-34.7860353244435,-34.7859366717362,-34.7856884326858,-34.7856325332231,-34.785606554068,-34.7855860919921,-34.7854759308763,-34.785260271858,-34.7850554941415,-34.7850821604027,-34.7853197861268,-34.7855799469484,-34.7857157313715,-34.7858023309508,-34.7859264427682,-34.7859655065386,-34.7859688351723,-34.7859899956658,-34.7859965009179,-34.7861163016468,-34.7861875390995,-34.786220492759,-34.7862994814964,-34.7864260936655,-34.7866494716258,-34.7868112390587,-34.7870762765569,-34.7871998611169,-34.7873545411049,-34.787356336962,-34.7873572214324,-34.7873650884366,-34.7872089638976,-34.7869843119294,-34.7868994179388,-34.7866535673141,-34.7861546718265,-34.7863856876174,-34.7866857322839,-34.7869000696355,-34.7871712159418,-34.7871980100086,-34.7872220158836,-34.7872300064611,-34.7872369235393,-34.7872704541602,-34.7872747827912,-34.7872757366336,-34.7872760036814,-34.787205294031,-34.7870561437368,-34.7871069431565,-34.7869857471964,-34.7870101131461,-34.7870253678943,-34.7870386212491,-34.78728296695,-34.7873610474303,-34.7872129307642,-34.7870148756161,-34.7866454314344,-34.7864252047298,-34.7861013178484,-34.785879630004,-34.7857794650155,-34.7857771639328,-34.7856007195462,-34.7854863469554,-34.7853914183881,-34.7853470022761,-34.7853235498587,-34.7852158346661,-34.7850901165019,-34.7849248311598,-34.7847927097156,-34.7846814254305,-34.7845382384067,-34.7844096719976,-34.7843259623179,-34.7842336547128,-34.7840534347897,-34.7839467934223,-34.7836816434478,-34.7837028875823,-34.7837468502463,-34.7837545276257,-34.7837597565452,-34.7837717497487,-34.7838185937726,-34.7837571289221,-34.7837665538556,-34.7837690883771,-34.783772196681,-34.7837727833219,-34.783777785872,-34.7837726431703,-34.7837698020496,-34.7837702688234,-34.7837841360003,-34.7837766922583,-34.7837576358453,-34.7837486975168,-34.783735330636,-34.7837264727011,-34.7837220642142,-34.7837195095932,-34.7837177552913,-34.7837133594615,-34.7837001458596,-34.7836825639035,-34.7836826772283,-34.7836739194181,-34.7836697705863,-34.7836654678861,-34.7836610526463,-34.7836569768317,-34.7836526483055,-34.783648339536,-34.7836451378952,-34.7836399817548,-34.7836359529844,-34.7836362730851,-34.7836366264211,-34.7836369802657,-34.7836553496145,-34.7836690902327,-34.7836964977091,-34.7837194029043,-34.7837240252002,-34.783733136612,-34.7837559746219,-34.7837833156146,-34.7838106365113,-34.7838197611191,-34.783828858874,-34.7838379571019,-34.7838516777734,-34.78386080214,-34.7838701605093,-34.7838747430096,-34.7838838343291,-34.7838929720698,-34.783902096972,-34.7839157241797,-34.7839248417669,-34.7839339798852,-34.7839522496626,-34.7839796035545,-34.7839842190975,-34.783993357388,-34.7840024888228,-34.7840162226784,-34.7840299561045,-34.7840436966039,-34.7840574239017,-34.78406202606,-34.7840757463657,-34.7840851976784,-34.7840852779966,-34.7840853578072,-34.7840809422199,-34.7840810292161,-34.7840995387427,-34.7840996388081,-34.784104234577,-34.7841043547248,-34.7841044679406,-34.7840824097184,-34.7840690029521,-34.7840600985589,-34.7840511669017,-34.7840377733758,-34.7839975327637,-34.7839840860724,-34.78397514761,-34.7839518692573,-34.7839343535132,-34.78391476351,-34.7838982813897,-34.7838652980188,-34.7837993573792,-34.7837456961699,-34.7836775876442,-34.7836012347549,-34.7835052586783,-34.7834794788148,-34.783446468634,-34.7833938550398,-34.7833618918611,-34.7832947900796,-34.7832555698232,-34.7832339187955,-34.7832163832391,-34.7831782303129,-34.7831503890033,-34.7831369821922,-34.7830803199637,-34.7830143454357,-34.7829731647464,-34.7829443431874,-34.7829227253383,-34.7829144006304,-34.7829001870289,-34.7828817374974,-34.7828704916454,-34.7828623676031,-34.7828562777388,-34.7828574316599,-34.7828606598537,-34.7828794626516,-34.7829117191907,-34.7829408010911,-34.7830165804038,-34.7830435409187,-34.7830715153318,-34.7830995095372,-34.7831357618654,-34.7831689318543,-34.7832082655102,-34.7832496802969,-34.7832797023027,-34.7833200701122,-34.7833583567152,-34.7834080153627,-34.7834597354703,-34.7834979953063,-34.7835455529113,-34.7835879480492,-34.7836334180317,-34.7836685566135,-34.7836985321324,-34.7837243654891,-34.7838194411833,-34.7838545989811,-34.7839000892784,-34.7839218001242,-34.7839445452746,-34.7839683241216,-34.7840034690761,-34.7840375734508,-34.7840902941406,-34.784126479166,-34.7841760848992,-34.7842246767763,-34.7843146097176,-34.7844149413667,-34.7844470179007,-34.7844956027505,-34.7845679867469,-34.7846300190227,-34.7846972202576,-34.7847303106496,-34.7847540894705,-34.784804782242,-34.7848803478901,-34.7850844197417,-34.7851807763421,-34.7852056688916,-34.7852367783927,-34.7852927938385,-34.7853509038229,-34.7853976017536,-34.7854193991064,-34.7854422578847,-34.7854640558281,-34.7854910695242,-34.7855284488068,-34.7855606123146,-34.7856021204373,-34.7856426012329,-34.7856706155794,-34.7856955218626,-34.7857142315319,-34.7857381105621,-34.785762016291,-34.7857890102168,-34.7858181450743,-34.7858451986902,-34.7858660364281,-34.7858879274614,-34.785912973984,-34.7859234460988,-34.785946397971,-34.7859652407112,-34.7859903403478,-34.7860050344968,-34.7860146529331,-34.7860189351989,-34.7860190283894,-34.7860191487264,-34.7860161473079,-34.7860173342903,-34.7860155267564,-34.7860137122624,-34.7860078296063,-34.7859992518162,-34.7859904270908,-34.7859869723657,-34.7859727246528,-34.7859567029893,-34.785938927142,-34.7859192773625,-34.7859085849136,-34.7858961384003,-34.7858782892101,-34.7858568648475,-34.7858300442618,-34.7858139962941,-34.7857925718766,-34.7857495695735,-34.7857248036066,-34.7857111829053,-34.7856927937293,-34.7856578692262,-34.7856028539693,-34.7855734187391,-34.7855550095264,-34.7854869741701,-34.7854383626822,-34.785398021521,-34.7853666456488,-34.7853342891069,-34.7853086024307,-34.7852792806239,-34.7852480111039,-34.7852314625601,-34.7852112321973,-34.7851725452165,-34.7851357997986,-34.7850935779799,-34.7850550650727,-34.7850330865821,-34.7850110757153,-34.7849965278864,-34.7849874565143,-34.7849784188314,-34.7849712484899,-34.7849623034226,-34.7849532723728,-34.7849405657508,-34.784942580204,-34.7849521450571,-34.7849559536181,-34.7849914250899,-34.7850418446904,-34.7850717400157,-34.7851089460855,-34.7851498002468,-34.785198091654,-34.7852408004316,-34.7852890457689,-34.7853353427736,-34.7853798522825,-34.7854313920596,-34.7854610742919,-34.7854870410961,-34.7855465181529,-34.7856020536658,-34.7856539670402,-34.7856762116553,-34.7857353954621,-34.7858260624781,-34.7859148481344,-34.7859796747305,-34.7860222238121,-34.7860703149515,-34.7860998168413,-34.7861571866096,-34.7862256417716,-34.7862663564522,-34.7863273744525,-34.7863643536032,-34.7864161536739,-34.7864531123867,-34.7864919525304,-34.7865270905874,-34.7865677784765,-34.7866195515248,-34.7866935366486,-34.786754561195,-34.7868562803177,-34.7869376557123,-34.7869949785197,-34.7870542091913,-34.7871430616435,-34.7872282257461,-34.7873188988428,-34.7873873675305,-34.787441035194,-34.7875002523842,-34.7875575953464,-34.7876020650013,-34.7876576336633,-34.787711414475,-34.7877633080906,-34.7878040894569,-34.7878374462659,-34.7878837834911,-34.7879394056642,-34.7879987494044,-34.7880858811556,-34.788121153023,-34.7881527158797,-34.7882027812341,-34.7882473178608,-34.7882956028673,-34.7883513379019,-34.7884014774106,-34.7884554382391,-34.7884815788448,-34.7885133080367,-34.7885487800037,-34.7885935761553,-34.7886159947314,-34.7886291548659,-34.7886460436774,-34.788676039168,-34.7887172132823,-34.7887340953525,-34.788730653925,-34.7887327148419,-34.7887218494631,-34.7887146722806,-34.7886981904789,-34.7886743579048,-34.7886542075203,-34.7886248527402,-34.7886010135104,-34.7885808499018,-34.7885661753438,-34.7885570444537,-34.7885423632278,-34.7885314311278,-34.7885186446456,-34.7885003882917,-34.788484133267,-34.788484419988,-34.7884865343898,-34.7884923974193,-34.7885000881296,-34.7885059113616,-34.7885155163892,-34.7885139150607,-34.7885197518717,-34.7885310639566,-34.7885442640639,-34.7885556298859,-34.7885836982178,-34.7885932159356,-34.7885924225418,-34.7885989327075,-34.7886108652218,-34.7886401735431,-34.7886781597178,-34.7887220092168,-34.7887628901158,-34.7888008367686,-34.7888503688269,-34.7888911299131,-34.7889668024523,-34.7890716094041,-34.7891646508307,-34.7892445187671,-34.7893055233589,-34.78936642851,-34.7894302280781,-34.789485283192,-34.7895605953639,-34.7896040043314,-34.7896763348908,-34.789722658436,-34.7898830281957,-34.789892406111,-34.7899023848186,-34.7899158381391,-34.7899292919043,-34.7899472280528,-34.7899682452576,-34.7899813988453,-34.7900715252614,-34.7901450631961,-34.7902654921681,-34.7902952938108,-34.7903127096099,-34.7903362553541,-34.7903502487658,-34.7903808645927,-34.7904305169747,-34.7904872399058,-34.7905915535857,-34.7905999844493,-34.7906075883368,-34.7906057738896,-34.7907264164666,-34.7908426160173,-34.7910006779981,-34.7911217469811,-34.7912381468948,-34.7913453020115,-34.7914292785569,-34.7914898367387,-34.7915551568601,-34.7916391802645,-34.791741899847,-34.7918586136609,-34.7919800763571,-34.792068935101,-34.7921532457579,-34.7921907517314,-34.7922866478222,-34.7923662550972,-34.7924270800142,-34.7925066812933,-34.7925722081068,-34.7926330463807,-34.7927264942629,-34.7928291677239,-34.7928804939112,-34.7929305799942,-34.7929376969626,-34.79291721956,-34.792899043381,-34.7928915864244,-34.7928985234457,-34.7929147184839,-34.7929661845114,-34.7930067587586,-34.7930475999071,-34.793023101004,-34.7930078947558,-34.7929803052233,-34.7929046532636,-34.7928496847079,-34.792843468374,-34.7928413738262,-34.7928335494597,-34.792640803506,-34.792555619897,-34.7924078699122,-34.7922999211853,-34.7921749165293,-34.7920896258083,-34.7920213775023,-34.7919248142413,-34.7918396369655,-34.7917544533444,-34.7916524537053,-34.791590075323,-34.7915279298741,-34.7915116080662,-34.7914987815595,-34.7914829397986,-34.7914658376912,-34.7914318535369,-34.7914094617131,-34.791377072026,-34.7913489241947,-34.7913056486361,-34.7912738721724,-34.7912480184353,-34.7912296091106,-34.7912283351829,-34.7912109464598,-34.7912094652636,-34.7912072312404,-34.7912076509894,-34.7912079444747,-34.7912081449185,-34.7912163488022,-34.7912295021912,-34.7912416819493,-34.7912545156352,-34.7912865121237,-34.7913119718527,-34.7913358437169,-34.7913601699459,-34.7913749172699,-34.7913937203252,-34.7914331273953,-34.7915032967764,-34.791522907026,-34.7915639752241,-34.7916139807822,-34.7916441965814,-34.7916854377389,-34.7917107573221,-34.7917379380829,-34.791823262169,-34.7918870082893,-34.7919258146532,-34.7919707181908,-34.7920063699974,-34.7920914671912,-34.7921333885204,-34.7922219412402,-34.7923072919083,-34.7923466255249,-34.7923817165622,-34.7923983051664,-34.7924201564244,-34.792438359366,-34.7924401402062,-34.7924490780417,-34.7924625117607,-34.7924714095684,-34.7924803344214,-34.7924892589038,-34.7924981701287,-34.792538377671,-34.7925741360961,-34.7925830741153,-34.7926010030907,-34.7926592331944,-34.7926905828048,-34.7927264078192,-34.7927757067525,-34.7928160206074,-34.7928474035326,-34.7928742774517,-34.7929280520563,-34.7929460211976,-34.7929684928167,-34.7929864683007,-34.7930044512367,-34.7930269493053,-34.7930449520481,-34.7930629478406,-34.7930809240565,-34.7930943909854,-34.7931078579984,-34.793121331224,-34.7931393205294,-34.7931573035602,-34.7931798015913,-34.7932067889048,-34.7932697278817,-34.793304866287,-34.7933281846251,-34.7933416518314,-34.7933596212488,-34.7933776166841,-34.7934001152811,-34.793427108956,-34.7934720989807,-34.7934900885355,-34.7935035554652,-34.7935215381035,-34.793584570107,-34.7936070683549,-34.7936745166958,-34.7936970282781,-34.7937240355464,-34.793746540747,-34.7937690320351,-34.793787028271,-34.7938095266449,-34.7938320378833,-34.793850060803,-34.7938680966428,-34.7938861258063,-34.7939041420301,-34.7939356649494,-34.7939671810763,-34.7940212156046,-34.7940572338636,-34.7941022574218,-34.7941202668595,-34.7941562787052,-34.7941967995382,-34.7942238068414,-34.7942553161329,-34.7942733253652,-34.7942913484119,-34.7943138929485,-34.7943364248882,-34.7943544539466,-34.7943769790304,-34.7943949950842,-34.7944130108017,-34.7944310402635,-34.7944490831701,-34.7944761500774,-34.7945032240797,-34.7945302980774,-34.7945573721525,-34.7945754280906,-34.7946025284332,-34.7946296291433,-34.7946476987288,-34.7946657677362,-34.7946928616579,-34.7947290008543,-34.7947561077312,-34.7947877244843,-34.7948103159199,-34.7948283653344,-34.7948464076565,-34.7948689660013,-34.7948870221359,-34.7949276632185,-34.7949457391978,-34.7949593061886,-34.7949728999801,-34.7950363188582,-34.7950498996727,-34.7950679955593,-34.7950815889878,-34.7951404661904,-34.7951540662202,-34.7951676668529,-34.7951767716597,-34.7951903784527,-34.7952085544336,-34.7952176724029,-34.7952630358487,-34.7952766294401,-34.7953084391655,-34.795317544289,-34.7953357866682,-34.7953494270625,-34.7953676234972,-34.7953858127129,-34.7953994532351,-34.7954176426823,-34.7954267537854,-34.7954404140954,-34.7954495190004,-34.7954586370555,-34.7954677479493,-34.7954723574228,-34.7954860044894,-34.7954951491417,-34.7955043002486,-34.7955089158769,-34.795513532098,-34.7955226631443,-34.7955365034892,-34.7955411325059,-34.7955502372832,-34.7955548332979,-34.7955684936578,-34.795595760666,-34.7956048522417,-34.7956184728743,-34.7956275839788,-34.7956411908314,-34.7956548049923,-34.7956639029847,-34.7956729876939,-34.7956911436613,-34.7957680896781,-34.7957861660422,-34.7958042283289,-34.7958222976142,-34.795840366824,-34.7958584562515,-34.7958720236419,-34.7958946284273,-34.7959127311505,-34.7959353360085,-34.7959489097562,-34.7959624765773,-34.7960050984815,-34.7960303917432,-34.7960394765033,-34.7960485811471,-34.7960577059088,-34.7960668439269,-34.7960759552339,-34.7960897291078,-34.7960898289262,-34.7960944648561,-34.7960858068938,-34.7960768756931,-34.7960679843309,-34.7960590466503,-34.7960546241964,-34.7960457128524,-34.7960323326042,-34.7960011434063,-34.7959967143367,-34.7959877694772,-34.7959743695686,-34.7959251777122,-34.7959162329773,-34.7959027926233,-34.7958893457729,-34.7958579562086,-34.7958399871204,-34.7958174620012,-34.7957949370192,-34.7957724051745,-34.7957543762376,-34.795736353378,-34.7957183374595,-34.7956868078075,-34.7956194196913,-34.7956059661599,-34.7955925391409,-34.7955521387026,-34.7955432071469,-34.7955208020984,-34.7954849902905,-34.7954670746932,-34.7954536410696,-34.7954357382461,-34.7953864461389,-34.7953730060506,-34.7953506943649,-34.7953417567537,-34.795328376575,-34.7953194583098,-34.795310527037,-34.7952971069884,-34.7952569527683,-34.7952480280394,-34.7952436262128,-34.7952392236639,-34.7952303655849,-34.7952259369024,-34.795217005582,-34.7952125968048,-34.7952081740972,-34.7952082675823,-34.7952083745496,-34.7952129635163,-34.7952175524091,-34.7952402443585,-34.7953079325854,-34.7953846117961,-34.7953939567344,-34.7954259064859,-34.7954260068202,-34.7954215777002,-34.7954216778726,-34.7954217777562,-34.795421864597,-34.7954219646865,-34.7954674813524,-34.7954765996581,-34.7954856974962,-34.7954948420106,-34.7955039467574,-34.7955179005937,-34.7955180343759,-34.7955227233452,-34.7955230232377,-34.7955231765612,-34.7955232767417,-34.7955233638214,-34.79551902108,-34.7955191413278,-34.7955192480318,-34.7955238637178,-34.7955333887459,-34.795533482124,-34.7955335685647,-34.795533715856,-34.7955338221306,-34.7955294003186,-34.7955295002589,-34.7955250776424,-34.7955206689622,-34.7955162599958,-34.7955163466243,-34.7954859776485,-34.7954941551981,-34.7955031132028,-34.7955107639052,-34.7955203486924,-34.7955080891815,-34.7955126916212,-34.795521802545,-34.7955309409322,-34.7955582751596,-34.7955673795001,-34.7955765378719,-34.7955856623465,-34.7955902980787,-34.7955994429049,-34.7956040653244,-34.7956086942947,-34.7956180924336,-34.7956181992752,-34.7956228279562,-34.795627750739,-34.7956233283841,-34.7956234085217,-34.7956235018113,-34.7956236487548,-34.7956285710505,-34.7956331934855,-34.7956333203666,-34.7956334071388,-34.7956380225227,-34.7956249827043,-34.7956160448975,-34.795593753448,-34.7955534192595,-34.795509376333,-34.7954636529586,-34.7954547149593,-34.7954458100882,-34.7954413949198,-34.7954369923344,-34.7954325836775,-34.7954326833824,-34.7954417813465,-34.7954511597329,-34.7954512931383,-34.7954733844858,-34.7954517401272,-34.7954382662893,-34.7954202973592,-34.7954068437563,-34.7954024281304,-34.7954246859984,-34.7954611580093,-34.7954791738599,-34.7954972833826,-34.7955108506375,-34.7955380377022,-34.795538137883,-34.7955427400123,-34.7955473290425,-34.7955564073487,-34.7955655051873,-34.795565612269,-34.7955611833445,-34.795547735976,-34.7955207487172,-34.7955027397937,-34.7954847170147,-34.7954621584903,-34.7954441160292,-34.7953900679044,-34.7953677098799,-34.795358785137,-34.7953498410209,-34.7953063583591,-34.7952600544992,-34.7952375294086,-34.7952195068915,-34.7951970017421,-34.7951835347361,-34.7951700678894,-34.795143107508,-34.7951432075917,-34.7951432941603,-34.7951389253756,-34.7951435145504,-34.7951435943705,-34.7951482167861,-34.7951573082224,-34.7951618970714,-34.7951755311005,-34.7951801330618,-34.7951847221698,-34.7951938268547,-34.7951939201842,-34.7952075209429,-34.7952166120008,-34.7952212142851,-34.7952258435972,-34.7952304458274,-34.7952350349389,-34.7952441927366,-34.7952532974947,-34.7953257151636,-34.7953754604422,-34.7954162413992,-34.7954480845632,-34.7954571896883,-34.795466300691,-34.7954799613336,-34.795489086121,-34.7955072821437,-34.7955163596922,-34.7955254448551,-34.7955435739709,-34.7955662190024,-34.7955798194509,-34.7955979019623,-34.7956319061652,-34.7956514831187,-34.7956687921465,-34.7956872414118,-34.7957092259933,-34.7957230934687,-34.7957312508377,-34.7957370737072,-34.79574056887,-34.7957544093212,-34.795769363956,-34.7957794353736,-34.7957885201248,-34.795797611685,-34.7958067227917,-34.79580680329,-34.7958031012306,-34.795803200959,-34.7958067165157,-34.7958136664524,-34.7958414010807,-34.7958494719935,-34.7958496185842,-34.7958528399115,-34.7958529468598,-34.7958530470098,-34.7958622784619,-34.7958852834307,-34.7959530584097,-34.7959711347177,-34.7959937194048,-34.7960117886532,-34.7960298716457,-34.7960479542093,-34.796061534243,-34.7960706257341,-34.7960752346124,-34.7960843131439,-34.7961069180011,-34.7961250008218,-34.7961385744391,-34.7961611724174,-34.7961837774833,-34.7961973446223,-34.7962109179412,-34.7962245116056,-34.7962380924433,-34.7962607105641,-34.7962788129637,-34.7962923869071,-34.7963059602717,-34.7963195341052,-34.796333108099,-34.7963602553899,-34.7963829004254,-34.796396487476,-34.7964100808156,-34.7964236677356,-34.7964372482034,-34.7964553440259,-34.7964924233233,-34.7972313113609,-34.7977067837536,-34.7997437986989,-34.804287530157,-34.8043563789974,-34.8044058734667,-34.8051186521212,-34.8059511081067,-34.8070584391857,-34.8071337580295,-34.8092042525031,-34.8096789706608,-34.8113221314142,-34.8137347289858,-34.8152163864478,-34.8165563953801,-34.8179802272655,-34.8185963814752,-34.8186603811379,-34.8187166592937,-34.8219875875761,-34.8258279649737,-34.8258342089972,-34.8258391315359,-34.8258358765238,-34.8258311407481,-34.8258100698814,-34.8257954289973,-34.8257656669816,-34.8257290614365,-34.8256442243506,-34.8255964797274,-34.8255420783379,-34.8254719088164,-34.8254483233194,-34.8254455152045,-34.8254648651838,-34.8254809201304,-34.8254328753525,-34.8254106772377,-34.8253473512455,-34.8252950976303,-34.8252380482085,-34.8252301908229,-34.8252144760517,-34.8252002353741,-34.8251874621199,-34.8251688058317,-34.8251467144386,-34.8251300191618,-34.8251024782916,-34.8250842822408,-34.8250594894545,-34.8250360840504,-34.8250124652029,-34.8249711238821,-34.8249016880723,-34.824832285613,-34.8248037442268,-34.824786988919,-34.8247643305668,-34.8247475885992,-34.8247259040826,-34.8246963355,-34.8246805540278,-34.8246653195043,-34.8246431880905,-34.8246279735774,-34.824616187499,-34.8246062090195,-34.82460498839,-34.8245639272137,-34.824559191438,-34.8245571170348,-34.8245540687961,-34.8245521944961,-34.8246032274818,-34.8246056220501,-34.8247075546193,-34.8247844342681,-34.8248702652,-34.8249561294824,-34.8250329891209,-34.8251054064684,-34.8251508432346,-34.8251647504069,-34.8252057782327,-34.8252376946928,-34.825301147417,-34.8253556155076,-34.8253785940249,-34.825383543244,-34.8253117462164,-34.8252308778439,-34.8251861747894,-34.8251821060243,-34.8251419052918,-34.8250836685909,-34.8250299675626,-34.8249672218697,-34.824877395544,-34.824805511805,-34.8247200810796,-34.8246300813311,-34.8245174032201,-34.8244014767672,-34.8243053005,-34.8242213105175,-34.8241025492693,-34.8239644113614,-34.823897883718,-34.8237947705399,-34.8237457786069,-34.8274313293397,-34.8240115156543,-34.8256783886366,-34.8266326765159,-34.8264968679409,-34.8264699512095,-34.8266759459911,-34.8269070622566,-34.8271043773888,-34.8271720526737,-34.8272379410099,-34.8275377486685,-34.8276592535527,-34.8276882425859,-34.8278529731979,-34.82803450494,-34.8286891025952,-34.828747892328,-34.8288694782247,-34.8291082029488,-34.8293445537537,-34.8297208219573,-34.8303184887335,-34.8309678865039,-34.8320289282263,-34.8321004373181,-34.8321005208318,-34.832470564869,-34.8326338004049,-34.8324849640465,-34.8323170327736,-34.8331615679036,-34.8332305268008,-34.8334697001486,-34.8339293613941,-34.8341056223199,-34.83414343784,-34.8345816612927,-34.8350641907627,-34.8357079782093,-34.8359820318563,-34.8359680407015,-34.8358779788262,-34.8362031331833,-34.8365233199871,-34.8365925644207,-34.8368488161786,-34.837457865668,-34.8377891072769,-34.837957761798,-34.8380041743137,-34.8381045431299,-34.8381401691062,-34.8382236024648,-34.8383400465422,-34.8382297673654,-34.8381331211843,-34.8379894527353,-34.8378629476903,-34.8378450882057,-34.8374521806824,-34.8374526242445,-34.8370669394058,-34.8369652095389,-34.8369111913097,-34.8368352591869,-34.8365433119025,-34.8365418678775,-34.836533456873,-34.8365229414499,-34.8364329039567,-34.8363025511224,-34.8362252345816,-34.8362924625861,-34.8373343956721,-34.8384078446753,-34.8392852555834,-34.8401412598564,-34.8414613082354,-34.8428055448826,-34.8446738484145,-34.8463163454923,-34.8469457967831,-34.8474790351211,-34.8480834868523,-34.8497138109855,-34.850641679511,-34.8510772594691,-34.851135277119,-34.85114398943,-34.8511744976323,-34.8512033187086,-34.8512059372733,-34.8512071137938,-34.851256188707,-34.8513405118312,-34.8516242461239,-34.8517468580521,-34.8518293575065,-34.8518897431932,-34.8519290332438,-34.8519742533473,-34.852177611893,-34.8525755162867,-34.8568491758757,-34.8579536154635,-34.8548391092329,-34.8532090635767,-34.8524871145824,-34.852269172184,-34.851609111578,-34.8507237748787,-34.8505366525149,-34.8495400847238,-34.8485319581404,-34.8474768086504,-34.8442895769026,-34.8433946987243,-34.8430777580857,-34.8412187263663,-34.8411323822666,-34.8381066785113,-34.8377205255193,-34.8355717210029,-34.8352491575989,-34.8319233727812,-34.8298377704057,-34.8330053504779,-34.8343262921752,-34.83432629204,-34.8433524569391,-34.8434206387689,-34.8454654902474,-34.8457199576485,-34.8474746359723]}]],[[{&#34;lng&#34;:[-56.2201331811061,-56.2202477720963,-56.2202579717947,-56.2202737552513,-56.2205446702436,-56.2208252960344,-56.2208972369134,-56.2209149160113,-56.221005555492,-56.2210313187282,-56.2208183330363,-56.2209795787858,-56.220942580933,-56.221065522215,-56.2213494552288,-56.221414947157,-56.2216130918989,-56.2217101795189,-56.221795119381,-56.2218447549793,-56.2218561066656,-56.2219154083552,-56.2219302990966,-56.2219535129808,-56.2220317247378,-56.2221492086606,-56.222206668294,-56.2222629639938,-56.222434095584,-56.2224965678026,-56.2237730327749,-56.2240040792211,-56.2239893069755,-56.2239488448802,-56.2238621520693,-56.2243273863028,-56.2243566484604,-56.2250231655735,-56.2255668989138,-56.2256243011385,-56.2256920118803,-56.2257978391691,-56.2262737472689,-56.226339941169,-56.2268030324153,-56.2271559606691,-56.2275866079232,-56.2276612578638,-56.2276735431462,-56.2277255016926,-56.2275337519724,-56.22708569017,-56.226738472527,-56.2266868223829,-56.2263379738797,-56.2260969497344,-56.2259519909786,-56.2258852786796,-56.2258966624989,-56.2258247461202,-56.2256001439137,-56.2254964216672,-56.2252449188495,-56.2250316764355,-56.2247690478747,-56.2246909942381,-56.2234972756246,-56.2233038049803,-56.2231404682947,-56.2228839118524,-56.2227498116761,-56.2224712849065,-56.2223310365515,-56.22220346648,-56.2219514221815,-56.2218158288658,-56.2215047278205,-56.2213397831935,-56.2212239598331,-56.2211466186681,-56.2210707868033,-56.2210630905875,-56.2210966862755,-56.2211135695397,-56.221134772106,-56.2212047177304,-56.2212450852635,-56.2213342710391,-56.2213860840224,-56.2212947208236,-56.2211486187064,-56.2210543976163,-56.2211666391925,-56.2211155251603,-56.2210356941987,-56.2209486305205,-56.2206075235025,-56.2204325423402,-56.2200453048289,-56.2199726905614,-56.2198971652914,-56.219783682837,-56.2196383698736,-56.2189648120463,-56.2185648823952,-56.2184238584359,-56.2182402835935,-56.2180843998092,-56.2180679548325,-56.2183538515809,-56.2183804038958,-56.2183985000159,-56.2184169249208,-56.2184687794781,-56.2185119805339,-56.2185809441986,-56.2188857598977,-56.2190508902893,-56.2190849381108,-56.2190515797523,-56.2193595963281,-56.2194717780739,-56.219389778582,-56.2192431961628,-56.2189134334064,-56.2187481159016,-56.2186667652539,-56.2185765278746,-56.2183751883958,-56.217841694166,-56.2176037259359,-56.2175237895075,-56.2174281730082,-56.2167703736867,-56.2166801673107,-56.2166530602246,-56.216643647877,-56.2166683157532,-56.2164878934343,-56.2163010351608,-56.2159661696963,-56.2159326090166,-56.2157290977187,-56.2156111950384,-56.2155376658906,-56.2154506092744,-56.2151412807589,-56.2148746237643,-56.2147793872274,-56.2147730402767,-56.214764710114,-56.2147282482032,-56.2144634233323,-56.2144083439072,-56.2144196427534,-56.2145245820148,-56.214625134381,-56.2146744017312,-56.2146050700693,-56.2145291432962,-56.2144892861533,-56.2143827470625,-56.2141704566737,-56.2140627176802,-56.2139068838419,-56.2138060923691,-56.213702740047,-56.213460063652,-56.2133787076485,-56.2132810544473,-56.2132601345703,-56.2131642019813,-56.21305171704,-56.2129384546413,-56.2128995522362,-56.2128306381432,-56.2127754454501,-56.2127245238244,-56.2126599099349,-56.2125576200457,-56.2124860436236,-56.212388284482,-56.2123234186602,-56.2122449833207,-56.2122166855746,-56.2121564874578,-56.2121414809116,-56.2121217924881,-56.212086542056,-56.2120377654976,-56.2120062693817,-56.2120134200602,-56.2120745732005,-56.2121128260545,-56.2122136873786,-56.2122908752229,-56.2123478696238,-56.2123839376511,-56.2123652707269,-56.2123187247981,-56.2122254934991,-56.212198872451,-56.2122001005201,-56.2121860752805,-56.2121509026925,-56.2121305445169,-56.2121228070968,-56.2121364311855,-56.2121268296809,-56.2121256577792,-56.212135509391,-56.2121632448938,-56.2121585472827,-56.2121387656842,-56.2120468282012,-56.2120067072105,-56.2119279292276,-56.2116712804873,-56.2114639442617,-56.2113235899845,-56.2112030504979,-56.211157550295,-56.2110973461427,-56.2109655076195,-56.210879455901,-56.2107420720756,-56.2106502069111,-56.2105606167436,-56.2104553640828,-56.2102023477276,-56.2101613890813,-56.210063269895,-56.2099313344282,-56.2097397409668,-56.2096334170681,-56.2095158872591,-56.2092346255616,-56.2091044577357,-56.2089177806867,-56.2087906245754,-56.2084161440873,-56.2082924452139,-56.2082360210466,-56.208135035848,-56.2080894601487,-56.2080343285815,-56.208005811123,-56.2079628447144,-56.207924195692,-56.2079086812557,-56.2078975309011,-56.2078432689543,-56.2076040248146,-56.2075672282874,-56.2075719332625,-56.2076217242226,-56.2075344776763,-56.2074257600651,-56.2073122394471,-56.2072831224635,-56.2071147881689,-56.2070613440333,-56.2070411972686,-56.2069145838594,-56.2067510350574,-56.2067044473961,-56.2065195920501,-56.206345999766,-56.2061343694074,-56.2059798337885,-56.2058758576689,-56.205643440856,-56.2055214690586,-56.205482128,-56.2053120245206,-56.2051874282189,-56.2050849499497,-56.2049673963511,-56.2048319028809,-56.2047230234666,-56.2046686572735,-56.204763447952,-56.2048512357853,-56.2048528055506,-56.2048604953471,-56.2049100196097,-56.2050220395572,-56.2050128742124,-56.2049891429741,-56.2048960455331,-56.2047839703359,-56.2047627693073,-56.2045137780079,-56.2043616629194,-56.2042847993618,-56.2042072680986,-56.2041647287241,-56.2042396338882,-56.2042822323159,-56.2043197757294,-56.2041894298128,-56.204075338683,-56.2040155192743,-56.2039283268821,-56.2038569864251,-56.2037777569477,-56.2037131632032,-56.2036897640141,-56.2036248402436,-56.2036024540274,-56.2035783177039,-56.2035183115152,-56.203191497758,-56.2030863407916,-56.2029164291927,-56.202865335127,-56.2025115732098,-56.2023713938363,-56.2020535235646,-56.2018670429586,-56.2018217152504,-56.2017355776421,-56.2015873311106,-56.2014122183814,-56.2011776434113,-56.2010029551045,-56.2009844605658,-56.2008905370291,-56.2006829463195,-56.2005368530587,-56.2004543184449,-56.2002831736619,-56.2001803373851,-56.200060097261,-56.1999074976564,-56.1997065860691,-56.1996276854322,-56.1995283570617,-56.1994127216323,-56.1993482162325,-56.1992054491823,-56.1990460360867,-56.1989801776397,-56.198886693654,-56.1988237371398,-56.1987049048107,-56.1984744287485,-56.1982526103759,-56.1974898360535,-56.197347497314,-56.1972505643105,-56.1970243518267,-56.1968823174342,-56.1967483196232,-56.196589521508,-56.1965151378831,-56.1964674194199,-56.1964294342055,-56.1963323109613,-56.1962559404981,-56.1961997045885,-56.1961501857508,-56.1960511072524,-56.1959193514333,-56.1958604971061,-56.1957052184157,-56.1956775739001,-56.1955834472622,-56.1954980715957,-56.1954012445281,-56.195352427714,-56.195263591807,-56.1951362684889,-56.1950163283972,-56.1948172861155,-56.1947831774326,-56.1947400536749,-56.1946958097341,-56.1945762205836,-56.1944866456377,-56.194396402244,-56.1943142993483,-56.1942314811948,-56.1940750037923,-56.1938721702528,-56.1936560179118,-56.1934110605617,-56.1932748444314,-56.193230795934,-56.1933174207075,-56.1930425702137,-56.1930049652376,-56.193025968263,-56.1930914149127,-56.1931544490457,-56.1931013239781,-56.1929692216871,-56.1929226895065,-56.1929058321816,-56.1928498864536,-56.1927396489963,-56.1925217754802,-56.1923542118789,-56.1920564847422,-56.1918402825309,-56.1917507790611,-56.1916501490228,-56.1914428899453,-56.1913118500361,-56.1911413661728,-56.1910627256871,-56.1909264907222,-56.1907793813356,-56.1905430024216,-56.1903547166574,-56.1901852573898,-56.1899961753167,-56.1898812901556,-56.1897208838866,-56.1895206216486,-56.1891643320869,-56.1889822434673,-56.1884074290877,-56.1880971827756,-56.187979236447,-56.1878914955273,-56.1878282887162,-56.1875557721411,-56.1874096864854,-56.1871099452085,-56.1869150005545,-56.1866897303689,-56.1863785518551,-56.1861698002219,-56.186051403644,-56.1855732118371,-56.1853154514739,-56.1851595048084,-56.1849560169013,-56.1844281122738,-56.1839520504313,-56.1838335442801,-56.183766983001,-56.1834972281157,-56.1832824344588,-56.1830786043876,-56.1829709889608,-56.1828009084863,-56.1826713600856,-56.1812565456965,-56.1809568626825,-56.1803642937863,-56.1800290790001,-56.1796734188725,-56.179480829921,-56.1792836586947,-56.1791854113406,-56.1791132239818,-56.1788783623271,-56.1782770786939,-56.1779148817839,-56.1770628087132,-56.1751968126035,-56.1748911288582,-56.1743336216974,-56.1741316337941,-56.1740005472675,-56.1739024882971,-56.1739226238882,-56.1738078312841,-56.1737143859761,-56.173641235315,-56.1737471452835,-56.1738459027657,-56.1739131253632,-56.1740041073332,-56.1740553504272,-56.1741039888446,-56.1741279028444,-56.1741214114082,-56.1741127975542,-56.1740609191325,-56.1739799515421,-56.1738868093396,-56.1738292029638,-56.173784508247,-56.173690413053,-56.1736491651137,-56.1736095872024,-56.1735463229087,-56.173464475698,-56.1733416690301,-56.1731480058197,-56.1730551445561,-56.1729312473652,-56.1728148690125,-56.172705222465,-56.1726211974645,-56.1725814553018,-56.1725457980296,-56.1725151861251,-56.1724953941208,-56.1724754406273,-56.1724869098756,-56.1725055492469,-56.172538704921,-56.172573679625,-56.1725832795759,-56.1726005134639,-56.1726304605751,-56.1726444451964,-56.1726792223894,-56.1727374340774,-56.1727754803655,-56.1727107753288,-56.1726349011985,-56.1725962714706,-56.1725200402952,-56.1724179293006,-56.1723124615748,-56.1722001853378,-56.1721377448023,-56.1720219150659,-56.1719223720624,-56.1718399078668,-56.171701716598,-56.171563508654,-56.1715054853966,-56.1713263860389,-56.1717086935738,-56.1717742104149,-56.1706965886046,-56.169881671339,-56.1690377394926,-56.1684380546924,-56.1682134523324,-56.1679172123644,-56.1674498947876,-56.1674138027031,-56.1673121049873,-56.1671856594106,-56.1670504906147,-56.1669172991515,-56.1665811577819,-56.1663946762351,-56.1662421860708,-56.1660352634235,-56.1659196687754,-56.1657850106595,-56.1658200489076,-56.1658397621723,-56.1658856187542,-56.1667492291402,-56.1671742983593,-56.1679725867237,-56.1679358010857,-56.1678705924559,-56.1678767439618,-56.1679073697563,-56.1679310719801,-56.1677657167022,-56.1677762387953,-56.1678040814879,-56.1677992106425,-56.1678408254377,-56.1678307235612,-56.1679342002601,-56.1680093173332,-56.1680949581671,-56.1681661215345,-56.1681741173248,-56.1682680891218,-56.1683809956839,-56.1684922497272,-56.1685595877885,-56.1685773602875,-56.1686013276481,-56.1686300207792,-56.1686334608867,-56.1686557223675,-56.1686475948426,-56.1687098119296,-56.1687623506918,-56.1687963548953,-56.1688189982397,-56.1688089663994,-56.1688045774692,-56.1688575848065,-56.1688630909795,-56.1689036035395,-56.1689279744416,-56.1689476662638,-56.1689358301596,-56.1688552669444,-56.1688053545367,-56.1687983659325,-56.1687616519981,-56.1687961814726,-56.1688859744477,-56.1689049142155,-56.1689411462346,-56.1690040319997,-56.1690730275825,-56.1691396869604,-56.1691997395978,-56.1692809681561,-56.1693796357082,-56.1694825504506,-56.1696014334282,-56.1696634654197,-56.1697069745252,-56.1697877845343,-56.1698689297163,-56.1699579989849,-56.1700441133963,-56.1702056483707,-56.1703081662418,-56.1703473481155,-56.1703595477405,-56.1703386736419,-56.1703119098391,-56.1702419187429,-56.1701993434524,-56.170161872461,-56.1701725446316,-56.1701916494844,-56.1704121098482,-56.1705359503826,-56.1707937618407,-56.1707796960885,-56.1708317912886,-56.1708475010572,-56.1708185061038,-56.1709268970037,-56.1710131314771,-56.1710872096811,-56.1711251892681,-56.1711597270802,-56.1712060759835,-56.1713748546936,-56.1713921302698,-56.1714541439185,-56.1714885449933,-56.1715512223176,-56.1716166477258,-56.171678969867,-56.171479080112,-56.1714336083277,-56.1713712828516,-56.171386172197,-56.1713848681912,-56.171381099581,-56.1713690933891,-56.1713384692621,-56.1713016252607,-56.1712650664063,-56.1712680296012,-56.1712709977987,-56.1712746413444,-56.1712782832226,-56.171281248085,-56.1712846181564,-56.1712877247585,-56.1712905528837,-56.1712963041831,-56.1713013032464,-56.1713023823178,-56.1713110651291,-56.1713034995606,-56.1713069596784,-56.1713092058368,-56.1713121706992,-56.1713148670898,-56.171318192138,-56.1713215171861,-56.1713704590934,-56.1714221941078,-56.1714621196984,-56.1714945731022,-56.1715664268256,-56.1716392310393,-56.1717859352752,-56.1717873607669,-56.1717810458435,-56.1717764317972,-56.1718341882504,-56.1719844757575,-56.1720584739202,-56.1720945608645,-56.17215903078,-56.172168007076,-56.1722831214434,-56.1722860262748,-56.1723744335354,-56.172505262674,-56.1726144940074,-56.1727401538133,-56.1728579528987,-56.172978690166,-56.173037380434,-56.1731331548273,-56.1732343036591,-56.1733826826819,-56.1734782644759,-56.1736528945371,-56.173734864311,-56.1737979560157,-56.1739936669488,-56.173994758345,-56.1740193627008,-56.1740554162945,-56.1742288373989,-56.174424939367,-56.1745397844289,-56.1745723945801,-56.1746084881945,-56.1746326022974,-56.1746344199015,-56.1745986197718,-56.1745970214475,-56.1745953680948,-56.1747280498555,-56.1748114270219,-56.1748904611152,-56.1750055037789,-56.175247822082,-56.1753448612943,-56.1754016030575,-56.1754309623655,-56.1754362692691,-56.1754329667325,-56.175390313902,-56.1753726481247,-56.1753699325575,-56.1753661531084,-56.1753752244534,-56.1753968872921,-56.1754486123014,-56.1755277322722,-56.1757030085,-56.1757786908646,-56.1758690699755,-56.175927726893,-56.1759571095464,-56.1759685162625,-56.1759485451295,-56.1759223557897,-56.1759140356654,-56.1759193417352,-56.1759573788519,-56.176025563183,-56.1761427261069,-56.176182241486,-56.1762457200569,-56.1762715292007,-56.1762982388088,-56.176336270923,-56.1763728748005,-56.1764202567366,-56.1765389904706,-56.1766292953765,-56.1766845855577,-56.1767711051781,-56.176861004875,-56.1769544105467,-56.17704783873,-56.1771066573976,-56.1771137252094,-56.1770799127714,-56.177021653559,-56.1770010987917,-56.1769909360505,-56.1769117793941,-56.17681869222,-56.1767255716953,-56.1767085337417,-56.176695001763,-56.1766606648879,-56.1766469728265,-56.1766333266222,-56.1766025749294,-56.1765642093099,-56.1765615862905,-56.1765643894028,-56.176571610627,-56.1765842930009,-56.1765935619478,-56.1766018070334,-56.1766073223778,-56.1766128727403,-56.1766170407231,-56.1766205441966,-56.1766223226138,-56.1766237600218,-56.1766245329204,-56.1766242994666,-56.1766223242813,-56.1766176176873,-56.1766115287138,-56.1766068221198,-56.1766193077256,-56.1766378639622,-56.1766457680385,-56.176654354967,-56.1766991914237,-56.1767917566619,-56.1768847529558,-56.1769362486802,-56.1769870190304,-56.177003419155,-56.1770177898997,-56.1770465138801,-56.1770677106451,-56.1770841107698,-56.1771063138871,-56.1772050581454,-56.1773007675052,-56.1773349701444,-56.1773718850156,-56.1774095002481,-56.1774228471314,-56.1774769717115,-56.1775167255469,-56.1775828688254,-56.1776490479557,-56.1777155497523,-56.1777864729959,-56.177823564625,-56.1779247509761,-56.1779962253372,-56.1780619158822,-56.1781225229722,-56.1781726038001,-56.1781940882135,-56.1782159136361,-56.1782787143574,-56.1783320018391,-56.1784222058596,-56.1784978640452,-56.1785823817998,-56.1786699919826,-56.1787455426127,-56.1788101359251,-56.1789643004317,-56.1790735817909,-56.1791805677996,-56.1792911056402,-56.1793258210438,-56.1793226944313,-56.1793360679951,-56.1793518211194,-56.1793675967552,-56.1793847189189,-56.1794026965238,-56.1794354492485,-56.1794817206118,-56.1794972961445,-56.1795313878932,-56.1795539320198,-56.1795616418293,-56.1795788773847,-56.1795766495691,-56.1795846895489,-56.1796054060663,-56.1796000207889,-56.1795701387113,-56.1794969901534,-56.1794462531537,-56.1794201997173,-56.179387255227,-56.1793416241939,-56.1792792203439,-56.1791704934374,-56.179097945189,-56.1790483421075,-56.1789969105829,-56.1788889790865,-56.1788556952545,-56.1788393484908,-56.178815448665,-56.1787215710833,-56.1786852123321,-56.1786569744358,-56.1786028323467,-56.178524099242,-56.1784686731573,-56.1784123691199,-56.1783579102007,-56.1782915701541,-56.1782641143278,-56.1782644778486,-56.1782647313127,-56.1782545777429,-56.1782680138389,-56.1782832450273,-56.1783023515477,-56.1783152040094,-56.1783401960651,-56.1783767390779,-56.1784341019948,-56.1784951843298,-56.1785747161798,-56.1786269422808,-56.1786812344473,-56.1787344844097,-56.1787686386906,-56.1787646007748,-56.1786826318346,-56.1785777210628,-56.1784494549127,-56.1784049844781,-56.1783643952119,-56.1783204033575,-56.178272621215,-56.1782064245757,-56.178160348313,-56.1781750467267,-56.1782571499027,-56.1783151606537,-56.1784031360248,-56.1784869976077,-56.1785545299359,-56.1786122913916,-56.1786724048937,-56.1787502500404,-56.1788184835635,-56.1788866995776,-56.1790069757738,-56.179122076801,-56.1792259878906,-56.179350018523,-56.1794586170301,-56.1795896887938,-56.1797143097307,-56.1798522642107,-56.1799776430384,-56.1801074766636,-56.1802336825845,-56.1803427830171,-56.1804660224081,-56.180612527131,-56.1806769699492,-56.1807891186204,-56.180825993888,-56.1808809910014,-56.1809264940518,-56.1809758090682,-56.1810809441223,-56.1811345780327,-56.1811826753377,-56.1812482053832,-56.1813130709194,-56.1813854636708,-56.1814643418503,-56.1815439391507,-56.1816546704243,-56.1817116239634,-56.1817679196632,-56.1818897383215,-56.1820068703962,-56.1821274154811,-56.1822725365737,-56.1823944106773,-56.1825146326789,-56.1826303811233,-56.1827412774821,-56.1828757805988,-56.182984434551,-56.1830893340671,-56.1832031448455,-56.1833207288199,-56.1834294382175,-56.1835371237537,-56.1836502337541,-56.1837571634838,-56.1838784656258,-56.183982756703,-56.1840557558088,-56.1841298527725,-56.1841991528874,-56.1842687944283,-56.1843492665548,-56.1844557172875,-56.1845723711989,-56.1846708605341,-56.1847884563896,-56.1847898248037,-56.1848323323509,-56.1849949247456,-56.185103618927,-56.1852207622575,-56.1853294564388,-56.1854751055121,-56.1855931425327,-56.1857588071368,-56.1858825858685,-56.1859971298376,-56.1861108183655,-56.1862305203072,-56.1863059904791,-56.1863955029451,-56.1865489120621,-56.1866593124359,-56.1868156750031,-56.186958239595,-56.1870645541898,-56.187142265726,-56.1872905218974,-56.1874456640843,-56.1875780064642,-56.1876965308976,-56.1877175040578,-56.1877861642071,-56.1879242381237,-56.1880304587899,-56.188191378968,-56.1883185794644,-56.1883776412783,-56.1884462767795,-56.1886389536479,-56.1887076006134,-56.1887554483105,-56.1888347600469,-56.1890724009378,-56.1891889879397,-56.1893067226168,-56.189444819045,-56.1896175108149,-56.1897520401951,-56.1898679049495,-56.1899816152595,-56.190187047873,-56.1902624380037,-56.1903940750589,-56.1905497190785,-56.1906323775409,-56.1907554222483,-56.1907887902903,-56.1908374074468,-56.190896537525,-56.1910330508451,-56.1911114629509,-56.1911555144194,-56.1912372061332,-56.1913544803645,-56.1914069624309,-56.191461587269,-56.191544652191,-56.1915768066906,-56.1915734766398,-56.1916081566085,-56.1917104451947,-56.1918157124003,-56.1918894741912,-56.191964243585,-56.192013077103,-56.192069033878,-56.1920970966841,-56.1920844434919,-56.1920440109731,-56.1919988243359,-56.1919758158031,-56.1919789053131,-56.1920070098073,-56.1921162140434,-56.1921848390184,-56.1922671477171,-56.1923851748367,-56.1925506931154,-56.1926638681493,-56.1928300280089,-56.1929445441511,-56.1930610379799,-56.1931900149133,-56.1933189118054,-56.1934920773613,-56.1936205673769,-56.1937113550318,-56.1938108413394,-56.1938979400084,-56.1939358045361,-56.193912920651,-56.1939042036554,-56.1938462200017,-56.1937477158673,-56.1936409216241,-56.193506042897,-56.1934119814705,-56.1932534034377,-56.1931119300596,-56.192960140111,-56.1928293626657,-56.1926562183708,-56.1925534883069,-56.1924613578762,-56.1924212592797,-56.192365889891,-56.1922873010273,-56.1921299336189,-56.191972547034,-56.1918160909289,-56.1916916650926,-56.1916023569508,-56.1914778231422,-56.1913945251833,-56.1913126713025,-56.1912095714646,-56.1911347282827,-56.1910639109271,-56.1909790013037,-56.1909005520954,-56.190877116259,-56.1907959381433,-56.1907417030896,-56.1906630777488,-56.1905283309648,-56.1904229528686,-56.1903115051839,-56.1901709447766,-56.1900625897285,-56.1899538884601,-56.1898575325169,-56.1897537710878,-56.1896475352576,-56.1895560678772,-56.1895610842142,-56.1895340552747,-56.1894773872996,-56.1894429951877,-56.1894266475902,-56.1894140337932,-56.189409333244,-56.1893876260074,-56.1893680434082,-56.1893120976805,-56.1892673087484,-56.189182131487,-56.1890309568557,-56.1889446569319,-56.1887891472524,-56.1886803335302,-56.188566554539,-56.188475102479,-56.1884331427143,-56.1883737451022,-56.1883260557159,-56.1883026535427,-56.1882857487828,-56.1882423502552,-56.188217151322,-56.1882150451316,-56.1882317937693,-56.1882053992195,-56.1882460046399,-56.1883674065208,-56.1884160749537,-56.1884007993673,-56.1883846671934,-56.1883619535002,-56.1883699646109,-56.1883343761528,-56.1883539063292,-56.1883672877095,-56.1883372178267,-56.1882708231686,-56.1882788368848,-56.1882738282601,-56.1882475970236,-56.1883063050092,-56.1883357106953,-56.1884546692327,-56.1885725947374,-56.1887555508634,-56.1888602190101,-56.1890323907201,-56.1890739536135,-56.1892747813522,-56.1893659177286,-56.1894219311995,-56.1894932154626,-56.1894949601123,-56.1894588792128,-56.1894255090863,-56.1893931747023,-56.1893752260708,-56.1893862788543,-56.1894423104596,-56.189535549587,-56.1896425662366,-56.1897540383089,-56.1898827440608,-56.1899723014978,-56.1900744518877,-56.1902220015245,-56.1903471179253,-56.1905484953224,-56.1906146823734,-56.1906972995646,-56.1907782431843,-56.1908462515913,-56.1908341853684,-56.1908188578803,-56.1908135409716,-56.1907506445759,-56.1907127637899,-56.1906823556076,-56.1907065324512,-56.1907319432645,-56.1907329438275,-56.1907350696686,-56.190745421674,-56.1907754588316,-56.1908000340057,-56.1907618893335,-56.1907162526725,-56.1907070698117,-56.1907239647748,-56.1907462470997,-56.1908007335331,-56.1908579888945,-56.1909353496247,-56.1910119712238,-56.1910888400337,-56.1911601714044,-56.1912543011996,-56.1913589768501,-56.1913263579444,-56.1913349944818,-56.1913043336693,-56.1912847047961,-56.191250840248,-56.1912198188328,-56.1911367897626,-56.1910992537376,-56.1910585748418,-56.191032980809,-56.1909957386856,-56.1910423473062,-56.191082307498,-56.1911025212561,-56.1911271877272,-56.1911580778247,-56.1912139403845,-56.1912565202607,-56.1913190800243,-56.1913409312936,-56.1912975134852,-56.1912222284088,-56.1911718857791,-56.1911211833806,-56.1910498240788,-56.1909879296583,-56.1909308902416,-56.1908767539888,-56.1908254429431,-56.1908092195762,-56.1907971708624,-56.1907715568193,-56.190721554365,-56.1906927055286,-56.1906683796498,-56.1906378374401,-56.1905539402138,-56.1904802955667,-56.1904818359445,-56.1905306719638,-56.1905428257318,-56.1905450971115,-56.1905645929994,-56.1906199563433,-56.1906481577625,-56.190659973648,-56.190669737225,-56.1907005001735,-56.1907382688185,-56.190776842045,-56.19084796831,-56.1909112046726,-56.1909902391827,-56.1910345858034,-56.1911137566338,-56.1911496230477,-56.1911424885349,-56.1911226061977,-56.1911078281597,-56.1910612174547,-56.1910350193603,-56.1910012536131,-56.1909636554728,-56.1909348985588,-56.190896491668,-56.190846710578,-56.1908119764147,-56.1908058040648,-56.1907918889717,-56.1907428142877,-56.1906962365163,-56.1906841231858,-56.1906732513289,-56.1906584637026,-56.1906419310096,-56.1906016769162,-56.1905464186264,-56.1904887136581,-56.1904730947698,-56.1904543200872,-56.1904629972705,-56.1904711791985,-56.190494322384,-56.1905125838853,-56.1905504990641,-56.1905748710084,-56.190598353744,-56.1906774887226,-56.1907117816167,-56.1907447863464,-56.190751405385,-56.1909088426211,-56.191019333354,-56.1911363120162,-56.1912437115716,-56.1913030759373,-56.1913543152794,-56.1913983471544,-56.1914040638527,-56.1914151199712,-56.1914360591034,-56.1915305315753,-56.1915313736763,-56.1915341409367,-56.1915280311191,-56.1914960279476,-56.1914383415305,-56.1913731433228,-56.1912744457553,-56.1911949064015,-56.1912553584115,-56.1913229432667,-56.1913605188954,-56.1913629497324,-56.1913653705642,-56.1913097510465,-56.1912678077486,-56.1912176510481,-56.1911548228127,-56.1910587616048,-56.190942820561,-56.1908203544855,-56.1907074677252,-56.1905754598537,-56.1904672778115,-56.1903509386457,-56.1902590677239,-56.1901911918852,-56.1901650769587,-56.190143442468,-56.1901472517242,-56.1901447525186,-56.1901429601359,-56.1901144068686,-56.1900707168365,-56.1900037520927,-56.1899037227967,-56.1898258499274,-56.1897490013362,-56.1896650009317,-56.1895967634483,-56.1894886508168,-56.1894237898664,-56.189367825379,-56.1892873324084,-56.1891882508929,-56.1890936827467,-56.1890113695665,-56.1889119459995,-56.188825478802,-56.188736279779,-56.1886388482811,-56.1885442512658,-56.1884880464462,-56.1884465998628,-56.1883650479085,-56.188286965035,-56.1882120873562,-56.1881244372049,-56.1880441172922,-56.1879480668191,-56.1879187791626,-56.1879318343851,-56.1877591818021,-56.1877479828494,-56.1877493432385,-56.1876966763372,-56.1876176966991,-56.187573142289,-56.187498099525,-56.1874323655202,-56.1872870360355,-56.1871727593104,-56.1870470192091,-56.1869915332237,-56.1869271412391,-56.186813933011,-56.1867042154893,-56.1865805680233,-56.1864725328276,-56.1863571357102,-56.1862389822754,-56.186086458094,-56.1860250513208,-56.1859392847971,-56.1858405719092,-56.1857557007431,-56.1856834834988,-56.1855839357011,-56.1855432453411,-56.1855122129827,-56.1854562883076,-56.1853830384475,-56.1853058061168,-56.185241989038,-56.1851789604909,-56.185098593627,-56.1850450947863,-56.1849829919249,-56.1849311416427,-56.184878347332,-56.1848324163526,-56.1847535608931,-56.1847857772996,-56.1848137779903,-56.1848400592525,-56.1848548989891,-56.184943268105,-56.1849292085624,-56.1849042679916,-56.1848320146871,-56.1848537890417,-56.1848348052929,-56.1848830526753,-56.1849179802717,-56.1849550093686,-56.1849987911146,-56.1850386531308,-56.1850835271068,-56.1851273555436,-56.1851893621053,-56.1852571009983,-56.1853216344882,-56.1854068826195,-56.1854960877916,-56.1856031082973,-56.1857084631523,-56.1857899147423,-56.1858445278035,-56.1858689651982,-56.1858940470919,-56.1859308226204,-56.1859543509004,-56.1859117412172,-56.1858809213643,-56.1858659596898,-56.1858912320984,-56.1859083117402,-56.1859188049643,-56.1860603043975,-56.1861652984415,-56.1862514808046,-56.1863184134485,-56.1863813305839,-56.1864323449142,-56.1864724031774,-56.1864793564509,-56.1865270141542,-56.1865727569637,-56.1866270522047,-56.1866502225917,-56.186647889722,-56.186643988387,-56.1866027667634,-56.1865678014913,-56.1865281884056,-56.1864882660458,-56.1864496917249,-56.1864017288643,-56.1863634895078,-56.186329294581,-56.1862833574525,-56.1862184362627,-56.1861443088666,-56.1860621094951,-56.1859800518634,-56.1858437077973,-56.1857715650706,-56.1856787406361,-56.1855884908629,-56.1855383363511,-56.1854778350448,-56.1854033101521,-56.1853420817,-56.1852725914871,-56.1852076388227,-56.1851511292626,-56.185086314586,-56.1850533146505,-56.1850061953498,-56.1848864250396,-56.1847925570461,-56.1846890642972,-56.1845844855716,-56.1845159568963,-56.1844515609774,-56.1843361981485,-56.1842082527888,-56.1841245152282,-56.1840301140431,-56.1839652753958,-56.1839883014376,-56.1840410521841,-56.1841016594825,-56.1841853643179,-56.1842708131778,-56.1843607937497,-56.1844365744985,-56.1845370540266,-56.1845498716787,-56.1845615326926,-56.1845149603407,-56.184381170717,-56.1865939164699,-56.1895263014842,-56.1902226806248,-56.1908523701634,-56.1921247351046,-56.1946290308006,-56.1980926220633,-56.1997170865078,-56.1999961162439,-56.20090782727,-56.1939339073077,-56.1924235229471,-56.1928418170054,-56.1940661434219,-56.1958662399487,-56.1962468368113,-56.2031545251758,-56.2037749409139,-56.2043222477078,-56.2047329978223,-56.2072636084423,-56.2086262661998,-56.2092162754827,-56.2095600961331,-56.2096663992897,-56.2101051522325,-56.2101270999462,-56.2105413095197,-56.2105507489668,-56.2106253478518,-56.2106901388868,-56.2116148209194,-56.2117732515364,-56.2119707993945,-56.2124763601251,-56.2129963549664,-56.2138050203491,-56.2146255168335,-56.2159720629485,-56.2167700178075,-56.2186995862687,-56.2198474648602,-56.2199508955365,-56.2199551086966,-56.2201331811061],&#34;lat&#34;:[-34.8096611551165,-34.8082598853951,-34.8080245572935,-34.8078320637739,-34.8076741269038,-34.804504937664,-34.8036426713614,-34.8034307707917,-34.8026678222079,-34.8023488070095,-34.8024473881041,-34.800686366278,-34.8001262869785,-34.7990671699931,-34.7989451858093,-34.7982899556507,-34.7961874110883,-34.7950903906398,-34.7945498215048,-34.7939772795636,-34.7938476886062,-34.7931706925647,-34.7930006959145,-34.7927955358265,-34.7918448865007,-34.7905014403178,-34.7898477431894,-34.7892391226416,-34.7873817113937,-34.786705469305,-34.7860750241684,-34.7865033847436,-34.7859457543893,-34.7844906674103,-34.7827936452106,-34.7807319824919,-34.7806023050084,-34.778523812232,-34.7769569405351,-34.7767915213093,-34.7765118099493,-34.7760768996162,-34.7739554740763,-34.7736545370401,-34.7716659914916,-34.770280180816,-34.7687460685914,-34.7684185302715,-34.7681598658838,-34.7676964172967,-34.7676498891611,-34.7676791775621,-34.7676611454368,-34.7676525457054,-34.7674816361972,-34.7672310810097,-34.7671176973334,-34.7669646459575,-34.7667879920736,-34.7666710561259,-34.7665183722923,-34.7663878125511,-34.7662175191379,-34.7661197658579,-34.7661180939081,-34.7661175968927,-34.765732437972,-34.7656026757297,-34.7655476841283,-34.7655231379446,-34.7655107772593,-34.7655250271095,-34.7655322021839,-34.7655313872923,-34.7655297768919,-34.7654566132227,-34.765414459369,-34.765357173517,-34.7652520035834,-34.7651952777816,-34.7649779013643,-34.7647609608202,-34.7646733426637,-34.7645684914753,-34.7643838678362,-34.7641915229655,-34.7640391539295,-34.7638710310679,-34.7637177756369,-34.7636123972605,-34.7635060561828,-34.7633885695211,-34.7629097751806,-34.7628216109366,-34.76259927524,-34.7621877827701,-34.7619135245302,-34.7618360850394,-34.7617114942532,-34.7615660224372,-34.7612724359319,-34.760939160804,-34.7607319999345,-34.7603220755061,-34.7601975312241,-34.7600754960899,-34.7599293109363,-34.7597376092951,-34.7595242558123,-34.7592467831218,-34.7591213278892,-34.7589958183673,-34.758835414926,-34.7587171012781,-34.7586196696818,-34.7584805281701,-34.7581628453912,-34.7579670818993,-34.7576959950026,-34.7572480770416,-34.7569447747642,-34.7568157510226,-34.7566854824899,-34.7565395359502,-34.7563463301697,-34.7560860764036,-34.7558871241295,-34.7556499550927,-34.7554273367488,-34.7551262656438,-34.7550248335653,-34.7548988465472,-34.754669567838,-34.7536576620227,-34.7535726690793,-34.7534901923153,-34.7533670003745,-34.7533085599589,-34.75258375947,-34.7522180591246,-34.7515933420057,-34.751530731431,-34.751223450682,-34.7510945458518,-34.750975355293,-34.7508853599684,-34.7505729537003,-34.7502617875836,-34.7500873267869,-34.7499880509688,-34.7498577544361,-34.7497354337155,-34.7493765748642,-34.7492508181423,-34.7491978747274,-34.7489695873316,-34.7488677700774,-34.7487177221529,-34.7485491783151,-34.7484534954822,-34.7483881796531,-34.7482626276839,-34.7481704472838,-34.7481716439015,-34.7481687462007,-34.748162419879,-34.7481844552835,-34.7481545098096,-34.7481061715295,-34.7480166380667,-34.7479899081102,-34.7478160421305,-34.7476866814721,-34.7475288790101,-34.7474746782018,-34.7473640542727,-34.7472626372241,-34.7471962009416,-34.7471175184874,-34.7470317537254,-34.7470077354861,-34.7469295983986,-34.7468775089488,-34.7468002565816,-34.7467749984243,-34.7467161004141,-34.7466483765233,-34.7465889807101,-34.7465203659893,-34.7464220295211,-34.7463458405492,-34.7462714213391,-34.7461327641241,-34.7460790621288,-34.7460242454315,-34.7459419208613,-34.7458533868227,-34.7457388824544,-34.7456688553517,-34.745529501406,-34.7453624907906,-34.7452765272915,-34.7451282921272,-34.7449572347036,-34.7447928901615,-34.7446977659343,-34.7444462048536,-34.7442458002241,-34.7441194944853,-34.7440328933851,-34.7438839964829,-34.743677496125,-34.7434935815132,-34.7433906405594,-34.7433095634685,-34.7431977765206,-34.7431569946186,-34.7430413557831,-34.74287056649,-34.7426257451061,-34.7424224326907,-34.7423716389651,-34.7422995482797,-34.7421416794047,-34.7420942992192,-34.7420186552734,-34.7419757440883,-34.7419338954693,-34.7419049984644,-34.7418571071301,-34.7418593069532,-34.7418342853241,-34.7418006399694,-34.7417173328851,-34.7416695320962,-34.7415923359791,-34.7413052537958,-34.7412481795042,-34.741228730649,-34.7412357525601,-34.7411282101963,-34.7410408665708,-34.7408855330051,-34.7405829025554,-34.7404292183166,-34.7402910048737,-34.7401911003499,-34.7401410353485,-34.7400009874203,-34.739890597859,-34.7398112597908,-34.7396082539998,-34.7390455697012,-34.7389579574212,-34.7388646999719,-34.7385894319569,-34.7383934310111,-34.7381661882543,-34.7379575578636,-34.7379212253683,-34.7378152821729,-34.7377469775521,-34.7376400572996,-34.7374303236754,-34.737238114609,-34.7372142870638,-34.7370910650986,-34.7370433351869,-34.7370380727425,-34.7369652254611,-34.7367703855932,-34.7364795686476,-34.7361991798255,-34.7358863223758,-34.7357201749352,-34.735617632841,-34.7355588808372,-34.735389258973,-34.7352723248423,-34.7351945222406,-34.7349360775148,-34.7347892165833,-34.7346915344426,-34.7345101995867,-34.7342754283511,-34.7341867740145,-34.7341071383071,-34.7339750471623,-34.7339117468528,-34.7338307722709,-34.7337397267456,-34.7335888015096,-34.7334494037974,-34.7333594326157,-34.7330523646446,-34.7329328878643,-34.7328673339175,-34.7326697762914,-34.7325782066911,-34.7322885570253,-34.7321040096854,-34.7320372485437,-34.7319317459868,-34.7317779656008,-34.7316591855119,-34.7315272699585,-34.7313747246112,-34.7312769832395,-34.7311588786504,-34.7309403281816,-34.7309072710667,-34.7308253644421,-34.73041814743,-34.7303592712697,-34.7302686391738,-34.7302257826482,-34.730084710509,-34.7300032243475,-34.7298710220622,-34.7297358356718,-34.7296572083528,-34.7295939796416,-34.7295082998288,-34.7293926773259,-34.7292613347059,-34.7291057590435,-34.7290541708551,-34.7289550823347,-34.7287645737883,-34.7285253018525,-34.7284722216445,-34.7283221733872,-34.7282699326796,-34.7282088506455,-34.7281288920861,-34.7280431539556,-34.7280119223327,-34.7279726045951,-34.7278741548573,-34.7278192360763,-34.7277340715164,-34.7276717789326,-34.727612213033,-34.7275276609133,-34.7273928039257,-34.7273472621121,-34.7273163568593,-34.7273062398844,-34.7269918939298,-34.7269981480484,-34.7269780464988,-34.7269647135216,-34.7269378275971,-34.726907220019,-34.72684106295,-34.7267843267238,-34.7267961266605,-34.7267946694357,-34.7267879863994,-34.7267725546701,-34.7267473009578,-34.72672947773,-34.726698054229,-34.7266452985326,-34.7266105204289,-34.7264966732623,-34.7264648734302,-34.7263184912624,-34.7262304451308,-34.7261175869237,-34.7261027846422,-34.7260702215094,-34.726012667643,-34.7259473191928,-34.7258253384488,-34.7257935590243,-34.7257246247922,-34.7256924069843,-34.7256190909449,-34.7254845992709,-34.7254090145877,-34.7253242054149,-34.7253131243583,-34.725333155758,-34.7252001477621,-34.7251249842628,-34.7250601629282,-34.7249644614734,-34.7247564302324,-34.7241931812415,-34.7239227624,-34.7238540470132,-34.7236619539107,-34.7234912217415,-34.7233134513689,-34.7231278894207,-34.7229374153978,-34.72280280787,-34.7225683308177,-34.7224178609754,-34.7222749313025,-34.7220496552345,-34.7218984452614,-34.7216858055215,-34.7215743916405,-34.7214516676484,-34.7213441525205,-34.7214488014516,-34.7215149655973,-34.7216639329283,-34.7217087068813,-34.7217862720082,-34.7218274279936,-34.7218653573507,-34.7218772727077,-34.7219209127466,-34.7220144551242,-34.7220215911379,-34.722117957094,-34.722195039268,-34.7222827863288,-34.722313174029,-34.7223883453895,-34.7224784441888,-34.7224723914115,-34.7224577621612,-34.7224155952184,-34.7221888791511,-34.7220355843575,-34.7220017425323,-34.721946220881,-34.7219279710748,-34.7220079980209,-34.7219918284295,-34.7219657593971,-34.7221685274318,-34.7222250191479,-34.7222311267125,-34.722227977797,-34.7221790066968,-34.7221247115674,-34.7219560146804,-34.7219115423261,-34.7219156731191,-34.7218162476705,-34.7216990798012,-34.7216716347475,-34.7216896055109,-34.7217040003149,-34.7217631873342,-34.7216268018521,-34.7213221660908,-34.7212330688951,-34.7211237143776,-34.7210500136176,-34.7209465452131,-34.7208949883029,-34.720850785988,-34.7207069730879,-34.7202091040684,-34.7203821953383,-34.7196208791908,-34.7195090445299,-34.7195756620975,-34.7198695309232,-34.7200578090399,-34.7202132465342,-34.7204976948381,-34.7206339761891,-34.7207407653788,-34.7208619878284,-34.7210730722266,-34.7212449266515,-34.7213344555327,-34.7215287627079,-34.72179174497,-34.7219808958533,-34.7222016096811,-34.7223818359617,-34.722482568965,-34.7226162368482,-34.7227831362559,-34.7229275840847,-34.7230991125463,-34.7231984170935,-34.7232841679841,-34.7234737190738,-34.7235684879485,-34.7236542254989,-34.7237896019826,-34.7238844775791,-34.7239749509052,-34.7240926516064,-34.7241546887676,-34.724237459621,-34.7243143926306,-34.7244544115086,-34.7246033683295,-34.7247341824603,-34.724862811177,-34.7249732390813,-34.7250810219962,-34.7251896840408,-34.7253293694135,-34.7254169057878,-34.7255726148613,-34.7257032155488,-34.7258879908421,-34.7260186448905,-34.7261718038785,-34.7262441518004,-34.7264240673105,-34.7265636326212,-34.7266942333087,-34.7268972179931,-34.7270371434896,-34.7271054602624,-34.7272402749163,-34.727389285098,-34.7275518222559,-34.7277188817461,-34.7278046859975,-34.7279357002316,-34.7280441294847,-34.7281570277092,-34.7283286762327,-34.728495802424,-34.7285770843431,-34.7288461651073,-34.7293619434927,-34.7294503327569,-34.7300412100997,-34.7304808219238,-34.7309493733893,-34.7325331287492,-34.7330984819007,-34.7338605231554,-34.7350668425783,-34.7344404011602,-34.7326733201089,-34.7321318390609,-34.7323167699979,-34.732762843046,-34.7331208550185,-34.7333175947422,-34.7338039745907,-34.7341985896048,-34.7346852215699,-34.7352326507393,-34.7354672166681,-34.7355260177865,-34.7356230381218,-34.7359678025923,-34.7361374901045,-34.7364557208909,-34.7365736750562,-34.7366834249904,-34.7368431740437,-34.7376384775354,-34.7380659646681,-34.7382091184962,-34.738267161764,-34.7383676535902,-34.7384384901224,-34.738550267769,-34.738599880022,-34.7387455151297,-34.7388444728314,-34.7389298768764,-34.7390648931745,-34.7391003648014,-34.7391367435629,-34.7392130629227,-34.7393029092588,-34.7394199029287,-34.7395468750782,-34.7396226074687,-34.7397171895804,-34.739811825053,-34.739919934141,-34.7400236142781,-34.7400720125717,-34.7401359922343,-34.7402644051268,-34.7403507429868,-34.7404513548749,-34.74055052602,-34.7406675730508,-34.7407667041753,-34.7409255727745,-34.7410147520999,-34.7411019170531,-34.741217216516,-34.7412897205749,-34.7413387725389,-34.7414068876676,-34.7414840207805,-34.7415465997207,-34.7416455174017,-34.7417003456781,-34.7417512385915,-34.7418164722342,-34.7419199522681,-34.7420369592783,-34.7421224300244,-34.7422123564018,-34.7423112474024,-34.7424211707593,-34.7425454882064,-34.7426118957878,-34.7426799575557,-34.742809864552,-34.7429371168459,-34.7430804174164,-34.7431973710657,-34.7432284804429,-34.7432642588948,-34.7432941943333,-34.7433423124824,-34.7433858682785,-34.743445832537,-34.7435380934516,-34.7436203625466,-34.7436912791201,-34.7437875687791,-34.7439226117575,-34.7440560405702,-34.7441307724447,-34.744269703919,-34.7442785019659,-34.7443098648072,-34.7443778065131,-34.744434729203,-34.7445418244347,-34.7446068179535,-34.7446816965703,-34.7447396597968,-34.7447718497313,-34.7448003577669,-34.7449571186125,-34.7449868139271,-34.745047551918,-34.7450687094961,-34.7451358641295,-34.7452395576069,-34.7453383418858,-34.7453614071145,-34.7454755993396,-34.7456321200614,-34.7456525439278,-34.7457573579831,-34.7457853324103,-34.7458301421865,-34.7459444144529,-34.7460819120306,-34.746218329051,-34.7463172467321,-34.7464163778565,-34.7465380672816,-34.7466596233044,-34.746758634367,-34.7468711990861,-34.7469748925635,-34.7470693679536,-34.7472614003229,-34.7473948596338,-34.7474621705319,-34.7474968817667,-34.747518172747,-34.7476917556015,-34.747804467063,-34.7479532371208,-34.7480884668623,-34.748255246208,-34.7484221189352,-34.7485711157767,-34.7487005158449,-34.7488165623597,-34.7489489773162,-34.7490955062182,-34.749243956111,-34.749557456377,-34.7495476327248,-34.7496466037667,-34.7497189210626,-34.7497589150218,-34.7498629553447,-34.7499140750418,-34.7499267349041,-34.7499838176765,-34.7500964624369,-34.7502088270529,-34.7503395211219,-34.750429434159,-34.7504954281938,-34.7505505366146,-34.7506139426481,-34.750673373298,-34.7507342847115,-34.7507931150518,-34.7508927397642,-34.7509904968467,-34.7510691240634,-34.7510881205271,-34.7511200703377,-34.751167321373,-34.7512098099521,-34.7510858793712,-34.751085425804,-34.7510744868292,-34.7510786356355,-34.7511036618755,-34.7510061048962,-34.7509732212706,-34.7509745419517,-34.7509886158767,-34.7510112141979,-34.7510367073453,-34.7510962847376,-34.751126033413,-34.7511416147821,-34.7512786454523,-34.7513159580287,-34.7513398236702,-34.7513565122769,-34.7514450779525,-34.7514653550766,-34.7514935296069,-34.7515401936728,-34.7515798407864,-34.7516124175871,-34.7516748631252,-34.7517634288008,-34.7519433215761,-34.7520715210252,-34.7521947178943,-34.7522477719223,-34.7523085365935,-34.7523536531947,-34.7524126569577,-34.7524563594962,-34.7525276495957,-34.7526053830181,-34.7526577166747,-34.7527207091615,-34.7528765628725,-34.752979322535,-34.7530445028168,-34.7530841499305,-34.7531548664008,-34.7532545311338,-34.7533717782678,-34.7533829973871,-34.7533785817765,-34.7533955105071,-34.7534230580474,-34.7534923471149,-34.7536338867772,-34.7536812178537,-34.7537616193188,-34.7538071361263,-34.7538354440588,-34.7539120569033,-34.7539715809347,-34.7540453256334,-34.7541247666031,-34.7541729914739,-34.7542156668161,-34.7543836868016,-34.7544749205198,-34.7545091381667,-34.7545546949949,-34.7545947689954,-34.7546007053903,-34.7545981173889,-34.7546493971686,-34.7547148976155,-34.7547519967484,-34.7547776499785,-34.7548146824104,-34.754885919149,-34.7549070900674,-34.7549341440198,-34.7549521666479,-34.7549656669436,-34.7549791538992,-34.754992654195,-34.7550061411505,-34.7550196547866,-34.7550421730665,-34.7550601956945,-34.7550827139745,-34.7551007366025,-34.7551187592306,-34.7551412908507,-34.7551683448031,-34.7551863674312,-34.7552044167397,-34.7552179570561,-34.7552359930244,-34.7552777212113,-34.7553170348197,-34.7553305351155,-34.7553440354113,-34.7553754649536,-34.7553932341176,-34.755433548242,-34.755460642215,-34.7554873493219,-34.7554918182933,-34.7555007829166,-34.7555142298516,-34.7555231811346,-34.755527650106,-34.7555320923971,-34.755558866205,-34.7555946579971,-34.7556126005839,-34.7556260208384,-34.7556439367447,-34.7556529147082,-34.7557023535384,-34.7557428010649,-34.7558102225025,-34.7558866619243,-34.755958592354,-34.7560040958213,-34.7559988664577,-34.755953523073,-34.7559037507374,-34.7558585007342,-34.7558222687151,-34.7557996036928,-34.7557950413399,-34.7557904656467,-34.7557778991659,-34.7557878109443,-34.7558259639541,-34.7558855280062,-34.7559520689897,-34.7560210378921,-34.7560925547752,-34.7561313747957,-34.7561774518921,-34.7561969686241,-34.7562165920777,-34.7562618287408,-34.7563186580491,-34.7563983658231,-34.756485450735,-34.7565846352203,-34.756683966448,-34.756791768711,-34.7569049604202,-34.756992912446,-34.7570855869073,-34.7571272217127,-34.7571996057097,-34.7572515791804,-34.7573510838308,-34.7574581390419,-34.7575447703866,-34.7576485172248,-34.7577049063061,-34.7578463792673,-34.7578947909011,-34.7579550619844,-34.7580364773058,-34.7581058997754,-34.7581534442953,-34.7581877286433,-34.7582235871364,-34.7583163016183,-34.758408255708,-34.758491085092,-34.758565229997,-34.7586731256416,-34.7587493783004,-34.7588332082003,-34.7588930390566,-34.7590566834522,-34.7590954767922,-34.759108350098,-34.7591516524301,-34.7592818395709,-34.7593734868358,-34.7594451504612,-34.759508516474,-34.759666304516,-34.7597676634561,-34.7598579633594,-34.7599508779445,-34.760058520125,-34.7601436040049,-34.7602400537465,-34.7603484563192,-34.7604504689297,-34.7605540556853,-34.7606441021246,-34.7607340818628,-34.7608150436168,-34.7609004610021,-34.7609859450884,-34.7610759381668,-34.7611614355934,-34.7612514820326,-34.7613506398375,-34.7614229838138,-34.7614773585229,-34.7614957279965,-34.7615311996235,-34.761563576321,-34.7616583451957,-34.7617441094265,-34.76183442267,-34.7619201869008,-34.7620102867009,-34.7621407673264,-34.7622217290805,-34.7622845881652,-34.7623429515981,-34.7624148820277,-34.7625183754019,-34.7626128641322,-34.7627027905095,-34.7627792299313,-34.7628511470208,-34.7628823631197,-34.7629000789229,-34.7629358573747,-34.7629670601335,-34.7629802802848,-34.762979920099,-34.7629876440825,-34.7630017313476,-34.7630284251143,-34.763059627873,-34.763091284199,-34.7630905238068,-34.7630946859534,-34.7631123217152,-34.7631214597613,-34.763180250081,-34.7632289151788,-34.7633234039091,-34.7633885975311,-34.7634069269841,-34.7633918658833,-34.7633714019962,-34.7633090498396,-34.763223232248,-34.7631419236484,-34.7630651107007,-34.7629882710725,-34.7629204494285,-34.762870557031,-34.7628613389437,-34.762852227578,-34.7628428760886,-34.7628560695595,-34.7628692496901,-34.7628823764599,-34.7628865386064,-34.7629042410694,-34.7629129255482,-34.7629036140794,-34.7629077362053,-34.7629344833328,-34.7629612304603,-34.7629969688915,-34.7630372029746,-34.7630774637381,-34.7631177378418,-34.763148967281,-34.7631712054164,-34.7632024215154,-34.7632471912709,-34.7633191083604,-34.7634090347378,-34.7634944788034,-34.7635799228691,-34.763642795294,-34.7637146056618,-34.7637773847053,-34.7638221811412,-34.763948046053,-34.7639473123413,-34.7639929892313,-34.764022871309,-34.7640428416082,-34.7640643727123,-34.7640843430115,-34.7641111168194,-34.7641568470704,-34.7641848348377,-34.7641859954363,-34.7642070462927,-34.7642379288863,-34.7642499350782,-34.7642637955597,-34.7642667304067,-34.7642566318653,-34.7642648494366,-34.7642805375274,-34.7642852199422,-34.7642887150781,-34.7642891152845,-34.7642773091957,-34.7642626483014,-34.7642241617863,-34.7641607290724,-34.764111023438,-34.7640339837066,-34.7639212188842,-34.7638938314265,-34.7638077870512,-34.7636874983486,-34.7636139270726,-34.7635311910702,-34.7634196402073,-34.7633397590105,-34.7632743652853,-34.7632312363759,-34.7631508749314,-34.7631198989564,-34.7631018229674,-34.7631355870471,-34.7631948709547,-34.7632001803595,-34.7631990464414,-34.7632123066133,-34.7633071021685,-34.7633073156119,-34.7633292869431,-34.7634044990652,-34.763491197111,-34.7636202503337,-34.7636981705191,-34.7637777315508,-34.7638970997787,-34.7640554614499,-34.7641583411743,-34.7642474404584,-34.7643754931651,-34.7645390441792,-34.7646416037384,-34.7647272212269,-34.7648574350482,-34.764919800545,-34.7649482819002,-34.7649937186665,-34.7649966801938,-34.7651411280226,-34.7651989845273,-34.7651947823601,-34.7652076423257,-34.7654463654413,-34.7656265650415,-34.7658654749201,-34.7659917800589,-34.7660400182699,-34.766091137967,-34.7662250737078,-34.7663473767826,-34.7664048464211,-34.7664392374908,-34.7664553658086,-34.7664243631531,-34.7664275114434,-34.7664722678588,-34.766453764983,-34.7664799384814,-34.7665306446318,-34.7665834318556,-34.7666667014665,-34.7668184597321,-34.7669337458548,-34.7670330637422,-34.7671573144882,-34.7672775231495,-34.7673790421721,-34.7674735175622,-34.7675898842421,-34.7677488729033,-34.7678871575536,-34.76803708821,-34.7682178080785,-34.7683089884359,-34.7684266224361,-34.7685532343998,-34.7686618370756,-34.7687343144541,-34.7687979072505,-34.7688838315639,-34.7690553733657,-34.7691294382295,-34.7691638026188,-34.7692271286109,-34.7693087040148,-34.7693857704266,-34.7694875028926,-34.7695619679628,-34.769615408857,-34.7696899406283,-34.7697285205249,-34.769788778268,-34.7698740088903,-34.7699702852091,-34.7700425224637,-34.7701291404682,-34.7702091550671,-34.7702465210043,-34.7703590457029,-34.7704061566658,-34.7704486519151,-34.7705146793004,-34.7705663125957,-34.7706209207585,-34.7706692923717,-34.7707143356016,-34.7707534290965,-34.770786372753,-34.770823411855,-34.7708604642973,-34.7708791005751,-34.7708954156559,-34.7709404121951,-34.7709977350913,-34.7710570390092,-34.7711056774266,-34.7711998126412,-34.7712919268135,-34.7714267363382,-34.7715430229769,-34.7717086950849,-34.7717821796494,-34.7718377149571,-34.771929989212,-34.7720016861879,-34.7720899183582,-34.7721024714988,-34.7721109625445,-34.7721336809277,-34.7721582936211,-34.7721543782685,-34.7721724475873,-34.772313827167,-34.7724139187868,-34.7724879236197,-34.7725828925976,-34.7726729123564,-34.7728501504293,-34.7729836392729,-34.7730279954819,-34.7730610125096,-34.7732178200459,-34.7733206730899,-34.773429295776,-34.7735822279804,-34.773678050732,-34.7737679104083,-34.7738855310683,-34.7739661259665,-34.7740474145557,-34.7741397288312,-34.7742052426183,-34.7742323032409,-34.7743164332956,-34.7744079871789,-34.7744488749324,-34.7744571458647,-34.7744928642855,-34.774568970202,-34.7746182489496,-34.7746417210548,-34.7746757852892,-34.7747297531218,-34.7747825336755,-34.7748149704039,-34.7748933374865,-34.7749725049818,-34.7750844493811,-34.7751879761058,-34.7752882878391,-34.7754063487262,-34.7755181663934,-34.775600975767,-34.7757025281401,-34.7757663277099,-34.77585642751,-34.7759278376714,-34.7759762226247,-34.7760279359613,-34.7760926960264,-34.776132903429,-34.7762044403224,-34.7762363301021,-34.7762761306283,-34.7763660436654,-34.776530061587,-34.7766002511188,-34.7766904309602,-34.7768887532401,-34.7770331610482,-34.7772000271053,-34.7773578618381,-34.7775065185041,-34.777623632236,-34.777653919045,-34.7777182677086,-34.7778264101471,-34.777988573779,-34.7781507574213,-34.7782545309399,-34.7783628267909,-34.778452993292,-34.7785746360263,-34.7786782294521,-34.7788087834488,-34.7789483354193,-34.7790788160448,-34.7791957830344,-34.7792902117337,-34.7793666311451,-34.7794249545573,-34.779474233305,-34.7795628723517,-34.7796024527644,-34.7796980620725,-34.7797307322547,-34.7797354880407,-34.7797448995612,-34.7798985254567,-34.7800257644103,-34.7801636621944,-34.780306909404,-34.780376665379,-34.7805212199294,-34.7806236194061,-34.7807307279781,-34.7808726144859,-34.7809891612587,-34.7810402742857,-34.7810937351902,-34.7811984025032,-34.7812815920728,-34.7814430886941,-34.7815523517105,-34.7816786901998,-34.7818005263672,-34.7819629834838,-34.7821028756298,-34.7822607837337,-34.7823781175791,-34.7825179830446,-34.7827208476671,-34.7828605997408,-34.7831040452919,-34.7832303837812,-34.7833459100277,-34.7834964543339,-34.7836227327923,-34.783726633043,-34.7838730485532,-34.7839566983602,-34.7841233176234,-34.7842539850119,-34.7843891880729,-34.7844792745328,-34.7846284181166,-34.7847043906309,-34.7848030681881,-34.7848846102415,-34.7849746633508,-34.7850392166426,-34.7851051439764,-34.7852131129921,-34.785312084034,-34.7854360079447,-34.785505537136,-34.785577420875,-34.7856629583221,-34.7857531181532,-34.7858695115136,-34.7859560294664,-34.7861589808003,-34.7862627142983,-34.7863529475005,-34.7864296670668,-34.7864883506647,-34.7865493087691,-34.7866283161819,-34.7867320763603,-34.7867610513035,-34.7868100165561,-34.7868494568965,-34.7868964878182,-34.7869397634699,-34.7870344389631,-34.7870834242261,-34.7871381924715,-34.787228445684,-34.7873232479093,-34.7874045431687,-34.7874516608018,-34.787508296677,-34.7875662665735,-34.7876209280973,-34.7876788046123,-34.7877244681622,-34.7878099922692,-34.7878581304286,-34.7879045076798,-34.7879673801047,-34.7880132170774,-34.7880573264924,-34.7881136488726,-34.78817854901,-34.7882278144174,-34.7882770598145,-34.7883218229,-34.7883661057378,-34.7884914770616,-34.7886258330191,-34.7886999579139,-34.7888125960042,-34.7889207050922,-34.7890498316861,-34.7890962089373,-34.789186342088,-34.789276501919,-34.7893802487573,-34.7894660463386,-34.7895518706004,-34.7896287702595,-34.7897146278718,-34.7898000852777,-34.7898765180294,-34.7899620421363,-34.7900523553798,-34.7901423084376,-34.7902326083409,-34.7903273705455,-34.7904176571086,-34.7904989590381,-34.790553320407,-34.7905897058385,-34.7906170932963,-34.7906489630657,-34.7906808861959,-34.790694719997,-34.7907175851225,-34.7907944647713,-34.7908938093392,-34.7909456494078,-34.7909885915541,-34.7910832270267,-34.7911514755576,-34.7912004207999,-34.7913131789521,-34.7913989365128,-34.7914712404685,-34.7915571514417,-34.7916339977399,-34.791710830698,-34.7917921926584,-34.7918870349043,-34.7920000198402,-34.7920858374319,-34.7921761306651,-34.7922800242456,-34.7923479059206,-34.7924338102237,-34.7925106631921,-34.7925785448671,-34.7926418908695,-34.792705236872,-34.7927595982409,-34.7928022602428,-34.7928392259736,-34.7928734302803,-34.7929361426227,-34.7930106343733,-34.7931131472418,-34.7931656876716,-34.7932423071863,-34.7933339411109,-34.793393445132,-34.7935367990632,-34.793649964092,-34.7937491485773,-34.7938302704139,-34.7939115590032,-34.7940334552015,-34.7940780048436,-34.7941530368728,-34.7942187641034,-34.7942459181074,-34.7942672691187,-34.7942907679043,-34.7943011332499,-34.7943330897307,-34.7943892787088,-34.7944437334592,-34.7945051051101,-34.794540883562,-34.7945790966028,-34.7946182301182,-34.7946687428356,-34.7947176747377,-34.7947860233202,-34.7948646838874,-34.7949323187685,-34.7949898684483,-34.79506692819,-34.7950984311035,-34.7951477298615,-34.7952365756815,-34.7953529423615,-34.7954756323025,-34.795577017923,-34.7956406707504,-34.7957218392777,-34.7957758738114,-34.7958864575089,-34.7959787851246,-34.7960727936072,-34.7961545824545,-34.7962949948687,-34.7964209931826,-34.796530502993,-34.7966332893359,-34.7966913259335,-34.7968398091767,-34.7968979925167,-34.7970011990763,-34.7971696192682,-34.7972088061446,-34.7972863061133,-34.7974050740316,-34.7974910517058,-34.7975822053828,-34.7976899809654,-34.7977881049038,-34.7978985618693,-34.7979639822749,-34.7980565300041,-34.7981576354802,-34.7982539518196,-34.7983218201544,-34.7983928301094,-34.7984780340512,-34.7985619039717,-34.7986267440781,-34.7987182245903,-34.7988151012187,-34.7989145258278,-34.799060307678,-34.7991535824488,-34.7992797141648,-34.799370941213,-34.7994152307208,-34.7995638873869,-34.7996643458626,-34.7997260710291,-34.7998198327178,-34.7998894019297,-34.7999465113825,-34.7999908609214,-34.800090125448,-34.8001706069544,-34.8002338062145,-34.8003464643152,-34.8004468961104,-34.8005432924911,-34.8006577115,-34.8007065433505,-34.8007605178532,-34.8008507844059,-34.8009544512029,-34.8010423832184,-34.8011420012606,-34.8012423997053,-34.8013394030658,-34.8014600252737,-34.8015561882007,-34.8016421792152,-34.8017577054617,-34.8018214716809,-34.8018942758945,-34.8019750175351,-34.8020556124333,-34.8021895348338,-34.8022603913763,-34.8023515650636,-34.8024402107805,-34.8025091996931,-34.8025924159432,-34.8026949288117,-34.8027791455778,-34.8028747348757,-34.8029640742836,-34.8030418010359,-34.8031309536809,-34.8031763437564,-34.8032070195767,-34.8032849797828,-34.8033106196726,-34.8033388809143,-34.8033674423108,-34.80338615863,-34.803403741031,-34.8034352506146,-34.8034928136347,-34.8035304863968,-34.8036614539401,-34.8037562828458,-34.8038041475309,-34.8039138174238,-34.8039687190713,-34.8040445448433,-34.8041219514305,-34.8042034601333,-34.8042721088705,-34.8043631291453,-34.8044362535241,-34.8045027811674,-34.8046381176306,-34.8047587331684,-34.8037975708057,-34.8025192515438,-34.8022311362887,-34.802535033016,-34.8022709701654,-34.8023694809699,-34.8050366231501,-34.8062744481948,-34.8065820268209,-34.807587005114,-34.810791757887,-34.8114988825692,-34.8120781613181,-34.8138005362576,-34.8161006900109,-34.8165528223486,-34.8126521994908,-34.8122672321601,-34.8119576188064,-34.8117184406115,-34.8102828220824,-34.809494542213,-34.8091502446499,-34.8106004658995,-34.8108525358984,-34.8120873794054,-34.8121450896529,-34.8133188531283,-34.8133455046397,-34.8134588183662,-34.8135572339431,-34.8149344971255,-34.8151835891409,-34.8154877930858,-34.8162704834059,-34.8170711563334,-34.8165698311205,-34.8160611554501,-34.815254812932,-34.8147430823527,-34.8135278889798,-34.8128341886521,-34.8115538541948,-34.8111067878725,-34.8096611551165]}]],[[{&#34;lng&#34;:[-56.2359231388955,-56.2358134156417,-56.2357702667221,-56.2357638667548,-56.2358120749503,-56.2358536030341,-56.235883565153,-56.2358366209426,-56.2358370911852,-56.2358342330445,-56.2358276596544,-56.235808116242,-56.2357781141025,-56.2357435696204,-56.2357280349421,-56.2357161955028,-56.2356937706044,-56.235635560584,-56.235572931618,-56.2355266911039,-56.2355050766234,-56.2354989866205,-56.2355026487046,-56.2354739108265,-56.2354202828931,-56.2353389842987,-56.2352648560689,-56.2351211652972,-56.2350006664862,-56.2348918837175,-56.2347950504447,-56.2346780334294,-56.2345664125303,-56.2344339675584,-56.2343259084962,-56.2342429690556,-56.2341034170851,-56.2339997969788,-56.2338961601974,-56.2337949846852,-56.2330289027284,-56.23292606324,-56.2326105784218,-56.2329891318624,-56.2329697957809,-56.2328906883165,-56.2328392751347,-56.2326852123473,-56.232542925633,-56.2324954578193,-56.2324281731189,-56.2323993449181,-56.2323995850419,-56.232353728059,-56.2322595861743,-56.2321500596887,-56.2320579655267,-56.2320041189009,-56.2319192805471,-56.23186703706,-56.2317771873889,-56.2316871242744,-56.2315949900917,-56.2314991206494,-56.2314127294286,-56.2313055107999,-56.231214740654,-56.2311274089482,-56.2310280643803,-56.2309246843979,-56.230830525838,-56.2307499576202,-56.2306649537815,-56.2305576084208,-56.2304875856416,-56.2304236626749,-56.2303532330192,-56.230272891585,-56.2302203740138,-56.2310010404434,-56.2322567659598,-56.2329657395806,-56.2333981622307,-56.2335734987971,-56.2339647001043,-56.2343400766757,-56.2348182546421,-56.2353272243452,-56.234628224747,-56.2342065721136,-56.2341299613011,-56.2337524610562,-56.2333754151793,-56.2325509865086,-56.2323741493234,-56.2313201180474,-56.2311465748404,-56.2304986563064,-56.2294532667879,-56.2292858809395,-56.2256243011385,-56.2255668989138,-56.2250231655735,-56.2243566484604,-56.2243273863028,-56.2238621520693,-56.2239488448802,-56.2239893069755,-56.2240040792211,-56.2237730327749,-56.2224965678026,-56.222434095584,-56.2222629639938,-56.222206668294,-56.2221492086606,-56.2220317247378,-56.2219535129808,-56.2219302990966,-56.2219154083552,-56.2218561066656,-56.2218447549793,-56.221795119381,-56.2217101795189,-56.2216130918989,-56.221414947157,-56.2213494552288,-56.221065522215,-56.220942580933,-56.2209795787858,-56.2208183330363,-56.2210313187282,-56.221005555492,-56.2209149160113,-56.2208972369134,-56.2208252960344,-56.2205446702436,-56.2202737552513,-56.2202579717947,-56.2202477720963,-56.2201331811061,-56.2199551086966,-56.2199508955365,-56.2198474648602,-56.2200165221129,-56.2200550152981,-56.2206528457481,-56.2206701558697,-56.220788957144,-56.2206444993101,-56.2205468731556,-56.2205284626774,-56.220524010001,-56.2205046438497,-56.220469809218,-56.2203900900667,-56.2202788107151,-56.2201678601618,-56.2201454441548,-56.2207256144766,-56.2212557111944,-56.2220702679488,-56.2228395747305,-56.223622761943,-56.2241357398322,-56.2249073077495,-56.2256994165198,-56.226477460851,-56.2269914559314,-56.2272847004984,-56.2277758487957,-56.228063665564,-56.2283032191079,-56.2288724226607,-56.2296468453837,-56.229926872185,-56.2304207939783,-56.2305654349785,-56.2306501594581,-56.2310520178977,-56.231210418425,-56.2313332962704,-56.231637361944,-56.2320012479441,-56.2320370807093,-56.2322308880406,-56.2328040136161,-56.2335459996106,-56.235638251972,-56.2361779269629,-56.2367516295026,-56.2374299093089,-56.2379769340888,-56.2383726821877,-56.2400332309943,-56.2408518343402,-56.2408310366906,-56.240783322083,-56.2407102043743,-56.2406679992747,-56.2406497665383,-56.2406310602243,-56.2406138280039,-56.2405821049769,-56.2405909728836,-56.240574294282,-56.2405211168571,-56.2404133379394,-56.2403661202547,-56.2403267099298,-56.2403129394947,-56.2402830507469,-56.240277047651,-56.2402680129916,-56.2402559267584,-56.2402383576976,-56.2402204651366,-56.2401562119996,-56.2401035281625,-56.2400171202665,-56.2399467639819,-56.2398677832495,-56.2397635294832,-56.2396798730061,-56.2395961998537,-56.2395554054817,-56.2396120313517,-56.2395934784502,-56.2396083727983,-56.239591464078,-56.2395691759168,-56.2395601879481,-56.2396202289128,-56.2396505145318,-56.2396100603352,-56.2395464275182,-56.2394726361287,-56.2394247147478,-56.2393414017811,-56.2392230874301,-56.2391274614466,-56.2390553976148,-56.2389636136128,-56.2387915515426,-56.2387480257619,-56.2386722300055,-56.2385800391269,-56.238482065266,-56.2384007833468,-56.2382881252461,-56.2382356364615,-56.2381487403246,-56.2380751439242,-56.2380611339066,-56.2380089612741,-56.2379288846053,-56.2378600133774,-56.2378027533344,-56.2376411478029,-56.2375222106407,-56.2375243967887,-56.2375477600875,-56.2375281218922,-56.2375919462088,-56.2376025416732,-56.2376018813326,-56.2376015644479,-56.2385029488239,-56.2385295132157,-56.2394709022571,-56.2395002532687,-56.2398794826165,-56.2398933531032,-56.2402907180345,-56.2408659446936,-56.2418442273428,-56.2419075154554,-56.2419431869216,-56.2422946681895,-56.2421380240708,-56.2407878811009,-56.2398950689146,-56.2392448884273,-56.2396462890193,-56.2397286248153,-56.239810877235,-56.2398791057555,-56.2399309224787,-56.2399587901841,-56.2399586367717,-56.2399209873549,-56.2398424235042,-56.2397535943594,-56.239682497693,-56.2396397489797,-56.2396229069606,-56.2395872819212,-56.239537659663,-56.2394571114556,-56.2393176395263,-56.2392195689488,-56.2391601082834,-56.2391122369283,-56.2390513221797,-56.239006482388,-56.2389587777855,-56.2389004910589,-56.2388399631764,-56.2387931156826,-56.2388094534869,-56.2388083967122,-56.23880615917,-56.2388042857935,-56.238748862929,-56.2386942486969,-56.2386674511878,-56.2386729404303,-56.2386785471536,-56.2387135302087,-56.2387761599187,-56.2387416624802,-56.2386775060598,-56.2386353309757,-56.238611075133,-56.2385983452345,-56.2385462917225,-56.2384884752384,-56.2384241087096,-56.2383635374715,-56.2383005149692,-56.2382464771005,-56.2381866562493,-56.2381414529368,-56.2381123212462,-56.2380869014699,-56.2380751854276,-56.2380344644268,-56.2379842051734,-56.2379458954161,-56.2378893829379,-56.237844906667,-56.237805489672,-56.2378090314986,-56.2378266572553,-56.237845223497,-56.2379134286722,-56.2379436442551,-56.2379870733193,-56.2380129366577,-56.2380522869516,-56.2380726007613,-56.2380772531607,-56.2380801746674,-56.2380933848135,-56.238028974929,-56.2380268204846,-56.2379393853921,-56.237836585709,-56.2377225835818,-56.2374333718061,-56.2373553942129,-56.2373037709228,-56.2372470483361,-56.2371768588043,-56.2371016967079,-56.2370781812471,-56.2370745093534,-56.2370674223651,-56.2370454843845,-56.237053465167,-56.2370471919317,-56.2370172731685,-56.2369602104065,-56.2369013733961,-56.2368449309539,-56.236787374604,-56.2367383359802,-56.2367013969297,-56.236645294663,-56.2366003314744,-56.2365752151879,-56.2365722903462,-56.2365738511511,-56.2365720568924,-56.2365814250572,-56.2366019556453,-56.2366035131152,-56.2366432702857,-56.236537745864,-56.2364604960243,-56.2364102434411,-56.2363830127309,-56.23636325254,-56.2363422350341,-56.2363311393118,-56.2363115291983,-56.2362841951014,-56.2362577114431,-56.2362548533024,-56.2362400890215,-56.2361847137964,-56.2361200971386,-56.2360569145537,-56.236056744466,-56.2360047409798,-56.2359231388955],&#34;lat&#34;:[-34.7870055840819,-34.7869067864628,-34.7868077687302,-34.7866815903234,-34.7865507361719,-34.7864514449649,-34.7863612117626,-34.7862531960562,-34.7861360089531,-34.7860368644884,-34.785946744678,-34.7858566715583,-34.7857215552087,-34.7855639205792,-34.7854558048211,-34.7853341554167,-34.7852125393629,-34.785104557007,-34.7850010969833,-34.7848975835988,-34.7848030081572,-34.7845843590885,-34.7845776652754,-34.7845463057938,-34.7844877855888,-34.7844069238864,-34.7843260355035,-34.7841912860097,-34.7841240646753,-34.7840793416105,-34.7840345851951,-34.7839808774967,-34.7839136294818,-34.783846448168,-34.7838107364173,-34.7837433950209,-34.7836897606936,-34.7836540356026,-34.7836138015196,-34.7835778629851,-34.7839563390403,-34.7838253438985,-34.7834393171826,-34.7832596493861,-34.7832318045139,-34.7831816186318,-34.7831508761104,-34.7830960478341,-34.7830298003352,-34.7829990444736,-34.7829471977349,-34.7829377862145,-34.7829376061216,-34.7829066168063,-34.7828528357367,-34.7827945923657,-34.7827408046261,-34.782713547866,-34.7826809001077,-34.782651271785,-34.7825659211008,-34.7825076176989,-34.7824448119751,-34.7823865285835,-34.7823101825432,-34.782233903204,-34.7821710908101,-34.7821127807381,-34.7820409837105,-34.7819827203293,-34.7819244235975,-34.781852573209,-34.7817807294907,-34.7816774095393,-34.7815965011461,-34.7815065680987,-34.7814121393994,-34.7812411312061,-34.7811055025204,-34.7807115047308,-34.7800320834218,-34.7797876088926,-34.7796897133658,-34.7796650175551,-34.779628780153,-34.7796130818546,-34.7796393084287,-34.7797173262982,-34.7794975361899,-34.7793649512467,-34.7793408614524,-34.7792481862867,-34.7791965571377,-34.7789903588662,-34.7788396046395,-34.7786275220301,-34.7784890452058,-34.7783338323397,-34.7779494223652,-34.7780445293316,-34.7767915213093,-34.7769569405351,-34.778523812232,-34.7806023050084,-34.7807319824919,-34.7827936452106,-34.7844906674103,-34.7859457543893,-34.7865033847436,-34.7860750241684,-34.786705469305,-34.7873817113937,-34.7892391226416,-34.7898477431894,-34.7905014403178,-34.7918448865007,-34.7927955358265,-34.7930006959145,-34.7931706925647,-34.7938476886062,-34.7939772795636,-34.7945498215048,-34.7950903906398,-34.7961874110883,-34.7982899556507,-34.7989451858093,-34.7990671699931,-34.8001262869785,-34.800686366278,-34.8024473881041,-34.8023488070095,-34.8026678222079,-34.8034307707917,-34.8036426713614,-34.804504937664,-34.8076741269038,-34.8078320637739,-34.8080245572935,-34.8082598853951,-34.8096611551165,-34.8111067878725,-34.8115538541948,-34.8128341886521,-34.8127275028668,-34.8127048511848,-34.812332221495,-34.8123214319443,-34.8122473819229,-34.813829778005,-34.8150764873838,-34.8152954636506,-34.8153240185013,-34.8154482126732,-34.8159756380132,-34.8168251636535,-34.8180674701579,-34.8192846979134,-34.8196361866287,-34.8192784680338,-34.8189748581211,-34.818508117411,-34.8180098775053,-34.8175568268061,-34.817248754592,-34.8167689404729,-34.8162883858223,-34.8158397546013,-34.8155310820777,-34.8153549712528,-34.8150678730211,-34.8148883039139,-34.8147525405639,-34.8144300075587,-34.8139662217058,-34.8137877680841,-34.813449453669,-34.8135862412841,-34.8136811233526,-34.8141208385855,-34.814285186204,-34.8144195381421,-34.8147553019881,-34.8151368773693,-34.8151783521494,-34.8153934044071,-34.8160495961553,-34.8168043987597,-34.8156478689744,-34.8153613211943,-34.8150464788221,-34.8146813638563,-34.8143817484241,-34.8141733418563,-34.813255228224,-34.8128079989916,-34.8127291237027,-34.8126075943603,-34.8124590977768,-34.8123465597381,-34.8122474686342,-34.8121213302481,-34.8120177301522,-34.8118826204727,-34.8116662555545,-34.8115356081763,-34.811414092174,-34.8113017742488,-34.8112117878405,-34.8111127567676,-34.8110181546456,-34.8109100855783,-34.8107974341477,-34.8106938007013,-34.8105946895871,-34.8104910828211,-34.8103919850472,-34.8103110699839,-34.8102211035859,-34.8101492732078,-34.8100773894689,-34.8099875031122,-34.8098977034669,-34.8098303687406,-34.8097585316924,-34.8096550049677,-34.8095691873761,-34.8094745985942,-34.8093754007687,-34.8092672850106,-34.8091772185611,-34.8090826030988,-34.8089967721669,-34.8089020299726,-34.8087984965778,-34.8087040612084,-34.8086276818176,-34.8085331864172,-34.808465851691,-34.8084346889529,-34.8083628852552,-34.8082910081864,-34.8082372204466,-34.8081070799966,-34.8080035599419,-34.8079361985353,-34.8078688904895,-34.807806111446,-34.8077342610576,-34.8076715287049,-34.8076694719196,-34.8076339506625,-34.8076038659772,-34.8075788187199,-34.8075640065864,-34.8075390830651,-34.8074791893155,-34.8074515585053,-34.807373575579,-34.8072414257817,-34.8071479064279,-34.8071008077029,-34.807051869367,-34.8069242699912,-34.8067849781548,-34.806645719669,-34.8065789358331,-34.8066877894934,-34.8066898258922,-34.8067617880305,-34.8066588822303,-34.8049649995453,-34.804899038861,-34.8030093176167,-34.802538721585,-34.801719183231,-34.8015968515563,-34.801575224685,-34.8013081602864,-34.8011869844596,-34.8001412584853,-34.7994713363674,-34.7996058234882,-34.7990677982077,-34.7990044321949,-34.798923043554,-34.7988371859417,-34.7987468793683,-34.798647634852,-34.7985439747252,-34.7984539549663,-34.7983775955858,-34.7982967538937,-34.7982113565188,-34.7981258590922,-34.7980312703104,-34.7979367348894,-34.7978422528292,-34.7977794137549,-34.7976762071953,-34.7975908898616,-34.797509954788,-34.7974244773717,-34.7973255196701,-34.7972310242697,-34.7971094882571,-34.7969879855951,-34.7968980458776,-34.7968125617912,-34.7967326286089,-34.7966601287488,-34.7965974469379,-34.7965449666964,-34.7963882620474,-34.7963310629747,-34.7962470305986,-34.7962062797464,-34.7961646566993,-34.7961080180732,-34.7960430237409,-34.795974429545,-34.7957673160646,-34.7956592803478,-34.795597288377,-34.795564758267,-34.7954612648929,-34.795366802843,-34.7952588471675,-34.7951598894658,-34.7950474181282,-34.7949574517302,-34.7948720076645,-34.794773003272,-34.7946784478407,-34.7945748744253,-34.7944802656331,-34.7943902525444,-34.7943047817982,-34.7942192777016,-34.7941112886756,-34.7940212955972,-34.7939177622024,-34.7938005684292,-34.7937013572635,-34.7935841167996,-34.7934937568653,-34.7933854876948,-34.7932546468835,-34.7931644203514,-34.7930381018724,-34.7929298660524,-34.7928306949073,-34.7927270281103,-34.7926323392769,-34.7925153656172,-34.7924207234745,-34.7923443841043,-34.792268098095,-34.7922053724125,-34.7919616682811,-34.7918910636487,-34.7918055995727,-34.791724657829,-34.7916122065016,-34.7914592142663,-34.7913240779063,-34.7911978928295,-34.7910717210928,-34.7909095374506,-34.7907923303372,-34.7906931992127,-34.7905761121613,-34.7904951704176,-34.7904007150378,-34.7903062463179,-34.79019376164,-34.7900767346195,-34.7899912238527,-34.7898967551328,-34.7897752124501,-34.7896626143804,-34.7895499496096,-34.7894462828127,-34.7893561496621,-34.7892434448706,-34.7891081684385,-34.7890045016415,-34.7888917034686,-34.7887433069367,-34.78865342058,-34.7885679498339,-34.7884418381282,-34.7883066950982,-34.7881940836882,-34.78808595459,-34.7879823544941,-34.7878337111682,-34.7877211197687,-34.787621975304,-34.787531882174,-34.7874464314382,-34.7873564983907,-34.7872800789793,-34.7871719165305,-34.7870774344703,-34.7870055840819]}]],[[{&#34;lng&#34;:[-56.2374333718061,-56.2377225835818,-56.237836585709,-56.2379393853921,-56.2380268204846,-56.238028974929,-56.2380933848135,-56.2380801746674,-56.2380772531607,-56.2380726007613,-56.2380522869516,-56.2380129366577,-56.2379870733193,-56.2379436442551,-56.2379134286722,-56.237845223497,-56.2378266572553,-56.2378090314986,-56.237805489672,-56.237844906667,-56.2378893829379,-56.2379458954161,-56.2379842051734,-56.2380344644268,-56.2380751854276,-56.2380869014699,-56.2381123212462,-56.2381414529368,-56.2381866562493,-56.2382464771005,-56.2383005149692,-56.2383635374715,-56.2384241087096,-56.2384884752384,-56.2385462917225,-56.2385983452345,-56.238611075133,-56.2386353309757,-56.2386775060598,-56.2387416624802,-56.2387761599187,-56.2387135302087,-56.2386785471536,-56.2386674511878,-56.2386942486969,-56.238748862929,-56.2388042857935,-56.2388083967122,-56.2388094534869,-56.2387931156826,-56.2388399631764,-56.2389004910589,-56.2389587777855,-56.239006482388,-56.2390513221797,-56.2391122369283,-56.2391601082834,-56.2392195689488,-56.2393176395263,-56.2394571114556,-56.239537659663,-56.2395872819212,-56.2396229069606,-56.2396397489797,-56.239682497693,-56.2397535943594,-56.2398424235042,-56.2399209873549,-56.2399586367717,-56.2399587901841,-56.2399309224787,-56.2398791057555,-56.239810877235,-56.2397286248153,-56.2396462890193,-56.2392448884273,-56.2398950689146,-56.2407878811009,-56.2421380240708,-56.2422946681895,-56.2419431869216,-56.2419075154554,-56.2418442273428,-56.2408659446936,-56.2402907180345,-56.2398933531032,-56.2398794826165,-56.2395002532687,-56.2394709022571,-56.2385295132157,-56.2385029488239,-56.2376015644479,-56.2376018813326,-56.2376025416732,-56.2375919462088,-56.2375281218922,-56.2375477600875,-56.2375243967887,-56.2375222106407,-56.2376411478029,-56.2378027533344,-56.2378600133774,-56.2379288846053,-56.2380089612741,-56.2380611339066,-56.2380751439242,-56.2381487403246,-56.2382356364615,-56.2382881252461,-56.2384007833468,-56.238482065266,-56.2385800391269,-56.2386722300055,-56.2387480257619,-56.2387915515426,-56.2389636136128,-56.2390553976148,-56.2391274614466,-56.2392230874301,-56.2393414017811,-56.2394247147478,-56.2394726361287,-56.2395464275182,-56.2396100603352,-56.2396505145318,-56.2396202289128,-56.2395601879481,-56.2395691759168,-56.239591464078,-56.2396083727983,-56.2395934784502,-56.2396120313517,-56.2395554054817,-56.2395961998537,-56.2396798730061,-56.2397635294832,-56.2398677832495,-56.2399467639819,-56.2400171202665,-56.2401035281625,-56.2401562119996,-56.2402204651366,-56.2402383576976,-56.2402559267584,-56.2402680129916,-56.240277047651,-56.2402830507469,-56.2403129394947,-56.2403267099298,-56.2403661202547,-56.2404133379394,-56.2405211168571,-56.240574294282,-56.2405909728836,-56.2405821049769,-56.2406138280039,-56.2406310602243,-56.2406497665383,-56.2406679992747,-56.2407102043743,-56.240783322083,-56.2408310366906,-56.2408518343402,-56.2408888831902,-56.2408607820311,-56.2408728916096,-56.240873475244,-56.2408965971685,-56.2408629831663,-56.2408068909047,-56.2408640603885,-56.2408645139557,-56.2407968323839,-56.2408095222618,-56.2408784144579,-56.2408667017507,-56.2408525311092,-56.240901443001,-56.2409490275415,-56.2410075443868,-56.2410745322675,-56.2411336460874,-56.2412142543258,-56.2412997083966,-56.2413646485546,-56.2414149911843,-56.2414468642887,-56.2414606413939,-56.2414929013645,-56.2414895763164,-56.2414927279418,-56.2415052077112,-56.2415178442282,-56.2416416647523,-56.2416697659114,-56.241700268309,-56.2417009153093,-56.2417256647399,-56.2417326516766,-56.2417502040621,-56.2417561004364,-56.2417305739384,-56.2417815568982,-56.2418536707559,-56.2418821120905,-56.2419500871469,-56.2420299916891,-56.2420891288543,-56.2421779813445,-56.2422494115162,-56.2423657781961,-56.2424579824149,-56.2425001541639,-56.2425432630629,-56.2426016098205,-56.2426579888966,-56.2426777224071,-56.2427157320096,-56.24278520784,-56.2428272928777,-56.2428865400997,-56.2429292154418,-56.2430608099751,-56.2431441329469,-56.2432384082337,-56.2433156680786,-56.2433785871943,-56.2434271389003,-56.2434699009538,-56.2435532706163,-56.243673312525,-56.2437737109697,-56.2438026258819,-56.2438359230541,-56.2439147770545,-56.2439739675805,-56.244039127852,-56.2441420876177,-56.2442124505723,-56.2442348954811,-56.2443538835129,-56.2444014613834,-56.2444599848988,-56.2445347701341,-56.2445723495147,-56.244653764836,-56.2446944258059,-56.2447797231293,-56.2448389870265,-56.2448661210202,-56.2449068020004,-56.2449511648795,-56.2449918658701,-56.2450128633657,-56.2450325735307,-56.2450485551061,-56.2450632893717,-56.2450795310812,-56.245096159657,-56.2451357333996,-56.2451841917241,-56.2452136269046,-56.245244809653,-56.2452724905954,-56.2452899129139,-56.2453323014414,-56.2454447994595,-56.2454862741824,-56.2455017755102,-56.2455197914681,-56.2455318176703,-56.2455569372918,-56.245564767997,-56.2455829773881,-56.2456132463319,-56.2456359180242,-56.2456497718357,-56.2456713362903,-56.2456851234007,-56.2457093358877,-56.2457456812986,-56.2457659184021,-56.245778678316,-56.2458064392997,-56.2458264362794,-56.2458620079579,-56.2459373134616,-56.2460261526115,-56.2461025987034,-56.2461311867803,-56.2461752828551,-56.2462108078429,-56.2462921031023,-56.2463515470925,-56.2464131855476,-56.2465102822896,-56.2465592808928,-56.2465938653955,-56.2466723191895,-56.2467873118275,-56.2468073888484,-56.2468057480022,-56.2468536993986,-56.2468641781361,-56.2468915455835,-56.2469102485624,-56.2469122829449,-56.246921921249,-56.2469750086275,-56.2469946054007,-56.2470181108564,-56.2470314443996,-56.2470495070483,-56.2470588985584,-56.2470813167867,-56.2471068099342,-56.2471146406393,-56.2471237186544,-56.2471704761018,-56.2471845433566,-56.247221482407,-56.2472482161943,-56.2472584214574,-56.2473016570885,-56.2473134698473,-56.2473937779309,-56.2474345522926,-56.2474642809578,-56.2475130994681,-56.2476387442663,-56.2476657848785,-56.247687836251,-56.2477311052325,-56.2477599334333,-56.2477736071519,-56.2478059038081,-56.2478184702889,-56.2478797752388,-56.2478995721152,-56.2479176614444,-56.247927213037,-56.2479443685512,-56.247996408723,-56.2480402713441,-56.2480591744262,-56.2480735951967,-56.2481488473395,-56.2481582521898,-56.2481849859771,-56.2482030953166,-56.2482156751377,-56.2482715906414,-56.2482802284294,-56.2482991115012,-56.2483219499463,-56.2483443748447,-56.2483667530524,-56.2483714488074,-56.2483887577341,-56.2484528974793,-56.2484856276924,-56.2484950525531,-56.2485076523845,-56.2485276360239,-56.2485445914349,-56.2485589321641,-56.2485798429483,-56.2486627056827,-56.2486705563982,-56.2486825425798,-56.2487005318573,-56.2487106770895,-56.2487318746883,-56.2487909718329,-56.2488137635872,-56.2488348811447,-56.2488626421284,-56.2488727406698,-56.2488818653757,-56.2488924041441,-56.2489056576459,-56.2489112805458,-56.2489270286675,-56.2489443375942,-56.2489789754578,-56.2490191495099,-56.2490553481785,-56.249104113328,-56.2491534921272,-56.2491804860487,-56.2492009566058,-56.2492119622818,-56.2492443523195,-56.2492567787281,-56.2492669973314,-56.2494355375853,-56.2494678008909,-56.2495118369348,-56.2495441202508,-56.2495606821255,-56.2495897771305,-56.2496070593768,-56.2497488124825,-56.2498505316083,-56.2499751225297,-56.2500936169736,-56.250218581421,-56.250318432917,-56.2504091997277,-56.2504847120047,-56.250577266404,-56.2506830276145,-56.2508021290381,-56.2508986921715,-56.2510017586589,-56.251114009883,-56.2512276751698,-56.251333796566,-56.2514437265931,-56.2515429711093,-56.251666201329,-56.2517729630554,-56.2518762696666,-56.2519402026385,-56.2519687506948,-56.2520522137388,-56.2520710234394,-56.2521145325449,-56.2521576124073,-56.2521644890477,-56.2527559900276,-56.2528806076294,-56.2529814596413,-56.2531287089149,-56.2532506251235,-56.2534313516622,-56.2535362124082,-56.2536189017199,-56.2537308127686,-56.2538561507419,-56.2539862111507,-56.2541055126776,-56.2542197582636,-56.2543114788996,-56.2544928057479,-56.2546221191047,-56.2547418141679,-56.2548650377174,-56.2549815111191,-56.2550995986865,-56.2552596745751,-56.2553335726862,-56.2554595376496,-56.2555695877385,-56.2556998615908,-56.2558224581503,-56.2559445211013,-56.2560815584416,-56.2561793221942,-56.2562158210176,-56.2564013033422,-56.2564127692555,-56.256482245086,-56.2566166944249,-56.2567222221816,-56.2568072660409,-56.2568359341591,-56.2568851595459,-56.2569692896006,-56.2570006457718,-56.2570247181866,-56.2570580420392,-56.2570921596345,-56.2571291587159,-56.2572348392905,-56.2572988045463,-56.2573232321378,-56.2573372460318,-56.257356776104,-56.2573190633212,-56.2573386134037,-56.2573854975831,-56.2574296803692,-56.2574801063752,-56.2575295918962,-56.2576110739185,-56.2575693990924,-56.2575348012494,-56.2574877970082,-56.2575424318514,-56.2575436724912,-56.2575986608501,-56.2576609729861,-56.2576909284349,-56.2577111655384,-56.2578520582003,-56.2579454063423,-56.2580183439581,-56.2580938028742,-56.258165239716,-56.2582425929424,-56.2583283771835,-56.2584883396803,-56.2586431795352,-56.2587742004393,-56.2588701099023,-56.2589653590247,-56.2590640499221,-56.2591712718859,-56.2592747652601,-56.2593731159821,-56.2594653568864,-56.2595276556821,-56.2595357331812,-56.2595218660296,-56.2594987674504,-56.2594602609249,-56.2594166717782,-56.2593802596662,-56.2593294734745,-56.259296156292,-56.2592942619817,-56.2592540145584,-56.2591907019065,-56.2591409429111,-56.2590829196537,-56.2590413982401,-56.2590555588764,-56.2591065651817,-56.2591657223572,-56.259227587596,-56.259327692556,-56.2594452665253,-56.2595691637556,-56.259680427804,-56.2597885969229,-56.2599092391412,-56.2599891670287,-56.2600979497974,-56.2602124688578,-56.2603930486541,-56.260484635888,-56.2605351219249,-56.2605612487325,-56.260643737941,-56.2607694627805,-56.2609130635057,-56.2609562791265,-56.2609840401102,-56.2610853590296,-56.2611161882624,-56.2611543346021,-56.2612118109108,-56.2612782518427,-56.2613192930087,-56.2613985605557,-56.2614262815187,-56.2615070431696,-56.2615644461071,-56.2616185139913,-56.261650590534,-56.2616843412734,-56.2617359478883,-56.2617657432545,-56.2618059840077,-56.261890841104,-56.2619969358198,-56.2621171044605,-56.2622396876798,-56.262364391993,-56.262502596602,-56.2627220497796,-56.2627943670755,-56.2629000282343,-56.2628856341442,-56.2629130549525,-56.2629945169645,-56.2629629940407,-56.2629618601226,-56.2630012537722,-56.2630597572773,-56.2631260447968,-56.2632183857527,-56.2633208385903,-56.2634317891437,-56.2635335349499,-56.2636386091394,-56.2637660415262,-56.2638725030978,-56.2639466946936,-56.2640392891136,-56.2641670216552,-56.2642950009908,-56.2644067652972,-56.26450892465,-56.2646167069027,-56.2647510828705,-56.2648637409712,-56.2649683749336,-56.2650575075683,-56.2651278238322,-56.2651950184862,-56.2652519745265,-56.2653270732568,-56.2655157972533,-56.265520906555,-56.2655940509441,-56.2656415087526,-56.2656760932554,-56.2658275246858,-56.2659631879842,-56.2661242777289,-56.2661259786061,-56.2661414665937,-56.2661606831708,-56.2661865031535,-56.2662099619185,-56.2662291985059,-56.2662346679933,-56.2662497824549,-56.2662594741198,-56.2662721273121,-56.266286014474,-56.2662962797681,-56.2663221664519,-56.2663811902253,-56.2664306290555,-56.2664673613326,-56.2664902264581,-56.2665162332037,-56.2665419598049,-56.2665624036817,-56.2665918788828,-56.2666183058452,-56.2666537441216,-56.2666837662715,-56.2667017955697,-56.2667240203649,-56.2667462451601,-56.2667582580221,-56.2668265999345,-56.2669087889881,-56.2670456462356,-56.2671367799022,-56.2673509303451,-56.2676512185447,-56.2678195120046,-56.2680925928394,-56.268124789444,-56.2682462854359,-56.2683047088997,-56.268363099013,-56.2684782117129,-56.2685675377807,-56.2687075833391,-56.2687498051139,-56.2688318074046,-56.2688819265857,-56.2689921901181,-56.2690409552675,-56.2691063275253,-56.2702770473668,-56.2713946581736,-56.2713844607785,-56.2715574474539,-56.2727789497325,-56.2756014780485,-56.2780265026776,-56.2808541943238,-56.2856870734299,-56.2888181081846,-56.2896957941631,-56.2929298020237,-56.2930463621367,-56.2942762697649,-56.2958529762461,-56.2971890091999,-56.2972817797833,-56.297398506649,-56.3066787634524,-56.3108384179671,-56.3102548304581,-56.3092543012769,-56.309384394707,-56.3094020568693,-56.309417678387,-56.3094339939673,-56.3094530436744,-56.3094710662944,-56.3094999608175,-56.3095278154605,-56.3095407154007,-56.3095539490492,-56.3095678760027,-56.3095818029565,-56.3096011595469,-56.3096239181928,-56.3096398866455,-56.3096575622462,-56.3096725168919,-56.3096843897039,-56.3097020249621,-56.3097199945645,-56.3097335751583,-56.3097471282653,-56.3097661249253,-56.3097831471916,-56.3098083868799,-56.3098288240328,-56.3098441249851,-56.3098600665134,-56.3098732865652,-56.3098844524496,-56.3098976463362,-56.3099105193094,-56.3099548626016,-56.3100776721576,-56.3101353287432,-56.3101599144373,-56.310188596382,-56.3102305778921,-56.3102694779134,-56.3102819239572,-56.3103415150807,-56.3103609247485,-56.3103817491031,-56.3104081495563,-56.3104410197926,-56.3104628712501,-56.3104874039216,-56.3105088679548,-56.3105262371353,-56.3105385500815,-56.3105523567555,-56.3105759024489,-56.3105911640473,-56.3106147493331,-56.3106494336923,-56.3106799294613,-56.3107339841047,-56.3107630523039,-56.3107935214043,-56.310818414628,-56.3108540457785,-56.3108693069838,-56.310889384041,-56.3109179322862,-56.3109451465796,-56.3109628619642,-56.3109798839747,-56.3110238270096,-56.311051774402,-56.3110892608252,-56.3111141403296,-56.3111383257737,-56.311215325826,-56.3112724614789,-56.3113165645746,-56.311395725649,-56.3114195779895,-56.3114563964712,-56.3114775408838,-56.3115027941594,-56.3115351975785,-56.311559423135,-56.3115801935919,-56.3116009511561,-56.3116248565869,-56.3116480155806,-56.3116701869836,-56.3116940662159,-56.3117250682785,-56.3117448386407,-56.3117659560674,-56.31179530493,-56.311816809206,-56.3118379535763,-56.3118741852534,-56.311897050308,-56.3119233442156,-56.3119439949144,-56.3119587488513,-56.311971795766,-56.3119801201561,-56.311980560205,-56.3119834282456,-56.3120133909157,-56.3120757826176,-56.312093938559,-56.3121175508624,-56.3121627476729,-56.3121722723436,-56.312169297507,-56.3121622540503,-56.312164068158,-56.3121679238244,-56.3121824109635,-56.3122023016585,-56.3122231522505,-56.312249445651,-56.3122715901995,-56.3122886127824,-56.3123101035334,-56.3123349965632,-56.3123612898977,-56.3123983623313,-56.31241056901,-56.3124312995796,-56.3124294853566,-56.3124239219691,-56.3124646766963,-56.3124885958299,-56.312506431757,-56.3125219061296,-56.3125339254025,-56.3125807233906,-56.312650359124,-56.3126851906606,-56.312780413072,-56.3128015305139,-56.3128278238113,-56.3128527700483,-56.3128801173752,-56.3129033565327,-56.3129317571967,-56.312952634761,-56.3130022869032,-56.3130501249735,-56.3131080618564,-56.3131716948851,-56.3131922388063,-56.3133162621983,-56.3133445707816,-56.313367448567,-56.3133998923767,-56.3134299213396,-56.3135384707848,-56.3135763702722,-56.3135999421166,-56.3136214465209,-56.3136433242803,-56.3137512069945,-56.3137836237362,-56.3138099171524,-56.313910596014,-56.3139416380217,-56.3139720006561,-56.3140064451567,-56.3140398756567,-56.3140674897417,-56.314104655794,-56.3141291886436,-56.3142051743835,-56.3142358570087,-56.3142610698997,-56.3142870031284,-56.3143722868432,-56.3143894029329,-56.3144030630585,-56.3144190580854,-56.3144336523392,-56.3144823704073,-56.3145049018562,-56.3145298615005,-56.3145554885718,-56.3145770326436,-56.314603659686,-56.3146248574644,-56.3146535385971,-56.3146914380473,-56.3147143172025,-56.3147371950158,-56.3148703174441,-56.3148976114822,-56.3149256125989,-56.3149563352855,-56.3149993837549,-56.3150222622131,-56.3150485562444,-56.3150871490474,-56.3151653364296,-56.3152124403329,-56.3152469248998,-56.3153585024906,-56.3153816744605,-56.3154154247562,-56.3154375696401,-56.3154644901796,-56.3155810172322,-56.3156066305175,-56.3156281349262,-56.3156540945132,-56.3156807222232,-56.3157008922564,-56.3157261585421,-56.3158297852893,-56.3159157897615,-56.3159313980788,-56.315952861928,-56.3159937101587,-56.3160145206109,-56.316036345483,-56.3160633194834,-56.316087558632,-56.316109783417,-56.3161350760702,-56.3161552732688,-56.3161757902863,-56.3162171587317,-56.3162438121749,-56.3162701326167,-56.3162940916488,-56.3163994790984,-56.3164255194515,-56.3164457167049,-56.3164717165693,-56.3165073082417,-56.3165264784432,-56.3165849881673,-56.3166045318998,-56.3166785699267,-56.316710426265,-56.3167340648679,-56.3167628533641,-56.3168252053488,-56.3168591430164,-56.3168800203863,-56.3169219089813,-56.3169452007088,-56.3169630367091,-56.3170190790083,-56.3170243885607,-56.3170275631216,-56.3170286835844,-56.3170281102517,-56.3170289108916,-56.3170307512033,-56.3170339529487,-56.3170487343748,-56.3170895550468,-56.3171101126571,-56.3171303359154,-56.3171488388329,-56.3172474501055,-56.317278265797,-56.3172960747347,-56.3173165920021,-56.3174079324947,-56.3174452316647,-56.3174715789281,-56.3174938033181,-56.3175122930727,-56.3175434160423,-56.3175660006682,-56.3176568875374,-56.3176896380282,-56.317715584533,-56.3177803914946,-56.3178062848939,-56.3178383280645,-56.3178659418992,-56.3178891144499,-56.3179085243396,-56.3179380107713,-56.3179876985637,-56.3180005984065,-56.3180134983021,-56.3180318007656,-56.3180497967998,-56.3180681132358,-56.3180799860334,-56.3180959271915,-56.3181064126461,-56.3181168848043,-56.3181273701927,-56.3181385364089,-56.318223806734,-56.3182568236362,-56.3182741926514,-56.3182959909707,-56.3183198161324,-56.3183422679022,-56.3183664673554,-56.3183923339942,-56.3184131178059,-56.3184706677666,-56.3185054189716,-56.3185289508919,-56.3185521225319,-56.3185841926834,-56.3186660748469,-56.3186953836042,-56.3187243851703,-56.3187523597103,-56.3187874711288,-56.3188205410435,-56.3188532513045,-56.3188788247358,-56.3189047311141,-56.3189313182596,-56.3189534495189,-56.3189895753109,-56.3190141076459,-56.3190563425082,-56.3190873456121,-56.3191278727105,-56.3191711352958,-56.3192014443557,-56.319257340001,-56.3192801651964,-56.3193482803141,-56.3193666362396,-56.3194411548726,-56.3194680881841,-56.3195055346605,-56.3195283464078,-56.3195508245302,-56.3195722621974,-56.319592672839,-56.3196650698189,-56.319683773349,-56.3197010754779,-56.3197173904577,-56.3197996595226,-56.319817682299,-56.3198295546746,-56.3198417481117,-56.319862678738,-56.3198697488373,-56.3198747382204,-56.3198783934623,-56.3198851171969,-56.3198986440339,-56.3199165600885,-56.3199334883466,-56.3199547925761,-56.3199679463783,-56.3199780849709,-56.3199882235637,-56.3200037784141,-56.3200189862517,-56.3200264032871,-56.320034433743,-56.3200424781847,-56.3200505219215,-56.3200578729957,-56.3200615281835,-56.3200621148378,-56.3200592733666,-56.3200557518939,-56.3200535770787,-56.3200527897283,-56.3200530033839,-56.320054577852,-56.3200531104477,-56.3200482275166,-56.3200395167073,-56.3200304716182,-56.3200193197687,-56.3200078468775,-56.3200026176685,-56.3199917721547,-56.3199823540404,-56.3199690668012,-56.3199617161105,-56.3199546991854,-56.3199518710496,-56.3199520981302,-56.3199537125519,-56.3199525781793,-56.3199459615973,-56.3199362765149,-56.3199286595354,-56.319918280412,-56.3199099561002,-56.3199019520925,-56.3198946548379,-56.3198546612561,-56.3198453099235,-56.3198289010108,-56.3198175222883,-56.319803101063,-56.3197937896853,-56.3197730456419,-56.3197612799208,-56.319751247942,-56.3197429503356,-56.3197281561688,-56.3197154426759,-56.3197025827318,-56.3196795975443,-56.3196389502549,-56.3196261568664,-56.3196161249454,-56.3196050926151,-56.3195940736332,-56.3195820409396,-56.3195696744975,-56.3195542263947,-56.3195418333427,-56.3195328551211,-56.3195272790314,-56.3195182741427,-56.3195062281578,-56.3194931411384,-56.3194773067275,-56.3194618452876,-56.3193826579406,-56.3193394753438,-56.3192966131605,-56.3192321933755,-56.3191608901812,-56.3191029803007,-56.3190512333526,-56.3189593857997,-56.318932652589,-56.3189131357722,-56.3188371365537,-56.3187460763939,-56.3187204226971,-56.3186971441827,-56.318674212667,-56.3186444635467,-56.3186221854598,-56.3186019887172,-56.3185978933476,-56.3185977996379,-56.318575174569,-56.3185579923018,-56.3185216539365,-56.3185018836028,-56.3184589812527,-56.3184351155929,-56.3184238168064,-56.3184026854034,-56.3184107034595,-56.3184208019125,-56.3184295398852,-56.3184490962703,-56.3184752564277,-56.3184835943906,-56.3184996556939,-56.3185258294546,-56.3185449993291,-56.3185749479694,-56.3185995468976,-56.3186036293009,-56.3186223855176,-56.31866309998,-56.3186881795747,-56.318717127995,-56.318764872837,-56.3188117233642,-56.3188878295643,-56.3189834920102,-56.3190500865286,-56.3191132918432,-56.3191815539201,-56.3192241494474,-56.3192761226551,-56.3193509878714,-56.3194581902283,-56.3195565611337,-56.319621861281,-56.319669258971,-56.3197205121215,-56.3197718855005,-56.3198440421022,-56.3198968427394,-56.3199687465752,-56.3200155174294,-56.3200693184455,-56.3201065245292,-56.3201481190321,-56.3201690364189,-56.320188420207,-56.320204121726,-56.320224105317,-56.3203070548048,-56.3203280652704,-56.3203837208837,-56.3203842140607,-56.3203847079888,-56.3203783715982,-56.3203512242968,-56.3203241833605,-56.3203042529839,-56.3202910993965,-56.3202644195074,-56.3202649125524,-56.3203486223584,-56.3203439269293,-56.320347781925,-56.3203613489677,-56.3204081735788,-56.3205272479363,-56.320643547933,-56.320707648078,-56.320931883183,-56.3211777036695,-56.3213576231729,-56.3215418781786,-56.3215874612601,-56.3216077520791,-56.3216484395461,-56.3216790422133,-56.3217050290954,-56.3217104314833,-56.3217594170835,-56.3217817083638,-56.3218319345273,-56.3219047982863,-56.3219778629702,-56.3220565303677,-56.3221633581959,-56.322230766315,-56.3223375819499,-56.3224414888626,-56.3225033869846,-56.3226214750167,-56.3227113078188,-56.3228009403623,-56.3228680285879,-56.3229295539766,-56.3229742297574,-56.323002084637,-56.3230017372882,-56.3230351284524,-56.3230401575006,-56.3230281912537,-56.3230161981362,-56.322936236883,-56.3228734577963,-56.3227541968526,-56.3227305445014,-56.3227226071735,-56.3227071059446,-56.3225475032107,-56.3224170890267,-56.3223069527024,-56.3222084749231,-56.3221274467349,-56.3220492600129,-56.3219291845888,-56.3216225730271,-56.321315454774,-56.3212138420541,-56.3210861229744,-56.3210799466544,-56.3210536392779,-56.3210299873628,-56.3210128318769,-56.3209953427046,-56.3209823630792,-56.3209757990599,-56.3208607265274,-56.3208499211179,-56.3208214000687,-56.3208070989156,-56.3207996421418,-56.3207993352143,-56.3208130084716,-56.3208267090446,-56.3208649954281,-56.3209119534104,-56.3209922080048,-56.3211180462854,-56.3212019161075,-56.3212508476652,-56.3213208171593,-56.3213908399719,-56.3214714016372,-56.3215694922774,-56.3216500538541,-56.3217341903402,-56.321821929191,-56.3218258243882,-56.3218257976065,-56.3218952333432,-56.3219780094158,-56.3220474322464,-56.3221123719936,-56.3221683476954,-56.3222422792734,-56.3223050580133,-56.3223969056605,-56.3224663551174,-56.3225402864287,-56.3226209547866,-56.3226881892127,-56.3227621606986,-56.3228608783788,-56.3229215098119,-56.3229619306484,-56.3230023379699,-56.3230315660147,-56.3230607680695,-56.3230922242397,-56.3231371808734,-56.3231888742061,-56.323247317202,-56.3232967567135,-56.3233506908397,-56.3233911383132,-56.323447220408,-56.3235055571146,-56.3235593452989,-56.323624365249,-56.3236847963021,-56.3238100874837,-56.3239130207672,-56.3239756930981,-56.3240294143724,-56.3240875644407,-56.3241926581347,-56.3242776358022,-56.3243514202395,-56.3244140390892,-56.32449890989,-56.3245524175707,-56.3246171040317,-56.3246683705097,-56.3247062164353,-56.3247417946982,-56.3247729975832,-56.3248064146409,-56.3248619505587,-56.3249041988109,-56.3249397367739,-56.3249663638555,-56.3249841066323,-56.3250085324186,-56.3250373739585,-56.3250751667308,-56.3250972582145,-56.32511941665,-56.3251235654308,-56.3251344240307,-56.3251430821408,-56.3251539006466,-56.3251690552308,-56.3251932280626,-56.3252151189286,-56.3252282328006,-56.3252278987085,-56.3252296730319,-56.3252313143408,-56.3252309670226,-56.3252327811767,-56.3252324746298,-56.3252322344948,-56.3252320345019,-56.3252340485852,-56.3252271115826,-56.325231300417,-56.3252310874373,-56.3252284861897,-56.3252349694138,-56.3252435469867,-56.3252544196431,-56.3252318344293,-56.3252337951291,-56.3252380373057,-56.3252645581399,-56.3252685199832,-56.3252814468153,-56.325283341116,-56.3252966676606,-56.3253299783596,-56.3253453597359,-56.3253639021354,-56.3253721734302,-56.3253837927901,-56.3254026692348,-56.3254337915411,-56.3254514542559,-56.3254915152675,-56.3255360976088,-56.3255896189988,-56.3256319742749,-56.3256877892829,-56.3257660698504,-56.3258890533945,-56.3259740301644,-56.3260008973365,-56.3260815389643,-56.3261241215245,-56.3261847122901,-56.326238553264,-56.3263148193037,-56.3263731432351,-56.3264247562367,-56.3264696326436,-56.3265324784662,-56.3265774351009,-56.3266313563175,-56.3267122781268,-56.3267909719953,-56.3268517097698,-56.3268900360851,-56.3269170500789,-56.3269418093707,-56.3269845784927,-56.3270519997899,-56.3271036933105,-56.3271548794102,-56.3271984221773,-56.327254650709,-56.3273063177357,-56.3274053420305,-56.327425632567,-56.3274639057207,-56.327580779303,-56.3276347801086,-56.3276617939922,-56.3276882345004,-56.3277205046345,-56.3277797081201,-56.3278278663858,-56.3278694480119,-56.3279198206091,-56.3279679789491,-56.328009573307,-56.3280511282565,-56.3280795827831,-56.3281211779737,-56.3281802351948,-56.3282283661148,-56.3282699345136,-56.3283070736015,-56.3283529775639,-56.3284023496791,-56.3284825905588,-56.3285477707897,-56.3286129510801,-56.3286505440254,-56.3286768777707,-56.3287057061315,-56.3287307722319,-56.3287670842419,-56.3288447239807,-56.3289010329622,-56.3289723232556,-56.3290311134175,-56.3290823665865,-56.3291148903749,-56.3291736404591,-56.3292186368267,-56.3292586174608,-56.3293010659425,-56.3293472631937,-56.3293746777092,-56.3294058670133,-56.3294307995628,-56.3294557462231,-56.3294781708812,-56.3295030641047,-56.3295429376953,-56.3295802900943,-56.3296089186816,-56.3296475513061,-56.3296799820377,-56.3297024066007,-56.3297298475907,-56.3297510185859,-56.3297946139991,-56.3298469078382,-56.3298929449674,-56.3299153299986,-56.3299352332139,-56.3299847925352,-56.3300800944781,-56.3301034669374,-56.3301106970491,-56.3301092965092,-56.3301103635884,-56.3301099632664,-56.330108349471,-56.3301104302476,-56.3301076423763,-56.3301124583249,-56.3301231570618,-56.3301176207393,-56.3301160731557,-56.3301107774114,-56.3301093099985,-56.3301077489346,-56.3301037870481,-56.3301010786998,-56.3301009323876,-56.3301007987032,-56.3300994248262,-56.3300991581575,-56.3301001985689,-56.3300871114495,-56.3300844572394,-56.3300817756635,-56.3300778137703,-56.3300712765975,-56.3300722775997,-56.3300707433709,-56.3300717836855,-56.3300777467989,-56.3300849642322,-56.3300935152994,-56.3301033066115,-56.3301131520746,-56.3301267053514,-56.330139005074,-56.3301588550225,-56.3301749434809,-56.33019482081,-56.3302096951487,-56.330229585082,-56.3303043437102,-56.3303380007622,-56.3303892009645,-56.3304367053916,-56.3304680151007,-56.3304980839274,-56.3305269519485,-56.3305633441233,-56.3305959876597,-56.3306361947403,-56.3306670907629,-56.3306877146689,-56.330712901057,-56.3307443975082,-56.3307884998592,-56.330839019288,-56.3308907261991,-56.3308983299245,-56.330917286799,-56.3309438332451,-56.3309539589248,-56.330969126258,-56.3309868958878,-56.3310136164882,-56.3310351073433,-56.3310642288539,-56.3310844794735,-56.3311009279199,-56.3311466050801,-56.3311859052658,-56.3312201362995,-56.3312455093371,-56.3313035523604,-56.3313288055609,-56.3313439462719,-56.3313591010815,-56.3313742418582,-56.3313923314295,-56.3314108207205,-56.3314296842498,-56.3315108325857,-56.3315419820238,-56.331562178901,-56.3315902335727,-56.3316186478531,-56.3317382697609,-56.3317669512026,-56.3317956327001,-56.3318177910032,-56.3318434042952,-56.331963479276,-56.3319860111249,-56.332007889009,-56.3320283663466,-56.3320488569789,-56.3321583935497,-56.3322071381081,-56.3322306702622,-56.3322835111706,-56.3323366851335,-56.3323902059776,-56.3324440737632,-56.3324737154977,-56.3325033712711,-56.332530998409,-56.3326086786432,-56.3326693499109,-56.332701046101,-56.3327265927574,-56.3327524597231,-56.3327797272112,-56.3328110764156,-56.3328301531035,-56.3328499230686,-56.3329359005572,-56.3329631680075,-56.3330132742438,-56.3330340451578,-56.3330544816997,-56.3330827634086,-56.3331515719115,-56.3332265172897,-56.3333018362968,-56.3333256885781,-56.3333543299211,-56.3334463773553,-56.3335384112875,-56.3335926130779,-56.3336768293261,-56.333765595754,-56.3338543614781,-56.3339325483331,-56.3340530901892,-56.3341308637019,-56.3341791422423,-56.3342440286163,-56.3343092624923,-56.3343667052268,-56.3344390495821,-56.3344902893998,-56.3345787350063,-56.3346422874168,-56.3346709687153,-56.3347806658748,-56.3348582523997,-56.3348855866416,-56.3348944310902,-56.334934091402,-56.3349597313483,-56.3349980176137,-56.3350356507384,-56.3350551672519,-56.3351163056887,-56.3351884761956,-56.3352751204702,-56.3353911938422,-56.3354820941658,-56.3356462856119,-56.3357691623718,-56.3359152909601,-56.3360699835127,-56.3361965828197,-56.3362972478896,-56.336701509225,-56.3371406427333,-56.3374224015186,-56.3375452645808,-56.3377256913047,-56.3380757783721,-56.3382449323473,-56.3384332694912,-56.338578224165,-56.3388231772538,-56.3389645433766,-56.3390927695283,-56.339289670955,-56.339381197878,-56.3394523283839,-56.3395367852287,-56.3395928672338,-56.3396355157858,-56.3396720682354,-56.3396808729412,-56.3396972815402,-56.3398000406903,-56.3399288142464,-56.3402004608905,-56.3398836973408,-56.3397043116611,-56.3394960037672,-56.3396478291997,-56.3397986938308,-56.3398309370507,-56.3398918748859,-56.340042645834,-56.3404017110948,-56.3406395936227,-56.3408067203323,-56.340998952362,-56.3414481308276,-56.3415686995773,-56.3418678404577,-56.3420313380022,-56.3421088445781,-56.34217422527,-56.3424082658832,-56.3424721125499,-56.3429665672827,-56.3430686332264,-56.3431864276134,-56.3433279673144,-56.3434858883436,-56.3436638601934,-56.3441129848307,-56.3446989874379,-56.3451865787961,-56.3455149882096,-56.3456648654847,-56.3459044025746,-56.346563742542,-56.347282939867,-56.3478790743388,-56.3484755415971,-56.3488655294933,-56.3491341749869,-56.3494034199259,-56.3495223213452,-56.3491936059076,-56.3488346351288,-56.3481774416558,-56.3467245536084,-56.3463359849588,-56.3465781631897,-56.3468470085067,-56.3470676689737,-56.3463993643118,-56.3461350946879,-56.3458339660548,-56.3456328223199,-56.3452428345265,-56.3449344888381,-56.3448057557805,-56.3443572311315,-56.3441299672591,-56.3439237409028,-56.3436892866554,-56.343485795043,-56.3433403200178,-56.3431756084051,-56.3430105499469,-56.3431611209335,-56.3429085506766,-56.342794398472,-56.342424691362,-56.3422962312025,-56.3421079246614,-56.3421378959514,-56.3431987355569,-56.3430997667012,-56.3434981670985,-56.3454808915472,-56.3463074281554,-56.346777728515,-56.3469009603526,-56.3456830091266,-56.3429796621666,-56.3426168495207,-56.3421424030666,-56.3418211571905,-56.3417255503034,-56.3421742506873,-56.3422318709902,-56.342433963636,-56.3425508227233,-56.3430558207402,-56.3435935637003,-56.3442851736606,-56.3453788406797,-56.3460859791644,-56.3464407211014,-56.3469169629639,-56.3471428247286,-56.3476847093792,-56.3483164224853,-56.3494250938822,-56.3502025802958,-56.3507176400155,-56.3512150076607,-56.3515788247026,-56.3522692867717,-56.3530507279382,-56.3535920167597,-56.353013657824,-56.3526023848479,-56.3519472803435,-56.3513069462731,-56.3506111599014,-56.3502621984319,-56.3492699513117,-56.3483678034659,-56.3477247654123,-56.347174449338,-56.3469112166656,-56.3468410514111,-56.3467427666847,-56.3466326460487,-56.3463445630844,-56.3458327252823,-56.3457232438157,-56.3455768691295,-56.344752530274,-56.3441258584734,-56.3439118047028,-56.3437843643432,-56.3434554018843,-56.3432920922782,-56.3431653775505,-56.3425491785639,-56.3422770736055,-56.3418361869256,-56.3413573247265,-56.3408588095672,-56.3402670978674,-56.3395263648563,-56.3388770060699,-56.338392804393,-56.3379095671489,-56.3376303255908,-56.3370931995363,-56.3365949087981,-56.3363177289249,-56.3361154291613,-56.3357847372305,-56.3355840223044,-56.3351330155316,-56.3345299922324,-56.33338164645,-56.3329499216171,-56.3314074888286,-56.3303611416315,-56.3298328294739,-56.3290141610651,-56.3287951632432,-56.3284123823637,-56.3281595788832,-56.3273111563713,-56.3272647908181,-56.3266697361122,-56.3258457733802,-56.3248141679145,-56.3242921199089,-56.323149019823,-56.3215812334152,-56.3203074152927,-56.3194388430897,-56.3182557327715,-56.3176832426685,-56.3171316976362,-56.3167657138249,-56.3163066408903,-56.315533412587,-56.3148862750115,-56.3142570748593,-56.3130147141169,-56.3129010322096,-56.3129350227252,-56.3127839485903,-56.312706647375,-56.3123731497658,-56.311930249621,-56.3116354032615,-56.3112863622517,-56.3110866390475,-56.3107949530334,-56.3104643612008,-56.3099293760352,-56.3096902443613,-56.309451772232,-56.3092321981195,-56.3089967509611,-56.3088993320491,-56.3088242920023,-56.3085439665433,-56.3084502283156,-56.3085027705795,-56.3086101372975,-56.3087541391111,-56.3087509716743,-56.3084908567432,-56.3082120428533,-56.3078415147098,-56.3073414957531,-56.3068417280292,-56.3064349412131,-56.3060486325802,-56.3056253097448,-56.3053118882032,-56.3047945629155,-56.3044998402842,-56.304222541777,-56.304017360693,-56.3039596042025,-56.3040488910939,-56.3039347804743,-56.3035459168612,-56.3031570515728,-56.3026580290468,-56.3022888839465,-56.3020134963643,-56.3019023178813,-56.3018277721986,-56.3017896033723,-56.3017490024393,-56.3016518811019,-56.3017623271408,-56.3016312936381,-56.3013902307452,-56.3007064905924,-56.3002807198209,-56.2993916406682,-56.2990399010223,-56.2988524944968,-56.2986661149852,-56.2984788341667,-56.2981094152267,-56.2975730872194,-56.2973492965417,-56.2973282747064,-56.2974540435182,-56.2973583378925,-56.2970063254393,-56.2968557954605,-56.2966314811501,-56.2962786892234,-56.296331317275,-56.2962367651356,-56.2961606583701,-56.296270173131,-56.2962485011012,-56.2960790010061,-56.2958911820071,-56.2957225824417,-56.2953888681251,-56.295202594649,-56.2950528254241,-56.2947006602951,-56.2941837684062,-56.2937936710199,-56.2935345112914,-56.2932944455664,-56.2930177456352,-56.2926837601482,-56.2923311963121,-56.2919247183199,-56.2916665933417,-56.2912262103869,-56.2909597324692,-56.2905126434916,-56.290203545803,-56.2897932279833,-56.2895136634611,-56.2891601795469,-56.2888259219326,-56.2886405412444,-56.288122334434,-56.287880566939,-56.2877488265369,-56.287764399936,-56.287815953343,-56.2877586527226,-56.287991173708,-56.2882915319683,-56.2883998661743,-56.2881582238873,-56.2876016685742,-56.2873231276894,-56.2868215150824,-56.286746547609,-56.2864861878908,-56.2863550912382,-56.2861498102017,-56.2858348889792,-56.285521146029,-56.2852444296143,-56.2848198688086,-56.2843955702456,-56.2839898508202,-56.283602053757,-56.2832316523634,-56.2827304044031,-56.2823406296124,-56.2819328824109,-56.2818738990242,-56.2818710011464,-56.281811045978,-56.2814030750812,-56.280720355308,-56.2803670651551,-56.2799220583454,-56.2798277024433,-56.2799727809342,-56.2800057158135,-56.2799287509608,-56.2798148877476,-56.2794420778745,-56.2791422666552,-56.2791187921715,-56.279109534401,-56.278845288915,-56.2789536050419,-56.2787685790646,-56.2789285405972,-56.2788491842335,-56.2785683318668,-56.2782902571702,-56.2779190035455,-56.2777862747521,-56.2777651344049,-56.2778553053697,-56.2777245626487,-56.2779249993244,-56.2779212893507,-56.2779348374247,-56.2777140750469,-56.2777633476351,-56.2778510959386,-56.277958356344,-56.277697788951,-56.2773469536474,-56.2768219848899,-56.2760406484761,-56.2756713634459,-56.2751165042899,-56.2740803179202,-56.2732474860653,-56.2725435398762,-56.2722457832266,-56.2721496532259,-56.2721832166106,-56.2724570506417,-56.2729329202871,-56.273390343307,-56.2737512466873,-56.2738774781146,-56.2739674726973,-56.2742220714966,-56.2744371048181,-56.2743028768006,-56.2741154210327,-56.2738358340776,-56.2734753659753,-56.2731559303829,-56.2727458261619,-56.2720950240924,-56.2718143492557,-56.2715493163765,-56.2711765004692,-56.2707144919909,-56.2705652563496,-56.2704344737062,-56.270175184579,-56.2700815760827,-56.2697671926495,-56.2694526745398,-56.2692107632724,-56.2689512021618,-56.26839691586,-56.2679553678094,-56.2675318717568,-56.267210191002,-56.2668232246701,-56.2663963591634,-56.2660623002819,-56.2657485812301,-56.2654335134796,-56.2649320138175,-56.2644489640308,-56.2640930435794,-56.2638292395141,-56.2636120326608,-56.2627225561528,-56.2623439940353,-56.2619103508021,-56.2616772454202,-56.2610605710603,-56.2603367946031,-56.2593904547585,-56.2584715681156,-56.257918580103,-56.257574538472,-56.2573416118134,-56.256716910334,-56.2561748548003,-56.2557675952361,-56.2555021214956,-56.2549438644339,-56.2548276621743,-56.2544689731789,-56.2540750638805,-56.2538529111465,-56.2532862388488,-56.2530398529249,-56.2526606242545,-56.2521866453242,-56.2515525680805,-56.2508859866202,-56.2503477611527,-56.2503089234201,-56.250212103566,-56.2501889663986,-56.2498177916662,-56.2493740335975,-56.2488914323981,-56.2484069807536,-56.2480960490817,-56.2475887787991,-56.2471339039072,-56.2467013751649,-56.2465050234518,-56.2462495896096,-56.2459894825684,-56.2456587690434,-56.2454803473511,-56.2453928043689,-56.2451344234882,-56.2448586963859,-56.244587327167,-56.2443631640203,-56.2442418542364,-56.2439378531652,-56.2434199526452,-56.2432658040854,-56.2428034336696,-56.2422666817622,-56.2416917623271,-56.2413717682436,-56.2412773392895,-56.2412254303671,-56.2411024898517,-56.2409014433275,-56.240709934977,-56.2405271579076,-56.2403101907173,-56.2401468978537,-56.2400391882343,-56.2399060260789,-56.2396994121726,-56.2393723747143,-56.2391014295347,-56.2388516219183,-56.2387953020629,-56.2387344228043,-56.2385816010812,-56.2384804199869,-56.2384116047432,-56.2383561697174,-56.2382181502044,-56.2380576276276,-56.2379060515687,-56.2377843758863,-56.2376334380402,-56.2374197043172,-56.2372130854087,-56.2370411292232,-56.2368988073119,-56.2367030444102,-56.2364337726422,-56.236327183461,-56.2361200169325,-56.2360220612823,-56.2358178518158,-56.2355978008456,-56.2353628263827,-56.2351166384817,-56.2349792031969,-56.234786409152,-56.2347505139748,-56.2347081125564,-56.2347148924904,-56.2347125939472,-56.2347104250678,-56.2346709804688,-56.2343878555887,-56.2343540481638,-56.2343321469361,-56.2339631333709,-56.2338703938963,-56.2338359473267,-56.2337857389735,-56.2336971566277,-56.2335982460667,-56.233494441465,-56.2334134568808,-56.2333269451616,-56.2332124564811,-56.233086620035,-56.2328963944849,-56.232787119287,-56.2326644621013,-56.2324306650309,-56.2323483936763,-56.23224489217,-56.2319751377677,-56.2317471819566,-56.2315541363503,-56.2311929493784,-56.2310367828218,-56.2308388798233,-56.2306727290557,-56.2302707284555,-56.2299188670392,-56.2297352474363,-56.2294515277388,-56.2292217427785,-56.2288424181194,-56.2285610340156,-56.2284003798486,-56.2281758554713,-56.2280631121473,-56.228051442142,-56.2279957400726,-56.228006447192,-56.2281235228053,-56.2281439132257,-56.2281696135965,-56.2281060162783,-56.2278736926154,-56.2277960877893,-56.2277255016926,-56.2276735431462,-56.2276612578638,-56.2275866079232,-56.2271559606691,-56.2268030324153,-56.226339941169,-56.2262737472689,-56.2257978391691,-56.2256920118803,-56.2256243011385,-56.2292858809395,-56.2294532667879,-56.2304986563064,-56.2311465748404,-56.2313201180474,-56.2323741493234,-56.2325509865086,-56.2333754151793,-56.2337524610562,-56.2341299613011,-56.2353272243452,-56.2348182546421,-56.2343400766757,-56.2339647001043,-56.2335734987971,-56.2333981622307,-56.2329657395806,-56.2322567659598,-56.2310010404434,-56.2302203740138,-56.230272891585,-56.2303532330192,-56.2304236626749,-56.2304875856416,-56.2305576084208,-56.2306649537815,-56.2307499576202,-56.230830525838,-56.2309246843979,-56.2310280643803,-56.2311274089482,-56.231214740654,-56.2313055107999,-56.2314127294286,-56.2314991206494,-56.2315949900917,-56.2316871242744,-56.2317771873889,-56.23186703706,-56.2319192805471,-56.2320041189009,-56.2320579655267,-56.2321500596887,-56.2322595861743,-56.232353728059,-56.2323995850419,-56.2323993449181,-56.2324281731189,-56.2324954578193,-56.232542925633,-56.2326852123473,-56.2328392751347,-56.2328906883165,-56.2329697957809,-56.2329891318624,-56.2326105784218,-56.23292606324,-56.2330289027284,-56.2337949846852,-56.2338961601974,-56.2339997969788,-56.2341034170851,-56.2342429690556,-56.2343259084962,-56.2344339675584,-56.2345664125303,-56.2346780334294,-56.2347950504447,-56.2348918837175,-56.2350006664862,-56.2351211652972,-56.2352648560689,-56.2353389842987,-56.2354202828931,-56.2354739108265,-56.2355026487046,-56.2354989866205,-56.2355050766234,-56.2355266911039,-56.235572931618,-56.235635560584,-56.2356937706044,-56.2357161955028,-56.2357280349421,-56.2357435696204,-56.2357781141025,-56.235808116242,-56.2358276596544,-56.2358342330445,-56.2358370911852,-56.2358366209426,-56.235883565153,-56.2358536030341,-56.2358120749503,-56.2357638667548,-56.2357702667221,-56.2358134156417,-56.2359231388955,-56.2360047409798,-56.236056744466,-56.2360569145537,-56.2361200971386,-56.2361847137964,-56.2362400890215,-56.2362548533024,-56.2362577114431,-56.2362841951014,-56.2363115291983,-56.2363311393118,-56.2363422350341,-56.23636325254,-56.2363830127309,-56.2364102434411,-56.2364604960243,-56.236537745864,-56.2366432702857,-56.2366035131152,-56.2366019556453,-56.2365814250572,-56.2365720568924,-56.2365738511511,-56.2365722903462,-56.2365752151879,-56.2366003314744,-56.236645294663,-56.2367013969297,-56.2367383359802,-56.236787374604,-56.2368449309539,-56.2369013733961,-56.2369602104065,-56.2370172731685,-56.2370471919317,-56.237053465167,-56.2370454843845,-56.2370674223651,-56.2370745093534,-56.2370781812471,-56.2371016967079,-56.2371768588043,-56.2372470483361,-56.2373037709228,-56.2373553942129,-56.2374333718061],&#34;lat&#34;:[-34.7919616682811,-34.7922053724125,-34.792268098095,-34.7923443841043,-34.7924207234745,-34.7925153656172,-34.7926323392769,-34.7927270281103,-34.7928306949073,-34.7929298660524,-34.7930381018724,-34.7931644203514,-34.7932546468835,-34.7933854876948,-34.7934937568653,-34.7935841167996,-34.7937013572635,-34.7938005684292,-34.7939177622024,-34.7940212955972,-34.7941112886756,-34.7942192777016,-34.7943047817982,-34.7943902525444,-34.7944802656331,-34.7945748744253,-34.7946784478407,-34.794773003272,-34.7948720076645,-34.7949574517302,-34.7950474181282,-34.7951598894658,-34.7952588471675,-34.795366802843,-34.7954612648929,-34.795564758267,-34.795597288377,-34.7956592803478,-34.7957673160646,-34.795974429545,-34.7960430237409,-34.7961080180732,-34.7961646566993,-34.7962470305986,-34.7963310629747,-34.7963882620474,-34.7965449666964,-34.7966601287488,-34.7967326286089,-34.7968125617912,-34.7968980458776,-34.7969879855951,-34.7971094882571,-34.7972310242697,-34.7973255196701,-34.7974244773717,-34.797509954788,-34.7975908898616,-34.7976762071953,-34.7977794137549,-34.7978422528292,-34.7979367348894,-34.7980312703104,-34.7981258590922,-34.7982113565188,-34.7982967538937,-34.7983775955858,-34.7984539549663,-34.7985439747252,-34.798647634852,-34.7987468793683,-34.7988371859417,-34.798923043554,-34.7990044321949,-34.7990677982077,-34.7996058234882,-34.7994713363674,-34.8001412584853,-34.8011869844596,-34.8013081602864,-34.801575224685,-34.8015968515563,-34.801719183231,-34.802538721585,-34.8030093176167,-34.804899038861,-34.8049649995453,-34.8066588822303,-34.8067617880305,-34.8066898258922,-34.8066877894934,-34.8065789358331,-34.806645719669,-34.8067849781548,-34.8069242699912,-34.807051869367,-34.8071008077029,-34.8071479064279,-34.8072414257817,-34.807373575579,-34.8074515585053,-34.8074791893155,-34.8075390830651,-34.8075640065864,-34.8075788187199,-34.8076038659772,-34.8076339506625,-34.8076694719196,-34.8076715287049,-34.8077342610576,-34.807806111446,-34.8078688904895,-34.8079361985353,-34.8080035599419,-34.8081070799966,-34.8082372204466,-34.8082910081864,-34.8083628852552,-34.8084346889529,-34.808465851691,-34.8085331864172,-34.8086276818176,-34.8087040612084,-34.8087984965778,-34.8089020299726,-34.8089967721669,-34.8090826030988,-34.8091772185611,-34.8092672850106,-34.8093754007687,-34.8094745985942,-34.8095691873761,-34.8096550049677,-34.8097585316924,-34.8098303687406,-34.8098977034669,-34.8099875031122,-34.8100773894689,-34.8101492732078,-34.8102211035859,-34.8103110699839,-34.8103919850472,-34.8104910828211,-34.8105946895871,-34.8106938007013,-34.8107974341477,-34.8109100855783,-34.8110181546456,-34.8111127567676,-34.8112117878405,-34.8113017742488,-34.811414092174,-34.8115356081763,-34.8116662555545,-34.8118826204727,-34.8120177301522,-34.8121213302481,-34.8122474686342,-34.8123465597381,-34.8124590977768,-34.8126075943603,-34.8127291237027,-34.8128079989916,-34.8128882991269,-34.812949870881,-34.8130534909873,-34.8131751804123,-34.813296789796,-34.8134095746287,-34.8135359531386,-34.8136349175104,-34.8137295663233,-34.8138604871758,-34.814085796707,-34.8142072593484,-34.8143289887941,-34.8144371979337,-34.8145226753499,-34.8146171640801,-34.8147116194599,-34.8147925278531,-34.8148689539346,-34.814940804323,-34.8150261550072,-34.8151070700705,-34.8152060611228,-34.8153006032138,-34.8153952053359,-34.8154987587411,-34.815588911902,-34.8156143383484,-34.8157150569583,-34.8157250287676,-34.81582277918,-34.8158737921554,-34.8159352571878,-34.8160704669189,-34.8161740470045,-34.816277687121,-34.8163767782248,-34.8164668980353,-34.8165571245674,-34.8166470976355,-34.8167279860183,-34.8168180324576,-34.8168899228667,-34.816957264263,-34.8170381993366,-34.8171190343586,-34.8171999294116,-34.8172491214479,-34.8173164294937,-34.8173679227167,-34.8173535352968,-34.8173520145125,-34.8173521479146,-34.8173510606872,-34.8173606523005,-34.8173842844883,-34.8174136529677,-34.8175088220488,-34.8175720346491,-34.817665996441,-34.8177333311672,-34.8178051348649,-34.8178905122295,-34.8179759362849,-34.8180569047091,-34.8181423954655,-34.8182187415058,-34.8182498975737,-34.818317172269,-34.8183352749384,-34.8183331338341,-34.8183167120317,-34.8183062266241,-34.8183208074771,-34.818352016906,-34.8183858210063,-34.8183852873977,-34.8184279427295,-34.8184401356844,-34.8184726657943,-34.8185400205309,-34.8185718369394,-34.8185666742769,-34.8185602442941,-34.8185965897051,-34.8186065681846,-34.8186054609469,-34.818598210541,-34.8185878852159,-34.8185867379576,-34.8185917538778,-34.8185855840292,-34.8185733243732,-34.8185600508611,-34.8185250594818,-34.8185111322992,-34.8184862394613,-34.818460319427,-34.8184473460696,-34.8184379412193,-34.8184397154677,-34.8184356467027,-34.8184097466787,-34.8183499891935,-34.8183155114125,-34.8182918525443,-34.81825029111,-34.8182259252106,-34.8182165403706,-34.8182215229402,-34.8182200355064,-34.8182302007489,-34.8182241509622,-34.8182176676186,-34.8181925546672,-34.8181724776463,-34.8181566561534,-34.8181578234221,-34.818148371881,-34.8181435493939,-34.8181434560124,-34.8181519737386,-34.8181525740482,-34.8181342846158,-34.818079109494,-34.8180294305399,-34.8180122216649,-34.8179905571586,-34.8179811389681,-34.8179286385589,-34.8178961151191,-34.817850251466,-34.8177837971938,-34.8177556826945,-34.8177264876378,-34.8176546972804,-34.8175410653442,-34.8175103161527,-34.8174688947906,-34.8174353574946,-34.8174280270474,-34.8173930023176,-34.817319577784,-34.8171979684003,-34.8171064278572,-34.8170526000968,-34.8170343506851,-34.817008944249,-34.8169972115315,-34.8169867594744,-34.8169756870975,-34.8169632006579,-34.8169482462789,-34.8169397752435,-34.8169396618517,-34.8169227064406,-34.8169087725879,-34.8168855139262,-34.8168763358595,-34.8168691588248,-34.8168534240433,-34.8168527370223,-34.8168089277621,-34.8167933930838,-34.8167717018971,-34.8167634643154,-34.8167540327847,-34.8167489501634,-34.8167495237926,-34.8167402923651,-34.8167401122722,-34.8167343026093,-34.8167354965584,-34.8167289598539,-34.8167307007517,-34.8167254447077,-34.8167214893345,-34.8167158797748,-34.8167064615843,-34.8166942619593,-34.8166813419628,-34.8166703562972,-34.8166715235659,-34.8166486250899,-34.816639500384,-34.8166303223173,-34.8166296086159,-34.8166250195826,-34.8166248394897,-34.8166209107969,-34.8166163017532,-34.8166168753824,-34.8166074705321,-34.8165991929298,-34.8165933299061,-34.8165887275325,-34.8165890877183,-34.8165890543677,-34.8165838250042,-34.8165844319838,-34.8165770281655,-34.8165693708831,-34.816570491461,-34.8165661292113,-34.8165650820046,-34.8165605129815,-34.8165610465901,-34.8165573847016,-34.8165506345536,-34.8165510014095,-34.816538768434,-34.8165340593387,-34.8165290834392,-34.8165218597137,-34.8165156765249,-34.8165168571338,-34.8165110608111,-34.8165106606047,-34.8165064517675,-34.8165051044059,-34.8165017960331,-34.8165015492391,-34.8164984076189,-34.8164955794937,-34.8164830797139,-34.816482526095,-34.8164782772371,-34.8164769098653,-34.8164729811725,-34.8164648970033,-34.8164585403917,-34.8164546116989,-34.8164553454106,-34.8164500426759,-34.8164369092359,-34.8164361488438,-34.8164318266147,-34.8164321000891,-34.8164223017025,-34.8164218281249,-34.8164474746848,-34.8164307860781,-34.8164258835497,-34.816416452019,-34.8164062134053,-34.8164924378735,-34.8165688039241,-34.8166360986297,-34.8166808150244,-34.8167299937204,-34.8167792524578,-34.8168329935067,-34.816877683221,-34.8169313909195,-34.8169806096361,-34.8170388329967,-34.8170790670798,-34.8171327347576,-34.8171729421603,-34.817204144919,-34.8172254559096,-34.8172579193185,-34.8173298897688,-34.8173657349218,-34.8173836241477,-34.8173953323836,-34.8174187577864,-34.8175706872876,-34.8175877560904,-34.8176015632111,-34.8176074529153,-34.8176148433934,-34.8176168377553,-34.8176132225575,-34.8176042912847,-34.8175922050516,-34.8175786647351,-34.8175646174906,-34.8175517308446,-34.8175393911474,-34.8175294860391,-34.8174909528332,-34.8174634719939,-34.8174380388774,-34.8174118520389,-34.8173870992732,-34.8173620063322,-34.8173279821183,-34.8173209251456,-34.8173088989433,-34.8172983868553,-34.8172859404364,-34.8172742343993,-34.8172625750529,-34.8172664970756,-34.8172665704468,-34.8172605406704,-34.8172610942893,-34.8172564852456,-34.8172430116302,-34.8172079468798,-34.8171869160336,-34.817186629219,-34.8171909647883,-34.817189317272,-34.8171853418885,-34.8171904044994,-34.8172010032988,-34.8172101413449,-34.8172306986134,-34.8172912498412,-34.8174636968343,-34.8175632866033,-34.8176409968814,-34.8177332177754,-34.8178617240494,-34.8180376281009,-34.8181231922286,-34.8182137722763,-34.8182991229605,-34.8183965465377,-34.8184921558459,-34.8186495837021,-34.8187849335055,-34.8188748665529,-34.8189970362256,-34.8191996673944,-34.8194475485663,-34.8195572251294,-34.8196815092258,-34.8198428057439,-34.8199517552653,-34.8201901515457,-34.8202905299801,-34.8203689570936,-34.8204500989405,-34.8205269118883,-34.8206100881177,-34.8207023223519,-34.8207919218941,-34.8208139265758,-34.8209216487975,-34.8209754098568,-34.8210336732381,-34.8210964322712,-34.8211591646239,-34.8212264193088,-34.8212891783419,-34.8213609753695,-34.8214554107389,-34.8215680621694,-34.8216627510029,-34.821757479857,-34.8218432440878,-34.821938039643,-34.8220328085177,-34.8221231217612,-34.8222223862878,-34.8223215440927,-34.8224704142021,-34.822650907287,-34.8227412138604,-34.8228180334783,-34.8229173246853,-34.8230164291294,-34.8231063955273,-34.8231873239308,-34.8232637300021,-34.8233355003492,-34.8233486204489,-34.823330170934,-34.8233117614398,-34.8232888562937,-34.8233019697233,-34.8233692977794,-34.8234004738577,-34.8234181162897,-34.8234625658801,-34.8235388718998,-34.8235795261996,-34.8235845020991,-34.8235924128456,-34.8235964882807,-34.8236200204168,-34.8236641965329,-34.8236768764056,-34.8236827460994,-34.8236674115243,-34.8236584535711,-34.8235949741665,-34.8235681203173,-34.8235720690204,-34.8236439127387,-34.8236904434024,-34.823684100131,-34.8236836398937,-34.8237062582252,-34.8237149960649,-34.8237085527418,-34.8236923310426,-34.8237120745581,-34.8237752471379,-34.8237909552389,-34.8237635477709,-34.8237496139182,-34.8237401823874,-34.8237457786069,-34.8237947705399,-34.823897883718,-34.8239644113614,-34.8241025492693,-34.8242213105175,-34.8243053005,-34.8244014767672,-34.8245174032201,-34.8246300813311,-34.8247200810796,-34.824805511805,-34.824877395544,-34.8249672218697,-34.8250299675626,-34.8250836685909,-34.8251419052918,-34.8251821060243,-34.8251861747894,-34.8252308778439,-34.8253117462164,-34.825383543244,-34.8253785940249,-34.8253556155076,-34.825301147417,-34.8252376946928,-34.8252057782327,-34.8251647504069,-34.8251508432346,-34.8251054064684,-34.8250329891209,-34.8249561294824,-34.8248702652,-34.8247844342681,-34.8247075546193,-34.8246056220501,-34.8246032274818,-34.8245521944961,-34.8245540687961,-34.8245571170348,-34.824559191438,-34.8245639272137,-34.82460498839,-34.8246062090195,-34.824616187499,-34.8246279735774,-34.8246431880905,-34.8246653195043,-34.8246805540278,-34.8246963355,-34.8247259040826,-34.8247475885992,-34.8247643305668,-34.824786988919,-34.8248037442268,-34.824832285613,-34.8249016880723,-34.8249711238821,-34.8250124652029,-34.8250360840504,-34.8250594894545,-34.8250842822408,-34.8251024782916,-34.8251300191618,-34.8251467144386,-34.8251688058317,-34.8251874621199,-34.8252002353741,-34.8252144760517,-34.8252301908229,-34.8252380482085,-34.8252950976303,-34.8253473512455,-34.8254106772377,-34.8254328753525,-34.8254809201304,-34.8254648651838,-34.8254455152045,-34.8254483233194,-34.8254719088164,-34.8255420783379,-34.8255964797274,-34.8256442243506,-34.8257290614365,-34.8257656669816,-34.8257954289973,-34.8258100698814,-34.8258311407481,-34.8258358765238,-34.8258391315359,-34.8258342089972,-34.8258279649737,-34.8219875875761,-34.8187166592937,-34.8186603811379,-34.8185963814752,-34.8179802272655,-34.8165563953801,-34.8152163864478,-34.8137347289858,-34.8113221314142,-34.8096789706608,-34.8092042525031,-34.8071337580295,-34.8070584391857,-34.8059511081067,-34.8051186521212,-34.8044058734667,-34.8043563789974,-34.804287530157,-34.7997437986989,-34.7977067837536,-34.7972313113609,-34.7964924233233,-34.7964553440259,-34.7964372482034,-34.7964236677356,-34.7964100808156,-34.796396487476,-34.7963829004254,-34.7963602553899,-34.796333108099,-34.7963195341052,-34.7963059602717,-34.7962923869071,-34.7962788129637,-34.7962607105641,-34.7962380924433,-34.7962245116056,-34.7962109179412,-34.7961973446223,-34.7961837774833,-34.7961611724174,-34.7961385744391,-34.7961250008218,-34.7961069180011,-34.7960843131439,-34.7960752346124,-34.7960706257341,-34.796061534243,-34.7960479542093,-34.7960298716457,-34.7960117886532,-34.7959937194048,-34.7959711347177,-34.7959530584097,-34.7958852834307,-34.7958622784619,-34.7958530470098,-34.7958529468598,-34.7958528399115,-34.7958496185842,-34.7958494719935,-34.7958414010807,-34.7958136664524,-34.7958067165157,-34.795803200959,-34.7958031012306,-34.79580680329,-34.7958067227917,-34.795797611685,-34.7957885201248,-34.7957794353736,-34.795769363956,-34.7957544093212,-34.79574056887,-34.7957370737072,-34.7957312508377,-34.7957230934687,-34.7957092259933,-34.7956872414118,-34.7956687921465,-34.7956514831187,-34.7956319061652,-34.7955979019623,-34.7955798194509,-34.7955662190024,-34.7955435739709,-34.7955254448551,-34.7955163596922,-34.7955072821437,-34.795489086121,-34.7954799613336,-34.795466300691,-34.7954571896883,-34.7954480845632,-34.7954162413992,-34.7953754604422,-34.7953257151636,-34.7952532974947,-34.7952441927366,-34.7952350349389,-34.7952304458274,-34.7952258435972,-34.7952212142851,-34.7952166120008,-34.7952075209429,-34.7951939201842,-34.7951938268547,-34.7951847221698,-34.7951801330618,-34.7951755311005,-34.7951618970714,-34.7951573082224,-34.7951482167861,-34.7951435943705,-34.7951435145504,-34.7951389253756,-34.7951432941603,-34.7951432075917,-34.795143107508,-34.7951700678894,-34.7951835347361,-34.7951970017421,-34.7952195068915,-34.7952375294086,-34.7952600544992,-34.7953063583591,-34.7953498410209,-34.795358785137,-34.7953677098799,-34.7953900679044,-34.7954441160292,-34.7954621584903,-34.7954847170147,-34.7955027397937,-34.7955207487172,-34.795547735976,-34.7955611833445,-34.795565612269,-34.7955655051873,-34.7955564073487,-34.7955473290425,-34.7955427400123,-34.795538137883,-34.7955380377022,-34.7955108506375,-34.7954972833826,-34.7954791738599,-34.7954611580093,-34.7954246859984,-34.7954024281304,-34.7954068437563,-34.7954202973592,-34.7954382662893,-34.7954517401272,-34.7954733844858,-34.7954512931383,-34.7954511597329,-34.7954417813465,-34.7954326833824,-34.7954325836775,-34.7954369923344,-34.7954413949198,-34.7954458100882,-34.7954547149593,-34.7954636529586,-34.795509376333,-34.7955534192595,-34.795593753448,-34.7956160448975,-34.7956249827043,-34.7956380225227,-34.7956334071388,-34.7956333203666,-34.7956331934855,-34.7956285710505,-34.7956236487548,-34.7956235018113,-34.7956234085217,-34.7956233283841,-34.795627750739,-34.7956228279562,-34.7956181992752,-34.7956180924336,-34.7956086942947,-34.7956040653244,-34.7955994429049,-34.7955902980787,-34.7955856623465,-34.7955765378719,-34.7955673795001,-34.7955582751596,-34.7955309409322,-34.795521802545,-34.7955126916212,-34.7955080891815,-34.7955203486924,-34.7955107639052,-34.7955031132028,-34.7954941551981,-34.7954859776485,-34.7955163466243,-34.7955162599958,-34.7955206689622,-34.7955250776424,-34.7955295002589,-34.7955294003186,-34.7955338221306,-34.795533715856,-34.7955335685647,-34.795533482124,-34.7955333887459,-34.7955238637178,-34.7955192480318,-34.7955191413278,-34.79551902108,-34.7955233638214,-34.7955232767417,-34.7955231765612,-34.7955230232377,-34.7955227233452,-34.7955180343759,-34.7955179005937,-34.7955039467574,-34.7954948420106,-34.7954856974962,-34.7954765996581,-34.7954674813524,-34.7954219646865,-34.795421864597,-34.7954217777562,-34.7954216778726,-34.7954215777002,-34.7954260068202,-34.7954259064859,-34.7953939567344,-34.7953846117961,-34.7953079325854,-34.7952402443585,-34.7952175524091,-34.7952129635163,-34.7952083745496,-34.7952082675823,-34.7952081740972,-34.7952125968048,-34.795217005582,-34.7952259369024,-34.7952303655849,-34.7952392236639,-34.7952436262128,-34.7952480280394,-34.7952569527683,-34.7952971069884,-34.795310527037,-34.7953194583098,-34.795328376575,-34.7953417567537,-34.7953506943649,-34.7953730060506,-34.7953864461389,-34.7954357382461,-34.7954536410696,-34.7954670746932,-34.7954849902905,-34.7955208020984,-34.7955432071469,-34.7955521387026,-34.7955925391409,-34.7956059661599,-34.7956194196913,-34.7956868078075,-34.7957183374595,-34.795736353378,-34.7957543762376,-34.7957724051745,-34.7957949370192,-34.7958174620012,-34.7958399871204,-34.7958579562086,-34.7958893457729,-34.7959027926233,-34.7959162329773,-34.7959251777122,-34.7959743695686,-34.7959877694772,-34.7959967143367,-34.7960011434063,-34.7960323326042,-34.7960457128524,-34.7960546241964,-34.7960590466503,-34.7960679843309,-34.7960768756931,-34.7960858068938,-34.7960944648561,-34.7960898289262,-34.7960897291078,-34.7960759552339,-34.7960668439269,-34.7960577059088,-34.7960485811471,-34.7960394765033,-34.7960303917432,-34.7960050984815,-34.7959624765773,-34.7959489097562,-34.7959353360085,-34.7959127311505,-34.7958946284273,-34.7958720236419,-34.7958584562515,-34.795840366824,-34.7958222976142,-34.7958042283289,-34.7957861660422,-34.7957680896781,-34.7956911436613,-34.7956729876939,-34.7956639029847,-34.7956548049923,-34.7956411908314,-34.7956275839788,-34.7956184728743,-34.7956048522417,-34.795595760666,-34.7955684936578,-34.7955548332979,-34.7955502372832,-34.7955411325059,-34.7955365034892,-34.7955226631443,-34.795513532098,-34.7955089158769,-34.7955043002486,-34.7954951491417,-34.7954860044894,-34.7954723574228,-34.7954677479493,-34.7954586370555,-34.7954495190004,-34.7954404140954,-34.7954267537854,-34.7954176426823,-34.7953994532351,-34.7953858127129,-34.7953676234972,-34.7953494270625,-34.7953357866682,-34.795317544289,-34.7953084391655,-34.7952766294401,-34.7952630358487,-34.7952176724029,-34.7952085544336,-34.7951903784527,-34.7951767716597,-34.7951676668529,-34.7951540662202,-34.7951404661904,-34.7950815889878,-34.7950679955593,-34.7950498996727,-34.7950363188582,-34.7949728999801,-34.7949593061886,-34.7949457391978,-34.7949276632185,-34.7948870221359,-34.7948689660013,-34.7948464076565,-34.7948283653344,-34.7948103159199,-34.7947877244843,-34.7947561077312,-34.7947290008543,-34.7946928616579,-34.7946657677362,-34.7946476987288,-34.7946296291433,-34.7946025284332,-34.7945754280906,-34.7945573721525,-34.7945302980774,-34.7945032240797,-34.7944761500774,-34.7944490831701,-34.7944310402635,-34.7944130108017,-34.7943949950842,-34.7943769790304,-34.7943544539466,-34.7943364248882,-34.7943138929485,-34.7942913484119,-34.7942733253652,-34.7942553161329,-34.7942238068414,-34.7941967995382,-34.7941562787052,-34.7941202668595,-34.7941022574218,-34.7940572338636,-34.7940212156046,-34.7939671810763,-34.7939356649494,-34.7939041420301,-34.7938861258063,-34.7938680966428,-34.793850060803,-34.7938320378833,-34.7938095266449,-34.793787028271,-34.7937690320351,-34.793746540747,-34.7937240355464,-34.7936970282781,-34.7936745166958,-34.7936070683549,-34.793584570107,-34.7935215381035,-34.7935035554652,-34.7934900885355,-34.7934720989807,-34.793427108956,-34.7934001152811,-34.7933776166841,-34.7933596212488,-34.7933416518314,-34.7933281846251,-34.793304866287,-34.7932697278817,-34.7932067889048,-34.7931798015913,-34.7931573035602,-34.7931393205294,-34.793121331224,-34.7931078579984,-34.7930943909854,-34.7930809240565,-34.7930629478406,-34.7930449520481,-34.7930269493053,-34.7930044512367,-34.7929864683007,-34.7929684928167,-34.7929460211976,-34.7929280520563,-34.7928742774517,-34.7928474035326,-34.7928160206074,-34.7927757067525,-34.7927264078192,-34.7926905828048,-34.7926592331944,-34.7926010030907,-34.7925830741153,-34.7925741360961,-34.792538377671,-34.7924981701287,-34.7924892589038,-34.7924803344214,-34.7924714095684,-34.7924625117607,-34.7924490780417,-34.7924401402062,-34.792438359366,-34.7924201564244,-34.7923983051664,-34.7923817165622,-34.7923466255249,-34.7923072919083,-34.7922219412402,-34.7921333885204,-34.7920914671912,-34.7920063699974,-34.7919707181908,-34.7919258146532,-34.7918870082893,-34.791823262169,-34.7917379380829,-34.7917107573221,-34.7916854377389,-34.7916441965814,-34.7916139807822,-34.7915639752241,-34.791522907026,-34.7915032967764,-34.7914331273953,-34.7913937203252,-34.7913749172699,-34.7913601699459,-34.7913358437169,-34.7913119718527,-34.7912865121237,-34.7912545156352,-34.7912416819493,-34.7912295021912,-34.7912163488022,-34.7912081449185,-34.7912079444747,-34.7912076509894,-34.7912072312404,-34.7912094652636,-34.7912109464598,-34.7912283351829,-34.7912296091106,-34.7912480184353,-34.7912738721724,-34.7913056486361,-34.7913489241947,-34.791377072026,-34.7914094617131,-34.7914318535369,-34.7914658376912,-34.7914829397986,-34.7914987815595,-34.7915116080662,-34.7915279298741,-34.791590075323,-34.7916524537053,-34.7917544533444,-34.7918396369655,-34.7919248142413,-34.7920213775023,-34.7920896258083,-34.7921749165293,-34.7922999211853,-34.7924078699122,-34.792555619897,-34.792640803506,-34.7928335494597,-34.7928413738262,-34.792843468374,-34.7928496847079,-34.7929046532636,-34.7929803052233,-34.7930078947558,-34.793023101004,-34.7930475999071,-34.7930067587586,-34.7929661845114,-34.7929147184839,-34.7928985234457,-34.7928915864244,-34.792899043381,-34.79291721956,-34.7929376969626,-34.7929305799942,-34.7928804939112,-34.7928291677239,-34.7927264942629,-34.7926330463807,-34.7925722081068,-34.7925066812933,-34.7924270800142,-34.7923662550972,-34.7922866478222,-34.7921907517314,-34.7921532457579,-34.792068935101,-34.7919800763571,-34.7918586136609,-34.791741899847,-34.7916391802645,-34.7915551568601,-34.7914898367387,-34.7914292785569,-34.7913453020115,-34.7912381468948,-34.7911217469811,-34.7910006779981,-34.7908426160173,-34.7907264164666,-34.7906057738896,-34.7906075883368,-34.7905999844493,-34.7905915535857,-34.7904872399058,-34.7904305169747,-34.7903808645927,-34.7903502487658,-34.7903362553541,-34.7903127096099,-34.7902952938108,-34.7902654921681,-34.7901450631961,-34.7900715252614,-34.7899813988453,-34.7899682452576,-34.7899472280528,-34.7899292919043,-34.7899158381391,-34.7899023848186,-34.789892406111,-34.7898830281957,-34.789722658436,-34.7896763348908,-34.7896040043314,-34.7895605953639,-34.789485283192,-34.7894302280781,-34.78936642851,-34.7893055233589,-34.7892445187671,-34.7891646508307,-34.7890716094041,-34.7889668024523,-34.7888911299131,-34.7888503688269,-34.7888008367686,-34.7887628901158,-34.7887220092168,-34.7886781597178,-34.7886401735431,-34.7886108652218,-34.7885989327075,-34.7885924225418,-34.7885932159356,-34.7885836982178,-34.7885556298859,-34.7885442640639,-34.7885310639566,-34.7885197518717,-34.7885139150607,-34.7885155163892,-34.7885059113616,-34.7885000881296,-34.7884923974193,-34.7884865343898,-34.788484419988,-34.788484133267,-34.7885003882917,-34.7885186446456,-34.7885314311278,-34.7885423632278,-34.7885570444537,-34.7885661753438,-34.7885808499018,-34.7886010135104,-34.7886248527402,-34.7886542075203,-34.7886743579048,-34.7886981904789,-34.7887146722806,-34.7887218494631,-34.7887327148419,-34.788730653925,-34.7887340953525,-34.7887172132823,-34.788676039168,-34.7886460436774,-34.7886291548659,-34.7886159947314,-34.7885935761553,-34.7885487800037,-34.7885133080367,-34.7884815788448,-34.7884554382391,-34.7884014774106,-34.7883513379019,-34.7882956028673,-34.7882473178608,-34.7882027812341,-34.7881527158797,-34.788121153023,-34.7880858811556,-34.7879987494044,-34.7879394056642,-34.7878837834911,-34.7878374462659,-34.7878040894569,-34.7877633080906,-34.787711414475,-34.7876576336633,-34.7876020650013,-34.7875575953464,-34.7875002523842,-34.787441035194,-34.7873873675305,-34.7873188988428,-34.7872282257461,-34.7871430616435,-34.7870542091913,-34.7869949785197,-34.7869376557123,-34.7868562803177,-34.786754561195,-34.7866935366486,-34.7866195515248,-34.7865677784765,-34.7865270905874,-34.7864919525304,-34.7864531123867,-34.7864161536739,-34.7863643536032,-34.7863273744525,-34.7862663564522,-34.7862256417716,-34.7861571866096,-34.7860998168413,-34.7860703149515,-34.7860222238121,-34.7859796747305,-34.7859148481344,-34.7858260624781,-34.7857353954621,-34.7856762116553,-34.7856539670402,-34.7856020536658,-34.7855465181529,-34.7854870410961,-34.7854610742919,-34.7854313920596,-34.7853798522825,-34.7853353427736,-34.7852890457689,-34.7852408004316,-34.785198091654,-34.7851498002468,-34.7851089460855,-34.7850717400157,-34.7850418446904,-34.7849914250899,-34.7849559536181,-34.7849521450571,-34.784942580204,-34.7849405657508,-34.7849532723728,-34.7849623034226,-34.7849712484899,-34.7849784188314,-34.7849874565143,-34.7849965278864,-34.7850110757153,-34.7850330865821,-34.7850550650727,-34.7850935779799,-34.7851357997986,-34.7851725452165,-34.7852112321973,-34.7852314625601,-34.7852480111039,-34.7852792806239,-34.7853086024307,-34.7853342891069,-34.7853666456488,-34.785398021521,-34.7854383626822,-34.7854869741701,-34.7855550095264,-34.7855734187391,-34.7856028539693,-34.7856578692262,-34.7856927937293,-34.7857111829053,-34.7857248036066,-34.7857495695735,-34.7857925718766,-34.7858139962941,-34.7858300442618,-34.7858568648475,-34.7858782892101,-34.7858961384003,-34.7859085849136,-34.7859192773625,-34.785938927142,-34.7859567029893,-34.7859727246528,-34.7859869723657,-34.7859904270908,-34.7859992518162,-34.7860078296063,-34.7860137122624,-34.7860155267564,-34.7860173342903,-34.7860161473079,-34.7860191487264,-34.7860190283894,-34.7860189351989,-34.7860146529331,-34.7860050344968,-34.7859903403478,-34.7859652407112,-34.785946397971,-34.7859234460988,-34.785912973984,-34.7858879274614,-34.7858660364281,-34.7858451986902,-34.7858181450743,-34.7857890102168,-34.785762016291,-34.7857381105621,-34.7857142315319,-34.7856955218626,-34.7856706155794,-34.7856426012329,-34.7856021204373,-34.7855606123146,-34.7855284488068,-34.7854910695242,-34.7854640558281,-34.7854422578847,-34.7854193991064,-34.7853976017536,-34.7853509038229,-34.7852927938385,-34.7852367783927,-34.7852056688916,-34.7851807763421,-34.7850844197417,-34.7848803478901,-34.784804782242,-34.7847540894705,-34.7847303106496,-34.7846972202576,-34.7846300190227,-34.7845679867469,-34.7844956027505,-34.7844470179007,-34.7844149413667,-34.7843146097176,-34.7842246767763,-34.7841760848992,-34.784126479166,-34.7840902941406,-34.7840375734508,-34.7840034690761,-34.7839683241216,-34.7839445452746,-34.7839218001242,-34.7839000892784,-34.7838545989811,-34.7838194411833,-34.7837243654891,-34.7836985321324,-34.7836685566135,-34.7836334180317,-34.7835879480492,-34.7835455529113,-34.7834979953063,-34.7834597354703,-34.7834080153627,-34.7833583567152,-34.7833200701122,-34.7832797023027,-34.7832496802969,-34.7832082655102,-34.7831689318543,-34.7831357618654,-34.7830995095372,-34.7830715153318,-34.7830435409187,-34.7830165804038,-34.7829408010911,-34.7829117191907,-34.7828794626516,-34.7828606598537,-34.7828574316599,-34.7828562777388,-34.7828623676031,-34.7828704916454,-34.7828817374974,-34.7829001870289,-34.7829144006304,-34.7829227253383,-34.7829443431874,-34.7829731647464,-34.7830143454357,-34.7830803199637,-34.7831369821922,-34.7831503890033,-34.7831782303129,-34.7832163832391,-34.7832339187955,-34.7832555698232,-34.7832947900796,-34.7833618918611,-34.7833938550398,-34.783446468634,-34.7834794788148,-34.7835052586783,-34.7836012347549,-34.7836775876442,-34.7837456961699,-34.7837993573792,-34.7838652980188,-34.7838982813897,-34.78391476351,-34.7839343535132,-34.7839518692573,-34.78397514761,-34.7839840860724,-34.7839975327637,-34.7840377733758,-34.7840511669017,-34.7840600985589,-34.7840690029521,-34.7840824097184,-34.7841044679406,-34.7841043547248,-34.784104234577,-34.7840996388081,-34.7840995387427,-34.7840810292161,-34.7840809422199,-34.7840853578072,-34.7840852779966,-34.7840851976784,-34.7840757463657,-34.78406202606,-34.7840574239017,-34.7840436966039,-34.7840299561045,-34.7840162226784,-34.7840024888228,-34.783993357388,-34.7839842190975,-34.7839796035545,-34.7839522496626,-34.7839339798852,-34.7839248417669,-34.7839157241797,-34.783902096972,-34.7838929720698,-34.7838838343291,-34.7838747430096,-34.7838701605093,-34.78386080214,-34.7838516777734,-34.7838379571019,-34.783828858874,-34.7838197611191,-34.7838106365113,-34.7837833156146,-34.7837559746219,-34.783733136612,-34.7837240252002,-34.7837194029043,-34.7836964977091,-34.7836690902327,-34.7836553496145,-34.7836369802657,-34.7836366264211,-34.7836362730851,-34.7836359529844,-34.7836399817548,-34.7836451378952,-34.783648339536,-34.7836526483055,-34.7836569768317,-34.7836610526463,-34.7836654678861,-34.7836697705863,-34.7836739194181,-34.7836826772283,-34.7836825639035,-34.7837001458596,-34.7837133594615,-34.7837177552913,-34.7837195095932,-34.7837220642142,-34.7837264727011,-34.783735330636,-34.7837486975168,-34.7837576358453,-34.7837766922583,-34.7837841360003,-34.7837702688234,-34.7837698020496,-34.7837726431703,-34.783777785872,-34.7837727833219,-34.783772196681,-34.7837690883771,-34.7837665538556,-34.7837571289221,-34.7838185937726,-34.7837717497487,-34.7837597565452,-34.7837545276257,-34.7837468502463,-34.7837028875823,-34.7836816434478,-34.7839467934223,-34.7840534347897,-34.7842336547128,-34.7843259623179,-34.7844096719976,-34.7845382384067,-34.7846814254305,-34.7847927097156,-34.7849248311598,-34.7850901165019,-34.7852158346661,-34.7853235498587,-34.7853470022761,-34.7853914183881,-34.7854863469554,-34.7856007195462,-34.7857771639328,-34.7857794650155,-34.785879630004,-34.7861013178484,-34.7864252047298,-34.7866454314344,-34.7870148756161,-34.7872129307642,-34.7873610474303,-34.78728296695,-34.7870386212491,-34.7870253678943,-34.7870101131461,-34.7869857471964,-34.7871069431565,-34.7870561437368,-34.787205294031,-34.7872760036814,-34.7872757366336,-34.7872747827912,-34.7872704541602,-34.7872369235393,-34.7872300064611,-34.7872220158836,-34.7871980100086,-34.7871712159418,-34.7869000696355,-34.7866857322839,-34.7863856876174,-34.7861546718265,-34.78597754715,-34.7859769337774,-34.7859534147047,-34.7860723829638,-34.7860964617519,-34.7856478039034,-34.7852532334432,-34.7853237301347,-34.7852009266151,-34.7851231932821,-34.7850235483097,-34.7848662336421,-34.7847837816677,-34.7847336403483,-34.7846298945322,-34.7835313923524,-34.7834357430236,-34.7833490049572,-34.7829154280171,-34.7826072023906,-34.7824370212905,-34.7819830605047,-34.781636848621,-34.7816204268185,-34.7812160649455,-34.7810994114509,-34.7805468998399,-34.7801692450737,-34.7798816434168,-34.779499513009,-34.7791578167875,-34.779036721002,-34.7790103540706,-34.7789839871392,-34.7786453524966,-34.7781461083569,-34.7780113655333,-34.777739661397,-34.7776853138593,-34.7775635758108,-34.777444933438,-34.7755947531916,-34.7729238268198,-34.771620810299,-34.7651354207317,-34.7628197904334,-34.7611112616927,-34.7588498522575,-34.7573352662742,-34.7544770480555,-34.7540416483424,-34.7523327014895,-34.7511572705588,-34.7498957297405,-34.7489511233283,-34.7488298190428,-34.7479893430209,-34.7475033336038,-34.7462391159916,-34.7449747499501,-34.743862932711,-34.7424518479428,-34.741614303828,-34.7411941347658,-34.7405519992149,-34.7400281695329,-34.7388645399649,-34.7375079696655,-34.7350872053727,-34.7334787759791,-34.7324132053221,-34.731419408338,-34.7307062256795,-34.7297199882423,-34.7286077123564,-34.7276587762453,-34.7264664202793,-34.7256185097182,-34.724743231805,-34.724054373137,-34.7233804477395,-34.7231805679783,-34.7226726079994,-34.7224393021963,-34.7221007516972,-34.7217017657783,-34.7213330792737,-34.7212153063121,-34.7210521849051,-34.7202213341038,-34.7193210865525,-34.7187242818315,-34.7185713714885,-34.7184182628744,-34.7176826843683,-34.7168998487607,-34.7166880638674,-34.7164741260711,-34.7159780850934,-34.7157403257691,-34.715434997735,-34.7140455394581,-34.7134652452854,-34.7132343806423,-34.7131403993897,-34.7131986324501,-34.7133782168553,-34.713739777599,-34.7142084553649,-34.7147846522733,-34.7152389944642,-34.7155573537294,-34.7158286127033,-34.7158563649177,-34.7159157842641,-34.7158385208796,-34.715669163821,-34.7153938890841,-34.7148068720687,-34.7139533694167,-34.712956269559,-34.7126224601743,-34.7117457679254,-34.7111154996327,-34.7105835648464,-34.7088841812602,-34.7085935623351,-34.7080278598854,-34.7073562471954,-34.7051364580301,-34.704978911596,-34.7040890871671,-34.7032453182783,-34.7023573674601,-34.7020797338181,-34.7020276929816,-34.7020342067899,-34.7021794307988,-34.7023878344607,-34.7027163305536,-34.7028045197649,-34.7025881786445,-34.7022357853546,-34.7019894944654,-34.70181759889,-34.70201198142,-34.7022673904273,-34.7030677016832,-34.7034326345818,-34.7037831678465,-34.7042088187103,-34.704634885483,-34.7048157908322,-34.7048437551301,-34.7048116253442,-34.7046420983914,-34.7042601633821,-34.7038472434367,-34.7036778184866,-34.7036900221849,-34.7036125065052,-34.7032698902449,-34.7032443369916,-34.7032424758759,-34.7033490752422,-34.703500972016,-34.703941116536,-34.7041233714265,-34.7044587788243,-34.7048554262181,-34.705282745802,-34.7056635336917,-34.7058905412823,-34.7061479066035,-34.7063438213912,-34.7065846956865,-34.7067951048736,-34.7069146479121,-34.7067905905701,-34.7066815533076,-34.7066645345734,-34.706768209637,-34.7067208310464,-34.7067954090501,-34.7070684172984,-34.7073574996492,-34.7077083508126,-34.7081189690048,-34.7082995335794,-34.7084800968874,-34.7085990996546,-34.7086274508338,-34.7084735513923,-34.7085338433312,-34.7086248095173,-34.7087769129865,-34.7092184146329,-34.7096449087294,-34.7098277796465,-34.7100555118942,-34.7102064520853,-34.7103548519045,-34.7105351940517,-34.7109718190388,-34.7111221180482,-34.7114713805321,-34.7116987909516,-34.7120328213272,-34.7120916225563,-34.7122560859412,-34.712544207409,-34.7128487302406,-34.7132454927907,-34.7136562103299,-34.7138369661348,-34.7141864380742,-34.7145354838553,-34.7148076261809,-34.7151278062816,-34.7154014396701,-34.7156751795311,-34.71581290191,-34.7161935815763,-34.7166038715641,-34.7169988232161,-34.7173024925069,-34.7174985813772,-34.7177107545551,-34.7179688352302,-34.7181648154024,-34.7182075184442,-34.7185251336808,-34.7186302564176,-34.7186593284403,-34.7186577230344,-34.7188842671678,-34.7191259346311,-34.7191997337172,-34.7191830010086,-34.7189062604677,-34.7186562939479,-34.7182166588162,-34.7181766288633,-34.7182124670741,-34.7185459449858,-34.7188942231203,-34.7191512193618,-34.7192567622909,-34.7194517536251,-34.7196788232836,-34.7199826966358,-34.72031789551,-34.720759929916,-34.7209880775064,-34.7211781515598,-34.7212349065521,-34.7215097184929,-34.7217215571544,-34.722083875865,-34.7222954970435,-34.7227038300189,-34.7228404806112,-34.723082670598,-34.723310385157,-34.723583361365,-34.7237338371922,-34.7237472296446,-34.723745606378,-34.7237735789315,-34.7237710872217,-34.7237534710757,-34.7237968876188,-34.7239622625535,-34.7243248840496,-34.7245967672588,-34.7250091135727,-34.7252337672746,-34.7255688575799,-34.7261016294718,-34.7263429379473,-34.7263541407898,-34.7266719293622,-34.7269282461586,-34.7271714027216,-34.7274616711396,-34.7279188301944,-34.7282839467405,-34.7286488450649,-34.7290883724809,-34.7296197235591,-34.7301984059452,-34.73126460079,-34.7319484827136,-34.7322233023621,-34.7325409093459,-34.7329847606274,-34.7336240403228,-34.7340945731999,-34.7342452471518,-34.7345019929939,-34.7349124734774,-34.7353296400465,-34.7354612392732,-34.7356432495351,-34.735933848303,-34.736360325749,-34.7369239945679,-34.7373452628643,-34.7375474947183,-34.7380659070508,-34.7384625780219,-34.7387199790142,-34.7387483621409,-34.7385029210757,-34.7383141052216,-34.7383423738638,-34.7384913939767,-34.7388203290737,-34.739104772538,-34.7394204443486,-34.7397080755915,-34.7401492322451,-34.7405302354606,-34.7408669778538,-34.7413115506243,-34.7417560114848,-34.7426873223858,-34.7430231812881,-34.7432826635283,-34.7437106798371,-34.7444431018645,-34.7450211218103,-34.7453551107715,-34.745673318009,-34.7467983429849,-34.7474514167806,-34.7479211631657,-34.7484808621629,-34.7489209146506,-34.749680933736,-34.7501052013391,-34.7501785958112,-34.7503604869515,-34.7505424884522,-34.7506475593275,-34.7507993190611,-34.7508735946591,-34.7509631007091,-34.751190130361,-34.7513256611128,-34.7513984927199,-34.751243518462,-34.751134347412,-34.7513508723565,-34.751967846878,-34.7522394533376,-34.7524506893809,-34.7524487981822,-34.7525992187154,-34.7529617621252,-34.7533244148643,-34.7536667779959,-34.7537952569622,-34.7540504956308,-34.7543956751859,-34.754374994632,-34.7539570725485,-34.7535871179003,-34.753771511305,-34.7538316494834,-34.7537683414906,-34.7537193916051,-34.7538350220939,-34.753996920177,-34.7540898717269,-34.7539356674498,-34.7539439262634,-34.7540301310548,-34.7544565491329,-34.754707645474,-34.7548709150988,-34.7550402303411,-34.7551997793806,-34.7556818457171,-34.755754044858,-34.7558996369208,-34.7559524737438,-34.7566299160602,-34.7569929160911,-34.757232529702,-34.75756432214,-34.7577773315404,-34.7582793925696,-34.7587971392597,-34.7590233335291,-34.7591119909324,-34.7594136555396,-34.7594506976552,-34.7596067629137,-34.7595664417343,-34.7594627728829,-34.7593623688866,-34.7594579523237,-34.7596015688864,-34.7598831448075,-34.760081901734,-34.7603550581576,-34.7605496574906,-34.7605480559175,-34.7604244900363,-34.7603004674245,-34.7602730074946,-34.7601833093685,-34.7602055273468,-34.7608202925262,-34.7610391136284,-34.7611428632751,-34.7613070763611,-34.7616081375108,-34.7618557810751,-34.7619726171664,-34.7621050478971,-34.7624186935364,-34.7626289825302,-34.7627307016227,-34.7627745939369,-34.7628818624856,-34.7629496348345,-34.7629950058547,-34.7631202042014,-34.7630743457692,-34.7631583026697,-34.7632299907306,-34.7632836891939,-34.7632869104601,-34.7633151166878,-34.7634535219905,-34.7635727501329,-34.763665292017,-34.7637398401682,-34.7638613593553,-34.7639290738266,-34.7639316985313,-34.7639229623938,-34.7639121251041,-34.7638884932471,-34.7639487992758,-34.7640785316849,-34.7642219783119,-34.7643208051554,-34.7644084506376,-34.7644818326741,-34.7646244572128,-34.7646581725067,-34.7647284588909,-34.7649070481111,-34.7650161409606,-34.7651875271703,-34.765310525211,-34.7655038097701,-34.7655535066083,-34.7655946898629,-34.7657984136439,-34.765894865745,-34.7661035947303,-34.7663775227178,-34.7669827108804,-34.7673612736814,-34.7674767849686,-34.7679591379305,-34.7681902713828,-34.7682761217875,-34.7684118373623,-34.7686256809556,-34.7687164415295,-34.7687849144056,-34.7688668828849,-34.7689753295789,-34.7690621514478,-34.7690899456536,-34.7690565870724,-34.7690567524029,-34.7691349688546,-34.7694086547248,-34.7695812202914,-34.7697461126196,-34.7698140833125,-34.7698894486927,-34.7699756348849,-34.7700665537963,-34.7700877578167,-34.7700741373112,-34.7699079355568,-34.7695253437289,-34.7693666432919,-34.76930849413,-34.7692877029126,-34.7692064210192,-34.7691888669815,-34.7692109373665,-34.7691675549505,-34.7691159088864,-34.7690186535715,-34.7690085867034,-34.7688947504892,-34.7687619618318,-34.768519456224,-34.768389780446,-34.7681018394751,-34.7679273075441,-34.7677323756333,-34.7677135449485,-34.7676964172967,-34.7681598658838,-34.7684185302715,-34.7687460685914,-34.770280180816,-34.7716659914916,-34.7736545370401,-34.7739554740763,-34.7760768996162,-34.7765118099493,-34.7767915213093,-34.7780445293316,-34.7779494223652,-34.7783338323397,-34.7784890452058,-34.7786275220301,-34.7788396046395,-34.7789903588662,-34.7791965571377,-34.7792481862867,-34.7793408614524,-34.7797173262982,-34.7796393084287,-34.7796130818546,-34.779628780153,-34.7796650175551,-34.7796897133658,-34.7797876088926,-34.7800320834218,-34.7807115047308,-34.7811055025204,-34.7812411312061,-34.7814121393994,-34.7815065680987,-34.7815965011461,-34.7816774095393,-34.7817807294907,-34.781852573209,-34.7819244235975,-34.7819827203293,-34.7820409837105,-34.7821127807381,-34.7821710908101,-34.782233903204,-34.7823101825432,-34.7823865285835,-34.7824448119751,-34.7825076176989,-34.7825659211008,-34.782651271785,-34.7826809001077,-34.782713547866,-34.7827408046261,-34.7827945923657,-34.7828528357367,-34.7829066168063,-34.7829376061216,-34.7829377862145,-34.7829471977349,-34.7829990444736,-34.7830298003352,-34.7830960478341,-34.7831508761104,-34.7831816186318,-34.7832318045139,-34.7832596493861,-34.7834393171826,-34.7838253438985,-34.7839563390403,-34.7835778629851,-34.7836138015196,-34.7836540356026,-34.7836897606936,-34.7837433950209,-34.7838107364173,-34.783846448168,-34.7839136294818,-34.7839808774967,-34.7840345851951,-34.7840793416105,-34.7841240646753,-34.7841912860097,-34.7843260355035,-34.7844069238864,-34.7844877855888,-34.7845463057938,-34.7845776652754,-34.7845843590885,-34.7848030081572,-34.7848975835988,-34.7850010969833,-34.785104557007,-34.7852125393629,-34.7853341554167,-34.7854558048211,-34.7855639205792,-34.7857215552087,-34.7858566715583,-34.785946744678,-34.7860368644884,-34.7861360089531,-34.7862531960562,-34.7863612117626,-34.7864514449649,-34.7865507361719,-34.7866815903234,-34.7868077687302,-34.7869067864628,-34.7870055840819,-34.7870774344703,-34.7871719165305,-34.7872800789793,-34.7873564983907,-34.7874464314382,-34.787531882174,-34.787621975304,-34.7877211197687,-34.7878337111682,-34.7879823544941,-34.78808595459,-34.7881940836882,-34.7883066950982,-34.7884418381282,-34.7885679498339,-34.78865342058,-34.7887433069367,-34.7888917034686,-34.7890045016415,-34.7891081684385,-34.7892434448706,-34.7893561496621,-34.7894462828127,-34.7895499496096,-34.7896626143804,-34.7897752124501,-34.7898967551328,-34.7899912238527,-34.7900767346195,-34.79019376164,-34.7903062463179,-34.7904007150378,-34.7904951704176,-34.7905761121613,-34.7906931992127,-34.7907923303372,-34.7909095374506,-34.7910717210928,-34.7911978928295,-34.7913240779063,-34.7914592142663,-34.7916122065016,-34.791724657829,-34.7918055995727,-34.7918910636487,-34.7919616682811]}]],[[{&#34;lng&#34;:[-56.1274053768421,-56.1271609583756,-56.1270181160936,-56.1268177516635,-56.126771896807,-56.1264531481,-56.1263308299727,-56.1262103356244,-56.1261734833355,-56.1260002885886,-56.1258412294544,-56.1255880756268,-56.1253309433497,-56.1250856471649,-56.124937052827,-56.1246438400609,-56.1241813942945,-56.1237492993997,-56.1234585255296,-56.1232155856523,-56.1229851483037,-56.1227936066443,-56.1221324175659,-56.1206842170877,-56.120258477639,-56.1201062658372,-56.118530126315,-56.1178661438823,-56.1178073388063,-56.1174963184997,-56.1138286788765,-56.1110007979505,-56.1109564824026,-56.110862620383,-56.1105119438891,-56.1099971845762,-56.1098175005026,-56.1093598131148,-56.1090035117604,-56.1088967911412,-56.1083916994424,-56.1077891939012,-56.107472420337,-56.1065237420024,-56.1065363769234,-56.1074246122783,-56.1075620173117,-56.1079425563844,-56.1083569457956,-56.1086204074487,-56.1089768712297,-56.1091701410911,-56.1093512098734,-56.1098033804489,-56.1100264176792,-56.1101738610328,-56.1102440835799,-56.1102777821024,-56.110544882026,-56.110903772787,-56.1094199904411,-56.1087939651276,-56.1084355536189,-56.1070732310343,-56.1064704992007,-56.1064611335719,-56.1019242822563,-56.1008193657559,-56.0971658215297,-56.0916202174816,-56.0913504686964,-56.0897647639833,-56.0887717647764,-56.0887369895641,-56.0882376587876,-56.0880225848157,-56.0874774551819,-56.0868610964809,-56.086026081496,-56.0854965084767,-56.085133096002,-56.0846441902844,-56.0843895737072,-56.0840958626116,-56.0837168962958,-56.0830808242284,-56.0829430765052,-56.0829031359755,-56.0828160819174,-56.0827904841355,-56.0827717118835,-56.0826656820939,-56.0823984381179,-56.0825318131294,-56.0825032128758,-56.0828143934176,-56.0829970302203,-56.083208519603,-56.0831264676981,-56.0828815878175,-56.0820241619301,-56.0817777140073,-56.0817439230614,-56.0813262906341,-56.0810198111117,-56.0803192953812,-56.0800254663754,-56.0796510074971,-56.0793829499796,-56.079321521766,-56.0792736017167,-56.0792007284547,-56.079120035574,-56.0790725852961,-56.0790100577505,-56.0789298133691,-56.0788427793207,-56.0787915688358,-56.078749669571,-56.0786362538758,-56.0784495815394,-56.0783399133183,-56.0782931577168,-56.0782404996589,-56.0781622953602,-56.078128113756,-56.0780868119192,-56.0780086631705,-56.0779361310693,-56.077902633866,-56.0778601067139,-56.0777878567533,-56.0777021258477,-56.0776763498687,-56.0776531590608,-56.0776138976748,-56.0775814503098,-56.0775562110011,-56.0775204425831,-56.0774494513243,-56.0774317937602,-56.0773943505385,-56.0773149806689,-56.0772276554963,-56.0771993810404,-56.0770813491608,-56.0766100289953,-56.0762919452077,-56.0763410503622,-56.0761230987719,-56.0760914318891,-56.07600359876,-56.0759449205753,-56.075916970471,-56.0758893998944,-56.075861916309,-56.0758723237037,-56.0758451879716,-56.0758051998043,-56.0757305602779,-56.0756291681495,-56.0754392347334,-56.0752218972546,-56.0749400457951,-56.0745329389534,-56.0740333872769,-56.0735515880842,-56.0732837400138,-56.0726508372489,-56.0718026831642,-56.0715541185428,-56.0709790858218,-56.0705330453292,-56.0703368278261,-56.0701701966154,-56.0698497834931,-56.0698290710493,-56.0698266693075,-56.0698236776402,-56.0698189791711,-56.0698149168646,-56.0698119765408,-56.0698066978944,-56.0698043507043,-56.0697996199533,-56.0697828212063,-56.0696393931521,-56.0694677380772,-56.0690813248404,-56.0690256144651,-56.0693287321089,-56.0694337345432,-56.0693024190978,-56.0691217825843,-56.0684134609635,-56.0679683011873,-56.0675974038266,-56.0675587410725,-56.0677787355375,-56.0677200948419,-56.0675894626696,-56.0674382087792,-56.0670541623602,-56.0669409583903,-56.0667740842775,-56.0665955396537,-56.0663660113175,-56.0660712549535,-56.0656924007382,-56.0654252589759,-56.0652516075944,-56.065003541806,-56.0648885957125,-56.0646108539578,-56.0645345808108,-56.0645265551963,-56.0647384350341,-56.0649598002909,-56.0649123849642,-56.064772148208,-56.0645877012195,-56.0642708014043,-56.0640648912593,-56.0637587418957,-56.0635425417764,-56.063369499634,-56.0630160443298,-56.0626039186241,-56.0623474557432,-56.0621119977494,-56.0615682289339,-56.0613110359449,-56.0609859784649,-56.0607507102647,-56.060300320003,-56.0600437578368,-56.0598599543838,-56.0595635769774,-56.0594313349308,-56.0592993800508,-56.0589647205926,-56.058912341654,-56.0587236390876,-56.058676289839,-56.0587130654999,-56.0586566186283,-56.0585669993914,-56.0584571090395,-56.0582246238768,-56.0580834157734,-56.0579121342762,-56.0578324341059,-56.0576625735542,-56.0575094268389,-56.0573261109363,-56.0571354553207,-56.0569945391081,-56.0567005742068,-56.0565087712446,-56.0564297292417,-56.0563647651804,-56.0562520782469,-56.0565928497151,-56.056657598136,-56.0567022980161,-56.0564701158651,-56.0561950568664,-56.0559411018038,-56.0552940407317,-56.0551582964243,-56.0550646902706,-56.0551109318148,-56.0548991932725,-56.0547169490271,-56.0538678186915,-56.0535798622955,-56.0531299973883,-56.0525967711723,-56.0519141204706,-56.0510356261572,-56.0503693943904,-56.0499086308159,-56.0498400056246,-56.0495934935529,-56.0493376210212,-56.0490417560593,-56.0485112235837,-56.0479009034713,-56.0476062991222,-56.0473839595345,-56.0471539457486,-56.0468161346649,-56.0464930338726,-56.0460580999045,-56.0458729606895,-56.0456693521778,-56.0456045056484,-56.0455248036749,-56.0454906931215,-56.0454726109093,-56.0455479131456,-56.045579095135,-56.0451680417585,-56.0447860795939,-56.0444163703236,-56.0439057774619,-56.04330246511,-56.0425345118767,-56.0422562720158,-56.0412682639332,-56.0407844189157,-56.0405446085554,-56.0401587184805,-56.0397390890741,-56.0391345972099,-56.0387213168838,-56.0384980870462,-56.0381776789674,-56.038124350009,-56.0382127728205,-56.0382417582727,-56.0383593633112,-56.0383247060096,-56.0380570338435,-56.0369882891331,-56.0369869849387,-56.0370644409518,-56.0371494083355,-56.0371786147283,-56.0371508512561,-56.0370745592023,-56.0370194895202,-56.0368928377451,-56.036767961907,-56.0365808945646,-56.0363630388601,-56.0361775749281,-56.0359769643417,-56.0357011426448,-56.0355706073101,-56.0354767060231,-56.0353334442073,-56.0351840566042,-56.0350963394689,-56.0350702335563,-56.0349891762575,-56.0349507597084,-56.0348793653255,-56.0348121957801,-56.0347181143478,-56.0346985839059,-56.0346359865271,-56.0345477328844,-56.0344647722365,-56.0344261761711,-56.0343933488322,-56.034317464081,-56.0342534139762,-56.0341454736272,-56.0341453208979,-56.0341066387646,-56.0340390743369,-56.0339469566581,-56.0338821910684,-56.0337549194134,-56.0337529561345,-56.0338238496497,-56.0338553391333,-56.0338704422827,-56.0338865294242,-56.0338372600249,-56.0337604457093,-56.033734693419,-56.0336028401838,-56.0335019126213,-56.0334214069336,-56.0334130969244,-56.0334473785401,-56.0334234410401,-56.0332904085126,-56.0331585032364,-56.0330454410951,-56.0328858941427,-56.032754253772,-56.032522657897,-56.0323153090555,-56.0317450832563,-56.0315028457267,-56.0312599856522,-56.0308620645299,-56.0306180401897,-56.0305429691811,-56.0306532889349,-56.0308487716127,-56.031076601852,-56.0310438797738,-56.0305816306539,-56.0302026974418,-56.0298964700105,-56.0295193130484,-56.0293436418544,-56.0292824276432,-56.0293085459735,-56.0294186113158,-56.0294816868866,-56.0294325861674,-56.0294474254763,-56.0293984042997,-56.0290402124885,-56.0290978642845,-56.0293907238777,-56.0295629029434,-56.0295591572188,-56.0295709916748,-56.0292394770646,-56.0291655811844,-56.0292775211188,-56.0294574577078,-56.0296609287639,-56.0302503162257,-56.0309549281274,-56.031594169434,-56.0319215420823,-56.0324545558011,-56.0327921455696,-56.0330051506865,-56.0330041668193,-56.0328781057483,-56.0328239645172,-56.0325958184228,-56.032512005646,-56.0323856963708,-56.0323506375441,-56.0324701865754,-56.0327009009619,-56.0330799813344,-56.0335504196689,-56.0342054916513,-56.0346594058542,-56.034876150898,-56.0350201888523,-56.0352959843014,-56.0356527411367,-56.0362030580686,-56.0365823652998,-56.0368834830592,-56.0371479012296,-56.0371637068595,-56.0370654700855,-56.0370922062368,-56.037159033037,-56.0372024839091,-56.0372920026824,-56.0375600575711,-56.0378196537811,-56.0380020245764,-56.0381956913976,-56.0382244880298,-56.0384519570541,-56.0387919463029,-56.0388713494404,-56.0388878747148,-56.0388271818064,-56.038887194884,-56.0392608895475,-56.0396571806846,-56.039889774306,-56.0399884470142,-56.0399283454159,-56.03969449517,-56.0395996884438,-56.0394980560994,-56.0396513463448,-56.0398676077331,-56.0402202239089,-56.0405886027855,-56.0410905956483,-56.0418308824153,-56.0421835163126,-56.0425326168436,-56.0428737940333,-56.0430411942543,-56.0430450902359,-56.0427761690802,-56.0426354462536,-56.0424142015316,-56.0415382320355,-56.0412910905302,-56.0410973992964,-56.0409077455838,-56.0407004280587,-56.040860763195,-56.0404905977021,-56.0396581705177,-56.0390874770932,-56.038545461887,-56.0381845310186,-56.0381771308214,-56.0381902551132,-56.0388451980783,-56.0399477803357,-56.0405348210741,-56.0410403402084,-56.0413921967234,-56.0415944520496,-56.0417432661944,-56.0418953006419,-56.041840385367,-56.041540072613,-56.0411801728602,-56.0405577831356,-56.0400889927148,-56.0399177222034,-56.0403170745532,-56.0408639090559,-56.0416541847947,-56.0416506624904,-56.041326460867,-56.0406755092052,-56.0401471182137,-56.0400033423331,-56.0400457021112,-56.0404683729791,-56.0409326404471,-56.0414881027678,-56.0422295561582,-56.0428790464794,-56.0433558862917,-56.0434401210885,-56.0435128634907,-56.0439438583287,-56.0443112789052,-56.0447754072578,-56.044890341799,-56.0451366599767,-56.0451991878982,-56.0452771139486,-56.0454233998511,-56.0455173016409,-56.0455322768719,-56.0456261288999,-56.0457091141947,-56.0457420252679,-56.0458033165123,-56.0458501427609,-56.0458810936825,-56.0459381870382,-56.0460056974703,-56.0460942919243,-56.0461668112286,-56.0463608733869,-56.0464633476432,-56.0536586304246,-56.0592416430604,-56.0636503167263,-56.0670988943915,-56.0690898148352,-56.0692811465684,-56.0694203941217,-56.0694566343096,-56.0694865489221,-56.0694681837713,-56.0694656007516,-56.0695073549521,-56.0695799270232,-56.0696365023789,-56.0706612464804,-56.071372073932,-56.0717218480525,-56.0724091305939,-56.0734752906404,-56.0747077359181,-56.0754894007073,-56.0801804047086,-56.080219482809,-56.0801815565771,-56.0792746812775,-56.0790789603392,-56.0780875090224,-56.0780351553556,-56.076860149375,-56.0756926405942,-56.0773413883839,-56.0794749845791,-56.083218975451,-56.0838189034298,-56.0866390427235,-56.0874276910594,-56.0875354933371,-56.0877203213366,-56.0885612701521,-56.0887794990812,-56.0888669082344,-56.0900712093233,-56.0918316185246,-56.0920085979836,-56.0951902947827,-56.0953420795779,-56.0955111962912,-56.0955314670136,-56.0957430070309,-56.0958788673111,-56.096166412582,-56.0963751804425,-56.0973418620757,-56.0978796296588,-56.0986374044881,-56.0987255459195,-56.1002208304093,-56.1018255113176,-56.1021356360941,-56.1023201597538,-56.1026691106616,-56.1027580922735,-56.1027959249456,-56.1029633714746,-56.1032786073831,-56.1033210326393,-56.1034596457521,-56.1036672211345,-56.1039962708339,-56.1041531050506,-56.1043198977365,-56.1045259840205,-56.1059624848607,-56.1067154475063,-56.1074197430728,-56.1077563104461,-56.1087875474937,-56.1100157340321,-56.1112117819533,-56.1119208234024,-56.1125038050536,-56.11299408457,-56.1132866154356,-56.1156151029629,-56.1176641169993,-56.1177225836862,-56.1184076017343,-56.1186951908957,-56.1191845976844,-56.1195077500931,-56.1196925254837,-56.1198319741111,-56.120744625176,-56.1212354713874,-56.1214628744544,-56.1215513986332,-56.1215285012307,-56.1214770824496,-56.1213398361492,-56.121188967594,-56.1206941371636,-56.1201259893424,-56.1196261340738,-56.1199792468499,-56.1200286225682,-56.1203288451862,-56.1207820082982,-56.1212736514076,-56.12147753968,-56.1218830981701,-56.122538426996,-56.1235020504635,-56.1236039959933,-56.1240836410331,-56.1251035926275,-56.126278207509,-56.1262673882352,-56.1262574388558,-56.126268785834,-56.1263447359642,-56.1264384416508,-56.1264468638495,-56.126525547803,-56.1266193996657,-56.1268704961171,-56.1274897403506,-56.1275484304003,-56.1277111531603,-56.1280757959278,-56.1285152535127,-56.1286370380021,-56.1289603017068,-56.1289640572105,-56.1289421290504,-56.1289053764244,-56.1289193646156,-56.1289265552307,-56.1289421691167,-56.1290401922487,-56.1297487169541,-56.1298216567617,-56.1301470044819,-56.1304336966511,-56.1303866694474,-56.1303876859592,-56.1305224542787,-56.1305533710264,-56.131839142349,-56.1318348612406,-56.1319841982575,-56.1321935646264,-56.1330281949717,-56.1334190982722,-56.1334638346867,-56.1336730983217,-56.1337679982088,-56.1358313423282,-56.136497705989,-56.135113655532,-56.1351119746652,-56.1336105470072,-56.1323757535259,-56.1322739743691,-56.1306532185039,-56.1296007162901,-56.1295301927981,-56.1294636355579,-56.1293129675102,-56.128723229826,-56.12856331402,-56.1285392830877,-56.1274053768421],&#34;lat&#34;:[-34.8040901150116,-34.8037046379213,-34.803479356732,-34.8031633531829,-34.8030910330928,-34.8026223037588,-34.8024424297502,-34.8022652368126,-34.8022110435142,-34.802038578772,-34.801931208865,-34.8017603210908,-34.8016291185872,-34.8015039545959,-34.8014296976278,-34.8012831696531,-34.8010520679576,-34.8008361310061,-34.8006908169392,-34.8005716057188,-34.8004585287604,-34.8003848956393,-34.8000865036063,-34.7993867025417,-34.7990045725056,-34.798928299598,-34.795583214452,-34.794173940987,-34.7939440826825,-34.7938212884092,-34.7920123623764,-34.7906612064423,-34.7906438353673,-34.7906146251356,-34.7905068255358,-34.7903859744852,-34.7903518074801,-34.7903214697824,-34.7903278584378,-34.7903316071801,-34.7903493481054,-34.7904175837787,-34.7904832932618,-34.7906800754462,-34.7906410141156,-34.7904430595922,-34.7904186109884,-34.7903509004327,-34.790305502985,-34.7902950505738,-34.790280907542,-34.7902823222726,-34.7902764245399,-34.790312719557,-34.7903608323417,-34.7903883179559,-34.7904014084046,-34.7904108936146,-34.7904860745134,-34.7905771618972,-34.7897760709164,-34.789425532111,-34.7894578621178,-34.7895824930598,-34.7892762153071,-34.7892714561283,-34.7869658902775,-34.78640484093,-34.7845465625683,-34.7816507516544,-34.7815088354993,-34.7807614991054,-34.7803063806342,-34.7802847793933,-34.7799746088903,-34.7791845426259,-34.7790416636237,-34.7790023431886,-34.7784524677961,-34.7781709030491,-34.7780756432064,-34.7780887053053,-34.7781278836894,-34.7780678434354,-34.7782082567488,-34.7783908885659,-34.7783912087932,-34.7783913016153,-34.7783915038842,-34.7783915633484,-34.7783916069534,-34.7783918531893,-34.7781822876452,-34.7779964254792,-34.7775816380689,-34.777329527941,-34.7773894639054,-34.777182136991,-34.7769964607217,-34.7767466040848,-34.7765370737153,-34.7764366227092,-34.7764299234893,-34.7762657878531,-34.7762863622563,-34.7760615598661,-34.7760130751033,-34.7756516942507,-34.7755903317322,-34.7755783903446,-34.7755690748638,-34.7755549085305,-34.7755392220315,-34.7755299977856,-34.7755178425157,-34.7755022430649,-34.7754853236415,-34.7754753682884,-34.7754672230251,-34.7754451748087,-34.775408885114,-34.7753448330561,-34.7753175252451,-34.7752867700362,-34.7752410943307,-34.7752211303215,-34.7751970076644,-34.775151364207,-34.7751090011124,-34.7750894367088,-34.7750645982397,-34.7750223997568,-34.7749723274508,-34.7749572726148,-34.7749437276763,-34.7749207964563,-34.7749018450516,-34.774887103616,-34.7748662124623,-34.7748247487467,-34.7748144355175,-34.7747925660895,-34.7747462085273,-34.774695204392,-34.7746786900645,-34.7746097507677,-34.7743216917029,-34.7737552039666,-34.7733018307147,-34.7730239234402,-34.7729490460425,-34.7727547434272,-34.7726239743875,-34.7725616851869,-34.7724912827057,-34.7724130816339,-34.7723273689491,-34.7722179735345,-34.7721441718452,-34.7720362539682,-34.7719540726368,-34.7718854285431,-34.7718475664311,-34.7719078311178,-34.7720389553423,-34.7720399706215,-34.7720546234154,-34.7721913784646,-34.7723831833505,-34.7727854080717,-34.7726871098632,-34.772717421394,-34.7726320612084,-34.7724927618461,-34.7723526956037,-34.7721767558477,-34.7719332455973,-34.7719150724277,-34.7718924354807,-34.7718568837114,-34.7718261455521,-34.7718038970596,-34.7717639551992,-34.771746194737,-34.7717103985842,-34.7706495139548,-34.770497994302,-34.7699994021897,-34.76964089011,-34.7694292811569,-34.7691165773651,-34.7688940508968,-34.7684945400506,-34.7683543652978,-34.7683364793451,-34.7681583025346,-34.7680535466321,-34.7677525308264,-34.7676752757867,-34.7675156179009,-34.7673206959581,-34.7671424786611,-34.7667685559608,-34.7666027495856,-34.7664858091334,-34.766160588387,-34.7660104803559,-34.7660443534191,-34.7661173290054,-34.7662501805932,-34.7663583057758,-34.766499883774,-34.7667266479655,-34.7668931417894,-34.76702736796,-34.7671201410724,-34.7673578472673,-34.7676161097781,-34.7677175673956,-34.7678437674377,-34.7680396301077,-34.7680540575838,-34.7681652835916,-34.7681597286265,-34.7685148244837,-34.7687938782741,-34.7690139426432,-34.7690867239915,-34.7691774940395,-34.7692178371724,-34.7694159996144,-34.7694468634135,-34.7694030787097,-34.7694265579342,-34.7694989646072,-34.7695981603593,-34.7695883097447,-34.7695944520218,-34.7695428422396,-34.7694659404477,-34.7692441386924,-34.7690968393826,-34.7688797264115,-34.7685505371821,-34.7680112142887,-34.7676359895375,-34.767377732598,-34.7671576673265,-34.7669366536825,-34.7667753653609,-34.7665632559827,-34.766402939138,-34.7660470113641,-34.7660373945428,-34.7659853871144,-34.7656803816188,-34.7654938002018,-34.7652891701874,-34.7650853312062,-34.7648486404154,-34.7647488522834,-34.7642992246968,-34.7639814737502,-34.7636784462202,-34.7633415378376,-34.7630952290797,-34.7630256462476,-34.7628972068604,-34.7621085379547,-34.7616601548381,-34.7609090365283,-34.7604372386598,-34.7601910855479,-34.7600463375045,-34.7601493500231,-34.760315739476,-34.7603459673241,-34.7605188781573,-34.761071120014,-34.7612402496232,-34.7614289766008,-34.7615181270252,-34.7614630013543,-34.7613807656842,-34.7614209249351,-34.7613848890198,-34.7613217246582,-34.7610893068306,-34.7609436695736,-34.7607680954565,-34.7606261032042,-34.7604577771384,-34.7603532891701,-34.7605352754874,-34.7606434325286,-34.7608056474594,-34.7610727791988,-34.7612888153848,-34.7615689327418,-34.7617981966893,-34.7619644689105,-34.7622093624962,-34.7624169235796,-34.7627596132262,-34.7629253392811,-34.7629044680908,-34.7629503170926,-34.7631308371723,-34.7633046402433,-34.7634284772743,-34.7633605041196,-34.7634243791198,-34.7635747881786,-34.7636389301,-34.7637859252973,-34.7638990739782,-34.7640507035382,-34.7643685641013,-34.7645620638552,-34.7648662910046,-34.765009852926,-34.7654407807179,-34.7657861922831,-34.7659611360007,-34.7661742400065,-34.7662865226832,-34.7665665922857,-34.7666808327941,-34.7669794245397,-34.7670891823251,-34.7672672268521,-34.767606960035,-34.7678735976762,-34.7679873123743,-34.7680732380089,-34.7682772369335,-34.7682885135371,-34.7682741804501,-34.768353764728,-34.7684088771979,-34.7685051135604,-34.7685907502894,-34.7686712340756,-34.7687675191433,-34.7688847093807,-34.7689402133608,-34.7690522017618,-34.7691477667357,-34.7692654806809,-34.7693770276704,-34.769471580626,-34.7695243989316,-34.769666617329,-34.7698854409753,-34.7700127404278,-34.7701758151764,-34.7703181314873,-34.7705064796261,-34.7707455217365,-34.7708101553671,-34.7708932360544,-34.7710985921532,-34.7713258278402,-34.7715754207131,-34.7718806638692,-34.7720490875648,-34.7722925965935,-34.7723662502348,-34.7724581247562,-34.7727953638279,-34.7728765962964,-34.7729985319483,-34.7730850992813,-34.7732524918914,-34.7734201298808,-34.7735527792677,-34.7736399736145,-34.7739077008546,-34.7740028020206,-34.774197104357,-34.774223869535,-34.7743709938533,-34.7744708154583,-34.7745531767826,-34.7746424679651,-34.7746926570987,-34.774671696261,-34.7747782339169,-34.7749372035162,-34.7752431475546,-34.7756571876404,-34.7759601176396,-34.776138054053,-34.7763030907993,-34.7766388725028,-34.7768156699287,-34.7770227728111,-34.7770956364753,-34.7770679024728,-34.7769890142899,-34.7771562401652,-34.7774397691232,-34.7775353699541,-34.7778347968618,-34.778061267545,-34.7782867469061,-34.7785327774069,-34.778761791248,-34.7795061596416,-34.7798185784073,-34.7801160102029,-34.7802555901668,-34.7802690470068,-34.7804294063788,-34.7808146037594,-34.7810163661043,-34.7811695761558,-34.7813981030813,-34.7814756071326,-34.7817585376741,-34.7820723376423,-34.7821908025779,-34.7821596813786,-34.7820205868802,-34.7819895445422,-34.7821261380464,-34.7822104434515,-34.7825045381857,-34.7827654789652,-34.7830503308547,-34.783226722435,-34.7835266039433,-34.7838831768187,-34.7842282340164,-34.7844258694477,-34.7844706396399,-34.7844406505528,-34.7841814157504,-34.7839857282061,-34.7838019579121,-34.7837187866923,-34.7837294041663,-34.7838081130499,-34.7839389416187,-34.7839549787595,-34.7841092676939,-34.7843842611557,-34.7848149706345,-34.7853537980987,-34.7856912624575,-34.7860964945021,-34.7867544811763,-34.7869659722454,-34.7871417741791,-34.7872905347099,-34.7874268773641,-34.7874705644968,-34.7876309871172,-34.7879078754406,-34.7880486044584,-34.7882515831626,-34.7885889664086,-34.7888539468387,-34.7890073571193,-34.7890303399399,-34.7892273877617,-34.7894400057356,-34.7897443115219,-34.7899945995386,-34.7904164979639,-34.7906602580712,-34.7909493730963,-34.7910525402861,-34.791054246513,-34.7909096612741,-34.7908704091123,-34.7908344837008,-34.7909422715158,-34.7911744517064,-34.7917124758064,-34.7921109425324,-34.7922464502942,-34.7923820729078,-34.7925991911334,-34.7928196599161,-34.7929673216178,-34.7935927749042,-34.7939775797973,-34.7942501149674,-34.794618216513,-34.7951773488027,-34.7960070171183,-34.7959531205029,-34.7957936184739,-34.7957126457121,-34.7958230670898,-34.7963045130674,-34.7969416886135,-34.7972954561553,-34.7975511145975,-34.797465456894,-34.7974700864985,-34.797843666712,-34.7982625709632,-34.7984496527238,-34.798838664737,-34.798949468777,-34.7994685428104,-34.8000524331735,-34.8004446830878,-34.800822117999,-34.8012772293816,-34.8013905803421,-34.8019554400992,-34.8024048707075,-34.8030030276145,-34.8035844393471,-34.8038231740728,-34.8039964694562,-34.804259940798,-34.8046666359816,-34.8050110761424,-34.8056579736206,-34.8058082390257,-34.8058763389688,-34.8058949217668,-34.8058490534064,-34.805755049585,-34.8057470364743,-34.8057186474393,-34.805711323151,-34.8057050780311,-34.8057878892418,-34.8058538561768,-34.8059528826555,-34.8059777341371,-34.8060607609216,-34.8061443239334,-34.8062101252847,-34.8062796451604,-34.8063497836888,-34.8064502004808,-34.8064811236877,-34.8064899780652,-34.8065337217539,-34.80658601625,-34.8066515286616,-34.8067257980171,-34.8067958949679,-34.8068918917531,-34.8070280093853,-34.8071718254637,-34.8029996726426,-34.7997539120542,-34.7971860744213,-34.7951247110823,-34.7934283176712,-34.7932015797124,-34.7929274016091,-34.7926883791988,-34.7924910760289,-34.7924623599484,-34.7924308412827,-34.7922415516453,-34.7921309564293,-34.7920333153595,-34.7925951532663,-34.7929898735328,-34.7931837880327,-34.7935648114019,-34.7941454130582,-34.7948165474719,-34.7952421950262,-34.7977964370989,-34.7977468124647,-34.7977969513357,-34.7989958277574,-34.7992559085543,-34.8005124632584,-34.8005845671109,-34.8020832533551,-34.8035773038751,-34.8044273115299,-34.8055272228316,-34.8074568446536,-34.8077707896172,-34.8092465098878,-34.8096157384727,-34.8096267198718,-34.8096433651662,-34.8097208778461,-34.8096707907621,-34.8097261883455,-34.8103231962377,-34.8111581238275,-34.8112513567978,-34.8128376725048,-34.8129143265397,-34.8128761320852,-34.8128902404274,-34.8132679004944,-34.8132743647974,-34.8132980797847,-34.8133995027677,-34.8138750445805,-34.8141379502706,-34.8145098891037,-34.814553151067,-34.8152870562273,-34.8160769102419,-34.8162369158691,-34.8163192418852,-34.8164832974895,-34.8165571845984,-34.8165756129497,-34.8166571761666,-34.816810735361,-34.8168313999886,-34.8169038900663,-34.8170008934304,-34.8171623366908,-34.8172392830406,-34.8173215854861,-34.8174232712614,-34.8181458239003,-34.8185229362382,-34.8188756669657,-34.8190442278167,-34.8195606855548,-34.8201458853093,-34.8207554720214,-34.8211281652546,-34.8214217133603,-34.821668513975,-34.821816603682,-34.8230092054039,-34.8240559006364,-34.824083262763,-34.8244000408513,-34.8239735692691,-34.8242028703647,-34.8243582650271,-34.8244361299075,-34.8244946533717,-34.8249190044374,-34.8251546352022,-34.8252545720974,-34.8252852598084,-34.8253112108253,-34.8253694867761,-34.8255719282442,-34.8257693518272,-34.8265604349335,-34.8273005852449,-34.8280480266118,-34.8282804655964,-34.8283041903964,-34.8284926838316,-34.8287771972651,-34.8290890794462,-34.8291980288206,-34.8294686593425,-34.8298878949032,-34.8304740852334,-34.8303471430194,-34.8295246452546,-34.8277857831038,-34.8256893290336,-34.8256442308514,-34.8256027586242,-34.8255513228694,-34.825207039812,-34.824811241167,-34.8247756668745,-34.8245110079454,-34.8240314512287,-34.822748389284,-34.8213288921567,-34.8212028292982,-34.8207988168686,-34.8198630695278,-34.819910936047,-34.8199242007449,-34.8199578628006,-34.8198948420234,-34.8191510003145,-34.8189402205009,-34.8185481944193,-34.8185144245818,-34.8184410957893,-34.8182870159151,-34.8173265763185,-34.8172615490485,-34.8164484865529,-34.8156413993501,-34.8156144203888,-34.8155176826412,-34.8152004943485,-34.8152146384417,-34.815851020195,-34.8158475319457,-34.8158697167203,-34.8159001182983,-34.8160194902906,-34.8160736418897,-34.8160798921153,-34.8161091285806,-34.8161223870288,-34.8164149312347,-34.8165079792219,-34.8144470897018,-34.8144445884118,-34.8122106896664,-34.8104063057661,-34.8103073947552,-34.8086706639846,-34.8075300298764,-34.8074551713976,-34.8073869998209,-34.8072182369035,-34.806173796286,-34.805924347639,-34.8058862823194,-34.8040901150116]}]],[[{&#34;lng&#34;:[-56.1451489569346,-56.1462188561015,-56.1472506431256,-56.1477873920567,-56.1481778343537,-56.1488123969902,-56.149072781277,-56.1493215028825,-56.1500458097594,-56.1512842751344,-56.1521454626041,-56.1536260328387,-56.1539281586527,-56.1549704461871,-56.156216848288,-56.1563291070297,-56.1567593621101,-56.156479060885,-56.1559491442601,-56.155884543298,-56.1558177568642,-56.1564348648979,-56.1564489507581,-56.1564669271171,-56.1570616498818,-56.1573862912943,-56.1575480891236,-56.1577236402605,-56.1577248857383,-56.1579560553973,-56.1582297814696,-56.1582314788655,-56.1584939405565,-56.1586963198324,-56.159045309527,-56.1597544320503,-56.1601966165746,-56.1604722544254,-56.1606559810752,-56.1609718968289,-56.1617337341878,-56.1620973419977,-56.1627476759388,-56.1632679104017,-56.1637164633986,-56.1648789939124,-56.1653014524847,-56.1658760538213,-56.1680932055034,-56.1688794377433,-56.1688897980864,-56.1689239206843,-56.1689658872955,-56.1689904549977,-56.1689927328557,-56.1690196758547,-56.169034609436,-56.1690339020383,-56.1690578819017,-56.1690599109817,-56.1690678899329,-56.1690505910114,-56.1689633226716,-56.1689440603747,-56.168826867298,-56.1688014983919,-56.1687809069284,-56.1687742779823,-56.1687230670989,-56.168621304706,-56.1686144110622,-56.1685635936573,-56.1685310399204,-56.1684695997127,-56.1681947613048,-56.168137497197,-56.1681306982658,-56.1681270280397,-56.1681240314943,-56.1680954167369,-56.1680255390325,-56.1680024154404,-56.1679151370954,-56.167687689795,-56.1675957383687,-56.1644974378338,-56.1610171584451,-56.1606364830267,-56.1604661020779,-56.155820812113,-56.1557076414564,-56.1552192118279,-56.1538187196216,-56.1525603089104,-56.1521075263728,-56.1497241138526,-56.1494854474329,-56.1494005936009,-56.1491156167017,-56.1489776322062,-56.1489688953858,-56.1487001847588,-56.1484315311149,-56.1480273393263,-56.1475986777108,-56.1475142008106,-56.1446177670456,-56.1431280420896,-56.1427829707942,-56.1432460162652,-56.1433034192027,-56.1439315731578,-56.1364390323961,-56.1362068340459,-56.136096150902,-56.1293205845638,-56.1274322240213,-56.1273983332096,-56.1263212644043,-56.1251509123095,-56.1250856471649,-56.1253309433497,-56.1255880756268,-56.1258412294544,-56.1260002885886,-56.1261734833355,-56.1262103356244,-56.1263308299727,-56.1264531481,-56.126771896807,-56.1268177516635,-56.1270181160936,-56.1271609583756,-56.1274053768421,-56.1285392830877,-56.12856331402,-56.128723229826,-56.1293129675102,-56.1294636355579,-56.1295301927981,-56.1296007162901,-56.1306532185039,-56.1322739743691,-56.1323757535259,-56.1336105470072,-56.1351119746652,-56.135113655532,-56.136497705989,-56.1375642260206,-56.1390912675397,-56.1392596677534,-56.140623537119,-56.1410729260473,-56.141380086598,-56.1418044520255,-56.1430136753319,-56.1430975988293,-56.1438364207519,-56.144242249711,-56.1450511670622,-56.1451489569346],&#34;lat&#34;:[-34.8177183004783,-34.81756144919,-34.8176524578543,-34.8177221566386,-34.8177651862663,-34.8178569615933,-34.8178878641972,-34.8179052665053,-34.8179575334608,-34.8181301958405,-34.8182497108108,-34.8184938433828,-34.818542655223,-34.8186797125737,-34.8188394564947,-34.8188515374475,-34.8188959841104,-34.8196538749741,-34.8211605653462,-34.821405930903,-34.8216595956156,-34.8218448571195,-34.8218535640117,-34.8218646757327,-34.8219534247447,-34.8220018688788,-34.8220260125766,-34.8220477956442,-34.8220479879645,-34.8220836837656,-34.8221224855648,-34.8221227258609,-34.8221598816126,-34.8221856513884,-34.8222300888382,-34.8223393230731,-34.8224016572469,-34.822441499488,-34.8224712220741,-34.8225089698111,-34.8226014551166,-34.8226515327134,-34.8227430511429,-34.8228227559138,-34.8228981748092,-34.8230785052074,-34.823173443439,-34.8232755827815,-34.82364419235,-34.8237543763743,-34.8236957528073,-34.8231638384855,-34.822462039763,-34.8221292249088,-34.8220938045944,-34.8216263496234,-34.8214426108043,-34.8213964070473,-34.8209321855822,-34.8208331940836,-34.8207657350555,-34.8206623017123,-34.8201440544389,-34.8200549931424,-34.8194780709742,-34.8193545603881,-34.8192543089077,-34.8192228036344,-34.8189794138039,-34.818490447772,-34.8184629874697,-34.8182244643306,-34.8180975189577,-34.8177747125087,-34.8164683921391,-34.8151158653361,-34.8149552784544,-34.8148685937489,-34.8148009922184,-34.8146138290268,-34.8141567533012,-34.814008089965,-34.8134359282199,-34.8119537304793,-34.8119167981545,-34.8088748692985,-34.8084579381114,-34.8084091440759,-34.8083881820713,-34.8077720655217,-34.8077598628842,-34.8076995789246,-34.8075206218077,-34.8073374416147,-34.8072715290816,-34.806968052571,-34.8069376635653,-34.8069268576072,-34.8068905659425,-34.8068729968817,-34.806866883377,-34.8068360927981,-34.8067948416881,-34.8067426974188,-34.80668957562,-34.8066783364903,-34.8062933979677,-34.8060942485946,-34.8060545281097,-34.8036737002559,-34.8036825714977,-34.8008821739277,-34.7997780778504,-34.7997184982919,-34.7996900980217,-34.7987358336717,-34.7986500961214,-34.7987267890072,-34.800022804062,-34.8014257220881,-34.8015039545959,-34.8016291185872,-34.8017603210908,-34.801931208865,-34.802038578772,-34.8022110435142,-34.8022652368126,-34.8024424297502,-34.8026223037588,-34.8030910330928,-34.8031633531829,-34.803479356732,-34.8037046379213,-34.8040901150116,-34.8058862823194,-34.805924347639,-34.806173796286,-34.8072182369035,-34.8073869998209,-34.8074551713976,-34.8075300298764,-34.8086706639846,-34.8103073947552,-34.8104063057661,-34.8122106896664,-34.8144445884118,-34.8144470897018,-34.8165079792219,-34.8166541479382,-34.8169034070706,-34.8169277056856,-34.8171244905059,-34.8172150419683,-34.8172784866029,-34.817298988198,-34.8174612066688,-34.8174744247982,-34.8175493029258,-34.8176400495327,-34.8177249398137,-34.8177183004783]}]],[[{&#34;lng&#34;:[-56.141006168464,-56.1408902285374,-56.1404585322238,-56.1398944751596,-56.1384608284214,-56.13845260418,-56.1380481514407,-56.1377222956294,-56.1376506135512,-56.1376887569111,-56.1376833474546,-56.1373254795596,-56.1369735232179,-56.1369582412344,-56.1369465412085,-56.1369256087267,-56.1369255484897,-56.1366039641223,-56.1362348971184,-56.1358817316486,-56.1356738210904,-56.1355099265658,-56.1354758012727,-56.1353376753909,-56.1351061893059,-56.1350493626617,-56.1350974433408,-56.1357125267384,-56.1362186437695,-56.1366237683803,-56.1369026798092,-56.1375271852101,-56.1379356344344,-56.1381950641312,-56.1383376958177,-56.1386487562113,-56.1388555022355,-56.1389955676275,-56.1391329328878,-56.1390222021824,-56.1387395769696,-56.1384745209212,-56.1382731476725,-56.1380262020051,-56.1377673487253,-56.1372175301434,-56.1366595606566,-56.1363717369726,-56.1361544530766,-56.1359411742234,-56.1356524123186,-56.1349883101569,-56.1349428274316,-56.1348923994699,-56.1351731705931,-56.135545895906,-56.1360354534875,-56.1365199232557,-56.1367325172335,-56.1373114160719,-56.1376861293478,-56.1381623422338,-56.1384929270353,-56.1390481169316,-56.1391745102987,-56.1394437504939,-56.1395752640327,-56.139652293704,-56.139663362526,-56.1397201476638,-56.1397846560108,-56.1399244302787,-56.1399779360759,-56.1399945360604,-56.1400952013094,-56.1402851759508,-56.140374341936,-56.1406464956259,-56.1408708113113,-56.1414290392037,-56.1418376766151,-56.1425635242867,-56.1431298997143,-56.1433160323744,-56.1437045455053,-56.1438217332953,-56.143966977638,-56.1441481784964,-56.1442396417597,-56.1443214158338,-56.1444084957857,-56.1445063429146,-56.1456176466616,-56.1456608783381,-56.145682145973,-56.1456958897277,-56.1457160801404,-56.1457393654826,-56.1457572146879,-56.1457750605581,-56.145822038119,-56.1458700462113,-56.1459228701206,-56.1459376077212,-56.1459455051274,-56.1459712650791,-56.1459918823787,-56.146014240576,-56.1460314060954,-56.1460437491277,-56.1460540077517,-56.1460666576088,-56.1460875683931,-56.1461074519809,-56.1461139486647,-56.1461252478253,-56.1461368904964,-56.1461547397017,-56.1461777482345,-56.1462017339378,-56.1462202334785,-56.1462271070234,-56.1462332935473,-56.1462435688465,-56.1462579462613,-56.1462761189668,-56.1462905330671,-56.1462953688944,-56.1463001880465,-56.1463125310787,-56.1463231665637,-56.1463341422242,-56.1463427399916,-56.1463657318491,-56.1463770676953,-56.1463887437169,-56.1464014435999,-56.1464172417474,-56.1464371386754,-56.1464443557308,-56.1464618747658,-56.1464708160437,-56.1464804410075,-56.1464944949222,-56.1465154190466,-56.1469413553795,-56.1469543820977,-56.1469801287093,-56.1469965938674,-56.1470069158574,-56.1470179248684,-56.1470264926203,-56.147034046516,-56.1470405932257,-56.1470471399353,-56.1470601866639,-56.1470879843332,-56.1471106526905,-56.1471188902721,-56.1471226688875,-56.1471292155972,-56.1471371130034,-56.1471488057003,-56.1471645704973,-56.1471793080978,-56.1471817193414,-56.1471838037497,-56.147195463096,-56.1472108843825,-56.1472325088682,-56.1472459457979,-56.1472480302062,-56.1472497577639,-56.1472586790315,-56.1472703550531,-56.147276544912,-56.1472817075745,-56.1472985462587,-56.1473239493597,-56.1473414717298,-56.1473596777858,-56.1473720741789,-56.1473823961689,-56.1473923312927,-56.1473971837952,-56.1474000185905,-56.1474096435544,-56.1474147895416,-56.1474360905271,-56.1474645885576,-56.1474890011478,-56.1475058398319,-56.1475154481205,-56.1475264071057,-56.1475397940096,-56.147549075463,-56.1475638464141,-56.1475848539149,-56.1475969067975,-56.1476034535071,-56.1476144958686,-56.1476210759288,-56.1476224766512,-56.1476235338631,-56.1476283730254,-56.1476404392483,-56.1476487301908,-56.1476532258427,-56.1476566609476,-56.1476923760334,-56.1477256765407,-56.1477346011433,-56.1477377294233,-56.1477425986012,-56.1477533674883,-56.1477561355825,-56.1477664609076,-56.1477860676859,-56.1477991611052,-56.1478057078149,-56.1478146824433,-56.1478233302365,-56.1478333153861,-56.1478660322591,-56.1478794691888,-56.1479059661873,-56.1479365152756,-56.147950619216,-56.1479492685195,-56.1479472508122,-56.1479534540114,-56.1479641395221,-56.1479642729243,-56.1479660805232,-56.1479822855472,-56.1479955457191,-56.1479973066273,-56.1479987240249,-56.148000791758,-56.1480076653028,-56.1480138351515,-56.148020692021,-56.1480186743138,-56.1480139185278,-56.1480283159529,-56.1480423698675,-56.1480462118489,-56.1480497003147,-56.1480548929927,-56.1480666390504,-56.1480849118075,-56.1480959708443,-56.148104962148,-56.1481187392532,-56.1481538173439,-56.1481751683551,-56.1481941281332,-56.1481984136767,-56.1481736475708,-56.1481586531711,-56.1481453663188,-56.148153799141,-56.1481895457699,-56.148219248246,-56.1482439338192,-56.1482529417982,-56.1482622899526,-56.1482737091751,-56.1482792453636,-56.1482748497634,-56.1482770842491,-56.1482905378541,-56.1483006864213,-56.1483124324791,-56.1483224309689,-56.1483204299369,-56.1483071597598,-56.1482902110189,-56.1483080001932,-56.1483205933545,-56.1483173883683,-56.1483275536108,-56.1483320059069,-56.1483213971024,-56.14831405665,-56.1483038013611,-56.1482941163663,-56.1482817633289,-56.148283964464,-56.1482654215677,-56.1482506072609,-56.1482542591443,-56.1482634505512,-56.1488156892451,-56.1488521762924,-56.1489692363966,-56.1489574006834,-56.1487124344466,-56.1496612414277,-56.150608049721,-56.1509845872443,-56.1515473474742,-56.1525737601548,-56.1534986838283,-56.1547786072509,-56.1548733661204,-56.1548990126804,-56.1560136375209,-56.1560420608773,-56.1561394746428,-56.156246137427,-56.1562635627911,-56.1575276334673,-56.1588195106077,-56.1598543129794,-56.1601050475658,-56.1604029795502,-56.1613604366687,-56.1619922274994,-56.1623161512218,-56.1626588357824,-56.162763447901,-56.1627770722926,-56.1628129065468,-56.1628425398437,-56.1628468393874,-56.1629360412339,-56.1630294842004,-56.1630568242241,-56.1630735867893,-56.1630763653556,-56.1633205610139,-56.163326476079,-56.1634348715078,-56.1635480815598,-56.1636445668042,-56.1636458805492,-56.1636487651516,-56.1636494138195,-56.1637678982582,-56.1638866861869,-56.1639799993109,-56.1640385795222,-56.1635655255561,-56.1634002153014,-56.1625034161325,-56.161367992232,-56.1611480104484,-56.1603884420529,-56.1603607644455,-56.1591470086293,-56.1590457208333,-56.1575833736433,-56.1567177940058,-56.1564967163919,-56.1562423345244,-56.156060002469,-56.1556890834734,-56.1543619839044,-56.1537871459289,-56.1527634103788,-56.151917104998,-56.1507582338414,-56.1503605587502,-56.1498817818327,-56.1486855549078,-56.1475153013782,-56.1470098573744,-56.1460933680508,-56.1459052677093,-56.1458738114865,-56.1449625513071,-56.1436943490076,-56.1435556714723,-56.1428820808948,-56.142276216073,-56.141006168464],&#34;lat&#34;:[-34.9019100955824,-34.9018968735749,-34.9017894939517,-34.9016452314956,-34.9012207044082,-34.901216217094,-34.9023633255528,-34.9032945809708,-34.9035407856623,-34.9037103967396,-34.9037284360429,-34.9047253318342,-34.9057115788779,-34.9057539891634,-34.9057794950538,-34.9058251275235,-34.9058252588391,-34.9067371593852,-34.9077656247911,-34.9087489836011,-34.9093263680397,-34.9097819613341,-34.9098748338133,-34.9102764437978,-34.9109573932142,-34.9111071085805,-34.9111066742556,-34.9111282906706,-34.9111629217782,-34.9112485543561,-34.9113953545015,-34.9117170107157,-34.911885416206,-34.9118941524202,-34.9118641312114,-34.9117387578141,-34.9115816118292,-34.9113964085031,-34.9114697911403,-34.9116517543901,-34.9118600839562,-34.9119892318032,-34.9120326289224,-34.9120308775618,-34.9119669759639,-34.9117079165035,-34.911428108248,-34.9113329652514,-34.9112969402023,-34.9112781835885,-34.9112726820223,-34.9112679567325,-34.9113877844982,-34.9115177641687,-34.9114692604319,-34.9114512239592,-34.9114684977006,-34.9115719350508,-34.9116561991052,-34.9119361556077,-34.9121284589247,-34.9122214869609,-34.9122307271581,-34.9119760565586,-34.9118976463441,-34.9117685265874,-34.9116005023824,-34.9114389884517,-34.9111804615384,-34.9109532908853,-34.9107882401366,-34.910630618196,-34.9104868561704,-34.9104561940532,-34.9103973603778,-34.9103563358871,-34.9103335841534,-34.9103239058287,-34.91032335888,-34.9103715737457,-34.9104697276995,-34.9107248459371,-34.9109442957797,-34.9110700306244,-34.9113267496207,-34.9113509609979,-34.9114223468725,-34.9114709580286,-34.911486953994,-34.9115387026606,-34.9116171861398,-34.9116304663221,-34.9125520101836,-34.9125965979142,-34.9126145738515,-34.9126325664641,-34.9126370254304,-34.9126459800485,-34.9126639626559,-34.9126819485984,-34.9127178871328,-34.9127538223322,-34.9127987621755,-34.9128077368039,-34.9128167314427,-34.9128482176809,-34.9128752082673,-34.9129112068327,-34.9129291927752,-34.9129381774088,-34.9129381507284,-34.9129381173778,-34.9129515876581,-34.9129650579385,-34.9129650445982,-34.9129695235748,-34.9129739992164,-34.9129919818238,-34.9130189690751,-34.9130324293503,-34.9130413973086,-34.9130503952824,-34.9130593932562,-34.9130638722329,-34.9130683445393,-34.9130818214897,-34.9130953051102,-34.9131088154112,-34.9131178167201,-34.9131267980186,-34.9131357859873,-34.9131447739559,-34.9131582742517,-34.9131807491759,-34.9131942428016,-34.9132077364273,-34.9132212233829,-34.9132392126604,-34.9132571919328,-34.9132661865715,-34.913288678171,-34.9133021751317,-34.9133156720925,-34.913324653391,-34.9133426293283,-34.9137697262598,-34.9137787075584,-34.9138056848046,-34.9138191650901,-34.9138371677078,-34.9138551669905,-34.9138596526371,-34.9138686472759,-34.9138821542418,-34.9138956578727,-34.9139091448282,-34.9139361187394,-34.9139631026556,-34.9139720972944,-34.9139765929463,-34.9139900999121,-34.9139990912159,-34.9140170904985,-34.914026065127,-34.9140350430905,-34.9140395454125,-34.9140485533915,-34.914057538025,-34.9140665126535,-34.9140889942478,-34.9141160015095,-34.9141250094885,-34.9141295118104,-34.9141385031142,-34.9141519967398,-34.9141609947136,-34.9141699960225,-34.914192487622,-34.9142194648682,-34.9142419564677,-34.9142644480672,-34.9142869496718,-34.9143049522896,-34.9143094346012,-34.9143274505592,-34.9143544845013,-34.914367981462,-34.9143724771139,-34.9143994643652,-34.9144309405983,-34.9144669358286,-34.9144894274281,-34.9144984187318,-34.9145028977084,-34.914516384664,-34.9145298816247,-34.9145478742373,-34.9145883851298,-34.9146108900695,-34.9146243937004,-34.9146514076321,-34.914673925912,-34.914682933891,-34.9146919452051,-34.914705455506,-34.9147324661027,-34.9147549810476,-34.9147684913485,-34.9147729870004,-34.9148134612073,-34.9148494330923,-34.914858424396,-34.914871938032,-34.9148944596469,-34.9149395028769,-34.9149485108559,-34.9149665134736,-34.9149980130521,-34.9150250203137,-34.9150385239446,-34.9150610388894,-34.9150880561563,-34.915106058774,-34.9151690746062,-34.9151960818679,-34.9152410850772,-34.9152725579752,-34.9152950595799,-34.915299568572,-34.9153085865561,-34.915322093522,-34.9153446017968,-34.915380657058,-34.9154076910002,-34.9154437062408,-34.9155157867479,-34.9155293003839,-34.9155428173549,-34.9155473196769,-34.9155563176507,-34.9155608099675,-34.9155652989493,-34.9155743169334,-34.9155833415876,-34.9155923195511,-34.9156013008497,-34.9156238257997,-34.9156418450927,-34.9156598577156,-34.9156913773044,-34.9157318948671,-34.9157634144558,-34.9157904350577,-34.9158174423194,-34.9158714368324,-34.9159119443899,-34.9159524619525,-34.9160020275147,-34.9160561721051,-34.9160697290968,-34.9160832827534,-34.9161111160156,-34.9161012019948,-34.9160881457466,-34.9161055709147,-34.9161370971736,-34.9161686234325,-34.9162046486783,-34.9162226646362,-34.9162361949475,-34.9162857671798,-34.9163172800985,-34.9163803526266,-34.9164118722154,-34.9164343804902,-34.9164479074664,-34.91646596678,-34.916506571054,-34.9166011731761,-34.9166777593402,-34.9167363562268,-34.9168039344119,-34.9168985698845,-34.9169887330506,-34.9170383286283,-34.9171330007865,-34.9171961200054,-34.9172772751925,-34.9173178327758,-34.9173899899891,-34.9174531258832,-34.9175162117516,-34.9175973135779,-34.9175727552191,-34.9175635813488,-34.9175408978328,-34.9175947054883,-34.9184154169275,-34.9181887252507,-34.9179700124549,-34.917883431136,-34.9177558186563,-34.9175188597839,-34.9173046893307,-34.9170084765662,-34.9170172477564,-34.9170171843904,-34.9165996957475,-34.9161530887585,-34.9152292854949,-34.9144177504625,-34.9142804420134,-34.914381161682,-34.9144806239927,-34.9145753561536,-34.9145610243525,-34.9145827855753,-34.9146614194622,-34.9147093475132,-34.9147310353648,-34.9147469879273,-34.9139035252174,-34.913806462169,-34.9135511701731,-34.9131398396927,-34.9130297772413,-34.9123450816125,-34.9113691080543,-34.9112078501354,-34.911022284907,-34.9109927161583,-34.9089041898292,-34.9088213411544,-34.9076973045566,-34.9067325253286,-34.9058806662201,-34.9058227997851,-34.9056235567384,-34.9056145420894,-34.9046001722863,-34.903576787834,-34.9027743089752,-34.9022738858942,-34.902401321616,-34.9024468250833,-34.9026339582594,-34.9028307214018,-34.9028853779229,-34.903018054681,-34.9030226337092,-34.9031157919246,-34.9031018435017,-34.9031284019638,-34.9031492239951,-34.9031542964056,-34.9031461392435,-34.9031247327281,-34.9031324870301,-34.9031296868359,-34.9031251665881,-34.9031041735288,-34.9030941180542,-34.9030652306776,-34.903057218212,-34.9030313798865,-34.9029757895505,-34.9029156151837,-34.9028898318866,-34.9028470398176,-34.9028339847515,-34.9028340631252,-34.9027494090675,-34.9025306475574,-34.9025083794044,-34.902357255252,-34.9022172508593,-34.9019100955824]}]],[[{&#34;lng&#34;:[-56.2325204373686,-56.2322617306136,-56.231557404041,-56.2314805095563,-56.2314263593581,-56.2313845966193,-56.2313854482996,-56.2315327105625,-56.2319041662084,-56.2308925336698,-56.2302950235665,-56.2302353166443,-56.2286413373071,-56.2285412591748,-56.2278789865725,-56.228127616465,-56.2279690759626,-56.2271894613812,-56.2267355506211,-56.2266100492302,-56.2259285611027,-56.2246967224786,-56.2239629707307,-56.2219855876103,-56.2217989611667,-56.2217943439517,-56.2217874786601,-56.2217860048534,-56.2217938598282,-56.2217911236585,-56.2217072793803,-56.2196155253086,-56.2179146614629,-56.2170712345706,-56.2166535344007,-56.2141958028036,-56.2141093991546,-56.2128615521118,-56.2124734402859,-56.2111917342773,-56.211716039675,-56.2117366603096,-56.2122188306438,-56.2126580171436,-56.2131013324393,-56.2130865181325,-56.2129331603158,-56.2128908382648,-56.212742343856,-56.2126917945634,-56.2136097846611,-56.2143984030384,-56.2147247096564,-56.2153220143684,-56.2158175513276,-56.2160134585459,-56.2160464026699,-56.2162109237645,-56.2162408615748,-56.2162851810982,-56.2167474528369,-56.2172055824394,-56.2175218822299,-56.2181936886977,-56.2177917847589,-56.2173551695853,-56.2172815033798,-56.2174104547639,-56.2180595761991,-56.2183346380556,-56.2185384164826,-56.2189667487213,-56.2190606470183,-56.219229179138,-56.2202360186462,-56.2208093643352,-56.2209852617167,-56.2214181816512,-56.2217906003838,-56.221820899343,-56.2218536729119,-56.2220697276702,-56.2231905090191,-56.2242028044191,-56.225103919147,-56.2251516037392,-56.2260434278697,-56.2267169840866,-56.2270365469979,-56.2279090191422,-56.2289848506427,-56.2298373465536,-56.2301526262278,-56.2309123780513,-56.2311904181103,-56.2321676921155,-56.2322317451493,-56.2331586631846,-56.2331838861928,-56.2341669832011,-56.2339012328135,-56.2331081638075,-56.2339125386442,-56.2347042402783,-56.2354731234777,-56.2362807966821,-56.2370723309504,-56.2378532657645,-56.2381229445163,-56.2381904869122,-56.2380967441114,-56.2376360777212,-56.2368444008352,-56.236742814325,-56.236103168408,-56.2353678625253,-56.2345222730998,-56.2345150560445,-56.2338958700478,-56.2330371505174,-56.2326464490227,-56.232953847556,-56.2327740022103,-56.2327737709287,-56.232707424142,-56.2325139707002,-56.2322004890297,-56.2318472968795,-56.2312824489063,-56.230721649014,-56.2320821175655,-56.2325042308876,-56.2334888801526,-56.2325204373686],&#34;lat&#34;:[-34.8440793351422,-34.8437015769893,-34.8427213014361,-34.8426732667302,-34.8426394399394,-34.8425780984922,-34.84248648755,-34.841887063989,-34.8403750314046,-34.8409553315666,-34.841298071875,-34.8413323202951,-34.8422466194034,-34.8421368654129,-34.8413246472554,-34.8411779654657,-34.840985653775,-34.840039955264,-34.8402937694958,-34.840362855125,-34.8407379852559,-34.8414449265102,-34.8405052619012,-34.8415795626122,-34.8416631264572,-34.8414382496194,-34.8400435045045,-34.8397785033182,-34.8385222961986,-34.8383914185356,-34.8384464976629,-34.839702981478,-34.840735800796,-34.8412429729341,-34.8414788039817,-34.8429059693997,-34.8429598486536,-34.8437257961464,-34.8439613342861,-34.844708853134,-34.8454419045207,-34.845468885102,-34.8461750226085,-34.8468181876385,-34.8474658483203,-34.8476687062727,-34.8489417086267,-34.8492836190027,-34.8505185467726,-34.8509509690196,-34.8504569275631,-34.8514460643529,-34.8518236557531,-34.8525114004406,-34.8531181416941,-34.8530134107263,-34.8529958295334,-34.8529071598321,-34.8528916865639,-34.8528690182066,-34.852628734286,-34.8532132357284,-34.8536404293764,-34.8545487711648,-34.8546897205227,-34.8548623228715,-34.8548693506916,-34.8549973625149,-34.8558742264027,-34.8562474588882,-34.8564992220623,-34.8570813151744,-34.8572057941389,-34.8573932475996,-34.858513104006,-34.8581958453877,-34.8581006562962,-34.8578649530714,-34.8577015487996,-34.8577510309855,-34.8578185341319,-34.8576871613796,-34.8569986212819,-34.8564275901198,-34.8571684221859,-34.8572088346943,-34.8579303227704,-34.8584378195098,-34.8587194132767,-34.858322405658,-34.8578232465622,-34.8573566391606,-34.857184070256,-34.8567670201726,-34.8565948730586,-34.8560013519646,-34.855960584273,-34.8554167938263,-34.8554031918114,-34.8548907625386,-34.8551304811676,-34.855795539155,-34.8564419675346,-34.8557769078797,-34.8551299458915,-34.8544513058995,-34.8537678763218,-34.8531349179131,-34.8529044200721,-34.852695021611,-34.8527438735982,-34.8529728602189,-34.8522532382466,-34.8521720058387,-34.8513496979876,-34.8504295334352,-34.8508874495943,-34.8508784616257,-34.8492759685123,-34.8497744789402,-34.8493070011833,-34.8491347556852,-34.8489168726405,-34.8489165924415,-34.8488362128039,-34.8485998331453,-34.8487856189598,-34.8483721023654,-34.8477068692877,-34.8470271513291,-34.8462498648148,-34.8460189622886,-34.8454914267273,-34.8440793351422]}]],[[{&#34;lng&#34;:[-56.2387287724992,-56.2379413321541,-56.237116989126,-56.2363249088697,-56.2355177509853,-56.2347254115305,-56.2339256815881,-56.2331333096738,-56.2323135063198,-56.2315234325506,-56.2307006288468,-56.2299316856164,-56.2291210375445,-56.2283077981361,-56.228071489599,-56.2274771397443,-56.2270365469979,-56.2267169840866,-56.2260434278697,-56.2251516037392,-56.225103919147,-56.2242028044191,-56.2231905090191,-56.2220697276702,-56.2218536729119,-56.2215384636837,-56.2209659684333,-56.2198772302765,-56.2187949454479,-56.2195252053949,-56.2184751805369,-56.217954772149,-56.218096605296,-56.2175445139017,-56.2172037081394,-56.2170717901059,-56.2161440049567,-56.215946072878,-56.2149566742865,-56.2152644046576,-56.2155240985884,-56.2159031407368,-56.2160205879741,-56.2161010828206,-56.2161833052248,-56.2163039474431,-56.2163643385884,-56.2164159251929,-56.2164474914724,-56.2164647270279,-56.2164569496836,-56.216434074553,-56.2164225419387,-56.2163917460564,-56.2163809704992,-56.2162916977923,-56.2162729848082,-56.2162587107801,-56.2162468113099,-56.2162223453588,-56.216171989389,-56.2161263958752,-56.2161155002561,-56.2160534048986,-56.2159853764813,-56.2159765519302,-56.2159863036261,-56.2159983064829,-56.2160649275078,-56.2160641871259,-56.2160877892982,-56.216113806049,-56.2161447286633,-56.2161579187991,-56.2161730365957,-56.2161887413617,-56.2162284685167,-56.2162872321559,-56.2163064720785,-56.2163291304306,-56.2163555473879,-56.2163796131325,-56.2164023315156,-56.2164199439321,-56.2164393639475,-56.2164539814862,-56.2164841637186,-56.2165992197226,-56.2166386834083,-56.2166692024811,-56.2167152829127,-56.2167181733997,-56.2167720198934,-56.2168918186677,-56.2169794891706,-56.2171020256992,-56.2171835777576,-56.2172232282064,-56.2172309531391,-56.2172483044722,-56.2172900426643,-56.217241636492,-56.2173506222818,-56.2173741198283,-56.217433836993,-56.2174696765438,-56.2175395090417,-56.2176195376706,-56.217648682447,-56.2177271242769,-56.2178360581331,-56.2178971105316,-56.2179317871847,-56.2179620050964,-56.2179919011646,-56.2180317011691,-56.2181099381007,-56.2182149620693,-56.2183197121772,-56.2183194382211,-56.2183674915629,-56.2184638037665,-56.2185821359117,-56.218630497461,-56.2186875711057,-56.2187134678322,-56.2186867153912,-56.2187128517374,-56.218769822786,-56.2188353348704,-56.2189232433081,-56.2190770744713,-56.2192349196101,-56.219533390909,-56.2197263585772,-56.2198623550834,-56.2200376250809,-56.2202088465668,-56.2203231650149,-56.2204461231099,-56.2206124394427,-56.2206628821239,-56.2207627809795,-56.2208022906872,-56.2208641533542,-56.2209645143501,-56.2210874710953,-56.2211668759349,-56.2212912155933,-56.2213284408073,-56.2215817993664,-56.2218230337772,-56.2220024696502,-56.222073723064,-56.2221547014934,-56.2223407707874,-56.22258493671,-56.2228235230884,-56.2230273515413,-56.2232122068759,-56.2233458691423,-56.2234325838633,-56.223650849762,-56.2237888842832,-56.2239514447865,-56.2241384979213,-56.2242659069627,-56.2244985135906,-56.2246387892677,-56.2247229993636,-56.2247736121326,-56.2248080799085,-56.2248134460093,-56.2247878761556,-56.2248163575108,-56.224808486785,-56.2247884697951,-56.2248042179168,-56.2247425294358,-56.224767632382,-56.2248434915045,-56.2248797602092,-56.2249005409263,-56.2249006876687,-56.2248673171253,-56.2248261659026,-56.2247616759768,-56.2246947914828,-56.2246697585727,-56.2247173831339,-56.2248276133157,-56.2249898136332,-56.2250518089391,-56.2251229856468,-56.2252188217386,-56.2253069656089,-56.2253680599622,-56.2253966590977,-56.2254140236897,-56.2254374254029,-56.225448686446,-56.2258831153644,-56.2258850352814,-56.2258944953737,-56.2259934901268,-56.2260485629907,-56.2261624750714,-56.2261660569187,-56.226270814278,-56.2264454043186,-56.2265454492477,-56.2265922767311,-56.2266707472004,-56.2268427825901,-56.2269718825035,-56.2270223285198,-56.2271634713108,-56.2271975522205,-56.2272117128568,-56.2272117028517,-56.2273037770034,-56.2273468917861,-56.2273141939214,-56.2272354854097,-56.2271655423934,-56.2271378961885,-56.227141384081,-56.227184836443,-56.2273600489901,-56.2275649500799,-56.2277110225497,-56.2277608601022,-56.2277970247172,-56.2279189642712,-56.2281120738627,-56.2282011998273,-56.2282405834718,-56.228306544156,-56.2284286938184,-56.2284976393754,-56.2285334811933,-56.2285725880283,-56.2286597563166,-56.2286804536574,-56.2287518004528,-56.2287608117668,-56.2287818092624,-56.2287847741248,-56.2288196120916,-56.2288638449036,-56.2288865299362,-56.2288969519778,-56.2289259369261,-56.2289890161243,-56.2289826695178,-56.229003260137,-56.2290735430503,-56.2298130877858,-56.2297875579527,-56.2298146452557,-56.2298078917728,-56.2298339552143,-56.2298361296691,-56.2298665720357,-56.2298755233187,-56.2299247220251,-56.2299273733925,-56.2299553611598,-56.2299806975598,-56.2300048400107,-56.2300202612971,-56.2300475220229,-56.2300639504955,-56.2300870890953,-56.2301069560078,-56.2301454958838,-56.2301655795748,-56.2301826917333,-56.2302140345643,-56.2302321905945,-56.2302484923351,-56.2302649208077,-56.2302938690703,-56.2303126921112,-56.2303344833495,-56.2303505683116,-56.2303822313077,-56.2303993834868,-56.230419167023,-56.2304183999608,-56.2304413417925,-56.2304610619627,-56.2304775104456,-56.2305040474647,-56.2305317984433,-56.2305450652853,-56.2305482235808,-56.2305861231266,-56.2305927031868,-56.2306426055894,-56.2306426689554,-56.2306778971234,-56.2306981475671,-56.2307179311033,-56.2307217964301,-56.2307467292886,-56.2307802699197,-56.2307808001932,-56.2308019911219,-56.2307897514763,-56.2308254665621,-56.2308325368751,-56.230860244498,-56.2308875452443,-56.230895282568,-56.2309669128429,-56.2310004768194,-56.2310359617866,-56.2310385898086,-56.2311242373125,-56.2311512812598,-56.2311819170594,-56.2317353858308,-56.2317740524388,-56.2317906543341,-56.2317751463363,-56.2317546157481,-56.2317613692311,-56.2317229360768,-56.2317296895597,-56.2317019185708,-56.2317202480238,-56.2317197811163,-56.2317426395717,-56.23173909441,-56.23175567296,-56.2317822299895,-56.2317698602768,-56.2317920784019,-56.2318004327104,-56.2318222039384,-56.2318335264444,-56.2318560013686,-56.2319061605703,-56.2319215851919,-56.2319447237917,-56.2319570501487,-56.2319870222728,-56.232028016748,-56.2320610671263,-56.2320757880516,-56.2321467146302,-56.2321614555658,-56.2321910641691,-56.2322017029891,-56.2322292638696,-56.2322388754933,-56.2322702383346,-56.2322808771546,-56.2323129436921,-56.2323303526704,-56.2323575700404,-56.232373998513,-56.2324036504719,-56.2324160001743,-56.2324432175444,-56.2324562475976,-56.2324787225218,-56.2324927564262,-56.2325217046888,-56.2325353984177,-56.2325701796886,-56.2325866081612,-56.2326161967542,-56.2326360636667,-56.2326906051285,-56.2327036151714,-56.2327325834444,-56.2327520868362,-56.2327827226358,-56.2327981472574,-56.2327974202157,-56.2328432638585,-56.2328340591114,-56.2328303405269,-56.2328317512545,-56.2328648383183,-56.232871011502,-56.232881650322,-56.2328769278865,-56.2329396268887,-56.2329464837583,-56.2329543678243,-56.2329615648693,-56.232960604374,-56.2329644063348,-56.2329698958325,-56.2329777798985,-56.2329744048246,-56.2329723937874,-56.2329744882009,-56.2329799776986,-56.2329875182542,-56.2329954023202,-56.2330370804813,-56.2330330183864,-56.233038187719,-56.2332953436743,-56.2333412273376,-56.2334016184829,-56.2334245636497,-56.2334667280322,-56.2316625062261,-56.230965554378,-56.2309948257661,-56.2318052265287,-56.2335060470787,-56.2335594432105,-56.2335894153345,-56.2336422225686,-56.233730277981,-56.2337457459583,-56.2341585840095,-56.2346989243989,-56.2349391086475,-56.235076542284,-56.2351174733932,-56.235428843975,-56.2357823118424,-56.2361029090875,-56.2362709682157,-56.2366213894132,-56.2372527245969,-56.237402451815,-56.2375117215015,-56.237537464778,-56.2375195188562,-56.2376038590192,-56.2376967635992,-56.237671854086,-56.2377294904772,-56.2377922128248,-56.2378475613694,-56.2378560857657,-56.2378608482218,-56.2378652504922,-56.2378326903667,-56.237816688781,-56.2378451868115,-56.2378671047818,-56.2378941920847,-56.2379569544529,-56.2379904083726,-56.2380439626586,-56.2380050159061,-56.237973166147,-56.2380255865149,-56.2380580799392,-56.238121759447,-56.2383594787116,-56.2383865660146,-56.2384327898534,-56.2386886518079,-56.2387842477759,-56.2388295444699,-56.2390008895036,-56.2392920630025,-56.2393359689793,-56.2393495359762,-56.2394131654582,-56.2395739350378,-56.2396214895629,-56.2396188715461,-56.2397938317775,-56.2397614083893,-56.2398092664042,-56.2397542547,-56.239724349277,-56.2397960395828,-56.2398423134474,-56.2400240238268,-56.2400867028186,-56.2401281308508,-56.2402425631998,-56.2403311188702,-56.2404290994013,-56.2405399499031,-56.2404879897726,-56.2404932658269,-56.2404675425608,-56.240593127328,-56.2407131959172,-56.2407808741539,-56.2407229842986,-56.2408736753472,-56.2427309473311,-56.2424168870386,-56.2422190091702,-56.2421008282005,-56.2420617781912,-56.2421654184502,-56.2422939911737,-56.2431611817394,-56.2432831312986,-56.2434846685698,-56.2435828058484,-56.2438954604257,-56.24397179867,-56.243982507459,-56.244069501715,-56.2438222781249,-56.2435850880583,-56.2433824334321,-56.2430484720125,-56.2427183342359,-56.2426848036265,-56.2426486112419,-56.2425209684929,-56.2423166042883,-56.2421771847962,-56.2418798562392,-56.2417647903079,-56.2416189689985,-56.2415658536485,-56.2413974080961,-56.2411393325173,-56.2406573293594,-56.2405789964598,-56.240500391038,-56.2403074660579,-56.2395243065416,-56.2387287724992],&#34;lat&#34;:[-34.868266193924,-34.8675858860327,-34.8669371298042,-34.866268074553,-34.8656173661189,-34.8649790434417,-34.8643345201377,-34.8637023358326,-34.8630462712218,-34.8624060347454,-34.8617658965544,-34.861101307142,-34.8604323388045,-34.8597904127469,-34.8596063745003,-34.8591485383825,-34.8587194132767,-34.8584378195098,-34.8579303227704,-34.8572088346943,-34.8571684221859,-34.8564275901198,-34.8569986212819,-34.8576871613796,-34.8578185341319,-34.8580133095826,-34.8583666251298,-34.8590460321841,-34.8597209018983,-34.8605434244276,-34.8611776298369,-34.8614947150325,-34.8616475171698,-34.8619872323696,-34.8621955964949,-34.8620427643422,-34.8625864363944,-34.8624202840388,-34.8632813030883,-34.8634364264227,-34.8636564749073,-34.8638941858343,-34.8640200223981,-34.8641369577046,-34.8641817758185,-34.8642580251422,-34.8643119229387,-34.8643838767137,-34.864487440124,-34.8646721720617,-34.8647668425523,-34.8648480360926,-34.8649427182559,-34.865010416503,-34.8650465051148,-34.8651819866528,-34.8652000709793,-34.8652181419657,-34.8652316989573,-34.8652633236003,-34.8653130525801,-34.8653582625628,-34.8653673088949,-34.8653900339481,-34.8654623529115,-34.8654995971193,-34.8655164324684,-34.8655254104319,-34.8655206996691,-34.8655837988776,-34.8656648523456,-34.8657504048006,-34.8658629845275,-34.8659080127497,-34.8659259953571,-34.8659980575214,-34.8660925829373,-34.8661645133669,-34.8661869899587,-34.8662094548778,-34.8662319097917,-34.8662633843572,-34.8662993695824,-34.8663398788074,-34.8664029163174,-34.8664614631782,-34.866560522599,-34.8666863658329,-34.8667223010323,-34.8667447409385,-34.8668076984072,-34.8668197608432,-34.8668829801721,-34.8669160288146,-34.8669646326756,-34.8670814379151,-34.8672794933907,-34.8674326073555,-34.8674645170364,-34.8675361907761,-34.8676216948727,-34.8679097382597,-34.8677855675925,-34.8678355600547,-34.8678979863124,-34.8679447339804,-34.8679886069459,-34.8680342162246,-34.868050826158,-34.8681128475629,-34.8682003954802,-34.8682442117614,-34.8682914769994,-34.8683459508114,-34.8683773753024,-34.8684042971399,-34.8684880287635,-34.8685248903736,-34.8685906991765,-34.8686196464587,-34.8686452857844,-34.8686748539174,-34.8686973262284,-34.8686903997572,-34.8686907665094,-34.8687379751078,-34.8687812267724,-34.8688031064972,-34.8688143284434,-34.8688509356484,-34.8688406444937,-34.8688235394222,-34.8688462648665,-34.868855418312,-34.8688783685578,-34.8688900970883,-34.8689274078134,-34.8689285060147,-34.8689111459559,-34.8689123476947,-34.8689139730003,-34.8689588861632,-34.8690070217086,-34.8690260591393,-34.8690447733215,-34.8690751336149,-34.8690567249544,-34.8690434313059,-34.8690943061955,-34.8691025750623,-34.8691588534581,-34.8692212022796,-34.8692972631728,-34.8693330974868,-34.8693283391995,-34.869359310172,-34.8693901002179,-34.8694704833402,-34.8695735089732,-34.8697126482308,-34.8697933573546,-34.8698471701072,-34.8701169067173,-34.8702561910498,-34.8703773718792,-34.8705480515697,-34.8706062440811,-34.8710201558793,-34.8711999952938,-34.8713033919514,-34.8714331405328,-34.8715195717742,-34.8715682835628,-34.8715980247344,-34.8716424276342,-34.8716885472525,-34.8717272613851,-34.8717971282505,-34.8718486406501,-34.8718951688126,-34.8719717266287,-34.8720129945783,-34.8720595402498,-34.872091319139,-34.8721020171562,-34.8720979083705,-34.8720493808436,-34.8720249724223,-34.8720743995798,-34.872087616396,-34.8721999451602,-34.872316618665,-34.8723730719461,-34.8724378895409,-34.8725412486791,-34.8725858146932,-34.8726053819236,-34.8726161120157,-34.8726254919977,-34.8726528098832,-34.8726883641105,-34.872671136425,-34.8727251335454,-34.8727511865038,-34.8728018027548,-34.8728856829794,-34.8729799707727,-34.873016015195,-34.873200471157,-34.8735559711642,-34.8736818510837,-34.873830432711,-34.87394736635,-34.8742668185997,-34.8745413360087,-34.8746583571928,-34.8748021355097,-34.8749282222024,-34.8749597259497,-34.8750318373061,-34.8752073178059,-34.8753244103552,-34.8754672153745,-34.8756114509935,-34.8757126661274,-34.8757624587209,-34.8758365718654,-34.8758850933581,-34.8759292831005,-34.8759288620213,-34.8759590817535,-34.8759955822797,-34.8760981376411,-34.8763005653716,-34.8765929073899,-34.8767954380901,-34.8768854524295,-34.876957355345,-34.8772048513183,-34.8773308275375,-34.8773938116867,-34.8774973475828,-34.8776458012275,-34.877686297946,-34.8777401557218,-34.8777671688199,-34.8777986513062,-34.8778482181191,-34.8779157120941,-34.8780192317318,-34.8780462014741,-34.8780822242187,-34.8781407227212,-34.8781810856207,-34.8782126544015,-34.8782306169986,-34.8782754638773,-34.8796387236119,-34.8796613392337,-34.8796792811951,-34.8796973302952,-34.8797152753833,-34.8797423101591,-34.8797467205587,-34.8797602129337,-34.8797555501123,-34.8797375139356,-34.8797284113245,-34.8797373448901,-34.8797102267379,-34.879719191778,-34.8797010776444,-34.8797055324419,-34.8796829245324,-34.8796918753986,-34.8796737254132,-34.8796556339997,-34.8796600867127,-34.8796374525397,-34.8796464088253,-34.8796238225937,-34.8796282773912,-34.879605650722,-34.8796100980156,-34.8795920011826,-34.8795964570223,-34.8795693151078,-34.8795827814277,-34.8795737046633,-34.8795556795339,-34.879564620395,-34.8795420233244,-34.8795509848211,-34.879523859165,-34.8795372917175,-34.8795237288895,-34.879541746515,-34.8795326124293,-34.8795506192159,-34.8795504608008,-34.8795639813154,-34.8795683764987,-34.8795863399296,-34.8795772631652,-34.8795997856139,-34.8795951994987,-34.8796041068008,-34.8796446675106,-34.8796446001842,-34.8796581598857,-34.8796941017551,-34.8797436556447,-34.8797480745903,-34.8797389738552,-34.8797119078132,-34.8796801316337,-34.8796935458434,-34.8796799121455,-34.8796573690612,-34.8796255482754,-34.879634476213,-34.8796073372168,-34.8794027642132,-34.87941165484,-34.8793800535424,-34.8793530612885,-34.8793486198313,-34.8793305705228,-34.8792991443155,-34.8792810952154,-34.8792631557553,-34.8792360559459,-34.8792090157505,-34.8791999291894,-34.8791728987908,-34.8791367905855,-34.8791141714202,-34.8791006898841,-34.8791006192227,-34.8790600301649,-34.8790374262158,-34.8790464039708,-34.8790283046365,-34.8790101171318,-34.8790190819635,-34.8789964734287,-34.8790009411495,-34.8789783109368,-34.8789736735452,-34.8789510335358,-34.8789554935443,-34.8789192119163,-34.8789281788324,-34.8789010429628,-34.8789100228022,-34.8788828933943,-34.8788918765688,-34.8788737488865,-34.878882728726,-34.8788691056585,-34.8788645433056,-34.8788374149398,-34.8788418693204,-34.8788237470576,-34.8788327216861,-34.8788055931118,-34.8788145654475,-34.8787964661132,-34.878800928206,-34.87877830112,-34.8787827644635,-34.8787646257339,-34.8787690801145,-34.8787374373372,-34.8787463877865,-34.8787146651763,-34.8787191306042,-34.8787010102174,-34.8787054550097,-34.8786783155966,-34.8786872802199,-34.8786782686974,-34.8786871361872,-34.8786916724851,-34.8787006981815,-34.8787097076196,-34.8787681919481,-34.8787726792623,-34.8787816591018,-34.878795195041,-34.8788986542308,-34.8789031392522,-34.8789076209385,-34.8789121049177,-34.8789256287673,-34.878934630493,-34.8789391198917,-34.878943601578,-34.8789526262323,-34.8789616465092,-34.8789706536544,-34.8789751430531,-34.8789796259901,-34.8789841076764,-34.8790515785145,-34.8790606054616,-34.8790696028101,-34.8795284878021,-34.8796184798383,-34.8797399737458,-34.8797489143984,-34.8798530428906,-34.8805263340544,-34.8807793671023,-34.8808480202758,-34.8805464070014,-34.8799135426673,-34.8800098848209,-34.8800593651308,-34.8801673627029,-34.880284260907,-34.8803022391371,-34.8801477076036,-34.8799374899143,-34.8798404076291,-34.8798157307323,-34.8797975715755,-34.8797199530039,-34.8795827936003,-34.8794150076606,-34.8792106593316,-34.8786925028378,-34.8778391930479,-34.8776989944939,-34.87767610644,-34.8776264470794,-34.8775904497647,-34.8775721494934,-34.8775583281987,-34.8774953119496,-34.8774680837407,-34.8775039363975,-34.8774992506476,-34.8774947158089,-34.8774901934766,-34.8774811654873,-34.8773911323882,-34.8773325938651,-34.8772874322408,-34.8772963751862,-34.8772422047491,-34.8772149598649,-34.8772058376603,-34.8771831296993,-34.8771156519826,-34.8771022342294,-34.8770569950651,-34.8770613969186,-34.8770116145779,-34.8768305678741,-34.8767763966033,-34.8767221640508,-34.8767618970422,-34.8767390527608,-34.8767348547624,-34.8767029412205,-34.8766875899701,-34.8767101357642,-34.8766688398835,-34.8765982601504,-34.8764896958277,-34.8764895411646,-34.8764658297693,-34.8764157585297,-34.8764395841505,-34.8765033691293,-34.8765138612071,-34.8765407721691,-34.8766158242087,-34.8766094859398,-34.8765015440214,-34.8764970341956,-34.8764193920702,-34.8763113709443,-34.87625510526,-34.8762296454631,-34.8762199779773,-34.8762804304042,-34.8763200787685,-34.8763752280437,-34.8764135728191,-34.8763916519306,-34.8763397597518,-34.8762538291852,-34.8762856718573,-34.8763875121224,-34.8761598665208,-34.8758084540772,-34.875498192561,-34.8750601756563,-34.8747177019276,-34.8744155669797,-34.8737830849592,-34.8736941432564,-34.8734850070662,-34.8734282744744,-34.8732475295929,-34.8731643313176,-34.872974098135,-34.872908068472,-34.8727055017796,-34.872552227803,-34.8724050087897,-34.8720438020376,-34.8717048096879,-34.8716678362142,-34.8716279276118,-34.8714983037737,-34.8712908458741,-34.8711493150397,-34.8709172031062,-34.8708198041321,-34.8706944311925,-34.870605197385,-34.8704474558975,-34.8702124764038,-34.8698578816909,-34.8697957629344,-34.8697399874414,-34.8695714265384,-34.8689103553624,-34.868266193924]}]]],[1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,8,54,38],&#34;INE&#34;,{&#34;interactive&#34;:true,&#34;className&#34;:&#34;&#34;,&#34;stroke&#34;:true,&#34;color&#34;:&#34;#444444&#34;,&#34;weight&#34;:1,&#34;opacity&#34;:1,&#34;fill&#34;:true,&#34;fillColor&#34;:[&#34;#FECC5C&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FECC5C&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FECC5C&#34;,&#34;#FD8D3C&#34;,&#34;#FD8D3C&#34;,&#34;#FD8D3C&#34;,&#34;#FFFFB2&#34;,&#34;#FD8D3C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#FECC5C&#34;,&#34;#FD8D3C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#FECC5C&#34;,&#34;#FD8D3C&#34;,&#34;#FECC5C&#34;,&#34;#FECC5C&#34;,&#34;#FECC5C&#34;,&#34;#FFFFB2&#34;,&#34;#FECC5C&#34;,&#34;#FECC5C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#E31A1C&#34;,&#34;#FECC5C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#FECC5C&#34;,&#34;#FECC5C&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FFFFB2&#34;,&#34;#FECC5C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#FECC5C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#E31A1C&#34;,&#34;#FD8D3C&#34;,&#34;#FD8D3C&#34;,&#34;#FD8D3C&#34;],&#34;fillOpacity&#34;:0.5,&#34;smoothFactor&#34;:0.5,&#34;noClip&#34;:false},null,null,null,{&#34;interactive&#34;:false,&#34;permanent&#34;:false,&#34;direction&#34;:&#34;auto&#34;,&#34;opacity&#34;:1,&#34;offset&#34;:[0,0],&#34;textsize&#34;:&#34;10px&#34;,&#34;textOnly&#34;:false,&#34;className&#34;:&#34;&#34;,&#34;sticky&#34;:true},{&#34;color&#34;:&#34;white&#34;,&#34;weight&#34;:2,&#34;bringToFront&#34;:true}]},{&#34;method&#34;:&#34;addTiles&#34;,&#34;args&#34;:[&#34;//{s}.tile.openstreetmap.org/{z}/{x}/{y}.png&#34;,null,&#34;StreetView&#34;,{&#34;minZoom&#34;:0,&#34;maxZoom&#34;:18,&#34;tileSize&#34;:256,&#34;subdomains&#34;:&#34;abc&#34;,&#34;errorTileUrl&#34;:&#34;&#34;,&#34;tms&#34;:false,&#34;noWrap&#34;:false,&#34;zoomOffset&#34;:0,&#34;zoomReverse&#34;:false,&#34;opacity&#34;:1,&#34;zIndex&#34;:1,&#34;detectRetina&#34;:false,&#34;attribution&#34;:&#34;&amp;copy; &lt;a href=\&#34;http://openstreetmap.org\&#34;&gt;OpenStreetMap&lt;\/a&gt; contributors, &lt;a href=\&#34;http://creativecommons.org/licenses/by-sa/2.0/\&#34;&gt;CC-BY-SA&lt;\/a&gt;&#34;}]},{&#34;method&#34;:&#34;addLayersControl&#34;,&#34;args&#34;:[[],[&#34;INE&#34;,&#34;StreetView&#34;],{&#34;collapsed&#34;:false,&#34;autoZIndex&#34;:true,&#34;position&#34;:&#34;topright&#34;}]}],&#34;limits&#34;:{&#34;lat&#34;:[-34.9381065136363,-34.70181759889],&#34;lng&#34;:[-56.4315137698824,-56.0236490073619]}},&#34;evals&#34;:[],&#34;jsHooks&#34;:[]}&lt;/script&gt;&lt;p&gt;Especificar &lt;code&gt;group=INE&lt;/code&gt; y &lt;code&gt;group=StreetView&lt;/code&gt; permite agrupar estas capas del mapa para que &lt;code&gt;addLayerControl&lt;/code&gt; las identifique para genera los dos checkboxes que permiten prender y apagar esas capas del mapa.&lt;/p&gt;</description>
     </item>
   
     <item>
       <title>Mining Hamlet</title>
       <link>https://rlabuonora.com/posts/hamlet/</link>
       <pubDate>Sat, 20 Jan 2018 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/hamlet/</guid>
       <description>&lt;p&gt;A lot of Shakespeare’s tragic heores don’t dominate the first act of their plays. Instead, other characters speak about them, setting the scene for exploring their personalities as the play unfolds. This is the case of Julius Caesar, Macbeth and Othello (but not of King Lear).&lt;/p&gt;&lt;p&gt;In this post I go over the text of Hamlet, Prince of Denmark, using the quantity of lines spoken by character to visualize the dynamic of the play. We’ll get the chance to use &lt;code&gt;dplyr&lt;/code&gt; and some &lt;code&gt;regular expressions&lt;/code&gt;.&lt;/p&gt;&lt;div id=&#34;getting-the-text-of-the-plays&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Getting the text of the plays&lt;/h1&gt;&lt;p&gt;The text of Shakespeare’s plays is available from the &lt;code&gt;gutenberg&lt;/code&gt; package. I downloaded the text and made it available as a data frame &lt;a href=&#34;../../public/data/shakespeare_plays.rds&#34;&gt;here&lt;/a&gt;so you don’t have to.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;books &amp;lt;- readRDS(&amp;#39;../../public/data/shakespeare_plays.rds&amp;#39;)hamlet &amp;lt;- books %&amp;gt;%    filter(title == &amp;quot;Hamlet, Prince of Denmark&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;div id=&#34;extracting-the-character-names&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Extracting the Character names&lt;/h1&gt;&lt;p&gt;We can use a regular expressions to extract character names from the lines of the play. Most characters names appear abreviated (Ham. for Hamlet, Hor. for Horatio).&lt;/p&gt;&lt;p&gt;&lt;code&gt;lag&lt;/code&gt; and &lt;code&gt;cumsum&lt;/code&gt; are useful inside call to &lt;code&gt;mutate&lt;/code&gt; to look at consecutive lines in the data frame. I also create a line number index with &lt;code&gt;row_number&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Fran., Ham., Pol.CHAR_REGEX &amp;lt;- regex(&amp;quot;^([A-Z][a-z]*)\\.&amp;quot;)# Stage Dir# [Enter Horatio and Marcellus.]STAGEDIR_REGEX &amp;lt;- regex(&amp;quot;(\\[.+\\])&amp;quot;)hamlet &amp;lt;- hamlet %&amp;gt;%   mutate(char_name = str_match(text, CHAR_REGEX)[,2]) %&amp;gt;%   mutate(stage_dir = str_match(text, STAGEDIR_REGEX)[,2],         char_name = if_else(!is.na(stage_dir), &amp;quot;director&amp;quot;, char_name)) %&amp;gt;%  mutate(start_speech = !is.na(char_name) &amp;amp;            lag(text) == &amp;quot;&amp;quot;) %&amp;gt;%  mutate(speech_idx = cumsum(start_speech)) %&amp;gt;%   mutate(line = row_number()) %&amp;gt;%   select(text, char_name, start_speech, speech_idx, line)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now we need to create a &lt;code&gt;data frame&lt;/code&gt; of speeches. Each line is a speech in the play, with the character that speaks it and the number of lines it lasts.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Build a df with speech, start line, length charspeeches_df &amp;lt;- hamlet %&amp;gt;%   group_by(speech_idx) %&amp;gt;%   summarise(char_name = first(char_name),             line = first(line),          speech_length = as.integer(n()-2)) %&amp;gt;%   dplyr::filter(char_name != &amp;quot;director&amp;quot;)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The longest speech is by Hamlet (duh!), and starts at line 2677.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;speeches_df %&amp;gt;%   arrange(-speech_length)## # A tibble: 1,077 x 4##    speech_idx char_name  line speech_length##         &amp;lt;int&amp;gt; &amp;lt;chr&amp;gt;     &amp;lt;int&amp;gt;         &amp;lt;int&amp;gt;##  1        498 Ham        2677            60##  2        234 Ghost      1296            50##  3         69 King        383            39##  4        761 Ham        4039            36##  5        154 Laer        846            35##  6        522 Ham        2857            35##  7        480 Pol        2553            34##  8        479 Ham        2518            33##  9        568 Ham        3139            32## 10         84 King        502            31## # … with 1,067 more rows&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Lets take a look at the text of the speech:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;hamlet %&amp;gt;%   filter(line %in% 2677:2690) %&amp;gt;%   select(text) ## # A tibble: 14 x 1##    text                                           ##    &amp;lt;chr&amp;gt;                                          ##  1 Ham.                                           ##  2 Ay, so, God b&amp;#39; wi&amp;#39; ye!                         ##  3 Now I am alone.                                ##  4 O, what a rogue and peasant slave am I!        ##  5 Is it not monstrous that this player here,     ##  6 But in a fiction, in a dream of passion,       ##  7 Could force his soul so to his own conceit     ##  8 That from her working all his visage wan&amp;#39;d;    ##  9 Tears in his eyes, distraction in&amp;#39;s aspect,    ## 10 A broken voice, and his whole function suiting ## 11 With forms to his conceit? And all for nothing!## 12 For Hecuba?                                    ## 13 What&amp;#39;s Hecuba to him, or he to Hecuba,         ## 14 That he should weep for her? What would he do,&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Lets focus on the characters with the most lines:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;top_speakers &amp;lt;- speeches_df %&amp;gt;%   group_by(char_name)  %&amp;gt;%  summarize(total_lines = sum(speech_length)) %&amp;gt;%   arrange(-total_lines) %&amp;gt;%   head(6)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Use &lt;code&gt;inner_join&lt;/code&gt; to discard the less important characters:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# Keep speeches by these speakersspeeches_df_main &amp;lt;- speeches_df %&amp;gt;%   inner_join(top_speakers, by = &amp;quot;char_name&amp;quot;) %&amp;gt;%   filter(!is.na(char_name))&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;The last thing we need is a column with the cumulative lines spoken by each character:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;speeches_df_main &amp;lt;- speeches_df_main %&amp;gt;%    group_by(char_name) %&amp;gt;%    mutate(cum_lines = as.integer(cumsum(speech_length))) %&amp;gt;%    ungroup() %&amp;gt;%    mutate(char_name = fct_recode(char_name,             &amp;quot;Horatio&amp;quot;       = &amp;quot;Hor&amp;quot;,             &amp;quot;King Claudius&amp;quot; = &amp;quot;King&amp;quot;,             &amp;quot;Laertes&amp;quot;       = &amp;quot;Laer&amp;quot;,             &amp;quot;Polonius&amp;quot;      = &amp;quot;Pol&amp;quot;,             &amp;quot;Ophelia&amp;quot;       = &amp;quot;Oph&amp;quot;,             &amp;quot;Hamlet&amp;quot;        = &amp;quot;Ham&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Now we can plot the play:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;# color palettecol.pal &amp;lt;- RColorBrewer::brewer.pal(8, &amp;quot;Set2&amp;quot;)# Plot Playg &amp;lt;- ggplot(speeches_df_main, aes(line, cum_lines, fill = char_name)) +   guides(colour = guide_legend(title = NULL)) +  geom_area(alpha = 0.8) +   guides(fill = guide_legend(title = NULL)) +  scale_fill_brewer(palette = &amp;quot;Set2&amp;quot;) +   labs(title = &amp;quot;Cumulative lines&amp;quot;, subtitle = &amp;quot;By Character&amp;quot;) +   xlab(&amp;quot;Line&amp;quot;) +   ylab(&amp;quot;Spoken Lines&amp;quot;) +  theme_bw() +   theme(plot.title = element_text(hjust = 0.5),        plot.subtitle = element_text(hjust = 0.5),        panel.border = element_blank()) +  scale_x_continuous(expand = c(0, 0)) +   scale_y_continuous(expand = c(0, 0))g&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-08-20-hamlet_files/figure-html/unnamed-chunk-9-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;p&gt;The plot shows the dynamic of the play quite nicely. Horatio, Hamlet’s friend figures quite prominenty at the beggining. Polonius has a lot of lines in the middle of the play, until he’s caught behind the arras just before line 4000. Towards the end, Hamlet eats up the whole play in his showdown with King Claudius.&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Tidy Vargas Llosa</title>
       <link>https://rlabuonora.com/posts/tidy-vargas-llosa/</link>
       <pubDate>Wed, 20 Dec 2017 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/tidy-vargas-llosa/</guid>
       <description>&lt;p&gt;Mario Vargas Llosa es uno de mis novelistas preferidos. El año pasado releí varios de sus libros y escribí &lt;a href=&#34;https://rlabuonora74.wordpress.com/&#34;&gt;algunos reviews&lt;/a&gt;. En este post aplico algunas de las técnicas de &lt;a href=&#34;https://www.tidytextmining.com/&#34;&gt;este libro&lt;/a&gt; a las novelas.&lt;/p&gt;&lt;div id=&#34;datos&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Datos&lt;/h1&gt;&lt;p&gt;Para este proyecto, conseguí todas las novelas de Vargas Llosa en Inglés en formato digital (epub, mobi) y las convertí a texto.&lt;/p&gt;&lt;p&gt;El primer paso para analizar texto es estructurarlo para el análisis. Este proceso se llama tokenización, porque implica separar el texto en “tokens”, pequeñas unidades de análisis. En este caso vamos a trabajar con texto tokenizado en palabras. El proceso de tokenización también puede incluír convertir las palabras a minúsculas y sacar las puntuaciones.&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;wordcloud&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Wordcloud&lt;/h1&gt;&lt;p&gt;El análisis más básico de texto on R se llama WordCloud, y grafica las palabras más usadas en el texto analizando con el tamaño de la fuente proporcional a la frecuencia en que aparecen los términos.&lt;/p&gt;&lt;p&gt;Para hacer un WordCloud para una novela concreta, filtramos el data frame para que tenga solo el texto de la novela, y usamos &lt;code&gt;anti_join&lt;/code&gt; para sacar las stop words. Las &lt;code&gt;stop words&lt;/code&gt; son palabras como “la” y “de”. Suelen ser las palabras más usadas, pero no tienen información sobre el contenido del texto, por lo que es conveniente sacarlas.&lt;/p&gt;&lt;p&gt;Los otros tokens que llaman la atención en este análisis son los nombres de los personajes. Rigoberto y Lucrecia son los tokens más usados en Los cuadernos de don Rigoberto.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;s &amp;lt;- mvll_tidy %&amp;gt;%   filter(title == &amp;quot;Notebooks of Don Rigoberto&amp;quot; ) %&amp;gt;%  filter(!str_detect(word, &amp;quot;\u2019&amp;quot;)) %&amp;gt;% # remove didn&amp;#39;t, they&amp;#39;re, etc.  anti_join(stop_words) %&amp;gt;%  count(word, sort = TRUE) %&amp;gt;%   with(wordcloud(word, n, max.words = 40))&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-11-20-tidy-vargas-llosa_files/figure-html/unnamed-chunk-3-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;palabras-caracteristicas-de-cada-libro&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Palabras características de cada libro&lt;/h1&gt;&lt;p&gt;Otro análisis similar es el índice de tf-idf. Esta métrica busca extraer los términos más característicos de un texto.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;book_words &amp;lt;- mvll_tidy %&amp;gt;%  count(title, word, sort = TRUE) %&amp;gt;%  ungroup %&amp;gt;%  bind_tf_idf(word, title, n)plt &amp;lt;- book_words %&amp;gt;%  arrange(desc(tf_idf)) %&amp;gt;%  mutate(word = factor(word, levels = rev(unique(word))))plt %&amp;gt;%  filter(title %in% libros$title[10:13]) %&amp;gt;%  group_by(title) %&amp;gt;%  top_n(10) %&amp;gt;%  ungroup %&amp;gt;%  ggplot(aes(word, tf_idf, fill = title)) +  geom_col(show.legend = FALSE) +  labs(x = NULL, y = &amp;quot;tf-idf&amp;quot;) +   facet_wrap(~title, ncol = 2, scales=&amp;quot;free&amp;quot;) +   coord_flip()&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-11-20-tidy-vargas-llosa_files/figure-html/unnamed-chunk-4-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;sentiment-analysis&#34; class=&#34;section level1&#34;&gt;&lt;h1&gt;Sentiment Analysis&lt;/h1&gt;&lt;p&gt;El análisis de sentimiento busca crear métricas para que tan positivo o negativo es el texto que estamos analizando. Para eso, necesitamos un “léxico”, una base de datos con palabras y sus sentimientos correspondientes. Bing es uno de los léxicos disponibles, y para cada palabra define si es positivo o negativo:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;head(get_sentiments(&amp;quot;bing&amp;quot;))&lt;/code&gt;&lt;/pre&gt;&lt;pre&gt;&lt;code&gt;## # A tibble: 6 x 2##   word       sentiment##   &amp;lt;chr&amp;gt;      &amp;lt;chr&amp;gt;    ## 1 2-faces    negative ## 2 abnormal   negative ## 3 abolish    negative ## 4 abominable negative ## 5 abominably negative ## 6 abominate  negative&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;Para analizar el texto de las novelas, usamos el léxico para determinar si cada palabra es positiva o negativa. Después tomamos unidades de 80 líneas y calculamos &lt;code&gt;sentiment&lt;/code&gt; como la diferencia entre la cantidad de palabras positivas y negativas. Esto nos da una métrica de que tan positivas son las palabras usadas en esa parte del texto.&lt;/p&gt;&lt;p&gt;La columna &lt;code&gt;idx&lt;/code&gt; son bloques de 80 líneas y sirven para encontrar pasajes en las novelas después de visualizarlas.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;mvll_sentiment &amp;lt;- mvll_tidy %&amp;gt;%    filter(title %in% c(&amp;quot;Aunt Julia and the Scriptwriter&amp;quot;,                       &amp;quot;Conversation in the Cathedral&amp;quot;,                       &amp;quot;A Fish in the Water&amp;quot;,                       &amp;quot;Feast of the Goat&amp;quot;,                       &amp;quot;Notebooks of Don Rigoberto&amp;quot;,                       &amp;quot;Bad Girl&amp;quot;)) %&amp;gt;%  inner_join(get_sentiments(&amp;quot;bing&amp;quot;)) %&amp;gt;%   count(title, index = line %/% 80, sentiment) %&amp;gt;%  spread(sentiment, n) %&amp;gt;%  mutate(sentiment = positive - negative)ggplot(mvll_sentiment, aes(index, sentiment, fill=title)) +   geom_col() +   facet_wrap(~title, ncol = 2, scales = &amp;quot;free_x&amp;quot;) +   guides(fill=FALSE)&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-11-20-tidy-vargas-llosa_files/figure-html/unnamed-chunk-6-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;p&gt;En general, Vargas Llosa usa pocas palabras con sentimientos positivos. Esta visualización también identifica momentos particularmente buenos o malos en las novelas: en la mitad de los Cuadernos de don Rigoberto hay una parte que destaca como buena.&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Geometría con ggplot</title>
       <link>https://rlabuonora.com/posts/ggplot-geometria/</link>
       <pubDate>Wed, 16 Aug 2017 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/ggplot-geometria/</guid>
       <description>&lt;p&gt;&lt;code&gt;ggplot&lt;/code&gt; es el estándar para visualización de datos en R. Siempre quise explorar si podía servir para hacer diagramas más conceptuales. En este post uso &lt;code&gt;ggplot&lt;/code&gt; para dibujar algunas formas geométricas.&lt;/p&gt;&lt;p&gt;Para dibujar el gráfico de una función, podemos usar &lt;code&gt;stat_function&lt;/code&gt;. En el primer gráfico, dibujo &lt;span class=&#34;math inline&#34;&gt;\(sin(x)\)&lt;/span&gt; y &lt;span class=&#34;math inline&#34;&gt;\(cos(x)\)&lt;/span&gt;. Especifico &lt;code&gt;aes(colour = &amp;quot;sin(x)&amp;quot;)&lt;/code&gt; para que el color de ese cada &lt;code&gt;geom&lt;/code&gt; quede ligado al texto correcto en la leyenda.&lt;/p&gt;&lt;p&gt;&lt;code&gt;geom_segment&lt;/code&gt; y &lt;code&gt;scale_x_continuous&lt;/code&gt; permiten especificar la posición y etiqueta de las guías.&lt;/p&gt;&lt;p&gt;Este post de stackoverflow sobre &lt;a href=&#34;https://stackoverflow.com/questions/5293715/how-to-use-greek-symbols-in-ggplot2&#34;&gt;como poner letras griegas en ggplot&lt;/a&gt; explica como poner caractéres del alfabeto griego en los ejes usando &lt;code&gt;expression()&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(tidyverse)library(ggplot2)theme_set(theme_minimal())# Crear etiquetas para eje xlbls &amp;lt;- c( expression(-2 * pi),           expression(-3 * pi / 2),           expression(- pi),           expression(-pi/2),           0,           expression(pi/ 2),           expression(pi),           expression(3 * pi /2),           expression(2 * pi)           )# Gráficoggplot(data_frame(x = c(-7, 7)), aes(x = x)) +  stat_function(fun = function(x) { sin(x) },                 geom = &amp;quot;line&amp;quot;,                 linetype = &amp;quot;dashed&amp;quot;,                 size = 1,                aes(colour = &amp;quot;sin(x)&amp;quot;)) +  stat_function(fun = function(x) { cos(x) },                linetype = &amp;quot;dashed&amp;quot;,                size = 1,                aes(colour = &amp;quot;cos(x)&amp;quot;)                ) +  scale_x_continuous(    breaks = seq(-2 * pi, 2*pi, pi/2),    labels = lbls  ) +   labs(x = &amp;quot;x&amp;quot;, y = &amp;quot;y&amp;quot;) +   geom_segment(aes(x=-7, xend = 7, y=0, yend=0),                size = 0.5,               arrow = arrow(length = unit(0.2, &amp;quot;cm&amp;quot;))) +   geom_segment(aes(x=0, xend=0, y=-1, yend=1.2),               size = 0.5,               lineend = &amp;quot;butt&amp;quot;,               arrow = arrow(length = unit(0.2, &amp;quot;cm&amp;quot;))) +   labs(title = &amp;quot;Funciones Trigonométricas&amp;quot;) +   theme(    plot.title = element_text(hjust = 0.5),    legend.title = element_blank(),  ) &lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-08-16-trigonometric-funs_files/figure-html/unnamed-chunk-1-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;div id=&#34;circulo&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Círculo&lt;/h2&gt;&lt;p&gt;&lt;code&gt;stat_fun&lt;/code&gt; resuelve el problema de graficar funciones, pero no sirve cuando queremos graficar otro tipo de objeto. La ecuación de un círculo es&lt;/p&gt;&lt;p&gt;&lt;span class=&#34;math display&#34;&gt;\[ (x-h)^2+(y-k)^2=r^2 \]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;donde &lt;span class=&#34;math inline&#34;&gt;\((h, k)\)&lt;/span&gt; es el centro y &lt;span class=&#34;math inline&#34;&gt;\(r\)&lt;/span&gt; el radio. Escribir esta ecuación explícitamente como una función puede resultar complicado.&lt;/p&gt;&lt;p&gt;&lt;a href=&#34;https://stackoverflow.com/questions/6862742/draw-a-circle-with-ggplot2&#34;&gt;Este post en Stack Overflow&lt;/a&gt; explica como graficar una función en forma paramétrica usando &lt;code&gt;annotate&lt;/code&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;library(ggplot2)library(latex2exp)center &amp;lt;- c(x=3, y=1)#pt1 &amp;lt;- c(x=1, y=1)#pt2 &amp;lt;- c(x=5, y=1)pt3 &amp;lt;- c(x=3, y=3)pt4 &amp;lt;- c(x=3, y=-1)pts &amp;lt;- dplyr::bind_rows(center,pt3, pt4)radius &amp;lt;- 2t &amp;lt;- seq(0, 2*pi, length.out = 100)g &amp;lt;- ggplot() +   geom_segment(aes(x=-1, xend = 6, y=0, yend=0),               size = 0.5,               arrow = arrow(length = unit(0.2, &amp;quot;cm&amp;quot;))) + # Eje X  geom_segment(aes(x=0, xend=0, y=-1, yend=4),               size = 0.5,               lineend = &amp;quot;butt&amp;quot;,               arrow = arrow(length = unit(0.2, &amp;quot;cm&amp;quot;))) + # Eje Y  annotate(&amp;quot;path&amp;quot;,            x = center[1] + radius * cos(t),           y = center[2] + radius * sin(t)) +   geom_point(data = pts, aes(x=x, y =y)) +   geom_text(data = pts,            parse = TRUE,            nudge_y = 0.2,            aes(x=x, y=y, label = paste0(&amp;quot;list(&amp;quot;, x ,&amp;quot;,&amp;quot;, y, &amp;quot;)&amp;quot;))) +  annotate(&amp;quot;point&amp;quot;, x=1, y=1) +   annotate(&amp;quot;text&amp;quot;, x=1.25, y=1, label=&amp;quot;1,1&amp;quot;) +   annotate(&amp;quot;point&amp;quot;, x=5, y=1) +   annotate(&amp;quot;text&amp;quot;, x=4.75, y=1, label=&amp;quot;5, 1&amp;quot;) +   labs(x=&amp;quot;&amp;quot;, y=&amp;quot;&amp;quot;) +   ggtitle(TeX(&amp;quot;(x-3)^2+(y-1)^2=4&amp;quot;)) +   coord_fixed()g&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-08-16-trigonometric-funs_files/figure-html/unnamed-chunk-2-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;&lt;div id=&#34;parabola&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Parábola&lt;/h2&gt;&lt;p&gt;Una parábola es un conjunto de puntos que equidista de una línea (directriz) y un punto (foco). Estos puntos satisfacen:&lt;/p&gt;&lt;p&gt;&lt;span class=&#34;math inline&#34;&gt;\((x-h)^2=4p(y-k),\, (p \neq 0)\)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;El vértice de la parábola está en &lt;span class=&#34;math inline&#34;&gt;\((h,k)\)&lt;/span&gt; y la directriz &lt;span class=&#34;math inline&#34;&gt;\(y=k-p\)&lt;/span&gt;. El foco está en &lt;span class=&#34;math inline&#34;&gt;\((h, k+p)\)&lt;/span&gt; si la parábola es abierta hacia arriba.&lt;/p&gt;&lt;div id=&#34;ejemplo&#34; class=&#34;section level3&#34;&gt;&lt;h3&gt;Ejemplo&lt;/h3&gt;&lt;p&gt;&lt;span class=&#34;math inline&#34;&gt;\(x^2=16y\)&lt;/span&gt; es una parábola con vértice en &lt;span class=&#34;math inline&#34;&gt;\((0,0)\)&lt;/span&gt;, &lt;span class=&#34;math inline&#34;&gt;\(p = 4\)&lt;/span&gt; y foco en &lt;span class=&#34;math inline&#34;&gt;\((0,4)\)&lt;/span&gt;.&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;focus &amp;lt;- list(x=0, y=4, lab = &amp;quot;Foco&amp;quot;)vertex &amp;lt;- list(x=0, y=0, lab = &amp;quot;Vértice&amp;quot;)notable_points &amp;lt;- bind_rows(focus,                             vertex)pt &amp;lt;- data_frame(x=5, y=round(5^2/16, 2))p &amp;lt;- ggplot(data_frame(x=0), aes(x=x)) +  geom_segment(aes(x=-9, xend = 9, y=0, yend=0),               size = 0.5,               arrow = arrow(length = unit(0.2, &amp;quot;cm&amp;quot;))) + # Eje X  geom_segment(aes(x=0, xend=0, y=-5, yend=10),               size = 0.5,               lineend = &amp;quot;butt&amp;quot;,               arrow = arrow(length = unit(0.2, &amp;quot;cm&amp;quot;))) + # Eje Y  stat_function(fun = function(x) { x^2 / 16}) +   xlim(-9, 9) +   ylim(-5, 10)x &amp;lt;- 5g_2 &amp;lt;- p +  geom_point(data = notable_points, aes(x=x, y=y)) +   geom_text(data=notable_points,             size = 3,            nudge_y = 1.25,            nudge_x = 1.25,            aes(label = paste0(lab, &amp;quot;\n(&amp;quot;, x, &amp;quot;,&amp;quot;, y, &amp;quot;)&amp;quot;),                 x = x, y = y)) +   geom_hline(yintercept = -4, linetype = &amp;quot;dashed&amp;quot;) +   annotate(&amp;quot;text&amp;quot;, x= 3, y= -3.3, label = &amp;quot;Directriz&amp;quot;, size = 3) +  ggtitle(TeX(&amp;#39;$y=x^2/16$&amp;#39;)) +   theme(    plot.title = element_text(hjust = 0.5)  ) + geom_point(data = pt, aes(x=x, y=y)) +   geom_segment(aes(x= focus$x, y=focus$y, xend=pt$x, yend=pt$y),               linetype = &amp;quot;dashed&amp;quot;) +   geom_segment(aes(x=pt$x, y=pt$y, xend=pt$x, yend = -4),               linetype = &amp;quot;dashed&amp;quot;) +   annotate(&amp;quot;text&amp;quot;,            label = &amp;quot;phantom(0) == phantom(0)&amp;quot;,            parse = TRUE,           angle = 60,           size = 5,           x = 2.5, y= 2.85) +   annotate(&amp;quot;text&amp;quot;,            label = &amp;quot;phantom(0) == phantom(0)&amp;quot;,            parse = TRUE,           size = 5,           x = 5, y= -2)g_2&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-08-16-trigonometric-funs_files/figure-html/g_2-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;p&gt;Todos los puntos de la parábola estan a la misma distancia del foco que de la directriz.&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id=&#34;una-parabola-con-eje-horziontal&#34; class=&#34;section level2&#34;&gt;&lt;h2&gt;Una parábola con eje horziontal&lt;/h2&gt;&lt;p&gt;Dibujar una parábola con eje vertical es simple porque podemos usar &lt;code&gt;stat_fun&lt;/code&gt;. Pero si queremos dibujarlas con eje horizontal no podemos escibir los puntos de la parábola como un función y pasarsela a &lt;code&gt;stat_function&lt;/code&gt;.&lt;/p&gt;&lt;p&gt;La ecuación &lt;span class=&#34;math inline&#34;&gt;\(y^2+6y+8x+25 = 0\)&lt;/span&gt; no parece una parábola, pero si completamos el cuadrado:&lt;/p&gt;&lt;p&gt;&lt;span class=&#34;math display&#34;&gt;\[\begin{align}y^2+6y+8x+25 &amp;amp;= 0\\y^2+6y+9+8x+25-9  &amp;amp;= 0\\(y+3)^2 &amp;amp;= -16-8x\\(y+3)^2 &amp;amp;= 4(-2)(x+2)\end{align}\]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Es una parábola con vértice &lt;span class=&#34;math inline&#34;&gt;\((-2, -3)\)&lt;/span&gt;, p es &lt;span class=&#34;math inline&#34;&gt;\(-2\)&lt;/span&gt;, el foco &lt;span class=&#34;math inline&#34;&gt;\((-4,-3)\)&lt;/span&gt; la directriz es &lt;span class=&#34;math inline&#34;&gt;\(x=0\)&lt;/span&gt;.&lt;/p&gt;&lt;p&gt;Pero como la orientación de esta parábola es horizontal, no es una función. Cómo la graficamos con &lt;code&gt;ggplot&lt;/code&gt;?&lt;/p&gt;&lt;p&gt;Si despejamos &lt;span class=&#34;math inline&#34;&gt;\(y\)&lt;/span&gt; en función de &lt;span class=&#34;math inline&#34;&gt;\(x\)&lt;/span&gt;, obtenemos dos funciones:&lt;span class=&#34;math display&#34;&gt;\[\begin{align}(y+3)^2 &amp;amp;= (-8)(x+2)\\y     &amp;amp;= -3 \pm \sqrt{-8(x+2)}\\y_1  &amp;amp;=-3 + \sqrt{-8(x+2)}\\y_2 &amp;amp;=-3 - \sqrt{-8(x+2)}\\\end{align}\]&lt;/span&gt;&lt;/p&gt;&lt;p&gt;Podemos graficar &lt;span class=&#34;math inline&#34;&gt;\(y1\)&lt;/span&gt; y &lt;span class=&#34;math inline&#34;&gt;\(y2\)&lt;/span&gt;:&lt;/p&gt;&lt;pre class=&#34;r&#34;&gt;&lt;code&gt;x &amp;lt;- seq(-5, 0, length.out=1e3)lbs &amp;lt;- list(bquote(-3 + sqrt(-8*(x+2))), # investigar bquote!            bquote(-3 - sqrt(-8*(x+2))))g_3 &amp;lt;- ggplot(data_frame(x=x),             aes(x=x, color = color)) +   stat_function(data = data_frame(x=x, color = factor(1)),                fun = function(x) { -3 + sqrt(-8*(x+2)) }) +   stat_function(data = data_frame(x=x, color = factor(2)),                fun = function(x) { -3 - sqrt(-8*(x+2)) }) +   scale_color_manual(labels = lbs,                     name = &amp;quot;&amp;quot;,                     values = c(scales::hue_pal()(2)[1],                                 scales::hue_pal()(2)[2])) +   geom_hline(yintercept = 0) +   geom_vline(xintercept = 0)g_3&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;&lt;img src=&#34;https://rlabuonora.com/posts/2018-08-16-trigonometric-funs_files/figure-html/g_3-1.png&#34; width=&#34;672&#34; /&gt;&lt;/p&gt;&lt;/div&gt;</description>
     </item>
   
     <item>
       <title>Ciudades Inteligentes</title>
       <link>https://rlabuonora.com/posts/ciudades-inteligentes/</link>
       <pubDate>Mon, 01 Aug 2016 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/ciudades-inteligentes/</guid>
       <description>&lt;p&gt;El 1 de Setiembre me invitaron a presentar preciosGub en el Foro Nacional de Ciudades Sustentables organizado por la Cámara de Comercio e Industria Uruguayo-Alemana en la Torre de las Telecomunicaciones de Antel.&lt;/p&gt;&lt;p&gt;&lt;img  class=&#34;static-image&#34; src=&#34;https://rlabuonora.com/posts/2016-08-12-ciudades-inteligentes_files/ciudades_inteligentes.jpg&#34; /&gt;&lt;/p&gt;&lt;p&gt;Me tocó exponer en un panel sobre tendencias y aplicaciones en ciudades inteligentes moderado por Gonzalo Sobral, del que participaron Leonardo Loureiro, Ariel Scaliter y Juan Pablo Pignataro. Acá hay un &lt;a href=&#34;https://ladiaria.com.uy/articulo/2016/9/farmakon/&#34;&gt;artículo de La Diaria &lt;/a&gt;con la cobertura del evento.&lt;/p&gt;</description>
     </item>
   
     <item>
       <title>Gobierno Electrónico en Corea</title>
       <link>https://rlabuonora.com/posts/mision-corea/</link>
       <pubDate>Sat, 01 Aug 2015 00:00:00 +0000</pubDate>
       
       <guid>https://rlabuonora.com/posts/mision-corea/</guid>
       <description>&lt;script src=&#34;https://rlabuonora.com/rmarkdown-libs/header-attrs/header-attrs.js&#34;&gt;&lt;/script&gt;&lt;p&gt;El Sistema de Información de Precios al Consumidor obtuvo el primer puesto los premios ExcelGob en la categoría “Innovación Social”. El premio consiste en una visita técnica a la República de Corea, para conocer in situ las soluciones de gobierno digital de uno de los líderes mundiales en la materia.&lt;/p&gt;&lt;p&gt;Como líder del equipo técnico encargado de desarrollar y mantener el SIPC, fui elegido para asistir a la visita técnica a Seúl junto con el líder del equipo de Urna de Cristal, Diego Gomez de Colombia.&lt;/p&gt;&lt;p&gt;El primer día, la presentación se desarrollo en la oficina de la municipalidad de Seul y estuvo a cargo de Shin Jong Woo (Director de la División de Planificación de Información). El Sr. Woo presentó dos sistemas de gobierno electrónico para organizar encuestas y permitir que los ciudadanos influyan en las políticas de la municipalidad.&lt;/p&gt;&lt;p&gt;&lt;img class=&#34;img-post&#34;  src=&#34;https://rlabuonora.com/posts/2016-07-12-egob-corea_files/s_korea_8.jpeg&#34; /&gt;&lt;/p&gt;&lt;/p&gt;&lt;p&gt;Las presentaciones del segundo día se desarrollaron en las oficinas de la NIA. La primera estuvo a cargo de Seung- Hwan Myeong, el Sr. Myeong es investigador en el Department of Public Administration, Inha University. Su principal línea de investigación es sobre el rol de las tecnologías de la información aplicadas al gobierno.&lt;/p&gt;&lt;p&gt;La segunda presentación del día, a cargo de Dr. Jong-Sung Hwang, fue sobre gobierno inteligente y Smart Cities. El Dr. Hwang es director de la oficina de planeamiento y administración de la NIA. La última presentación fue de Ms. Shinae Shin, líder del equipo de planificación de Gobierno 3.0 de la NIA.&lt;/p&gt;&lt;p&gt;&lt;img class=&#34;img-post&#34;  src=&#34;https://rlabuonora.com/posts/2016-07-12-egob-corea_files/s_korea_3.jpeg&#34; /&gt;&lt;/p&gt;&lt;p&gt;El día 4 consistió en una visita a la provincia de Chungbuk, donde se encuentra alojada la oficina central de la Korea Consumer Agency. Esta oficina fue relocalizada a 3 horas de Seúl en el marco de la política de descentralización de la administración central del gobierno de Corea.&lt;/p&gt;&lt;p&gt;&lt;img class=&#34;img-post&#34;  src=&#34;https://rlabuonora.com/posts/2016-07-12-egob-corea_files/s_korea_1.jpeg&#34; /&gt;&lt;/p&gt;&lt;p&gt;El quinto día de la misión estuvo centrada en actividades culturales. Primero visitamos la fortaleza Hwaseong. Esta fortaleza fue construida en 1794 y fue declarada patrimonio de la humanidad por la UNESCO.&lt;/p&gt;&lt;p&gt;&lt;img class=&#34;img-post&#34;  src=&#34;https://rlabuonora.com/posts/2016-07-12-egob-corea_files/l_korea_6.jpeg&#34; /&gt;&lt;/p&gt;&lt;p&gt;Luego visitamos el Samsung Innovation Museum. Este museo contiene piezas originales de todo tipo de tecnología de consumo final (radio, televisión, teléfonos, computadoras) desde el el siglo pasado hasta los últimos avances.&lt;/p&gt;&lt;p&gt;A nivel más humano, Diego y Mr. Lee fueron excelentes compañeros de ruta. Mr. Lee nos llevó a comer a varios lugares y pudimos disfrutar de la comida coreana todo el viaje.&lt;/p&gt;&lt;p&gt;&lt;img class=&#34;img-post&#34;  src=&#34;https://rlabuonora.com/posts/2016-07-12-egob-corea_files/l_korea_2.jpeg&#34; /&gt;&lt;/p&gt;&lt;p&gt;El viaje fue una experiencia muy buena. No solo por el avance de Corea en gobierno electrónico, sino por la posibilidad de ver como es la cultura de trabajo de un país exitoso.&lt;/p&gt;</description>
     </item>
   
 </channel>
</rss>
